[
  {
    "path": "README.md",
    "content": "# SimCLS: A Simple Framework for Contrastive Learning of Abstractive Summarization (ACL 2021)\n\n\n## Overview\nSimCLS is a conceptually simple while empirically powerful framework for abstractive summarization, which can bridge the gap between the *learning objective* and *evaluation metrics* resulting from the currently dominated sequence-to-sequence learning framework by **formulating text generation as a reference-free evaluation problem} (i.e., quality estimation)** assisted by *contrastive learning*.\n\nAs shown below, SimCLS framework consists of for two stages: Candidate Generation and Reference-free evaluation, where Doc, S, Ref} represent the document, generated summary and reference respectively.\n\n<div  align=\"center\">\n <img src=\"example/intro_simcls.png\" width = \"550\" alt=\"d\" align=center />\n</div>\n\n\n\n\n## 1. How to Install\n\n### Requirements\n- `python3`\n- `conda create --name env --file spec-file.txt`\n- `pip3 install -r requirements.txt`\n- `compare_mt` -> https://github.com/neulab/compare-mt\n\n### Description of Codes\n- `main.py` -> training and evaluation procedure\n- `model.py` -> models\n- `data_utils.py` -> dataloader\n- `utils.py` -> utility functions\n- `preprocess.py` -> data preprocessing\n\n### Workspace\nFollowing directories should be created for our experiments.\n- `./cache` -> storing model checkpoints\n- `./result` -> storing evaluation results\n\n## 2. Preprocessing\nWe use the following datasets for our experiments.\n\n- CNN/DailyMail -> https://github.com/abisee/cnn-dailymail\n- XSum -> https://github.com/EdinburghNLP/XSum\n\nFor data preprocessing, please run\n```\npython preprocess.py --src_dir [path of the raw data] --tgt_dir [output path] --split [train/val/test] --cand_num [number of candidate summaries]\n```\n`src_dir` should contain the following files (using test split as an example):\n- `test.source`\n- `test.source.tokenized`\n- `test.target`\n- `test.target.tokenized`\n- `test.out`\n- `test.out.tokenized`\n\nEach line of these files should contain a sample. In particular, you should put the candidate summaries for one data sample at neighboring lines in `test.out` and `test.out.tokenized`.\n\nThe preprocessing precedure will store the processed data as seperate json files in `tgt_dir`.\n\nWe have provided an example file in `./example`.\n\n## 3. How to Run\n\n### Preprocessed Data\nYou can download the preprocessed data for our experiments on [CNNDM](https://drive.google.com/file/d/1WRvDBWfmC5W_32wNRrNa6lEP75Vx5cut/view?usp=sharing) and [XSum](https://drive.google.com/file/d/1nKx6RT4zNxO4hFy8y3dPbYV-GBu1Si-u/view?usp=sharing).\n\nAfter donwloading, you should unzip the zip files in this root directory.\n\n### Hyper-parameter Setting\nYou may specify the hyper-parameters in `main.py`.\n\nTo reproduce our results, you could use the original configuration in the file, except that you should make sure that on CNNDM \n`args.max_len=120`, and on XSum `args.max_len = 80`.\n\n\n### Train\n```\npython main.py --cuda --gpuid [list of gpuid] -l\n```\n### Fine-tune\n```\npython main.py --cuda --gpuid [list of gpuid] -l --model_pt [model path]\n```\nmodel path should be a subdirectory in the `./cache` directory, e.g. `cnndm/model.pt` (it shouldn't contain the prefix `./cache/`).\n### Evaluate\n```\npython main.py --cuda --gpuid [single gpu] -e --model_pt [model path]\n```\nmodel path should be a subdirectory in the `./cache` directory, e.g. `cnndm/model.pt` (it shouldn't contain the prefix `./cache/`).\n\n## 4. Results\n\n### CNNDM\n|          | ROUGE-1 | ROUGE-2 | ROUGE-L |\n|----------|---------|---------|---------|\n| BART     | 44.39   | 21.21   | 41.28   |\n| Ours     | 46.67   | 22.15   | 43.54   |\n\n### XSum\n|          | ROUGE-1 | ROUGE-2 | ROUGE-L |\n|----------|---------|---------|---------|\n| Pegasus  | 47.10   | 24.53   | 39.23   |\n| Ours     | 47.61   | 24.57   | 39.44   |\n\nOur model outputs on these datasets can be found in `./output`.\n\nWe have also provided the finetuned checkpoints on [CNNDM](https://drive.google.com/file/d/1CSFeZUUVFF4ComY6LgYwBpQJtqMgGllI/view?usp=sharing) and [XSum](https://drive.google.com/file/d/1yx9KhDY0CY8bLdYnQ9XhvfMwxoJ4Fz6N/view?usp=sharing).\n"
  },
  {
    "path": "data_utils.py",
    "content": "from torch.utils.data import Dataset, DataLoader\nimport os\nimport json\nimport numpy as np\nimport torch\nfrom functools import partial\nimport time\nfrom transformers import RobertaTokenizer\nimport random\nimport pickle\nimport copy\nimport logging\nlogging.getLogger(\"transformers.tokenization_utils\").setLevel(logging.ERROR)\n\ndef to_cuda(batch, gpuid):\n    for n in batch:\n        if n != \"data\":\n            batch[n] = batch[n].to(gpuid)\n\n\ndef collate_mp(batch, pad_token_id, is_test=False):\n    def bert_pad(X, max_len=-1):\n        if max_len < 0:\n            max_len = max(len(x) for x in X)\n        result = []\n        for x in X:\n            if len(x) < max_len:\n                x.extend([pad_token_id] * (max_len - len(x)))\n            result.append(x)\n        return torch.LongTensor(result)\n\n    src_input_ids = bert_pad([x[\"src_input_ids\"] for x in batch])\n    tgt_input_ids = bert_pad([x[\"tgt_input_ids\"] for x in batch])\n    candidate_ids = [x[\"candidate_ids\"] for x in batch]\n    max_len = max([max([len(c) for c in x]) for x in candidate_ids])\n    candidate_ids = [bert_pad(x, max_len) for x in candidate_ids]\n    candidate_ids = torch.stack(candidate_ids)\n    scores = torch.FloatTensor([x[\"scores\"] for x in batch])\n    if is_test:\n        data = [x[\"data\"] for x in batch]\n    result = {\n        \"src_input_ids\": src_input_ids, \n        \"tgt_input_ids\": tgt_input_ids,\n        \"candidate_ids\": candidate_ids,\n        \"scores\": scores\n        }\n    if is_test:\n        result[\"data\"] = data\n    return result\n\n\nclass ReRankingDataset(Dataset):\n    def __init__(self, fdir, model_type, maxlen=-1, is_test=False, total_len=512, is_sorted=True, maxnum=-1, is_untok=True):\n        \"\"\" data format: article, abstract, [(candidiate_i, score_i)] \"\"\"\n        self.isdir = os.path.isdir(fdir)\n        if self.isdir:\n            self.fdir = fdir\n            self.num = len(os.listdir(fdir))\n        else:\n            with open(fdir) as f:\n                self.files = [x.strip() for x in f]\n            self.num = len(self.files)\n        self.tok = RobertaTokenizer.from_pretrained(model_type, verbose=False)\n        self.maxlen = maxlen\n        self.is_test = is_test\n        self.pad_token_id = self.tok.pad_token_id\n        self.total_len = total_len\n        self.cls_token_id = self.tok.cls_token_id\n        self.sep_token_id = self.tok.sep_token_id\n        self.sorted = is_sorted\n        self.maxnum = maxnum\n        self.is_untok = is_untok\n\n    def __len__(self):\n        return self.num\n\n    def bert_encode(self, x, max_len=-1):\n        _ids = self.tok.encode(x, add_special_tokens=False)\n        ids = [self.cls_token_id]\n        if max_len > 0:\n            ids.extend(_ids[:max_len - 2])\n        else:\n            ids.extend(_ids[:self.total_len - 2])\n        ids.append(self.sep_token_id)\n        return ids\n\n    def __getitem__(self, idx):\n        if self.isdir:\n            with open(os.path.join(self.fdir, \"%d.json\"%idx), \"r\") as f:\n                data = json.load(f)\n        else:\n            with open(self.files[idx]) as f:\n                data = json.load(f)\n        if self.is_untok:\n            article = data[\"article_untok\"]\n        else:\n            article = data[\"article\"]\n        src_txt = \" \".join(article)\n        src_input_ids = self.bert_encode(src_txt)\n        if self.is_untok:\n            abstract = data[\"abstract_untok\"]\n        else:\n            abstract = data[\"abstract\"]\n        tgt_input_ids = self.bert_encode(\" \".join(abstract))\n        if self.maxnum > 0:\n            candidates = data[\"candidates_untok\"][:self.maxnum]\n            _candidates = data[\"candidates\"][:self.maxnum]\n            data[\"candidates\"] = _candidates\n        if self.sorted:\n            candidates = sorted(candidates, key=lambda x:x[1], reverse=True)\n            _candidates = sorted(_candidates, key=lambda x:x[1], reverse=True)\n            data[\"candidates\"] = _candidates\n        if not self.is_untok:\n            candidates = _candidates\n        cand_txt = [\" \".join(x[0]) for x in candidates]\n        candidate_ids = [self.bert_encode(x, self.maxlen) for x in cand_txt]\n        scores = [x[1] for x in candidates]\n        result = {\n            \"src_input_ids\": src_input_ids, \n            \"tgt_input_ids\": tgt_input_ids,\n            \"candidate_ids\": candidate_ids,\n            \"scores\": scores\n            }\n        if self.is_test:\n            result[\"data\"] = data\n        return result"
  },
  {
    "path": "example/0.json",
    "content": "{\"article\": [\"club tijuana star juan arango conjured memories luis suarez in his team 's 4-3 defeat by monterrey in the mexican league - but it was not through prodigious scoring .\", \"the venezuelan icon arango sank his teeth into the shoulder of jesus zavela as his temper flared in the defeat .\", \".\", \"he was not booked by the referee but could face a heavy retrospective ban .\", \".\", \"juan arango -lrb- left -rrb- bites the shoulder of opponent jesus zavela in a moment of madness .\", \"zavala holds his shoulder after being bitten by arango , in the game zavala 's side won 4-3 in mexico .\", \"zavala shows the referee the mark on his shoulder after being bittern by arango .\", \"arango -lrb- right -rrb- earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\", \"arango had earlier curled in a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter .\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness .\", \"arango spent 10 years playing in europe , spending five seasons each at real mallorca in spain and borussia monchengladbach in germany .\", \"he has made 121 appearances for venezuela .\", \".\"], \"abstract\": [\"juan arango escaped punishment from the referee for biting jesus zavela .\", \"he could face a retrospective punishment for the incident .\", \"arango had earlier scored a free kick in his team 's 4-3 defeat .\"], \"candidates\": [[[\"juan arango bites jesus zavela in a moment of madness .\", \"the venezuelan icon was not booked by the referee .\", \"he could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\", \"but the 34-year-old overshadowed his goal with the bite .\"], 0.4339323467230444], [[\"club tijuana star juan arango bites opponent jesus zavela .\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his team level against monterrey .\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness .\"], 0.3775824853530682], [[\"juan arango bit jesus zavela in the shoulder in the mexican league .\", \"the venezuelan icon could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness .\"], 0.3710144927536232], [[\"juan arango bites jesus zavela in a moment of madness .\", \"the venezuelan icon was not booked by the referee .\", \"he could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\"], 0.49627705627705626], [[\"club tijuana star juan arango bites jesus zavela in a moment of madness .\", \"arango 's side lost 4-3 to monterrey in the mexican league .\", \"the venezuelan icon could face a heavy retrospective ban .\", \"arangos had earlier scored a magnificent free kick to bring his team level .\", \"but the 34-year-old overshadowed his goal with the bite .\"], 0.42946859903381646], [[\"the venezuelan icon bit jesus zavela in the mexican league game .\", \"he was not booked by the referee but could face a heavy retrospective ban .\", \"arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey .\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness .\"], 0.3240368963646229], [[\"club tijuana lost 4-3 to monterrey in the mexican league on saturday .\", \"juan arango bit jesus zavela in a moment of madness .\", \"the venezuelan icon could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his team level .\", \"but the 34-year-old overshadowed his goal with the bite .\"], 0.4166666666666667], [[\"club tijuana star juan arango bites jesus zavela in a moment of madness .\", \"arango 's side lost 4-3 to monterrey in the mexican league .\", \"the venezuelan icon could face a heavy retrospective ban .\", \"arangos had earlier scored a magnificent free kick to bring his team level .\"], 0.4880970985049748], [[\"juan arango bit the shoulder of opponent jesus zavela in a moment of madness .\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\"], 0.4136062926498932], [[\"arango bites jesus zavela in a moment of madness .\", \"the venezuelan icon could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness .\"], 0.3611003487020535], [[\"club tijuana lost 4-3 to monterrey in the mexican league on saturday .\", \"juan arango bit jesus zavela in a moment of madness .\", \"the venezuelan icon could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his team level .\"], 0.4581072935503315], [[\"juan arango bit the shoulder of opponent jesus zavela in a moment of madness .\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\"], 0.4136062926498932], [[\"club 's star juan arango bit opponent jesus zavela .\", \"arango could face a heavy retrospective ban for his actions .\", \"club tijuana lost 4-3 to monterrey in the mexican league .\", \"arangos earlier scored a magnificent free kick to bring his team level .\", \"but he overshadowed his goal with the bite as television cameras picked up the moment of madness .\"], 0.41002008743944224], [[\"juan arango bites opponent jesus zavela in a moment of madness .\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .\", \"arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey .\"], 0.406816811880103], [[\"club tijuana 's juan arango bit the shoulder of opponent jesus zavela .\", \"arango had earlier scored a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter .\", \"the 34-year-old could face a heavy retrospective ban .\"], 0.4300671979996875], [[\"club 's star juan arango bit opponent jesus zavela .\", \"arango could face a heavy retrospective ban for his actions .\", \"club tijuana lost 4-3 to monterrey in the mexican league .\", \"arangos earlier scored a magnificent free kick to bring his team level .\"], 0.44950213371266007]], \"article_untok\": [\"club tijuana star juan arango conjured memories luis suarez in his team's 4-3 defeat by monterrey in the mexican league - but it was not through prodigious scoring.\", \"the venezuelan icon arango sank his teeth into the shoulder of jesus zavela as his temper flared in the defeat.\", \".\", \"he was not booked by the referee but could face a heavy retrospective ban.\", \".\", \"juan arango (left) bites the shoulder of opponent jesus zavela in a moment of madness.\", \"zavala holds his shoulder after being bitten by arango, in the game zavala's side won 4-3 in mexico.\", \"zavala shows the referee the mark on his shoulder after being bittern by arango.\", \"arango (right) earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\", \"arango had earlier curled in a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter.\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness.\", \"arango spent 10 years playing in europe, spending five seasons each at real mallorca in spain and borussia monchengladbach in germany.\", \"he has made 121 appearances for venezuela.\", \".\"], \"abstract_untok\": [\"juan arango escaped punishment from the referee for biting jesus zavela.\", \"he could face a retrospective punishment for the incident.\", \"arango had earlier scored a free kick in his team's 4-3 defeat\\u00a0.\"], \"candidates_untok\": [[[\"juan arango bites jesus zavela in a moment of madness.\", \"the venezuelan icon was not booked by the referee.\", \"he could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\", \"but the 34-year-old overshadowed his goal with the bite.\"], 0.4339323467230444], [[\"club tijuana star juan arango bites opponent jesus zavela.\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his team level against monterrey.\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness.\"], 0.3775824853530682], [[\"juan arango bit jesus zavela in the shoulder in the mexican league.\", \"the venezuelan icon could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness.\"], 0.3710144927536232], [[\"juan arango bites jesus zavela in a moment of madness.\", \"the venezuelan icon was not booked by the referee.\", \"he could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\"], 0.49627705627705626], [[\"club tijuana star juan arango bites jesus zavela in a moment of madness.\", \"arango's side lost 4-3 to monterrey in the mexican league.\", \"the venezuelan icon could face a heavy retrospective ban.\", \"arangos had earlier scored a magnificent free kick to bring his team level.\", \"but the 34-year-old overshadowed his goal with the bite.\"], 0.42946859903381646], [[\"the venezuelan icon bit jesus zavela in the mexican league game.\", \"he was not booked by the referee but could face a heavy retrospective ban.\", \"arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey.\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness.\"], 0.3240368963646229], [[\"club tijuana lost 4-3 to monterrey in the mexican league on saturday.\", \"juan arango bit jesus zavela in a moment of madness.\", \"the venezuelan icon could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his team level.\", \"but the 34-year-old overshadowed his goal with the bite.\"], 0.4166666666666667], [[\"club tijuana star juan arango bites jesus zavela in a moment of madness.\", \"arango's side lost 4-3 to monterrey in the mexican league.\", \"the venezuelan icon could face a heavy retrospective ban.\", \"arangos had earlier scored a magnificent free kick to bring his team level.\"], 0.4880970985049748], [[\"juan arango bit the shoulder of opponent jesus zavela in a moment of madness.\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\"], 0.4136062926498932], [[\"arango bites jesus zavela in a moment of madness.\", \"the venezuelan icon could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\", \"but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness.\"], 0.3611003487020535], [[\"club tijuana lost 4-3 to monterrey in the mexican league on saturday.\", \"juan arango bit jesus zavela in a moment of madness.\", \"the venezuelan icon could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his team level.\"], 0.4581072935503315], [[\"juan arango bit the shoulder of opponent jesus zavela in a moment of madness.\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.\", \"arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.\"], 0.4136062926498932], [[\"club's star juan arango bit opponent jesus zavela.\", \"arango could face a heavy retrospective ban for his actions.\", \"club tijuana lost 4-3 to monterrey in the mexican league.\", \"arangos earlier scored a magnificent free kick to bring his team level.\", \"but he overshadowed his goal with the bite as television cameras picked up the moment of madness.\"], 0.41002008743944224], [[\"juan arango bites opponent jesus zavela in a moment of madness.\", \"the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.\", \"arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey.\"], 0.406816811880103], [[\"club tijuana's juan arango bit the shoulder of opponent jesus zavela.\", \"arango had earlier scored a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter.\", \"the 34-year-old could face a heavy retrospective ban.\"], 0.4300671979996875], [[\"club's star juan arango bit opponent jesus zavela.\", \"arango could face a heavy retrospective ban for his actions.\", \"club tijuana lost 4-3 to monterrey in the mexican league.\", \"arangos earlier scored a magnificent free kick to bring his team level.\"], 0.44950213371266007]]}"
  },
  {
    "path": "example/README.md",
    "content": "Data Example\n"
  },
  {
    "path": "main.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nimport torch.optim as optim\nimport argparse\nimport model\nimport pickle\nimport time\nimport numpy as np\nimport os\nimport json\nimport random\nfrom compare_mt.rouge.rouge_scorer import RougeScorer\nfrom transformers import RobertaModel, RobertaTokenizer\nfrom utils import Recorder\nfrom data_utils import to_cuda, collate_mp, ReRankingDataset\nfrom torch.utils.data import DataLoader\nimport torch.distributed as dist\nimport torch.multiprocessing as mp\nfrom torch.nn.parallel import DistributedDataParallel as DDP\nfrom functools import partial\nfrom model import RankingLoss\nimport math\nimport logging\nlogging.getLogger(\"transformers.tokenization_utils\").setLevel(logging.ERROR)\nlogging.getLogger(\"transformers.tokenization_utils_base\").setLevel(logging.ERROR)\nlogging.getLogger(\"transformers.tokenization_utils_fast\").setLevel(logging.ERROR)\n\n\ndef base_setting(args):\n    args.batch_size = getattr(args, 'batch_size', 1)\n    args.epoch = getattr(args, 'epoch', 5)\n    args.report_freq = getattr(args, \"report_freq\", 100)\n    args.accumulate_step = getattr(args, \"accumulate_step\", 12)\n    args.margin = getattr(args, \"margin\", 0.01)\n    args.gold_margin = getattr(args, \"gold_margin\", 0)\n    args.model_type = getattr(args, \"model_type\", 'roberta-base')\n    args.warmup_steps = getattr(args, \"warmup_steps\", 10000)\n    args.grad_norm = getattr(args, \"grad_norm\", 0)\n    args.seed = getattr(args, \"seed\", 970903)\n    args.no_gold = getattr(args, \"no_gold\", False)\n    args.pretrained = getattr(args, \"pretrained\", None)\n    args.max_lr = getattr(args, \"max_lr\", 2e-3)\n    args.scale = getattr(args, \"scale\", 1)\n    args.datatype = getattr(args, \"datatype\", \"diverse\")\n    args.dataset = getattr(args, \"dataset\", \"xsum\")\n    args.max_len = getattr(args, \"max_len\", 120)  # 120 for cnndm and 80 for xsum\n    args.max_num = getattr(args, \"max_num\", 16)\n    args.cand_weight = getattr(args, \"cand_weight\", 1)\n    args.gold_weight = getattr(args, \"gold_weight\", 1)\n\n\ndef evaluation(args):\n    # load data\n    base_setting(args)\n    tok = RobertaTokenizer.from_pretrained(args.model_type)\n    collate_fn = partial(collate_mp, pad_token_id=tok.pad_token_id, is_test=True)\n    test_set = ReRankingDataset(f\"./{args.dataset}/{args.datatype}/test\", args.model_type, is_test=True, maxlen=512, is_sorted=False, maxnum=args.max_num, is_untok=True)\n    dataloader = DataLoader(test_set, batch_size=8, shuffle=False, num_workers=4, collate_fn=collate_fn)\n    # build models\n    model_path = args.pretrained if args.pretrained is not None else args.model_type\n    scorer = model.ReRanker(model_path, tok.pad_token_id)\n    if args.cuda:\n        scorer = scorer.cuda()\n    scorer.load_state_dict(torch.load(os.path.join(\"./cache\", args.model_pt), map_location=f'cuda:{args.gpuid[0]}'))\n    scorer.eval()\n    model_name = args.model_pt.split(\"/\")[0]\n\n    def mkdir(path):\n        if not os.path.exists(path):\n            os.mkdir(path)\n\n    print(model_name)\n    mkdir(\"./result/%s\"%model_name)\n    mkdir(\"./result/%s/reference\"%model_name)\n    mkdir(\"./result/%s/candidate\"%model_name)\n    rouge_scorer = RougeScorer(['rouge1', 'rouge2', 'rougeLsum'], use_stemmer=True)\n    rouge1, rouge2, rougeLsum = 0, 0, 0\n    cnt = 0\n    acc = 0\n    scores = []\n    with torch.no_grad():\n        for (i, batch) in enumerate(dataloader):\n            if args.cuda:\n                to_cuda(batch, args.gpuid[0])\n            samples = batch[\"data\"]\n            output = scorer(batch[\"src_input_ids\"], batch[\"candidate_ids\"], batch[\"tgt_input_ids\"])\n            similarity, gold_similarity = output['score'], output['summary_score']\n            similarity = similarity.cpu().numpy()\n            if i % 100 == 0:\n                print(f\"test similarity: {similarity[0]}\")\n            max_ids = similarity.argmax(1)\n            scores.extend(similarity.tolist())\n            acc += (max_ids == batch[\"scores\"].cpu().numpy().argmax(1)).sum()\n            for j in range(similarity.shape[0]):\n                sample = samples[j]\n                sents = sample[\"candidates\"][max_ids[j]][0]\n                score = rouge_scorer.score(\"\\n\".join(sample[\"abstract\"]), \"\\n\".join(sents))\n                rouge1 += score[\"rouge1\"].fmeasure\n                rouge2 += score[\"rouge2\"].fmeasure\n                rougeLsum += score[\"rougeLsum\"].fmeasure\n                with open(\"./result/%s/candidate/%d.dec\"%(model_name, cnt), \"w\") as f:\n                    for s in sents:\n                        print(s, file=f)\n                with open(\"./result/%s/reference/%d.ref\"%(model_name, cnt), \"w\") as f:\n                    for s in sample[\"abstract\"]:\n                        print(s, file=f)\n                cnt += 1\n    rouge1 = rouge1 / cnt\n    rouge2 = rouge2 / cnt\n    rougeLsum = rougeLsum / cnt\n    print(f\"accuracy: {acc / cnt}\")\n    print(\"rouge1: %.6f, rouge2: %.6f, rougeL: %.6f\"%(rouge1, rouge2, rougeLsum))\n\n\ndef test(dataloader, scorer, args, gpuid):\n    scorer.eval()\n    loss = 0\n    cnt = 0\n    rouge_scorer = RougeScorer(['rouge1', 'rouge2', 'rougeLsum'], use_stemmer=True)\n    rouge1, rouge2, rougeLsum = 0, 0, 0\n    with torch.no_grad():\n        for (i, batch) in enumerate(dataloader):\n            if args.cuda:\n                to_cuda(batch, gpuid)\n            samples = batch[\"data\"]\n            output = scorer(batch[\"src_input_ids\"], batch[\"candidate_ids\"], batch[\"tgt_input_ids\"])\n            similarity, gold_similarity = output['score'], output['summary_score']\n            similarity = similarity.cpu().numpy()\n            if i % 1000 == 0:\n                print(f\"test similarity: {similarity[0]}\")\n            max_ids = similarity.argmax(1)\n            for j in range(similarity.shape[0]):\n                cnt += 1\n                sample = samples[j]\n                sents = sample[\"candidates\"][max_ids[j]][0]\n                score = rouge_scorer.score(\"\\n\".join(sample[\"abstract\"]), \"\\n\".join(sents))\n                rouge1 += score[\"rouge1\"].fmeasure\n                rouge2 += score[\"rouge2\"].fmeasure\n                rougeLsum += score[\"rougeLsum\"].fmeasure\n    rouge1 = rouge1 / cnt\n    rouge2 = rouge2 / cnt\n    rougeLsum = rougeLsum / cnt\n    scorer.train()\n    loss = 1 - ((rouge1 + rouge2 + rougeLsum) / 3)\n    print(f\"rouge-1: {rouge1}, rouge-2: {rouge2}, rouge-L: {rougeLsum}\")\n    \n    if len(args.gpuid) > 1:\n        loss = torch.FloatTensor([loss]).to(gpuid)\n        dist.all_reduce(loss, op=dist.reduce_op.SUM)\n        loss = loss.item() / len(args.gpuid)\n    return loss\n\n\ndef run(rank, args):\n    base_setting(args)\n    torch.manual_seed(args.seed)\n    torch.cuda.manual_seed_all(args.seed)\n    np.random.seed(args.seed)\n    random.seed(args.seed)\n    gpuid = args.gpuid[rank]\n    is_master = rank == 0\n    is_mp = len(args.gpuid) > 1\n    world_size = len(args.gpuid)\n    if is_master:\n        id = len(os.listdir(\"./cache\"))\n        recorder = Recorder(id, args.log)\n    tok = RobertaTokenizer.from_pretrained(args.model_type)\n    collate_fn = partial(collate_mp, pad_token_id=tok.pad_token_id, is_test=False)\n    collate_fn_val = partial(collate_mp, pad_token_id=tok.pad_token_id, is_test=True)\n    train_set = ReRankingDataset(f\"./{args.dataset}/{args.datatype}/train\", args.model_type, maxlen=args.max_len, maxnum=args.max_num)\n    val_set = ReRankingDataset(f\"./{args.dataset}/{args.datatype}/val\", args.model_type, is_test=True, maxlen=512, is_sorted=False, maxnum=args.max_num)\n    if is_mp:\n        train_sampler = torch.utils.data.distributed.DistributedSampler(\n    \t train_set, num_replicas=world_size, rank=rank, shuffle=True)\n        dataloader = DataLoader(train_set, batch_size=args.batch_size, shuffle=False, num_workers=4, collate_fn=collate_fn, sampler=train_sampler)\n        val_sampler = torch.utils.data.distributed.DistributedSampler(\n    \t val_set, num_replicas=world_size, rank=rank)\n        val_dataloader = DataLoader(val_set, batch_size=8, shuffle=False, num_workers=4, collate_fn=collate_fn_val, sampler=val_sampler)\n    else:\n        dataloader = DataLoader(train_set, batch_size=args.batch_size, shuffle=True, num_workers=4, collate_fn=collate_fn)\n        val_dataloader = DataLoader(val_set, batch_size=8, shuffle=False, num_workers=4, collate_fn=collate_fn_val)\n    # build models\n    model_path = args.pretrained if args.pretrained is not None else args.model_type\n    scorer = model.ReRanker(model_path, tok.pad_token_id)\n    if len(args.model_pt) > 0:\n        scorer.load_state_dict(torch.load(os.path.join(\"./cache\", args.model_pt), map_location=f'cuda:{gpuid}'))\n    if args.cuda:\n        if len(args.gpuid) == 1:\n            scorer = scorer.cuda()\n        else:\n            dist.init_process_group(\"nccl\", rank=rank, world_size=world_size)\n            scorer = nn.parallel.DistributedDataParallel(scorer.to(gpuid), [gpuid], find_unused_parameters=True)\n    scorer.train()\n    init_lr = args.max_lr / args.warmup_steps\n    s_optimizer = optim.Adam(scorer.parameters(), lr=init_lr)\n    if is_master:\n        recorder.write_config(args, [scorer], __file__)\n    minimum_loss = 100\n    all_step_cnt = 0\n    # start training\n    for epoch in range(args.epoch):\n        s_optimizer.zero_grad()\n        step_cnt = 0\n        sim_step = 0\n        avg_loss = 0\n        for (i, batch) in enumerate(dataloader):\n            if args.cuda:\n                to_cuda(batch, gpuid)\n            step_cnt += 1\n            output = scorer(batch[\"src_input_ids\"], batch[\"candidate_ids\"], batch[\"tgt_input_ids\"])\n            similarity, gold_similarity = output['score'], output['summary_score']\n            loss = args.scale * RankingLoss(similarity, gold_similarity, args.margin, args.gold_margin, args.gold_weight)\n            loss = loss / args.accumulate_step\n            avg_loss += loss.item()\n            loss.backward()\n            if step_cnt == args.accumulate_step:\n                # optimize step      \n                if args.grad_norm > 0:\n                    nn.utils.clip_grad_norm_(scorer.parameters(), args.grad_norm)\n                step_cnt = 0\n                sim_step += 1\n                all_step_cnt += 1\n                lr = args.max_lr * min(all_step_cnt ** (-0.5), all_step_cnt * (args.warmup_steps ** (-1.5)))\n                for param_group in s_optimizer.param_groups:\n                    param_group['lr'] = lr\n                s_optimizer.step()\n                s_optimizer.zero_grad()\n            if sim_step % args.report_freq == 0 and step_cnt == 0 and is_master:\n                print(\"id: %d\"%id)\n                print(f\"similarity: {similarity[:, :10]}\")\n                if not args.no_gold:\n                    print(f\"gold similarity: {gold_similarity}\")\n                recorder.print(\"epoch: %d, batch: %d, avg loss: %.6f\"%(epoch+1, sim_step, \n                 avg_loss / args.report_freq))\n                recorder.print(f\"learning rate: {lr:.6f}\")\n                recorder.plot(\"loss\", {\"loss\": avg_loss / args.report_freq}, all_step_cnt)\n                recorder.print()\n                avg_loss = 0\n            del similarity, gold_similarity, loss\n\n            if all_step_cnt % 1000 == 0 and all_step_cnt != 0 and step_cnt == 0:\n                loss = test(val_dataloader, scorer, args, gpuid)\n                if loss < minimum_loss and is_master:\n                    minimum_loss = loss\n                    if is_mp:\n                        recorder.save(scorer.module, \"scorer.bin\")\n                    else:\n                        recorder.save(scorer, \"scorer.bin\")\n                    recorder.save(s_optimizer, \"optimizer.bin\")\n                    recorder.print(\"best - epoch: %d, batch: %d\"%(epoch, i / args.accumulate_step))\n                if is_master:\n                    recorder.print(\"val rouge: %.6f\"%(1 - loss))\n               \n\ndef main(args):\n    # set env\n    if len(args.gpuid) > 1:\n        os.environ['MASTER_ADDR'] = 'localhost'\n        os.environ['MASTER_PORT'] = f'{args.port}'\n        mp.spawn(run, args=(args,), nprocs=len(args.gpuid), join=True)\n    else:\n        run(0, args)\n\nif __name__ ==  \"__main__\":\n    parser = argparse.ArgumentParser(description='Training Parameter')\n    parser.add_argument(\"--cuda\", action=\"store_true\")\n    parser.add_argument(\"--gpuid\", nargs='+', type=int, default=0)\n    parser.add_argument(\"-e\", \"--evaluate\", action=\"store_true\")\n    parser.add_argument(\"-l\", \"--log\", action=\"store_true\")\n    parser.add_argument(\"-p\", \"--port\", type=int, default=12355)\n    parser.add_argument(\"--model_pt\", default=\"\", type=str)\n    parser.add_argument(\"--encode_mode\", default=None, type=str)\n    args = parser.parse_args()\n    if args.cuda is False:\n        if args.evaluate:\n            evaluation(args)\n        else:\n            main(args)\n    else:\n        if args.evaluate:\n            with torch.cuda.device(args.gpuid[0]):\n                evaluation(args)\n        elif len(args.gpuid) == 1:    \n            with torch.cuda.device(args.gpuid[0]):\n                main(args)\n        else:\n            main(args)"
  },
  {
    "path": "model.py",
    "content": "# modified from https://github.com/maszhongming/MatchSum\nimport torch\nfrom torch import nn\nfrom transformers import RobertaModel\n\n\ndef RankingLoss(score, summary_score=None, margin=0, gold_margin=0, gold_weight=1, no_gold=False, no_cand=False):\n    ones = torch.ones_like(score)\n    loss_func = torch.nn.MarginRankingLoss(0.0)\n    TotalLoss = loss_func(score, score, ones)\n    # candidate loss\n    n = score.size(1)\n    if not no_cand:\n        for i in range(1, n):\n            pos_score = score[:, :-i]\n            neg_score = score[:, i:]\n            pos_score = pos_score.contiguous().view(-1)\n            neg_score = neg_score.contiguous().view(-1)\n            ones = torch.ones_like(pos_score)\n            loss_func = torch.nn.MarginRankingLoss(margin * i)\n            loss = loss_func(pos_score, neg_score, ones)\n            TotalLoss += loss\n    if no_gold:\n        return TotalLoss\n    # gold summary loss\n    pos_score = summary_score.unsqueeze(-1).expand_as(score)\n    neg_score = score\n    pos_score = pos_score.contiguous().view(-1)\n    neg_score = neg_score.contiguous().view(-1)\n    ones = torch.ones_like(pos_score)\n    loss_func = torch.nn.MarginRankingLoss(gold_margin)\n    TotalLoss += gold_weight * loss_func(pos_score, neg_score, ones)\n    return TotalLoss\n\n\nclass ReRanker(nn.Module):\n    def __init__(self, encoder, pad_token_id):\n        super(ReRanker, self).__init__()\n        self.encoder = RobertaModel.from_pretrained(encoder)\n        self.pad_token_id = pad_token_id\n\n    def forward(self, text_id, candidate_id, summary_id=None, require_gold=True):\n        \n        batch_size = text_id.size(0)\n        \n        input_mask = text_id != self.pad_token_id\n        out = self.encoder(text_id, attention_mask=input_mask)[0]\n        doc_emb = out[:, 0, :]\n        \n        if require_gold:\n            # get reference score\n            input_mask = summary_id != self.pad_token_id\n            out = self.encoder(summary_id, attention_mask=input_mask)[0]\n            summary_emb = out[:, 0, :]\n            summary_score = torch.cosine_similarity(summary_emb, doc_emb, dim=-1)\n\n        candidate_num = candidate_id.size(1)\n        candidate_id = candidate_id.view(-1, candidate_id.size(-1))\n        input_mask = candidate_id != self.pad_token_id\n        out = self.encoder(candidate_id, attention_mask=input_mask)[0]\n        candidate_emb = out[:, 0, :].view(batch_size, candidate_num, -1)\n        \n        # get candidate score\n        doc_emb = doc_emb.unsqueeze(1).expand_as(candidate_emb)\n        score = torch.cosine_similarity(candidate_emb, doc_emb, dim=-1)\n\n        output = {'score': score}\n        if require_gold:\n            output['summary_score'] = summary_score\n        return output"
  },
  {
    "path": "output/README.md",
    "content": "Test Outputs\n"
  },
  {
    "path": "output/test.cnndm.ours",
    "content": "juan arango bit the shoulder of opponent jesus zavela in a moment of madness . the venezuelan icon was not booked by the referee but could face a heavy retrospective ban . arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .\ngary gardner will report to aston villa for pre-season training . tim sherwood will assess the 22-year-old 's fitness . gardner has enjoyed a successful loan spell at nottingham forest . the former england under-21 star scored a stunning free-kick against watford .\nboth federal government regulations and the american heart association have for decades warned that excess salt contributes to the deaths of tens of thousands of americans each year . the guidelines currently dictate the people should limit their intake to 2,300 milligrams , with an even stricter 1,500 milligram limit for african americans and people over 50 . but some scientists are now saying that the average american salt consumption rate carries no risk .\nmichigan micro mote is the smallest computer in the world . contains solar cells that power the battery with ambient light . can be used to give everyday objects computing capabilities . can also be used as a smart sensor to monitor a home , business , or personal device . the working computer is smaller than a grain of rice programmed and charged via light .\ndriving licence shake-up will see all plastic photocard licences scrapped . information about penalty points will be held only on dvla database . motoring groups fear switch to online system will make it more difficult for car hire firms which want to check a motorist 's details .\nan incredible video has stitched together footage from a nasa spacecraft . taken over five years , the footage includes plasma raining down on the sun , an extreme solar eruption and even a comet breezing through the sun 's atmosphere . the movie , called sun , was created by filmmaker michael könig from cologne , germany . it uses footage recorded by nasa 's solar dynamics observatory -lrb- sdo -rrb- spacecraft between 2011 and 2015 . highlights of the video include large , bright tendrils extending outward from the sun 's surface and occasionally crashing down again . other sections show bright , active regions on the sun '' surface as magnetic fields send it into turmoil .\njustin rose finished second at the masters despite carding 14-under-par total . rose had missed the cut in three of his previous five tournaments on the pga tour . the englishman hopes to follow rory mcilroy 's winning streak in the summer of 2014 .\nthe actor died in hospice in hickory , north carolina , of complications from pneumonia . he was 88 . best played bumbling sheriff rosco p. coltrane on `` the dukes of hazzard '' for seven seasons . his co-stars paid tribute to him on social media .\nthe battle between neighbours started in 1980 when the owner planted a vegetable patch which withered and died in the shade of her neighbour 's massive hedge . audrey alexander claims the hedge has knocked # 20,000 off the value of her house . stirling council ruled that jeanette robinson can keep the hedge , although it has to be cut to 20ft .\ndr. anthony moschetto is accused of trying to kill a rival doctor . his attorney says the allegations against his client are `` completely unsubstantiated '' two other men are named as accomplices . moschetto has pleaded not guilty to all charges . charges .\naround 30 drivers live in rvs in a parking lot in seattle 's sodo area . john warden , 52 , has been living in his $ 200 vehicle for years . bud dodson , 57 , looks after the parking lot . the unusual format has been captured in a series of photographs .\nnewcastle fans planning to boycott sunday 's game against spurs . john carver has asked alan pardew and alan shearer for advice . carver was in the dugout with pardews at the end of last season . newcastle fans are planning to protest against owner mike ashley . they are unhappy with a perceived lack of investment and ambition .\nroger federer is preparing for the inaugural istanbul open in turkey . the swiss star is looking to bounce back from his third round exit in monte carlo . federer says rafael nadal is still the man to beat at the french open . nadal has won the title nine times and has only ever lost one match at roland garros .\nlingerie model sarah stage came under fire during her pregnancy for posting sexy selfies showing off her rock-hard abs . but james hunter was born at a healthy eight pounds and seven ounces earlier this week . the 30-year-old gave birth to her son on monday and shared the first pictures of him to her instagram page .\ndon mclean 's 1971 hit american pie has been an enigma for decades . it is considered to be poetic reflections on mid-20th century u.s. social history . the lyrics were sold at auction in new york for more than $ 1 million this week .\nrubbish teams left bin full of rubbish because it had an empty crisp packet . binmen said the bag of walkers prawn cocktail crisps fell foul of the rules . but it had been dropped there by a litterbug and not by the owner of the bin . enraged residents in farnham , surrey , have branded waste collection squads as ` little hitlers ' for enforcing recycling rules to the letter .\njeffrey williams , 20 , is accused of shooting and wounding the officers during a rally in ferguson , missouri , on march 12 . in a series of phone calls from jail that were recorded , williams confessed to the crime in a conversation with his girlfriend . williams said he was being harassed by a group of people outside ferguson pd and was n't aiming at the cops . prosecutors say williams told investigators he fired a gun but was aiming at someone else .\nbob greene : president obama talks about climate change , public health at roundtable event . he says obama credits clean air act with making americans healthier . greene : obama says americans can do their part to reduce carbon footprint . greene says obama says he 's not concerned about supreme court challenge to affordable care act .\ntwo parrots were found crying for help in a burning home in boise , idaho . firefighters thought they were chasing human voices . the birds were given oxygen and are expected to survive . the cause of the fire is being investigated . no people were found inside the house .\ncrystal palace host manchester city in the premier league on monday . eagles captain mile jedinak is suspended for the clash at selhurst park . marouane chamakh and fraizer campbell are still out with hamstring injuries . manchester city have no serious injury concerns ahead of the game . yaya toure missed city 's win over west brom with achilles injury .\nin an interview with npr , president obama said likely republican presidential candidate scott walker may change his ` foolish ' position on a deal with iran ` after he 's taken some time to bone up on foreign policy ' obama was responding to walker 's claims that he 'd ` absolutely ' cancel or ` disown ' a deal on ` day one ' if elected to higher office . obama 's jab at walker departed from the white house 's general strategy of staying out of the race to replace the sitting president .\na filmmaker is currently working on a film about yelp , which she says will unveil shady advertising practices at the company . kaylie milliken is the filmmaker behind billion dollar bully , an ongoing documentary focused on yelp 's impact on small businesses . milliken says she 's already interviewed several small businesses who believe they 've been targeted by the company for refusing to advertise . yelp has vigorously denied the claims , saying its algorithm protects businesses , by weeding out potentially fraudulent posts seeking to boost a company 's rating or drag it down .\nmanchester city are keeping tabs on juventus striker alvaro morata . arsenal were interested in the spain international last season . city are also keen on signing psg 's edinson cavani this summer . psg are also one of the frontrunners to sign juventus midfielder paul pogba .\nstacey tipler used her job to steal # 642,000 from the royal marsden nhs trust . she spent the money on designer shopping sprees , mortgage payments and her planned wedding . but she and partner scott chaplin , 34 , who was the ringleader of the plot , were caught and jailed last summer . judge anthony leonard qc said tipler had made # 54,852 from the scheme . he ordered her to repay # 28,737.90 within six months or spend another 18 months in jail . chaplin claimed he ` made nothing ' from the scam but was ordered to repay the # 115,000 he made .\ngary locke will be confirmed as kilmarnock 's new permanent manager on friday . the 39-year-old replaced allan johnston on a caretaker basis in february . locke will sign a three-year deal with the rugby park club . kilm carnock are currently eighth in the premiership .\nactress julia louis-dreyfus , 54 , stars as fictional us president selina meyer in the hit comedy show . she revealed that the ultra-short hairstyle she models in the newest season of hbo 's political comedy veep was inspired by none other than presidential candidate hillary clinton .\ntesla founder elon musk has unveiled a $ 3,000 -lrb- # 1,980 -rrb- battery . he said the powerwall device could be in homes by the end of summer . it can be used as back up power in the case of an emergency . the battery can also be used to hold power from renewable energy sources . the ` daily use ' version has a capacity of 7 kilowatt-hours .\nhillary clinton 's first campaign video features a gay couple holding hands . the independent tv rain channel in russia gave the clip an 18 + rating . the channel said it did n't want to break the country 's anti-gay propaganda law . the law bans `` propaganda of nontraditional sexual relations around minors ''\nmiddlesex bowler steven finn believes he has regained his best form . finn admits he 's had ` trial and tribulations ' in the last 12 months . but the 26-year-old says he 's got his ` head straight ' and is ready to push for an england place . finn was overlooked for the west indies tour .\nliverpool players and fans have paid their respects to the 96 people who lost their lives at hillsborough . a memorial service will be held at anfield on the 26th anniversary of the disaster . philippe coutinho , mario balotelli and daniel sturridge among those to mark the anniversary .\nraheem sterling has rejected a new # 100,000-a-week contract with liverpool . the 20-year-old is entitled to ` buy-out ' the last year of his current deal . sterling 's value could plummet by up to # 25million if he does so . manchester city and chelsea are both keen on the england international .\nmarco rubio is running for president in 2016 , but he has little appeal to latino voters . ruben navarrette : rubio has been his own worst enemy on immigration reform and cuba relations . he says rubio has embraced a typical conservative approach to immigration . navarrete : rubio 's political philosophy will be a tough sell to hispanics .\npictures taken by humane society international show seals being shot and wounded on canada 's ice floes . they are then dragged onto ships where they are clubbed to death for their fur . the animals are slaughtered in a remote region off the coast of newfoundland as the country 's largest annual marine mammal slaughter begins . hsi says the baby seals are suffering a violent death ` for fur products nobody wants '\naston villa and reading charged by fa for crowd disturbances after fa cup quarter-final matches . villa fans invaded the pitch after their 2-0 win against west brom . reading fans invaded pitch after 3-0 replay victory over bradford . one fan entered the pitch during the contest at the madejski stadium . both clubs have until thursday to respond to the charge .\nthe lions are seen eating meat from a metal cage attached to a car . they also interact with people who stand inside the cage and film them . the video was captured at orana wildlife park in new zealand . the park is the country 's only open-range zoo .\nengland lost 2-1 to france in their final euro under 19 qualifier . sehrou guirassy and gnaly cornet scored for the hosts . patrick roberts scored a late equaliser for sean o'driscoll 's team . england had to beat france to advance to the finals in greece .\nmanchester city midfielder james milner could leave on a free . glen johnson looks set to end his six-year spell at liverpool . swansea 's gerhard tremmel is understudy to lukasz fabianski . ron vlaar was a surprise omission from the world cup team of the tournament .\nbarack obama made an unscheduled stop at the bob marley museum in kingston . he is in jamaica to meet caribbean leaders for a meeting on energy and security . obama is the first president to visit the island in three decades . he was shown a trophy room where marley 's grammys and platinum records were on display .\n14-year-old boy from blackburn , lancashire , arrested on suspicion of helping plot . he allegedly communicated with australian men over plan to attack police in melbourne . greater manchester police tipped off australian authorities who arrested five men . alleged plot was similar to the killing of british soldier lee rigby in woolwich .\nteresa james , 40 , believes discomfort involved with teeth whitening is worth it for the end result of a bright smile . she started whitening her teeth five years ago , influenced by the brilliant smiles of celebrities she admired . almost a third of britons are now preoccupied with whitening their teeth .\njustin rose finished joint runner-up at the masters with phil mickelson . the englishman was in top form and pushed jordan speith all the way on the final day . rose is back training and is using his # 30,000 indoor golf simulator . the simulator lets players practice their games inside their own homes .\n`` orphan black '' returns for its second season on saturday . the show will feature more complex clone work . `` turn : washington 's spies '' returns with a new subtitle . `` game of thrones '' returns to hbo for a fifth season . `` veep '' has a new president .\ncaller says he 's trapped on an alaska airlines flight in the cargo hold . the pilot radioed air traffic control and said he would make an emergency landing . the ramp agent has been permanently banned from working on alaska airlines planes , the airline says . the crew and passengers reported unusual banging from the belly of the boeing 737 .\n# 11billion a year is paid to 5.2 million workers in the form of tax credits and other benefits . total amount of benefits paid to staff at some companies exceeds what the firms pay in corporation tax . citizens uk is campaigning for the adoption of the living wage - # 9.15 an hour in london and # 7.85 for the rest of the uk .\nan anti-racism protester had a face off with a neo-nazi at the easter weekend 's reclaim australia rallies . jacob king was snapped staring into the eyes of a bald man with a swastika tattooed behind his ear . mr king said he had his arms spread out because he thought the man was going to attack him and his fellow protesters . he said he learned islamophobic views from a young age but thankfully managed to ` unlearn ' these views .\ndante de blasio has been accepted into yale and brown universities . the 17-year-old is a senior at brooklyn technical high school . he will make his decision by the end of the month . his father , new york city mayor bill de blasio , earns a six figure salary and owns two properties in brooklyn . he is expected to turn to financial aid to help pay for his son 's elite education .\nvalerie jackson 's son rj suffers netherton 's syndrome . the condition makes his skin appear red and scaly , and dry . his mother has to regularly cover him in creams to ease his symptoms . but while out shopping , mrs jackson was reported to police for child abuse . a member of the public mistook rj 's rare skin disease for the signs of abuse .\nrussia is considering bailing out greece in exchange for country 's ` assets ' alexis tsipras , greece 's prime minister , will meet vladimir putin in moscow today . it comes amid reports that kremlin will offer controversial loans and discounts on supplies of natural gas in a bid to lessen its dependence on the west .\nlorraine valentine , 42 , suffers from erythropoietic protoporphyria -lrb- epp -rrb- the rare condition causes her skin to burn and become itchy when exposed to sunlight . she has to keep herself completely covered , as even a small dose of sun leaves her in pain . a holiday abroad left the mother-of-four in hospital for six days as the heat caused her entire body to swell .\njessica hardy , 23 , from hereford , wanted to remove her ex 's name from her forearm . she tried to burn it off with acid peels but the diy treatment left her skin red raw and scabby . she appeared on tlc 's extreme beauty disasters this week .\naaron ramsey has told his english team-mates at arsenal to beware wales overtaking them in the fifa rankings . wales climbed to 22 , their highest-ever position in football 's world order , in the april rankings to move within eight places of england . chris coleman 's side are unbeaten in euro 2016 qualifying and would be within touching distance of the finals in france should they beat belgium in june .\nbayern munich beat eintracht frankfurt 3-0 in the bundesliga on saturday . robert lewandowski scored twice to maintain his lead at the top of the table . thomas muller added a third to set bayern up for their champions league quarter-final with porto in midweek .\ntaliban releases 11-page biography of mullah mohammed omar . omar is credited with founding the taliban in the early 1990s . observers say the taliban is trying to dispel rumors of omar 's demise . the taliban has a `` huge leadership problem , '' an analyst says .\n16-year-old reece oxford scored against manchester united on tuesday night . the goal will push oxford closer to a first-team debut for west ham . the central defender signed his first professional contract earlier this season . oxford has been likened to rio ferdinand and is tipped to be an england international .\nalison sharland , 47 , accepted # 10.35 m from her ex-husband charles in 2010 . she believed it was half his fortune , but his firm appsense was later valued at # 460m . court of appeal found that mr sharland had deliberately hidden information and lied to the court but refused to overturn the divorce settlement . mrs sharland will now take her fight to the supreme court .\nnew channel will be available for three months exclusively through apple tv . it will include all past , present and future hbo programming . hbo now is available in the us for $ 14.99 -lrb- # 9.90 -rrb- a month . it comes ahead of the series premiere of game of thrones on april 12 .\nkelly parsons , 35 , from london , has donated 50 of her eggs . she has helped two couples to have twins and another woman give birth . in the space of 11 months , her eggs have become twin girls , twin boys and a baby boy . kelly and her husband dean struggled for eight years to conceive emily .\nsickening pictures shared by bloodthirsty supporters of the terror group on social media . one of those distributing the sickening pictures is a man claiming to be a british militant fighting for isis . the gruesome photographs are understood to have been taken near tikrit in iraq 's salah al-din province . victim is seen lying in pool of blood with his severed head resting on his back .\nraheem sterling and jordon ibe were pictured smoking from a shisha pipe in fresh pictures . liverpool star sterling has been pictured smoking a balloon filled with nitrous oxide in the past . the images will be a concern to clubs considering parting with # 40million to sign the star . brendan rodgers will remind sterling of his responsibilities tomorrow .\nfootage has surfaced of a quarrel between neighbours in a perth suburb . the clip shows an angry woman unleashing a racist tirade over her fence at a group of men who appear to be of african descent . the woman then appears in her neighbour 's front yard brandishing a metal crowbar , verbally abusing the men and swinging the weapon at them . the men then pick up their own weapons and a scuffle breaks out .\ntottenham forward harry kane has scored 30 goals for the club this season . the england international has also scored on his senior debut . but he wants to play for england 's under 21s side at the european championships . mauricio pochettino would like kane to be rested at the end of his breakthrough season . fa chairman greg dyke revealed the news on st george 's day .\njon huxley hopes to attract guests from the gay and swinging communities . he plans to install sex swings , bondage rooms and dungeons at his hotel in folkestone , kent . the 46-year-old hopes to recreate scenes from the hit film fifty shades of grey .\nasmir begovic 's contract at stoke city expires in 12 months . the bosnia international has been linked with other clubs . stoke chief executive tony scholes is hopeful they can keep hold of begovo . scholes believes stoke can match the 27-year-old 's ambitions .\ntaming frizzy hair can be a constant battle . we sent deborah to the taylor ferguson salon in glasgow . the nanokeratin system hair relaxing treatment costs from # 250 . it promises frizz-free hair for up to four months . it has been hailed a miracle cure by beauty experts .\nsam allardyce 's contract expires at the end of the season at west ham . the hammers boss has a meeting planned with co-owners david gold and david sullivan in may . allardyce is already making plans for next season but does not know if he 'll still be manager .\ndivers will explore the famous wreck of the titanic in a submersible . the trip takes place in the atlantic ocean and costs # 41,000 -lrb- $ 60,000 -rrb- the tour takes in sights like the famous grand staircase and the marconi room . more than 40 people have so far booked the trip to the wreck .\ntomas berdych defeated gael monfis 6-1 , 6-4 to reach the final . the czech will face either rafael nadal or novak djokovic in the final . monfils won just 11 points in a lopsided first set .\ngloucester beat exeter to set up challenge cup final against edinburgh . greig laidlaw , bill meakes , tom savage and henry slade scored tries for the hosts . gloucester will play edinburgh in the final at twickenham stoop . the cherry and whites will compete for their first european title since 2006 .\nwarren sapp was charged with soliciting prostitution and two counts of assault in february . britney osbourne , 23 , and quying boyd , 34 , were both arrested in phoenix along with sapp . in a police video released on monday , sapp , 42 , cries , cackles and confesses about what exactly went down back on february 2 in the renaissance hotel . in the video , sapp admits he paid for oral sex and that ` everyone got naked ' after he ` put $ 600 on the table ' in his hotel room .\nselina dicker , 38 , from london , was at the same camp on april 18 last year . an avalanche killed 16 sherpas who were climbing ahead of her group . miss dicker was trying to raise # 45,000 for operation smile . she was in the same climbing party as google executive dan fredinburg , who died in the avalanche .\naydian ethan dowling has around 40,000 votes to win the publication 's annual ultimate guy search - 30,000 more than his closest competitor . he would follow iraq war veteran and amputee noah galloway , who clinched the top spot last year .\nbalthazar king fell on the second circuit of the grand national . ruby walsh warned the field to go wide as vets tended to the stricken horse . balthazarking was taken to an equine hospital for treatment . walsh 's mount ballycasey was also able to walk away from his fall .\nlesley jonathon cameron has been jailed for life for the murder of maureen anne horstman , 67 , and her 26-year-old daughter tamara alexandra horst man . the pair were bludgeoned with a hammer and stabbed to death with scissors in their own home in december 2013 . cameron , who was 19 and at the time , also raped tamara but it is not known if she was alive or dead .\ncarrie fisher and mark hamill were arm-in-arm on the stage just before the second trailer for the december film was rolled out . not on hand was harrison ford , who is the franchise 's han solo . producer kathleen kennedy explained the 72-year-old was ` resting ' after miraculously surviving a march plane crash in los angeles .\nnearly a fifth of american women would still pursue a beauty treatment even if they knew it would cause permanent damage . seven per cent have had allergic reactions to salon procedures . one in six women in the us copy their favorite celebrities ' hairstyles . the majority of women say beauty treatments make them feel better about themselves and improve their looks .\n14-year-old jamie silvonek is accused of conspiring to kill her mother cheryl silv one month ago . her boyfriend caleb barnes , 20 , is charged with homicide . cheryl silvonek 's body was found with stab wounds in a shallow grave about 50 miles northwest of philadelphia . jamie silv one was sent to the county jail this month after she was charged as an adult and is in the women 's housing unit , away from older inmates .\ncrystal palace co-chairman steve parish posed for a picture with roy hodgson and bill wyman after the 2-1 win over manchester city . wyman is one of the original members of the rolling stones and an avid palace fan . hodgson was a youth team player for palace in the 1960s .\nthe ` bunker ' was spotted in a photograph released by nasa . it was taken by the mars rover opportunity , the organisation says . andre gignac claims he spotted armed people peering out of its windows . he also claims to have seen missiles , rockets and structures nearby .\nmark hawkins , 49 , was holed up in greyhound-style bus in salem , oregon . he was being hunted in lane county for failing to appear on drug charge . hawkins allegedly fired weapon from front of vehicle , hitting police dog . bullet struck dog in head , prompting exchange of gunfire between officers . swat officers then used tear gas and armored car to try and force him out . but hawkins still refused to comply with officers and ` continued to brandish a handgun ' at around 6.30 pm , police shot at hawkins multiple times , causing him to slide out of bus . he then died at nearby hospital ; autopsy showed he was shot nine times .\nwellington silva has been granted a spanish passport . the 22-year-old brazilian signed for arsenal in january 2011 for # 3.5 million . he has not been able to play for the club without a work permit . but that has now been resolved and he can now play for arsenal . he posted a picture of his passport on twitter on tuesday .\nreal madrid beat granada 9-1 in la liga on sunday afternoon at the bernabeu . gareth bale opened the scoring for los blancos in the 25th minute . the welsh winger scored twice for wales during the international break . cristiano ronaldo scored five goals in a sensational display for real madrid .\nufo map shows sightings of extra-terrestrials around the world in the last 76 years . it was created by writer levi pearson , who used a ufo sighting dataset from the national ufo reporting centre and open source software from cartodb . the map shows a dramatic rise in the number of ufo sightings during the 1950s and 1960s . it suggests we have more cosmic visitors than ever before . click on the map below to find out if aliens have been spotted in your neighbourhood .\nraheem sterling suggested he was considering his future in an interview last week . but brendan rodgers insists the forward has never said he wants to leave liverpool . the liverpool manager also insists he is focused on the football . sterling has not yet signed a new contract at anfield .\ntiger woods struck a tree root while playing the ninth hole at augusta . he was 470 yards away from the pin when he hit the root . the 39-year-old immediately grabbed his wrist in agony . he later revealed that his wrist bone had ` popped out ' of place . woods shunned medical attention and simply pushed it back in himself .\ndavid bulman , 55 , and his wife lubova had a row after he criticised her for not doing chores . his wife threw all his shirts outside but he followed her and shouted at her . he pulled her hair and punched her several times in the face , leaving her with a black eye and a lump on her head . he was given a 12-month community order after he pleaded guilty to assault .\nboston terrier , gizmo , performed the gravity-defying stunt one day at home after he tried on a set of new booties . footage shows him taking a few steps forwards before planting down his front feet and launching his back legs vertically in the air . when he reaches laughing mathieson on the floor , he eventually steps back down to four paws .\nadam federici let alexis sanchez 's shot slip through his grasp in extra-time . the 30-year-old was left ` inconsolable ' after the match and has apologised to reading fans . arsenal beat reading 2-1 in the fa cup semi-final after a 1-1 draw after 90 minutes .\npompous albert is a selkirk rex cat with a permanent frown and wild hair . the grey cat has racked up 44.1 k followers on instagram . he is named after famous physician albert einstein , due to his white-grey curly hair . each picture of the cat is accompanied by a sarcastic caption .\nkarl oyston sent a series of abusive text messages to a fan before christmas . he was charged by the fa for five breaches of fa rules . oyston has denied the charges and will appeal to a separate fa panel . the seasiders chairman still faces a ban from football activities .\nthree russian warships docked in olavsvern naval base in norway . the base is buried deep inside the country 's mountainous terrain . it has been closed since 2009 because of the threat from moscow . but military leaders are now worried by the presence of the ships . comes after a spike in tensions between russia and nato nations .\nsheriff stanley glanz told a press conference on monday that the fbi had informed him of the result of the investigation into the shooting of eric harris on april 2 . robert bates , a 73-year-old reserve deputy , says he mistook his handgun for a taser and accidentally shot harris while attempting to help other deputies take harris into custody . he has been charged with second-degree manslaughter in the april 2 death and faces four years in prison if convicted . glanz said he did n't believe reports that bates ' training records were falsified and he claimed the volunteer 73 - year-old insurance executive had been properly trained .\ndirector of public prosecutions alison saunders was encouraged by two aides to charge the labour peer with historic sex crimes . clare montgomery qc and child abuse expert eleanor laws qc offered advice which could have supported a move to prosecute . mrs saunders decided that it was not in the public interest to put lord janner in the dock due to his advanced alzheimer 's .\nmanchester united sit fourth in the premier league table . louis van gaal 's side beat liverpool 2-1 at anfield to move five points clear . wayne rooney believes his side are on course to qualify for the champions league . united face aston villa on saturday in the league .\ntough new regulations will allow for a crackdown on notorious party houses on the gold coast . gold coast city council will finally be able to shut down illegal party houses in suburban areas after the state government approved new planning powers . there are more than 700 party houses across the city , which are often used for unruly weekend-long parties . police have often been called in after neighbours complained about noise and lewd behaviour at some of the houses .\nwladimir klitschko takes on bryant jennings at madison square garden on saturday . the ukrainian will match joe louis in boxing 's record books with his 27th heavyweight title fight . the 39-year-old ukrainian has no plans to retire anytime soon . former heavyweight champion shannon briggs taunted klitsch ko at the press conference on tuesday .\nprime minister looked exhausted as he stepped off sleeper train at penzance . he was wearing jeans with shiny loafers and a navy jacket . the tory leader is campaigning in the south-west ahead of the general election . he is still trailing labour in the polls , with just 14 days to go until polling day . but he insisted he slept well on the eight-hour journey to cornwall .\ncleveland ` house of horrors ' survivors have written a book . amanda berry , 29 , and gina dejesus , 25 , revealed how they found the strength to survive imprisonment . the brave survivors have wrote a book , hope : a memoir of survival in cleveland , which will be released on april 27 . in an excerpt , published in people magazine this week , amanda and gina , revealed the years of rapes , torture and psychological games at the hands of ariel castro .\nmonaco face juventus in the champions league quarter-finals . leonardo jardim 's side are third in ligue 1 . the monaco coach insists he is proud of his side 's progress . jardin has been forced to nurture young players after big-money signings .\nbody of john lord was found in river trent , nottinghamshire , on april 15 . he went missing from his home on april 6 less than a week after wife 's death . june lord , 81 , died from a ` catastrophic bleed ' to the brain on march 31 . family feared worst after discovering a note describing how much he missed his wife of 63 years and how he could not live without her .\nlily sharp from the uk decided to play a joke on her own mother . she pretended to be an intruder and demanded a ransom for her return . her mother was completely fooled and called the police . lily then revealed that it was all a trick and sent her mother a picture .\nbarcelona 's star forward lionel messi has recovered from his foot injury . messi missed both of argentina 's friendlies over the international break . he trained with compatriot javier mascherano on thursday . barcelona face celta vigo on sunday , with messi expected to start .\nan audience with jimmy savile to be shown in london in june . author jonathan maitland says the public is ` ready ' for the play to open . mcgowan previously portrayed the comedian in his popular bbc series . twitter users have slammed the subject choice as ` unbelievable '\nchelsea host arsenal in premier league on sunday . cesc fabregas is set to start against his former club . the spanish midfielder 's image still hangs from the ken friar bridge . gunners fan claude callegari has called for the flag to be taken down .\n`` wonder woman '' director michelle maclaren has left . warner bros. says `` creative differences '' led to the decision . the movie is still set for release in june 2017 . gal gadot will appear in `` batman v. superman : dawn of justice '' in march 2016 .\npolice : alarm company called to report burglar alarm activated at hatton garden safe deposit ltd. . police say they knew alarm went off but did n't respond because of computer-aided dispatch system . british tabloid claims to have video of heist ; police say they have not seen it .\nthe island of por-bajin was discovered in 1891 but its purpose has not been explained . it is located in a remote lake in southern siberia , 3,800 km from moscow . the island was built during the period of the uighur khaganate -lrb- 744-840 ad -rrb- experts say it could have been anything from a prison , to a palace or monastry . scientists have created a 3d image of what the 3.5 hectare plot could have was used for .\ntoba graham was not concerned about being recorded , she tells cnn 's anderson cooper . graham says her son was `` embarrassing himself '' by wearing a mask . she pulled her son out of a crowd at a baltimore mall and slapped him . the 16-year-old boy says his mother did n't want him to get in trouble with the law .\nobsidian can rival diamond in the fineness of its edge . a small number of surgeons are using obsidian scalpels to carry out fine incisions . dr. lee green says incisions made with obsidian blades heal faster . in germany , a company produces obsidian scalpel for those with an allergy to steel or metal .\na saudi general says 1,200 airstrikes have been carried out since march 26 . a saudi official says more than 500 houthi rebels have been killed . the houthi rebel group is fighting a coalition of nine nations . the coalition is targeting houthi fighters in southern yemen .\nbali nine member myuran sukumaran has requested to spend his last days painting . his brother , chinthu sukumara has pleaded with the indonesian president to call off the firing squad . his fellow death row inmate , andrew chan , has requested he spend his final hours in church with his family . the bali nine pair 's lawyer julian mcmahon took four disturbing self portrait from sukumaru 's cell on sunday . the paintings depict the artist shot through the heart .\nbin man was filmed dumping plastic bin bags in an alleyway in oldham . cctv installed by frustrated residents who had noticed the rubbish piling up . council workers arrived days later and slapped stickers on the bags . they warned residents they could face fines of up to # 50,000 for not disposing of rubbish properly .\nfc tokyo president naoki ogane claims chelsea have made an offer for yoshinori muto . chelsea would look to loan the japan international to vitesse arnhem next season . jose mourinho has admitted that he is aware of the 22-year-old 's potential .\nhayley sandiford has been told she must get rid of her seven-stone dog . american bulldog winston has attacked several postmen in blackburn . miss sandifords says royal mail are victimising her pet . angry neighbours have even left notes on her front door . she has been ordered to find a new home for the dog by april 30 .\nfour children and two adults have been involved in a three car pileup in brisbane 's west . the crash happened on the brisbane valley highway , 2km south of fernvale . a 40-year-old man and a five-year old boy were the first to be airlifted to hospital . a 27-year - old woman and a six-year old girl were also flown out . six others have been taken to ipswich hospital with minor injuries .\nlake in boulder , colorado , has been invaded by thousands of gold fish . wildlife officials say it started as someone dumping ` four or five ' of their pets in the water two or three years ago . the animals have now multiplied to over 3,000 or 4,000 and are threatening to over-run the natural species in the lake . local officials are now considering two options - electroshocking the fish or draining the lake completely .\njordan spieth set a new 54-hole scoring record at the masters . the 21-year-old american is the third player his age to lead the tournament . spieth will play in the final group with justin rose on sunday . rory mcilroy and tiger woods are in a five-way tie for fifth .\nmanchester city could look to sell yaya toure this summer . the ivorian midfielder is wanted by inter milan . toure says he will not stay at city just to pick up his # 220,000-a-week wages . the 31-year-old says he is open to ` new challenges '\nmikel gonzalez scored his first goal for real sociedad after just 90 seconds . antoine griezmann doubled the lead in the 10th minute . david moyes ' side had not conceded in their previous four games . fernando torres was replaced by gabi after an hour . atletico madrid are now just two points behind rivals real madrid .\nbudget cuts mean pensioners are being forced to buy an annuity . but over-55s can now cash in their pots and spend them instead . pension firms say many are baffled about how the radical changes work . many are unaware of age restrictions or tax implications of the changes .\nblackpool in talks to sign austria defender thomas piermayr . the 25-year-old has been training with the championship club this week . piermayr is a free agent and had been playing for colorado rapids . blackpool are preparing for life in league one next season .\nbarcelona defeated almeria 4-0 in la liga at the nou camp . lionel messi opened the scoring for barcelona with a trademark curled strike . luis suarez doubled the lead with a similar left-footed strike . marc bartra added a third and suarez scored his second with the last kick of the game .\n30 ethiopian christians appear to have been beheaded and shot by isis . the 29-minute video shows dozens of militants holding two separate groups captive . at least 16 men are lined up and shot in a desert area while 12 others are filmed being forced to walk down a beach before being beheaded . it follows another video in february of the beheading of a group of 21 coptic christians on the beach in libya .\nphil taylor squandered a 4-2 lead to lose 7-4 to dave chisnall in manchester . the defeat sees the 16-time world champion finish fifth in the premier league table . chis nall moved up to second in the table after gary anderson drew with raymond van barneveld . peter wright was cruelly eliminated on leg difference after losing 7 - 4 to adrian lewis .\nharry kane captained tottenham against burnley . the 21-year-old scored on his england debut against lithuania . he also started his first game for the national team against italy . kane said it had been the ` best week of my life ' but he will want to forget 0-0 draw . tottenham are seven points off fourth-placed manchester city .\nafter more than two years of planning , 61-year-old doug hughes made it through restricted airspace in a gyrocopter wednesday carrying 535 letters . hughes was arrested for violating restricted airspace and operating an unregistered aircraft . his wife , alena , said she is proud of her husband and said he is a ` patriot ' hughes has since been released on his own recognizance and is allowed to return to florida under certain conditions .\nnew cnn/orc poll finds 57 % say wedding-related businesses should provide same-sex services as they would heterosexuals . just 41 % say they should be allowed to refuse service for religious reasons . that 's a shift from a pew research center poll conducted last fall .\nthe prime minister was speaking to martial arts pupils at a school in warrington . he suggested using jujitsu to ` put nigel farage on the floor ' in the debate . but mr cameron later backtracked insisting there will be ` no bodily contact ' ukip leader nigel farage said he was feeling ` pretty good ' ahead of the tv test .\narsene wenger said chelsea are ` completely offensive ' and arsenal are ` defensive for 90 minutes ' jose mourinho hit back at the arsenal boss , saying : ` it 's not easy , not easy ' chelsea host arsenal in the premier league on wednesday . wenger and mourinho have a long history of working together .\naboriginal model management australia started two and half years ago . the agency is now looking to hire 40 models across five capital cities . founder kira-lea dargin hopes to have 10 models at next year 's fashion week . samantha harris was one of the most prominent faces at mercedes-benz fashion week australia .\nmirka ` cro crop ' filipovic takes on gabriel gonzaga in poland on saturday . filipovic lost to gonzaga by a first-round head kick in 2007 . gonzaga insists he does not consider the fight a rematch . click here for all the latest ufc news .\naustralian plus-sized model laura wells has found international success as a size 14 model . she has modelled for macy 's , macy 's and david jones to name a few brands . wells said her less curvy counterparts have to make extreme sacrifices to keep thin in the lead up to fashion week .\nthe only way is essex star , 24 , has unveiled new summer range . full of pastels and feminine florals inspired by festival season . says she works out to keep her curves and is happy with how she looks . has also launched tanning range and false eyelash collection .\nwolfsburg beat freiburg 1-0 to reach the german cup semi-finals . ricardo rodriguez scored a second-half penalty to secure the win . kevin de bruyne and andre schurrle missed a host of chances . wolfsburg will face borussia dortmund in the final four .\nsarah 's mother told her phil was n't her real father last year . she agreed to have a dna test to find out who her real parent is . the 23-year-old mother burst into tears when she found out the truth . she and phil , who has raised her , appeared on the jeremy kyle show .\nnew york mayor bill de blasio joined by families of slain nypd officers rafael ramos and wenjian liu . the families threw out the ceremonial first pitch at the mets ' home opener at citi field . new england patriots quarterback tom brady also threw a first pitch , at fenway park in boston - but did n't do himself proud , chucking the ball straight at the ground . widow of american sniper chris kyle pitched in for the san diego padres .\ndietrich evans , 22 , arrested on suspicion of shooting kay hafford in the head . the 28-year-old was shot in the back of the head in a houston road-rage accident . she was able to pull over and call for help but was left with bullet fragments in her brain . evans , a documented gang member , has been charged with aggravated assault .\nfirefighters battled to bring inferno under control at randolph hotel , in oxford . the five-star hotel is used as a setting for television 's inspector morse . smoke was seen billowing from the roof as dozens of firefighters battled to control blaze . cause of fire is not known and extent of damage to grade ii listed building remains unclear .\nthe number one destination for aussies is the ancient city of athens in greece . second is istanbul , followed by toronto and warsaw . ho chi minh city in vietnam , dublin in ireland , barcelona in spain , colombo , sri lanka , santiago in chile , and vienna in austria are also popular destinations . seven out of the top ten holiday destinations are in europe . aussie travellers are planning to travel abroad between may and august . the number of australians heading overseas has increased in recent years .\nthe craze involves having your pet pooch shaped into a sphere or a square . hairdressers in the taiwanese capital taipei are giving particularly furry customers outlandish makeovers . pictures of doe-eyed dogs with their shapely new cuts have proved extremely popular online .\njohn goodwin shot himself outside of rockingham county superior courthouse in new hampshire . he was airlifted to a hospital with life-threatening injuries . goodwin , 75 , went on trial this week on six counts of aggravated felonious sexual assault . prosecutors said that goodwin repeatedly sexually assaulted a student , who is now 24 years old .\nnew nike kits for the us women 's national team have been criticised . the all white strip does not represent the american flag . nike vice president charlie brooks has defended the decision . brooks said ` not every team pays homage to the flag ' usa player tobin heath says she is ` proud ' of the new designs . the outfits will be worn at the world cup in brazil .\nwolves beat nottingham forest 2-1 at the city ground on good friday . manager kenny jackett has told his side to keep their focus . wolves face leeds united at molineux on monday night . jackett believes it is now just the top eight in the championship .\na melbourne man has been ordered to do 350 hours of community service for stealing six mobile phones . jamie pettingill threatened to slice off a schoolboy 's face with a knife . he is the son of trevor pettingills , who was acquitted of shooting two police constables in melbourne 's infamous 1988 walsh street murders . pettingil robbed two women , a man and two schoolboys of their phones and sold them to fund a gambling addiction . the 26-year-old was banned from entering gaming venues .\npatrick o'melia found justin braddock unconscious in front seat of a car . he spent seven minutes giving him cpr and eventually revived him . braddock , 34 , was taken to hospital but fled without a thank you . he was later caught by deputies as he ran away from florida hospital . a two-year-old child was also said to have been found in the back of the car .\nsaracens lost to clermont in the champions cup semi-final in saint-etienne . the result leaves mark mccall 's side in the hunt for a first european title . sarries face northampton at the aviva premiership final next saturday .\nformula one star jenson button completed the london marathon 2015 in under three hours . the mclaren driver was running on behalf of cancer research . button described the experience as ` really really emotional ' he joked he was disappointed to finish behind former olympic rower james cracknell .\na new kansas law tells poor families that they ca n't use cash assistance from the state to attend concerts , go swimming , visit theme parks or buy lingerie . the list of do n'ts runs to several dozen items . more than 20 other states have such lists . but , the one included by the republican-dominated kansas legislature in a bill that gop gov. sam brownback planned to sign thursday appears to be the most exhaustive . the new restrictions , regarding kansas applicants , have inspired national criticism and mockery from the daily show .\nbritish transport police chief says football fans are responsible for thuggery . chief constable paul crowther says it is happening on a weekly basis . he said the impact on ordinary passengers is ` unacceptable ' comes ahead of a summit organised to determine the scale of the problem . figures show that btp has recorded 630 football-related incidents this season .\nraheem sterling and theo walcott are both in contract negotiations with their clubs . the two wingers will go head-to-head at the emirates on saturday . sterling has been one of liverpool 's best players this season . walcott has struggled for game time since returning from a knee injury .\ndug the pug was hiking in fontana , canada , with his owner when he ran toward a rattle sound . he was bitten in the face by a rattlesnake and his face swelled to twice its size . was given an entire vile of venom antidote and two days of round-the-clock treatment .\nmario balotelli was clearly onside when he scored for liverpool . but michael oliver 's assistant referee ruled the italian was offside . liverpool lost 2-1 to aston villa in the fa cup semi-final at wembley . brendan rodgers said it was a ` very poor decision ' by oliver .\nnew york city , zurich and paris are all great places to visit on a budget . take a stroll through times square or central park for a no-cost stroll . visit one of london 's many free museums for a cultural fix . take photos in front of big ben or visit buckingham palace for the changing of the guards . for breathtaking city views , wander up lindenhof hill in zurich .\nfrench tourists who torched a quokka have been released from jail . thibaud jean leon vallet , 24 , and his cousin jean mickael batrikian , 18 , pleaded guilty to animal cruelty . the pair lit the quokkah on fire with a deodorant can and a lighter on april 3 . the men opted to serve the seven days in hakea prison rather than pay the fine . the quokki survived the incident by scampering away , but was singed by the flame . animal rights activists have claimed that the pair 's punishment was too lenient for their crime .\nincident in kathmandu was the worst to hit the south asian nation in over 80 years . intrepid travel have cancelled all bookings to nepal until may 11 . those who have already booked have been offered a full refund or alternative trip . foreign office has advised tourists to check with their travel provider before heading to nepal .\nkatia apalategui 's mother coped with losing her husband by holding on to his pillowcase which his smell clung to . this inspired the 52-year-old french insurance saleswoman to think of a more permanent way to capture a person 's individual scent . she teamed up with the havre university in france , where researchers have developed a technique to reproduce the human smell .\nnearly 40 britons are missing in nepal after the devastating earthquake . susannah ross , 20 , told friends she was going trekking last week but has not been heard from since friday . her family are increasingly concerned about her and hope she will call to let them know she is safe .\ncharli , 8 , from australia , has turned her youtube channel into youtube 's largest food channel in less than three years . she and her sister ashlee , 5 , are raking in an average of 29 million views per month for their crafty how-to videos . charli 's channel earned the young entrepreneur an estimated $ 127,777 -lrb- aud $ 163,893 -rrb- in march alone .\nman named locally as richard clements , 62 , was mowing grass outside property . but ride-on lawnmower overturned into pond and trapped him underneath . his family managed to drag him from the water and made frantic efforts to save him . but he was pronounced dead at the scene in wattisham , suffolk .\nolivier giroud scores five goals in four games for arsenal in march . arsenal beat everton 2-0 , qpr 2-1 and newcastle 2-2 to earn the award . arsene wenger also wins the barclays premier league player and manager of the month award .\nandreas lubitz , 27 , researched suicide methods and cockpit door security . he was prescribed anti-anxiety drug so strong doctors have to warn patients of the increased risk of suicide . second black box from the flight has been found and is in ` usable ' condition .\ncameron unveiled new plan to improve education standards . pupils who get poor sats results will be forced to resit them in secondary school . the pm was upstaged by six-year-old lucy howarth at a primary school . labour 's tristram hunt dismissed the proposal as ` desperate '\nthe hop theory ` beer-bag ' contains hops , fruit peels and natural spices . claims to turn lager into craft after just two minutes of steeping . hop theory is nearing its $ 25,000 target on crowd-funding site kickstarter . project criticised by professional breweries as misleading about what constitutes as ` craft beer '\ntottenham have won just two of their 10 premier league games at lunchtime this season . mauricio pochettino blames europa league games for the poor form . spurs play his former club southampton at st mary 's on saturday . pochettinos dismissed the prospect of hugo lloris leaving the club .\nseattle-based filmmaker gabriel ng spent three months filming scenes in thailand . the six-minute video shows the country 's picturesque coastline and religious sites . he filmed scenes using a camera attached to a remote control drone that retails from # 500 . the full-length video offers a glimpse into everyday life on the island of ko samui .\njames holmes is accused of killing 12 people and injuring or maiming 70 others in 2012 . opening statements in his trial are scheduled to begin monday . holmes says he was insane at the time of the shootings , and that is his legal defense . prosecutors are n't swayed and will seek the death penalty .\nqueens park rangers host west ham in the london derby on saturday . leroy fer could be rushed back from a knee injury . the dutch midfielder has not played since injuring his knee against sunderland in february . qpr boss chris ramsey admits he is taking a chance on fer .\nbecky cooper and bridget yorston - aka bec and bridge - unveiled their swimwear line at mercedes-benz fashion week australia . the 120 piece ready-to-wear collection was inspired by seventies model veruschka and the 1970s period in marrakech . animal prints and metallics feature heavily in the collection .\npåhoj was designed by swedish designer lycke von schantz . it has a ` lightweight chassis ' and is 3.2 ft -lrb- 1 metre -rrb- tall . the product will launch on kickstarter next week but prices are not yet known . it clips onto the back of a standard bike using a specially-designed attachment . a child , up to a height of 3.1 metres , is then strapped into the seat .\namerican cable and satellite television network has pledged to crackdown on australians who use overseas accounts to access the us-restricted streaming service hbo now . hbo has warned users , who are watching shows such as girls that will be cut off on april 21 . tens of thousands of aussies are reportedly accessing foreign content via virtual private network -lrb- vpn -rrb- technology .\ntony fernandes watched qpr 's 3-3 draw with aston villa from afar . the chairman was watching the game from malaysia on his iphone . he spoke of his despair after his team twice threw away a lead . christian benteke scored a hat-trick for villa to earn them a draw .\nturkey has blocked access to twitter and youtube after they refused request to remove pictures of prosecutor mehmet selim kiraz . the 46-year-old died in hospital after he was taken hostage by far-left group . turkish court imposed the blocks because images were being shared on social media .\na beachfront property with spectacular views has gone on the market for # 3million in cornwall . the property has a summer and winter cottage , cleverly linked via a lift . boasting seven bedrooms , six reception rooms and seven bathrooms , the property has direct access to the beach . estate agents said they have seen an increase in interest in holiday homes in cornwall since poldark began airing last month .\neach year thousands of homeless dogs facing euthanasia - some hours from death - get loaded on planes and flown to new homes in places where shelters are experiencing shortages . groups such as california-based wings of rescue or south carolina-based pilots n paws recruit pilots to volunteer their planes , fuel and time . the two non-profits say their concept has been a roaring success with the numbers increasing year-on-year . it 's estimated that more than 4 million u.s. pets are euthanized every year .\nvaccine could make ` substantial contribution ' to controlling disease , say scientists . drug firm glaxosmithkline has applied for a licence from the ema . rts , s is the first malaria vaccine to reach advanced trials . tests carried out on 15,500 toddlers and babies in sub-saharan africa .\nkyle naughton suffered ligament damage after david meyler 's challenge on saturday . hull midfielder was shown a straight red for the hefty challenge . naughon will miss the rest of the season and will be out for six weeks . angel rangel will return to the swansea side to face everton on saturday .\nserena williams won 4-6 7-6 -lrb- 3 -rrb- 6-3 against sara errani in fed cup play-off on sunday . world no 1 williams beat italian errani to take her career record over her to 8-0 . us lost 3-2 to italy in the fed cup and were relegated to world group ii .\nup to 200 people are feared missing after a landslide in a trekking area north of kathmandu . the death toll in nepal has now climbed to 4,600 , officials say . more than 9,000 people are injured , and 8 million people are affected across nepal .\nlong before mobile phones , shy love-seekers had to resort to other tactics . in the case of late 19th-century america , it was the ` escort card ' comical printed cards were handed out by men to women they found attractive . collector alan mays has unearthed a treasure trove of these vintage ice-breakers .\nformer brazil star rivaldo is the president of mogi mirim . the club have hired edson cholbi do nascimento as a coach . the 44-year-old 's dad is brazilian legend pele . edinho is appealing a 33-year prison sentence for money laundering .\nisis has launched english-language radio news bulletins on its iraqi network . the bulletin , which airs on al-bayan , boasts updates in both arabic and russian . it is hosted by a man with an american accent who takes listener through day 's events . includes information on suicide bombings and ` martyrdom operations '\nus researchers have found a single gene - tcsad1 - is responsible for cocoa butter 's melting point . the gene could be used to create new types of chocolate and pharmaceuticals . plant geneticists say their finding could also lead to new varieties of climate change-resistant cocoa plants .\nchelsea fans called themselves the ` c-team ' in lighthearted prank . the four jokers set off blue smoke bombs and covered the arsenal sign . the prank lasted just 10 minutes before it was taken down by staff . chelsea face arsenal at the emirates stadium on sunday .\nepa officials said documents suggest methyl bromide may have been improperly applied in various locations in puerto rico . the chemical sickened a family of four from wilmington , delaware , last month in the u.s. virgin islands . two teenage boys went into comas after being exposed at the sirenusa condominium resort in cruz bay , st. john .\nnick clegg claimed the paedophile mp did not belong to the lib dems . in fact smith took the party whip for four years in parliament . he was feted as a lib dem grandee in the years before he died . mr clegg was accused on a radio phone-in of having ` washed his hands ' of the issue by refusing to order a party investigation into smith .\nbrown was unarmed when he was fatally shot by a white police officer , darren wilson , in a st. louis suburb in august 2014 . a st.louis county grand jury and the u.s. justice department declined to prosecute wilson , who resigned in november . brown 's mother , lesley mcspadden , and his father , michael brown sr. , announced at a press conference in early march that a wrongful death lawsuit would be filed ` soon '\nroland martin says the u.s. is to blame for the violence in baltimore . he says we enslaved africans , supported jim crow , ghettoized blacks . martin : we tried to put a lid on it with heavy policing and a war on drugs . we failed . we are the authors of every page of baltimore 's story , he says .\nharry kane became the premier league 's youngest captain this season . at just 21 years and 251 days , the tottenham striker led out his side for the first time in draw with burnley on easter sunday . that came after he scored within seconds of his england debut against lithuania on march 27 at wembley . kane made his first international start in italy on tuesday .\nwest brom host queens park rangers at the hawthorns -lrb- saturday 3pm -rrb- baggies defender craig dawson suspended for game after red card wrongly given to gareth mcauley against manchester city . qpr youngster darnell furlong likely to miss game with calf injury .\nliverpool face aston villa in the fa cup semi-final at wembley on sunday . lucas leiva has been at liverpool for eight years and is the longest-serving player at the club . the brazilian has played more games for liverpool without winning a major trophy than anyone else in 50 years . he missed the 2012 league cup final and two other wembley appearances that year with a serious knee injury sustained against chelsea the previous november .\nlawmakers are debating indiana 's new religious freedom law . critics say it is an invitation for businesses to discriminate . supporters say the law is a copy of the federal law . the key difference is that indiana expands the instances where someone can use religious freedom as a defense . .\nex-met police chief lord stevens is to be investigated by the ipcc . watchdog probe stems from complaint from stephen 's father neville lawrence . allegations that former met chief failed to hand over key information to macpherson inquiry regarding black teenager 's race hate killing . lord stevens was deputy commissioner of met from 1998 to 2000 .\nthomas bjorn 's shot landed in a female fan 's lap during the first round of the masters . erik compton was in dreamland as he shot 73 on his debut at augusta . russell henley shot 68 as he made a good start to his second masters . bubba watson fought back with a solid 71 to keep him in the hunt .\nresearchers at the university of wollongong have designed a new type of condom . it is made with hydrogel , a strong and flexible solid which can be made to feel and act like human tissue . the groundbreaking design will eventually offer functions like self-lubrication , topical drug delivery , and even electric conductivity .\nno tickets for floyd mayweather vs manny pacquiao are yet to be sold . mayweather promotions ceo leonard ellerbe claimed they would be on sale last week . but there is no sign of an end to the stalemate and no tickets are available . mayweather and pacquio are due to fight next weekend in las vegas . the 16,500-capacity mgm grand arena is expected to host 50,000 fans .\nmercedes driver lewis hamilton was fastest in first practice for the chinese grand prix . hamilton finished 0.541 secs clear of team-mate nico rosberg in shanghai . ferrari 's sebastian vettel was second with kimi raikkonen third . jenson button was 13th and fernando alonso 17th in the first session .\nnew report reveals the dea program was created in 1992 . it monitored every phone call made from the united states to a country on their drug watch list . this is the oldest known example of the u.s. government authorizing this level of tracking on unknowing citizens of the country . the program was a massive success , and allowed agents to infiltrate drug trafficking rings . it was eventually halted in 2013 , just months after edward snowden began releasing classified information about the nsa .\nprofessor at massachusetts institute of technology nancy kanwisher , 56 , shaved her head during a lecture . the clip was posted on her brain talks website , which is designed to teach people about the different methods of studying the brain . after the haircut a student used a permanent marker to draw the different brain regions on ms kanwishers ' bare scalp .\nthe alleged ` serial bride ' liana barrientos , 38 , was arrested just after leaving court friday , when she allegedly evaded the fare at a bronx subway station . barriento is accused of marrying 10 men over 11 years and charging them a fee for her ` services ' she pleaded not guilty to two felony charges of filing a false instrument , involving marriage licences . at one time she was married to eight men simultaneously . one of her husbands was deported back to pakistan for making threatening statements against the united states in 2006 .\nattorneys for michael brown 's parents , lesley mcspadden and michael brown sr. , filed the complaint at the st. louis county courthouse on thursday . the family 's lawsuit is seeking $ 75,000 in compensation , as well as unspecified punitive damages . it calls for a court order prohibiting the use of police techniques ` that demean , disregard , or underserve its african-american population ' the lawsuit names the city of ferguson , former police chief thomas jackson and former police officer darren wilson as defendants .\nmiddlesbrough beat rotherham united 2-0 in their championship clash on saturday . lee tomlin and patrick bamford scored in the second half to give boro victory . the win keeps aitor karanka 's side fourth in the championship table . the teesiders lost to watford by the same scoreline on easter monday .\ntipper lewis has been reaping the benefits of superfoods for twenty years . credits chia seeds , bee pollen and matcha green tea with her energy . grew up on a farm and became fascinated by the power of plants . now works as head herbalist at neal 's yard remedies , the uk 's leading superfood supplier .\nkuku kube is available for free on facebook , android , ios and on desktop browsers . it shows a board of coloured squares and the aim is to find the odd one . players get a point for every correct square identified , but if they click or tap the wrong square they lose a point . there are eight levels , and as a player progresses the squares change orientation or add borders to make it harder .\nalfred guy vuozzo , 46 , shot dead brent mcguigan , 68 , and son , brendon , 39 . he was sentenced to life in prison on monday for the murders in august . vuozzi was two years old when his sister , cathy , was killed in 1970 . he shot them in ` execution-style ' killings to avenge his sister 's death . brent 's father , herbert , was also killed in the crash , but was spared . v luozzo will not be eligible for parole for 35 years . judge called brutal double-murder an act of ` hatred and misdirected vengeance '\ncheryl howe was diagnosed with polycystic ovary syndrome -lrb- pcos -rrb- at the age of 12 . she suffers from excessive hair growth on her face , breasts , stomach and legs . the 32-year-old has been fighting for six years for treatment on the nhs . has spent # 2,000 a year on razors and has to shave up to three times a day .\nsix survivors of paris kosher supermarket siege sue cnn affiliate bfmtv . they say the media outlet endangering their lives by broadcasting their location live . bfm says one of its journalists mentioned a woman hidden inside the store . the hostage-taking was the culmination of three days of terror in paris .\ncommuters across new south wales ' coastline are mourning the loss of their umbrellas on social media . with winds of up to 135km/h battering the east coast , many have learned the hard way that their trusty shelters ca n't withstand cyclone strength conditions . workers have begun posting photos of their broken umbrellies scattered in gutters and discarded in bins along with the hashtag #umbrellageddon on social social media .\npema lama , 15 , was pulled from the rubble of a guesthouse in kathmandu . he became ` pancaked ' between two floors when the quake hit on saturday . american disaster response team had been working for several hours . his astonishing tale of survival came as a four-month-old baby was rescued . five-month old sonit awal was pulled . from the ruins of his family home . his mother rasmila awal thanked ` god and the rescuers ' for saving him .\nchurch treasurer ian walters is accused of killing his wife tracy . he is accused of deliberately smashing his car into a tree at 84mph . mrs walters , 48 , died two days after the crash in march last year . prosecution claim she ` could n't cope with her husband 's demands ' in bed . but in his own defence , walters described their early sex life as ` dramatic '\nsam tomkins is to cut short his stay in the nrl with new zealand warriors . the 26-year-old will rejoin his home-town club on a four-year contract from 2016 . tomkins rejected an offer from warrington in order to return to wigan .\nscientists from the university of michigan have found tiny triggers inside pomc cells that give rise to this ` voice ' the research , done on fish and mice , could someday lead to pills that will be able to quieten that voice or increase its volume . the research focused on pom c neurons , which are a structure called the hypothalamus , that send and receive signals to regulate appetite .\nandre cole , 52 , became the third convicted killer put to death this year in missouri . he was executed by lethal injection at 10.15 pm on tuesday at the eastern reception , diagnostic and correctional center in bonne terre , missouri . his fate was sealed after the u.s. supreme court turned down several appeals , including one claiming cole was mentally ill and unfit for execution .\nbayern munich manager pep guardiola has yet to commit his future to the bundesliga giants . the spaniard 's contract expires at the end of the 2016-16 season . former bayern boss ottmar hitzfeld believes borussia monchengladbach boss lucien favre is the man to replace guardiola .\ntim tebow has been signed to a one-year contract with the philadelphia eagles . the team announced the contract monday but did not disclose the financial terms of the deal . tebow has n't played a snap in the nfl in over two years since being cut by the new england patriots before the 2013 season . he worked out with the eagles last month and must have impressed head coach chip kelly .\nniki lauda is fully expecting nico rosberg to turn ` nasty ' at some stage . the german accused his mercedes team-mate lewis hamilton of being ` egocentric b ******* ' hamilton spearheaded a mercedes one-two at the shanghai international circuit .\nap mccoy is aiming to end his career with victory in saturday 's grand national . mccoy will retire immediately if his mount shutthefrontdoor wins the race . mccoy won the national in 2010 on do n't push it . mccoy has won the title every year since he first won in 1997 .\nhamilton , 33 , has a history of substance abuse and admitted to relapsing with drugs and alcohol in february . he has been on the disabled list all season after undergoing shoulder surgery . the texas rangers are willing to pay around $ 15million for hamilton . they do not want to give up any players in a trade with los angeles . the angels would effectively be paying $ 68million for him to play in texas . hamilton filed for divorce from wife katie in february , around the same time he self-reported a cocaine and alcohol relapse .\nscott quigg offered carl frampton # 1.5 m to fight him in a british super-fight on tuesday . but frampton has dismissed the offer as a ` publicity stunt ' and ridiculed the offer . the ibf super-bantamweight world champion has called on eddie hearn to make a more realistic offer .\nben parsons , 34 , stopped in the middle of the brighton marathon . he got down on one knee and proposed to girlfriend anna jefferson , 36 . she was watching him run with their children nancy , three , and thomas , 11 months . ben carried the ring in his bum bag and waited to spot anna in the crowd .\nmel greig has written an open letter to the media about the royal baby . the former 2day fm co-host shot to notoriety in 2012 after a prank call during the duchess of cambridge 's first pregnancy resulted in the death of the nurse who took the call . she asks why the media continues to seek fresh angles for stories after seeing the consequences of her mistake . greig asks various media outlets to learn from the tragedy of ms saldana 's death and to be sensible when it comes to covering the birth of the second royal baby . the duchess of . cambridge is believed to be overdue by five days as she had been due to give birth last thursday .\nmichael slager is facing murder charges for shooting walter scott in the back . but prosecutors say he wo n't be executed because the killing did not include any of a list of ` aggravating circumstances ' which enable the death penalty . the state law lists 12 ` agg graving circumstances ' including torture , rape , drug trafficking , kidnapping , burglary and arson . slager fired last week after he was charged with murder . footage shows him taser julius garnett wilson , who is now filing a lawsuit .\namateur cyclist dave sim plans to ride the tour de france on a raleigh chopper . the 36-year-old has spent months training aboard his bright yellow mark three chopper in preparation to ride all 2077 miles of the 2015 tour defrance route . mr sim hopes his stunt will inspire people to get out and ride themselves .\npolice officers accompany the hearse carrying walter scott 's body to his funeral . hundreds of mourners gather at a church in summerville , south carolina . the head of the church says the death was `` motivated by racial prejudice '' a witness says she saw scott and officer michael slager scuffling before the shooting .\narsenal have won their last eight premier league games in a row . but club chief executive ivan gazidis says he is not happy with second place . he says the gunners may struggle in the near future due to tv money . gazidis admits arsenal will ` keep pushing ' chelsea to win the title .\nenoch gaver , 21 , was killed in the brawl in cottonwood , arizona . police say he was killed after a fight broke out in a walmart parking lot . four members of the gaver family are charged with assaulting an officer and resisting arrest .\nliverpool 's vice captain jordan henderson has agreed a new long-term deal . the 24-year-old has signed a deal that will keep him at anfield until 2020 . henderson 's current terms had 12 months to run but leaving merseyside was never an option . the midfielder could be handed the armband when steven gerrard leaves .\nabdul hadi arwani was found dead in his black volkswagen passat in wembley . he was found slumped in the back seat of his car on tuesday morning in north west london . the 48-year-old syrian national was an outspoken critic of the assad regime . a 46-year old man has been arrested in brent on suspicion of conspiracy to murder .\nian poulter finished in a tie for sixth place at the masters on sunday . phil mickelson opted for an all-black outfit on day four . tiger woods and rory mcilroy were paired together in the final round . danny willett hit three rounds of 71 but his third of 76 proved his undoing .\nmother of wabc reporter lisa colagrossi allegedly confronted her daughter 's boss camille edwards at her funeral on march 23 . colag rossi , 49 , died from a brain aneurysm on march 19 . colgrossi had just finished covering a house fire in queens , new york when she collapsed and never regained consciousness . witnesses said that colagrossi refused to hug edwards and told her : ` you are the reason i am standing in this church '\ntraveller alex elenes went on a trip to see the amazon rainforest . he missed the whole thing being asleep . the pictures were captured by his cousin roxy de la rosa . the trip cost upwards of # 1,000 -lrb- $ 1,600 -rrb- just for the amazon .\nthe wide leg trouser is at the forefront of ss15 trends . louise and emma say it 's a welcome relief from the skinny jean . pair with a high heeled shoe and a simple knit to keep it in proportion . poppy delevingne channeled the trend at the aw15 chloe show in paris .\nthe football association will contact qpr and chelsea over incident . branislav ivanovic was struck on the head by a cigarette lighter thrown from the crowd during chelsea 's 1-0 win over qpr on sunday . qpr are reviewing cctv footage and have promised to ban those involved .\nedwin van der sar believes louis van gaal can bring glory days back to old trafford . manchester united are currently third in the premier league table . van gaal 's side travel to chelsea on saturday in top form , having won six successive matches . van der sar admits the title is probably beyond united 's grasp this season .\nresearchers in massachusetts say a person 's keystrokes may reveal a huge amount of information about their motor skills . they have created an algorithm that can tell how effectively someone is striking a keypad . it can distinguish between typing done in the middle of the night , when sleep deprivation impairs motor skills , and typing performed when fully rested .\nnew book claims hillary clinton imposed a blanket of secrecy on her movements during monica lewinsky scandal . she told aides they would be fired if she was seen , it is claimed . mrs clinton said she wanted nobody to know when she was going to the pool apart from one usher who was to guide her there . there she would spend three and a half hours sitting on her own reading looking ` heartbroken '\nliverpool goalkeeper simon mignolet has returned from international duty . mignalet was with belgium for euro 2016 qualifiers against cyprus and israel . the 27-year-old posted pictures of himself in the cockpit on his facebook account . migneolet is back in england ahead of liverpool 's game with arsenal .\nthe mineral veins were found at a site called ` garden city ' on the slopes of mount sharp . they stick up from the rock by up to 6cm -lrb- 2.5 inches -rrb- scientists believe the bizarre ridges formed in mars ' wet past billions of years ago above the now eroded bedrock .\nmany sacked , stripped of savings and even jailed after cash shortfalls were recorded . post office asked accountants second sight to investigate horizon it system in 2012 . leaked report suggests discrepancies could have been caused by computer failures . report has sparked fresh calls for a full independent inquiry into the system .\nrock and roll hall of fame induction ceremony held in cleveland . paul mccartney , yoko ono among those in attendance . green day , joan jett & the blackhearts , stevie ray vaughan also honored . fall out boy gave one of the most exciting performances of the night .\npolice in new zealand have implemented extra security measures amid growing concerns of a targeted terror attack . kiwi jihadi mark john taylor posted a video to youtube urging is sympathisers to attack anzac day services in australia and new zealand . the video has since been removed after 3 news alerted authorities . taylor is one of very few new zealanders who are known to be fighting for islamic state militants in syria .\nan fbi agent 's sniper rifle was ripped out of his car 's window and stolen from a salt lake city hotel parking lot . the gun was inside a hard rifle case and was ` secured properly ' to a truck safe with padlocks and chains . the agent 's gear bag , backpack , and some clothing and tools were also stolen during the march 27 theft . the theft happened just a week before obama made a scheduled trip to utah earlier this month .\njohn carver 's side travel to anfield to face liverpool on monday night . the magpies are seven points adrift of fourth-placed manchester city . liverpool are out of the champions league after successive defeats . carver says his players need to relieve the pressure on their shoulders .\nprime minister says two parties are pretending to ` slug it out ' ahead of election . but he insists they are both working to ramp up spending regardless of deficit . comes as he launches tory party 's scottish manifesto in glasgow . he says together , the snp and labour ` pose a clear threat ' to uk .\npixium vision 's technology is based on a technique known as ` neuromodulation ' in which electricity stimulates the nervous system to restore sight . a surgeon first implants a small silicon chip with 150 electrodes on the retina . when the patient puts on the system 's dark glasses , an integrated video camera sends images to a portable computer . a connected ` pocket processor ' converts that recording into an infrared image , which the goggles will then beam into the eye .\nland reclamation is being carried out in the spratly islands in the south china sea . china is creating the area by using dredging vessels to dig up sediment from the sea , and then dumping it on subermeged coral reefs . five islands have already been made , with two more in development . experts have told mailonline that the activities could be hugely damaging to local ecosystems .\nnigel farage insisted his party would not become ` redundant ' if it left the eu . he said he would accept the result , but rejected claims his party was redundant . ukip leader appeared on a special question time-style programme filmed in birmingham today . he claimed the party could enjoy an snp-style surge in support in the wake of a vote to remain in the eu , if it was held .\nsouthampton beat hull 2-0 at st mary 's on saturday . saints are five points behind manchester city in the premier league . ronald koeman 's side have to win their last six games to finish in top four . saints travel to manchester city on the final day of the season .\nmother angela linton abused headteacher thomas o'brien . she had been banned from perry beeches school after abusing staff . but she used her son 's pass book to write the vile message in january . mr o'neill said he was ` traumatised ' by the message . linton , 47 , was given a community order and fined # 185 for harassment .\ngina maria schumacher was taking part in the nrha european futurity horse show in the bavarian town of kreuth . the 17-year-old was seen riding a number of different horses during the tournament . she is expected to take part in grand final of the tournament on saturday evening . comes just days after her 16-year old brother mick returned to the racing circuit just weeks after he was involved in a 100mph crash .\nthe number of people developing kidney stones is rocketing . david crossley developed large stones in his right kidney . doctors believe his low fluid intake was to blame for his condition . one in ten of us will develop a kidney stone , and the numbers are rising . emergency admissions to hospital for kidney stones have shot up by 136 per cent .\nprosecutors say the tsa agent secretly videotaped a female co-worker while she was in the bathroom . the agent , 33-year-old daniel boykin , entered the woman 's home multiple times , police say . police found more than 90 videos and 1,500 photos of the victim on boykin 's phone and computer .\nfitness fanatic lucy watson is the face of very.co.uk 's #cantwaitforsummer campaign . the 24-year-old models ibiza-inspired summer brights and tropical print sun dresses . she recently starred in a made in chelsea work-out dvd .\nduring her senior year of high school , lauren hill was diagnosed with dipg -lrb- diffuse intrinsic pontine glioma -rrb- , a rare form of brain cancer . she still made it through a full season at mount st. joseph university in cincinnati while raising more than $ 1.5 million for others with her condition . hill has a new goal which is to raise a total of $ 2.2 million for treatment and research . her mother lisa updates her followers on the facebook page for lauren 's fight for cure about her daughter 's progress .\na garbage truck driver has died after he was crushed by a pole . the man was collecting bins in footscray early on saturday morning . police say the truck rolled forward , pinning him between the vehicle and a pole . meanwhile another man has died and two others are fighting for their life in hospital after a car crashed in melbourne 's east .\njay kantaria , 38 , had been looking forward to daughter 's birthday party . he leapt onto tracks at sudbury hill station in north-west london . died instantly of ' a severe traumatic brain injury ' at the station last october . coroner recorded an open verdict on the cause of death . said there was ` doubt ' as to mr kantaria 's intention when he jumped .\nrand paul 's son william paul , 22 , was cited for a dui on sunday in lexington , kentucky but not arrested . paul was driving a 2006 honda ridgeline at 11.24 am when he crashed into the back of an unoccupied parked car . witnesses said paul was ` revving his engine ' while sitting alone in the truck . paul failed a field sobriety test and refused blood and breathalyzer tests at the hospital .\ntwo russian planes were scrambled from raf lossiemouth in scotland . the russian aircraft are believed to be ` bear ' bombers capable of carrying nuclear missiles . raf scrambled typhoon jets after russian ships entered english channel . sources claim both incidents may have been an attempt to ` snoop ' on a huge nato war games exercise taking place in scotland .\ndelta air lines flight 2522 landed at laguardia airport in new york city . crew reported an odor of smoke moments after landing from tampa , florida . firefighters used thermal imaging camera to locate a potential heat source . plane was towed to the gate and passengers deplaned normally .\nzachary cain stickler , 34 , was accused of hitting his partner in february . he pleaded not guilty to the charges in shasta county superior court on friday . on saturday , he intentionally crashed his cessna plane into a field in california . he had sent text messages to friends and family saying he was distraught and planned to kill himself .\npoll : more religiously affiliated americans now favor same-sex marriage than oppose it . in 2003 , less than 30 % of religiously affiliated u.s. americans supported same - sex marriage . now , 47 % of those polled support same - sex marriage , according to public religion research institute .\nbbc filled more than half its election tv debate audience with left-leaning voters . some of them were brought in from scotland and wales . when ukip leader nigel farage said they were prejudiced , they only booed him further . david dimbleby pointed out that the audience had not been selected by the bbc , but by a ` reputable polling organisation ' .\nedinson cavani says he will stay at paris saint-germain until his contract expires . manchester united are interested in the uruguayan forward . cavani scored twice in saturday 's league cup final win over bastia . psg owner nasser al-khelaifi has ruled out selling the striker .\nthe claims were made by the commander of russian space command . oleg maidanovich said someone was hiding satellites as space junk . but in a film he refused to name the country behind the ruse . it suggests there could be more satellites than thought monitoring different countries on earth .\nfitness influencers modelled we are handsome activewear at fashion week australia . the show was held at white city tennis club in paddington . the models included ballerinas and sprinters . lindy klim , amanda bisk , and yogi and instagram star sjana earp were the ` models '\nrajee narinesingh was one of the victims of ` toxic tush ' doctor oneal ron morris . morris is accused of injecting women with a mixture of toxic substances including super glue and fix-a-flat . rajee had morris inject her cheeks , lips and chin back in 2005 , and ended up disfigured after she did not have the money to go to a proper cosmetic surgeon . now , she has had her look improved once again by dr terry dubrow and dr paul nassif . the process will be featured on the premiere episode of botched .\nthe 217 hectare island was purchased by wendy wei mei wu . the 2.7 km long , 1.8 km wide landmass is located 4 km off the coast of the new zealand 's north island . it boasts two airstrips and six houses , all with nearby beaches and sweeping ocean views . the sale has divided the needham family who own the island , with some of them claiming it represents ' the loss of the family 's legacy '\nrussian man took selfie with phone before stealing another model . ivan balashov was browsing through smartphones in shop in southern russia . but he was stopped by shop security and stole the phone he preferred . police found his selfie on a phone in the store and immediately recognised him . balashova was found guilty and given a three month suspended sentence . on his way home he sold the stolen phone for the equivalent of # 120 .\nviviana keith , 27 , was arrested in red rock , texas , on tuesday for dui and dwi . police officer ben johnson claims she was resisting him and that he had to pull a fast and forceful take-down . video taken by a person in a nearby shop appears to show a different story . the woman 's daughter , who is six-years-old , saw the incident unfold . police are investigating the incident . keith has been charged with dwi with a child younger than 15 and interfering with pubic duties . johnson remains on the job .\nsix foot wall of foam appeared after fire at chemical plant in manchester . firefighters ' water mixed with detergent being stored in burning buildings . this created a huge wall of suds which drained into ashton canal . environment agency investigating to assess if the foam has harmed wildlife .\nwasps to appeal three-match ban handed to nathan hughes . wasps will not be able to play in champions cup quarter-final against toulon . hughes was given the suspension after striking northampton 's george north . north was out cold on the pitch at franklin 's gardens and had to be taken off on a stretcher .\ncat and mouse battle it out on a shed rooftop in shepton mallet , somerset . the pair battle it like a real life version of cartoon duo tom and jerry . ironically the pet cat 's name is mouse . the pictures were taken by the cat 's owner jason bryant .\nchelsea beat manchester city 3-1 in the youth cup final at the academy stadium . tammy abraham scored twice for chelsea , with christian soalnke also on target . isaac buckley and ola aina scored for city . dominic solanke scored late on to put a gloss on the scoreline .\nmoshin tanveer gave louis van gaal a list of players he ` should ' sign . the supporter handed the list to the manchester united boss at a club fan day . van gaal was given the green light to sign gareth bale , mats hummels , paul pogba , nathaniel clyne , memphis depay and jackson martinez .\nalanna and stephen goetzinger 's third child was stillborn in 2012 . coroner james mcdougall found that the midwife who assisted at the birth was ` grossly inadequate ' and may have contributed to the death of the baby . the couple have spoken out against the findings of the coroner 's report . they are adamant that their daughter rana was still born .\na safe deposit company in london was burgled over the easter weekend . thieves took hundreds of thousands of pounds worth of gems and cash . a former police official estimates the haul could be as much as $ 300 million . police are carrying out a `` slow and painstaking '' forensic examination .\nangelina santini from san diego , california , filmed her nine-month-old son marcus getting carried away in his bouncer one day . the comical clip shows the youngster lurching back and forth with the device almost touching the floor . four years on , videos show that the youngster has swapped his passion for bouncing with playing the guitar .\nlauren crawley , 54 , from hertfordshire , had surgery for a benign brain tumour . but the surgery damaged a facial nerve wrapped around it . this meant her left eye was permanently open and she could n't blink . she was given a new platinum implant that makes it easier to blink again . the implant weighs down the eyelid and makes it close automatically .\njose mourinho said the brazilian was taken off due to ` possible concussion ' oscar was clattered by arsenal goalkeeper david ospina in the 16th minute . the midfielder was taken to hospital at half time for checks . chelsea were denied a penalty after the collision at the emirates stadium . didier drogba replaced oscar at the break .\nkyesha wood , 36 , found out that her children were disruptive at a movie . she posted a lengthy message on facebook looking for the mother . rebecca boyd was watching cinderella with her daughter ashley . she confronted the 13-year-old and her brother nick , 16 , outside the theater . mrs boyd said that her husband had just been laid off . she offered to pay for the next movie out of her children 's allowance . the woods have now apologized to mrs boyd on national television .\nap mccoy won the grade one betfred melling chase on don cossack on friday . mccoy rode don cossack to victory in front-runner race at aintree . the jockey will ride shutthefrontdoor in the crabbie 's grand national on saturday .\nuniversity of nairobi students heard explosions sunday morning . they believed it was a terror attack , the school said . one person died , and hundreds were injured . the confusion and panic came less than two weeks after al-shabaab slaughtered 147 people . of n cairo , kenya .\nsaudi-led coalition ends airstrike campaign in yemen . new initiative will focus on political process , saudi embassy says . u.s. conducting `` manned reconnaissance '' off yemen , official says . houthis agree to `` nearly all demands '' of u.n. , source says .\na cnn crew finds children in an unofficial displaced camp in nigeria . the camp is one of many that has mushroomed in the town of yola . the team calls on the camp to `` foster '' children . the man on the phone says he 'll pay more than the domestic rate for the children .\na trailer for abc tv show 8mmm aboriginal radio was removed by facebook . the video showed two elderly women painted in ochre dancing in a traditional ceremony . it was deemed to contain ` potentially offensive nudity ' the clip had already had 30,000 hits when it was removed . fans have called the decision ` outrageous ' and ` ridiculous '\nex-adelaide doctor tareq kamleh appeared in the latest isis propaganda video at the weekend . he urged people to join the death cult notorious for beheading non-muslims . despite his public support for isis , dr kamleh still remains registered to practice medicine in australia until september 30 . the medical board of australia can deregister doctors convicted of crimes .\nbritons spend an astonishing # 100 million a year on cough syrup . but a glass of honey and lemon could work just as well , says bbc investigation . uk over-the-counter medicines market is worth # 2.5 billion . but some brands use the same pills in different packaging . dr chris van tulleken says we should think less about convenience .\nbrian karl brimager , 37 , was indicted by a federal grand jury in san diego , in connection with the death of yvonne lee baldelli . the 42-year-old woman from laguna niguel , california , was last seen in september 2011 when she arrived in panama with brimagers . her family reported her missing the following january . a man who was cutting bushes on the island province of bocas del toro found a bag containing baldelli 's remains in august 2013 .\nkate , william and kate are expecting their second baby , a girl , it has been reported . the duchess of cambridge is said to be keen on a girl 's name . the name diana is a popular choice among punters , says royal expert . but she says the royal family should avoid naming their child after diana .\nministry of defence 1 , also known as ` churchill 's toyshop ' , was a weapons laboratory set up in 1939 by the prime minister . churchill was a firm believer in the importance of science and technology in warfare . he encouraged his scientists to trial even the most absurd of inventions . many of these never made it beyond the drawing board , but some were so successful that they played a vital role in ending world war two .\njudd trump beat stuart carrington 10-6 in the first round of the world championship . the 25-year-old led 7-2 from wednesday before carrington fought back to level . trump will now face marco fu in the next round . mark selby and shaun murphy also progressed in the opening round .\nmunira khalif , stefan stoykov , victor agbafe and harold ekeh are all 18-year-olds from different cities in the u.s. . they have been accepted to all eight ivy league schools and three others . they are the offspring of immigrant parents who moved to america from bulgaria , somalia or nigeria . all four are committed to doing good in their lives and want to become neurosurgeons or improve education across the world .\noratilwe hlongwane , from johannesburg , south africa , has nearly 25,000 facebook fans . he is still learning to put together words but is already able to play music from a laptop . his capabilities have earned him special appearances and sponsorship deals .\nandy lee faces peter quillin in new york on saturday . the irishman won the wbo middleweight title last year . lee is making the first defence of the title he won against matt korobov . quillin is a former champion but is yet to taste defeat as a professional .\nciudad juarez , mexico , was once known as the murder capital of the world . at the height of cartel violence , the city averaged 8.5 killings per day . but five years later , local officials say the city is much safer , and plans are underway to lure foreign tourists and investors back to juarez .\nben grower is leader of the authority 's labour group . he refused to deal with a constituent because they supported ukip . pensioner alan roberts wrote to bournemouth borough council complaining about a lack of action over fly-tipping . he signed off email with : ` that 's why i 'll be voting ukip ' mr grower said he was shocked by the ` petty ' reply . a formal complaint has been lodged against him and the council is investigating .\ngerman car manufacturer audi has created a ` green ' diesel fuel . it is made using a combination of water and carbon dioxide . experts used renewable energy to convert the carbon dioxide and water into a form of crude oil known as ` blue crude ' , which was then refined into diesel . tests have shown it can be mixed with diesel from fossil fuels , or used as a fuel in its own right . audi has already begun using the new e-diesel to power the official car of german minister of education and research dr johanna wanka .\nowner wendy stokes , 74 , had given up hope of seeing toby again . but he has now returned home after 11 months on the run . he wandered through a gate in her garden and headed for the open road . he was picked up by a passing driver concerned for his safety . six months ago , he was re-homed with a couple living in margate , kent .\nscientists in italy have extracted the oldest ever dna sample to be taken from a neanderthal - a skeleton found in a cave in 1993 . calcium formations on ` altamura man ' suggest he was 128,000 to 187,000 years old . researchers plan to sequence his dna to see if they can reveal new details about the evolution of our ancient ancestors .\nbranislav ivanovic has been linked with a move to bayern munich . the serbia captain is yet to open talks over a new contract at chelsea . ivanovic 's current deal runs out in 2016 . psg are set to make a # 7million bid for petr cech this summer .\na chunk of a fiberglass boat 25-30 ' long has been spotted floating off the oregon shore . biologists found live yellowtail jack fish inside the debris . the boat will be towed to a landfill and studied . an estimated 5 million tons of debris washed into the ocean in march of 2011 during the tsunami .\ndetective launched tirade after uber driver honked his horn . passenger filmed the exchange and posted it online on monday . detective patrick cherry is now under investigation by civilian complaint review board . he is assigned to the nypd 's joint terrorism task force . the internal affairs bureau is investigating the incident .\nliz clark , 34 , from san diego , california , left her home in 2005 . she was given a cal 40 sailboat by a retired professor . he asked her to sail the globe and document her travels . she has travelled 25,000 nautical miles to date .\nduke university and the police are attempting to work out who hung the rope on the tree . the rope was tied into a noose at about 2 a.m. wednesday in the bryan center plaza in durham , north carolina . area in which the noose was found is home to several offices focused on diversity including the center for sexual and gender diversity and the center of multicultural affairs .\njenny wallenda , 87 , died late saturday at her home in sarasota , florida , according to family members . wallenda was the oldest daughter of high wire walker karl wallenda and grandmother of daredevil performer nik wallenda . jenny wallenda 's husband , richard faughnan , died in 1962 when a human pyramid collapsed . karl wallendas fell to his death in 1978 .\nparamedics are leaving firemen to deal with 999 calls , healthcare leaders warn . many firemen have not been trained in basic first aid . they are being left to care for seriously ill elderly patients for hours . fire brigade union say the practice is irresponsible and dangerous . it is becoming increasingly common because ambulance service is overstretched .\ncomres poll reveals 54 % want snp out of next uk government . 59 % want the snp as a whole to play no part in running the country . snp manifesto includes demands for extra spending and scrapping of trident . david cameron warns snp-labour deal would be a ` match made in hell ' for economy . more than half of people do not want ukip leader nigel farage to play part in the next government .\na majority of the public does not want camilla to become queen if prince charles succeeds to the throne , a poll reveals . four out of ten people think prince charles should give up his right to be king so the crown passes straight to william . william and prince harry are the most popular members of the royal family , closely followed by the queen and the duchess of cambridge .\ndanny welbeck says arsenal have just got to play the game , not the occasion . arsenal face reading in the fa cup semi-final at wembley on saturday . welbeck scored against manchester united last week . the striker says he has been unlucky in front of goal this season .\ned miliband will do ` more damage to the country than his brother ' , boris johnson says . the london mayor launches furious personal assault on labour leader . but mr miliband laughs off the attack , saying : ` come on boris , you 're better than that ' pair appeared on bbc 's andrew marr show to discuss election campaign .\nraheem sterling allegedly pictured smoking shisha pipe on sunday . 20-year-old recently snubbed # 100,000-a-week contract offer from liverpool . england international has 14 caps for his country . jack wilshere was involved in a smoking controversy in february .\nbacterial vaginosis -lrb- bv -rrb- is a common infection that can cause miscarriage and infertility . it affects one in three women , making it twice as common as thrush . amanda butler , 42 , from milton keynes had never heard of the condition . her son callum was born weighing just 1lb 9oz and with translucent skin . he underwent heart surgery , a lumbar puncture , laser eye surgery and 10 blood transfusions . mrs butler has urged other women to be aware of the infection . ' i feel like it could have been totally avoided had i been given the right information , ' she said .\nsupermarket chain aldi has requested the ability to make employees work more than 38 hours in a submission to workplace relations productivity commission . the transport workers ' union 's national secretary tony sheldon condemned the requested change to the fair work act . he accused aldi of trying to reintroduce serfdom .\nthe avocado tree is ` transgender ' and has overnight sex changes . professor john warren discovered avocado trees switch from male to female in a matter of hours . the plants use their ` male anthers ' to spread their pollen . professor warren said the plants limited the amount of self-pollination .\npeople who have never been divorced can expect a retirement income 13 % higher than a colleague . one in five divorcees who stop work this year will retire with debts to drag down their disposable income and lifestyles . the debt of a divorced retiree averages # 22,100 , prudential 's report said .\ncurtis stone says he wo n't let his kids eat hot dogs . the celebrity chef says his biggest priority is to feed his children healthy food . the 39-year-old is back in australia to promote his new cookbook , good food , good life . he and wife lindsay have two boys , hudson , 3 , and emerson , 7 months .\nchinese team attempted to fly a kite measuring 6,000 metres -lrb- 3.7 miles -rrb- but the kite was too big and posed a danger to passing aircraft . the kite , dubbed ` centipede with a dragon 's head ' , was set to fly at the wulong international kite festival last saturday in chongqing .\nemmanuel adebayor could be allowed to leave tottenham on a free transfer . the club are willing to pay the togolese striker 's wages to get rid of him . tottenham would still like to receive a fee for the striker . the 31-year-old is on the peripheries of mauricio pochettino 's plans .\nsuarez scored a brace in barca 's 3-1 win over psg in the champions league quarter final . the forward says he nutmegged david luiz twice because it was his quickest way to goal . suarez says the tie is not over despite the two goal lead .\nthe marana , arizona , officer who hit an armed suspect with his car says he was too far away to shoot . officer michael rapiejko ran his car into mario valencia in february as the suspect carried a rifle . the marana police department has defended rapiejko , saying deadly force was warranted .\nafter extensive chemical tests , dr arye shimron says he has linked the james ossuary -- a 1st-century chalk box that some believe hold the bones of jesus ' brother -- to the long disputed ` jesus family tomb ' the research could have enormous ramifications as it suggests that jesus was married , fathered a child and that a physical resurrection did not take place . dr shimron 's work has renewed controversy over the talpiot tomb , which was discovered in 1980 and dates back to the second temple period and the time of jesus . other experts and archaeologists have rejected the claim that the jerusalem tomb is connected with jesus at all .\njeremy hunt promised an immediate crackdown if conservatives are re-elected . comments come as mail revealed how nhs managers were potentially dodging income tax by channelling huge salaries through personal companies . labour 's health spokesman andy burnham said his party would investigate the mail 's findings if elected .\njackson martinez wants to leave portugal this summer . the 28-year-old scored in porto 's champions league semi final win . manchester united scouts checked on the striker last week . click here for more transfer news . read : man utd want to sign # 30million-rated porto striker jackson martinez .\nchaplin married second wife lita grey , 16 , in 1924 and the union lasted just three years . the 50-page divorce papers were found in a bank in america . they are set to fetch an estimated # 15,000 when they go under the hammer . lita claimed that she endured ` cruel and inhumane ' treatment by chaplin .\nisis leader abu bakr al-baghdadi has been seriously injured in an air strike . he is no longer in control of the terrorist group , according to an iraqi source . he was wounded by an attack from the us-led coalition in march in nineveh .\nchelsea have topped the premier league since the opening day of the season . jose mourinho 's side are seven points clear with eight matches remaining . chelsea face qpr at loftus road on sunday . mourinho says chelsea are ` deserving ' to be top but admits ` every game is difficult '\nsienna miller body double must be 5ft 6in , have 25 1/2 in waist and high hip of 35 . must also have a messy bob and be prepared to cut their hair . must be able to do yoga moves like the side crow and scorpion . casting call for advert for austrian water brand vöslauer .\nrilwan oshodi bought karen budow 's bank account details for just # 3,200 . he then spent her savings on cheeseburgers , champagne and top-of-the-range computers . he was jailed in 2013 for eight years for his part in the fraud but must repay the money . he insists he is so broke he ca n't even pay his lawyers - but judge orders him to pay up .\nuruguayan striker luis suarez was banned for four months for biting giorgio chiellini during the world cup . his wife sofia says that he told her he did n't do it but tv replays proved otherwise . the striker then admitted the truth 10 days later .\npc luke stanwick was on holiday with his wife jenny and son nathan , 2 , in portugal . he broke his neck and is now in a medically-induced coma in hospital in lisbon . the 30-year-old is paralysed from the waist down and may never walk again . a donation page has raised more than # 8,000 for the police officer 's family .\nalan greaves was caught with 20,000 images of child abuse on his computer . the father-of-eight claimed he was framed by the illuminati . he was jailed for 21 months after pleading guilty to two offences . the images were found on a digital storage device at his home in colne . almost 700 of the images were of the most serious category .\nconor mcgregor takes on jose aldo in las vegas on july 11 . mcgregor says aldo does n't want the title in his presence . the featherweight champion is defending his belt for the eighth time . mcgregor grabbed aldo 's belt when they took their promotional tour to dublin last week .\nphillip and gaby beckle-raymond bought home for # 325,000 five years ago . they called in builder to fix a leak in their north london home . but builder told them the roof structure was unsound and he could n't re-tile . he suggested they use sub contractor to do work on their home . when sub contractor began work , he disappeared and the family was left with no roof .\nchelsea will announce the signing of brazilian wonderkid nathan on wednesday . the 19-year-old attacking midfielder has been in london for talks with the blues . nathan will join fellow brazilians willian , ramires , filipe luis and oscar at stamford bridge . chelsea beat manchester city to the signature of the 19 - year-old .\ntottenham are looking to strengthen their squad this summer . spurs are tracking dynamo kiev forward andriy yarmolenko . paris st-germain are also interested in the ukrainian star . spurs boss mauricio pochettino is also keen on everton winger kevin mirallas .\nunbeaten championship leaders leigh delivered a stunning knockout blow as super league club salford crashed out of the ladbrokes challenge cup . the centurions twice came from behind in thrilling fashion to beat the red devils 22-18 in front of a 6,358 crowd at leigh sports village .\nthe university of michigan yanked an upcoming screening of the oscar-nominated drama american sniper over student complaints . the school quickly did an about-face after news of the cancellation sparked a firestorm on campus . the movie was originally set to be shown during a student mixer friday , but the university decided to cancel the screening over complaints that american sniper portrays muslims as villains . the student center responded to the petition by issuing and apology and replacing the r-rated film about the war in iraq with a pg-rated children 's movie about a stuffed bear .\nfather-of-four simon wood , 38 , from oldham , greater manchester , won . he battled it out against emma spitzer and tony rodd in the final . they were challenged to cook judges john torode and gregg wallace a three-course meal in three hours .\nfootball league reveal the top ten players in each division . championship player of the year patrick bamford beat daryl murphy and troy deeney . joe garner was crowned league one 's best player . dele alli , on loan at mk dons , was named young player of the year .\nmanchester united 's ashley young was in attendance against oldham . young 's brother lewis plays for league one side crawley town . crawley were 2-0 up at half-time against the latics . young senior played 70 minutes in united 's 3-1 victory over aston villa .\nkristy peckham is the ex-partner of disgraced queensland politician billy gordon . she has opened up about the years of abuse she suffered . ms peckham claims she and her children were essentially held hostage and forced to live in fear . the queensland government was plunged into crisis after when details of the cook mp 's criminal past emerged . queensland premier annastacia palaszczuk called for his resignation .\nemily thornberry has attacked david cameron 's right to buy policy . but eight years ago she and her husband bought a housing association property . tories say she opposed right to buying but not ` right to buy to let ' labour mp was forced to resign from shadow cabinet in november .\ntwo french tourists have been fined $ 4000 for setting alight a quokka . thibaud jean leon vallet , 24 , and his cousin jean mickael batrikian , 18 , set the marsupial alight in rottnest island on april 3 . both of the tourists pleaded guilty to animal cruelty at fremantle magistrate 's court on friday . the men were on a working holiday and were spending three months in rottets island working as cleaners .\nthe device uses ultra violet light to kill bacteria throughout the cabin . it is the work of father and son team arthur and mo kreitenberg . they say germs such as e.coli and mrsa can linger for up to a week . they hope their invention will revolutionise cleaning of aircraft .\nphotographer denis budkov captured the amazing images in the russian far east . the caves are found near mutnovsky volcano , 45 miles -lrb- 72km -rrb- south of kamchatka . they are given their various colours by light refracting through the ice - with the thicker the ice , the more emerald they appear . mr budkov , 35 , trekked inside the dangerous caves - which could collapse at any moment - to capture the colourful scenes .\nrobert knowles , 68 , from plymouth , devon , first broke the law when he was 13 . he has been in court at least once a year since 1959 and has clocked up nearly 350 offences . he was jailed for 16 weeks after stealing a watch and cuff links from h samuel in the city centre .\nburnley midfielder matt taylor could make his return from a seven-and-a-half month achilles injury lay-off against arsenal . ross wallace and steven reid could also feature for the clarets . dean marney and kevin long remain on the long-term absentee list . arsenal defender laurent koscielny and goalkeeper wojciech szczesny face fitness tests ahead of saturday 's barclays premier league match at burnley .\nsilverstone 's roof was damaged by high winds on sunday and monday . a section of the ` wing ' was removed from the circuit . silverstone sporting director stuart pringle says the damage is ' cosmetic ' and that upcoming races will not be affected . silverstones is host to the british grand prix this weekend .\nstephanie scott 's funeral was held at eat your greens in eugowra , nsw . hundreds of mourners gathered to pay their respects to the teacher . her fiance , aaron leeson-woolley , was among the mourners . ms scott 's mother and sister shared memories of their daughter . the teacher was allegedly murdered on easter sunday . she was due to marry her fiance aaron leeson-w woolley on may 25 .\nbritish airways launches mindfulness for travel series . created to celebrate new a380 service between london and san francisco . includes meditation videos and tips on healthy eating . expert mark coleman also advises ` gentle exercising ' on board . he recommends wearing comfortable clothing and choosing lighter meals .\nbrian gewirtz , 20 , told his family he was going for a walk near his brooklyn , new york , home on february 17 , but did n't come back . police said friday his body had been discovered at marine park golf club , just two miles from his home .\nbiologists from goethe university frankfurt studied the healing process at a molecular level using electron microscopes to examine skin as it repairs itself . they found skin cells appear to attach to each other using tiny tubes that then pull them together so they interlock like a zip . the researchers hope their findings could help in the development of new treatments for wounds that could speed up the healing processes .\nkaren and andy murray wed in dunblane cathedral on sunday . kim 's jenny packham chiffon gown has split opinion on twitter . wedding planning expert says brides are thinking outside the box . she says they choose dresses based on their personalities and relationships . kate middleton , solange knowles and keira knightley all wore short dresses .\ntwo anglers built diy boat from scraps of wood , insulation and polystyrene . they spent just # 9 on silicone glue to glue the 6ft vessel together . but the pair were stranded when one of the oars snapped off the boat . they were rescued by a lifeboat crew who had to bring the boat to shore .\nnicole salvador accused of beheading palmira silva in her garden . the great-grandmother was found dead in nightingale road , edmonton . salvador , 25 , also pleaded not guilty to assault charge at london 's old bailey . judge hilliard set a trial date of june 22 at the old bailey .\nclare verrall was walking her dog in prahran , in melbourne , on wednesday night . a man jumped out from behind some bins and attacked her . she was left with a broken nose , a black eye and a broken toe from the altercation . she said she believes her self-defence classes helped her survive the attack . victoria police are still searching for the man they believe to be the attacker .\nprofessor bryan sykes of oxford claims towering woman named zana who lived in 19th century russia could have been the fabled yeti . witnesses described the six-foot , six-inches tall woman as having ` all the characteristics of a wild animal ' - and covered in thick auburn hair . dna evidence from zana 's granddaughter and the remains of her son khwit seemed proved that zana was of african descent .\nitalian ice cream man andrea trunfio , 36 , and mario bretti , 64 , argued over a disputed site in swindon . mr bretti said his competitor chased him along a busy road before cutting him off at a junction and blocking him with his van . trunfio then got out and threw a flurry of punches at the 64-year-old through the driver 's window .\nmanchester united beat aston villa 3-1 at old trafford on saturday night . ander herrera scored twice and wayne rooney also netted for the red devils . the win moves united above manchester city into third place in the premier league . click here for manchester united player ratings .\n5,000 small business bosses praise tories as ` only people ' who can keep economy secure . they say they ` would like to see david cameron and george osborne given the chance to finish what they have started ' candle entrepreneur jo malone is one of the most high-profile names to sign letter . she claims a labour government would ` jeopardise ' the economic recovery .\nobama says it is ` personally difficult ' for him to hear his administration accused of not looking out for israel 's interests . iran has agreed to restrict its nuclear program in exchange for relief from economic sanctions . obama said he hopes the deal will usher a ` new era ' in relations between the u.s. and iran .\nofficials found out isis called for attacks on uniformed personnel as part of a possible terror plot . fbi is investigating and security is being increased at other airports in southern california because of a ` known threat ' from isis . officials said the possible threat was not necessarily related to aviation .\nbenedict cumberbatch sculpture unveiled at westfield stratford city shopping centre . the 6ft tall chocolate sculpture took eight people 250 man hours to complete . it has been given pride of place in the shopping mall 's atrium . reaction to the sculpture was mixed , with some shoppers bursting into laughter .\njamaica 's usain bolt will compete at the world relays in the bahamas . the six-time olympic gold medallist will be part of the team . the full jamaican team list will be announced shortly . bolt insists he always does ` his best to make his country proud '\nstuart broad produced his best bowling since knee surgery last year on day two . england bowled west indies out for 299 in their first innings . alastair cook and jonathan trott guided england to 74 without loss . broad backs cook to go onto a big hundred and get his side in a winning position .\nap mccoy won 20 titles during a 21-year career in jump racing . mccoy finished third in his last-ever race on saturday night at sandown . the 20-time champion jockey was reduced to tears after the race . the former arsenal player said he hopes someone will break his records .\narsenal defender per mertesacker says jurgen klopp would be a good premier league boss if he chose to stay . klopp has revealed he will leave borussia dortmund at the end of the season . the 47-year-old has been linked with manchester city and arsenal .\nzoe o'connell , 37 , used to be a man and is standing for lib dems in maldon , essex . she lives in a three-way lesbian relationship with her two canvassers . sarah brown and sylvia knight were once a straight married couple .\nreddit users took to the site in wake of 2013 boston marathon bombings . they used find boston bombers thread to hunt for suspect or suspects . but in days after attack , users hurled false accusations at spectators wearing backpacks . their claims led to 22-year-old sunil tripathi being wrongly identified as bomber . now , moderator of subreddit , chris ryves , has told of regrets in new documentary . the thread , which looks at impact of social media on journalism , will be released on itunes on monday . dzhokhar tsarnaev was this week found guilty of carrying out the attack .\ncouple were arguing in parking lot of an apartment complex . husband tried to drive off in his green chevrolet pickup truck . but his wife grabbed the door handle , slipped and he ran her over . police questioned the husband extensively but believe his story . no charges have been filed against him . woman was rushed to hospital where doctors delivered her baby by cesarean section .\njermain gawned , 40 , appeared on the first australian series of big brother in 2001 . she now runs a wildly successful raw food empire called naked treaties in byron bay , victoria . the byron bay-based woman says the secret to her success is ` spreading the vibration of love through food ' she also opened up about her time on australia 's first series of the show , and how she was portrayed .\nyoutube user serpentor filmed his feline friend in action . footage shows the tabby producing a range of unusual gurgling noises as she is petted . when her back is rubbed , she lets out a string of gobbledygook sounds . to date the clip of her singing has been watched more than 17,000 times .\ngolfer rickie fowler 's girlfriend alexis randock was criticised by an online troll for not working due to her relationship with fowler . the troll called ` fatalsplash ' then accused alexis of being a ` gold digger ' who did n't have to work . fowler responded to the hater by telling him to ` get your facts straight ' and that he worked her ` butt off ' to support herself .\nliverpool defeated blackburn rovers 1-0 in the fa cup sixth round . mamadou sakho limped off early on with a hamstring injury . the frenchman will undergo scans on thursday to determine the extent of the injury . brendan rodgers has just two available first-team centre backs .\nkelly nash , 25 , was last seen alive in the early hours of january 5 when he woke up coughing and sneezing . he left the house without his wallet , id card or keys to his truck . on february 8 , a man fishing at lake lanier discovered nash 's badly decomposed body . the former college basketball player suffered a gunshot wound and drowned , according to officials .\neileen dee , 68 , died of a deadly infection at the royal sussex county hospital . she had been battling cancer but caught the bug while undergoing treatment . the retired nhs information manager was transferred to another hospital . but she died five days later after being left in a filthy hospital room . her husband rené is now suing the hospital for clinical negligence .\nmanny pacquiao will fight floyd mayweather in las vegas on may 2 . the filipino star held an open training session at the wild card gym in hollywood . pacquio opened up about his motivation , his belief in god and journey to the top in boxing .\njanet faal , 57 , has suffered from agoraphobia for a decade . she was out with a friend when she fell down an uncovered manhole . the grandmother-of-four was trying to move a wooden pallet when she slipped . she smashed her face and was left in a ` splits ' position after falling down gap . she now has two black eyes and a suspected fractured leg after fall .\nafrica 's cape verde islands are home to more musicians per square kilometer than any other country . the island nation is looking to tap into the economic potential of its rich musical heritage . the kriol jazz festival is one of the early successes of the festival . cape verdes hopes to gain international recognition through tourism .\na 12-year-old aspiring model has been diagnosed with bone cancer . venessa harris was diagnosed with ewing 's sarcoma on january 5 . she was diagnosed after a fall left her with pains in her leg . the 12 - year-old was named international winner in the tamblyn young model discovery contest in september . she is currently undergoing chemotherapy in brisbane and is expected to make a full recovery .\namerican travellers can now book rooms on the caribbean island for first time . more than 1,000 cuban properties are listed on the popular home-rental website . private rooms are available for as little as $ 12 -lrb- # 8 -rrb- a night on airbnb . forty per cent of listings in cuba are located in the capital of havana .\nthief entered a branch of lloyds bank in new milton , hampshire , on thursday . he threatened cashier staff and ordered them to hand over money , police say . the man , whose face and hands were heavily swathed in bandages , then fled . police say a 56-year-old man from new milton has been arrested on suspicion of robbery .\nbeauty high 's rolly robinson stars in a new makeup tutorial . he first had to shave his mustache before applying make-up . he then used the controversial fullips lip suction cup to give his lips a kylie jenner-like effect . kylie herself has responded to the lip suctions craze , saying she is not here to encourage young girls to look like her .\ned miliband has admitted he is a geek who spent childhood playing computer games . labour leader said he cried when he and his wife justine watched pride . the film tells the story of coal miners in a tough working-class community in wales . mr miliband said he was a fan of singer ellie goulding and the band bastille .\nkabul has been transformed since nato arrived in afghanistan in 2001 . the city 's population is five times what it was when nato arrived . the roads are lined with the detritus of america 's war here . the u.s. embassy and nato declined to comment for this story .\nrichard howarth , 35 , says he has to change the channel when he sees farage . he says hearing his voice makes him ` physically sick ' and he breaks out in a sweat . mr howarth 's wife catherine , 32 , says her husband gets so wound up by mr farage that he starts to shake .\nmercedes drivers lewis hamilton and nico rosberg had a row after the chinese grand prix on sunday . rosberg claimed hamilton had been ` selfish ' by slowing down . hamilton hit back saying rosberg was not a racer . the pair had a further row in the first-class cabin of their emirates flight to dubai on monday morning .\nbobby flay filed for divorce from stephanie march , 40 , in april saying that their 10-year marriage has ` irretrievably broken down ' on sunday , the new york post 's page six alleged that flay has been having an affair with his assistant elyse tirrel , who 's 28 . the celebrity chef 's business partner laurence kretchmer moved swiftly to dismiss the claims , saying that if flay had been having a relationship with an employee , he would have known about it .\ntalks between world powers and iran over iran 's nuclear program ended thursday . the talks were held at the five-star beau-rivage palace hotel in lausanne , switzerland . the hotel has hosted major diplomatic events before , including the treaty of lausane in 1923 .\nandre schurrle and mario gotze attended a charity ball to raise money for hamburg children 's hospital . the pair were joined by partners montana yorke and ann-kathrin broemmel . wolfsburg beat hamburg 2-0 on saturday while bayern munich beat eintracht frankfurt 3-0 .\nwashington university rowing team was practicing on creve coeur lake . asian carp suddenly emerged from the water and attacked the boat . no one was injured , but the strong smell of fish lingered in the moments afterward . watch ireporter benjamin rosenbaum 's video above .\nisis releases list of ` religious punishments ' which includes stoning to death . anyone who insults god or blasphemes against islam is to be killed . homosexuality is also to be punished by ` death for the penetrator and the receiver ' thieves will have their hands severed from their arms and road robbers face crucifixion . terror group claims the list is a ` warning and deterrent ' to the kufr .\nworld no 1 serena williams beats italy 's camila giorgi 7-6 , 6-2 in the first match . the win gives usa a 1-0 lead in the fed cup world group playoff . williams is now 15-0 in her career in fed cup matches .\ngermanwings co-pilot andreas lubitz used autopilot to speed up descent , french agency says . investigators are also looking at lubitz 's internet searches , a german official says . the flight data recorder was found thursday by recovery teams . the plane went down in the french alps on march 24 , killing all 150 people on board .\nspain 's queen letizia attended a conference for rare childhood diseases in barcelona . the mother-of-two wore a chic white tailored suit with a blush-coloured silk top . the 42-year-old accessorised her outfit with a woven clutch and patent nude heels .\npolice release dash cam video of walter scott traffic stop . footage does not show the actual shooting . officer michael slager has been charged with murder in the death of scott . a witness says she followed the two men as they sped through a neighborhood . the officer shot scott eight times as scott ran away , the video shows .\ngeorgina gosden , 25 , is facing common assault charges for allegedly punching a young woman in a queensland pub . the model allegedly punched a 21-year-old woman at townsville 's mad cow tavern in on december 7 last year . she carried out a similar attack on a 25-year old woman in the same nightclub last april . police are pursuing the charges against ms gosden despite her most recent victim withdrawing her complaint .\na boston area doberman ate three watches . the dog , mocha , had to have emergency stomach surgery last summer . the jewelry remains were still in mocha 's belly . the mspca says the dog is doing fine . the owner says she thinks mocha was trying to make room for apple 's new watch .\nstreet view experience lets you virtually explore both above and beneath water in the iconic scottish waterway . google partnered with catlin seaview survey and adrian shine from the loch ness and morar project to capture the images . site has launched to mark the 81st anniversary of the ` surgeon 's photograph ' - an image of the mythical monster from 1934 . the tech giant has also released a google doodle to commemorate the anniversary and changed the yellow pegman to a nessie peg-monster .\njapanese women prefer to drink tincture tonics to cleanse system internally . mahonia , a traditional herbal treatment for acne , is a number one bestseller in japan . neal 's yard remedies has seen sales of its mahonia clear skin formula go through the roof online from customers there .\nflorence pietrok , from portland , oregon , was born with frontonasal dysplasia . the condition caused a widening of her facial features , specifically with her nose and the space between her eyes . she also had a large central cleft in her face and a growth over her left eye . plastic surgeon dr. john meara of boston children 's hospital spent months preparing for violet 's surgery with molds of her skull that were made using a 3d printer .\nhenrik larsson forced to play 42-year-old kit man daniel andersson in goal . par hansson and matt pyzdrowski are both out injured for helsinborg . andersson kept a clean sheet as helsin borg drew 0-0 with kalmar .\nmanchester city are fourth in the premier league , nine points behind chelsea . sergio aguero insists city can retain the title despite defeat by crystal palace . city face manchester united at old trafford on sunday . aguero has scored six times against united in the last four derbies .\nthe findings come after the general secretary of the national association of head teachers said he was dubious about using technology as a teaching aid in non-it classes . courtney blackwell , at northwestern university in the us , found that , in tests , kindergarten children who shared ipads in classes over an academic year significantly outscored their peers who were in classes that had no ipads .\nliz norden 's two adult sons , jp and paul , each lost a leg in 2013 boston bombing . they were injured as they shielded friends from second of two bombs detonated by finish line . the men , now in their mid-thirties , now use prosthetic legs and run charity . norden said it is ` way too soon ' for mark wahlberg to be turning atrocity into a movie .\nformer tory candidate mike whitehead was standing against labour 's alan johnson in hull west and hessle . he said he was joining ukip after becoming ` disgusted ' at the behaviour of the ruling conservative group in his area . but the tories this morning revealed they had already dropped mr whitehead as their candidate .\n19 women and five men were chosen on tuesday to serve as jurors in the death penalty trial of colorado theater shooter james holmes . holmes is charged with shooting dead 12 people and wounding 70 others in the july 2012 attack at a century movie theater in aurora , colorado . jurors will decide whether he was legally insane at the time . if they find him guilty , they must also decide whether . he should be put to death or sentenced to life in prison without parole .\na amber anderson , 27 , was arrested on suspicion of having sex with a 15-year-old freshman two years ago . she has since been relieved of her duties at christian life academy in baton rouge . she was booked into prison on tuesday and is facing a charge of felony carnal knowledge of a juvenile . the victim told police that he and anderson had exchanged sexually explicit text messages and later allegedly had sex at her home . anderson had been a math teacher at the school for three years and the alleged relationship took place during july and august of 2013 .\nyousef saleh erakat posed as a homeless man to see what would happen if he offered people on the street his own money instead . the results were less than kind . one man threw his money at erak at the end of the video . another man told erakats to ` p *** off , mate ' when he 's offered the $ 10 bill . erakat said he wanted to ` flip the script ' and find out if it was acceptable for the rich to give money to the poor .\nkris commons penalty gave celtic a 1-0 lead before the break . james craigen was sent off for a ` last man ' foul on stuart armstrong . stefan johansen doubled celtic 's advantage in the 63rd minute . celtic remain seven points clear of aberdeen at the top of the scottish premiership .\nzach birnie was skiing with a friend in revelstoke , canada , when he became caught up in an avalanche . he was filmed by a camera mounted to his helmet and captured the moment he was buried . the skier , who was lucky to escape serious injury , later discussed the incident online .\nracegoer seen on video deliberately knocking an elderly man to the floor . the 34-year-old man barges into the 63-year old and knocks him to the ground . he then walks off as people gasp and try to help the victim . the victim was later taken to hospital and treated for bruising on his face . merseyside police said the 34 - year-old came forward to police late last night and he was interviewed under caution about the alleged assault .\nchelsea preparing for fourth successive fa youth cup final . jose mourinho has warned he can not use all of his young players . ruben loftus-cheek , isiah brown and dominic solanke are all set to get their chance next season . chelsea are looking at paul pogba but the frenchman would cost # 70million .\na 37-year-old man was in custody tuesday following the deaths of his wife and their two children at their home in suburban detroit , police said . the bodies of a 37 - year-old woman , a 2-year old girl and an 8-year - old boy were discovered by police monday night . the victims have been identified as christie fradeneck , her daughter celeste fradneck and her son timothy fradenes .\nturkey 's football team captain arda turan was celebrating after his side 's 2-1 international friendly victory against luxembourg . he went to the cockpit to announce his congratulations over the pa system . turkish aviation officials have said it was a serious breach of the safety rules of the flight back from luxembourg city .\nmyuran sukumaran and andrew chan will be executed on wednesday . the pair were given 72 hours notice of their deaths on saturday . they were told they had three days to live . the bali nine drug smugglers will be led into a jungle clearing and shot . the execution will likely take place in ` death valley ' - a clearing on nusakambagan . there , they will be given the option to be blindfolded . sukumara 's supporter ben quilty said he will not cover his eyes . the families of the australians will be required to make their final goodbyes on tuesday afternoon .\n10,000 refugees have been rescued by italian ships in the past week . but over 900 have died or gone missing since the start of the year . 400 migrants died in two shipwrecks last week . nigerian muslims became angry at christian who started praying . when he refused to stop , they threw 12 christians overboard . the other christians formed a human chain and protected themselves . italian police arrested 15 people suspected of killing the christian refugees .\n` harvey nichols : here 's the rest of your fur coat ' poster features ashley james brandishing a mutilated fox . the 26-year-old animal lover has joined forces with animal rights crusaders peta . the campaign comes after the department store abandoned its ten-year anti-fur policy .\nkevin pimentel , 12 , shot dead his six-year-old brother , brady , as they made dinner inside their mobile home in hudson , florida last week . he then shot his older brother , trevor , 16 , in the leg and turned the gun on himself . the boys were laid to rest in a joint funeral on thursday . their divorced parents , helen campochiaro and luis pimental , were not home at the time of the shooting .\na woman walked on to new york city 's kosciuszko bridge from the brooklyn side on monday just before noon . she climbed over the railing and stood on a section of metal piping 125 feet above newtown creek . police arrived on scene at about 11.50 am and spent more than two hours talking to the woman and trying to calm her down . at about 2pm the woman agreed to be rescued and new york police department officers pulled her to safety over the rail . a witness said the woman is a 44-year-old polish mother-of-one who was going through a tough divorce with her husband .\nfulham striker ross mccormack opened the scoring for the hosts after just four minutes . jermaine pennant equalised for wigan with a stunning free-kick in the 22nd minute . matt smith restored fulham 's lead with a fine strike in the 35th minute . jason pearce equalised at the back post for the visitors in the 69th minute to boise the visitors .\ntuesday 's power outage in turkey triggered wild conspiracy theories on social media . the country is tense and confused after years of back-to-back crises . heavy-handed censorship has left the mainstream media widely distrusted . and the absence of a common , credible space for sharing information has pushed critics of the government to the fringes of society .\nrap mogul was refused an appeal to have his bail reduced from $ 10 million to $ 5 million . he had to be carted out of court in a wheelchair as judge ronald coen rejected his pleas . but his attorney said he believes floyd mayweather will bail him out when he wins his next fight on saturday . mayweather is set to land a record pay check after going head-to-head with manny pacquiao on saturday .\nofficials : at least 270 prisoners escaped from a prison in al mukallah , yemen . a third of the inmates had al qaeda links , officials say . yemen has been descending into chaos since shiite houthi rebels removed president hadi . the conflict is drawing in regional rivals saudi arabia and iran .\nmanchester united will offer robin van persie # 5million to leave the club . the dutch striker has 14 months left on his # 250,000-a-week contract at old trafford . juventus and inter milan have both been linked with a summer move for the 31-year-old . radamel falcao and javier hernandez are also expected to leave in the summer .\nmanchester united beat manchester city 4-2 in the manchester derby on sunday . sergio aguero opened the scoring for city but ashley young , marouane fellaini , juan mata and chris smalling all struck before aguero 's second . the win all-but ended city 's title hopes and sparked a string of viral images on twitter .\nbrazilian defender dani alves will leave barcelona this summer . alves has been unable to agree a new deal with the catalan club . the 31-year-old has been linked with manchester united and manchester city . dinorah santana , alves 's agent , confirmed he has rejected a three-year deal .\nporto defeated bayern munich 6-1 to progress 7-4 on aggregate in champions league . franck ribery , mehdi benatia , david alaba and arjen robben were all missing for the german giants . pep guardiola 's side raced into a 5-0 lead at half-time before claiming a 6-2 victory . robben was unavailable for the encounter with an abdominal injury .\narnold palmer hit the ceremonial opening drive of the 2015 masters . the seven-time major champion was playing in his first masters since 2008 . palmer , 85 , has been struggling with a dislocated shoulder . jack nicklaus and gary player were also honorary starters on thursday morning .\nchelsea goalkeeper thibaut courtois wants to win the premier league . the belgian has won five trophies in his first season at chelsea . courto is currently seventh in the premier league table . the 22-year-old won the league cup with chelsea earlier in the season .\nines dumig 's photo series `` apart together '' is a documentation of a somali refugee . the photographer met sahra through a photo workshop at refugio , a shelter in munich , germany . dumig says she wanted to universalize sahra 's story , not only make it about her .\nstephanie scott , 26 , was last seen on easter sunday in leeton , new south wales . she was due to marry fiance aaron leeson-woolley on saturday . a guest list of 120 people had been invited to stephanie 's wedding at the picturesque eat your greens venue 2km outside the tiny town of eugowra . but on saturday , the wedding venue was locked up and deserted as guests instead paid tribute to ms scott at her memorial service .\nadam rushton , 37 , took advantage of his post as a beat officer to have sex with women . staffordshire police officer found guilty of five counts of misconduct in public office . he was also convicted of breaching data protection laws while employed by force . deputy chief constable nick baker called rushton ' a disgrace to the police service '\nthe footage was captured by a zookeeper at the zoological center in tel aviv . elad hershkowitz placed a gopro camera at the bottom of water troughs . he filmed the animals for a total of 30 hours before cutting it down to four minutes . in the clip a rhino appears to almost kiss the surface of the water .\ndog molly had been on a walk with owner jane tipper and her daughter hannah . she fell over the cliff 's edge along with the lamb in eype , dorset , last week . molly survived a vertical drop of 100ft then rolled 150ft down a steep slope . coastguards searched thoroughly but were unable to find her . she was identified by a dog walker three days after going missing .\nfather of one of three teenagers arrested in turkey on suspicion of trying to join is works for mod . he is believed to work in military 's post office , where he could have had access to names and address of all military personnel at home and overseas . he has been put on compassionate leave from his post , after the mod considered suspending him , a source has said .\nrspca officers discovered five illegal pit bull terrier-type dogs at a make-shift farm in lancashire . they had been brutally trained to take part in illegal dog fights . the footage shows the animals were held in electrical shock collars , covered with scars and were kept in urine-soaked cages without water . all five illegal dogs - dingo , sheeba , zula , fenton and mousey - were ordered to be destroyed .\natletico madrid drew 0-0 with real madrid in champions league . miranda was not happy with the performance of referee milorad mazic . the brazil defender said officials from ` lower leagues ' should not be allowed to referee high-profile games . mario suarez has also blasted the serbian official .\nthe match finished goalless until the final play of the match . marcelo bosch kicked a last-minute penalty to send saracens through to the champions cup semi-finals . maxime machenaud crossed for racing metro 92 in the first half . alex goode and charlie hodgson scored the other tries for sarries .\ngang accused of filming attacks and then sending online messages demanding money to keep the film secret . one teenager has told greater manchester police he was beaten up by the gang , who reportedly tricked him into believing he was meeting an underage girl . the 19-year-old thought he was meeting a 14-year - old girl he had spoken to on the internet in atherton - but when he got there he was attacked by a gang of men who accused him of being a paedophile .\ndr. mehmet oz is being criticized by a group of doctors . the doctors say he has a `` lack of integrity '' in his tv and promotional work . they also say his faculty position at columbia university is unacceptable . oz says he will address the issue on his show next week .\nbritain 's largest purpose-built air raid shelter was built in the 1930s . the tunnels were dug into sandstone cliffs along the river mersey in stockport . the space was originally intended to be a car park , but was redeveloped as an air raid shelters after the outbreak of the second world war . residents from lancashire , cheshire and manchester could hide in the tunnels .\nandrew mogni , 20 , from glen ellyn , illinois , had only just arrived for a semester program in italy when the incident happened in january . initial police reports indicated the fall was an accident but authorities are investigating the possibility that mogno was robbed . he was flown back to chicago via air ambulance on march 20 , but he died on sunday .\nliverpool stars take part in ladies day at aintree on opening day of grand national meeting . brad jones , glen johnson and fabio borini among the stars to turn out . brendan rodgers ' side secured fa cup semi-final berth with win over blackburn . liverpool next face newcastle on monday in premier league .\nsam allardyce warns aaron cresswell that the grass is n't always greener . the west ham full back has been linked with a move to manchester city . but allardyce says jack rodwell and scott sinclair are examples of players who have left city for other clubs .\ncristiano ronaldo now has 300 goals for real madrid . the 30-year-old has played for the la liga giants for six seasons . he is seven goals shy of alfredo di stefano 's club record . ronaldo has scored 206 goals with his right foot and 52 with his left .\ncomedian was uk 's top-selling children 's author last year . anthony horowitz said books by walliams are ` witty and entertaining ' but he said they are not ambitious enough to challenge young readers . the 59-year-old novelist and screenwriter singled out gangsta granny .\nanti-fungal agent miconazole and steroid clobetasol both restored movement to mice paralysed by a rodent version of multiple sclerosis . in laboratory tests , they prompted inactive mouse and human stem cells to regenerate myelin , the protective insulation-like coating around nerve fibres that is destroyed by the disease . scientists said finding was significant as it could pave the way to new therapies for ms , which affects around 2.5 million worldwide .\nlyon beat guingamp 3-1 to go top of ligue 1 on saturday . nabil fekir and alexandre lacazette scored in the first half . it was lyon 's first win in three and moved them back above paris st germain . lille got back to winning ways with a 3-0 win over reims .\nwigan warriors beat warrington wolves 30-20 in their super league derby . ben flower made his return from a six-month suspension . the forward was sent off in wigan 's grand final defeat by st helens last october . dom manfredi scored a hat-trick of tries for the warriors . ryan hampshire , anthony gelling and liam farrell also scored tries .\nthe h5n2 bird flu virus has been found at a farm in northwest iowa 's osceola county . the virus has killed nearly 7.8 million turkeys and chickens since march . minnesota has had 28 turkey farms hit , far more than any other state . the risk to the public is considered low and infected birds are being kept out of the food supply .\njohn burns is alleged to have called bachar houli a ` terrorist ' at a club function at the mcg on friday night . the radio station confirmed a complaint has been made against mr burns . he said he does n't recall making the comment and is ` mortified ' by the allegation . houli is a multicultural ambassador for the afl .\nchristie 's magnificent jewels auction is on may 13 in geneva . it includes a pink diamond worth # 8million , a sapphire worth # 2.7 million and a pair of diamond earrings with # 670,000 . overall , the auction is expected to raise in excess of # 53million . the auction will showcase 351 historically significant and antique jewels spanning from the 18th to the 20th centuries .\nsalad and vegetables being grown in uk are being produced by migrant workers . they say they are denied basic hygiene facilities while working . some live in filthy shacks near the fields in southern spain . also say they have to work around dangerous pesticides - causing some to fall ill . revelations will horrify millions of customers of british supermarkets .\njack butland wants to emulate iker casillas by winning european championship with england under 21s . stoke goalkeeper voted for tottenham striker harry kane to win pfa young player of the year . butland joined gareth southgate and michael owen at st george 's park on st george 's day . 35 local schoolchildren were put through their paces by fa skills coaches .\nkanye west , 37 , and kim kardashian , 34 , were pictured dining at non-kosher restaurant in jerusalem on monday . following the outing , jerusalem 's mayor nir barkat posted a photo of him and the famous couple on his twitter page . however , the next day , only mr barkat and kanye were pictured in the photo , reprinted in an article on the ultra-orthodox news site , hakikar . kim 's face and body were obscured by a copy of the $ 692 bill . in another photo , she was reportedly blurred out . the article referred to kim as ` the wife ' of singer kanye .\ncar maker volvo says it will begin exporting vehicles made in a factory in southwest china to the united states next month . the move will be the first time chinese-built passenger cars will roll into american showrooms . china surpassed the u.s. as the largest market for car sales globally in 2009 .\n93,000 people live in the tsunami hazard zones of washington , oregon and california . also in danger are 486 public venues , 440 dependent care facilities and 2,314 businesses . seventy-seven percent of communities lying in the risk zone are equipped with the kind of geography and location to allow them the 15 to 25 minutes required for successful evacuation . some communities can increase their chance of survival simply by walking faster .\namana presley , 34 , allegedly killed two homeless men in atlanta and a hairdresser in decatur , georgia . he had originally set out to rob his victims but was overcome with ` bloodlust ' after killing one man , calvin gholston , 53 , in september . he then shot dorian jenkins , 42 , while he slept on the sidewalk in november . a few days later , he killed 68-year-old tommy mims as he slept under a railway bridge . he shot 44-year - old karen pearce in a parking garage on her way home from dinner with friends on december 6 .\nbayern munich beat porto 6-1 in the champions league on tuesday night . pep guardiola managed to tear a hole in his trousers during the match . the spanish manager 's underwear was on show after the incident . bayern munich booked their place in the semi-finals of the champions cup .\nthe man carries a defective gene known as neurofibromatosis 1 -lrb- nf1 -rrb- it can pass on a severe , life-limiting condition to his offspring . donor is understood to have fathered 99 ` viking babies ' across world . ten of his offspring have already been diagnosed with nf1 . four families are suing the sperm bank nordic cryobank .\narsenal were thrashed 6-3 by manchester city and 5-1 by liverpool last season . per mertesacker says the ` arguing culture ' was lost at times . the german defender says confrontation is vital for a teams mentality . arsenal face liverpool on saturday in a crucial clash for both sides .\nmother-of-three sara martin had not spoken for weeks after her health declined . but one day recently , she uttered the word ` florida ' and has not spoken since . now , her family is taking her to florida for what will likely be her final holiday . they leave for sarasota , south-west florida , today , in a rented van . mrs martin was diagnosed with aggressive , inoperable brain cancer in 2010 . she has three children - carlie , 12 , gretchen , 11 , and connor , 9 . her children are in school , so are not making the trip to coastal city .\nnasa 's new horizons spacecraft sends back first color image of pluto . probe is nearing crucial point in epic voyage of more than 3 billion miles . probe will make closest approach to pluto on july 14 . probe expected to shed light on little-known third zone of solar system .\npayment devices are protected by the same default password for more than two decades . researchers david byrne and charles henderson disclosed the password , 166816 , during the annual rsa security conference in california . they said the vendor had been using the same password since at least 1990 . the password is still being used by about 90 per cent of customers .\nemma sulkowicz accused columbia university student paul nungesser of rape in 2013 . nungeser was cleared of wrongdoing , but sulkowitz went public with her allegations . sulkowski carried a mattress around campus to protest the school 's handling of the case . nunzesser is suing the school for allowing his accuser to publicly brand him a `` serial rapist ''\npippa middleton stepped out in london in chic ensemble . the 31-year-old writer accessorised with jemima vine flat shoes . pippa was glowing in plum dress at spectator life party last week . recently revealed she will be designing a dress for charity in november .\nthe influenza vaccine is arriving in australia a month later than expected . stocks include protection against h3n2 and b/phuket . the decision was triggered by a spike in flu-related deaths in the northern hemisphere . high-risk groups will be able to access free , government-funded flu shots from april 20 .\ncorinthians striker paolo guerrero is one of three players diagnosed . palmeiras reserve goalkeeper aranha and young santos striker leo cittadini also have been diagnosed with the disease . players have been forced to use insect repellent during practice sessions . health officials have asked clubs to check their training centres for mosquito breeding sites .\ndefense and prosecution make closing arguments in dzhokhar tsarnaev 's trial . tsarnaev , 21 , faces life in prison or the death penalty for working with his brother to explode bombs at the 2013 boston marathon . if tsarnaev is found guilty of at least one of the 17 capital counts , the trial will proceed to a second phase .\nclay aiken called rep. renee ellmers a ` b ** ch ' and an ` idiot ' on monday 's howard stern show . aiken , 36 , lost to ellmers in november 's election for a seat in the house of representatives . he won the democratic primary when his chief rival , businessman keith crisco , died suddenly after a fall . aikens is the two-time runner-up on american idol , and he 's planning a third run for office .\npentagon announced tuesday that it will exhume and try to identify the remains of nearly 400 sailors and marines killed when the uss oklahoma sank in the bombing of pearl harbor . the ship capsized after being hit by nine torpedoes during the december 7 , 1941 surprise attack from japanese forces . altogether , 429 sailors and marine onboard were killed . hundreds were buried as unknowns at cemeteries in hawaii . in 1950 , they were reburied as unknowns at the national memorial cemetery of the pacific - also known as the punchbowl - inside a volcanic crater in honolulu .\noperation black vote campaign to encourage minorities to register . former arsenal and england defender sol campbell is part of campaign . campbell has joined forces with david harewood , tinie tempah and ade adepitan . campaign features stars in striking photographs ahead of voting registration deadline .\nrye silverman , 32 , is the newest real life model to star in the brand 's fashion truth campaign . the transgender comedian and writer has long been a fan of modcloth 's designs , and often posts images of herself wearing the clothing on the company 's style gallery forum .\njodie bredo , 26 , has been a professional kate lookalike for six years . wants duchess of cambridge to ` change her hair for once ' says she fancies prince harry more than prince william . ` his bad boy image is more for me , ' she said . miss bredo is single after splitting from her boyfriend .\nscientists are building a $ 1.4 billion telescope on mauna kea on hawaii 's big island . protesters say the mountaintop is on top of sacred burial ground land . the mountain is said to be visited by the snow goddess poli'ahu . native hawaiian leader has called for a 30-day moratorium on construction .\nmanny pacquiao faces floyd mayweather in las vegas on may 2 . the filipino boxer took to instagram to thank spike lee and tito mikey . pacquio also thanked nba legend karl malone for visiting him at the gym . the 36-year-old is set to fight mayweather in a $ 300million mega-fight .\nnasa 's space launch system -lrb- sls -rrb- will launch orion spacecraft in 2018 . the first test flight will use the largest , most powerful rocket booster ever built . tucked inside the stage adapter will be 11 self-contained small satellites . these satellites will be used to test technologies for astronauts travelling to deep space .\nmasood mansouri , 33 , from saltney , flintshire , is accused of kidnap , rape and sexual assault . jury watched a distressing video interview in which the 20-year-old told officers how she flagged down a car belonging to mansouri believing he was a taxi driver . but instead of taking her to a nightclub with her university friends , it is alleged the 33-year . old drove off without them and took her to his home where he sexually assaulted and raped her .\nmailonline travel looks at the world 's most unusual hotel amenities . at over 50 locations of the kimpton hotel chain in the us , staff will put a pet goldfish in any guest 's room . at the namale resort & spa in fiji , couples are ` kidnapped ' and whisked away for a picnic lunch in paradise .\nderby beat wigan 2-0 at the dw stadium on saturday afternoon . chris martin and darren bent scored for steve mcclaren 's side . wigan are now eight points adrift of the play-off places . james mcclean and kim bo-kyung both went close for the hosts .\natletico madrid have confirmed the purchase of 20 per cent of the club . dalian wanda group have bought 726,707 shares for $ 45million -lrb- # 32.8 m -rrb- two egms were needed in order to ratify the deal . wanda chairman wang jianlin hopes to grow atletico 's brand in asia .\nhawiian-born photographer dustin wong , 31 , abandoned his job as an engineer to travel the world with only his camera for company . he took photographs in america , australia , norway and the arctic circle . his images depict people interacting with the environment and enjoying themselves in the outdoors .\nharold ekeh , 18 , from long island , new york , has been accepted to all 13 ivy league colleges . he says he had no idea he would be accepted . his parents moved from nigeria to the us when he was eight . he plans to study alzheimer 's , a disease his grandmother suffers from .\nferrari team principal maurizio arrivabene has revealed to using a carrot-and-stick method with kimi raikkonen to keep his desire to remain with the maranello marque high . lewis hamilton is yet to sign his new contract with mercedes . raikkenson finished second behind hamilton in bahrain .\nanderson silva says he will fight for a spot in the brazilian taekwondo team at the 2016 olympics in rio de janeiro . the announcement was made on wednesday after a meeting with brazilian taemauwondo officials . the former ufc champion said he is ` trying to give back to the sport ' in which he began his career . silva is a taek wondo ambassador and a black belt in the sport .\ndele alli has impressed for mk dons this season . the 19-year-old was signed by tottenham hotspur for # 5m in january . alli was named football league young player of the year on sunday . he has been selected for england under 20s for the toulon tournament .\nlionel messi missed both argentina games during the international break with a swollen foot . the barcelona star wants to play on sunday but tests on thursday could curb his hopes . espn claim messi 's injury was the result of a tackle by martin demichelis . barcelona are keeping tabs on lazio midfielder felipe anderson , with manchester city and chelsea interested in the 19-year-old . chelsea and manchester city are also interested in valencia left back jose luis gaya .\ngeoff whitington , 63 , from ashford , kent , was made so sick by obesity-related type 2 diabetes that he had been told he may need a leg amputated . his sons anthony and ian have helped their father shed six stone and overhauled his health . he loves to cycle , never eats take-aways and counts kale and couscous among his favourite foods . doctors say he is no longer diabetic -- and he is off medication .\nburnley host tottenham hotspur at turf moor on sunday at 1.30 pm . burnley defender stephen ward should be back in contention for the clarets after overcoming an ankle injury . tottenham goalkeeper hugo lloris will miss the game because of a knee injury . danny rose will be assessed after returning early from an england call-up with hamstring and hip issues .\nst mary 's catholic church in dandenong was gutted by fire on april 1 . police are treating the blaze as suspicious and have released an image of a bearded young man they want to speak to . the church is said to be the site of child sex attacks perpetrated by now-deceased convicted paedophile father kevin o'donnell . the fire is one of a string of suspected arson attacks on three melbourne catholic churches with links to paedophile priests .\nanthony barbour , 33 , from liverpool , takes his camera everywhere and spends hours taking the pictures . he spins around three times while taking the picures until he captured as much of his surroundings as he can . once he has 50 pictures he uses photoshop to stitch and layer the photos together .\nian wright will present ap mccoy with his 20th and final champion jockeys trophy . the former arsenal striker will present the trophy at sandown on saturday . sky did not allow thierry henry to present the award because he is a sky pundit . mccoy is a huge arsenal fan and has been invited to attend a home game before the end of the season .\njury convicts aaron hernandez of murder in the death of odin lloyd . hernandez , 27 , was a star tight end for the new england patriots . he was arrested in june 2013 after lloyd was found dead in an industrial park . hernandez also faces murder charges in a 2012 double homicide .\nemma watson , 25 , has been in the spotlight for 14 years . she landed her first film role aged 11 as hermione granger in harry potter . the actress has since starred in 17 feature films and two fashion campaigns . she is also a un ambassador and has been involved in women 's rights movements .\na japanese court has halted plans to restart two nuclear reactors in the west . the court cited safety concerns over the safety of the reactors . japan 's 48 nuclear reactors are offline in the wake of the fukushima disaster in 2011 . prime minister shinzo abe has pushed for a return to nuclear energy .\nenglish premier league champions arsenal beat burnley 1-0 . aaron ramsey scores only goal of the game . arsenal four points behind chelsea , who play qpr on sunday . aston villa beat tottenham 1-1 to move up to third . sunderland lose 4-1 at home to crystal palace .\nmanchester united travel to chelsea in the premier league on saturday . louis van gaal and jose mourinho worked together at barcelona in 1997 . gary neville believes van gaal 's greatest achievement is the making of mourinho . neville believes mourinho may try to nullify the threat of marouane fellaini .\nmarie hunt of spring green , wisconsin , was born in 1911 , but was unable to get to her local high school six miles away . she dropped out of school after completing eighth grade and instead helped to care for her eight younger siblings . her hospice nurse contacted the local high school , who decided to give her an honorary diploma 87 years after her classmates graduated .\ncarlos tevez says it is harder to score goals in italy than england . former manchester united and city striker has scored 36 league goals in serie a. argentine striker has 25 goals for juventus this season . tevez won the champions league with manchester united in 2008 .\ncody , a havana cob , was trapped in a ditch in south london for six hours . it took 18 firefighters an hour and a half to free the horse . owner tracey hannant said cody looked like black beauty when he was freed . she said he had probably gone for a swim to cool off in warm weather .\nthe son of the apprentice host mark bouris has appeared in court . dane bouris , 33 , is accused of assaulting his model girlfriend , alexandra dankwa . he appeared in waverley court on tuesday and pleaded not guilty . bouris was a contender for 2013 's cleo bachelor of the year .\nyassir ali , 29 , of no-fixed-abode , was stopped by traffic police in birmingham . officers suspected the silver bmw 1 series may have been stolen . dashcam footage shows ali driving at 80 miles an hour through the city . he was jailed for 14 months for dangerous driving at birmingham crown court .\nthe tv season is winding down . there are six things to watch this week . `` the americans '' is one of the best series on tv . `` fresh off the boat '' has n't been picked up for a second season . `` vikings '' wraps up on thursday .\nbrisbane gamer bonnie doll has more than 45,000 global followers on twitch . the 28-year-old has been playing call of duty since 2009 . she now works from home and plays the game with her fans . bonnie has had her computer address and phone number leaked to others .\nabdirahman sheik mohamud was arrested in columbus , ohio , on friday . he is accused of trying to provide support to terrorists and making false statements to the fbi . he had been instructed by a muslim cleric to return to the united states and carry out an act of terrorism , an indictment said . mohamuad 's brother , abdifatah aden , was killed fighting with the nusra front , according to the indictment .\nmario valencia took a rifle from a walmart in tuscon , arizona on february 19 . he demanded bullets from a woman guarding the ammunition case . she did as instructed and then immediately alerted authorities . police were told the gun was locked by employees , but just seconds later he began firing into the air . he even pointed the weapon at an officer at one point . when the gun was recovered , it was found to be locked with loose wire .\nkyle wittstock , 22 , was killed in a paraglider accident on monday afternoon . he was swept into a garage door of a house in yanchep , perth . the young father posted photos from the air just hours before he lost control of his powered paramotor . he left behind a fiance and a nine-week-old daughter .\ncalum chambers signed for arsenal from southampton for # 16million in july . the 20-year-old has made 36 appearances for the gunners this season . chambers has been deployed at centre back and right back . the defender is determined to play his future in central defence . arsenal are currently second in the premier league table .\nthe labour leader visited a sikh temple in the midlands on wednesday . but his team banned national media journalists from the event . worshippers were also banned from using cameras and phones . mr miliband had donned a red head-covering to comply with sikh customs .\ndonna christie , 44 , fell 30 metres from hassans fall lookout in blue mountains . she was bushwalking with a male friend and her two children , aged 12 and 13 , when she dropped her phone at the lookout . she is believed to have suffered serious head , spinal and chest injuries . it took two hours for police , paramedics and the lithgow volunteer rescue squad to rescue her .\njoan cheever , founder of the chow train non-profit , was serving meals from her personal pickup truck . cheever was issued a $ 2,000 fine for serving food from her truck without a permit . chever has been serving meals to the homeless in san antonio since 2005 .\nmobile phone firms charge up to 20p a minute to dial supposedly free 0800 numbers . millions of people end up paying hefty charges for services run by nhs . charges will end from july 1 under proposals published by ofcom . the changes were fought by the mobile phone networks .\nmore than half of all syrians are now in need of survival aid , the u.n. says . the number of syrians in need is the population of moscow , it says . syria 's civil war has killed 310,000 people since march 2011 , an opposition group says .\ndavion navar henry only , 16 , has been adopted by his old case worker , connie bell going . davion was adopted by a minister in ohio but sent back to florida after just three months . he had been in the foster care system since he was born . davions mother gave birth to him behind bars and he was adopted as a baby . he made a plea in 2013 for a family to ` love him forever ' in front of a church congregation .\ngreece has denied it will miss repayment of # 330million loan to imf . country is due to repay loan to international monetary fund on thursday . there were concerns the heavily indebted nation would default on the payment . deputy finance minister dimitris mardas said greece will in fact make payment on time .\nmailonline has developed a quiz to see if you have what it takes to join mensa . mensa is an elite society that boasts some of the smartest brains on the planet . a top two per cent score on an iq test will qualify you to join . you can also prove that you are already in the top two % of the population .\nnearly half of the british public believe the duchess of cornwall should become queen consort when the prince of wales accedes to the throne . a new poll by yougov reveals that 49 per cent think camilla should take the traditional title . 35 per cent believe she should be given a lesser title out of respect to diana , princess of wales .\nnatalie whitear , 35 , suffers from prosopagnosia , also known as face blindness . she is able to recognise objects , but not faces , and can not spot herself . the mother-of-two ca n't pick her husband and children out of a crowd . she also walks past lifelong friends in the street . mrs whitear was diagnosed with the condition around three years ago .\nfeidin santana was told by another officer to stop using his phone to capture the incident . `` mr. scott never tried to fight , '' santana tells cnn . santana says he saw officer michael slager on top of scott , who was on the ground . slager shot and killed walter scott , 50 , as he ran away from the officer .\nprotests are gaining steam in baltimore . protesters want answers about what happened to freddie gray . police say they chased gray for `` running while black '' the police union says it 's 100 % behind the officers . the u.s. justice department is also investigating the case .\nreal madrid star james rodriguez will start against granada on sunday . the colombian midfielder has been out for two months with a fractured foot . rodriguez has scored 12 goals in 33 games since joining real madrid in the summer . madrid have lost their lead at the top of the la liga table and trail barcelona by four points .\nsamsung has previously supplied apple with various iphone parts . but following legal disputes , apple signed a monopoly deal with taiwan semiconductor manufacturing -lrb- tsmc -rrb- in 2013 . this meant it directly affected samsung 's business . reports now claim samsung will be the main supplier of the a9 chips in apple 's upcoming iphone range . the deal is said to be worth ` billions of dollars ' and will start in 2016 .\ndaniel irons was in court after being arrested for assaulting people . he was appearing via video-link when he became disgruntled with proceedings . the 26-year-old pulled down his pants and flashed the judge . he has been sentenced to an extra 30 days in jail for contempt of court .\njuventus defender stephan lichtsteiner played with eden hazard at lille . he also trained with paul pogba and kingsley coman . licht steinberger says coman has all the attributes to be a good striker . juventus face monaco in the champions league quarter-final on wednesday .\nboyfriend drops down on one knee and pops the question inside mcdonald 's . video captures moment he proposes to girlfriend in the restaurant where she works . couple embrace and celebrate inside the fast food chain . the man , known only as chase , then places a diamond ring on her finger .\nmichael spell , 25 , was sentenced to 100 years prison for the murder of sherry arnold , 43 . he and lester van waters jr. were under the influence of crack cocaine when they kidnapped and murdered mrs arnold . she was pulled into a car by spell and his friend , strangled to death , and then buried 50 miles away in north dakota . arnold 's body was found months later buried in a shallow grave in a rural area near williston , north dakota .\nblack mass is the upcoming film about notorious boston gangster james ` whitey ' bulger . the film stars johnny depp and dakota johnson , and is set to be released in september . steven davis , 57 , of milton , believes his sister , debra davis , was murdered by bulger in 1981 . he said he and his family are upset that the film glamorizes bulger 's crimes . the first trailer for the film was released this week . it showed depp for the first time as bulger , and he looked completely different .\nhull city have reapplied to have the club name changed to hull tigers . the initial request was blocked by the fa council by 47 votes to 27 . owner assem allam remains keen on changing the name despite fans ' anger . steve bruce has revealed allam has reapplied for permission to change the name .\nandy murray is marrying long-term girlfriend kim sears on saturday . the pair will be married in murray 's hometown of dunblane . murray looked nervous as he arrived for his wedding rehearsal . the british no 1 will fly to barcelona after the wedding to meet with jonas bjorkman .\nryan reaves was checked face-first into the glass by chicago blackhawks defenseman brent seabrook on sunday . reaves calmly dug around his mouth until he grabbed the loose tooth , pulls it out of his mouth and hands it to his trainer . the st. louis blues beat the blackhawks 2-1 on sunday , moving the team a point ahead of nashville to the top of the central division standings .\nchinese design students have created a machine that can wash clothes while cycling . the bike washing machine has a washing machine drum inside the bike 's front wheel . pedalling causes the drum to rotate , churning the clothes inside . a generator inside the machine also creates electricity for future use . the invention could also help shave a few pounds off your electricity bill .\nthe wigry national park , in north-east poland , is the furthest outreach of the masurian lakes . jane chose the region for an active holiday with her teenage son . the area is unspoiled , but it is also exceedingly well set-up for outdoorsy pursuits .\nabou diaby 's contract at arsenal expires at the end of the season . the midfielder has suffered 42 injuries since joining the club in 2006 . diaby will be allowed to use the emirates ' training facilities if he does not stay . arsene wenger has hinted he could offer the frenchman a new contract .\nmicha stunz , 45 , from berlin , has had his penis permanently enlarged with silicone injections . it is now 9 inches long and weighs up to 9.5 lbs -lrb- 4.3 kg -rrb- and is 3.5 inches in length . he claims it makes him feel ` better ' but it does not give him physical pleasure .\nqasr al-farid is located in madain saleh , saudi arabia . it is the largest of 131 monumental tombs in the area . the site was once the capital of the nabataean kingdom . it was built on one of the most important ancient trade routes , linking the north and south of the arabian peninsula . the tomb is a unesco world heritage site .\nchristian trousedale , 18 , walked the elderly man to his front door in horwich , bolton . the teenager said he was ` blown away ' by the reaction to his act of kindness . the picture of the pair has been ` liked ' a quarter of a million times on facebook . it 's attracted attention from all over the world , with more than 50,000 shares .\nf-35 lightning ii jet 's helmet gives pilots a 360 degree view of their aircraft . six infrared cameras around the plane allow them to ` look through ' air-frame . all of the information they need to complete their mission is projected onto the visor . helmet costs $ 400,000 and is millions more than original budget .\nvillagers dug a 46m well in ansai , shaanxi province , in central china . when they pumped the water to the surface , they could smell petrol . they then set the water on fire because it was so polluted . locals blame a leak from a local petrol station , but the owner denies this . local officials are now investigating how the water became so polluted .\nmanchester united are close to signing borussia dortmund ace ilkay gundogan . the 24-year-old is expected to cost # 20.5 million . gundogan is the perfect replacement for michael carrick . united boss louis van gaal believes gundogan can fill carrick 's boots .\nucl researchers created a model of how the virus spreads . called ` hybrid spreading ' it accurately predicted patients ' progression from hiv to aids in a major clinical trial . the model was inspired by similarities between hiv and computer worms such as the highly damaging ` conficker ' worm .\nthe elevator at the princeton complex on st kilda road in melbourne dropped suddenly on october 9 . marie d'argent claims she suffered vertebral disc trauma , whiplash and nightmares when the elevator at the luxury apartment complex dropped . the 55-year-old publicist says the fall also left her with a ` loss of libido ' , ` sexual discomfort and impairment ' and ` curtailment of sexual adventurism ' ms d' argent recently filed a statement of claim at the county court of victoria to seek compensation for her injuries .\noriginal cast members of twin peaks have joined together to back david lynch . the stars have created a #savetwinpeaks campaign to support the show 's co-creator . lynch announced sunday he was exiting showtime 's nine-episode revival over a salary dispute .\ndevelopers in boston have worked with global emergency response teams to create its one-touch-911 app . users can call police , fire service or report a car crash at the press of a button . each call is placed with the phone 's gps location , user details and any pre-entered medical information . if the user does n't have signal on their network , the app lets them ` roam ' onto another network to connect the call . the app can be used in 135 countries , and is compatible with any three-digit emergency number in these regions . rapidsos will begin testing the software in texas next month and has launched a kickstarter campaign to launch the app globally .\ned miliband promises to scrap the controversial ` non-dom ' tax status . labour leader says it makes britain an ` offshore tax haven for a few ' but shadow chancellor ed balls warned scrapping the rule would cost britain money . non-domicile status allows people living and working in britain to only pay tax on their uk income , but not earnings from overseas .\nnigel farage admitted on bbc newsnight that he has a ` preference ' for australian immigrants over eastern europeans and somalians . ukip leader said he was happier accepting migrants from commonwealth countries such as australian and india . comes after mr farage demanded that refugees fleeing to europe across the mediterranean are sent back .\nhundreds of passengers were evacuated from a new york city subway train after a fire in an underwater tunnel . the 7 train was stalled underneath the east river around 8.30 am monday morning . the train 's 542 passengers were taken by a rescue train to grand central station in manhattan . service on the 7 line was suspended for almost two hours .\nwest ham midfielder ravel morrison posted a picture of himself in his new lazio bathrobe on his instagram account . morrison was released from his last contract at west ham following a series of disciplinary problems . the 22-year-old has signed a pre-contract agreement with lazio ahead of next season .\nnormal petrol and diesel engines would be barred from the road by 2040 . only ultra low emission vehicles would be allowed in the uk in 25 years . lib dem leader nick clegg said he wanted to tackle ` dangerous levels of air pollution ' which cut average life expectancy by up to eight months .\ngreed rules the moral order at the top of raw capitalism , says peter singer . singer : sustainable development calls for a holistic approach that combines economic , social , and environmental objectives . singer says we are doomed to conflict and collapse if we fail to promote social equality and environmental sustainability .\nrobert f kennedy jr is the nephew of president john f kennedy . he spoke at a screening of the documentary trace amounts in sacramento , california on tuesday . the film purports that there is a connection between the vaccine chemical thimerosal and autism , though the scientific community has mostly dismissed the theory . kennedy is currently trying to stop a bill in the state that would make childhood immunizations mandatory .\nchinese markets sell tiger paws , snake heads and shark fins . traditional chinese medicine claims all manner of ailments including back ache , poor memory and even cancer can be cured by the natural world . china 's appetite for endangered wildlife and the 2,000-year practice of traditional chinese medicine is the main catalyst behind the world 's third-largest illicit trade .\nnbc sketch show parodied the daytime cnn newsroom in a skit . it showed how they covered the germanwings crash , iran nuclear negotiations and indiana law . but the animation was so bad that it looked like it belonged in 1985 . snl writers then used it to illustrate the ncaa finals and u.s.-iran diplomacy .\ncolonel muammar gaddafi ruled libya for almost 42 years . his bab al-aziziya palace in tripoli was a symbol of fear and terror . it was hit in a 1986 us air strike before being pounded by nato four years ago . rebels hastily bulldozed much of the compound when they captured it in august 2011 . now , the site is a market for traders selling birds and dogs .\nlionel messi has been with barcelona since the age of 13 . the argentine forward was linked with a move away from the nou camp . club president josep maria bartomeu has told messi he has a place at the club until he decides to retire . messi scored his 400th goal for barca in saturday 's 2-0 win over valencia .\ngary saurage , 45 , runs the gator country wildlife park in beaumont , texas . he was called out on monday morning to catch a giant 400lb , 11ft-long alligator . saurage approached the reptile with his bare hands stretched forwards .\ndavid de gea and victor valdes enjoy some fun in the sun at a theme park . the manchester united duo donned sunglasses as they enjoyed a relaxing time . united are currently second in the premier league table behind arsenal . louis van gaal 's side beat manchester city 2-1 on sunday in the derby .\netan patz vanished on his way to school on may 25 , 1979 . his disappearance helped galvanize the national missing-children 's movement . pedro hernandez , 54 , is accused of killing the boy and throwing his body in the trash . hernandez confessed in 2012 in a case that has confounded law enforcement for decades .\nin total , 272 youngsters left disabled by foetal alcohol syndrome hospitalised in england over the past 12 months . but actual number affected by their mother ' s drinking could be far greater , experts have warned . world health organisation suggests that at least one in 100 babies born in the uk could suffer learning and behavioural problems because of exposure to alcohol .\ngunmen opened fire on garissa university college , taking hostages , a lecturer says . hundreds of students managed to escape , a cnn affiliate reporter says . the kenya national disaster operation centre says 147 people were killed . the kenyan president urges people to stay calm and vigilant . 15 hours after the attack began , the operation had ended `` successfully ''\nstaff heard the baby girl crying in the ladies ' toilet of a burger bar in chengdu . workers found the baby wrapped in a shirt but still attached to the umbilical cord and placenta . a woman who had been seen visiting the toilet was established to be the mother . yuan yen , 34 , was arrested after receiving medical attention and faces charges of neglect .\nhundreds of indian nationals fight for positions in the queue outside the airport . more than 1,000 join haphazard queue outside tribhuwan international airport . passengers are desperate to get home after 7.8-magnitude earthquake in nepal . death toll has already hit 2,500 with historic city kathmandu reduced to rubble .\ncrystal palace beat manchester city 2-1 on monday night at selhurst park . chairman steve parish says the club need to invest in selhurst park . parish says alan pardew will have funds to bring in the right players this summer . but he wants to invest more in selwood park to improve the infrastructure .\nsewol ferry sank in south korea on april 16 , killing 304 people . nine of the victims have yet to be found . families say underlying problems that led to the sinking are far from resolved . south korea 's president park geun-hye calls for the salvage of the sewol 's wreck `` as soon as possible ''\nmonaco held to a goalless draw with montpellier at stade louis ii . lucas barrios missed a penalty early in the second half . result sees monaco remain in fourth spot , behind marseille , lyon and paris st germain . second-division auxerre beat guingamp 1-0 to reach french cup final .\nhadas from eritrea , africa , had ` the cut ' in her mother 's home country . she was just a few months old when she was mutilated . she says she does n't blame her mother for taking her to have the procedure . she has found support from the nspcc in the uk . hadas says she believes fgm should be stopped because it is ` disgusting '\nanthony clark reed was driving around detroit , michigan , on monday night . he was pulled over because he reportedly had illegally tinted windows . the 24-year-old was handcuffed , despite complaining he had trouble breathing . he suffered a fatal heart attack and died in hospital two hours later . his father , pastor kevin clark , claims he suffered an asthma attack and police were indirectly responsible for his death .\njennifer aniston , 46 , works out three times a week with trainer mandy ingber . sessions include 20-25 minutes of spinning , followed by 45 minutes of yoga . she says exercise , plus meditation , is her ` ultimate stress reliever ' the actress shows off her toned arms at the oscars and vanity fair party .\nchelsea take on arsenal at the emirates in the premier league on sunday . didier drogba and loic remy could start up front for jose mourinho 's side . diego costa is a doubt for the game due to a hamstring injury . cesc fabregas will make his first return to his former club .\nscores of dead fish have appeared in rio de janeiro lagoon . officials launch investigation into causes of death . rio de rio is hosting the 2016 olympics . mayor eduardo paes says the bay will remain polluted for the games . . last week , video showed a sailor crashing into trash floating on guanabara bay .\nchelsea beat arsenal 1-0 at the emirates on sunday . mesut ozil was fine but not good enough to change the result . the german has failed to live up to his # 42m price tag . cesc fabregas would have had a bigger impact in that team than ozil . arsenal fans are defensive of the germany midfielder .\nditching vitamin pills for a diet rich in clean , fresh and unprocessed foods . nutritionist sarah flower says cooking with the right ingredients should give you all the goodness you need . ` the cleaner your diet , the less likely you are to need to rely on supplements to boost your health '\nthe brother of walter scott says his family is `` deeply hurt '' by the shooting . scott was killed by a police officer after he ran from a traffic stop . a lawyer for scott 's family says he was not a dangerous person . the father of four served in the coast guard before being honorably discharged .\nthe 1991 ferrari 348 , worth between $ 90k and $ 110k , crashed into a tree in north brighton , adelaide . the driver was unhurt but his male passenger suffered head and leg injuries . the car was uninsured and the owner had only purchased it a week ago .\nelspeth mckendrick was diagnosed with asperger 's syndrome in 2012 . the 16-year-old was ` very much in denial ' about her condition , inquest heard . she was found hanged in her bedroom last august after leaving a note . the doctor who and sherlock fan had scored a string of gcse a stars . her parents said she was ` happy to be odd and eccentric '\nu.s. arrests show that isis poses unique challenges to al qaeda , officials say . isis has benefited from a media environment that amplifies its propaganda . the group has an easier path to drawing supporters than al qaeda has had . but u.s.-based recruits are still difficult to detect .\nsix activists boarded the polar pioneer rig in the pacific ocean . the rig is under contract to royal dutch shell plc. . the activists plan to unfurl a banner with the names of millions of people opposed to arctic drilling . the group said the activists would not interfere with the vessel 's navigation . shell said it has filed a complaint in federal court in alaska seeking an . order to remove the activists .\npolice have released the mother of three children who died in a car crash . akon guode was interviewed as part of the ongoing investigation . the mother , 35 , was behind the wheel of a grey 2005 toyota kluger when it crashed into a lake at wyndham vale in melbourne 's outer west on wednesday . one-year-old bol and four-year old twins madit and anger all died after the 4wd they were in plunged into the water . the heartbroken father of three siblings who died has since spoken out to defend the children 's mother saying she is innocent . the family with seven children moved from south sudan to australia in 2008 .\nirish model stella maxwell is one of ten new victoria 's secret angels . she was born in belgium but has lived all over the world since . the 24-year-old splits her time between new york and los angeles . she is good friends with emily ratajkowski and miley cyrus .\njacksonville jaguars will bring nfl draft to london for the first time . a competition for uk-based fans is being run via nfluk.com to announce sixth and seventh round picks . the winner will announce the picks live on sky sports in the uk and the nfl network in the united states .\nmanchester city players have backed patrick vieira to replace manuel pellegrini . pellegrini 's future at the etihad stadium is under scrutiny following a disappointing season . the former arsenal midfielder is highly-respected among the city players . city 's first-choice managerial option remains bayern munich boss pep guardiola .\nmodel patti boyd has tied the knot for the third time with rod weston . the 71-year-old was married to both george harrison and eric clapton . she is now the sole surviving first wife of a beatle . the couple have been together for 25 years and live in kensington .\nthe co-pilot of germanwings flight 9525 had depression , says peter hough . he says the selection process for germanwings pilots must be stressful . hough : would a manager not have noticed a potential problem ? hough says pilots can compartmentalize personal problems in the cockpit . the faa now approves certain prescribed medication for pilots .\nin south korea , company drinking fests are held every month or so. koreans consider drinking a way to get to know each other . follow these seven handy rules to avoid offending someone at a korean drinking extravaganza . if you 're not a drinker , do n't be rude to your superior or client .\nthe body was discovered on saturday at a property in the richmond area . police said it was believed to be that of anna ragin , who lived with her daughter carolyn . the house was said to be crawling with rats , black widow spiders , dog feces and 300 bottles of urine . neighbors said the mother had not been seen for years .\nmanny pacquiao takes on floyd mayweather jnr in las vegas on may 2 . mayweather jnr posted a video of his swimming routine on instagram . the 38-year-old boxer completed a few lengths of the pool . pacqu xiao-ming also took to the mountains on saturday .\nraquel d'apice , a comedian and mother-of-one from new jersey , created yelp reviews of newborns . the spoof reviews highlight the real struggles plaguing new parents today . raquel posts the reviews on her humorous parenting blog the ugly volvo .\nleaked police report reveals prisoner who shared ride to jail with freddie gray claims 25-year-old was trying to injure himself . the prisoner , who remains anonymous , says he heard gray ` banging against the walls ' and ` intentionally trying to injured himself ' statement was cited in a warrant to search an arresting officer 's clothing for possible traces of gray 's dna .\na woman allegedly stole an anzac donation box from an rsl club in melbourne . cctv footage shows her cautiously stalking by the concierge desk before she quickly grabs the box of anzac badges and money . she then covers the box with her black vest and casually walks out the entrance door . the caulfield rsl general manager has posted the footage on social media in a bid to track down the woman .\nfc united of manchester beat stourbridge 1-0 to win evo-stik northern premier . the club were set up in protest at the glazer family 's takeover of manchester united . it is the club 's fourth promotion in their short history . the rebels are now two promotions away from the football league .\namber phillips of los angeles expressed her support for the right to die law introduced in california on tuesday . if passed next year , the law will legalize physician assisted suicide for terminally ill patients . her mother connie phillips died from breast cancer in july of 2012 . connie phillips fought her cancer with fervor before asking that she be killed with the help of a physician . amber phillips says she regrets making her mother undergo chemotherapy against her will when her breast cancer progressed to the point that she could not enjoy her life .\narsenal 's calum chambers , tottenham 's eric dier and everton 's john stones have all impressed this season . chambers has played at right back , centre-back and midfield for arsenal . stones has moved from right back to the centre of defence for everton . england manager roy hodgson could be tempted to field the trio in a back three for the three lions .\ndani alves ' barcelona contract expires in the summer . the brazilian has been linked with a move away from the nou camp . the 31-year-old 's agent has revealed a deal is on the table to extend his contract . manchester united and liverpool are keeping tabs on the full-back .\nkim jong-un learned to drive when he was just three years old , textbook says . also claims he won a yacht race at the tender age of nine . bizarre claims are being taught to pupils in north korea . they are meant to indoctrinate future generations into glorifying dictator . book , called kim jong un 's revolutionary activities , distributed to schools .\ncollection was created by legendary make-up effects artist rick baker . items from blockbusters like men in black , batman forever and how the grinch stole christmas will be auctioned off at the end of may . the collection from baker 's cinovation studio is worth an estimated $ 746,100 .\ntexan department for motor vehicles have banned ' 370h55v ' for 30 days . the license plate was attached to a lamborghini for three years . it reads ` a ** hole ' upside-down . owner safer hassan said he plans to appeal the decision .\nchelsy davy stepped out in london wearing ripped jeans and a chic blazer . the 29-year-old radiated health thanks to a bronze glow . she was seen laughing with friends leaving an art gallery in mayfair . it 's the second night out this week for the party girl . she joined friends at the opening of new restaurant , the ivy chelsea garden .\nnational institute on drug abuse in the us has admitted , in its revised publication on marijuana , that the drug offers benefits to some cancer patients . the report states : ` recent animal studies have shown that marijuana extracts may help kill certain cancer cells and reduce the size of others '\na scrub python has swallowed the remains of a family cat in queensland . francis bakvis discovered the snake while searching for his pet cat tiger . the 16-year-old cat had been missing for three days . bakvis said he had never seen pythons on his property in 15 years of living there .\nroxhelle coulson put on 13 stone in four years by eating through ` boredom ' the 21-year-old suffers from sleep apnoea - a condition often linked to obesity . she says she is so tired that she falls asleep unexpectedly . she has not worked for five years because she says she would be a ` danger ' in the workplace . doctors have now warned ms coulson that she needs to lose weight to cure her condition . but she says that she can only do that with a state-funded support worker .\njack henry doshay , 22 , was arrested last week after allegedly attempting to kidnap a 7-year-old girl from a solana beach , california elementary school . he is the son of glenn doshays , a minority owner of the san diego padres and a former investment manager . doshay pleaded not guilty to charges of kidnapping , false imprisonment with violence and child cruelty on friday . his parents were noticeably absent from the court room as he appeared in court . dohshay was arrested nine days after the incident , after police released a sketch with his description and got over 150 tips from the public .\nwarrington wolves defeated leeds rhinos 29-10 in super league clash at headingley . kevin sinfield made his 500th appearance for the club on friday night . the rhinos were trailing 20-4 when the former england skipper entered the action five minutes into the second half .\nmaurice van ryn was subjected to years of abuse by a young woman . she has told sydney 's district court that she is scared for her future relationships . she said when he abused her as a child she did n't know it was wrong . she had attempted to take her own life after the abuse . van ry has pleaded guilty to 12 sex offences , including persistent sexual abuse of a child .\nyvonne deegan , 77 , said she was ` perfectly happy ' with care provided by dr rory lyons . her husband bernie , 70 , died suddenly earlier this year following 12-year cancer battle . police last week told mrs deegan his death is one of four being investigated . dr lyons , 62 , has been suspended from practicing on the channel islands .\njohn peacock names squad for uefa european under-17 championship . young lions are defending champions and will open campaign against italy . squad contains talented young players from a host of premier league clubs . jay dasilva and ike ugbo of chelsea among those called up . arsenal duo chris willock and stephy mavididi also called up for first time .\nzlatan ibrahimovic and dimitri payet have had their bans reduced . ibrahimovic was initially banned for four games after swearing at officials . payet was also banned for two games after a tirade in the dressing room . both clubs have successfully appealed to the french olympic committee . ibrahimovi will now miss three games and payet just one .\nmoses yitzchok greenfeld was pulled from water in hampstead heath . 19-year-old had been swimming with four friends when he got into difficulty . eyewitness claims seven police officers ` watched ' as the boys dived in and out . teenager may have had a cardiac arrest after jumping into cold water . his body was found five foot below the surface and 20ft from the water 's edge .\nfloyd mayweather jr will take on manny pacquiao on saturday . the fight is the most eagerly awaited in the sport 's history . mayweather is boxing 's undisputed braggart and a brilliant fighter . he is as close to genius as it gets in modern boxing .\nall five nba series that have played two games now stand at 2-0 . washington wizards beat toronto raptors 117-106 in game 3 on tuesday . lebron james scored 30 points as cleveland cavaliers beat boston celtics 99-91 . houston rockets beat dallas mavericks 111-99 to take 2-1 lead in series .\nsuper-rich prefer to book their own private maldivian island . they often request special access to exclusive events , such as the cannes film festival . some of the most exclusive travel companies only cater for a small number of clients . mailonline travel spoke to wedding and event planner sarah haywood .\nkevin bowes had nine ` avoidable ' dental procedures at the hands of dr nicholas crees . the 53-year-old 's teeth were reduced to ` apple cores ' and he will need years of treatment . he has won # 30,000 in an out-of-court settlement after a two-year battle with dr crees .\nmexican authorities say they seized alondra luna nuñez on friday . the girl was believed to be the daughter of a mexican national living in houston . the woman had claimed her daughter had been illegally taken to mexico . dna tests showed the girl is not related to the houston woman .\nwest ham are currently ninth in the premier league table . the hammers could qualify for europe through uefa 's respect and fair play rankings . the top three nations in the rankings qualify for the europa league . west ham boss sam allardyce wants his players to keep their discipline .\nthe prelate was sacked from a religious order in taranto , italy . online lover contacted church authorities with dossier of alleged evidence of sex . alleged to have played judas escariot and had to atone for betrayal . priest allegedly said he organised orgies with priests and a swiss guard .\nliverpool lost 4-1 at the emirates on saturday to leave their top-four hopes in tatters . the reds are eight points behind manchester united in fourth place . jordan henderson has urged his team not to give up on the top - four race . liverpool face blackburn in an fa cup quarter-final replay on wednesday .\nyoung kurdish girl is shown firing machine gun at isis in video . she tells man she is ` shooting at daesh ' in kurdish - the arabic name for isis . she then boasts she has killed 400 of the extremists so far . man behind camera encourages her to kill more , saying : ` kill , kill '\ninternational monetary fund official says talks with creditors are ` not working ' poul thomsen , the fund 's europe director , also warned of greece 's weak economy . greece has threatened to stop paying off its loan and default on its debt . this would make it harder for the country to remain in the eurozone . no state has ever left and there is no official exit process .\ncctv footage captures a sydney train station flooding during a storm of a decade . the video was filmed from the platform at bardwell park in sydney 's south . the murky flood water eventually submerges the train line and begins moving like a river past the platform . the flooding forced the partial closure of the t2 airport line in sydney .\nthe daxing internet addiction treatment centre has treated 6,000 patients . it claims to have ` cured ' 75 per cent of them . the centre believes internet addiction leads to brain problems . it is said to affect 24 million of china 's 632 million internet users .\nclaudia martins , 33 , suffocated her newborn baby daughter by stuffing toilet paper down her throat and hiding the infant 's body in a suitcase . she was suffering from a condition known as a ` pathological denial of pregnancy ' which continued after giving birth to the baby girl . martins was cleared of murder but convicted of manslaughter on the grounds of diminished responsibility . judge said her actions were ` wholly out of character ' and she was sentenced to a two year community order with supervision requirements .\nmia farrow had previously admitted the singer may be the father of her son . sinatra 's youngest daughter , tina , ridiculed claims ronan farrow was her brother . she said : ` could n't be . frank had a vasectomy before that . i do n't know whose son ronan is '\ndivock origi said the progress of jordon ibe has heightened his excitement at joining liverpool . the belgium striker was signed by liverpool in a # 10million deal after impressing at the 2014 world cup in brazil . origi has been loaned back to lille for the 2014-15 season .\nsabrina broadbent tetzner , 32 , left the fundamentalist mormon sect headed by convicted rapist warren jeffs eight years ago . she was granted full custody of her children last week and tried to pick them up from the sect 's compound in colorado city , utah . she says she was physically stopped by hundreds of members of the sect who tried to keep the kids from seeing her .\neden hazard is favourite to win the pfa player of the year award . the chelsea playmaker has scored 13 goals and made eight assists this season . paul scholes believes hazard needs to be more ruthless to be compared with cristiano ronaldo and lionel messi . the former manchester united midfielder says he would vote for hazard ahead of tottenham striker harry kane .\nvideo shows isis fighters destroying ancient assyrian city of nimrud . the city , which dates back to the 13th century b.c , is near mosul in iraq . seven-minute video shows militants destroying the relics with sledgehammers . it also shows militants making barrel bombs to blow up the ruins .\nnicola bonn , 34 , from london started a blog called upfront mama . blog details trials and tribulations of raising her little girl poppy , 14 months . says she 's spent too much time explaining herself to other mothers . says it 's overwhelming for a new mother to be told what to do .\nchelsea are considering a post-season tour to japan . jose mourinho has not ruled out a 12,000-mile round trip . the move could upset international managers . chelsea are currently top of the premier league . click here for more chelsea news . click here for all the latest chelsea news .\nandrew getty , 47 , had `` several health issues , '' police say . he was found on his side near a bathroom in his home , ktla reports . the coroner 's preliminary assessment is there was no foul play involved in the death . andrew getty was the grandson of oil tycoon j. paul getty .\naston villa beat liverpool 3-2 in the fa cup semi-final at wembley . christian benteke , fabian delph and jack grealish all scored . tim sherwood said his team ` bamboozled ' liverpool with their style of play .\ntokyo researchers have proposed a laser system to attach to the iss . it would be used to shoot down pieces of debris in earth orbit . the system would have a range of 62 miles -lrb- 100km -rrb- and could target things less than 0.4 inches -lrb- 1cm -rrb- in size . powerful pulses from the laser would then push space junk into earth 's atmosphere . the technology bears some similarities to the death star used in star wars .\ncctv footage shows yobs shooting at homes and cars with air rifles and bb guns . families on the high green estate in sheffield say they are being ` held to ransom ' by gangs of yobs . residents even claim one woman who confronted the yobs was shot at .\nemir spahic has been released by bayer leverkusen . the bosnian international was involved in a brawl with security . spahi was unhappy that his friends were not allowed into the locker room . the 34-year-old has been sacked with immediate effect . leverkusens lost the german cup quarterfinal to bayern munich .\nformer liverpool striker andrea dossena has been arrested on suspicion of shoplifting in harrods . the 33-year-old was arrested at the knightsbridge store on tuesday . dossen was later bailed and is now playing for league one strugglers leyton orient .\narsenal defeated burnley 1-0 at turf moor on saturday night . former gunners striker thierry henry praised francis coquelin . coquelin was arsenal 's man of the match , according to henry . the 23-year-old midfielder played a key role in aaron ramsey 's goal .\nalmost 60 % of americans are paid hourly and work part-time . writers : congress should help low-wage workers gain access to predictable work schedules . writers say major chains use `` just-in-time '' scheduling to maximize profit . they say this creates unstable and stressful work environments for low - wage workers .\nstudent tyler grant claims he was denied entry to a whataburger in austin , texas on sunday morning because he was wearing lingerie . the restaurant claims grant was not let in because he wore ` inappropriate attire ' grant , a junior at the university of texas , identifies as gender queer and sometimes wears women 's clothing . grant believes the restaurant was discriminatory because of his gender identity .\nceo cheryl rios , who runs the company go ape marketing , posted her views on her facebook page on sunday after hillary clinton announced that she was going to run for president . ` with the hormones we have , there is no way -lsb- a woman -rsb- should be able to start a war , ' she wrote in her post . rios ' comments sparked criticism on social media with people calling rios a misogynist and a hypocrite .\ndawn williamson was cured of her phobia of snakes by therapists nik and eva speakman . the 39-year-old had been petrified of snakes since watching b-movie venom at seven . she would obsessively check her home for snakes , and shake her boots for them . but she was cured live on tv by nik andeva in ten minutes , and was able to touch a real-life python .\ned miliband has hired a us-based coaching firm to help him convince voters he can be pm . the firm , extendedmind , claims to help politicians overcome anxiety . it claims to use ` neuroscience ' and ` business psychology ' to help them build ` leadership skills ' miliband has consistently lagged behind david cameron in polls on personal ratings .\nthe 26-year-old , known as ` chris ' by uk soldiers , was hit in the leg when gunmen opened fire near his home in khost , eastern afghanistan . his son muhammad also sustained injuries in the attack . chris says it is one of several attempts to kill or kidnap him .\nmore than 50 dead greyhounds have been found dumped in queensland bushland . at least 55 carcasses were found in the coonarr area , near bundaberg , on tuesday . a joint rspca and queensland police taskforce is now investigating . it 's understood the dogs were killed before a four corners special which exposed the horrors of the greyhound racing industry .\n' i thought i was going to die , ' donny ray williams said after a man threw acid on his face in 2013 . williams was a staffer for the senate homeland security subcommittee . he pleaded guilty last year to raping two women . a judge on friday agreed with a prosecutor 's recommendation that he not serve jail time due to his serious injuries . williams has undergone 20 surgeries and still faces more life threatening operations . he believes a former girlfriend 's jealous ex was behind the attack .\nvincent kompany says financial fair play is protecting elite clubs . manchester city captain says the regulations prevent other teams from challenging the established order of clubs . city captain claims the club are debt-free thanks to the investment of owner sheikh mansour . city face manchester united in the manchester derby on sunday .\ntimothy stanley : justice ginsburg 's reference to s&m was good , but court 's politics are clear . stanley : marriage equality arguments seemed more shaped by politics than the law . he says the supreme court is increasingly divorced from reason and politics . stanley . it appears unlikely the ruling will be unanimous .\nalmost 4,000 fans turned out to watch everton 's open training session . roberto martinez 's side are currently in the bottom half of the premier league . everton face swansea city at the liberty stadium on saturday . click here for more everton news . click here for all the latest everton news and news updates .\nnicola sturgeon says she wants all tax powers to be devolved to scotland . but labour 's jim murphy warns this will leave a # 7.6 bn black hole . the first minister was forced to admit her mps would vote for it next year . she was speaking in a tv election clash screened by the bbc in aberdeen . it came a day after she was booed for refusing to rule out a second referendum . tory leader ruth davidson said miss sturgeon 's election campaign is ` beginning to unravel ' and that she ` does n't speak for everyone ' in scotland . scottish lib dem leader willie rennie warned miss sturgeon against another referendum .\nabout 15 animals ran away from their pen on thursday evening . they then swam across the hudson river to bethlehem , new york . the herd then ran down the thruway , a series of toll roads . three men hired by the farm were cleared to open fire on the animals . they were shot dead in a stream in woods in coeymans , about 10 miles south of albany . police say the decision was made after experts agreed tranquilizers would not be effective and no portable corrals could hold the animals .\njuventus are 14 points clear of roma at the top of serie a with 10 games remaining . massimiliano allegri 's side host empoli on saturday in the league . the italian coach has guided juventus to the champions league quarter-finals . if they win the league , it will be a fourth straight scudetto for the club .\nmany britons have given up on dream of owning a home , research shows . just four in 10 renters aged 20 to 45 are saving for a deposit to buy a home . three-quarters of uk renters fear they will never be able to afford to buy their own house .\nhull manager steve bruce was snapped on a beach in barbados . bruce was baffled that anyone would be interested in pictures of a 55-year-old . the hull boss has promised his wife janet he will go on a diet . bruce also said manchester united should do more to produce young english players .\nwallabies boss aware of claims that his pack will be written off for world cup . england and wales will face australia and the other pool a sides . cheika 's side face england and the welsh in crunch pool games . toulon playmaker matt giteau is set to feature for australia at the world cup .\nsmart phones and social media often cause nightmare for men and women on dates . blu e-cigarettes have listed the top ten ways to avoid showing yourself up on dates . they include leaving conversations about tinder to evenings with your friends . also avoid changing your relationship status on facebook if the date 's gone well .\nliverpool and manchester united interested in signing memphis depay . the 21-year-old has been compared to a young cristiano ronaldo . ronald de boer believes united have an advantage over liverpool . psv eindhoven want # 25million for the holland international .\njose mourinho was given a tour of wimbledon by tim henman . the chelsea manager said he felt british when andy murray won in 2013 . mourinho described sw19 as ` more than a grand slam ' due to its traditions and aura . the portuguese manager was part of launch for the all england club 's deal with jaguar .\niranian president hassan rouhani has agreed to a deal with the west on its nuclear program . the deal marks a new chapter in the history of iran , says ramin mehmanparini . iran 's economy shrank after sanctions were intensified in 2012 , he says . mehman parini : the deal would allow iran to spin 5,000 centrifuges and avoid national humiliation .\njurgen klopp has confirmed he will leave borussia dortmund at the end of the season . the german coach has been in charge of dortmund for seven years . he is expected to be the bookmakers ' favourite to replace manuel pellegrini at manchester city . klopp has been linked with liverpool and arsenal in the past .\narizona is leading the way with plans to create artificial rain clouds . planes will fly over the rockies and seeding the sky with silver iodide . the technology could help mitigate some of the worst impacts of climate change . but some scientists are concerned about silver building up in river basins .\njake malone , 60 , met a woman calling herself ` rili ' on a social website . he decided to visit her in shenzhen , south china , but found her office closed . he has spent more than 11,000 yuan -lrb- # 1,100 -rrb- on translators to communicate . mr malone now carries a sign around his neck in a desperate bid to find her .\nbill and chelsea clinton foundation will re-file at least five annual tax returns to correct errors in how it has reported income from foreign governments . the murky picture also includes tens of millions of dollars bill clinton collected in speaking fees from companies that saw their fortunes rise because of u.s. state department actions . hillary clinton was helping approve russia 's purchase of us uranium production as her foundation received millions from executives tied to the deal . the former first daughter defended the philanthropy on thursday in new york city , calling it ` among the most transparent of foundations '\nbristol city council has ripped up 12,000 cobbles from a historic road . the cobbles will be cut in half and then relaid again to make it smoother . the road runs alongside the bristol floating harbour and dates back to 19th century . council tested technique on a small patch of paving and said reaction was ` overwhelmingly ' in support .\ndavid messerschmitt was found dead in a washington , dc hotel room on february 9 after he had been soliciting sex from men through craigslist . jamyra gallmon , 21 , has been charged with first-degree murder while armed for allegedly killing the 30-year-old lawyer . she admitted to police that she set up the lawyer using a masculine-sounding email address and went to the upscale donovan hotel with the intention of robbing him . the victim was found with multiple stab wounds to the back , groin and abdomen along with one wound which pierced his heart and another which hit his spinal cord .\nbest-selling designer abigail ahern has written a book about colour . she says colour can excite , inspire , tantalise and calm . her new book , colour , is a collection of photographs from around the world . here she gives her top ten tips on how to create a colourful home .\nin iran , many people are optimistic about a possible nuclear deal with world powers . but iran 's leadership is far more skeptical about the deal . iran 's military chief says he hopes the u.s. and iran can work together to fight isis in iraq . the u.n. security council has called for a resolution on iran 's nuclear program by friday .\nnurse victorino chua wrote a ` bitter nurse confession ' in 13-page note . he said he might ` explode ' at any time , manchester crown court heard . chua , 49 , is accused of killing three patients at stepping hill hospital in stockport . allegedly poisoned 18 others at the hospital between 2011 and 2012 .\ncarla suarez navarro came back from a set down to beat venus williams . the spaniard won 0-6 , 6-1 , 7-5 to reach the miami open semi-finals . suarez navaro will face andrea petkovic in the last four . petkovich beat czech karolina pliskova 6-4 , 6 -2 .\nminister for investment and trade andrew robb battled depression for 43 years . he revealed he tried an unconventional approach to stave off depression . mr robb said he drove to work with a pen in his mouth . he also said he would force himself to sneeze by looking at the sun . he said medication ` really did the trick ' and he has had better days in the last four years . labor mp anna burke said depression and suicide rate in australia was an ` epidemic '\nanthony stokes , 17 , died after he crashed a stolen honda into a pole in roswell , georgia on tuesday afternoon . he was fleeing from police after allegedly breaking into an elderly woman 's home and shooting at her . his death comes less than two years after he received a heart transplant at children 's healthcare of atlanta . he had been given just six to nine months to live but the hospital initially refused to put him on the waiting list for a new organ because they thought he would be ` non-compliant ' with the treatment . but after pressure from the media , the hospital backpedaled and he received the organ in august 2013 .\ngerman student paul nungesser is suing columbia university . he claims the school failed to protect him against backlash and harassment . emma sulkowicz publicly paraded her mattress in protest against him . nungesser said a columbia-owned website had presented as fact that he sexually assaulted sulkowitz .\nwesley sneijder tweeted his galatasaray knife range on saturday morning . the tweet was on the 15th anniversary of the death of two leeds fans . kevin speight and christopher loftus were stabbed to death in istanbul in 2000 . a minute 's silence will be held before leeds and blackburn rovers meet on saturday . the striker later deleted the tweet and apologised as supporters reacted angrily .\nmiami police have set up a hidden camera at miami international airport to catch baggage handlers stealing from passenger luggage . 31 employees have been arrested for theft in miami since 2012 , including six this year . airline customers have reported $ 2.5 million in lost property from 2010 to 2014 .\ndaredevil holidaymakers can walk on the glass floor of the cn tower in toronto . pulpit rock in forsand , norway offers a view of a fjord carved by glaciers . the grand canyon skywalk in arizona is nearly 4,000 ft above the floor of grand canyon . victoria peak , hong kong is the highest cluster of skyscrapers on hong kong island .\nmanchester city host manchester united in the derby at old trafford on april 6 . louis van gaal 's side have hit form at the right time and are second in the premier league . manuel pellegrini 's side are second and have lost two of their last three games . sportsmail has selected a composite xi of the sides to take shape .\nbritain could be sitting on oil reserve larger than north sea and kuwait . uk oil & gas investments boasted it had discovered ` world class potential resource ' but firm has now admitted it can not be sure how much crude lies beneath the region . chairman david lenigas has been criticised for exaggerating successes .\nthe woman has been identified as 25-year-old alexia christian . incident happened on thursday afternoon near the fulton county courthouse in downtown atlanta . police were investigating a call about a stolen car when the two officers saw christian sitting inside the vehicle in a parking deck . at one point christian fired at least two shots at the officers , and they returned fire , critically wounding her .\namanda holden will host new show on itv highlighting plight of rspca centre in birmingham . show will feature animals arriving at the newbrook farm animal centre in birmingham . she and co-stars will appeal to members of the public to take in the animals .\ned miliband faced ridicule last night after privately billing himself as the ` happy warrior ' ahead of last week 's televised election debate . labour leader ' 's secret cribsheets also reveal how he planned to ` relish the chance to show who i am ' in handwritten notes , mr miliband appears to exhort himself to ' use the people at home '\nalice barker used to dance with likes of frank sinatra and gene kelly in the 1930s harlem renaissance . she had never gotten the chance to watch herself dance on film . david shuff , who met barker years ago at her retirement home , helped locate and reunite her with three of her ` soundies ' , known then as short musical videos .\nabc is filming proof of concept for a revival of `` the muppets '' `` the big bang theory '' co-creator bill prady is co-writing the script . the presentation is set to film next weekend on the disney lot in burbank . if all goes well , the project could go straight to series .\ncamilla lawrence , women 's health physiotherapist , tells mailonline how to get your body back to its pre-pregnancy shape . duchess of cambridge played volleyball three months after giving birth to prince george in july 2013 . experts agree that carefully easing the body back into exercise is the best method .\npolice found the bodies of eight family members inside a home in princess anne , maryland , monday afternoon . the victims have been identified as rodney todd sr , 36 , his seven children , and his stepfather . police said no foul play was suspected in the deaths . the family had been using a generator to keep warm after the electricity was cut off . the children were between the ages of six and 16 .\ngrand national winner many clouds will target hennessy gold cup next season . trainer oliver sherwood also considering rematch with cheltenham conqueror coneygree . many clouds won the grand national on saturday with 11st 9lb on his back . the horse 's owner trevor hemmings flew in from isle of man to watch . ap mccoy is expected to return to action at cheltenham on wednesday .\njean nidetch died wednesday at her home in florida at 91 . she was the founder of weight watchers , which began in 1961 . she lost 72 pounds through the program and inspired millions more to shed pounds . `` it 's choice -- not chance -- that determines your destiny , '' she said .\npolice are assessing footage which appears to show arsenal fans singing a homophobic chant about ashley cole . the video was apparently filmed by a supporter ahead of arsenal 's fa cup semi-final win over reading . the footage appears to shows a homophobic chants being aimed at cole . cole left arsenal to join london rivals chelsea in 2006 .\nmany celebrities have a signature style that lasts through pregnancy . helen flanagan has changed her style dramatically for the birth of her first child . blake lively opted for flowy maxi-dresses and holly willoughby opted for modest outfits . miley cyrus , angelina jolie and gwen stefani also have signature styles .\nlacey spears of scottsville , kentucky , was spared the maximum 25 years to life . spears chronicled her son garnett 's illnesses on a personal blog called ` garnett 's journey ' and other social media . she was convicted by a jury in white plains , new york , last month of second-degree murder in his 2014 death at westchester medical center . prosecutors said spears loaded the hospitalized boy 's . feeding tube with a lethal amount of salt and kept on blogging .\na man carrying a suspicious package scaled a white house fence sunday night . jerome r. hunt , of hayward , california , was quickly apprehended , a secret service spokesman said . the package was being examined and later deemed to be harmless , a source said . a source said hunt made it 10 to 15 feet in on the south lawn .\nreanne evans is the 10-time ladies ' snooker world champion . the 29-year-old from dudley would be the first woman ever to reach the crucible . she faces 1997 world champion ken doherty in her first qualifier . watch all the action below with our live video .\nally mccoist was sacked as rangers manager in december . the club 's record scorer has not been spotted at ibrox since . john brown says mccoists will be welcomed back ` with open arms ' mccoista has been on garden leave since his sacking .\nargentina has accused three british oil firms of working without permission . foreign office summoned argentine ambassador alicia castro over provocative speech . comes after falklands residents voted to stay british in recent referendum . but argentina claims the islands and surrounding waters belong to the country . foreign secretary philip hammond said threats were ` as hollow as they are illegal '\nstana , 37 , and business consultant kris brkljac wed in croatia over the weekend . couple married ` in a private family monastery on the dalmatian coast , ' the actress 's rep said . the couple were often rumoured to be romantically linked , but they were only together in that way on-screen .\nstudents were invited to a meeting at goldsmiths university in london . but organiser bahar mustafa told men and white people not to come . she said the event was only open to bme -lsb- black and minority ethnic -rsb- women . union eventually backed down after a backlash from students .\nsheffield wednesday chief executive paul aldridge will leave the club at the end of next season . wednesday have brought in adam pearson and glenn roeder to work alongside head coach stuart gray . chairman dejphon chansiri said the trio would form ' a three-man sporting director by committee ' at hillsborough .\nstar reader was diagnosed with biliary atresia within days of being born . after an operation to unclog her bile ducts , doctors said she needed a liver transplant . her mother was not a suitable match and her twin sister shanell offered her liver . star underwent the operation in november and has since made a good recovery .\nfeatherstone prop james lockwood has been banned for two years . lockwood failed a doping test in an out-of-competition test last november . the 29-year-old was handed the suspension by uk anti-doping . lock wood has spent the last three seasons with featherstone .\nper mertesacker limped off during arsenal 's fa cup semi-final win over reading . the german defender twisted his ankle but was not seriously injured . he will miss arsenal 's premier league clash with chelsea on sunday . gabriel paulista will deputise for the gunners captain .\nliverpool scored 52 premier league goals last season . luis suarez and daniel sturridge have scored just 45 this term . raheem sterling , jordan henderson and steven gerrard have scored six goals each . harry kane and diego costa have scored more than the trio combined . liverpool have scored 45 goals compared to 84 at the same stage last season . only sunderland and crystal palace have top scorers with fewer premier league goal than liverpool this season .\nbarcelona midfielder ivan rakitic married spanish beauty raquel mauri in 2013 . mauri posted a picture of the pair relaxing at the beach on instagram . rakitic 's barcelona team-mate lionel messi has also revealed he is expecting a baby . messi posted a photo of his son kissing his wife antonella roccuzzo 's stomach .\nan indiegogo fundraising page set up for the accused killer cop had $ 393 of a $ 5,000 goal on thursday . gofundme said the campaign was removed due to a violation of their terms of use . slager has been charged with the murder of unarmed black father walter scott , 50 , who was fatally shot five times in the back in north charleston , south carolina on saturday . a separate facebook page and twitter account were set up linking to the fundraising site . one of the individuals who donated listed their name as ` trayvon ' - perhaps in a twisted reference to trayvon martin , an unarmed black teenager shot dead by a neighborhood watch volunteer in florida in 2012 .\ngeorge osborne spotted with real henry the hoover during campaign stop . the chancellor was given a tour of the numatic factory in chard , somerset . onlookers could n't help noticing similarities between the two . tories announced 16,000 new apprenticeships would be created . costa coffee and morrisons will take on 6,000 youngsters each .\ntim sherwood 's qpr face aston villa in the premier league on tuesday night . tim sherwood and chris ramsey know each other inside out and are friends . the pair lived 10 minutes apart in buckinghamshire and bedfordshire . the match could see them both escape the relegation zone if they win .\nheather mack , 19 , smiles as she cradles baby stella in bali holding cell . she sings rihanna hit umbrella as she nurses the infant outside of court . mack is accused of murdering her mother , sheila von wiese-mack . she and boyfriend tommy schaefer are facing 15 years in jail . prosecution say murder was premeditated and should be sentenced to 18 years .\ndavid axelrod masterminded two presidential election victories for barack obama . he was hired by the labour leader amid great fanfare last year . has helped refine mr miliband 's message about tackling cost of living . but he has revealed he is not resident for tax purposes in the uk .\ntiffany sical , 21 , and boyfriend bryan rodriguez-solis , 23 , killed in crash . couple were driving home from a screening of fast and furious 7 in providence . but they were killed when joel norman , 24 , allegedly crashed into their car . norman , of massachusetts , charged with two counts of driving under the influence . also charged with driving to endanger - death resulting - in sunday 's crash . sical and rodriguez-solis ' six-year-old daughter , jaylene , left orphaned . couples had been watching latest installment in the fast and the furious franchise .\ndenise chiffon berry , 44 , was pronounced dead at the scene in hawthorne , california on wednesday . her 12-year-old son was shot in the leg but survived . the mother and son were driving in a car with three men in a cadillac when they passed by the men in the car - one of whom had his legs dangling out of the window . ms berry and her son ` laughed at the man and the men began following them ' she pulled over to ask a police officer for help when she feared they were following her . the man in the front passenger seat of the cadillac pulled up and shot her and her 12 - year-old boy with two handguns .\npete bennett won # 100,000 after coming first in the seventh series of big brother in 2006 . but the troubled star says he squandered his prize cash on the animal tranquiliser ketamine and is now homeless . nine years on the tourette 's sufferer says his condition has calmed down and he wants to crack hollywood as an actor .\nthe 2015 county championship begins on sunday . durham , middlesex and sussex are among the teams to look out for . yorkshire will be looking to defend their division one title . kevin pietersen will hope his runs help surrey to promotion from the second tier . here is former surrey and england batsman mark butcher 's guide to the county championship .\njavier hernandez has been on loan at real madrid this season . southampton , lazio , stoke city and west ham are also interested in him . wolfsburg are looking to bring in another striker and have also considered edin dzeko at manchester city . united are understood to have made a revised contract offer to andreas pereira .\nloo version of the iron throne was built using plywood for youtube show . it was created by a team of hollywood prop makers for youtube series super fan builds . the recipient was self-confessed game of thrones geek john giovanazzi . he installed the toilet at his bar in glendale , california .\na member of the queen 's guard slipped and fell on a manhole cover during the changing of the guard at buckingham palace last week . the soldier lost his footing and slid sideways , knocking his bearskin on the side of the box and dropping his rifle . unfortunately for him , the entire incident was caught on a tourist 's camera .\nrobert boardwine 's friend used his sperm and a turkey baster to get pregnant . she thought she was entitled to be the boy 's sole parent , court documents say . boardwine says he always expected to be a dad . the appeals court says the method of insemination did n't come from medical technology .\ngreece has more than 6,000 islands , most of them uninhabited . kefalonia is a large island , about a quarter of the size of majorca . it was the setting for louis de bernières 's novel captain corelli 's mandolin . the 2001 film adaptation starred nicholas cage and penelope cruz .\nan australian couple abandoned a boy born in a surrogacy deal in india . the couple were repeatedly told the child would be left stateless , new evidence shows . australian government officials had full knowledge of the startling ordeal , according to documents obtained by the abc . the foi documents reportedly show staff at the australian high commission in india and department of foreign affairs and trade were aware the couple was from new south wales .\nsaudi arabia has carried out airstrikes on houthi rebel positions . today 's strikes targeted rebel-controlled army camps in hodeida . also hit warehouses belonging to a factory that produces dairy products . the jets drew return fire from anti-aircraft guns from the houthi rebels . at least 35 workers were killed , many of them crushed by rubble or burned to death .\nrapes and sexual offences up by 32 per cent to 80,200 , or 220 a day . first rise in recorded crime since 2003-04 , office for national statistics said . victims ` more willing ' to report sex crimes , including historical ones , experts said . police more likely to take complaints seriously after jimmy savile scandal .\nnew channel 4 series shines a light on the uk 's billion-pound supercar industry . expert seller saba syed sells luxury cars to the super rich . says more and more women are coming into the showroom . tom hartley left school at 11 to focus on ` wheeling and dealing '\nthe lawsuit was filed by an unnamed 30-year-old former marlborough school student . joseph koetters , who taught english at the $ 35,000-per-year school , is being sued for sexual abuse . the lawsuit alleges that when koetter was in his early-to-mid 30s he took part in a yearlong sexual relationship with a 16-year old student , which began in the 2000-2001 school year . koettering was arrested in february and charged with two counts oforal copulation of a person under 18 and two counts of sexual penetration by a foreign object .\nwashington , dc-based company united space structures wants to create a new space station . their giant cylinder could apparently replace the iss . it would rotate four times per minute to create artificial gravity . the cylinder would be 1,300 ft -lrb- 400 metres -rrb- long and take 30 years to build . to build the station , something like spiderfab could be used , a proposed system of robo-spiders that can construct solar panels , trusses and other parts of spacecraft in orbit .\nkevin cooper and trewen kevern accused of murdering david alderson . police originally thought he died after falling from his bike because he was dressed in lycra . but they say he was beaten and dumped in a pond before he drowned . pair then used his keys to steal # 40,000 from a safe where he kept guns .\naston villa striker gabriel agbonlahor is closing in on a return to first-team action . the 28-year-old missed villa 's fa cup semi-final win against liverpool . agbonahor posted a video of himself performing a boxing workout . villa face manchester city on saturday at the etihad stadium .\nnyia parler , 41 , is in treatment for unspecified `` treatment , '' maryland police say . she can not be extradited to philadelphia until she completes the treatment , police say , citing privacy laws . parler is accused of leaving her quadriplegic son in a philadelphia park while she went to maryland . a man found the 21-year-old lying in the woods friday .\na nine-year-old boy was whipped by his adoptive mother for not knowing pinocchio . the boy was also beaten with metal rods and water pipes , leaving scars . photographs of the boy 's horrific injuries were shared online . his adoptive mother li has been arrested on suspicion of child abuse .\nthe james webb space telescope is set to launch in october 2018 . it will be the successor to the hubble telescope , which has been operating for 25 years . jwst will study the first stars and galaxies that formed in the early universe . it is also designed to detect planets around nearby stars .\npoland is erecting watchtowers along the border to russian exclave kaliningrad . the towers , costing the polish government # 2.5 million , will range from 115ft to 164ft and will help monitor the 124mile long border using cctv . the increased border monitoring comes amid heightened tensions between russia and poland over the conflict in ukraine .\nmatthew connolly and odion ighalo put watford 2-0 up after four minutes . gary gardner scored for nottingham forest to half the deficit with 20 minutes to play . kelvin wilson was sent off for the visitors in the 72nd minute . almen abdi made certain of the points for watford with a late strike . watford leapfrogged middlesbrough into third , behind norwich in second on goal difference .\ncheryl and robert prudham are planning to renew their wedding vows in las vegas . the couple are planning a two-week ` no expense spared ' trip to the u.s. in march . mrs prudam , 33 , and her husband robert , 30 , claim # 39,192 in benefits a year . couple hit headlines last year after demanding a bigger council house for their brood .\ndashcam footage shows a red ute ramming another car at a traffic light . three young people got out of the ute and began to threaten the driver . one woman pulled out a dagger and stabbed the car 's bonnet . the driver has been suspended for 12 months from driving and hit with a $ 2000 fine . police are now investigating the woman who was armed with a weapon .\ndustin wayne south , 32 , was shot in the head by police in louisville , kentucky . he was seen waving a gun in the air and firing into the air . officers yelled at him to drop the gun but he pointed it at them and fired . two bullets were fired at south , but neither was lethal . he died of a self-inflicted gunshot wound to the head .\ntiffany williams and jessica versey , both 19 , became close friends during treatment . they went into remission around the same time and took to social media to post photos . but one of miss williams 's bald head and another of miss versey 's chest scar were reported . miss williams was cleared of hodgkin lymphoma earlier this month . miss verseys ' chest scar was also reported for being ` offensive '\nburglars target property in cobham , surrey , where chelsea 's training ground is based . michael essien 's # 75,000 range rover vogue stolen from driveway . two other vehicles , a mercedes and a bmw , stolen from neighbour on same day . essien left chelsea to join ac milan in january 2014 after eight seasons at stamford bridge .\nmanny pacquiao takes on floyd mayweather in a # 160million mega-fight in las vegas on may 2 . mayweather released two pictures from his training camp appearing to hold a weight from his head . pacquioa had actor mark wahlberg visit him at training .\naustralian doctor is the face of the latest islamic state propaganda video . the terrorist organisation announces the launch of its own health service in syria . the propaganda video shows a man with an australian accent who calls himself ` abu yusuf ' he calls on foreign doctors to travel to the isis stronghold raqqa to help launch the ishs -lrb- the islamic state health service -rrb- the vision shows yusuf handling babies in a maternity ward while wearing western-style blue surgical scrubs and a stethoscope .\nthe worst weather in five years continues in nsw . social media users have taken to snapchat to share their rainy day adventures . one man decided to boogie board through the floodwaters . others took the opportunity to play in the mud . the nrl game between cronulla sharks and south sydney rabbitohs was drenched in water .\nnapoli beat wolfsburg 4-1 in the europa league quarter final . rafael benitez is out of contract this summer . manchester city , paris st germain and real madrid are all considering changes . west ham and newcastle are also interested in the spaniard . benitez has won 12 trophies since 2002 .\nalejandro valverde won fleche wallonne on wednesday . movistar rider valver de sprinted to victory ahead of julian alaphilippe and michael albasini . team sky 's chris froome fell in the final 12km but finished 123rd . former winner philippe gilbert pulled out of the race after a bad crash .\nrademenes the cat nurse at an animal shelter in bydgoszcz , northern poland . green-eyed moggy was rescued by the shelter in october after he contracted an inflamed respiratory tract infection . his owner thought he was too unwell to be saved and he was placed in isolation . now he is nursing other abandoned sick animals back to health .\na shocking ` resurrection ceremony ' for a two-year-old dead boy at a texas church has been caught on camera . in the clip , the boy , identified by a witness as benjamin , is being held in the arms of texas pastor 's wife aracely meza . she is seen using oils and prays while trying to bring the boy back to life . meza , who is reportedly not the child 's mother , was arrested on monday and has been charged with injury to a child by omission , said police . a witness said benjamin was possessed by demons , according to pastors . she also said he went 25 days without food before he died .\njack colback has called for newcastle united fans to be given more . the magpies have lost five games in a row and are in danger of relegation . colback says fans deserve more after another disappointing defeat . the midfielder says he is already looking forward to next term .\ndawn bainbridge and her two daughters stole thousands of pounds worth of clothes . they stole from high street stores and sold them online through facebook page . the company ` designer goods north east ' took more than # 7,000 in just four months . judge jailed mother for 30 months , her daughter claire for 20 months and caitlyn for 16 months . the women have been ordered to pay back just # 1 each under proceeds of crime act .\na brisbane man has been charged with manslaughter after a row over noise levels . leon yeaman , 55 , was allegedly killed by a single punch in the head from 28-year-old shift worker phillip pama , 28 . pama was granted conditional bail and ordered to surrender his passport .\ncockapoo darcy has travelled 25,000 miles with her owner may wong since 2011 . she has visited 11 countries and 23 destinations including new york , berlin , stockholm , milan and paris . the pair have been joined on their trips by miss wong 's new dog , george .\nreading were beaten 2-1 by arsenal in the fa cup semi-final on saturday . adam federici was retained in goal for reading , as were six of his fellow starters from wembley . birmingham city defeated reading 1-0 in a scrappy sky bet championship game . clayton donaldson scored the winner with a header in the 83rd minute .\nanand iyer worked for fashion site threadflip in san francisco . he quit in january to spend more time with his two-year-old daughter ava . his wife shreya is supporting the family with her job as a recruitment manager at data analytics firm splunk .\ngeoff harris bought his four-bedroom albert park dream home in may last year for $ 12 million . the flight centre founder and brw rich list alumni accepted a hefty offer for his home from a couple at auction on saturday . the buyers knocked out any other bidders with their fist bid and went on to seal the deal with their generous offer . located just six houses down from the beach , the breathtaking pad has stunning beach vistas and is surrounded by water .\njudge philip cattan , 65 , was seen to fall asleep during the rape trial of john quingley at manchester crown court . the part-time judge from cheshire was confronted with the claim that he had slept through part of the cross-examination of the witness . the judicial conduct investigations office has rapped the manchester recorder over the incident .\nmanuel pellegrini has left little behind at manchester city . progress at the etihad stadium has been slight . recruitment has been poor and city 's squad is too old and foreign . city need to be shrewder in the market and hope investment in their academy pays off . pellegrini would be vulnerable to a move to the bottom of the table .\nemma dickson was rushed to hospital after suffering sharp pains in her pelvis . doctors told her she had two blood clots in her left lung , which had moved to her lungs . the clots then caused a pulmonary embolism which caused fluid to accumulate . as this fluid collected , mrs dickson 's left lung collapsed . doctors said the clots could have moved to the brain , causing a stroke . she was given blood-thinning medication and will now have to take it for life .\nh5n1 virus has been identified in telangana , india . officials ordered the slaughter of 250,000 birds and destruction of eggs . the virus can be deadly in humans and killed hundreds of people in 2006 . india has culled 6.4 million birds due to bird flu since 2006 .\nnew book by bestselling author jon krakauer details allegations of rape at university of montana at missoula . interviews with five alleged victims of rape for book , including kelsey belnap , who claims she was gang-raped by four football players . missoula : rape and the justice system in a college town was released tuesday .\nthe unnamed woman was discovered around 8.20 am sunday hanging from the third-floor fire escape of her apartment building in crown heights , new york . witnesses say they were traumatized and one passer-by said she initially thought the body was fake and believed it was a ` halloween prank '\nmichael carrick won his 33rd cap against italy on tuesday night . the manchester united midfielder has been consistently overlooked by england . sir alex ferguson signed carrick for # 18million in 2006 . steve mclaren and fabio capello did not pick carrick in midfield . carrick has a 100 per cent record with england at the world cup .\nresearch found that women applying for jobs remain coy about asking . on average , women ask for almost a fifth less than men . this widens to up to # 10,000 less in more senior industries such as accountancy . east anglia and the east midlands had the largest gender difference in expected salaries .\nthe handbag clinic has opened in chelsea to cater to the needs of well-heeled clientele . famous clients who have indulged in the luxury treatment include imogen thomas and made in chelsea stars sophie hermann and stephanie pratt . the company say they are now repairing bags worth # 20,000 every day at the clinic on kings road in chelsea london .\nlabial reduction procedures - surgery to reduce the size of the inner ` lips ' of the vagina - have risen five-fold in the past 10 years . more than 2,000 operations performed on the nhs in 2010 . trend is reflected in australia where procedures have more than doubled in the same time period .\nmanchester city beat west ham 2-0 at the etihad stadium on sunday . james collins own goal and sergio aguero 's strike gave city victory . frank lampard started his fifth premier league game for city and impressed . jesus navas and yaya toure also impressed for the champions .\nprosecutors : ailina tsarnaeva threatened a woman with a bomb in a phone call . she denies making the threats , which she says were meant for her brother . tsarnaeva is the sister of dzhokhar and tamerlan tsarnaev , who are on trial for the 2013 bombing .\nvergara 's lawyer fred silberberg said friday the actress has no intention of destroying the frozen embryos she created with ex nick loeb . but he added that she has no plans to use them either as she has moved on with her life . loeb filed a lawsuit against vergara asking a judge to order her not to destroy the embryos . it 's been reported that he wants to use the embryos to have a child .\nthe daily telegraph had a special tribute edition to richie benaud . the weekend australian carried tributes to ` the face of cricket ' benaud played in 63 tests , 28 as captain , before retiring in 1964 . his final commentary in england was at the 2005 ashes series .\nliverpool supporter stephen dodd tweeted image after fa cup match . he said : ` muslims praying at half-time at the match yesterday #disgrace ' asif bodi and abubakar bhula were seen praying in stairwell of anfield . mr dodd 's post was met with widespread condemnation on social media .\nraheem sterling has hinted that he wants liverpool fans to sing his name . the 20-year-old is stalling on a new # 100,000-a-week contract offer . sterling insists it has nothing to do with money and he will reassess at the end of the season .\nmore than 200 schoolgirls were abducted from their dormitories in nigeria last year . cnn 's malala yousafzai has been covering the case for the past year . she says the world has been united in calling for the girls to be returned . but she says the nigerian government has broken its promises .\nmanchester united are to hand trials to mk dons teenagers luke tingey and kyran wiltshire . tingy became a hit on youtube last month after scoring a free-kick against swindon . wiltsshire was included in karl robinson 's first-team squad for friendlies last pre-season .\ntuesday marked the 26th anniversary of the hillsborough disaster . steven gerrard and phil jagielka released 96 balloons at anfield . the balloons commemorate the 96 liverpool fans who died at the tragedy . liverpool manager brendan rodgers and the entire squad attended . former players including kenny dalglish , ian rush , phil thompson , robbie fowler , john aldridge - who gave the second reading - and jamie carragher also attended . everton manager roberto martinez joined his captain jagielka and club ambassador graham stuart .\ndirector of the british museum neil macgregor , 68 , is stepping down at end of year . mr macgregors said it was ' a difficult thing ' to leave after 13 years in post . he previously ran the national gallery and has worked as a broadcaster . his radio 4 series a history of the world in 100 objects was inspired by the museum 's collection .\nefe obada has been signed by the dallas cowboys . the 22-year-old played just five games for the london warriors last season . the 6ft 5in , 225-pound obada is seen as a defensive end or tight end . he will fly to texas next month for rookie mini-camp .\ntrainee police officer sophia adams won ` star in a bra ' competition . beat 1,000 hopefuls to land modelling contract with bridge models . will star in curvy kate 's spring/summer 2016 catalogue . has a 32jj bust and will be joining the brand 's curvy line-up .\nsouth korean ferry captain sentenced to life in prison for sinking . lee joon-seok had been ordered to serve 36 years for negligence and abandoning passengers aboard the sewol . sentence increased to life after he was convicted of homicide by account of his ` willful negligence ' the 6,825-tonne passenger ship sank off the southwest coast on april 16 last year , killing 304 people .\n7th-grader rose mcgrath was dismissed from st joseph middle school in battle creek , michigan , for not meeting academic and attendance standards . the school wrote that rose 's absences ` hampered her academic performance ' rose is in remission but still recovering from treatments for acute lymphoblastic leukemia diagnosed in 2012 . her mother says rose is not skipping school ` to have fun ' but that she has to miss school because she does n't feel well . the 12-year-old will attend a public school for now , but will decide if she wants to return to st. joseph middle after a meeting with school officials this week .\nwalter scott was jailed in 1987 on a charge of assault and battery . a report released by the charleston county sheriff 's department on friday says deputies responded to a call about a fight between scott and another man . when deputies told the two to break it up , the report states , scott began shouting obscenities at the other man as well as a deputy before shoving the officer . scott suffered a cut and was treated at a local hospital before being transported to the jail . the disposition of the case was not immediately known . the news comes as another excessive force complaint , as well and a lawsuit , is filed against michael slager stemming from his time on the north charleston police department . slager\ngangs operating in uk with ` impunity ' due to eu free movement rules . human traffickers run huge benefit frauds in the uk , report warns . vile trade also includes sale of young girls for prostitution and sham marriages . ` customers ' from outside eu requesting women with eu passports . they then claim they have human right to a family life in the country .\nrickie fowler has been dating bikini model alexis randock since last year . the 24-year-old caddied for fowler during the masters par three contest on wednesday . tiger woods ' girlfriend lindsey vonn joined him during the par three . the masters got underway at augusta national on thursday . rory mcilroy is bidding to complete a career grand slam .\nglenn murray opened the scoring for crystal palace with a tap in in the 35th minute . yaya toure equalised for manchester city with a fine finish in the second half . the result leaves manuel pellegrini 's side nine points behind leaders chelsea .\nthe pregnant woman and her partner were stranded off the coast of kent . their trimaran overturned yesterday and they were left clinging to the hull . the man dived under the capsized boat to retrieve an emergency flare . hm customs cutter valiant was on the water nearby and spotted a red flare .\nsienna miller 's mother started one of the first london yoga schools in the seventies . despite being ` very sporty at school ' , the actress says she 's ` not a gym person ' she works out with a personal trainer and jogging in her local park .\ndave rickard , 72 , and his wife brenda , 67 , were on holiday in caernarfon , north wales . their west highland terrier daisy fell 10ft from a quay into the sea . mr rickard said : ` her head went under the water , it was horrendous '\ntwo 18-year-old men have been charged with preparing for a terrorist attack . the men , from melbourne 's south-east , were arrested as part of operation rising . they were ` associates ' of abdul numan haider , who was shot dead after stabbing two officers outside a melbourne police station on september 23 . the two men allegedly planned to target anzac day activities . police said the threat was ` fully contained ' and that all five had been on their radar . the family of one suspect said they were told to stop their son communicating with the extremist recruiter .\nousted president mohamed morsy is sentenced to 20 years in prison . he was convicted on charges of violence and inciting violence . but he was acquitted of murder in the deaths of protesters . morsy 's party calls the trial a `` travesty of justice ''\nauthor sandra mackey died sunday at the age of 77 , her son says . her work included books on the middle east , iran and iraq . she was a frequent commentator on cnn during the gulf war in the 1990s . her book on iraq became required reading for many military leaders .\ntravolta says he has ` loved every minute ' of scientology . insists church is targeted ` because it 's not understood ' he insists it has helped him through the death of his disabled son . but new documentary going clear claims he has been blackmailed .\neve addison , 24 , developed a strange swelling in her collarbone after drinking gin and tonic . she assumed she must have an allergy - but when switching brands failed to help , she became worried . she also developed night sweats and a rash - and saw her gp . tests revealed she was suffering hodgkin lymphoma - cancer of the lymphatic system . most common symptom of hodgkin lymphoma is one or more painless swellings in the neck , armpit or groin .\nchelsea beat qpr 1-0 in the west london derby at loftus road . cesc fabregas scored a late winner to put chelsea seven points clear . chris ramsey was left devastated by the result . the qpr boss crouched down on the touchline to collect his thoughts .\na western gray whale has made the longest known migration by any mammal . the female , named varvara , swam 14,000 miles -lrb- 22,500 km -rrb- from the east coast of russia to breeding grounds off the coast of mexico . she did this without even stopping for a snack when she was nine years old . her return journey across the north pacific raises questions about the critically endangered creature 's conservation status .\nquinton ` rampage ' jackson takes on fabio maldonado in montreal on saturday night . former light-heavyweight champion jackson returns to the ufc after two years with bellator . jackson has been through a protracted legal battle to make his ufc comeback .\nagency supervisor xavier morales is on indefinite administrative leave . he is not allowed to enter the office . the female agent alleged that he said he loved her and wanted to have sex with her at a party held in his honor . she said he tried to kiss her and grabbed her arms when she resisted . the party was being thrown in morales ' honor to celebrate his recent assignment to head the louisville secret service field office .\n12 % of people think baby should be named after william 's mother - diana the princess of wales . alice and charlotte were next in terms of preference , getting nine per cent of the vote each . if the child is a boy then 13 % would like him to be called james .\nronald and miriam pearson were married for almost 72 years . met during the second world war when he was a sergeant for the raf police . they married in 1943 and settled in broughton near chester . mrs pearson died last month aged 95 , her husband followed two days later .\nsale sharks lost 25-23 to irish at the madejski stadium in reading . alex lewington -lrb- two -rrb- and andrew fenby scored tries for irish . mike haley claimed the other try for the hosts . danny cipriani kicked two penalties and a conversion . tom arscott scored a brace of tries for sale .\nimages were taken 18 years apart by a telescope in new mexico . the star -- known as w75n -lrb- b -rrb- - vla2 -- is 300 times brighter and eight times bigger than our sun . the images show how the outflow of material from the star has dramatically expanded as it takes shape . in 1996 the wind was shaped into a rugby-ball shape , while in 2014 it has been pushed out into an elongated shape .\nbbc have axed richard hammond and james may from top gear website . website previously featured trio alongside the stig at top of page . now racing driver appears solo in his white helmet . bbc say masthead change is to ` simply reflect the fact that all three presenters are currently out of contract on the show '\nperuvian city of 100,000 people sits on the shores of lake titicaca . lake is one of the world 's largest lakes , and its highest navigable one . floating islands in the lake are made from totora reeds . the city 's colourful fiestas combine spanish and inca traditions .\npolish prince challenges nigel farage to a duel in london 's hyde park . prince jan zylinski says he is fed up with discrimination against poles living in britain . farage complains that britain 's membership of the european union means it is powerless to stop a flow of foreign immigrants .\nthe boragaon landfill in india is one of the largest dumping grounds in the world . photographer timothy bouldry traveled the world photographing landfills . he became especially intrigued by landfiller even though they are `` scary , dirty and kind of grotesque ''\ncatherine engelhardt , a math teacher at alverta b. gray schultz middle school in hempstead , new york , was attacked by annika mckenzie , 34 , and her 14-year-old niece . mckenzie believed engelhardt had ` put her hands ' on her 12-year old daughter earlier in the day , police say . the mother and niece were arrested at the scene and have been charged with second-degree assault on school grounds , a felony , and second - degree strangulation .\nderry mathews was due to fight richar abril on april 18 in liverpool . abrils has withdrawn from the fight for a second time . mathews may still fight for the title in his home city if the wba strip abril of his belt .\ndaphne selfe has starred in the campaign for vans and & other stories . the 86-year-old model has been dubbed the ` world 's oldest supermodel ' she models the collection alongside 22-year old flo dron . daphne 's career originally began in 1949 and she was 10st 7lb in 1950 .\njonathan brownlee has won consecutive races in the itu series . the 24-year-old won the gold coast triathlon in australia on saturday . he saw off mario mola by 19 seconds with a winning time of 1:46:53 . world champion javier gomez took third .\n12 protesters were arrested when they tried to block trucks heading to the peak of mauna kea where one of the world 's largest telescopes is being built . the protesters are opposing the construction of a $ 1.4 billion telescope on a mountain in hawaii they consider to be sacred . about 300 people took part in the demonstration and those who were arrested were released after they each posted a $ 250 bail .\nfive nursing students from georgia southern university were killed in a chain-reaction crash on interstate 16 near savannah . the five women , all of them juniors , were driving separately in two vehicles that were both mangled in the accident . the georgia state patrol said three people also were injured and seven vehicles were damaged . the crash occurred at about 6 a.m. in bryan county , about 20 miles west of savannah .\ncleveland clinic , henry ford health system update hospital gowns . new designs are part of a trend among hospitals to improve patient reviews . the gowns are among the most vexing parts of being in the hospital . new gowns can be expensive and can provide extra coverage .\nhundreds of lilly pulitzer pieces were available for as little as $ 9.99 on ebay on sunday , but within 24 hours , many were selling for over $ 200 . the 250-piece collection was sold out in stores within five minutes of opening . the retailer has instated a 14-day return policy for the line .\nkarl lagerfeld 's cat choupette earned # 2.18 million last year . the fashion designer 's white siamese has two personal maids . she appeared in two adverts for cars and beauty products . but cara delevingne earned # 3.4 million last season .\nthe video was filmed by michael j from michigan . his 11-month-old daughter leighton was in floods of tears before she was handed a french fry to lure over the family pup , zayla . footage shows her reaching down to feed the hungry canine and chuckling with delight when he snaps the treat up . she 's then handed another fry . but this time around she decides to break the chunk of potato in half to make it last longer .\nnew york , london and paris all have unique city nicknames . some refer to ancient heritage , others to industry and others to environment . just the flight have researched each and every one of them to produce an infographic . las vegas is known as ` sin city ' but the nickname dates back to a building used by prostitutes .\nbritish world dressage champion charlotte dujardin won the grand prix at the world cup in las vegas . the 29-year-old , and her horse valegro , won the world title in lyon last year . she recorded a score of 85.414 percent to finish clear of dutchman edward gal with american steffen peters in third .\nsofia abramovich is the daughter of russian billionaire roman . she has been criticised on instagram for her appearance and weight . the 18-year-old has hit back saying she will turn the negative into positivity . sofia is roman 's daughter from his second marriage to irina .\nliverpool captain steven gerrard was hailed by marouane fellaini as the best passer he has played against . fellaini also praised phil jagielka as the toughest tackler he has faced . the belgian also praised wayne rooney as the most athletic player he has ever played with . fellainei 's manchester united face the toffees on sunday .\nrussian researcher claims our ancestors had tentacles and a nervous system . she studied an ancient brachiopod called lingula anatina found all over the world . it is thought that the creatures lived more than 540 million years ago and used them for food . it 's likely they also had a complex nervous system like we do today . this puts to bed another theory that suggests our ancestors were worm-like creatures .\nengland captain alastair cook is unbeaten in four tests . cook has not scored a test hundred since may 2013 . england face west indies in the second test in antigua . cook is under pressure to score runs after ecb 's big decisions . the england captain is not concerned about his lack of runs .\naston villa drew 3-3 with qpr in their premier league clash on tuesday . christian benteke scored a hat-trick to secure a vital point for villa . matt phillips impressed for qpr with his sixth assist of the season . charlie austin scored qpr 's third and final goal of the game .\nleighton baines and luke garbutt visited alder hey children 's hospital on wednesday . the everton duo handed out easter eggs and posed for photographs with patients . baines hailed the ` unbelievable strength and character ' of the children . everton face southampton in the premier league on saturday .\ngeorge osborne refuses to rule out further cuts for britain 's top earners . he says raising 40 per cent tax to # 50,000 is ` priority ' but not a priority . labour accuse the government of prioritising ` helping the very richest ' chancellor also refuses to commit to devoting 2 per cent of budget to defence .\namira abase hussen was one of three girls who fled to syria to join is in february . her father abase was caught on camera at a violent rally held by extremists in 2012 . he has now admitted taking his daughter to a similar protest when she was 13 . mr hussen said the teenager was ` maybe ' influenced by the rally in london .\nthe ` blood moon ' was visible in the western u.s. , canada , australia and new zealand . it was the shortest lunar eclipse of the century and lasted just five minutes . the best spot to see it was at the mississippi river , where it began at 5am pt . the next full lunar eclipse will be visible from europe on september 28 .\nthe ad was created by the pro-israel lobby american freedom defense initiative . the group is headed by firebrand blogger pamela geller . the mta said it would not run the ad because it could incite violence . judge john koeltl said in a decision made public tuesday that the incendiary ad is speech protected under the first amendment .\nclare hines , 27 , from darra in brisbane , was diagnosed with a brain tumour after suffering epileptic seizures . doctors told her she had to have surgery to remove the tumour or she risked the tumours turning malignant . one week before her surgery she found out she was pregnant . she went against doctors ' warnings to keep the baby and give birth to her son noah . seven weeks after noah was born ms hines had surgery to have her brain tumours removed .\nbody of woman , in her 60s , found at derby motor boat club in sawley . a 65-year-old man has been arrested and released on police bail . police say the woman 's death is being treated as ` suspicious ' post-mortem examination failed to establish cause of death .\npep guardiola has to think of a way to stop lionel messi . barcelona face bayern munich in the champions league semi-finals . guardiola will be reintroduced to the club he managed for six years . the bayern boss admits it will be a ` very special game ' for him .\nraheem sterling has rejected a contract extension worth # 100,000 a week . the 20-year-old has just two years left on his deal at the end of this season . sterling said he was flattered by arsenal 's interest in signing him if he left liverpool . brendan rodgers has criticised sterling 's agent aidy ward for his advice .\na photographer parachuted off the coast of south florida last week and captured a swarm of sharks . john massung says he saw hundreds of sharks swarming just 100 feet from the beach . massung posted the pictures to facebook and users speculated that the sharks were blacktip and spinner sharks . the sharks migrate this time of year to breed in shallower waters .\nchelsea face qpr at loftus road in the london derby on sunday . nemanja matic and cesc fabregas are one booking away from suspension . the duo would miss games against arsenal and manchester united . but jose mourinho insists his midfield pair will start at loftu road .\nphotographer mark kolbe travelled around australia to meet the grandchildren , great-grandchildren , sons and daughters of some of the brave members of the australian armed forces who landed in gallipoli nearly 100 years ago . amongst the keepsakes held by the relatives are letters sent by soldiers informing their loved ones of their discharge from the australian imperial force . black and white photos show the servicemen on horseback and playing with their army football teams .\npaul doyle moved his family into # 820,000 home in altrincham , cheshire . father-of-two , 56 , lived life ` on tick ' and received incapacity handouts . he put down # 200,000 deposit and obtained # 600,000 mortgage on property . but he falsely claimed his wife jeanette , 49 , worked as a company executive . his family were probed after scandalising the leafy neighbourhood . doyle chopped down huge front hedge so he could check for unwanted visitors . he was eventually arrested during raid on his five-bedroom house .\namanda chatel is pushing for ` yes means yes ' sex contracts to become mandatory on college campuses across the country . she wrote that she was a victim of date rape and blamed herself for years because she never actually said ` no ' to her attacker . the ` yes means yes ' law was first passed in california in 2014 .\ngeorge osborne refused to rule out further cuts to child benefit . more than a million households lost out when coalition announced that families with one parent earning # 50,000 would pay tax on child benefit , which is worth # 1,000 per year . chancellor said the coalition had saved # 21billion in this parliament .\nthe photograph is believed to show principal andrew barr watching pornography in his office at geelong college . mr barr resigned from his position at the elite private school after an investigation . the school has confirmed it has begun searching for a new principal . the photograph was taken by a student at the school and shared on snapchat . the geelong council said the matter was a serious breach of the school 's standards .\npersonal trainer james staring has four simple tips to lose belly fat . he says writing a food diary and doing short bursts of exercise are key . also says to avoid white bread and pasta and only eat carbohydrates after exercise . mr staring is from fit to last , a london-based fitness company .\na pregnant jehovah 's witness woman and her baby have died after she refused a blood transfusion . the 28-year-old was diagnosed with leukemia seven months into her pregnancy . she was told she could have a caesarean section or chemotherapy but both would require her to have a blood transfusion . she refused both options due to her religious beliefs and her child died in utero .\ndr. anthony moschetto pleads not guilty to charges in connection to plot to take out rival doctor . police officers allegedly discovered approximately 100 weapons at moschetto 's home . two other men are named as accomplices . moschetta 's attorney says his client `` will be defending himself vigorously ''\na geologist claims the world 's oldest pyramid is hidden under rubble . the site in west java is revered because it hides an ancient temple built between 9,000 and 20,000 years ago . the megalithic site of gunung padang was discovered in 1914 and is the largest site of its kind in indonesia . chunks of volcanic rubble jut out up from the stepped hillside , which is considered sacred by the sundanese people who live locally . if the structure in west jakarta is revealed to be a 20,00-year-old pyramid , it will be the oldest on earth .\nvideo shows convoy of islamist fighters celebrating capture of jisr al-shughour . the eight-minute video appears to be narrated by a british fighter . he claims al-qaeda linked group has come to ` free ' the residents of the city . but residents are filmed fleeing in long convoys on foot and in cars . hours after video was filmed , syrian government warplanes carried out air strikes on the city , killing some 20 fighters .\nporto beat fulham under 21s 3-0 in premier league international cup semi-final . leandro silva scored a hat-trick for the portuguese side . chelsea manager jose mourinho watched the game with son jose junior . mourinho missed real madrid 's champions league clash with atletico madrid on wednesday .\ncouple from crawley , west sussex , came under fire for substantial age gap . william smith was just 15 when he fell in love with his best friend 's mother , marilyn buttigieg . they became an item when william was 16 , and tied the knot six years ago . grandmother-of-eight marilyn , now 54 , said : ` the age gap does n't matter '\nandy lee takes on peter quillin in new york on saturday night . but the bout will no longer be a title fight after quillin failed to make weight . lee was hoping to make his first defence of the wbo middleweight title he won against matt korobov last year .\nwilliam beggs , 54 , known as the limbs in the loch murderer , was attacked in prison . he is serving a life sentence for raping , murdering and dismembering barry wallace . teenager 's limbs and torso were found in loch lomond and his head in the sea . begg 's screamed in pain as boiling water was thrown over his face and hands .\nmanuel pellegrini admits his academy players are not ready for the first team . premier league regulations require clubs to carry at least eight homegrown players . city 's current group of home-grown players will be reduced in the summer when frank lampard departs . james milner could also leave city in the transfer window . jack wilshere and ross barkley have been linked with city .\njake hall scored with his first touch for non-league side boston united . he scored in their 2-0 win over tamworth at york street on monday . his on-off girlfriend chloe lewis was in the crowd to watch . towie star james ` arg ' argent was also in the stands to see the goal .\nrape crisis london has produced 2,000 photographs of 200 women in london . campaign aims to stamp out the myth that women are ` asking for it ' because of their clothes . the images are accompanied by the hashtag #thisdoesn ` tmeanyes . charity says no matter what a woman wears she never deserves to be raped .\n7 out of 10 business chiefs at britain 's biggest companies think ed miliband would be a ` catastrophe ' for britain . poll of ftse 100 chairman reveals overwhelming support for david cameron to remain prime minister . comes just days after more than 100 company bosses signed a letter warning against a labour government .\namerican dancer joy womack left her family in the u.s. to join the bolshoi ballet academy . she left the bolshoi in 2013 under a cloud , claiming she was asked to pay $ 10,000 to dance . she now works at the kremlin ballet theatre , where she is paid $ 240 a month .\n18-year-old bobby burns made a fan trailer for the `` batman v. superman '' trailer . he used classic superhero footage . the video has gone viral . burns says he wanted to contrast the old with the new . the film opens in theaters on july 18 .\nvolkswagen 's iconic westfalia camper van is to be reborn as an electric vehicle . a volkswagen board member revealed the plans at the new york international auto show . he said that the new vehicle will share at least three key features with the original . battery packs will be hidden under the vehicle 's floor and a small electric motor will drive its front wheels . a concept is expected to be revealed in two to five years ' time .\njohn sutter : i see signs of a revolution everywhere . sutter says a majority of americans favor medical marijuana . he says scientists and politicians are diving in head first . sitter : `` weed 3 '' will show the first federally approved clinical study on marijuana for ptsd .\na 1997 apple promotional watch is listed on ebay for $ 2,499.99 -lrb- # 1,707.47 -rrb- it has a blue bezel , rubber strap and colourful hands , but no digital capabilities . the watch was released to promote apple 's mac operating system . it is still cheaper than the apple watch edition , which costs upwards of # 8,000 -lrb- $ 10,000 -rrb-\nchelsea beat manchester city 3-1 in the fa youth cup final first leg on monday . tammy abraham scored twice and dominic solanke added a third for blues . the 17-year-olds have both now scored 36 goals this season for chelsea . solanke has now reached 35 goals for the club and could play against arsenal .\nat a visit to the age uk in plymouth yesterday , david cameron appeared weary with bags under his eyes and disheveled hair . in one day this week the tory leader travelled to all four home nations in his bid to secure votes ahead of the may 7 election .\nthe queen has amassed 970,000 followers on twitter in less than six months . her majesty 's account is more popular than the prince of wales ' @clarencehouse account . the duke and duchess of york are the next most followed royal with 82,400 followers .\nboris nemstov was shot in the back four times on a bridge in moscow in february . zaur dadaev is one of five chechan men accused of killing the politician . he had previously confessed to the murder but later retracted his confession . now he has told a court he was beaten and pressured into confessing .\na new report claims serial killer ivan milat could have been caught before he murdered seven backpackers . the ` wrong man ' was jailed for the first violent crime , according to the channel seven program . milat 's brother , boris , reveals a secret he has kept for 52 years . the report claims milat would have been about 19 when he claimed his first victim . the 70-year-old butcher was convicted of butchering seven young people between 1989 and 1992 . he has been locked up in goulburn 's supermax jail for almost 20 years .\nronald koeman 's southampton face tottenham hotspur at st mary 's on saturday . the dutchman has praised the work of his predecessor mauricio pochettino . pochettinos left southampton last summer to join tottenham . koeman says the game will be ` special ' because pochettinho is now the coach of his opponent .\nvictims ' families testify in sentencing phase of dzhokhar tsarnaev 's trial . tsarnaev , 21 , was found guilty on all counts in the 2013 boston marathon bombings . the jury will decide whether he should live or die . the victims ' stories are even more gripping than the stories of tsarnaev 's bombs .\nthe vatican are training up ordinary doctors , teachers and psychologists . they are being taught how to cope with a rising tide of demonic possessions . the tenth edition of the annual course , ` exorcism and prayer of liberation , ' began this morning at rome 's regina apostolorum university .\npolish father , who may be suffering from amnesia , wandered into the london embassy . he does not know how he came to lose his memory or be in the uk . he can not even recall his own name and only knows he has a daughter called lenka .\nstuart broad was dismissed for a duck in england 's first innings against west indies . the 28-year-old has seen his place in the side questioned , but he still produces with the ball . england need to be careful not to get confused between broad the bowler and broad the batsman .\nthe ` special relationship ' between britain and the us was strong under margaret thatcher and ronald reagan . but a memo for members of congress states that ` the uk may not be viewed as centrally relevant to the united states ' the memo also warns that the uk faces turmoil if there is a hung parliament .\nfrance has joined italy and israel in passing laws banning the promotion of extreme thinness in the fashion industry . but experts say the laws may be unlikely to have any effect on anorexia . the view that anorexic is caused by comparing oneself to catwalk models remains popular . but rachel cole-fletcher , of durham university , says personality traits are to blame .\njia huaijin quit his job as a middle-manager at a state-owned enterprise . he now hand-makes swords in rural china that sell for up to # 22,000 each . the blades are highly sought after by international collectors from canada . the technique dates back 2,000 years to the han dynasty .\ndavid cameron is set to announce a massive extension of the right-to-buy scheme . he will pledge discounts of up to 70 per cent on housing association properties . subsidy will be funded by forcing councils to sell off most expensive properties . prime minister will call the tories ` the party of working people '\nlingerie retailer frederick 's of hollywood has shut down all of its brick-and-mortar locations and is now exclusively an e-commerce brand . the company has been struggling to keep up with victoria 's secret and has closed 94 of its stores . founder frederick mellinger opened the pinup-inspired lingerie brand 's first store in los angeles in 1947 .\nkim kardashian wrote in an op-ed in time magazine that she was ` very disappointed ' that president obama had not used the word ` genocide ' the reality star has used her celebrity to bring awareness to the genocide . obama sent an administration official to armenia to mark the 100th anniversary of the 1915 massacre by ottoman turks . but he refused to call the mass killings a ` gen genocide ' for fear of offending ally turkey .\nanti-vaccinations lobby group posted image to facebook on thursday . the image shows a man holding a woman with his hand over her mouth . the tag line on the image read , ` forced penetration . really - no big deal , if it 's just a vaccination needle and he 's a doctor . do you really `` need '' control over over your own choices ? ' the image was posted in response to tough new laws announced by social services minister scott morrison earlier in april . the australian vaccination skeptics network has previously used the metaphor of rape to oppose vaccinations .\nrobert durst , 71 , appeared in new orleans court accused of illegal gun possession . his lawyers accused police of searching his hotel room without proper arrest warrant . judge raged at lawyers for being unprepared and delayed the hearing . two fbi agents and a state trooper ignored subpoenas and could face contempt of court charges . durst was arrested on march 14 and is awaiting extradition to california to face murder charges in the 2000 murder of his longtime friend susan berman .\n`` the breakfast club '' was filmed in maine township high school district 207 . a draft script of the 1985 teen classic has just been found in a filing cabinet . the manuscript sports the approval signature of the district 's then-superintendent . the movie was filmed at the maine north high school building , which was auctioned off .\ndr sahar hussain , 53 , was unable to get through the gates at leicester square . she screamed at staff and grabbed a ticket seller by the arms . she denied assault , saying she was worried about being stranded . but she was found guilty and ordered to pay a total of # 2,250 in fines .\nparis saint-germain face barcelona in the champions league on tuesday . zlatan ibrahimovic is available for selection after being suspended . marco verratti has heaped praise on his team-mate ibrahimovic . the italian midfielder believes the swede plays an ` essential ' role .\njamie silvonek , 14 , and army spc caleb barnes , 20 , have been charged with killing her mother , cheryl silv onek , 54 . cheryl silvonek was stabbed to death in her car after taking her daughter and barnes to a concert . jamie silvonek was charged as an adult with homicide and criminal conspiracy . barnes was previously charged with homicide . cheryl and jamie silv onek met in october when she was 13 but she told him she was 17 .\nreal madrid and barcelona are through to the champions league semi-finals . cristiano ronaldo and lionel messi have both scored eight goals in europe . but shakhtar donetsk 's luiz adriano has netted nine times this season . arsenal and liverpool are interested in signing the brazilian .\nthird annual football shirt friday kicked off in april . fans asked to don a football shirt in memory of bobby moore . moore died from bowel and liver cancer on february 4 , 1993 . bianca westwood , rob lee and clare balding among those showing support . the bobby moore fund for cancer research uk .\nkeonna thomas , 30 , was arrested at her home in philadelphia friday and charged with providing material aid to terrorists . authorities said she had been communicating with an islamic state group fighter in syria who asked if she wanted to be part of a martyrdom operation . she also actively spoke of her desires on a twitter account that has since been removed . thomas ' arrest comes a day after two women were arrested in new york in another home-grown terror case . they are accused of plotting to wage jihad by building a homemade bomb and using it for an attack like the 2013 boston marathon bombings .\nasian-american rock band the slants can not trademark the name . because it is disparaging , an appeals court ruled on monday . the decision by the u.s. court of appeals for the federal circuit rejected the band 's argument that the government 's refusal to grant a trademark violated its free speech rights . the ruling could have implications for the high-profile fight over whether the national football league 's washington redskins should lose its trademarks .\nsnp could win as many as 50 mps in scotland - allowing mr miliband to become prime minister even if he falls far short of a majority . comments came as labour slipped four points behind the tories in the latest polls . but snp leader nicola sturgeon said she would form anti-tory alliance with labour and other smaller parties .\nmichael vaughan is among the early frontrunners for the new role . paul downton lost his job as the england and wales cricket board 's managing director of cricket on wednesday . the job title was also scrapped . former england captain vaughan says he is open to a conversation with the ecb .\na nasa astrophysicist has named an asteroid after the pakistani education activist . amy mainzer discovered the asteroid in 2010 and gave it the name 316201 malala . malala yousafzai was wounded by a pakistani taliban gunman for promoting girls ' right to go to school .\ntottenham hotspur 's torpedo moscow fans displayed a nazi flag . torpedos beat arsenal tula 3-1 on sunday in the russian premier league . torpingo fans will be barred from the club 's next three away games . club already banned from playing two home games behind closed doors . club have already been punished for monkey chants against zenit st petersburg 's hulk .\nprize money at the french open has been increased by three million euros . singles champions will each receive 1.8 m euros -lrb- # 1.3 m -rrb- rafael nadal and maria sharapova won # 1.8 million last year . the tournament , held at roland garros , begins on may 24 .\nthe models were pictured holding hands at a launch event for popular magazine at siren studios in hollywood , california , on tuesday night . winnie suffers from vitiligo , the same rare skin condition that singer michael jackson was diagnosed with . shaun has appeared in campaigns for the likes of alexander mcqueen and givenchy .\nthe supreme court will hear arguments on tuesday over the right to same-sex marriage . the court has ruled in favor of gay marriage in the past but has not ruled on the issue of same - sex marriage nationwide . the case before the court is an appeal of a decision by a regional appeals court that went the opposite way . public opinion polls over the last decade have shown large increases in support for gay . marriage . a ruling is due by the end of june .\ngroup photo taken in apo island , negros oriental , philippines . adorable green sea turtle crashed the group photo . turtle is an endangered species and rarely seen in shallow water . traveller diovani de jesus posted the photo on earth day . he said it was a reminder that humans and creatures can co-exist .\npatient at royal victoria hospital , belfast , being tested for suspected rabies . public health agency said they had recently travelled in area affected by the disease . results of the ` complex ' series of tests are not expected to be known until next week . lisa mcmurray died at the same belfast hospital in 2009 after contracting rabies while working at an animal sanctuary in south africa .\ngame of thrones is set to return with its fifth series on hbo this summer . the hit programme has already filmed in croatia , iceland and northern ireland . to celebrate , travel service zicasso is offering a luxury tour of southern spain . the seven-night tour kicks off in madrid before heading further south . from seville , fans will head to the town of osuna , specifically to take in the city 's impressive bullring .\nmike tindall 's horse monbeg dude finished third in the grand national . the former england rugby captain was at aintree to watch the race . monbeg dude won # 88,400 in prize money . many clouds and aspell won the race at aintsree .\nthe supreme court will hear oral arguments tuesday on same-sex marriage . chief justice john roberts has a solid conservative record . he dissented in a case that struck down a key provision of the defense of marriage act . some conservatives hope he will vote to uphold state bans on same sex marriage .\nchristian eriksen was spotted smooching with girlfriend sabrina kvist jensen in central london . the danish midfielder has not scored since january . eriksen has been with kvists for almost three years . tottenham beat aston villa 1-0 at white hart lane on saturday .\ngastrointestinal illness has gripped 100 people on the celebrity infinity . of the ship 's 2,117 passengers , 95 have suffered from vomiting , diarrhea and other symptoms . the illness has also affected five members of the 964-person crew . the cdc has yet to determine what 's causing the ailments .\nfive young men are arrested in melbourne , australia , in what police call a major counterterrorism operation . three of the teens have since been released `` pending further enquiries , '' but two remain in custody . the suspects planned to attack during a major national commemoration in a week , prime minister tony abbott says .\ninverness beat celtic 3-2 in extra time to reach the scottish cup final . david raven scored the winner with four minutes left on the clock . the 30-year-old defender hailed the win as a ` dream come true ' inverness will face falkirk in the final at hampden park on sunday .\nresearchers found evidence that neanderthals lived in a cave 200,000 years ago . they lived alongside predators including cave bears , hyenas and leopards . the remains of badgers were also found in the cave in spain . archaeologists also found evidence of neanderthal camps near the cave .\ngeraldine schultz , 67 , was killed when tornado struck her home in fairdale , illinois . image showed her alongside husband clem schultz , 84 , and was taken in 1980 . it was found in harvard , 35 miles away , after being blown there by the storm .\nrobert dellinger , 54 , pleaded guilty in february to negligent homicide in the deaths of amanda murphy , 24 , and jason timmons , 29 . he told investigators he was trying to kill himself on december 7 , 2013 , when he steered his pickup across a highway median in lebanon , new hampshire . the former executive at ppg industries inc told the court he has ` never been suicidal . ' he faces 12 to 24 years in prison when sentencing resumes thursday . his wife described him as a ` man of ethics , integrity and friendship '\nscientists have found that yellowstone 's magma reserves are many magnitudes greater than previously thought . underneath the national park 's attractions and walking paths is enough hot rock to fill the grand canyon nearly 14 times over . an eruption in the next few thousand years is extremely unlikely , the usgs says .\npastor dr george hamilton said death was ` motivated by racial discrimination ' he also called officer michael slager a ` disgrace ' to the north charleston police department . hundreds of mourners attended service for walter scott , 50 , in south carolina . scott was shot dead by slager after a traffic stop on april 4 . scott 's mother judy scott was among the mourners at the service today .\nfrenchman louis smith has been named in the squad for the european championships in montpellier . the pommel horse champion won a silver and bronze medal at london 2012 . smith will represent great britain for the first time since his double olympic medal-winning performance at london .\nmichelle obama and `` so you think you can dance '' all-stars dance at easter egg roll . `` star wars '' is back on streaming , and james corden puts on `` grease '' for traffic . `` dukes of hazzard '' fans mourn the loss of actor james best .\nbarcelona host celta vigo in la liga on sunday afternoon . lionel messi is doubtful after suffering a foot injury against real madrid . the argentina forward did n't feature in either of his country 's friendlies . gerard pique is optimistic messi will be fit to play .\nthree 's feel at home covers 18 destinations in europe , australia , the united states , asia and the middle east . customers can call and text uk numbers and use data in some countries at no extra cost . but to call or text non-uk numbers , you will be charged extra , at roaming rates .\nze maria has been sacked by romanian club ceahlaul piatra neamt . the former brazil defender was fired on wednesday after a poor run . he was reinstated the next day but lost his job again on saturday . he will be replaced by serbian vanya radinovic .\naustralian ashley johnston was killed fighting with kurdish forces in syria . his mother amanda did not know her son was fighting in the middle east until she heard of his death . the 28-year-old 's body was brought back to canberra last week . his funeral was held in macquarie park , sydney , on thursday . mr johnston is believed to be the first westerner to die in battle against is .\nmillie marotta , 36 , took eight months to complete her colouring book . animal kingdom has sold 500,000 copies worldwide . the book is at the top of amazon 's top 100 books list . millie has had clients including virgin atlantic , penguin and marks & spencer .\nguests at waterloo 200 service told not to act in a ` triumphalist ' way . invitations to st paul 's cathedral event advise that it will avoid glorifying victory . instead , service will focus on ` pan-european ' implications of the battle . move criticised by politicians who said it ` took political correctness to an absurd new degree '\npsg have held initial talks with dinamo kiev about signing yarmolenko . the ukraine winger is represented by mino raiola . yarmolevko has scored five goals in 10 games for kiev this season . psg have been warned off signing manchester united 's angel di maria . the french giants are also interested in juventus midfielder paul pogba .\ned balls repeatedly refused to match tories ' election pledge to increase nhs spending by # 8billion a year . shadow chancellor said he would not make ` unfunded and uncosted commitments ' after promising to cut deficit every year . comes after david cameron pledged to give nhs whatever it needed - but refused to say how he will find the money .\norange is the new black is one of netflix 's flagship shows . the cable tv company will screen every episode in a marathon . it will then offer the entire season on an on-demand basis . the third season of the prison drama premieres on netflix on june 12 .\ndouglas bader lost his legs in a flying accident in 1931 and ended up in a german prison camp in warburg . it was there that he was involved in a mass break-out that pre-dated the break in 1944 immortalised in the great escape starring steve mcqueen and richard attenborough . the plot involved build folding ladders to escape over the wire . bader described it as ` the most brilliant escape conception of this war '\npeter ustinov bought the aston martin db4 cabriolet in 1962 after winning an oscar . it was delivered to him at a swiss hotel at a time when the average house price in britain was just # 2,500 . the car is expected to fetch # 1million when it goes up for auction at bonhams next month . that 's more than twice what it cost just four years ago when it was sold for # 431,200 .\nthe house in the sea is a secluded island off the coast of cornwall . it is connected by a 100ft suspension bridge , which stretches 90ft above the ground . the house is decorated in a new york style and has a bar . the island can be booked in advance for up to six guests . prices start at # 3,000 per couple for a week 's stay .\nthe court of arbitration for sport has lifted morocco 's ban from the next two editions of the african cup of nations . the north-african nation was expelled from the 2017 and 2019 tournaments and was fined $ 1 million by the caf . morocco pulled out as hosts of the 2015 tournament because of fears related to the ebola epidemic .\nsamantha cameron has revealed her love of alternative group poliça . the american band are inspired by a radical feminist who described pregnancy as ` barbaric ' their songs feature violent imagery and include the lyric ' i dream of you , oh my strangler '\ndave king is the latest ibrox director to be ousted by the club . the south african businessman wants to return to the board . sfa chief stewart regan says king must prove he is ` fit and proper ' to be chairman . rangers have been fined # 5,500 for breaking sfa disciplinary rules .\njackson byrnes , 18 , has flown from lismore in northern new south wales to sydney to be operated on by renowned neurosurgeon dr charlie teo . the teenager was diagnosed with a stage four brain tumour three weeks ago . his family and friends have been desperately trying to raise $ 80,000 needed to pay the hospital upfront for the risky surgery . on monday morning they reached the target on their gofundme page , but jackson 's mother says the family needs an additional $ 45,000 to cover chemotherapy and other hospital fees .\nkamron taylor was convicted of murder in february , but he 's still on the lam . he attacked a guard , put on his uniform and drove off in the officer 's car , authorities say . the officer is in an intensive care unit ; authorities are looking for taylor .\narsenal beat reading 2-1 in the fa cup semi-final second leg . alexis sanchez and jack mccleary scored for the gunners . adam federici made an embarrassing error in extra time for reading . the goalkeeper failed to collect sanchez 's shot properly in his grasp . the ball rolled through his legs and over the line in the 106th minute .\nkristina karo says she and mila kunis were ` inseparable ' in first grade . claims kunis , 31 , was jealous of her pet chicken ` doggie ' and stole it 25 years ago . karo claims kunis confessed to the crime and told her ` kristina , you can have any other chicken as a pet ' she is now suing kunis for $ 5,000 for emotional distress and to cover her therapy bills .\nworker spotted jet washing roof of a home in greenwich , south east london . he was spotted on the roof with a power washer and seemed to have a rope tied around his waist . health and safety executive visited the property and served a prohibition notice . building expert said the man should have at least had scaffolding up at the front of the property .\nfalkirk beat hibernian 1-0 in the scottish cup semi-final at hampden park . craig sibbald scored the only goal of the game in the 74th minute . the bairns will face either inverness or celtic in the final on may 30 .\naston villa take on liverpool in the fa cup semi-final on sunday . tim sherwood wants to cause a shock for the reds at wembley . the villa boss has been a fan of raheem sterling since he was 14 . sherwood also hopes to stop steven gerrard from celebrating his birthday on may 30 .\nprosecutors have revealed details of the year-long probe into rifaat al-assad . the 77-year-old went into exile after staging a failed coup in 1984 . he has since spent more than 30 years living a life of luxury in europe . activists say he stole money from syria while operating at its heart . but his son says he has received funds from ` states , leaders and friends abroad '\neuropean commission investigating coffee giant 's tax practices . starbucks ran european division through the netherlands , including uk . paid just # 1.9 million in tax to dutch government , from a reported # 300million profit . now claims it may have used british company to put hefty sums into uk .\nandrew getty 's death `` appears to be natural -lrb- causes -rrb- or an accident , '' coroner 's office says . ann and gordon getty ask that the media and the public respect their privacy . the 47-year-old grandson of j. paul getty died tuesday afternoon in his home in los angeles .\nkevin pietersen scored 170 for surrey in his first game of the season . the former england captain scored just 19 against glamorgan on sunday . mike gatting believes pietersen should not be allowed to return to international cricket . gatting says alastair cook 's future will be decided after the west indies series . the england captain is yet to score a test century in 33 innings .\nrhiannon taylor , 29 , has turned her instagram success into a business . she reviews hotels , pools and room service on her in bed with website . the photographer has more than 12,000 followers on instagram . she has travelled the world to review and photograph the best hotels .\nbianca gascoigne , 28 , was mugged by a gang on bikes in central london . the gang of eight grabbed her phone and tried to steal her bag . but they ran away when she fought back and the phone was stolen . it reportedly contained private texts from her father paul gascoigna .\nyoko ono led tributes to john lennon 's first wife cynthia . she said she was ` very saddened ' by the news of her death at the age of 75 . cynthia , who married lennon in 1962 , died at her home in spain yesterday . she had been battling cancer and her family said she died after a ` short but brave ' battle with the disease .\nisis took thousands of yazidis captive . men faced a choice -- convert to islam or be shot . but the islamist militants separated the young women and girls to be sold as sex slaves . isis : enslaving , having sex with ` unbelieving ' women , girls is ok .\nslovenia goalkeeper jan oblak has been atletico madrid 's best player this season . the 22-year-old has been in superb form since joining from benfica . he is a big fan of diego simeone and iker casillas . sportsmail looks at the slovenian 's future at the club .\na 23-month-old girl in died after her father struck her with a pickup truck . the father , 24 , and other family members inside did not know that the toddler , who later died at university medical hospital , had gotten out of the house and on to the driveway . the incident was deemed an accident and no charges will be filed .\nal rayyan stadium is set to be completed in the early months of 2019 . the 40,000-seater ground is inspired by sand dunes and its design has been produced by uk-based architecture firms ramboll and pattern . fans will sit in a comfortable 24-28 degrees celsius , while paths and walkways leading to the stadium will also be cooled . the stadium is expected to host matches up to the quarter-final stage of the world cup in qatar in 2022 .\nthe tsa is to ` enhance ' officer training for hair pat-downs . new training will commence at los angeles international airport . aclu filed a complaint claiming african-american women were being racially targeted for unnecessary screenings . tsa said the re-training will stress ` race neutrality '\ndigby the chihuahua was found cowering between two bins in london . he was rescued by the rspca and taken to a centre in hertfordshire . there he has become inseparable from 9st mastiff nero , 120 times his size .\nthe converted four-bedroom home on lawrenny court , with its bronzed clock tower and cherry wood doors , was built as a garage to service the generous 57-room mansion homeden . the conversion took place at the same time homeden was being tuned into a block of flats . the house will be opened to prospective buyers on 22 april and is set to go under the hammer on 16 may .\nworld no 2 roger federer posted a picture of himself on twitter . the 33-year-old posed with a snowball and his racket . federer opted not to appear at the miami open this year . the swiss star is looking to maintain his fitness . federers agent tony godsick said he was ` unfortunate ' to miss the event .\nbrits get more sleep than most other nations - seven hours 22 minutes a night . but we do n't feel as refreshed in the morning , according to sleep cycle app . only japanese , south koreans and singaporeans are moodier when day breaks . people in these three countries have an excuse - they spend less time in bed .\nmanchester united striker radamel falcao was handed his first start of the season . the colombian forward was schooled by chelsea captain john terry . eden hazard scored the opening goal of the game in the 38th minute . falcova has failed to score in his last five premier league games .\nrobert bates pleads not guilty to second-degree manslaughter . the judge grants him permission to go to the bahamas for a family vacation . the family of eric harris says the decision sends a message of apathy . bates claims he meant to stun harris with a taser after he fled from officers .\nliverpool forward raheem sterling has been offered # 100,000-a-week contract . sterling has refused to sign a new deal at anfield . pfa chief gordon taylor has defended the 20-year-old 's decision . taylor said sterling is not being disloyal to liverpool by putting talks on hold until the summer .\na formula one fan was arrested after he ran across the track during practice for the chinese grand prix . the man scaled the grandstand on the start-finish straight before running across the start and finish line . he then climbed the pit wall and walked into the ferrari garage . the local man shouted : ' i want a car . i have got a ticket '\ncollege student was caught drinking at texas-based country music festival chilifest last weekend . three officers are believed to have busted her for underage drinking , before challenging her to a game of rock paper scissors . the unidentified girl won the game , and was left speechless with relief . a video of the incident was posted on social media site vine , and has since been viewed more than 500,000 times .\nbarcelona beat celta vigo 1-0 to go top of la liga on sunday . neymar , dani alves and adriano posted pictures on instagram following the win . jeremy mathieu scored the winning goal for barcelona in the 73rd minute . the frenchman blames the international break for his side 's poor display .\none nation leader pauline hanson defended the anti-islam protests on sunday . she said that imposing halal certification on australians was wrong . ms hanson described halal as a ` profit , money-making racket ' she also said that the protests on saturday were about ` criticism , not racism ' her comments came after protesters clashed with anti-racist activists in sydney and melbourne on saturday .\nsam allardyce has not been up to scratch at west ham . the hammers are currently bottom of the premier league . rafael benitez could be persuaded to take over at the olympic stadium . west ham face arsenal at the olympic stadium on saturday .\nunited arab emirates plan to bid for 2021 rugby league world cup . government keen to boost nation 's international profile . rugby league international federation board seeking expressions of interest by the first quarter of 2015 . bids for 16th rugby league world cup expected to be named in october 2016 . australia and new zealand won 2013 world cup in great britain .\nmaureen baker wanted to walk in front of a car at the scene of her child 's death . robert blackwell , 19 , smoked cannabis the day before the crash in witney . he was jailed for four years after admitting causing death by dangerous driving . family say they are ` devastated ' by the sentence handed to him . liberty 's 11-year-old brother finley said learning of her death was ` the worst day '\nvolunteers are burning bodies of victims of saturday 's earthquake . mass cremations have been taking place next to bagmati river , which divides kathmandu . hundreds of bodies were burned in ghats beside the river today , with families wailing in grief . the wood necessary to build the thousands of pyres which are used to burn the dead has started to run out .\nsaudi special forces are helping yemeni fighters , a source says . houthi rebels withdraw from presidential palace , other parts of aden , source says , citing saudi airstrikes . two saudi border guards are killed in cross-boundary fire exchange with houthi militants . u.s. navy warships are patrolling off yemen in search of suspicious shipping .\nmicrosoft founder paul allen has created a new company , vulcan aerospace . this will look after the space programs of stratolaunch systems . the company will launch satellites and people from the world 's biggest plane . the plane will climb to 30,000 feet and launch a rocket at high altitude . this avoids the huge fuel costs of launching from earth . the stratolauncher aircraft will be powered by six 747-class engines . it is currently being assembled at mojave , california . the first launch of the space launch vehicle is likely to take place in 2018 .\nbarcelona beat psg 3-1 in the champions league quarter-final first leg . andres iniesta was substituted after a clash with javier pastore . tests on thursday confirmed iniesta suffered a bruised pelvis . the spain international could miss saturday 's la liga game at home to valencia .\nnewly-built ` dream homes ' in huddersfield , west yorkshire , are ` more like hell ' residents have reported flooding , 2ft holes and damp in their homes . they are calling on harron homes to resolve their 11-month ordeal . neighbours have also reported issues with drains , streetlights and loose fence panels .\nformer police officer darren stanton is the uk 's top human leading human lie detector . appeared on itv 's this morning to show off his skills . he caught philip schofield and amanda holden fibbing . also caught cheating husband for lying about an affair . says it 's a myth that a liar ca n't look you in the eye .\nscientists at stanford university in california have created super-strong robots . the nine-gram robots can haul more than a kilogram up a vertical wall . another robot created by the scientists - nicknamed μtug - weighs just 12 grams and can drag a weight up to 2000 times heavier . they could be used in emergencies , in factories or on construction sites in the future .\nsan francisco-based author david fitzgerald says there is no evidence jesus ever existed . claims there are no contemporary mentions of jesus in historical accounts . yet other jewish sect leaders from the time do appear . he also points to discrepancies in the early gospels of mark , matthew and luke . mr fitzgerald says the figure of jesus was actually a combination of pagan rituals and stories about other people .\nwayne rooney has been playing in an attacking role for louis van gaal . rio ferdinand believes that rooney 's return to that position has helped united . ferdinand also praised the return of michael carrick and ander herrera . manchester united face manchester city in the premier league on sunday .\na boy aged 14 and a girl of 16 have been arrested on suspicion of preparing acts of terrorism . boy held in blackburn after police examined a number of electronic devices and raided a house in the town on thursday . girl arrested after police raided a home in longsight , manchester , on friday . both were bailed until may 28 .\nfamilies in the uk more indebted than those in other major developed nations . this is mainly due to borrowing to buy expensive homes . uk singled out as having problem with household debt , along with portugal . imf report lumped britain together with country that was forced to seek emergency funding during eurozone crisis .\njake boys surprised his partner emily canham , 18 , with tickets to cardiff . but the 19-year-old from hailsham , east sussex , thought the welsh capital was in ireland . he booked plane tickets to dublin instead of cardiff , where the band will play . mr boys is now planning to buy a new pair of train tickets to the gig .\nrobert butler , 43 , was transported inside a shipping container from bannister house in providence , rhode island to the eleanor slater hospital in cranston . he was accompanied by his medical team . the operation took almost seven hours on sunday and involved the providence and cranston fire departments . in 2006 , mr butler , who is on permanent disability , said his bed was broken and he was not receiving proper care .\nheidi bretscher , 28 , was running the rock n ' roll raleigh marathon with two cyclists when she got lost . she was so far ahead of the pack it was n't clear which way to go . she ended up running around a lake that was n't even on the course . she found a police officer who gave her a ride back to mile 17 . a second police officer agreed to whisk her to mile 22 , just four miles from the finish line . she still managed to finish the race nine minutes ahead of her closest rival .\na shocking video has been released showing four tourists catching a bronzer shark in new zealand . the men are filmed dragging the thrashing creature in to shore and then pose for photos with the creature . the activity is completely legal in new zealander and has become a competitive sport .\nmother reveals how her son fell from a second floor window . james krainch was 22 months old when he died in las vegas . his mother michelle newman said she heard a ` pop ' and saw his heels . she said she hopes her story will make other parents safety proof their homes . she recently visited james ' grave to mark the ninth anniversary of his death .\nrachelle friedman fell into a pool at her bachelorette party in 2010 and was instantly paralyzed from the neck down . she is able to conceive and carry a child but her blood pressure is too low . she and her husband chris started looking into surrogacy and a friend from college , laurel humes , offered to be their surrogate . the baby will be born on april 18 . the couple have built a wheelchair-friendly crib and turned chris 's man cave into a nursery . the name of the baby is still a secret .\ncharles kane , 46 , was arrested thursday as he met up with a 14-year-old girl for sex . he had been communicating with the girl online for months after posting a craigslist ad seeking a daddy/daughter relationship . he was arrested when he arrived at the theater with a full box of condoms as the young girl was in fact an undercover police officer . kane has been charged with enticement of a minor to engage in sexual activity and faces up to 10 years in prison and a $ 250,000 fine if convicted .\nrafael nadal beat lucas pouille 6-2 , 6-1 in the monte carlo masters . the world no 5 is an eight-time champion at the tournament . nadal will face either john isner or viktor troicki in the third round .\njade walters was shocked to discover her pet horse was sold at auction for # 200 . the 21-year-old had loaned out her horse magic to a family to help them learn to ride . but she was unaware the family had sold the animal to another family . magic 's fate has sparked fury in the equestrian community and an appeal for his whereabouts has been shared 58,000 times on social media sites .\nchelsea beat stoke city 2-1 in their premier league clash at stamford bridge . diego costa came on at half-time but limped off with a hamstring injury . blues boss jose mourinho was happy to gamble with costa 's fitness . loic remy and eden hazard were both impressive in the win .\nthree gunmen stormed corinthians ' fan group pavilhao 9 in sao paulo . they ordered victims to lie face down and shot seven in the head . an eighth man was shot but tried to escape and died in hospital . police say that the killings are not related to any football rivalry . the club was founded by corinthians fans who played football with inmates at brazil 's carandiru prison .\n8,000 women in their 70s are diagnosed and treated for breast cancer . more are diagnosed at a younger age - 12,800 in their 60s and 10,600 in their 50s . more than half of the 12,000 who die from breast cancer every year are over 70 . mps are warning that women will die as a result of the screening age limit .\ncnn is granted rare access to sanaa airport in yemen on a desperate aid mission by unicef . the airport has been bombed and is under the control of the houthi rebels . the u.n. estimates that 15.9 million people are in need of assistance in yemen .\nspending on foreign aid is set to increase by an extra # 1billion over the next two years because of new eu rules . britain has now met the controversial target to spend 0.7 per cent of national income on overseas aid , but new eu accounting rules are being brought in .\nsecond lib dem parliamentary candidate to reveal they are hiv positive . paul childs , 34 , is running in the liverpool riverside seat . he burst into tears when he was diagnosed with the virus in 2011 . mr childs said he was infuriated by nigel farage 's ` scaremongering ' over foreigners who have the condition . ukip leader attacked high cost of health service treatment for foreigners with hiv in tv debate .\njesse and melissa meek made a rap video set to the theme from '90s television sitcom ` the fresh prince of bel-air ' the clip has been viewed over 1.7 million times on youtube . the original song for the popular nbc sitcom , sung by star will smith , details how his character grew up in west philadelphia .\njason denayer has been impressive for celtic on loan this season . former celtic captain tom boyd believes he could challenge for a place at manchester city next season . the 19-year-old recently won his first international cap for belgium . denayer will hope to join vincent kompany in city 's first-team squad .\nparis saint-germain 's zoumana camara turns 36 on friday . psg team-mates david luiz and ezequiel lavezzi set up a prank on him . the duo dunked the defender 's face into his birthday cake . the french champions face marseille in ligue 1 on sunday .\na youtube user has demonstrated the easiest way to peel an egg . the method involves filling a glass with tap water and shaking it . after ten seconds of shaking , the egg is lifted up and peeled . the 28-second video has been viewed over 16million times . micahmedia is now planning to try the method on six eggs .\nnicola sturgeon has said she is prepared to work with labour to put ed miliband in no 10 . snp leader has refused to work with the conservatives under any circumstances . but she has held out the possibility of putting mr miliband into power . snp is projected to win more than 40 seats in scotland at the election .\nleo grand launched his app trees for cars in august 2013 . he was mentored by patrick mcconlogue , who offered him $ 100 on the spot or daily coding lessons . grand picked the latter and was provided with a laptop , coding books , a solar charger and office space . but trees for cars is no longer available , and grand is still homeless . he said he only made $ 10,000 to 15,000 with trees forcars .\nfootball manager simulated a premier league all-star game . the southern all-stars came out on top with two goals from alexis sanchez and harry kane . the northern all-stars were led by sergio aguero and wayne rooney . the north created three clear-cut chances but failed to convert them . arsenal 's sanchez is the stand-out in football manager 's player ratings .\norlando city manager adrian heath is a former everton and manchester city midfielder . heath is now manager of the newest mls team orlando city . the 53-year-old has been in the us for eight years . he believes the mls will be world 's ` third or fourth biggest league '\nwilliam kerr , 53 , was released on licence in january after 17 years in jail . he is believed to have travelled to london after disappearing from hull premises . kerr was jailed for the murder of maureen comfort , who was found dead in 1996 . police have described him as a ` very dangerous man ' and said he must return to prison .\nscientists believe the first complex conversation between humans took place around 50,000 to 100,000 years ago . much of it involved cavemen grunting , or hunter-gatherers mumbling and pointing . but shigeru miyagawa , from massachusetts institute of technology , says language developed rapidly . he says single words bear traces of syntax showing they must be descended from an older , syntax-laden system , rather than from simple , primal utterances .\nkaren danczuk told lbc 's nick ferrari she aspired to be an mp . the 31-year-old said she could relate to ordinary women unlike politicians . she said parliament needed people like her ` to bring it back down to reality ' mrs danczuk revealed earlier this year that she had suffered sexual abuse .\nuniversity of houston said in a statement tuesday that it was paying mcconaughey speaking fees totaling $ 135,000 plus travel expenses , as well as a $ 20,250 commission to the celebrity talent international booking agency engaged by the university . the university initially balked at revealing mcconaughhey 's fee , citing a confidentiality agreement with the booking agency . however , the university says its business with the agency is now finished . meanwhile , the statement says mcconaghue is donating his fees to his jk livin foundation , which the actor started to help high school students lead active lives .\nemma hannigan , 42 , had her breasts and ovaries removed in 2006 . she was diagnosed with the faulty brca1 gene , which increases risk of cancer . the mother-of-two opted to have a double mastectomy and oophorectomy . but a year after the surgery , she was told she had breast cancer . since 2007 , she has battled the disease nine times , including four bouts in one year . she is now undergoing chemotherapy as specialists try to keep the disease at bay .\nnew york yankees host baltimore orioles in opening day game . alex rodriguez returns to the yankees line-up after 162-game suspension . tampa bay rays designated hitter john jaso suffers wrist injury . atlanta braves trade craig kimbrel to san diego padres for melvin upton jr. . seattle mariners beat los angeles angels in opening game .\nphilippe coutinho opened the scoring for liverpool against aston villa . christian benteke equalised for the visitors before fabian delph scored . liverpool lost 2-1 at wembley and will now face southampton in the final . brendan rodgers ' side are currently fourth in the premier league .\njohn t. booker jr. of topeka , an american citizen , enlisted in the army last year . he posted on facebook about `` the adrenaline rush '' of dying in jihad . booker was arrested friday and charged with trying to detonate a car bomb at fort riley . a second man , who allegedly knew about the bomb plot but did n't call authorities , was charged with failing to report a felony .\nindiana has seen a ` significant increase ' in the number of cases of hiv more than two weeks into a short-term needle exchange program approved by gov. mike pence . there are now 120 confirmed hiv cases and 10 preliminary positive cases tied to scott county , about 30 miles north of louisville , kentucky . that 's up from 106 last week . the growing number could put pressure on pence to extend the 30-day needle exchange program that he approved on march 26 .\nthe wicked waffle in north end , portsmouth , is on sale for # 25 . diners who clear their plate within 45 minutes are awarded a free meal . the dessert contains four 7-inch wide waffles , 12 scoops of thick ice-cream , four chocolate flakes and a giant portion of whipped cream . only two people have managed to finish the unhealthy treat .\nnac breda manager robert maaskant was furious after his side gave up a two-goal lead against fc dordrecht . the 46-year-old smashes his fist through the plastic casing of the dugout . nac are currently rooted to the bottom of the eredivisie .\nfrankie gavin is set to be handed a shot at kell brook 's ibf welterweight world title . talks have been held between the parties and an agreement has not yet been finalised . sportsmail understands an announcement could be made as early as friday .\nlloyd byfield , 48 , pursued relationship with leighann duffy , 26 . he burst into her flat in walthamstow , east london , and stabbed her . her six-year-old daughter tried to intervene but was also stabbed in the arm . byfield was sentenced to life with a minimum term of 26-and-a-half years . judge nicholas cooke said he may never be released from prison .\na dozen native american extras and the cultural adviser walked off the set of adam sandler 's new movie the ridiculous 6 on wednesday . the extras were upset about the script 's jokes about their race and culture . the film stars sandler , taylor lautner , nick nolte and steve buscemi . the cultural adviser for the movie , which is filming in new mexico , also walked off . the ridiulous 6 is a spoof of the magnificent seven that stars sandlers and was written by sandler .\njoshua sweet , 20 , admitted burglary and sexual assault at birmingham crown court . judge mary stacey admitted the victim had been ` scarred psychologically ' by the case . but sweet was freed after serving just two months on remand and given a three-year community order . victim support charity worker said that ` victims deserve justice ' after the ordeal .\nvideo captured by william bird while out with his stepson alex. shows # 126million jets approaching raf lossiemouth in moray , scotland . first of the aircraft blasted them with thrust from its engines . as second jet disappeared from view , video camera was knocked sideways . video taken on same day typhoons deployed by royal air force .\nsix men of somali descent were arrested over the weekend . they are accused of trying to travel to syria to join isis . four of the men have been charged with conspiracy to support a foreign terrorist organization and with attempting to support the terrorist organization . the men 's families claim they were set up by a former friend . the informant , who once planned to travel himself , has been paid $ 13,000 for tip-offs .\ntexas couple hired attorney cathy hale to sue james evans the owner of premiere photos for allegedly providing a photo booth that printed ` poor n ***** party ' on the bottom of the pictures . the couple was n't alerted of the photos until many months after the celebration when the bride 's sister told the family about the racist incident . the groom claims evans did n't even apologize and told the couple to ` sue ' him .\norganisations have been barred from using the anzac brand . the department of veteran affairs has received 384 applications in 12 months . out of these , 80 per cent have been approved to use the word anzac . forty-four items were rejected for a range of reasons , including it was too commercial or its name was inappropriate . the church used the brand to raise $ 10,000 for a new centre in auckland . woolworths caused controversy for overlaying its logo and ` fresh in our memories ' on photographs of war veterans .\nwonga 's revenues fell by nearly # 100million last year to # 217.2 million . firm has been hit by new rules on payday lending and a string of scandals . chairman andy haste says the company might change its name to regain credibility . wonga wrote off 300,000 debts and paid out # 20million in compensation over bogus legal letters .\nclaire sweeney has turned to hypnotherapist susan hepburn to help her shed two stone . the 44-year-old actress gave birth to son jaxton in september . she admits she has struggled to regain her pre-baby figure . hepburn famously helped lily allen slim form a size 14 to an 8 .\njoshua vaughan , 17 , died in january after being hit by a train in sheffield . he was last seen standing on a platform at chapeltown station on january 7 . minutes before his death , his girlfriend had sent his mother a message on facebook . she said the teen was on a station and that ` he was going to end it '\npete bennett won big brother in 2006 and was given # 100,000 prize money . he says he spent the money on drugs and now lives off charity . says fame on the show led to a dependency on class b drug ketamine . admits he is now homeless and spends each night sofa surfing .\nholly , 34 , and davina , 47 , star in first campaign together for garnier nutrisse . can be seen larking around with their hair pulled over their mouths to resemble a moustache . holly has also designed a range of vintage-inspired clothes for babies .\nlast week she was barely showing - but demelza poldark is now the proud mother to a baby daughter . within ten minutes of tomorrow night 's episode , fans will see aidan turner ' 's dashing ross poldarks gaze lovingly at his new baby daughter .\nsydney photographer jessica bialek has been found safe and well . she was last seen leaving her coogee home on wednesday morning . police launched an investigation into her disappearance after the public pulled together to help find her . the 37-year-old returned to her home on thursday evening . her husband sabino matera issued a heartfelt thank you to everyone who helped find his wife .\ntim sherwood 's side beat liverpool 2-1 in the fa cup semi-final on sunday . christian benteke and fabian delph scored to cancel out philippe coutinho 's opener . aston villa will face arsenal in the final at wembley on may 30 . tom cleverley has hailed sherwood for his attacking style at villa .\nchelsea clinton gave a candid interview to elle magazine about motherhood and why she thinks her mom should be the first female president of the us . clinton says that though the us is the ` land of equal opportunity , ' that is not true about gender , and a female president would change that . she also talks about life with daughter charlotte . clinton 's mother hillary is expected to formally announce her presidential campaign this sunday .\nadolf hitler later banned the absurdly camp woodland snap , calling it ` beneath one 's dignity ' rare archive photo , and several other portraits as comical as they are chilling , have been discovered in a hitler ` fan magazine ' from the thirties . a tattered copy of the magazine was found by a british soldier in a bombed german house after the war .\necb will use headhunters sport recruitment international to look for new director of cricket . michael vaughan , andrew strauss and alec stewart are among leading candidates . nigel farage spotted in tory heartland of halford hewitt golf tournament . roy hodgson launches roses 2015 , the annual clash between york and lancaster universities .\ntottenham striker harry kane has scored 19 league goals this season . eden hazard has been nominated for the award again after impressing for chelsea . thibaut courtois and david de gea have also been nominated . philippe coutinho has been liverpool 's standout performer this season .\narsenal take on reading in the fa cup semi-finals at wembley on saturday . the famous trophy was on show at alton towers theme park in staffordshire ahead of the clash . arsenal beat hull 3-2 in last year 's final to end a nine-year trophy drought .\nhouse in narrabeen , on sydney 's northern beaches , was damaged during this week 's storm in nsw . a tree stump on the hill prevented the house from falling further down , but authorities feared it was only a matter of time before it caused further damage to surrounding properties . a group of highly trained firefighters , police and engineers undertook the difficult task . the death toll of the super storm reached eight at it 's end with police confirming a woman 's body has been discovered in the hull of a car .\ncatherine gerhardt is an entrepreneur and founder of kidproof safety . she uses her experience to educate adults and children on how to deal with online ` flamers ' she teaches the children to follow ice : ignore , communicate and exit . ms gerhardt also advises adults and kids who witness others being ` flamed , ' to employ ` act '\nsilhan ozcelik , 18 , is accused of preparing to carry out a terrorist attack . the sixth-form student went missing from her family 's home in north london last october . she is accused of travelling to stuttgart to join kurdish rebels . the teenager was detained at stansted airport after returning from germany .\nfive men aged between 90 and 99 were awarded france 's highest honour . they are among the first of 2,800 living veterans to receive it . the men were honoured at a ceremony at the yorkshire air museum . the legion d'honneur is france 's most prestigious award .\ndavid cameron launches furious attack on labour mps ` bleating ' about poverty . prime minister said labour had left millions of people trapped on welfare . accused ed miliband and ed balls of having ` some brass neck ' by attacking the tories for failing the poor . said : ` do n't you dare lecture us on poverty '\nbali nine ringleader andrew chan has married his girlfriend febyanti herewila . according to a family friend of chan 's , the pair wed inside the chapel at besi prison on nusakambangan island on monday . this comes just months after the bali nineringleader proposed to his girlfriend while he was still at kerobokan prison . feby anti accepted his proposal , despite the fact that she knew he was condemned to death by indonesian president joko widodo . salvation army minister and family friend david soper officiated the wedding .\n28 of 700,000 babies born in uk in 2013 were given the name gary . that compares to 235 garys being born in 1996 , when name was 147th most popular . in 2013 , it did n't even make the top 1,000 . some blame shamed pop star gary glitter for name 's declining popularity . others suggest gary lineker or take that singer barlow .\nharewood arms in wakefield , west yorkshire , has publicly revealed support for ukip . pub is known for proudly flying the gay pride flag outside its premises . landlord matt eason wrote on facebook : ` we believe in a lot of the policies ukip stands for regarding the pub industry ' ukip is running a ` save the pub ' campaign in the run up to the election .\naustralian olympian jana pittman is believed to have given birth to her second child . the two-time world champion hurdler has been congratulated by the official australian olympic team 's twitter . pittman 's seven-year-old son cornelis is now the big brother of a little girl named emily . the 32-year old plans to compete in both the beijing world championships and the 2016 rio olympics . she was filmed training for the 2016 olympics the day before going into labour .\nbayern munich beat porto 6-1 in the champions league on wednesday . thiago alcantara scored a hat-trick in the win at the estadio mineirao . david moyes wanted to sign the midfielder but was n't keen on the deal . the spaniard was not the right fit for united 's passing style .\npolice officer michael slager is accused of shooting dead walter scott . slager 's wife jamie is due to give birth to their first child in a few weeks . but the baby will not be allowed to enter the south carolina prison . slagers is only granted video access to his wife and an officer stands outside .\ninuits in greenland would have entertained polite company in their settlements while wearing a thong made of seal fur . traditionally known as a ` naatsit ' , the underwear is adorned with beads and would have been sewn together by a woman using strips of seal pelt . it is currently on display at the national museum of denmark in copenhagen as part of its animal-skin clothing collection .\nitaly legend antonio di natale has described alexis sanchez as his best strike partner . di natale spent five years playing alongside sanchez at udinese . the 37-year-old says sanchez is better than neymar , who replaced him at barcelona . dinatale says sanchez 's work ethic is the secret behind his success .\nthe # 1.49 -lrb- $ 1.99 -rrb- ios app keeps a record of a user 's personal radiation . it uses a mathematical model developed by scientists and meteorologists . this includes exposure from changes in a person 's location and flights . trackyourdose app was developed by germany-based firm esooka .\nwest ham host manchester city at the etihad stadium on sunday . city had won their last five games against west ham - by an aggregate score of 14-1 . but the hammers inflicted their second league defeat of the season at upton park in october . winston reid says west ham no longer suffer from a fear of facing city .\ntrucker filmed launching foul-mouthed tirade at another motorist after crash . car towing a caravan moves into his lane and the two vehicles collide . car jackknifes , coming to rest across the front of the van , blocking the slip road . footage was posted on facebook and viewed 2million times in 48 hours .\ndoctors at lincoln county hospital covered up mistakes , coroner rules . thor dalhaug died an hour after birth following difficult delivery . coroner rules he suffered fatal brain damage due to doctor 's errors . he said junior surgeon tried to deliver baby using forceps in ` unorthodox ' way . coroners concluded senior managers tried to remove fact forceps was used from account of birth .\ntiger woods was 21 when he won the masters in 1997 . jordan spieth won his 79th masters title on sunday . the 21-year-old became the first man ever to reach 19 under par . spieth is the first american to win the tournament since woods in 1997 .\nmercedes benz fashion week australia kicked off on tuesday . punk fashion took to the runway at sydney 's carriageworks . khim hang , 22 , displayed a bold collection with brooding models . phoenix keating , alice mccall , zhivago and michael lo sordo also showcased punk . the collection featured fishnets , leather harnesses and colourful tattoos .\nliverpool beat blackburn rovers 1-0 in the fa cup quarter-finals at ewood park . philippe coutinho scored the only goal of the game to send liverpool through . jordan henderson provided the assist for the winner . the reds will face aston villa in the semi-finals on sunday at wembley .\na manhole cover flew more than 200 feet above a buffalo street in a blast that was captured by a television news photographer . the fire began around 11:30 a.m. sunday on tupper street in downtown buffalo , wgrz reported . police evacuated two buildings as smoke came out of manholes . a buffalo fire department official said the second of three explosions sent one of the manhole covers 200 to 300 feet into the air .\nikea 's new service , wedding online , allows couples to get virtually hitched . couples can choose from a range of ceremonies depending on their style . guests can watch the proceedings from all over the world via a webcam . the service is available on the company 's website and can be booked online .\nryan wray , 26 , was charged with second-degree felony forcible sexual abuse . wray was tasked with keeping safe women who ` could no longer take care of themselves ' at the off-campus frat house . he confessed to groping one victim while she was passed out and admitted to groped two other women . wrays served as the 2013 and 2014 pi kappa alpha president at utah state university .\nkevin pietersen was hit on the hand while fielding for surrey . the batsman was taken off as a precaution and did not return after tea . pietersen is hoping to win back his england test place with a return to red ball cricket . surrey are playing oxford mccu in the championship .\nmedhi benatia was taken off in the first half of bayern munich 's win over bayer leverkusen . the defender suffered a muscle injury and could miss both legs of their champions league quarter-final against porto . benatian said he will be out for between two and four weeks .\nharley weighed 11lb 5oz and already fits into size two nappies . mother danielle davies , 21 , insisted on a natural birth . she had a blood clot on her brain one month before the birth . midwives were so surprised they had to weigh him twice .\nfemale victim collapsed and started violently fitting in a seizure at ryemarket shopping centre , stourbridge , west midlands . passers-by rushed to comfort her but police believe one person took advantage of the drama . cctv shows woman moving victim 's shopping trolley before leaving the market . police have released cctv image of woman they want to trace after the money was stolen .\nsurvey by us dating site skout found that grilled cheese lovers have more sex . almost three quarters -lrb- 73 % -rrb- of sandwich eaters have sex at least once a month . fans of the snack are also more charitable and more likely to travel . american cheese is the most popular filling , followed by cheddar and mozzarella .\ntens of thousands of savers are being tempted to put their money into property . nationwide building society is giving anyone up to 70 the chance to take out a 35-year loan . offer comes as pension reforms give over-55s access to billions from today . surge of ` silver landlords ' is likely to push up house prices .\ncallers in epping forest , essex , said ` someone ' had been run over by a car . two ambulances were sent to the scene , but returned moments later . the ` victim ' was actually a squirrel that had been hit by a vehicle . east on england ambulance service released list of 1,248 inappropriate calls . front-line crews attended half of the phoney calls , believing them to be genuine emergencies .\ndating from 1250 , the black book of carmarthen is the earliest surviving medieval manuscript written solely in welsh . contains some of the earliest references to arthur and merlin . now , researchers have found a series of hidden faces and message in it . using a combination of ultraviolet light and photo editing software , the images were recovered .\ntiger woods completed 11 holes of practice at augusta national on monday . woods has not won a major since the 2008 us open . the 39-year-old is looking to win his fifth masters title this week . woods is returning from a self-imposed break to recover from injuries .\ntamaras pacskowska posed as georgina bagnall-oakley at meetings . 56-year-old from croydon , south london , could not speak english . took her daughter-in-law monika brzezinska along with her on the visits . they were eventually caught out in a solicitors office while they were on the cusp of completing the sale of the house . pacskowkska sobbed as she was given a community order and made to pay costs after previously admitting fraud . brzezinska and bejamin khoury , who also admitted fraud , also escaped jail .\naston villa beat qpr 3-2 at villa park on tuesday night . stan collymore was in the press box to watch the game . the former striker grew up idolising gary shaw and peter withe . colly more played for villa between 1997 and 2000 .\nnaz shah , labour candidate in bradford west , has previously said she was forced into marriage . but mr galloway 's respect party claims to have evidence this is untrue . he produced a nikah , or pakistani marriage certificate , at a hustings on wednesday . he said it shows ms shah was married in 1990 , when she was 16 and a half . but ms shah has hit back , saying there are two copies of her nikah . one dated 1990 , which mr gallowdy has , and another earlier version dated 1988 .\nsix-month-old seal pup suffered horrific injuries to her face and back . the seal had been rescued in november when she had breathing difficulties . she was released into the wild last month after recovering from her injuries . experts believe she was struck by a motorboat or jet ski . warning graphic content .\nmoussa sissoko was sent off for a dangerous tackle on lucas leiva . liverpool beat newcastle 2-0 at anfield on monday night . newcastle boss john carver says sissoko was lucky not to be sent off . the france international is now banned for two matches by the club .\nformer two-weight world champion david haye was stopped at dubai international airport . he was accused of fraud over a # 341,000 cheque which bounced . haye has not fought since he defeated dereck chisora in july 2012 . he has been unable to leave the uae and missed a mixed martial arts event in birmingham . hayi has said the ` bounced ' cheque was down to an administrative error .\nsantiago vergini is keen to stay at sunderland after proving his fitness . the defender played a key role in sunderland 's 1-0 derby win over newcastle united . the 26-year-old returned to the stadium of light on a season-long loan deal in august last year . vergini has made 35 appearances for the black cats this season .\ntom brady sends his love for gisele bundchen on facebook . the new england patriots quarterback calls her `` love of my life '' bundchen announced her retirement from the catwalk last weekend . she is the highest-paid model in 2014 , according to forbes magazine .\nfloyd mayweather vs manny pacquiao will be the biggest fight of all time financially and the most significant this century . here is the second of my 12 most significant fights in boxing 's history . joe louis vs max schmeling . june 22 , 1938 . louis knocked out schmeled in the first round to win the heavyweight title .\nu.s. warships are being deployed to monitor ships traveling from iran . the ships could be trafficking arms to houthi rebels in yemen , u.s. , officials say . the move was also meant to reassure allies in the region . president obama says the u.n. and the u. , s. are `` serious '' about the issue .\nmcc to replace ` tired ' tavern and allen stands at lord 's . new 5,500-seat stand will be built in south-western corner of the ground . project has a projected budget of # 80million , and is expected to be ready for the world cup and ashes in spring 2019 .\nhillary clinton 's campaign met saturday in its brooklyn headquarters . clinton 's soon-to-be campaign manager distributed a `` values statement '' to staffers . the document outlines the campaign 's goals and goals for the 2016 campaign . clinton is planning to launch her presidential candidacy sunday . clinton will travel to iowa and new hampshire on sunday .\nresearchers studied mammoth remains found in siberia and wrangel island in the arctic . they found that the creatures were isolated on the arctic island for around 5,000 years . their population dwindled until disappering 4,500 years ago , forcing them to inbreed . study has raised the prospect of bringing the giant mammal back to life using cloning techniques with modern elephants . researchers inserted more than a dozen of the creature 's genes into the live dna of an elephant .\nauto shanghai 2015 is china 's biggest car show . it is expected to be the biggest ever . chinese car sales are slowing . chinese automakers are focusing on suvs and luxury cars . they are also trying to crack more developed markets . the show comes at a turning point for china 's auto market .\nthe 223ft explorer superyacht has space for 12 guests and is designed to circumnavigate the globe . it comes with its own helipad , infinity pool and plenty of space for supercar and jetski storage . the concept yacht was designed by british yacht designer tony castro .\nceltic lost 3-2 to inverness in the scottish cup semi-final on sunday . ronny deila 's side are currently five points ahead of aberdeen in the league . emilio izaguirre has called on his team-mates to focus on winning the league title .\nchannel ten show the project accidentally used footage of the wrong comic on their program . the project was promoting their upcoming interview with us comedian michael che . two of the three clips shown were of che 's castmate , jay pharoah . che and pharoahs are both in australia to perform at melbourne 's international comedy festival . presenter waleed aly apologised for the embarrassing blunder after viewers pointed it out on twitter .\nsarah brady died of pneumonia , her family says . she and her husband , james brady , pushed for stricter gun control laws . james brady was shot in the head by john hinckley jr. during an attempt to assassinate reagan . the bradys helped pass the brady handgun violence prevention act .\nnew nhs guidelines urge gps to draw up plans for over-75s and younger patients . they are also being told to ask whether the patient wants doctors to try to resuscitate them if their health suddenly deteriorates . nhs says the guidance will improve patients ' end-of-life care . but medical professionals say it is ` blatantly wrong ' and will frighten the elderly into thinking they are being ` written off '\nsteven allison , 37 , from idle , west yorkshire , was on the run from the law . he had been convicted of sexually assaulting two women but failed to appear in court . allison fled to australia and posted pictures of his new life to facebook friends . police tracked him down in canberra and he was brought back to the uk yesterday .\nmailonline travel looks at the top travel hacks to cure any seaside holiday struggle . from sunburn relief to water-logged phones , these tips will help you enjoy your holiday . from solar-powered ereader to a waterproof blanket , these hacks will help keep you dry .\nthere are 23 current and former premier league players still involved in europe 's top competition . seven have manchester united connections : cristiano ronaldo , patrice evra , carlos tevez , paul pogba , dimitar berbatov , gerard pique , plus javier hernandez . chelsea , arsenal , liverpool and manchester city have all been knocked out of the champions league .\ndeaths every year in britain to rise by 20 % in the next two decades . prices for funerals are rising due to cremation and rising undertakers ' bills . a ` simple ' funeral now costs an average of # 3,590 , report finds .\nproceed m-27m launched at 3:09 am edt -lrb- 07:09 gmt -rrb- from kazakhstan . it was due to dock with the iss six hours after take off . but that plan has now been ` indefinitely abandoned ' nasa 's reported that a video camera on progress showed it to be spinning at a ` rather significant rate ' roscosmos will try to make contact with the spacecraft tonight . it is carrying about 2.5 tons of cargo , including fuel , equipment and oxygen .\nthe 911 call that led to two ` free range ' kids getting picked up and held by police and maryland cps for five hours has been released . rafi meitiv , 10 , and his sister dvora , 6 , were picked up by police while walking through the washington , dc-adjacent suburb of silver spring on sunday . the meitv 's parents , danielle and alexander , espouse the hands-off parenting style . the children were pickedup by police after a concerned citizen called 911 to report the pair walking alone in a park .\nbritain will see a high of 22c -lrb- 72f -rrb- tomorrow - 11c warmer than april average . it will also surpass the average daytime temperature for august in britain . forecasters expect uk to see high temperatures until the weekend - while yesterday 's national maximum was 19.3 c -lrb- 67f -rrb- in usk , south wales . defra has warned of high -lrb- in red -rrb- and very high -lrb- in purple -rrb- pollution later this week .\n`` galaxy quest '' is the latest movie to be adapted for the small screen . the dreamworks film centered on the cast of a canceled space tv show . the film 's scribe robert gordon is expected to write the tv version . `` school of rock '' will debut on nickelodeon later this year .\nian rogers became hooked on all things paranormal as a child . has spent hundreds of pounds on his collection of nine haunted dolls . says that each of the dolls have their own personality and stories . his favourite doll , annabel , is haunted by a seven-year-old girl who drowned . ian is now looking at investing in other supernatural souvenirs .\ncollege student nasr bitar spotted a google street view car in mississauga , canada . he followed it in his own vehicle - and spotted the perfect moment to take a selfie . the image of his selfie , and the street view shot , has now been shared almost 2.9 million times .\narsenal drew 1-1 with chelsea at the emirates in the premier league on sunday . the two managers were given their own live hero shots on the touchline . both managers reverted to the pre-game chill-out zone in the tunnel . jamie carragher , thierry henry and graeme souness chew the fat after the final whistle .\ngoogle paid its billionaire executive chairman eric schmidt nearly $ 109 million last year while the company 's stock slumped . most of the compensation consisted of stock valued at $ 100 million . schmidt also pocketed a $ 1.25 million salary , a $ 6 million bonus and perks valued at nearly $ 1 million . his total pay last year soared by more than five-fold from 2013 when his google compensation was valued at # 19.3 million .\ntraffic had started to build up on the m58 around switch island on merseyside when a silver mercedes attempted to undertake . but a renault driver was n't happy and pulled into the inside lane to block the mercedes from moving forwards . the mercedes driver then had to wait 10 minutes in the queue before moving back into the correct lane .\nthe rodopi mountains in bulgaria are a haven for the country 's traditional music . the music was included in the voyager 2 space probe . many villages hold festivals in the way that english villages stage fetes . the festival was a joyous occasion , not just for tourists .\nplane carrying seven people crashed near bloomington in central illinois . illinois state associate head basketball coach torrey ward was among the dead . businessman scott bittner and bar owner terry stralow also killed . isu 's deputy director of athletics for external affairs , aaron leetch , was also killed in the crash . the plane was on its way back from the ncaa championship game .\nthe prime minister had just done a viewer call-in on itv 's this morning . mr cameron made the comment as host phillip schofield moved on to next item . he could then be heard saying : ` is that alex salmond ? ' co-host amanda holden burst out laughing at the remark as programme went to ads .\nwanquan castle , in china 's northern hebei province , was built in 1393 . it was known as the ` martial city ' after it repelled all mongolian attacks . the fortress measures two kilometres in circumference and is protected by a 12-metre wall . now archaeologists are working to restore the fortress ' dilapidated outer wall .\na small plane erupted into flames at ben gurion international airport in israel . six people on board were forced to jump onto the runway to escape . the fire engine raced to the scene and extinguished the flames . the incident was declared a state of emergency level 3 - the highest level of danger at the airport .\nfriends of bethany farrell claim photos of the backpacker shortly before she died were deleted by wings diving adventures . ms farrell , 23 , died on february 17 while scuba diving in queensland 's whitsundays . she was on her first ever scuba dive and was a week into her gap year in australia . scathing reviews have been posted to tripadvisor slamming the tour guides ' handling of the situation and claiming photographs were deliberately deleted .\nchen yuntao has started dressing as a horse and begging on the street . the 38-year-old asks passers-by to ride him for five yuan -- the equivalent of 54p . he is trying to raise money for his son 's growing medical bills . nine-year old son minghao has leukaemia and has had 20 courses of chemotherapy . the next course of therapy will cost between 400,000 and 500,000 yuan . mr chen said begging on street was a ` last resort ' but he would ` gladly do anything '\njoyce cox was strangled to death on her way home from school in cardiff in 1939 . her body was found dumped by a railway station but her killer has never been caught . family of four-year-old accuse police of ` cover-up ' after officers ordered that case file be kept secret . metropolitan police said information could not be released because it is unfair to the mystery suspect .\nlorient beat marseille 5-3 at the stade velodrome on saturday . it was the first win in five games for lorient . jordan ayew scored twice for l orient . marseille have lost three in a row and are bottom of ligue 1 .\nsix soldiers were found in a farmer 's field in comines-warneton , near le touquet , belgium , in 2008 and 2010 . it is thought they were killed in october 1914 , during the first battle of ypres . the men were buried in prowse point military cemetery , which was used from november 1914 to april 1918 . their graves will be labelled as ` known unto god ' - a description chosen by rudyard kipling .\nbarclays premier league announce tv schedule for 2014-15 season . sky sports ' and bt sport 's allocation for live matches revealed . chelsea vs liverpool and manchester united vs arsenal are standout games . the tv schedule will be announced for final day of season on may 24 .\nharvard-led study has mapped taste buds on a tongue for the first time . scientists examined the different cells used to identify taste and watched these cells capture and process molecules live . shining a bright infrared laser on the mouse 's tongue caused different parts of it and ` flavour molecules ' to fluoresce .\nbianca gascoigne was targeted by a gang of eight on tuesday afternoon . they took her phone which reportedly had private texts from her father . the 28-year-old is said to have been left devastated by the theft . she later took to twitter to brand the muggers ` lowlifes on bikes '\nkeonna thomas is one of three women arrested this week on terror charges . she 's charged with trying to travel overseas to fight for isis . two new york women were also taken into custody . the fbi says thomas purchased a ticket to turkey and a ticket for barcelona .\nchipotle will work with the postmates app to begin offering delivery for online and mobile orders in 67 cities . the fast-casual chain plans to add a nine per cent service charge . the delivery fees for postmates begin at $ 5 and up , depending on distance and demand .\njamie carragher believes brendan rodgers is still the right man to lead liverpool forward . the former liverpool defender received a beacon award for his community work on merseyside on tuesday night . rodgers ' future at anfield has been questioned after a third straight season without a trophy .\n`` suicide squad '' director david ayer gave us a look at jared leto as the joker . the actor cut his hair and shaved his face for the role . he will be the first actor to play the character on the big screen since heath ledger . the movie hits theaters august 5 , 2016 .\na hiker was exploring chile 's natural wonders when a volcano erupted before his eyes . the 6,500-foot-high calbuco volcano erupted for the first time on wednesday afternoon . an estimated 1,500 people were forced to flee the nearby town of ensenada after the eruption .\ncustomers at a rio de janeiro snack bar were unwittingly eating pastries made from the meat of stray dogs , police said today . officers investigating the popular fast food house reportedly found boxes containing the frozen carcasses of dozens of dogs . the canines , which appeared to have been killed with blows to the head , were used for the fillings of ` pastels ' , a traditional brazilian stuffed pastry .\njohn carver has been the target of angry fans at newcastle united . fans are unhappy at how the club is being run under mike ashley . carver says he has the hardest job in football as head coach of newcastle . thousands of supporters plan to boycott sunday 's home match against spurs .\nprincess eugenie , 25 , attended for the love of cinema dinner . the event was held during the tribeca film festival . the royal has been living in new york for a year . she mingled with a host of a-listers and film industry bigwigs .\nstephanie scott , 26 , was last seen at a woolworths supermarket at leeton , 550km west of sydney , on easter sunday afternoon . the teacher was due to marry her partner of five years on saturday . police have launched a state-wide search for the leeton high school drama and english teacher .\nmalky mackay was sacked by wigan athletic on monday after a 2-0 defeat by derby . sportsmail revealed in august mackay had been investigated over ` sexist , racism and homophobic ' texts . dave whelan appointed mackay as manager of wigan in november 2014 . wigan are eight points from safety with five games remaining in the championship .\njust a year ago tibetan mastiffs could command prices of up to # 1.2 million each . but now they are being sent to slaughterhouses and their meat is put into cheap hotpots . the dogs ' decline is being blamed on the chinese government 's wide-reaching anti-corruption crackdown .\ndarren cole 's cousin , shaun , was found dead in miami last weekend . the 23-year-old midfielder is expected to miss sunday 's petrofac cup final . livingston boss mark burchill is hopeful cole will play . burchil says cole has given the impression he would like to play .\na philadelphia court heard thursday that corry ` corey ' campbell , 21 , was the ringleader of a gang dubbed the ` tattoo terrorists ' campbell believed the victim , greg valecce , had hurt his cat , pebbles . valece was beaten , tied to a chair and tattooed with offensive slogans . he was able to escape on april 1 while the others slept and contact police . campbell was sentenced to 20 years in state prison . his girlfriend sandra ng was sentenced for her role in the shocking assault . another man involved , david thomas , 28 is awaiting sentencing . another defendant jennifer pratt , 40 , is awaiting trial .\nfour seasons has unveiled their new private jet in a minute-long video . the aircraft features leather flat-bed seats and exclusive dom pérignon champagne . the jet , including the staff and crew , is also available for private charter . the experience costs around # 63,000 a trip .\nrapper lil wayne 's tour bus was shot at in atlanta . no one was injured in the shooting , and no arrests have been made . police are still looking for suspects . lil wayne was in atlanta for a performance at compound nightclub saturday night . buses were shot multiple times , police say .\nceltic lost 3-2 to inverness in the scottish cup final on monday . josh meekings blocked leigh griffiths ' goal-bound shot with his hand . celtic have written to the scottish football association over the incident . john hartson has urged his former club to move on from the injustice . hartson had a goal wrongly disallowed for offside while playing for celtic in 2003 .\nsportsmail 's team of reporters pick their best premier league starting xi . eden hazard , mesut ozil and joey barton feature in this week 's list . everton goalkeeper tim howard put in a man of the match performance against southampton . loic remy looked a worthy replacement for diego costa as he scored and was a menace against stoke .\nceltic legend billy mcneill will be honoured with a statue . the bronze statue will be placed on the recently opened celtic way . mcneill was the first british team captain to lift the european cup in 1967 . the statue will have been created by john mckenna , who also created the statue of jock stein at celtic park .\na 13-year-old girl was imprisoned and beaten in a ` trap house ' arnold quintero , 21 , from san antonio , texas faces a string of charges . the girl told police she was punched and forced to undress . she said she was burned with a lighter in the face .\nat least one person is dead after a powerful storm capsized several sailboats participating in a regatta in mobile bay , alabama . the storm rolled through the area about 4 p.m. and a man was plucked from the waters by the coast guard around 9 p.m. crews searched late on saturday for at least four people missing in the waters , the coast guards said . more than 100 sailboats and as many as 200 people were participating in the dauphin island regatta .\nemmanuel adebayor has made just nine league starts this season . the togolese striker is out of favour under current manager mauricio pochettino . tottenham will subsidise his # 100,000-per-week wages next season to ensure he leaves the club .\nholocaust survivor eva kor met former ss guard oskar groening in court . the 81-year-old embraced him and held his hand as she forgave him . groening is accused of complicity in the killing of 300,000 people at auschwitz . mrs kor was one of 1,500 twins experimented on by dr josef mengele .\ncheikhou kouyate says west ham must be ready to face manchester city . the hammers face the champions at upton park on sunday . manuel pellegrini 's side have lost four of their last six premier league games . city were thrashed 4-2 by manchester united at old trafford last week .\ntwo men were arrested after a thomson airways flight diverted . the boeing 787-8 was seven-and-a-half hours into its flight to cancun . it landed at lf wade international airport in bermuda , met by six police cars . thomson airways apologised for any inconvenience caused to passengers .\ndave heeley ran the marathon over six days in the sahara desert . he battled through sand dunes , dried river beds and rocks to complete the challenge . the 57-year-old ran 156 miles and camped in the desert to raise money for charity . he is the first blind man to complete marathon des sables and hopes to raise # 30,000 .\na world-first stunt has been filmed in the australia outback . the 918 spyder was driven by professional race car driver craig baird . the video is part of a promotional tour from porsche to promote their $ 900,000 supercar . the car is driven by a petrol-electric hybrid system which can accelerate from 60km/h to its 350km/h top speed in a mere 40 seconds .\nthree former england rugby internationals were on a charity expedition to the north pole . they continued with their trip despite the landing gear of their plane collapsing . lewis moody , danny grewcock and josh lewsey said they felt nothing more than a jolt . poor visibility at the makeshift 800m strip beside the russian operated camp barneo first caused an aborted landing .\nmouth ulcers may seem like a minor ailment but can be incredibly distressing . the pain can severely impact on quality of life , as eating and drinking are significantly affected . as many as 20 per cent of people suffer with the occasional single mouth ulcer . claudia winkleman deserves her bafta nod .\njack cordero vomited on the floor of a bookstore in portland , oregon . manager said the mess was ` gigantic ' and had to clean it up . but she was surprised to receive a handwritten apology letter from him . the 14-year-old also included a ben & jerry 's gift card for the staff . a picture of the letter and gift card went viral on twitter .\nben powers played thelma 's husband keith anderson on the final season of `` good times '' he also had a regular role as `` moochie '' on the cbs detective drama show , mickey spillane 's mike hammer . powers died april 6 in new bedford , mass. .\nluis suarez scored barcelona 's second goal in their 3-1 win over psg . the landmark has been achieved in 202 matches since 1992 . barcelona still have a way to go to match real madrid 's 436 champions league goals . lionel messi is the top scorer in the competition with 75 goals .\nroger federer defeated jeremy chardy 6-2 , 6-1 to reach the last 16 . the swiss star spent less than one hour on court in monte carlo . it was federer 's first match since his loss in the indian wells final in march . he will now face gael monfils in the quarter-finals .\nsnp demands retirement age be frozen - in a move which would cost billions . nicola sturgeon says it is unfair on scottish pensioners because they die younger . she also issued a demand for a huge inflation-busting increase in the state pension , which wouldcost billions of pounds more .\nsavannah guthrie , 43 , tried to get her eight-month-old daughter vale to sleep by gliding a piece of white tissue paper over her face . but the trick did n't have a calming effect on the energetic baby . the today show host revealed that her husband mike feldman also fell asleep in 30 seconds with the same trick .\nglasgow warriors face cardiff blues at scotstoun on saturday night . scotland winger sean maitland has undergone surgery on his injured shoulder . the 26-year-old has been out of action since january with the injury . maitlands is set to join london irish in the aviva premiership next season .\nkyle hargreaves , 18 , was found kissing a girl on a stretcher in the back of the vehicle . ambulance crew had left doors open while they collected 92-year-old man . they returned to find hargraves and the girl lying on top of each other . hargraves punched paramedic michael newman three times in the face . he was jailed for two years and eight months at grimsby crown court .\nsouth korean government paid # 2.4 m to ensure film was shown in a positive light . much of the comic book film , avengers : age of ultron , was shot in seoul . culture ministry agreed to cover a third of filming costs in the city . the use of public funds has been criticised by south koreans .\nshadow chancellor claims voters have lost # 1,100 each due to coalition . but pm hails today as ` money-back monday ' with raft of tax changes . he has claimed labour are planning to increase taxes by # 3,028 on ` every working family ' but balls says tories will hike vat and cut top rate of tax from 45p to 40p .\nanti-gay protest held at mcguffey high school in washington county , pennsylvania . organizers encouraged anyone who shared their bigoted stance to show support by wearing a flannel shirt to school . pupils also wrote ` anti-gay ' on the hands along with a cross as part of their protests . event was a reaction to a day of silence event for bullied lbgt students the previous day .\nfossil is called lung wong , or the dragon king , and is being sold by hong kong-based experts at evolved . it is more than 95 per cent complete bone , is 9.2 ft -lrb- 2.8 metres -rrb- long , 5.2 ft -lrb- 1.6 metres -rrb- high and 4.6 ft -lrb- 1-4 metres -rrb- wide . the skull belonged to a male triceratops that lived 66 million years ago . it was first found in montana in 1992 and has since been restored . the fossil is expected to fetch $ 1.8 million -lrb- # 1.2 million -rrb- at auction .\nhistorian laura mary sumner , 24 , was ordered to leave russia within 10 days . she was fined # 23.50 for an alleged visa violation by russian authorities . the nottingham university student was researching soviet rule . but russian media has branded her ` agent sumner ' and linked her to a bizarre claim of a revolutionary plot .\ntracey investigates sexual statistical claims and separates myth from reality . scientists reviewed 20 different studies of penis size , including 15,521 measurements of penises from around the world . most men fall within just a couple of centimetres of each other , with most measuring around 5.2 inches in length when erect with a 4.6 inch circumference .\njustin was reportedly put in a chokehold by security and booted from the coachella music festival on sunday . the 21-year-old singer argued with security after being stopped at the artists ' entrance where drake was performing . a video obtained by tmz appears to shows bieber being put in the chokehold and escorted from the area . bieber missed drake 's set - that featured madonna kissing him onstage .\nstephanie scott 's remains have been transported to glebe morgue in sydney . the 26-year-old teacher was allegedly murdered and dumped in bushland six days before she was due to walk down the aisle to marry her partner of five years . police will reportedly make inquiries with authorities in the netherlands in an attempt to run a background check on the accused killer . vincent stanford , 24 , was charged with ms scott 's murder on thursday .\nmuslims ' share of the world 's population will equal christians ' in 2070 , report claims . number of muslims will increase at more than double the rate of world 's population by 2050 . by 2100 , one per cent more of the world 's population will be muslim than christian , with the largest proportion of followers in india .\nmarlon samuels scored 103 against england in second test in antigua . west indies batsman will inspire team-mates with his discipline and character . phil simmons is trying to create a culture of discipline in west indies . test cricket is what players will be remembered for in the modern world .\nronnie o'sullivan will play craig steadman in the first round of the betfred world championship . defending champion mark selby will also tackle a debutant in norway 's kurt maflin . judd trump faces another tournament newcomer in grimsby 's stuart carrington .\nmikki nicholson stepped in front of train after suffering verbal abuse in carlisle , inquest heard . the 36-year-old had planned move to newcastle , where she hoped people would be more accepting . but she changed her mind after being told she risked homelessness if she left social housing . ms nicholson was born male but identified as a woman and was receiving psychiatric treatment .\npupils at riverview junior school in gravesend , kent were told not to run . parents say that children need to ` let off steam ' during their breaks . headmistress says they are trying to crack down on a dangerous ` chasing ' game .\nthis month , an officer in strongsville , ohio cited a woman for leaving her dog in a hot car . but instead of writing a ticket , the cop forced her to sit inside to see how it feels . in truth or consequences , new mexico last june , a woman was told to sit in her car after her dog was found locked inside with no ventilation .\nroma beat napoli 2-0 in serie a on saturday to end four-month winless streak . miralem pjanic and juan iturbe scored the goals for the hosts . morgan de sanctis was excellent to deny napoli in the second half .\nthe mod accidentally uploaded the aerodrome manual to their website . it contains details of the raf 's main base on the falklands islands . the details could be used as ` an invasion guide ' by argentina . the falklands are defended by four raf typhoon aircraft and 1,200 troops .\ncressida bonas , 26 , says she is ` more than happy ' being single following split from prince harry . says she is a ` strong , independent woman ' and is happy to be single . dancer and model dated prince harry for two years until last april . she has just finished playing cecily in the importance of being ernest at the london oratory .\nvanessa kennard suspended in her absence by nursing and midwifery council . she was one of three nurses charged with mistreating grant clarke . mr clarke , 45 , suffered a massive brain haemorrhage in may 2012 . he was left paralysed , incontinent and unable to swallow or communicate . his family became concerned when they visited him at sevenoaks hospital . they planted a secret camera in an ipod docking station and filmed him . it captured footage of ms kennard and colleagues failing to provide standard of care for mr clarke . she has been suspended from her role for six months after being charged with misconduct .\nguo kai granted his girlfriend 's wish of having wedding photographs taken . dong hui , 22 , was diagnosed with bone cancer last month . she turned 22 on monday . the couple had planned to get married this month in sichuan , china . but dong was admitted to hospital and the ceremony had to be postponed .\npuffin spotted swimming in grand union canal after apparently flying into london along the thames . the bird was spotted by an eagle-eyed canal boat resident . it was given some fish and wrapped in a blanket , before being handed to a specialist centre in dorset to recuperate .\nluke harris and daryl lee , from surrey , had their first child three months ago . they welcomed daughter willow-star after surrogate viktoria ellis gave birth . mr harris and mr lee will have completed their family of three within seven months . baby number three -- known as a boy -- is being carried by bex harris . mr lee 's third child , yet to be born , was created using mr harris 's sperm .\ngraeme mcdowell has made the cut just twice in seven attempts at augusta . the northern irishman has vowed to play ` aggressive ' golf this week . mcdowell admits he has sometimes needed to spend time in a padded room . the 35-year-old is optimistic he can improve on his masters record .\nsteven finn believes pace does not matter in his quest to break back into england 's test squad . finn admits he finds it ` baffling ' he faces criticism for not hitting the 90mph mark . the middlesex seamer has vowed to chase an england recall despite missing the west indies tour .\naaron cook plans to fight for moldova at the 2016 olympics in rio . the british taekwondo star has been granted citizenship by moldova . cook has refused to compete for great britain since may 2012 . the 24-year-old was overlooked for the gb squad at london 2012 .\nteenager collin burns completed the puzzle in just 5.25 seconds . he was at an official rubik 's cube event in doylestown , pennsylvania . the us national ` speedcubing ' champion shaved 0.3 of a second off the record .\nleeds united were beaten 3-1 by celtic at the weekend . celtic came from behind to beat kilmarnock 3-2 on wednesday . leigh griffiths scored a hat-trick in the win at parkhead . ronny deila said griffiths was trying to prove him wrong .\ndidier drogba has scored 15 goals in 15 games for chelsea against arsenal . the ivorian striker averages a goal every 78 minutes and 20 seconds against his team . drogbba 's first goal against arsenal came in the 2005 community shield . he has scored a double five times for chelsea in the last five games .\nwashington post 's tehran bureau chief jason rezaian has been detained in iran for eight months . iranian officials announced in january that he would stand trial before the country 's revolutionary court to face ` security charges ' the fars news agency , considered to be close to iran hard-liners , claims that rezaan has been accused of ` espionage ' and ` acting against national security '\nivan carlos , 22 , and brenda avilez , 18 , were sleeping in a trailer at the lone oak mobile home park in palmetto at around 2.30 am wednesday . the driver , christian crawford , 35 , reportedly lost control of the vehicle and crashed through the fence . avilez was nine months pregnant at the time , the fetus did not survive . crawford , who had recently been released from prison , was taken to a hospital with non-life-threatening injuries .\n1954 bentley r-type continental fastback sold for # 739,212 at auction . auctioneers had expected the car to sell for around # 200,000 . but it still needs a full restoration and could be worth more than # 1million . the car was originally commissioned by welsh racing driver r d weatherall .\nformer portuguese police chief goncalo amaral was on trial over claims he made in a book and a documentary . he claimed the couple were involved in their daughter madeleine 's disappearance . a lisbon court agreed that amaral should pay mr and mrs mccann $ 250,000 -lrb- # 179,000 -rrb- each in damages . he has also been banned from further sales of his book the truth of the lie .\none migrant died after being thrown overboard by a trafficker , it is claimed . another boat carrying 550 people capsized off the libyan coast on monday . about 150 survivors were rescued and brought to an italian port . more than 8,000 migrants took advantage of calm weather to cross mediterranean .\nlabour leader 's face superimposed on to bodies of famous men in a twitter campaign . twitter users have created cool ed miliband account to make him look cool . images include daniel craig , neil armstrong , marlon brando and harrison ford . miliband has consistently polled low in popularity ratings since becoming leader .\n11-year-old boy with autism draws intricate world map from memory . images of the feat have gone viral on the internet . the map was created by the son of a professor in new york . it was highly accurate and included details such as political borders . the boy 's father posted the images on reddit .\nloic remy scored chelsea 's winner against stoke on saturday . jose mourinho praised remy 's professionalism and scoring ability . mourinho said remy 's contribution to chelsea is already ` crucial ' diego costa left the game with a hamstring injury . chelsea beat stoke 2-1 at stamford bridge on saturday .\nmichael phelps is aiming to compete in a fifth olympics next year in rio de janeiro . the 18-time olympic champion wo n't swim in the world championships this summer . phelps confirmed his intention to make one last run at the olympics on wednesday . he will be competing in his first meet since serving a six-month suspension by usa swimming after a second drunken driving arrest last fall .\nthe judge ruled this week that v. stiviano must return $ 2.6 million in sugar daddy gifts from her husband donald sterling . shelly sterling , 80 , said she felt vindicated by the ruling and will donate the proceeds to charity . she said she took the woman to court ` for justice ' and that she and her husband never separated . a recording of donald sterling telling stivian not to associate with black people led the nba to ban him for life and fine him $ 2,5 million .\ndamian parks , 22 , drowned in daytona beach on sunday after going for a swim with friends at 3am . he was pulled out to see by a strong current and his body was later found on monday morning . bethune-cookman university is investigating parks death after university administration ` heard rumors ' that hazing was involved . students who were with parks , who were all part of a step team called melodic stepping experience , said no hazing had been involved .\nfive militants from the kurdistan workers ' party are killed in clashes with turkish forces . four turkish soldiers also are wounded in the fighting in the eastern city of agri . turkish prime minister ahmet davutoglu condemns the violence . president recep tayyip erdogan also harshly condemned the attack .\ndavid rylance , 47 , stole more than # 50,000 from his dying mother margaret rylances . pensioner 's concerns were put down to her having alzheimer 's disease . but in reality her son had been slowly siphoning the money away from her account . he spent it on gambling , a holiday and cinema tickets , newcastle crown court heard . rylane admitted theft and fraud involving # 52,000 and was jailed for two years .\nstefan stoykov , 18 , is a senior at north central high school in indianapolis , indiana . he moved to the us from bulgaria as an eight-year-old when he could not speak english . he has been accepted into some of the finest schools on the planet . brown , columbia , cornell , dartmouth , harvard , penn , yale and princeton have all come knocking .\nethiopian airlines flight from guangzhou , china to addis ababa diverted twice . boeing 777-300er first stopped to refuel in mumbai before departing for ethiopia . returned to mumbai after crew declared emergency due to engine trouble over arabian sea . passengers were forced to disembark and enter the airport terminal for inspection .\nfort was found on top of the dunnicaer sea stack close to stonehaven , aberdeenshire . it appears to have been built with stone imported from elsewhere in the country . the fort was built to give the inhabitants a strong defensive position . archaeologists believe the stronghold may have been one of a number that lined the east coast of scotland .\npatrick revins sold # 10-worth of heroin to undercover police officer in november 2013 . officer recognised him because he has initials - ` p ' and ` r ' - tattooed on forehead . police also identified him after he walked into bank with bread knife in hanley , staffordshire . he was arrested and jailed for 12 months after admitting supplying heroin .\nlondon book fair author hq event is a three-day programme . experts will share their knowledge of the publishing industry . experienced and successful authors will reveal how they launched their careers . some bestselling kindle direct publishing authors will talk about their experiences in the vast and flourishing e-book market .\nwoman , 20 , was driving on i-25 in weld county , north of denver , when her window shattered . she called 911 and said she felt bleeding from both sides of her neck . she was taken to hospital where surgeons found she had been shot clean through the neck . sheriff 's deputies are hunting the gunman who may have tried to attack other drivers .\ncameron thomas philp graffitied and spat on the side of a police forensics van in 2013 . he was fined $ 300 but avoided a conviction at brisbane magistrates court on friday . mr philp claimed he had no recollection of vandalising the car and that it was out of character for him .\nhbo has released a teaser video for season 2 of `` true detective '' the new season premieres june 21 . colin farrell , vince vaughn , rachel mcadams and taylor kitsch star in the new season . the first season starred matthew mcconaughey and woody harrelson .\nrussian sailors have built a giant leaf-blower to clean the decks of their aircraft carrier . the admiral kuznetsov is the largest carrier in the russian navy , carrying 18 fighter jets and 17 anti-submarine helicopters . debris on carrier decks can potentially get sucked into jet engines , so crew are usually required to do manual sweeps .\nthree youngsters have won a competition to visit mi5 's london hq . jamie , 13 , reuben , 13 and finley , 10 , were chosen from 5,700 other hopefuls . the trio were given a guided tour of the security service 's hq . the competition was one of the most popular in blue peter 's history .\njarret stoll , 32 , was arrested on friday in las vegas , nevada , on drug possession charges . he was arrested for possession of cocaine and mdma , also known as molly , at the wet republic pool at the mgm grand hotel . stoll is the longtime boyfriend of dancing with the stars host erin andrews , a former espn employee who now works as an nfl sideline reporter for fox sports . he looked bright-eyed and alert in a mugshot taken friday evening in las las vegas . stolls was likely at the hotel to attend the two year anniversary of their popular club hakkasan friday evening .\nrose devereux , 49 , was left in agony and disfigured by the work of janakan siva . pictures show her bottom row of teeth virtually destroyed by terrible gum disease . she now faces a bill of # 30,000 to get her smile back . the general dental council has investigated the work at the menlove dental practice in allerton , liverpool .\nvietnamese twins binh and phuoc wagner were adopted by michael and johanne wagner of kingston , ontario . binh was chosen ahead of her sicker twin sister to receive part of their adopted father 's liver . phuoc needed a donor just a little more , so mr wagner decided to pass her by and choose binh . binh received her new liver on february 10 and is recovering well . the donor has chosen to remain anonymous .\nproperty developers are building new homes in china but some stubborn owners refuse to move . the homes are known as ` dingzihu ' or ` nail houses ' because they stick out and are difficult to remove . one house in wenling , zhejiang province , had a main road built around it when the owner refused to move .\npalermo president maurizio zamparini wants to sell paulo dybala . the argentine is wanted by manchester united , chelsea , arsenal , inter milan , juventus and paris saint-germain . zamprini has told psg they will have to spend big to sign dybla .\nalvarado has run only once this season , finishing fifth at doncaster in february . fergal o'brien says that alvarado is in better shape going into the grand national . the 10-year-old gelding has not run since pulling up at cheltenham on new year 's day .\nthe ladies of liverpool were out in force at aintree on ladies ' day . the fashion and drunken frolics once again took centre stage . many opted for floral , flamboyant and eye-catching numbers . others opted for full-skirted looks bedecked with blooms .\nformer porn star christy mack , 23 , was left with 18 broken bones . she was also left with a ruptured kidney , a rupturing liver and missing teeth . she fled her las vegas home after jonathan paul koppenhaver , 33 , allegedly beat her with a kitchen knife and cut off her mohawk . now , nine months later , she is fighting to see koppanhaver convicted of attempted murder .\nbarcelona beat psg 3-1 in their champions league quarter-final tie . luis suarez scored twice as the catalan giants took charge . lionel messi shared an image of the duo together inside the parc des princes dressing room via his facebook page . suarez 's first goal was barcelona 's 1,000 th in european competition .\nbill cosby has been accused of sexual assault by 38 women . janice baker kinney , marcella tate , and autumn burns have all spoken out . they claim they were abused by cosby in the 1970s and 1980s . they appeared with their attorney gloria allred , who represents many of cosby 's accusers . allred said the event was timed deliberately to damage sales for the comedian 's upcoming shows .\nnick clegg will today promise the highest education spending of any party . the lib dems will vow to protect the entire education budget in the next parliament . unlike tory and labour plans , spending would rise per pupil . an extra 460,000 schoolchildren expected in the last five years .\nuniversity of kentucky guard andrew harrison was asked a question about wisconsin 's frank kaminsky at a press conference after saturday 's 71-64 loss . harrison covered his mouth and said ` f *** that n **** ' into a live microphone . he has since apologized for his comment . the wildcats will now face duke for the championship title monday night .\npolice found human remains in a duffel bag in cambridge , massachusetts , over the weekend . carlos colina , 32 , is charged with assault and battery causing serious bodily injury . the remains at both locations belonged to the same victim , authorities say . the next scheduled hearing in the case is set for april 14 .\ndr lara briden has developed a ` no-more-pms ' diet plan . she says pms can be banished with an anti-inflammatory diet . the naturopathic doctor says pms is caused by inflammation . she claims pms has often been dismissed as a myth in the past . dr briden says that pms responds well to natural treatment .\na man has been charged after he allegedly held a woman hostage for more than seven hours in a central melbourne restaurant . victoria police arrested 35-year-old abijath desikan following the 7.5 hour siege at riverside quay . mr desikan was charged with one count of armed robbery , false imprisonment and assault with a weapon . he was remanded in custody to appear in melbourne magistrates ' court tomorrow morning .\npolice in california have released surveillance images of a bankrobber . the man entered a branch of the u.s bank in santa cruz last friday . he handed the cashier a note demanding money and made off with cash . the cross-dresser 's blonde wig , female clothing and spectacles prompted comparisons with mrs doubtfire from the 1993 movie of the same name .\nsheffield wednesday have kept 17 clean sheets in a season . the record has stood since 1978-79 in the days when jack charlton was manager . tom lees and keiren westwood are set to be offered new contracts . lees joined last summer from leeds and is among the contenders for the club 's player of the year award .\njason orange shocked take that fans when he quit the band last september . gary barlow , mark owen and howard donald are set to hit the road as a trio on their new tour - opening in glasgow on april 27 . gary revealed to mailonline that jason will be proudly cheering on his former bandmates .\nmilton vieira severiano , 32 , killed dancer cicera alves de sena , 29 , in rio de janeiro . he smashed her head into concrete paving 11 times before shooting her five times . he later confessed that he 'd carried out the brutal act ` because he was jealous of men looking at her ' he now faces life in jail after confessing to the brutal murder .\nashley says she is riveted by the tight jaw lines of celebrities . she says the latest beauty craze is the nefertiti lift for jowls . dr barbara kubicka says it 's not wrinkles but your face shape that makes you look older .\n`` all the light we can not see , '' by anthony doerr , won the pulitzer prize for fiction . doerr 's work was also a finalist for the national book award . elizabeth kolbert 's `` the sixth extinction : an unnatural history '' won the prize for general nonfiction .\nstatue of liberty and liberty island will reopen to the public saturday , officials say . the nypd bomb squad examined a locker thought to contain a suspicious package and found it empty . a 911 caller made a threat to blow up the statue ofliberty , a park service spokeswoman says .\na 12-year-old schoolboy needed to be rescued after falling down an eight-foot drain . firefighters worked with police and ambulance staff to free the boy . it is believed the rubber drain cover had been kicked out of position . the pupil at stanground academy was trapped for more than half an hour .\nchris lewis , 68 , is suing his ex-wife nicola , 48 , for more than # 300,000 . he claims she had sex with another man only a few months into their marriage . she had a child as a result but led him to believe the boy was his , he argues . dna tests now prove that charlie is not his biological son , he says .\nspanish queen and king felipe attended memorial service in barcelona . met with relatives of some of the 50 spaniards who died in the crash . also met with students who had hosted german teenagers on board . flight 9525 crashed into french alps on march 26 , killing 150 people .\nmiliband said in the past his party had been ` too timid ' about immigration . he said for communities to live together they must use a shared language . labour leader pledged a new crackdown on illegal exploitation of migrant workers . but he also warned that migrants must learn to speak english .\nbus monitor karen huff klein , 71 , was tormented by middle school students in greece , new york in a difficult-to-watch 10-minute video in 2012 . one of the students involved in this verbal attack has been accused of forcing a special-needs student to drink urine from a toilet . the bullying was videotaped and posted on snapchat . mrs klein said that the middle-schoolers who verbally attacker her ` did n't learn any lessons ' on hearing news of one of the student 's alleged bullying .\ncharlene wall jeffs , 58 , is the legal wife of lyle jeffs - brother of polygamous sect leader warren jeffs . she has been married to him since 1983 and has 10 children . she claims to have been excommunicated in september 2014 and is now fighting to have her two youngest children , who still live with mr jeffs , . returned to her . she says the church has become ` even more disturbing than it was under warren ' she claims rape and other illegal practices are common .\nred bull driver daniel ricciardo practices with a martial artist at guyi garden . the australian is in shanghai for the chinese grand prix ahead of friday 's practice . ricciardo has had a disappointing start to the 2015 f1 season . the 25-year-old finished sixth in australia and 10th in malaysia .\nkent sprouse , 42 , is set to be executed by lethal injection on thursday evening . sprouse killed police officer marty steinfeldt , 28 , and customer pedro moreno , 38 , in 2002 . spouse was convicted of the murders in 2004 and sentenced to death .\na 4wd has burst into flames in the middle of sydney airport 's busy international terminal car park . the outdoor car park at the terminal was closed after authorities were alerted to the blaze just after 8am on thursday . witnesses reported seeing fire spewing from the bonnet of the vehicle . it is believed the fire started in the engine in the car .\nmccoy 's mother claire says she is ` nervous ' about her son 's final race . the jockey will be presented with his 20th and final champion jockey 's trophy at sandown on saturday . claire says seeing ` anthony ' leave left her ` heartbroken ' 25 years ago this week that he left to go to jim bolger 's academy .\nwalmart supercenter was ranked at number 67 in consumer reports ' annual supermarket survey . the retailer has consistently been one of the lowest-rated grocers since 2005 . america 's favorite supermarket , taking first place , is new york-based wegmans . publix came in second place followed by trader joe 's , fareway stores and market basket .\ncameron hooker was handed a 104-year sentence in 1985 for the kidnap , torture and rape of colleen stan , a hitchhiker . stan was known as ` the girl in the box ' after it was revealed that she was forced into a coffin-like structure for 23 hours a day during for much of her captivity . despite hooker 's century-long jail term , he was allowed to request parole seven years earlier than under the normal rules . but the parole board at corcoran state prison , where hooker is incarcerated , denied the request and have stated the inmate wo n't get another hearing for 15 years .\nvladimir putin appeared on russian tv this week looking fresh-faced . the 62-year-old 's wrinkles have disappeared , while his skin looks taut . but his appearance is radically different to how he looked in 2007 and 2010 . in both photographs the skin of putin 's face is more saggy , and he has visible dark circles under his eyes .\nhome loan rates have plunged to their lowest in history . but mortgage wars will erupt again next week after hsbc announced a 1.99 % interest rate on a five-year fix . experts said it was the cheapest ever deal of its kind and described the move as ` astonishing '\nmarlon samuels and kraigg brathwaite lead west indies to 202-2 on day five . england were all out for 500 with joe root left stranded on 182 not out . england need eight wickets to win the second test in grenada .\nchris jordan was west indies ' best bowler on day two . the sussex seamer removed darren bravo for 10 early on . shiv chanderpaul 's test career has lasted 21 years and 28 days . kevin pietersen suffered an injury scare during surrey 's match against oxford mccu . england women 's captain charlotte edwards received her cbe from the queen on tuesday .\nnasa has selected companies to work on projects to create advanced space technologies . these include a faster method of propulsion known as vasimr . it could apparently get to mars in a matter of weeks , not months . the vasimr engine - which uses plasma as a propellant - is being developed by the ad astra rocket company in texas . over three years , nasa will give the company about # 6.8 million -lrb- $ 10 million -rrb- to get the engine almost ready to fly in space .\nbmj says avastin is just as effective at tackling wet age-related macular degeneration as the current treatment , lucentis . but the drug company has consistently tried to ` undermine and divert attention ' from trials to prove avast in works . it is estimated that widespread use of the drug would save the nhs around # 102million a year .\nap mccoy fails to write a fairytale ending to his career in the grand national . 25-1 outsider many clouds wins by a length and a half . jockey leighton aspell wins his third grand national on the same horse . mccoy 's horse shutthefrontdoor finishes fifth .\nthe suspect , identified as felix david , 24 , was shot in the chest by officers during the 1.45 pm incident in new york city 's east village . david was being arrested at a facility for mentally ill people transitioning into society from psychiatric institutions . he had been wanted on a robbery charge and was shot after allegedly attacking officers .\nstudy estimated figure for women aged 40 to 59 . it is made up of $ 2.8 bn resulting from false-positive mammograms . another $ 1.2 bn attributed to breast cancer overdiagnosis . breast cancer is the second most common cause of death from cancer among american women .\nchoc on choc has created three different flavours of political chocolates . david cameron 's bar is studded with blueberry pieces , ed miliband 's comes in a red raspberry flavour and nick clegg 's is filled with chunks of honeycomb . the # 3.99 bars will be available for a limited time only .\nnavinder singh sarao , 36 , is accused of making # 26million from illegal trades . he allegedly used special computer software to manipulate the market on wall street . sarao was warned about his trading in 2009 by officials at the self-regulatory chicago mercantile exchange . but he continued his alleged manipulation well into this year . experts are shocked that it took six years for charges to be brought .\nmanmade cavern named the caverne du pont-d'arc has been built a few miles from the original site in vallon-pont-d'arc in southern france . it contains 1,000 painstakingly-reproduced drawings of 425 animals as well as around 450 bones and other features . the original and unique ` grotte chauvet ' was discovered around 20 years ago and is a unesco world heritage site . it is the oldest known and best preserved cave decorated by man , but is not open to the public .\ndinnigan has put her four-bedroom paddington home on the market . the luxury property was built in 1880 and has four bedrooms . the designer and her husband bought the property in march for $ 6.5 million . this comes as dinnigan sold her multi-million dollar palm beach home last year .\nharley jolly , tyson barr and nic roy videoed themselves descending dunedin 's baldwin street on their trikes . baldwin street is 350 metres long and is officially recognised by the guinness book of records as the world 's steepest with a 35 % gradient . the group hurtle towards parked cars but manage to drift around them safely before coming to a stop at the bottom .\nthe oxford university women 's boat race team were rescued from the thames . the crew were overcome by choppy waters on wednesday . the royal national lifeboat institution came to the assistance of the oxford crew . the boat was recovered and returned to oxford 's base . the women 's race takes place on saturday , april 11 .\na sydney man is taking to social media to show his ex-girlfriend he deserves a second chance . michael munday has tweeted 135 love notes dedicated to melissa . he has also been using social media to remind his former-girlfriend that he has not forgotten about her . yet some users were not entirely convinced by mr munday 's plea for help , describing his messages as ` creepy and inappropriate '\nmohammed shatnawi scored an own goal for al faisaly in the amman derby . the jordanian goalkeeper kicked the ball over his head . west ham 's james collins also scored an own goal on sunday . collins accidentally lobbed his goalkeeper adrian in the 2-0 defeat at manchester city .\nwikileaks founder julian assange has released the emails and documents from last year 's cyberattack on sony pictures . the company was hacked in retaliation for the release of the comedy the interview , starring seth rogen . the emails reveal the unguarded opinions of sony executives and reveal health concerns about their children . the data dump comes after november 's massive hack which has already cost the entertainment giant upwards of $ 100 million .\nprincess mary and her family visited a farm in kirke hyllinge , zealand . the australian-born royal was joined by her three youngest children . the family met a holstein friesian calf and petted the animals . the visit was part of denmark 's annual eco day celebrations .\nolympique lyonnais beat bastia 2-0 to go top of ligue 1 on wednesday . substitute mohamed yattara opened the scoring for lyon in the second half . ligue1 top scorer alexandre lacazette doubled the lead in the final minutes .\narsenal came out on top globally with 5.68 million followers on twitter . manchester united have over eight million followers on weibo , almost double that of twitter . barcelona have 5.4 million followers , the fourth most of any club in the world . chelsea are 11th on the list of clubs with most followers on the chinese microblogging site . tottenham are the only other premier league club to have more followers in china than on twitter -- 1,367,140 compared with 1,090,000 .\na group of doctors accused dr. mehmet oz of pushing `` quack treatments '' for financial gain . dr. peter bergen says he should have expected oz to stand his ground . he says oz 's critics were inept and may have actually boosted his media empire . bergen : oz 's university and hospital are increasingly serving himself at a cost to them .\nraheem sterling and jordon ibe have been pictured holding a shisha pipe . brendan rodgers has met with sterling to remind him of his professional responsibilities at liverpool . the 20-year-old has escaped club punishment after being pictured with the drug . liverpool boss rodgers has also warned ibe about taking the drug ` hippy crack '\ntottenham winger andros townsend scored england 's equaliser in their 1-1 friendly draw with italy in turin on tuesday night . townsend says paul merson 's criticism was motivation for him to score . the 23-year-old has had a topsy-turvy season for spurs .\noscar winner octavia spencer shocked and angered hundreds of fans at a recent book signing , acting like an ` ungrateful b **** , ' say eyewitnesses . the 44-year-old academy award winner was at barnes & noble bookstore at the grove in los angeles last week to autograph copies of her children 's book ` randi rhodes ninja detective -- the sweetest heist in history ' but there was nothing sweet about spencer , who complained constantly , refused to engage with fans or pose with them for a photo . before the night was over people were dragging their kids out of line , demanding refunds on the books and stormed out of the store in disgust .\nmichael carrick has played for england for 13 years , 310 days . sir stanley matthews reached 22 years , 228 days with 54 caps between 1934 and 1957 . carrick made his england debut against mexico in may 2001 as a teenager . the 33-year-old 's appearance against italy on tuesday night keeps him in the longest-serving list .\nchelsea beat shakhtar donetsk 3-2 in the uefa youth league final . izzy brown scored twice as chelsea became the first english team to lift the trophy . brown was on the bench for chelsea 's premier league clash with qpr . the 18-year-old was handed a taste of first-team action by jose mourinho in october 's champions league tie with maribor .\nee will give away free portable chargers in its shops to keep phones charged . customers will be able to swap the ` power bar ' for a new one at any time . the chargers will be free to ee customers , and other smartphone owners can also sign up to the service if they pay a # 20 fee .\nskywest flight makes emergency landing in buffalo , new york . passenger received medical attention before being released , spokeswoman says . 75 passengers will be moved to another aircraft , airline says . plane descended 28,000 feet in three minutes , cnn analyst says . says there was no indication of pressurization issue .\nkelly watson , 41 , was diagnosed with dementia on her 41st birthday . doctors predict her condition will deteriorate in just five years . she is terrified of forgetting her 17-year-old daughter , holly . she said the joys of watching her grow up had ` all been stolen from me '\njustine miliband , 44 , said she fell in love with her husband after she was bitten by a dog . she was campaigning for him in doncaster when she was attacked by a doberman . mrs miliband said she first met the labour leader at a dinner party hosted by a mutual friend . she said she thought he was ` good looking ' and ` unattached ' but he failed to tell her he was in a relationship .\nadrian peterson has been reinstated to the national football league . the running back will be able to participate in all scheduled activities with the minnesota vikings starting on friday . this after a ban that has been in effect since september 17 of last year following an incident in which he beat his young son with a switch . the vikings claimed they wanted him back on the roster , and he was set to earn $ 12.75 million for the upcoming season .\nmeghan blalock , 29 , is the managing editor of popular style website who what wear . she has written an article about body acceptance for the website . in the article , she describes being every different size from a two to a ten . she says she is now a healthy size eight and regularly does yoga .\nengland are getting rugby-fever ahead of the rugby world cup . the olympic stadium is preparing to host the tournament . former england prop david ` flats ' flatman has been touring the stadiums . he says stuart lancaster 's side must win fans with their style of play .\nmore than 1,000 crimes created by coalition in a frenzy of law-making . so-called crimes include diving into thames without authority and queue-jumping at tube station . in coalition agreement , tories and lib dems pledged to roll back labour 's ` state intrusion ' but research shows government has invented 22 ways of criminalising public every month .\nmanchester city face rivals manchester united in the premier league on sunday . vincent kompany believes a win will help rectify a disappointing season . manuel pellegrini 's side are currently in the relegation zone . the city captain admits that the derby game is crucial .\npeter barnett , 43 , is said to have caused a loss of # 23,000 to chiltern railways . he travelled from his oxfordshire home to london marylebone . but he pretended to have only gone from wembley , in north west london . barnett admits six counts of fraud by false representation .\nmarcelo bosch kicked a 55m penalty to win the game for saracens . saracen beat racing metro 12-11 in the champions cup quarter-final . sarries will now face clermont in the semi-finals in st etienne .\nnico rosberg finished third in bahrain grand prix behind lewis hamilton and kimi raikkonen . mercedes boss toto wolff believes rosberg was back to his best on sunday . rosberg is 27 points adrift of hamilton in the battle for this season 's title .\nrobert hugel , a new york police department officer , was checking in on his elderly parents on friday when he found them dead . jerry hugel and his wife marianne hugel were found in the garage of their home in floral park , queens along with two of their friends . the victims were all in their 70s and 80s and police believe they died of carbon monoxide poisoning . the couple had been married for 60 years and had five children .\nhillsborough investigators have released images of football fans . they were pictured carrying the wounded and tending to others at 1989 disaster . police say the images may be able to answer questions of victims ' families . officers have been unable to identify people in the images for years . appeal is part of ongoing home office inquiry into disaster which killed 96 .\nsurvey reveals three out of four people have little or no knowledge about the battle of waterloo . only just over half know duke of wellington led the british forces . one in seven believe that it was the french who were victorious in 1815 . young people are more likely to associate waterloo with the london railway station or the abba song than the actual battle .\npolice say 15 people were arrested on suspicion of murdering 12 christians at sea . the 12 were among 105 people trying to get to italy from libya in a rubber boat . police say muslims from ivory coast , mali and senegal threw the 12 overboard . other passengers told police they were spared `` because they strongly opposed the drowning attempt ''\nfaysal mohamed , 18 , was in the car with two friends when they were pulled over in south minneapolis on march 18 . the officer told the teens he was going to break their legs if they tried to run . the teens were cuffed and held for 45 minutes while they were searched and a background check was completed on them . minneapolis police confirmed an investigation is underway .\npeople magazine named sandra bullock the world 's most beautiful woman of 2015 . the oscar-winning actress is 50 . she calls the honor `` ridiculous '' and says she 's happy with who she is . gabrielle union , ariana grande and laverne cox also make the cut .\ndavid silva has returned to training with manchester city . the 29-year-old was injured during city 's 2-0 win over west ham on sunday . silva was caught in the face by an elbow from cheikhou kouyate . the spain international required eight minutes of treatment on the field . he was taken to hospital for examination but tests revealed no fractures .\naaron cook was overlooked for the great britain taekwondo squad at london 2012 . the 24-year-old has been denied a place in the 2016 olympic games . he applied for moldovan citizenship earlier this month and has received his passport . british olympic association confirmed the news on thursday morning .\ndzhokhar tsarnaev is on trial for the boston marathon bombing . peter bergen : the killing was `` heinous , cruel and depraved '' he says tsarnaev displayed a cold , callous indifference to his victims . bergen says the jury will likely be divided on whether to give tsarnaev the death penalty . he says the defense will argue that tsarnaev was not fully responsible .\nthe day anthony sideri used heroin was the day his life changed forever . sider i began smoking marijuana before , during and after school . he also experimented with mushrooms and acid . by 2005 , he had been snorting heroin daily for two years . he spent 22 months in jail and 22 months on probation for larceny and conspiracy .\ntrey moses is a star basketball player and down syndrome student at eastern high school . he asked his girlfriend , ellie meredith , to be his prom date . photos of the proposal have gone viral . ellie 's mom says she 's thrilled about the prom . `` that 's the kind of person trey is , '' she says .\namber heard , 28 , and johnny depp , 51 , arrived in brisbane on tuesday morning local time . the couple , who have been married for 10 weeks , were both wearing their wedding bands . the sighting comes just hours after people.com claimed they were ` leading separate lives ' because they had n't been photographed together in public since their february 3 nuptials .\nbrian and joan ogden , from wigan , were robbed in benidorm . couple were on their way back to the hotel don pancho when they were robbed . cctv footage shows thieves reaching into mr ogden 's pocket . couples confronted thieves and got their belongings back .\nbeachgoers in florida were trying to throw baby tortoises in the ocean to protect them from beach predadtors . florida wildlife officials warn that people should not throw baby turtles in the ocean because they may be of a species that can not swim . gopher tortoise are protected by florida law and sea turtles are on florida 's endangered species or threatened survival list .\nnicolas diaz , 81 , allegedly stabbed kevin rivera , 21 , to death on sunday . he allegedly intervened after his granddaughter amber diaz , 21 , . and her ex-boyfriend got into dispute . couple had just returned home after celebrating daughter 's first birthday party . diaz allegedly stabbed mr rivera with a knife , before fleeing the scene . when medics arrived at property , they found mr rivera dead of chest wound . diaz has since been charged with manslaughter and criminal possession of a weapon .\nu.s. citizens noelle velentzas and asia siddiqui are accused of plotting attacks in the u.s. , prosecutors say . the women are accused in a federal criminal complaint of plotting to build an explosive device . the complaint paints a picture of a disturbing trend in homegrown violent extremism .\ndita von teese will offer burlesque workshops at canyon ranch , a luxury health resort in tucson , arizona . the fashion designer and author is famous for her raunchy routines . she will team up with burlesquesque teacher catherine d'lish to offer striptease classes .\nex-new england patriot aaron hernandez is accused of killing odin lloyd . he has pleaded not guilty to murder and weapons charges . jury deliberations began tuesday in his trial . the motive in the case is unclear , but jurors want to know a motive . hernandez 's fiancee and two sisters are on trial for perjury .\ndanny ings is a target for manchester united and liverpool . the burnley striker has been linked with a move to borussia monchengladbach . ings has scored nine premier league goals this season . the 22-year-old is keen to keep his career moving forward .\nrussia will host the 2018 world cup in june and july , fifa boss sepp blatter has revealed . blatter met russia president valdimir putin on a world cup visit on monday . fifa president said he was proud of russia 's preparations for the tournament . blater said he expected the finals to be a ` wonderful ' event .\ngood samaritan jason warnock , 29 , was driving wednesday morning in lewiston , idaho when he saw a vehicle crashed into a chain-link fence on the edge of a cliff . he then parked his car , ran up a pedestrian footbridge and pulled driver matthew sitko , 23 , out to safety . since he did n't stop to give police his name , warnock remained a mystery for nearly 24 hours as the photo of the self-less rescue went viral online . warnock has since come forward to identify himself and speak more about the incident which he wants no credit for .\nchelsea manager jose mourinho has hit out at arsenal . mourinho branded their 11-year wait for the title as ` boring ' the blues drew 0-0 with arsenal at the emirates stadium on sunday . mourinho praised his captain john terry for his ` fantastic ' performance . the special one has previously labelled arsene wenger a ` voyeur '\nsamantha fleming , 23 , went missing from her home in anderson , indiana , on april 5 . her body was found friday at a house 180 miles away in gary . police believe a woman posing as a social worker lured fleming to the city and killed her . the woman then took fleming 's baby and fled with the child . the suspect is now in police custody in texas . the baby , serenity , has been found and is safe .\naustralian rugby union will pick ` elite ' players based abroad . matt giteau is eligible to play for the wallabies again . the fly half has been in superb form for toulon in europe . gite pau missed out on selection for the 2011 world cup . england and wales are facing a new world cup threat .\nprime minister 's adviser sir brian jarman called for a public inquiry . jeremy hunt said a future conservative government would look into the findings ` in detail ' the head of the royal college of nursing said nurses who had faced five years of pay freezes would struggle to comprehend the six per cent pay rise for their bosses .\nmike holpin claims he has 40 children by 20 women and says he has ` more to come ' says he is ' fertile as sin ' and wo n't use contraception because he loves sex . says 16 of his children have been taken into care but he wants to make it up to them .\nprincess eugenie , 25 , was seen in new york wearing a black and cream miniskirt . she was seen texting on her mobile as she navigated the concrete jungle . the british royal is currently working in new new york . recently turned 25 and celebrated her birthday with a party at st james 's palace .\nthe indian village of supai is concealed at the bottom of havasu canyon in arizona . the havasupai tribe are the smallest indian nation in america , with just over 600 inhabitants . the village has a cafe , general stores , a lodge , post office , school , lds chapel , and a small christian church .\nqpr goalkeeper rob green has won 12 england caps . green made a calamitous error in the world cup against usa in 2010 . west ham manager sam allardyce says green can rival joe hart for england no 1 spot . green faces his former club at loftus road on saturday .\nfossil records show biodiversity in the world has been increasing for 200 million years and is now at its highest level ever . stewart brand , president of the long now foundation , believes the focus on widespread extinctions may actually be harmful . he argues it is highly unlikely that the planet is facing a sixth mass extinction as many threatened species are recovering .\nchelsea and england forward eniola aluko has been nominated for the pfa women 's player of the year award . manchester city defender lucy bronze is the current holder of the award . karen carney , jess clarke , kelly smith and ji so-yun have also made the shortlist .\ngang of four held up a cash and carry in derby on september 26 last year . they were spotted trying to escape along the m42 in a stolen car . the chase was captured on camera by a police helicopter . the car was then spotted ramming two police cars as they tried to escape . the gang then jumped out of the car and fled along the busy a45 . they have now been jailed at birmingham crown court . three of the men have been sentenced to over 30 years in prison .\nconchita van der waal offered a range of ` kinky ' sexual services from $ 450 an hour . the 46-year-old had worked at the central bank of the netherlands for eight years . she was fired over ` integrity issues ' after her identity was exposed . prostitution in holland is legal but sex workers must pay tax and register .\nhillary clinton has launched a campaign ad featuring women . julian zelizer says it 's fine to celebrate that clinton is a woman , but it 's not the best strategy . he says democrats who overplayed their women appeal in 2014 crashed and burned . zelizer : clinton will likely win the women vote , but she needs to court the other sex .\nlabour party feared voters would stay at home to watch steptoe and son . so leader harold wilson approached the bbc to delay the broadcast . he told director general sir hugh greene the show could cost him 20 seats . mr wilson 's party won the 1964 election by four seats .\nrachael bishop , 19 , punched a man who tried to steal money from the cash register of the baskin robbins store in lynnwood , washington . she said she tried to plead with the man when he ordered her to hand over all the money in the cash registers . when that did n't work she took action . as the man reached into the till , bishop tried to swat his hand away . when she did n't stop him , she started punching him in the head multiple times . the robber punched bishop right back , and that 's when she said he managed to steal $ 280 from the register .\na democratic party source says clinton will officially announce her candidacy for president on sunday afternoon . the former secretary of state will barnstorm iowa in a series of ` small ' meetings with voters . clinton will then fly to new hampshire , where she will hold a series of campaign appearances . the republican national committee released a scathing video ad highlighting clinton 's scandals .\ntycoon harvey boulter is behind bid to defeat a ` golden boy ' tory candidate . has already given # 30,000 to ukip candidate fighting fox in somerset seat . boulters also spending another # 30k to try to defeat tom tugendhat .\nchampions league semi-final is set for june 6 in berlin . real madrid face barcelona , who beat psg 5-1 on aggregate . bayern munich take on juventus , who have never won the champions league . real vs barca would be a fascinating clash . cristiano ronaldo and lionel messi would go head-to-head .\nflamur ukshini is a university student from the kosovan capital of pristina . 23-year-old has almost 40,000 followers on instagram thanks to his likeness to zayn malik . every picture that flamur posts is immediately fawned over by legions of directioners .\nhafeez bhatti and his wife khalida were abused on a sydney train on wednesday . the couple are ` hardworking , honest and kind ' members of the islamic community in brisbane . stacey eden overheard the racist tirade and stood up for the couple . the woman was recorded on video berating the muslim couple for wearing a black headscarf . the brisbane couple 's mosque has offered ms eden an all-expenses-paid trip to visit the gold coast for a night .\nspanish media praise barcelona after their champions league win . luis suarez and neymar scored in 3-1 win over psg on wednesday . gregory van der wiel pulled one back for the hosts in the second leg . l'equipe are damning of psg 's performance after the first leg .\nlos angeles-based hyperkin has designed a case that adds the iconic directional arrows , plus the a and b buttons from the nintendo game boy to an iphone . called smart boy , it lets gamers play their existing game boy and game boy color games cartridges on their apple handset . it was originally devised as part of an april fool 's joke , but the popularity and demand for a real product was so high the firm has announced plans to sell it .\nrangers have been de-listed from the london stock exchange . dave king failed to find a new nominated advisor for the club . rangers are now considering a switch to the isdx market . stuart mccall has been reassured that the decision will not affect his squad 's promotion push .\nman believed to be from mozambique died from his injuries in johannesburg . he is one of at least six people who have been killed in south africa this week . police have made 30 arrests but are struggling to subdue machete-wielding gangs . many families in johannesberg have fled their homes and fled to a refugee camp . president jacob zuma has called for an end to the ` shocking and unacceptable ' attacks on immigrants from africa and south asia . at least six have been dead and thousands displaced since violence erupted in durban .\nmonbeg dude was a fast-finishing third in the grand national . the horse was bought for # 12,000 at auction after a boozy dinner . zara phillips had coached monbeg dude to seventh place in last year 's race . the queen 's granddaughter was there with her husband mike tindall .\nperak mufti tan sri harussani zakaria said women ca n't say no to their husbands . he said the prophet said even if they were on a camel , they must have sex . zakaria also said that marital rape was ` made up ' by europeans . his comments have horrified many in malaysia , where 3,000 women are raped a year .\nmother-in-law judith russell took to the stand in the trial of boston bomber dzhokhar tsarnaev . she told how her daughter katherine married tamerlan tsarnaev and converted to islam . her words came as jurors decide whether dzhkhar should be put to death for the 2013 bombings . defense lawyers for dzhakhar have argued he was forced into the killings by his older brother tamerllan . tamerland was killed in a police firefight a few days after the bombing , which he masterminded .\nsurvey reveals government jobs are among the jobs aussies most want . department of immigration came third in survey of where most want to work . virgin australia was named australia 's most attractive employer . other jobs included the abc , seven network and qantas .\n` landspout ' tornado filmed by iraq and afghanistan veteran stan cole . he captured the wall of wind in loraine , western texas , on wednesday . landspouts are too small to appear on weather radars and last 15 minutes . other photographs from the area show other ` landpouts '\njames robarge , 45 , of vermont was sentenced to 30 years to life in prison for second-degree murder in the death of his wife kelly robarge . kelly , 42 , disappeared from her charlestown , new hampshire , home on june 27 , 2013 , and her body was found 10 days later in unity . robarge has served nearly two years behind bars which means he could be eligible for parole in about 28 years .\nsharon winters met kevin hawke on an online dating site in 2013 . the pair had a one-night stand and ms winters was ` smitten ' but less than two weeks later she was dead after he stabbed her in a frenzied attack . her brother stephen robinson , 44 , is speaking out to warn other women to be careful when looking for love online .\njessica ennis-hill has not competed since the london anniversary games of july 2013 . the 29-year-old has not returned to the track since the birth of her son reggie . ennis hill will compete against katarina johnson-thompson in austria in may . she admits she has struggled to balance motherhood with her olympic aspirations . enni-hill wants to win a medal at the rio olympics in 2016 .\nrobert kirkland died on saturday morning in union city , tennessee , from kidney failure complications . he founded kirkland 's home decor stores with his cousin carl in 1966 . kirkland expanded the chain exponentially and donated millions to found the discovery park of america education center and tourist attraction in tennessee .\nraheem sterling admits he is not ready to sign a new contract at liverpool . the 20-year-old wideman has been offered a # 100,000-a-week deal to stay with the club . but sterling has managed just six goals this season - one less than stoke frontman jon walters .\n`` the bible continues '' debuts on nbc . `` mad men '' wraps up its final season . `` louie '' returns for a fifth season . billy crystal returns to television in a comedy mockumentary . `` marvel 's daredevil '' debut on netflix .\nroyal county of berkshire polo club was founded in 1982 . prince charles was the first member and has since become an elite venue . the club has tried to launch a range of polo-related accessories . but the beverly hills polo club objected to its logo . european court of justice ruled against the club on four items .\nthe drone was flying a can of asparagus tips to a top restaurant in the netherlands . it crashed into a field after taking off from the restaurant 's parking lot . restaurant owner ronald peijenburg has previously used a formula 1 racing car , hot air balloon and a helicopter to deliver the vegetable .\nsocial media reaction to bruce jenner 's announcement was mostly positive . jenner 's family was quick to express their support . the former olympic champion came out as transgender on friday night . the news was welcomed by advocacy groups and celebrities . his political views , his gender , his sexuality are all irrelevant , '' one twitter user wrote .\ndarron gibson has been ruled out of the rest of the season with a metatarsal injury . everton manager roberto martinez expects gibson to return to pre-season in the best possible shape . martinez has admitted romelu lukaku is only ' 50/50 ' to be involved in saturday 's trip to swansea owing to a hamstring injury .\nbradley parkes , 16 , is fighting for his life in a coma after a suicide attempt . he was found hanging in the woods with a suicide note . his mother tiffany , 35 , said he had been tormented for months by a gang . she described how her son had been robbed at knifepoint several times .\nfrancis called the mass killings ` the first genocide of the 20th century ' the pope made the comments at a 100th anniversary mass on sunday . turkey summoned the holy see 's ambassador in ankara in protest . turkey said pope francis has caused a ` problem of trust '\neight-year-old boy was taken to hospital after a playground prank went wrong . police in manchester have now issued a warning to parents over the ` sleeper ' prank . the game involves children holding their nose and mouth shut until they pass out . greater manchester police say the prank is potentially fatal .\ntexas a&m professor irwin horwitz sent an email to his strategic management class of about 30 students saying he was going to fail all of them . he claimed that they cheated in class and were disruptive and rude . he said that he had been called a ` f ****** moron ' to his face . the university has said that the failing grades horwitz 's wishes to give out will not hold .\nsir ranulph , 71 , ran for 30 hours in temperatures topping 50c in the south moroccan desert . he completed fourth stage but was taken to medical tent because of concerns for his heart . he described the experience as ` more hellish than hell ' and said he became woozy . but he still has one more marathon to complete tomorrow before finally finishing race .\nindian schoolgirl died after being thrown from a horse while on holiday in india . india mayhew , seven , suffered serious head injuries after horse bolted at riding facility in matheran 20 miles east of mumbai . she had been riding just metres ahead of her father gavin , 43 , and a member of staff when the tragedy unfolded .\nmichael churton , 38 , from new york , was with four colleagues at the base camp , 17,500 ft above sea level , when he was knocked down by the tsunami of snow . he believes that the force of the earthquake shook loose a big ice shelf , which careered down the mountainside towards him and a group of people he was with . churon described how he told his group to get down just before the snow devastated the basecamp . he was knocked back and suffered facial injuries .\nmiroslav klose scores twice in lazio 's 4-0 win against empoli . stefano mauri and antonio candreva also on target for the biancocelesti . roma now 13 points behind juventus after drawing 1-1 at torino . napoli beat fiorentina 3-0 to return to fourth place in serie a. palermo record just their second away win of the season .\nin 2010 lishan wang was found incompetent to stand trial for the second time . he was charged with murder in the shooting of yale university doctor vajinder toor outside his home in april 2010 . wang was originally ruled incompetent in 2010 , but he was restored to competency after being treated at connecticut valley hospital . a new evaluation was ordered after a public defender asked for the court to terminate wang 's self-representation . mental health experts said wang displayed ` paranoid thinking ' and was ` guarded and suspicious ' when discussing a relationship with court-appointed lawyers .\nvictoria mckennon has cystic fibrosis and has to miss dozens of lessons . she is one class short of the credits she needs to graduate from plano senior high school . the 17-year-old is desperate to take part in the graduation ceremony in june . school officials have refused to let her take part , saying she must meet requirements . her family has now filed a civil rights complaint with the department of education .\ngoldfish are being caught weighing up to 2kg and koi carp up to 8kg and one metre in length in the waterways of western australia . introduced species also bring exotic parasites and disease with them . research conducted by dr david morgan and stephen beatty found that at least 13 species of fish had been introduced into south-western australia . pet owners are believed to be the biggest culprits .\ncecil frances alexander wrote all things bright and beautiful at llanwenarth house . kim davies bought the tudor manor in rural wales in 2008 for # 675,000 . he then spent # 1million on a gaudy makeover , including a whirlpool bath . davies , 60 , also installed chandeliers and spotlights in the ceiling . he has now admitted breaking planning laws and could face prison .\nseven-car maglev hit a top speed of 375mph -lrb- 603 km/h -rrb- and travelled for almost 11 seconds at speeds above 373mph -lrb- 600km/h -rrb- , during a test run near mount fuji . it beat last week 's speeds of 366mph -lrb- 590kph -rrb- and beat the train 's previous 12-year record of 361mph -lrb- 581km/h -rrb- maglev trains use magnets to lift the carriages above the track and is propelled by electrically charged magnets . the technology promises a ride that 's smoother , quieter and almost twice as fast as traditional high-speed rail .\nphilip and victoria sherlock have been living out of their car for three months . philip lost his job as a gardener following a stomach operation . the pair were forced to sell furniture and take out pay-day loans . they even celebrated their ninth wedding anniversary by sharing a twix . but thanks to a manchester business owner , philip has been thrown a lifeline .\na large protest opposing the closure of remote indigenous communities in wa has shut down streets in central melbourne on friday . several thousand people gathered outside the city 's main railway station flinders street at 4pm on friday , with police following them all the way . this comes as the queensland police service refuses to issue an apology to an indigenous officer after claims the word ` abor ' was written on his station roster .\ngeorge davon kennedy was arrested in georgia , police say . he was the third suspect in the case , police said . two others have been arrested in the alleged gang rape . the alleged assault was videotaped on a crowded stretch of panama city beach . the woman was visiting panama city , florida , at the time .\nbloomberg computer system crashed at its offices in the city of london . more than 300,000 screens suddenly went offline for several hours . government 's attempts to sell # 3billion of bonds on debt markets delayed . bloomberg blames ` combination of hardware and software failures ' for crash . but sources inside company say spilt can of coke may have caused the problem .\ncrystal palace winger wilfried zaha posted a photo on instagram . the england international is seen in a number of close-up shots . ea sports are already taking close-ups of football stars for fifa 16 . the video game series is expected to be the best yet .\nbali nine ringleaders andrew chan and myuran sukumaran could face a firing squad within days . indonesian officials sent letters ordering that preparations be made for their executions . authorities in indonesia give death row prisoners and their families 72 hours notice before they are executed . the australian embassy has been summoned to nusakambangan island on saturday .\nangie donohue has told how her husband of four years , daryl scott donohues , tried to hire someone to kill her . the tasmanian said he stalked and terrorised her before trying to hire ` various people ' to kill the woman he loved . she said he became increasingly possessive , always checking her whereabouts and dictating exactly what she could and could not do . she was forced into hiding after he struck their youngest son , who had brain damage .\ngeologists warn of the potential for more activity friday . the volcano has already erupted twice this week . evacuations in the region involve not only people but animals as well . a 12-mile exclusion zone has been established around the crater . `` it was impressive to see an enormous mushroom cloud , '' a resident says .\nturia pitt , from western australia , was burned in a 2011 ultramarathon . she was running through the kimberley when she was caught in a blaze . she suffered burns to 64 per cent of her body and was left with serious burns . turia is now fitter than ever and is training to compete in the 2016 melbourne ironman . she is hosting a fundraising gala on thursday to raise funds for volunteer medicos to go overseas to save lives and livelihoods .\nedinburgh host london irish in european challenge cup quarter-final . dougie fife , alasdair dickinson and ross ford all return to the side . the trio were rested for last week 's guinness pro12 win over scarlets . head coach alan solomons has named his strongest xv .\nbeijing international airport is set to launch the world 's biggest terminal in 2018 . the gigantic terminal 1 will cover 700,000 square metres and will handle 45million passengers a year . the six-tier concept aims to decrease customer walking distances , and increase connectivity .\nceltic lost 3-2 to inverness in the scottish cup semi-final on sunday . josh meekings handled leigh griffiths goal-bound header but officials failed to see it . celtic defender virgil van dijk believes the decision was wrong . van dijk was sent off in the champions league last 32 against inter milan .\nnewly-discovered records reveal details of fanny cornforth 's death . the west sussex-born model was dante gabriel rossetti 's muse . she died penniless and suffering from dementia at the age of 74 . records were found in the archives of graylingwell hospital in chichester . cornforth was buried with other people at the hospital in 1909 .\ndiego de girolamo is out of contract at sheffield united at the end of the season . the italy under 20 international is on loan at northampton town . benfica and juventus are interested in signing the forward . celtic and southampton are also monitoring the situation .\nmodern-day martin burgess clock b is based on john harrison 's 18th century clock . it was designed to solve the problem of determining longitude at sea . it has been part of a 100-day trial at the royal observatory , in greenwich . experts said it would neither lose nor gain more than a second in 100 days .\ncaroline and steve cartwright were convicted of noise pollution and harassment . they were fined # 9,000 for their ` raucous screams ' during sex sessions in italy . neighbours first took them to court in 2009 after complaining about their wails . they have now been ordered to pay # 7,000 in damages to their neighbours . the couple , who are in their 30s , have now moved elsewhere .\nthree people have died after a crush outside a nightclub in santiago , chile . crowd were trying to get into see british crust punk band doom who were performing inside . seven people are in a critical condition in hospital after the tragedy . several people have been arrested in connection with the tragedy .\nstudy tracked the decisions of 1,893 newlyweds over the past five years . 50 % of bride and grooms opt for civil ceremony when getting hitched . purple is now the most popular colour in the uk -lrb- 19 % -rrb- for bridesmaids dresses .\ngordon brown has warned the snp want an snp vote in the general election . former pm said that snp leader nicola sturgeon 's answers on the issue are ` all evasion ' but he said her party want ` chaos and constitutional crisis ' at westminster . he urged ` patriotic scots ' to vote labour to end the bedroom tax .\ndrone found on roof of prime minister 's official residence in tokyo . police and bomb squad called after member of staff spotted the drone . the 50-centimeter wide drone was equipped with a camera and a bottle . it contained traces of a radioactive substance , police said .\nmanuel pellegrini 's side face manchester united at old trafford on sunday . vincent kompany is an injury doubt for the game . the city captain played 90 minutes against crystal palace on monday . pellegrini insists he does not fear for his job despite city 's poor form .\nyemeni woman tells cnn she tried to cover her baby 's ears the night of the bombing . she and her family fled the island of birim in a boat with 25 others . they crossed the bab al-mandab strait to djibouti . the u.n. says thousands more refugees are expected .\nthe emirates are set to sign a three-year deal with the fa cup . the emirates fa cup will be rebranded as the emirates fa cups . arsenal signed the biggest club sponsorship agreement in english football history in 2004 after signing a 15-year agreement with the dubai-based international airline . the deal provided emirates with naming rights to arsenal 's 60,000 seat stadium and a place on the club 's shirt .\nbrad pitt and angelina jolie pitt have a net worth of # 260million . the couple have been spotted staying at luxury hotels around the world . the intercontinental in sydney was the scene of their infamous balcony argument . the hard rock hotel & casino in las vegas is a family-friendly four-star hotel .\nhiv self-testing kit on sale for the first time in the uk . the 99.7 per cent accurate biosure hiv self test enables people to test themselves when and where they like . it uses a small amount of blood from a finger-prick sample to detect the presence of hiv antibodies .\npaul murray says actions of previous boardroom regimes are to blame . rangers will be forced to delist from the alternative investment market . murray insists the new board 's plans for the future will be unaffected . sandy easdale claims shareholder group he heads is considering legal action . former football board chairman also accused dave king of making ` misleading ' statements .\nbenik afobe scores winner as wolves beat wigan 1-0 at the dw stadium . latics have james mcclean sent off for second bookable offence in injury time . latic 's relegation battle takes a turn for the worse with brentford game next weekend .\nswansea manager garry monk will hold talks with michu before making decision on spaniard 's future . michu has spent the season on loan at napoli after injury problems . the 29-year-old said he did not know whether he would be returning to swansea this summer .\ngunfire erupts at governor 's compound in jalalabad , police chief says . an afghan soldier is killed and another is injured , police say . a u.s. military official says a u.s. soldier is dead and other troops are injured . the incident occurred shortly after a senior american official met with a provincial governor .\nplymouth university engineers are building a handcycle that can reach 21.39 mph -lrb- 34.42 km/h -rrb- the human powered vehicle -lrb- hpv -rrb- will attempt to beat the women 's arm-powered speed record in nevada later this year . it will be piloted and powered by paracyclist liz mcternan and will need to travel in excess of 21.40 mph -lrb- 33.42 km/h -rrb- , according to the team . the current benchmark is held by tracy miller who broke the record on 13 may 1995 on a bike called chairiot .\njeremy jackson was taken into police custody on saturday for assault with a deadly weapon in west lake , la. . the 34-year-old is accused of stabbing a man with a knife on friday . the victim told police the man was hobie - jackson played hobie buchannon , the son of david hasselhoff 's character mitch buchannon on baywatch . jackson is well-known for his troubled personal life . he left baywatch , which he starred in from 1991-1999 , because he was suffering from a severe drug addiction , according to an interview with e! on child star confidential . in 2011 he was treated for steroid addiction on celebrity rehab with dr drew .\na new survey in the hollywood reporter asked producers , agents and executives to list those who can command a major opening based on their fan base . sandra bullock topped the list of the highest-earning actresses in 2014 . leonardo dicaprio , matt damon and robert downey jr also made the top four .\nstudy by greetings card firm forever friends found that a third of adults met their closest friends while at school . social networks such as facebook and twitter now play a major role in nurturing new friendships . women are most popular at 25 years and 10 months , with men hitting the friendship high point a little later at 27 years and three months .\nthis week 's trending stories included a rainbows and a kylie jenner challenge . in china , strippers are the latest focus of a crackdown on vice . a 102-year-old woman went back in time for her promposal . a military dad photobombs his son .\nedinson cavani visited a local animal sanctuary after barcelona defeat . the psg striker posed for pictures with goats , bears and llamas . cavani has struggled in the shadow of zlatan ibrahimovic at paris saint-germain . manchester united are said to be monitoring the striker 's situation closely .\nphotographer marc latremouille captured the moment a great grey owl swooped on a tiny field mouse in ontario , canada . the bird stalked the rodent from snowy treetops before launching its attack . the predator , which has a five-foot wingspan , is clothed in soft feathers making its attacks almost silent .\nalexander soumbadze has been charged with eight counts of possessing child pornography . police say the 26-year-old georgian national fled the country after admitting to trading and receiving child pornography videos . an investigation also uncovered videos of the martial arts expert inappropriately touching and engaging in sexual acts with adolescent males at a maryland karate studio . a warrant has been issued for the arrest of the bethesda resident .\nmohammad hafeez was banned from bowling after being reported for a suspect action five months ago . the pakistan all-rounder then injured his calf and missed out on the world cup in australia and new zealand . but the 34-year-old is free to resume bowling in international cricket after testing in chennai .\nfive-month-old elijah suffers from type 1 spinal muscular atrophy . born strong , he 's now ` very floppy ' and doctors say he will probably not survive his second birthday . his parents jessica and andrew mccrae have compiled a 30-item bucket list for their son to complete before he passes away . the family are planning to show elijah as much of the world as they can in his final days .\nnorway 's government announced it will switch off fm radio in january 2017 . it will be the first country in the world to do so and could save # 17 million a year . the uk had planned to switch off its own fm service by 2018 but the plans were later shelved following objections from commercial radio stations .\ncharlie adam saw thibaut courtois off his line to score the goal of his career . the scotland international struck from inside his own half in the first half . adam 's effort was clocked at more than 45 miles per hour . stoke city lost 2-1 to chelsea at stamford bridge on saturday .\nwomen aged 17 to 25 compared themselves to friends on facebook rather than celebrities . facebook consumes 40 per cent of time young women spend online , study found . women aged 17-25 read magazines ` infrequently ' but checked facebook every few hours . research by psychologists at university of new south wales in australia found women preferred facebook to magazines .\njonathan crombie died of a brain hemorrhage on wednesday night in new york . he was best known for his role as gilbert blythe in the canadian television drama film anne of green gables and two sequels . crombie was the son of former toronto mayor and canadian cabinet minister david crombie .\nthe 79th masters begins at augusta national on wednesday . marc leishman has withdrawn from the tournament to be with his wife . billy payne has ruled out starting a women 's masters . jack nicklaus ' solitary hole-in-one was beaten by camilo villegas ' two .\nmatilda kahl is an art director at saatchi & saatcho in new york . she has worn the same outfit to work every day for three years . her uniform is made up of black trousers , a white shirt and a custom leather rosette . she says she wants to be judged on her work and her work only .\nemmanuel adebayor has only one year left to run on his current contract . the tottenham striker posted a video of himself performing a strange jig in front of the arc de triomphe in paris . the togo international recently insisted he was prepared to fight for his place in the tottenham team .\nboris johnson has promised # 60 million of public money for the project . george osborne has promised a further # 30 million for the scheme . opponents say the bridge is a vanity project and should be funded by the heritage lottery fund . a judicial review will consider lambeth council 's handling of approval for the bridge .\nbrett matthew paul thomas was 18 at the time of his killing spree in orange county in 1977 . he was sentenced to life with the possibility of parole but died behind bars last year . thomas and friend mark titch killed four people during robbery or burglary attempts . on friday , the parole board denied thomas ' request for parole and said he can not reapply for seven years .\nporto face bayern munich in the champions league quarter-final on tuesday . the portuguese side have a 3-1 first leg advantage over the bundesliga champions . but julen lopetegui believes his side will have to hit top form to progress . bayern are missing arjen robben and david alaba through injury .\nhomes with waitrose nearby cost 12 per cent more than those in surrounding areas . but having aldi or lidl on your doorstep means your house could be worth thousands less . houses near several different stores enjoyed the highest price premiums . homes in clifton , bristol , cost 64 per cent -lrb- # 153,488 -rrb- more than in nearby areas .\ntwo traffic police officers were almost decapitated after caravan sped past . the caravan had a back window open and circled the officers on m5 in gloucesteshire . officers spotted the window was open with just seconds to spare . the pair were forced to dive out of the way before they were severely injured .\nusers have taken to twitter to voice their frustrations with ya heroines . they use the hashtag #realisticya to describe their own lives and experiences . many look at similar dystopian situations to those in the novels . others look at realistic situations that arise with teen romances .\nchinese hospitals harvesting 11,000 organs from political prisoners every year . some patients were still alive as they were secretly placed in incinerators . human rights lawyer david matas claims people are being killed for organs . documentary reveals red cross estimates that just 37 people are registered organ donors in china .\nchancellor admitted he was secretly addicted to hit bbc series poldark . he said the television show was a ` fantastic advert for britain ' and particularly cornwall . mr osborne confessed to a crush on its female lead character demelza . he vowed to maintain tax relief on big tv productions .\ncheck it gang is the only documented gang of gay and transgender youths in america . members , aged 14 to 22 , live in one of washington dc 's most violent neighborhoods . but they are now fighting to break the cycle of poverty and violence . they have set up their own clothing label and are putting on fashion shows . some of them are even working stints as models . they are the subjects of a new independent film , which tells of how some of them have served time in juvenile prisons .\nthe snake was found at the base of a tree on a footpath in surfers paradise . police mistakenly believed it was a harmless python and set it free . the reptile could pose a threat to local wildlife and even people 's pet cats and dogs . snake catcher tony harrison warned that if the large-predatory boa has inclusion body disease ` it can be unbelievably contagious if that gets loose in australia '\nfour-metre long king cobra raja delivered almost 500 milligrams of deadly toxin . the toxin is enough to fill a shot glass and 40 times the amount of venom of a brown snake . the eight kilogram cobra was extracted by veteran handler billy collett at gosford 's australian reptile park , north of sydney . the venom will be distributed between research institutes across the country .\na new facebook graph reveals the favorite baseball teams in the country by sorting through people 's likes . the graph , created by facebook , uses profile likes and then breaks the individuals down by country to determine a winner . the new york yankees and boston red sox come in first and second respectively in terms of the number of people who claim them as their favorite .\ntim sherwood could move to get chris ramsey on his coaching staff . the aston villa manager wants ramsey to join his staff . sherwood also wishes darren bent was still at villa park . the striker has hinted he could be interested in reviving his career . ramsey has lost six out of his seven games in charge of qpr .\nthe california music festival is a hotbed of bacteria and diseases . festival-goers can catch flu , norovirus , salmonella , hepatitis a and shigellosis . the festival has installed permanent restrooms , but even the new stalls could still be harboring germs .\ntennis star andy murray and girlfriend kim sears to wed in dunblane , scotland , tomorrow . kim 's mother judy murray , 55 , has undergone a makeover since her appearance on strictly come dancing last year . but leonore sears , 53 , has long been admired by those on the tennis circuit .\ndiego maradona kicked out at a steward and lashed out at cameraman after charity match in bogota . the 1986 world cup winner scored the winner during an exhibition match in colombia to support the peace process in colombia . maradonna was surrounded by media and cameraman as he applauded his fans .\nsiem de jong played 45 minutes for newcastle 's under-21s on wednesday . the 26-year-old midfielder has been out for eight months with a collapsed lung . the dutchman is hoping to return to the first-team before the end of the season . de jong is hoping he can make his return against swansea on november 25 .\narsene wenger 's side are not interested in selling jack wilshere . the arsenal midfielder has been linked with a move to manchester city . wilsheres father andy is set to discuss his son 's future with city . the 23-year-old has not played for the first team since november 22 . arsenal face burnley at the emirates stadium on saturday .\nfloyd mayweather takes on manny pacquiao in las vegas on saturday . justin bieber will lead out mayweather 's entourage for the mega-fight . the pop singer has accompanied mayweather into the ring numerous times . mayweather and pacquioa are set to fight for the wbc welterweight title .\nparents of young cancer sufferers expect to be offered same treatment as ashya king , one of his doctors has said . clinicians in an ` impossible situation ' as a result of king family 's flight to spain after disagreeing with doctors . they ignored medical advice and took him to prague for proton beam therapy .\njames ramirez , 37 , said he has concerns over care of wife gillian nelson . she died after complications arose with birth of their son wesley . mr ramirez was called to princess royal university hospital in bromley , kent . he said she was ` delirious , spaced out , obviously tired ' and pale . midwife said miss nelson was being observed regularly with the baby .\none of the biggest challenges for rescue workers is reaching affected people in remote mountainous areas . cnn 's john sutter visits a hospital treating the injured in gorkha , nepal . the hospital campus is overflowing with patients ; it is mostly a transit point . the injured get necessary first aid and as soon as possible are transferred to bigger hospitals .\nmike pence 's decision to sign a religious freedom law has drawn criticism . julian zelizer : pence has scored points with ultraconservatives . he says the issue of lgbt rights will drag the gop field farther to the right than it had hoped . zelizer says it 's doubtful a candidate will win if he or she is not a strong supporter of lgbt issues .\nfish and chips is a british institution as well as a national money-spinner . but it is actually believed to be partly portuguese and partly belgian . the tea bag was accidentally invented by a new york merchant . and polo was introduced to brits by locals in the indian state of assam .\nfranck ribery turned down a move to real madrid five years ago . the frenchman says he was told he was as important to bayern munich as lionel messi is to barcelona . real wanted riberys after he fell out with then-head coach louis van gaal . the 32-year-old has won four bundesliga titles and a champions league with bayern .\ncui hongfang , 73 , was knocked over by a canadian tourist at the great wall of china . mrs hongfangs husband said the tourist was rushing down the stairs . the canadian woman , identified by chinese media as debra fortin , has agreed to pay compensation to the victim 's family .\ndallas architects matt mooney and michael gooden have transformed 14 shipping containers into a stunningly modern home . the 3,700 sq ft three-bedroom home , dubbed ` pv14 , ' boasts a 40ft long swimming pool on the ground floor that reflects the two-story glass-paneled tower . the home also features a 1,400 sq ft roof deck that can fit up to 150 people and a 360 degree view of white rock lake and downtown dallas .\nus has deployed aircraft carrier uss theodore roosevelt to yemeni coast . it is keeping an eye on eight iranian cargo vessels suspected of carrying weapons . the ships ' presence raised fears within the saudi-led coalition . it 's helping yemen 's government fight off iranian-backed rebels known as the houthis .\nthe prime minister 's wife wore a # 185 emerald green wrap dress from the fold . she was at the conservative party 's manifesto launch in swindon . the mother-of-four is a huge fan of british designers . she sat next to george osborne and william hague at the event .\ncoroner belinda cheney will write to government chiefs over lack of swimming lessons . rony john , 15 , drowned in the river great ouse in hartford , cambridgeshire . he had been swimming with friends on the first day of his summer holidays . coroner said she would ask why swimming is not included in secondary education .\nparis saint-germain host barcelona in champions league quarter-final . mark clattenburg will be the only english official in charge of the tie . clattenberg is regarded by uefa as england 's top official . he will be assisted by five other englishmen at the parc des princes .\nu.n. 's human rights chief zeid raad al-hussein told a special session of the u.n. human rights council in geneva . he said the reported use of children as shields and human bombs would constitute war crimes and crimes against humanity . comes in response to reports that hundreds of women and children had been seized from nigerian primary schools by boko haram militants to be used as ` human shields '\nthe stars of martin scorsese 's classic 1990 gangster film goodfellas reunited in new york on saturday night for a very special 25th anniversary screening of the movie . stars ray liotta , robert de niro , lorraine bracco and paul sorvino were all in attendance although director scorses was filming in taiwan . joe pesci , who won an oscar for best supporting actor in 1991 for his turn as tommy devito , did n't show .\ngroup of medical experts watched 23rd outing for ian fleming 's hero . they concluded that bond would have been unlikely to survive to end of film . within seven minutes he is hit by a depleted uranium shell . the radioactive round ` would have turned his lungs inside out ' bond also fights in an icy loch and then falls from a speeding train .\nthe mother of ronnie tran was abducted from her home in fife , washington , last week . police say her lover 's other girlfriend had been circulating doctored photos of their mutual lover in ` compromising sexual positions ' the mother 's love rival was shocked with a taser and locked in a cupboard , police say . the mother managed to escape and call for help , prompting an amber alert . john truong was babysitting ronnie when he saw the amber alert online . his sister alyssa chang has been arrested in connection to the kidnapping .\nbaltimore police say two protesters were detained for disorderly conduct . a small rally and press conference is held at noon . freddie gray died sunday , one week after he was arrested by baltimore police . police union has compared the protests to a `` lynch mob '' in the past .\nkeith boudreau , 42 , of quincy was pronounced dead on friday morning following the march 23 attack where he was knocked to the ground and had his head stomped on . paul fahey , 43 , allegedly beat boudrey for just staring in his direction , according to court documents . he was taken to hospital with life-threatening injuries following the attack and was removed from life support on monday . on wednesday , fahey was arraigned on assault and battery charges , and pleaded not guilty . however , the norfolk district attorney 's office said friday following boudroy 's death that they are seeking to arraign fahey again and charge him with murder on monday morning . a vigil was held for\nbayern munich travel to porto in the champions league quarter-final first leg on wednesday . bastian schweinsteiger and franck ribery will miss the game . ribery is not yet fully fit following a five-week absence with an ankle injury . schwein steiger has had a virus for the past few days .\nkhalid rashad appeared at camberwell magistrates court today . he is accused of possessing an explosive substance and ammunition . the charges were brought by police investigating the death of abdul hadi arwani . the 48-year-old was found dead in his parked volkswagen passat in wembley .\nbarcelona star lionel messi has scored 32 hat-tricks at club level . the 27-year-old ca n't remember which games they are from . messi has kept each of the balls at home in a special place . barcelona take on psg in the champions league on wednesday .\nrita is face of rimmel 's colourful new collection of eyeliners , lipsticks and nail varnishes . the 24-year-old showcases her cleavage in brian litchenberg crop top . she also recently unveiled her own festival-inspired range for the beauty giant .\nchristien sechrist has a large portrait of his son perseus etched onto the left side of his face . the 20-year-old , from houston , texas , has been criticized for getting the tattoo in such an obvious location . but he insists that he has no regrets about his decision , and that his son ` loves it '\nsharista giles , 20 , of sweetwater , tennessee woke up from her coma on wednesday after being in a coma for five months . giles was five months pregnant when she was injured in a car accident in december and doctors believed she would never recover . a month later doctors were forced to deliver her son , a boy they call baby l , who is doing well .\nbristol city held to a 1-1 draw against preston north end on saturday . steve cotterill 's side are eight points clear at the top of league one . they will become the first club to win promotion this season if they beat bradford on tuesday .\nthe pilot scheme will begin by recruiting 10 people with autism or asperger syndrome . they will be based at the firm 's redmond offices in washington , us . microsoft is running the scheme with support from specialisterne , a danish company . if successful , the scheme could extend to more vacancies worldwide .\narsenal beat reading 2-1 in the fa cup semi-final second leg at wembley . alexis sanchez and mesut ozil scored for the gunners . gareth mccleary equalised for the royals with a deflected volley . wojciech szczesny could only palm the ball back over the line in extra time .\ncolleen ann harris , 73 , was convicted of first-degree murder on wednesday . she was acquitted of killing her second husband in 1985 . robert harris , 72 , was found dead from a shotgun blast at the couple 's home in 2013 . mrs harris testified that she could n't recall the events leading up to his death because of traumatic memory loss .\nahmed shaheed has been showing off his new pet tiger cub on social media . the 28-year-old freelance rebel fighter bought the tiger cub from a small village near the syrian city of aleppo . he has been fighting in syria for over a year and claims to have been fighting for jabhat al-nusra . the news comes just a month after the aussie revealed he was looking to buy an exotic pet to keep him company .\nthe allied invasion of the gallipoli peninsula in 1915 was a failure that claimed 140,000 lives . an estimated 1,000 allied soldiers died on the first day of the disastrous operation . the allies eventually evacuated their soldiers from the peninsula in january 1916 after huge losses . historian stephen chambers has collected more than 100 rare photographs , many taken by the troops themselves . the poignant images show soldiers from their preparation for the first landings right up until the evacuation .\nrachel lynn lehnardt , 35 , from evans , georgia , ` threw a party for her 16-year-old daughter and her friends at her home and then had sex with an 18-yearold man ' she ` played naked twister with the teenagers before she went into the bathroom and had sex in front of them ' she then ` returned to the living room and used sex toys on herself ' she told her alcoholics anonymous sponsor about the incident , who then contacted authorities . she has been charged with two counts of contributing to the delinquency of a minor .\nespn reporter britt mchenry was suspended for a week after video emerged of her vicious rant at a towing firm . the 28-year-old has been reinstated and will appear on sportscenter . she was behind the mic covering the nhl stanley cup playoff game between the new york islanders and washington capitals . she has asked fans for a second chance on twitter .\njack mascitelli , from victoria , ran through byron bay naked during schoolies week for a free kebab . the 18-year-old accidentally ran past a group of police officers . he was found hiding in a kebabs shop and fined $ 500 .\nmark lawson , 44 , was in the diamond tap public house in newbury , berkshire . he agreed that his co-worker simon myers could take some chips from his plate . but when mr myers started eating an onion ring , lawson was angered . he shouted at his victim and drove the knife into his thigh . lawson was spared jail and given a six-month suspended sentence .\npaula radcliffe won her final london marathon in 2:36.55 on sunday . the world record holder said the time was irrelevant in her final race . the 41-year-old had barely run since february due to injury . radcliffe became the first recipient of the london marathon lifetime achievement award after the race .\nthe oleg naydenov caught fire in las palmas port on april 11 . the russian vessel was carrying 1,400 tonnes of fuel oil . it was towed out to sea as a precaution and sank three days later . oil is now washing up on the beaches of gran canaria and tenerife . the spanish government has activated an environmental emergency alert .\ntiny kitten uno was adopted by the pogue family in spokane , washington . the three-week-old kitten is pictured here playing with louie , a full-grown dalmatian . the clip shows the pair playing together at home in spokane earlier this month .\nsix men , ages 19 to 21 , were arrested sunday . they were planning to sneak into syria and join isis , prosecutors say . recruiting for the isis terrorist network is a problem in minnesota 's somali community . four of the men who were arrested appeared in federal court on monday .\nchile 's calbuco volcano erupts for the third time since last week . the explosion produced an extensive plume , but it was also described as smaller than the two prior ones . about 1,500 people were evacuated , and security measures will continue , officials say .\nbrisbane-based dj-duo mashed n kutcher have created a viral video . they approached people on the street and invited them to sing . the clip has been viewed over 1.25 million times in under a week . the duo sampled the vocals of the jogger into an electronic dance song . the singer in the clip was later revealed as ross burbury , a singer songwriter from brisbane .\naaron cresswell is a reported target for chelsea and manchester city . the 25-year-old has starred for west ham this season . but sam allardyce says no club has made an offer for the defender . the hammers boss believes cress well would be better off staying .\njerusalem syndrome was first identified in 2000 by psychologists in israel . it affects people who believe they are biblical characters visiting the city . it is characterised by anxiety , agitation and nervousness . the syndrome is then followed by the need to be clean and perform a ` sermon ' the syndrome can also be caused by a mental illness . experts say it is likely part of a broader psychosis that is not unique to jerusalem .\nthree girls , aged three , six and eight , were stranded by rising tide at blackpool beach . two mothers held their heads above the rising tide until lifeboats arrived . but onlookers on nearby pier did nothing to help - instead , they took out their smartphones to record the drama .\nrichard williams , 54 , spent # 50,000 on converting a canal narrowboat into a replica german second world war submarine . he also paid for a private jet to take him and his wife to paris to buy bespoke wallpaper . his ex-wife laurel howarth , 28 , was jailed for 20 months for her part in the five-year scam . judge michael murray told williams : ` this was serious offending '\njack white is taking a break from tour to play an acoustic tour . the shows will be unannounced until day-of-show . the tour will hit `` the only five states left in the u.s. that he has yet to play , '' according to white 's website .\nbikram choudhury has been accused of rape or sexual assault by six former students . he says he 's never assaulted anyone and feels sorry for his accusers . he 's the founder of bikram 's yoga college of india . he credits his signature `` hot yoga '' with transforming people 's bodies and minds .\nthe new apple iphone 8 includes emojis with more diversity than ever . peter bergen says the reaction to the new lineup is mixed . he says some are happy to see diversity , but others are upset . bergen : apple has `` evolved '' in showing diversity -- from brown people to same-sex couples .\nthe norfolk southern train derailed on friday night in south carolina . it was traveling through salters pond road and highway 121 , near trenton . at the time , the vehicle was carrying anhydrous ammonia - a toxic chemical . it also had non-hazardous ammonia nitrate , which was also on board . derailment caused up to 15 cars to overturn and leak , authorities said . thirty people were subsequently evacuated as a ` precaution '\nlesean mccoy was traded to the bills in exchange for linebacker kiko alonso . mccoy says he does n't think chip kelly likes star talent . the running back also says philadelphia has a ` college feel ' mccoy ran for 1,000 yards in four of six seasons with the eagles .\nsite has rolled out a twice-daily summary of the best tweets for you . features are only available on android devices . highlights is limited to english-language readers with twitter app installed . to enable the feature on your account , launch the official twitter app on android . a push notification leads to an area where users can browse popular tweets from people they know , as well as trending stories .\nandrew ` drew ' butler , 25 , allegedly shot mother-of-three kendra gonzalez , 25 . he is suspected of shooting her from the passenger seat in san jose , california . victim 's two-year-old son and teenage daughter were in the car at the time . police said the couple were involved in an argument when the gun went off .\na study by cleaning equipment company , kärcher , revealed six in ten brits are too busy to clean their homes . one in eight have n't vacuumed at all this year so far ; a fifth never polish or dust their home and a quarter have never cleaned their windows before . other top ` cleaning sins ' include leaving hair in the bathroom plug and only changing bed sheets once a month .\nmourners said tv show that parodied his appearance was partly to blame for his death . many believed that he was ` hurt ' by the show and it was a factor in the 65 year old 's decision to take his own life . brandt , whose celebrity clients include madonna and stephanie seymour , hanged himself april 5 . more than 200 friends , family and former patients attended the hour-long service overseen by rabbi tom heyn .\nramiul sheikh , 50 , was violently knocked to the ground by the animal . he was desperately trying to outrun the animal in the murshidabad district of india . the herd invaded the village , destroying crops and houses . locals were trying to coax them back into the forest when one turned violent .\nsupermarket beat major hotel , restaurant and pub chains to win britain 's best breakfast . judges picked out morrisons for its value for money , food quality and customer satisfaction . mystery shoppers tried breakfasts at restaurants , pubs and hotels nationwide to name morrisons the winner .\nirina shayk 's latest campaign is for linda farrow eyewear . the russian supermodel , 29 , split from christiano ronaldo in january . she is seen in a steamy new video and campaign for the brand . the video shows her writhing in a pool with male model jarrod scott .\nsaudi-led coalition says it is focusing on political process . houthi spokesman calls for peace talks , but only after a halt of attacks . five airstrikes target a weapons depot in southern yemen , security officials say . houthis release yemeni defense minister mahmoud al-subaihi , source says .\nshaquille omar hallisey hit matthew leeke over the head with a bottle in cardiff . the 20-year-old 's attack left his victim with a fractured skull and cuts to his head . he was jailed for four years after admitting wounding with intent to cause grievous bodily harm . judge philip richards described attack as ' a savage demonstration of violence in public place '\nhotels around the world are giving staff uniforms a makeover . jw marriott houston downtown hired american designer , david peck . the park hyatt new york hired first lady michelle obama 's favourite designer , narcisco rodriguez , to redesign the staff 's uniforms . the shangri la hotel in toronto opted for local designer , sunny fong , when overhauling their lobby lounge dresses and champagne room uniforms .\nsome blame lack of gp appointments for people heading to a&e . weekend opening hours for gps touted as one solution . a number of surgeries in london have been piloting seven-day opening . study found 8 % drop in a&e s among patients of the pilot surgeries .\nunite leader len mccluskey is currently campaigning in south wales . he said that unite is supporting labour ' 100 per cent ' but the union is a potent , sinister force in british politics . mccluskeys wants to drag britain back to dark days of the 1970s .\npolice believe missing toddler william tyrell may be alive . the three-year-old was last seen in kendall , on the nsw mid-north coast . police say they have information that could link the toddler to a paedophile ring . the focus of the investigation has shifted dramatically , and is now ` progressing rapidly ' , according to detective superintendent mick willing . william 's parents released a video pleading for their son 's return .\njordan speith , 21 , leads the masters by four shots going into final round . he has set a scoring record for 54 holes of 16 under par at augusta . he is playing with british contender justin rose in the final , showcase pairing . tiger woods , dustin johnson and phil mickelson are still posing a threat .\n`` flower man '' is a series of portraits of people behind the petals . photographer ken hermann visited malik ghat , a wholesale flower market in kolkata , india . he spent about 10 days at the market for his project . hermann says the portraits are a powerful representation of human emotion .\nkarim benzema will miss real madrid 's clash with atletico madrid . the french striker missed saturday 's 3-1 win against malaga with a knee injury . carlo ancelotti is ` hesitating ' between a 4-4-2 or 4-3-3 formation . luka modric and gareth bale also look likely to miss the clash . mundo deportivo hail barcelona coach luis enrique .\nthe hospital of doll 's studio was built by the squatriti family 60 years ago . federico squatri , 52 , and his 82-year-old mother gelsomina continue the family tradition . the mother and son team painstakingly restores hundreds of toys .\nceltic lost 4-1 to legia warsaw in champions league qualifying . ronny deila says celtic wo n't be travelling as much in pre-season . celtic have played in the united states , austria , germany and australia . deila has the blessing of chief executive peter lawwell to scale down commitments .\ntottenham manager mauricio pochettino will return to southampton on saturday . the argentine left the south coast club in the summer to take up the tottenham job . pochettinos admits he will be given a hostile reception at st mary 's . but he insists he is not looking forward to being jeered by saints fans .\nnew york city human rights commission says there 's enough evidence of age discrimination to merit a hearing on the stonehenge village complex 's fitness room . the rent-regulated tenants excluded from the gym are largely over 65 , while market-rate tenants are n't . the gym was meant as a perk to lure full-price-paying tenants , who shell out $ 3,500-a-month for a one bedroom .\nqpr drew 3-3 with aston villa in the premier league on monday night . rob green conceded three goals but could not prevent christian benteke 's hat-trick . the former england stopper was then humiliated by a ball boy . the youngster decided to mug off the 35-year-old with a handmade nutmeg .\nlib dem leader tells children he was better at languages and art at school . he will use tomorrow 's manifesto launch to promise a ` stronger economy ' but he admits he struggled with maths and science as a youngster . clegg has promised to ` spread the burden ' of deficit reduction .\nliverpool lost 2-1 to aston villa in the fa cup semi-final last sunday . brendan rodgers is under pressure after the disappointing season . the liverpool manager insists he is the man to guide the club to success . rodgers has been boosted by the news that jordan henderson has committed his future to the club .\nsix-strong gang caught on camera raiding hatton garden on thursday night . footage shows them returning on saturday and cleaning out jewels . police may have to pay millions in compensation for ignoring alarm . scotland yard refused to confirm whether they had seen the footage . it is likely to place even more pressure on police already under fire . the raid was not discovered until the following tuesday .\nhigh school student in singapore creates a logic problem to test her classmates . she gives her friends a list of 10 possible birthday dates . the problem went viral after a singapore television host posted it to facebook . see our video below for the answer from georgia tech mathematician matt baker .\na woman in china has shown her strength by using her legs to lift a group of people . the footage was captured at a birthday party in sichuan province . the woman holds two people on a plank of wood and starts lifting them up and down with her legs .\nbetty johnson , 86 , was a kansas city chiefs season ticket holder since 1986 . the great-great grandmother had been in hospice care since breaking her hip in february . she had one dying wish - to see her beloved team before taking her last breath . her wish was granted on thursday after a visit from chiefs hall of famer nick lowery . johnson passed away shortly after lowery left , her family said .\none in three gp training places remain empty , figures show . in some parts of the uk , more than 60 per cent of positions remain unfilled . this means patients may struggle to access a family doctor . comes amid a chronic shortage of doctors , and 10 per cent tried and failed to book a gp appointment in 2013/14 .\nbrynn was diagnosed with mast cell disease after a near-death experience in march . her family believes she has a rare genetic mutation that affects her immune system . scientists do n't know yet what causes mast cell syndrome . but genetics may make some children more susceptible to developing the mutations .\nwalt disney world florida has just opened its first-ever overwater villas . the resort is located on the shores of the seven seas lagoon . each villa has two bedrooms , two bathrooms and a plunge pool . the villas are available to rent for between $ 2,100 and $ 4,500 a night .\n2015 at&t mls all-star game takes place at dick 's sporting goods park on july 29 . tottenham return to the us after a three-match tour last summer . the fixture will be broadcast on sky sports . tottenham boss mauricio pochettino is looking forward to returning to the u.s. .\nscott dann was a fraction offside when he set up glenn murray for palace 's first goal . assistant john brooks was spot on with two equally tight calls in the same move . the speed of it , plus two players blocking his view , made it unbelievably hard for him to get all three right .\ncollection of letters bought by king 's college , cambridge , for # 430,000 . brooke had string of short-lived relationships with various women . poet died in 1915 at the age of 27 after serving in first world war . letters show lovers complaining about his refusal to take relationships seriously .\nmore than 300 fishermen emerged from nearby trawlers , villages and even the jungle to make the trip . they had been kept like slaves at pusaka benjina resources fishing company compound . they were finally being rescued by the indonesian fisheries ministry after officials issued a moratorium on fishing to crack down on poaching .\nkorean demilitarized zone -lrb- dmz -rrb- is a hot spot for surfers in south korea . the area is located along the no-man 's land between the north and south . the beaches are popular with south korean hipsters , gangsters and ex-pats .\nthree teenagers have been charged with the vicious bashing of a father and his daughter on the streets of nsw . tibor racsits , 42 , had gone to pick up his daughter kiara from the movies at charlestown square in newcastle , north of sydney , on sunday night when they were attacked . one 15-year-old boy was charged with assault and affray . the other was charged . with assault occasioning actual bodily harm , affray and a count of stealing .\nstiviano and her friend enjoyed lunch at il pastaio in beverly hills on thursday . the 32-year-old was seen with an older male companion and some new braces on her already straight teeth . this just days before a judge will decide if she must hand over $ 2.8 million in gifts she received from her ex , embattled former los angeles clippers owner donald sterling . the identity of stiviano 's male companion is not yet known .\nus navy has sent a nuclear aircraft carrier and a guided missile cruiser to the waters near yemen to help beef up security and block iranian shipments . the uss theodore roosevelt and the uss normandy left the persian gulf on sunday and are steaming through the arabian sea and heading towards yemen . the vessels are believed to be joining other u.s. ships that are poised to intercept any iranian ships carrying weapons to the houthi rebels fighting in yemen .\nrahul kumar , 17 , jumped over enclosure fence at kamla nehru zoological park in ahmedabad , india . he ran towards the lions shouting : ` today i kill a lion or a lion kills me ! ' fortunately , he fell into a moat and was rescued by zoo security staff .\nitaly striker graziano pelle has not scored in his last 13 premier league games . pelle last netted in the premier league on december 20 . the 29-year-old scored against england in tuesday 's 1-1 friendly draw . ronald koeman has backed pelle to go on a run in the final eight games .\nganjendra singh , 41 , hanged himself from a tree in the capital delhi . he was taking part in a public protest over land rights in the indian capital . he told onlookers he could no longer afford to feed his three children . the farmer was later declared dead at ram manohar lohia hospital .\ncandlestick has been torn down to make way for houses , a hotel and a shopping center . the iconic sports field was completed in 1960 and was home to first the san francisco giants and later the san . francisco 49ers . joe montana led the 49ers to four super bowls while playing at candlestik .\njulio ` wemo ' acevedo , 46 , was found guilty of manslaughter and criminally negligent homicide in the deaths of nachman and raizel glauber in williamsburg , brooklyn . the driver was said to have been traveling in his bmw at 70mph , twice the speed limit , when he hit the couple in their livery cab . the 21-year-old glaubers were 7 months pregnant at the time of the crash and doctors were able to deliver their baby boy , but he died the next day . acevede has a long rap sheet including previous convictions for manslaughter as well as gun and drug offences .\nsenate panel set to vote tomorrow on bill that would give congress a say on a potential deal aimed at keeping tehran from developing a nuclear weapon . house majority leader kevin mccarthy said today that he will bring the bill to the floor if the senate acts on legislation giving congress the power to review any deal . republicans and democrats maintain that congress should have a say . the white house has pushed back , threatening a presidential veto while warning that the bill could scuttle the delicate talks .\nsarah foot started swimming after a local pool closed down . she now swims in the north sea off the coast of suffolk . she says she is buoyed up in every way by the open water . for her , swimming in scotland is the closest to beauty she has ever been .\nnew video shows homeless people reading cruel tweets that have been written about them . clip was filmed by creative agency leo burnett toronto for the homeless charity humans for humans . many of the people break down in tears as they read comments like : ' i hate the homeless , i do n't feel sorry for you '\navril lavigne was bedridden for five months after contracting lyme disease . the singer says she was bitten by a tick last spring . she says she is now `` 80 percent better '' and wants to enjoy life . lavigne is releasing a new single this month to support the 2015 special olympics .\njayla currie , 23 , from berne , indiana , is a part of the wee ones nursery program at the indiana women 's prison . the program allows incarcerated mothers to share rooms with their babies . jayla gave birth to her son jayden in a single room with just a doctor and a female officer . she has already served three months of her 10-month sentence for meth manufacturing and possession .\neathan cruse , 19 , was one of five men arrested after anti-terror raids in melbourne on saturday . he said officers assaulted him after he had been handcuffed . his father , glen , also said he was brutally attacked by police during the raid . eathan was released later in the day after his initial arrest .\nhoda muthana , 20 , lived with moderate muslim family in hoover , alabama . she studied business at university of alabama but dropped courses . she then cashed in her tuition money to travel to syria and marry a jihadist . muthanas husband , suhan abdul rahman , was killed in an airstrike last month . she has now called for drive-by shootings in america on memorial day . her father said he believes her parents ` brainwashed her '\nanne frank was 15 when she died of typhus in a nazi concentration camp . the date of death had been determined by dutch authorities . new research shows she and her older sister , margot , died at least a month earlier than previously thought . days at the camp were filled with terror and dread , witnesses said .\nbaltimore police have used the hailstorm device 4,300 times since 2007 . detective emmanuel cabreja said department is under orders by the us government to withhold evidence from criminal trials and ignore subpoenas . hailstorm can identify phones from an antenna from about a city block away in distance . it is an upgraded version of the stingray surveillance device .\nmary kay letourneau and vili fualaau sat down for an exclusive interview with barbara walters on 20/20 on friday . letourneu , then a 34-year-old married mother of four , pleaded guilty to child rape for her illicit affair with her sixth-grade student . she fell pregnant with fualau 's child when he was 12 and fell pregnant again when he , then 13 . letoursneau and fualaua , now 31 , have two daughters , 17-year old audrey and 16-yearold georgia . the interview will air on abc friday at 10pm .\nbrenda finn , 30 , from london , was diagnosed with alopecia universalis at 14 . her body hair and fingernails fell out and she was left with no body hair or fingernail . she was also left suffering crippling anxiety and depression after bullying . she had a # 300 procedure to tattoo eyebrows on her face to give her confidence . she says having the procedure earlier would have made a huge difference to her life . she is calling for medical tattooing to become available on the nhs .\nleah williamson scored from the spot during england 's 3-1 victory against switzerland on thursday afternoon . the young lionesses will qualify for the european championships if the penalty is scored and the match is drawn 2-2 . the elite round group 4 qualifier will be restarted at 9:45 pm at seaview stadium in belfast on thursday . the decision has been taken for the first time in a uefa competition following an fa appeal . german referee marija kurtes is understood to have been sent home following her error on saturday .\ncanadian prostitute celine bisette says that she is neither ` damaged ' nor ` deranged ' - and that she actually enjoys her job . she says that it 's only the social stigma surrounding her career that makes her feel unhappy . celine , who uses a pseudonym , says that despite her history in the sex industry , she ca n't erase her history .\ntwo-year-old matheryn naovaratpong died from a brain tumour last year . doctors diagnosed her with an aggressive form of cancer last april . she had lost 80 per cent of the left side of her brain and was paralysed . her family have now had her body cryogenically preserved . they hope she will one day be revived by advances in science .\nten years ago , charles dunstone signed a letter backing labour in 2005 election . but now he is backing the conservatives for this one , saying they deserve credit . he said the current labour party viewed business as the problem . he added that it is the engine that gives politicians the ability to provide a fair and compassionate society .\ndarren humphries , 37 , began throwing cadbury mini eggs at wife claire , 31 . he flipped when she refused to allow him into her home to see their children . forced door open and grabbed his wife by the jaw causing her to fall back . he then picked up a packet of the chocolate treats and began throwing individual eggs at her head . humphries jailed for eight weeks at worcester magistrates court .\nbournemouth are considering expanding their 12,000-seater goldsands stadium . the club are considering doubling the capacity of their south stand to 5,000 seats . premier league regulations state clubs must give 10 per cent of their overall allocation of tickets to away supporters . eddie howe is reluctant to change the position of away fans to behind the goal .\nlen barnes shed three stone as he battled the life-threatening condition clostridium difficile . he lost his appetite and endured continuous pain . despite numerous courses of antibiotics , he showed no signs of improvement . gastroenterologist suggested a faecal transplant . his daughter debbie , 52 , was chosen as the donor . her stools were mixed with water and transplanted into his gut . mr barnes , 57 , was then cured of the severe bowel infection .\ngang of six men jailed for a total of 31 years for sexual offences against girls . oxford crown court heard how they lured victims to parties organised on social media . the men were found guilty in march and have now been handed sentences of between three and nine years in jail .\nthe couple announced the birth of their son , silas randall timberlake , in a statement . silas was the middle name of timberlake 's maternal grandfather bill bomar . randall is the musician 's own middle name , as well as his father 's first . it is the first baby for both .\nthe defiant 61-year-old former prime minister said he had ` decades ' still in him . he joked that he would ` turn to drink ' if he ever stepped down from his global roles . mr blair said his latest ambition is to recruit former heads of government to advise presidents and prime ministers on how to run their countries .\nsamantha fleming and her three-week old baby went missing from her home in anderson , indiana , on april 5 . geraldine jones , 36 , of gary , was charged with murder , kidnapping and criminal confinement . police believe fleming , 23 , was lured from her . home by jones and the new mother brought serenity with her . she had been stabbed , wrapped in plastic and soaked with bleach .\nfinnish researchers say antibiotics may be contributing to obesity epidemic . third of 10-11 year olds and more than a fifth of 4-5 year olds in england are overweight . repeated prescriptions before the age of two also raised odds of being a fat toddler .\njeff astle died aged 59 in 2002 from ` industrial disease ' linked to repetitive head injuries . the fa and pfa promised a 10-year study to investigate the connection between head injuries and early on-set dementia . mail on sunday investigation revealed the research was never carried out . greg dyke has vowed there will be no repeat of the fa 's failure to deliver potentially life-saving research into links between concussion and early dementia . west brom paid tribute to astle on ` astle day ' on saturday .\na 19-year-old woman is wanted by police after video emerged this week , showing her run over a rival with her car in a street fight . grand rapids , michigan police have an arrest warrant out for suspect jalin smith-walker . in december , she was arrested for dragging a mall security guard several feet when he tried to stop her on suspicion of shoplifting .\ngerman artist jörg düsterwald has created a series of stunning body art pictures . the models are camouflaged into the background of woodland . the pictures are the brainchild of the 49-year-old bodypainter from hameln . jörg has used his body-painting skills in tv adverts for the last 20 years .\nrekha nagvanshi , 30 , turned on her husband 's parents at their home . she was unhappy that they had stopped her husband from doing chores . she sought revenge by urinating in their cups of tea every day for a year . her mother-in-law found her squatting over the teapot one day .\nprasanna ` nick ' arulchelvam was killed when he tried to stop thieves in watford . he jumped through an open side door of their van but was pushed out and hit ground . customer heard a ` nasty crunch ' as 34-year-old 's head hit the ground . man who pushed mr prasanna to his death was jailed for 11 years today .\njosh warrington beat dennis tubieron on points to win the vacant wbc international featherweight title . the 24-year-old has been billed as the next ricky hatton due to his impressive fan base . warrington admits he was bored by the end of his fight against tubier on saturday .\nrape occurred in panama city , florida , during spring break , police say . troy university students ryan calhoun and delonte martistee are charged with sexual battery . the two men have been suspended from the school . the victim has not been identified because of her age , authorities say .\nukraine 's president has demanded an investigation of the killings of oleg kalashnikov and oles buzyna . the former member of parliament with ties to ousted president viktor yanukovych was shot dead wednesday . the journalist was known for his pro-russian views . the killings renewed speculation about a conspiracy to kill people close to yanukovych .\ncarlo ancelotti says he is not obsessed with atletico madrid . real madrid face atletico in the champions league quarter-final first leg . atletico are unbeaten in six madrid derbies this season . real beat atletico 4-0 in the european champions league final last season .\naustralia is appalled by the brutal and pointless executions of andrew chan and myuran sukumaran . the death penalty looks anachronistic and ineffective at the best of times , writes andrew chan . he says indonesia 's actions raise questions about the powers we give to states .\njoseph oberhansley , 34 , admitted to killing tammy jo harbin blanton , 46 , at her indiana home last september . he told police he forced his way into her bathroom and stabbed her before using an electric jigsaw to open her skull and eat parts of her brain , heart and lungs . on tuesday , the prosecutor asked for rape to be added to the murder and abuse of a corpse charges and a judge will consider the request on may 4 . prosecutors say they will recommend the death penalty .\nshutthefrontdoor favourite for crabbie 's grand national . jonjo o'neill hopes ap mccoy rides him to success on april 11 . o'neil says he could not be happier with the horse 's form . mccoy has not decided yet whether he will ride shutthefront door .\nbrass desk lamp dating back to 1840 will be sold at auction in june . it was given as a gift to two sisters who worked as servants for nightingale family . the 10in tall lamp will go under the hammer at hansons in etwall , derbyshire .\ndana white posted a video of lyoto machida making weight . the brazilian was wrapped in an electric blanket with the dial turned up to ` max ' machida later tipped the scales on the welterweight limit of 185lb . he takes on luke rockhold in new jersey on saturday night .\nashley young is hoping for a three year extension at manchester united . the 29-year-old has revived his career in recent months under louis van gaal . young has been instrumental in united 's six game winning run . he is now being touted for a return to the england set-up .\nchristine royles , 24 , of south portland , maine , who is suffering from kidney failure , organized fundraisers to reimburse josh dall-leighton for unpaid time away from work . the donor said that maine medical center officials informed him this week that it has concerns about the amount of money raised for him .\njuarez cartel boss jesus salas aguayo arrested on friday by mexican police . aguaye , also known as ` the liquidator ' , is accused of multiple felonies . he is linked to over twenty deaths in juarez city , including a state witness murder . agayo was known for his brutal methods , including using dynamite to kill .\narsenal beat burnley 1-0 at turf moor to move up to third in the premier league . aaron ramsey opened the scoring for arsene wenger 's side in the 12th minute . the welsh midfielder has now scored in his last eight games for the gunners .\ndr mohammad ali jawad allegedly molested another patient at his surgery in london . patient a said he asked her to dance to the music of julio iglesias before touching her breasts . he allegedly asked her : ` do you see me as a man or a surgeon ? ' dr jawad , 56 , denies all allegations of misconduct and will give evidence via videolink .\noskar groening , 93 , is being tried on 300,000 counts of accessory to murder . he is accused of complicity in the killing of 300,00 jews at the nazi extermination camp . he told the lueneburg state court on thursday that he did not expect jews at auschwitz to make it out alive . the former ss sergeant said he believed jews were the ` enemy ' and that it was ` unimaginable ' to him that they would leave the camp alive .\njamal al-labani , an oakland gas station owner , was killed in yemen . he was visiting his pregnant wife and their two-and-a-half-year-old daughter . he wanted to fly them to oakland but could not due to the country 's civil war . al-labana 's family said he was struck by mortar shrapnel after leaving a mosque . he also lost his teenage nephew , who was also killed in the attack . the us has withdrawn its diplomatic staff from yemen and closed most airports . rebels from the houthi islamist group have been battling to take aden .\nfilmmaker amanda luk off and her husband danny egan are raising money for their upcoming documentary the r-word . the film will explore the history of how the word ` retarded ' became a derogatory insult . amanda was inspired to create the movie by her sister gabrielle , who was born with down syndrome .\nd derek brux , 22 , pleaded guilty in january for unhitching a pair of locomotives and going on a high-speed run 13 miles down one of the busiest lines of track in the country . he then crashed into an inactive union pacific train at 10mph before backing up and then hitting it again . brux was sentenced to five years probation and must also pay $ 63,000 in restitution to rail link , his employer .\nprosecutors say they 're dismissing almost three dozen criminal cases connected to four former fort lauderdale police officers who lost their jobs . the broward state attorney 's office reported on thursday that they had already dropped 12 felony cases , 19 criminal misdemeanor cases and one juvenile case involving one or more of the officers . the arresting officers in the cases , which include burglary , cocaine possession and aggravated assault with a firearm , are no longer on the police force . all of the four officers involved in the case committed misconduct involving racist texts ` exchanged among themselves and former police officers ' , fort lauderdale police chief frank adderley said .\nman utd players and celebrities flock to wing 's chinese restaurant in manchester city centre . wayne rooney and ashley cole are regular visitors . radamel falcao dined at wing 's on the day he signed for united on loan . mario balotelli , joe hart , gareth barry , peter crouch and more also frequent the five-star venue .\nmanny pacquiao and freddie roach laughed after receiving a speed ball with floyd mayweather 's face painted on it . the gift was given by celebrity lawyer robert shapiro , who represented oj simpson in 1995 . pacqu xiao-mao and floyd mayweather will fight on may 2 in las vegas . the bout is billed as ` the biggest fight in history '\nlindsey walker , 23 , booked in for a holiday to rex hotel in whitley bay , north tyneside . she and her partner and two-year-old son were invited to a late-night party . the family were in the room above the biggest nightclub in town and were refused a refund . hotel 's manager said the issues were being investigated and refurbishments were underway .\nlabour leader superimposed over rapper plan b , issuing a call to ` come at me bruv ' he posed direct message to pm , saying : ` david , if you think this election is about leadership , then debate me one-on-one ' cameron and clegg superimposed on christopher steed and stephen webb .\nqpr boss chris ramsey is one of seven managers trying to keep their club in the premier league . ramsey 's side host west ham on saturday as they look to climb out of the relegation zone with four games left . newcastle , aston villa , leicester , sunderland and hull are also in the relegation battle .\nnasa 's curiosity rover has found that there is water in the form of ice on mars . new information shows that there could be liquid water close to the surface . scientists say that the substance perchlorate has been found in the soil , which lowers the freezing point so the water does not freeze into ice .\nshaun ingram had a dashcam fitted to his ford focus st for road safety reasons . he says it captured seven hours of footage of mechanic taking it for a test drive . footage shows the car being driven at 57mph in a 30mph zone in plymouth . mr ingram , 50 , says he was left ` open-mouthed ' when he saw the footage . halfords have said the mechanic has been removed from the branch .\nchronic stress drains nutrients from the body , says nutritionist charlotte watts . she reveals seven surprising signs of stress and what to eat to replenish them . cracks at the side of the mouth are a sign the body is low on vitamin b6 . white spots on your nails are a good sign you need zinc .\nmatthew riches allegedly dropped drug into the clubber 's drink at the roof gardens in kensington in august 2 last year . today , the 29-year-old , from epsom in surrey , appeared at isleworth crown court . judge martin edmunds qc told riches his trial would take place on august 10 at isle worth crown court .\nqueen was pictured in westminster abbey at maundy day in 1935 . she was eight when she first attended the service . eighty years on , she gave out maundy coins in the pre-easter tradition . joined by the duke of edinburgh , her majesty was there to present ` alms ' to 89 women and 89 men .\ntory peer lord ashcroft polled 10 battleground constituencies . support for mr farage 's party has more than halved in two seats . ukip 's support has fallen by 25 per cent in the last six months . but poll shows tories are set to lose four seats to labour .\naccording to ew , new line cinema is planning a mariah carey christmas movie . producer jonathan shestack confirmed that he is working on the project . `` it 's a little bit about how music can take you back in time , '' shestack said . `` all i want for christmas is you '' is a classic .\nsuper rich are buying submarines to explore the world 's oceans . the orcasub takes you 2000 feet beneath the surface in two pressurised perspex viewing domes for optimum exploration . the migaloo by motion code : blue can be both a yacht and a submarine .\nthe septum ring is a piercing between the nostrils . it is used in some tribes to look terrifying in front of opponents . in the uk , america and australia it is mainly used as a fashion trend . fka twigs , rihanna and lady gaga have all adopted the trend .\nnico rosberg finished second in china to lewis hamilton in his mercedes . the german driver blamed his team-mate for slowing down and bunching him up . rosberg 's attitude seems to have changed since his crash with hamilton in spa last august . the 17-year-old max verstappen showed he has what it takes in china .\nthe victims of a horrific medical experiment run by the united states in guatemala are now suing johns hopkins university . the lawsuit , which has 750 plantiffs and includes victims and their families , is seeking $ 1billion . the plaintiffs claim johns hopkins approved and helped to plan the study , which ran from 1945 to 1956 . it is estimated approximately 700 people were infected with the disease , and of the roughly 75 % who were treated , only 25 % were reported to have completed their treatment . in the aftermath of the experiment , some of the individuals died of syphilis , with open sores covering their bodies . those who did survive claim they passed the disease down to their children , ending up with babies that were\ndashem tesfamichael , 30 , was jailed for life for stabbing olu olagbaju , 26 . he was caught on camera partying with other inmates at coldingley prison . prison officers reportedly turned a blind eye to the partying in december . the video was captured on a banned mobile phone and shared on whatsapp .\nroberto mancini wants to bring stevan jovetic to inter milan . the italian giants will propose a loan with a view to a permanent deal . joveic has started just 11 premier league games for manchester city . inter are also keen on yaya toure , who has hinted he could leave city .\nthe islamic state health service -lrb- ishs -rrb- is a copy of the uk 's free health system . the video features an australian pediatrician and an indian physiologist . they are urging foreign doctors to travel to syria and help isis with their new health care service . the poster shows a cropped image of a doctor , wearing an nhs style blue surgical scrubs .\ngrandparents of two children have pleaded for the safe return to australia of their mother dullel kassab . the 28-year-old fled to raqqa in syria with her children last year . she regularly boasts on twitter that her four-year old daughter and two-year of son sleep with toy guns next to their beds . the children 's paternal grandparents say they are worried kassab , 28 , is ` brainwashing ' the children .\nmennonite family were driving from nova , ohio to pennsylvania . they had four puppies strapped to the roof of a van moving on the freeway . police in akron , ohio pulled over the car after dozens of concerned drivers called 911 . mitt romney famously came under fire in 2012 for driving for 12 hours with his irish setter seamus on top of his car in a carrier . the family , who said they had no idea it was illegal , were let go with a warning .\nthe kentucky derby will be held at churchill downs on may 2 . john sutton jr , 84 , will be the special guest at the race , since he has attended every race for the past 76 years . sutton was just 8 years old when his father brought him to his first race , and the two bet against the favorite on a horse called gallahadion , which ended up winning the race .\nrivals manchester united , liverpool and leeds united will all be in london this weekend . british transport police have drafted in 400 extra officers to help with crowds . officers will be stationed on trains travelling from the north and the midlands . extra officers will also be present at mainline and underground stations .\njeffrey okafor accused of stabbing carl beatson-asiedu to death in 2009 . the 19-year-old victim was known as dj charmz and appeared on mi high . he was attacked after leaving club life nightclub in vauxhall , london . okafor allegedly confessed to girlfriend before fleeing to nigeria on brother 's passport .\nski champ lindsey vonn looked worried as she watched her boyfriend tiger woods struggle on the first day of the masters in augusta , georgia . vonn has had two major knee surgeries in the last few years . woods is trying to win his fifth masters championship after back surgery temporarily put his career on ice last year .\ntwo million high school students admitted to buying vaporizers in 2014 . this is more than triple the 660,000 recorded the year before . but smoking of traditional cigarettes plummeted to about nine per cent . cdc report is based on a national survey of about 22,000 students .\nrobert denny has been charged with the murder of two women in victoria . the 83-year-old was charged with murdering his wife margaret penny and claire acocks at a hair salon in portland in 1991 . mr penny has described the accusations as ` bizarre ' he was remanded in custody to appear in the melbourne magistrates court for a committal mention on july 6 .\nmorgan schneiderlin may have played his last game for southampton . the midfielder has been ruled out for the rest of the season with a knee ligament injury . tottenham are weighing up a bid for the 25-year-old . southampton boss ronald koeman admits that schneiderlin could leave the club .\narsenal fan saskia aced the exam given by her boyfriend . she scored 43.5 out of 50 points , or 87 per cent . the 17-year-old 's answers have gone viral on twitter . saskia said her boyfriend was ` bl bluffing ' and it was a joke .\nbusinesses will be forced to close over the easter long weekend . many operators will face penalty rates of up to two-and-a-half times regular pay . young workers who earn up to $ 50 on public holidays will not be able to earn money this weekend . australian chamber of commerce has launched a campaign to voice their concerns .\n` volcano ' filmed in front of missile launchers and burning buildings in benghazi . the 31-year-old musician was filmed wearing hip hop-style clothing in the war zone . he is pictured holding a large assault rifle and surrounded by armed fighters . it is not clear whether volcano is simply using the civil war backdrop for effect .\njoel burger , 24 , proposed to his 23-year-old girlfriend ashley king . she said yes - paving the way for a burger-king wedding . the couple have known each other since kindergarten . they plan to serve drinks in personalized burger king cups . they were nicknamed by a motivational speaker in fifth grade .\nwayne rooney scored a stunning half-volley to give manchester united a 3-1 win against aston villa at old trafford . ander herrera opened the scoring for louis van gaal 's side in the 43rd minute . rooney doubled united 's lead on 79 minutes with a right-footed strike . christian benteke pulled one back for villa with a header in the 80th minute .\nchelsea beat manchester united 1-0 at stamford bridge on saturday . eden hazard scored the only goal of the game with a deflected strike . the belgian has been the best player in the premier league all season . hazard is now the player you look to in a crisis , as he did against qpr .\nliverpool beat newcastle 4-3 in the 1996 premier league title decider . robbie fowler , les ferdinand , david ginola and faustino asprilla scored for the magpies . stan collymore scored twice for the home side to seal the win . martin tyler has been in the commentary game for 40 years .\nland managers in sydney are targeting wild rabbits with a deadly virus . the pest causes millions of dollars of major agricultural and environmental damage each year . the virus is produced in a laboratory with spreading agents and its mixed with carrots . the program has been implemented annually for the last nine years . it comes after over 30 government bodies scattered carrots laced with calicivirus around public areas in march .\nmanchester united face manchester city in the manchester derby on sunday . louis van gaal believes his side will be able to beat their local rivals . the united boss says he is not worried about facing city at old trafford . van gaal believes city will not be as defensive as aston villa .\ndelroy facey allegedly offered hyde fc player # 2,000 to fix a match . the 34-year-old is also alleged to have told a contact that some football conference teams would ` do ' a game in return for payment . former bolton striker is accused of conspiring with non-league player moses swaibu and others to commit bribery .\nleigh griffiths fired celtic into an early lead against inverness . edward ofere equalised for the highlanders in the second half . celtic goalkeeper dean brill was substituted after 20 minutes . the champions face invernesses in the scottish cup semi-final next weekend .\njavier hernandez has scored four goals in four games for real madrid this season . mexico international is on a season-long loan from manchester united . carlo ancelotti will make a final decision on hernandez 's future after season . real face almeria at the bernabeu on wednesday night .\nthe star has been transformed into gustav klimt 's golden adele for the life ball 2015 poster . conchita posed before industry heavyweight ellen von unwerth 's lens for the poster . the poster promotes the dazzling life ball event , where conchitas will perform .\nfifa presidential candidate prince ali bin al hussein wants to see the world cup rotated between confederations . prince ali is standing against sepp blatter , michael van praag and luis figo . he has warned against expanding the world cups from 32 to 48 teams .\nresearch with twins suggests picking who to vote for might have more to do with your genes than the policies of the parties . department of twin research , which hosts the biggest adult twin registry in the uk , recently performed a poll of voting preferences . aim was to explore how much nature and nurture influence our party political allegiances and potential voting preferences so we can draw broader conclusions . identical twins were more likely to vote the same way than the non-identical twins .\nbarronelle stutzman , 70 , refused to sell flowers to same-sex couple robert ingersoll and curt freed in 2013 . stutz man was fined $ 1,000 in march for violating washington 's anti-discrimination and consumer protection laws . a gofundme.com page set up in february for stutzman has raised over $ 87,000 .\naston villa face liverpool in the fa cup semi-final at wembley on sunday . shay given will start for the villa side , a day before his 39th birthday . the irishman was dropped by ruud gullit for the 1999 final . given has played in all four of villa 's fa cup matches this season .\nchelsea have been in talks with royal mouscron-peruwelz . the belgian club are currently 13th in the pro league . mouscrons had a partnership with lille but that is now set to end . chelsea already have an agreement with vitesse arnhem in holland .\ned miliband will today pledge to cut the deficit every year if labour wins the election . he will warn supporters that labour faces coming to power in a ` time of scarcity ' launching the party 's manifesto in manchester , he will claim ` not one policy ' in it would be funded through additional government borrowing .\nvietnam 's booming cat meat trade is illegal but demand is soaring . restaurants serving ` baby tiger ' are springing up across northern vietnam . cat meat is smuggled across the border in tightly-packed trucks from china and laos . animal welfare groups say cats are transported in appalling conditions . they are skinned alive , the bones removed and eaten .\na teenager in the shimla region of northern india was caught on cctv giving a monkey the middle finger . the monkey interprets the gesture as an insult and launches itself at him . the teenager is sent sprawling onto the ground and is left in shock . the monkeys of the area have a reputation for aggression and are known to attack tourists .\npilot declared emergency as he tried to land plane at fort lauderdale airport . plane crashed into a wooded area close to the runway and burst into flames . eyewitnesses said they heard a ` loud explosion , a big fireball ' four people died in the tragic incident on sunday afternoon . the cause of the crash is not yet known .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call .\nmario gomez joined fiorentina from bayern munich for # 17.2 million in july 2013 . the german striker has been linked with a move to barcelona this summer . gomez insists he is happy at the viola and wants to stay in florence . click here for more barcelona news .\ndoctors at university college london hospitals nhs foundation trust are using the ebus technique to diagnose lung cancer . the finger-width flexible tube allows doctors to see inside the lungs and take a tissue sample in one go . it also allows them to assess instantly the type and severity of the cancer . patients who have undergone ebus survive for longer . they survive for 503 days after diagnosis , compared with 312 days for people assessed through more traditional methods .\nal qaeda took american aid worker warren weinstein hostage in 2011 . his family paid money to his captors , a pakistani source says . the captors then began demanding prisoners be released in exchange for weinstein , the source says , but it did n't work . weinstein was inadvertently killed in an anti-terror strike in january , the white house says .\nsmall time drug dealer rudy guede , 29 , is serving a 16-year sentence . ivory coast national 's dna was found all over the bedroom . meredith kercher was found half-naked with her throat slit in 2007 . knox and ex-boyfriend raffaele sollecito served four years for the murder . they were conclusively cleared last month by italy 's highest court .\neugenie bouchard crashed out of the miami open in the second round . the 21-year-old was reduced to tears after losing to lesia tsurenko at indian wells . bouchards has struggled this year and has a 6-4 win-lose record . serena williams is on course to continue her unbeaten start to the year .\nglobal music sales fell 0.4 % in 2014 to $ 14.97 billion . digital delivery of music caught up with physical formats for first time . ` frozen ' soundtrack was the year 's top-selling album . pharrell williams ' ` happy ' was the top single .\ngaza police have seized the work ` under a court order ' from bilal khaled . he is accused of buying the piece painted on a door belonging to the darduna family . the now homeless family say they were ` tricked ' into parting with it . the elusive street artist produced the artwork during a secret visit to gaza .\nst george 's county asylum in stafford , west midlands , opened in 1818 and housed nearly 1,000 patients . it closed in 1995 and 145 long-term patients were re-located . the asylum is now set to be transformed into 102 apartments . parts of the building will have to be demolished as they are beyond repair .\nan albino bottlenose dolphin has been making waves at the taiji whale museum in southern japan . the rare specimen is believed to be only the second one ever put on display in an aquarium . the animal was captured during the annual dolphin hunt in the town of taiji in january last year .\ntottenham face newcastle in the premier league on sunday . spurs have struggled to a draw against burnley and aston villa . mauricio pochettino 's side are also out of the europa league . pochettinos believes another season in the competition could hamper their top four hopes .\nbenjamin carr , 22 , harboured a hatred of pennie davis , 47 , during her six-year relationship with his father . he ordered fellow drug dealer justin robertson , 36 , to kill her after she threatened to tell police he sexually assaulted young girls eight years earlier . mrs davis was discovered in a pool of blood by her new husband after she was stabbed while tending her horses in the new forest .\nasma fahmi was walking to her car with her family when they were attacked by three men from a balcony . the 34-year-old was with her sister and ill mother when they had hard boiled eggs pelted at their heads . the men were chanting ` you f *** ing pakis , you f *** ing pakis ' over and over . asma attempted to take a photo of the men but became too fearful of her safety and jumped in the car . this was the second time that asma has been attacked in sydney in four years .\nbristol city beat bradford 6-0 to secure promotion from league one . james tavernier opened the scoring with a neat finish after 16 minutes . joe bryan doubled bristol 's lead with a first-half header . luke ayling , aden flint and aaron wilbraham completed the rout . bristol city are the first side from the football league to win promotion .\nformer secretary of state will run for president in 2016 . wall street elites are ready to roll out the red carpet for clinton . but clinton 's perceived coziness with wall street is a source of irritation for liberal activists . she has to reintroduce herself to the party , some say .\nmichelle obama managed to combine an event with school children during the afternoon and a black tie event in the evening . the white house kitchen garden was full of school children on wednesday afternoon as flotus oversaw a session of planting spinach , broccoli , lettuce , radish and bok choy . the first lady was announcing the launch of the latest part of her ongoing let 's move initiative . she then changed into a flawless black dress for the annual grammys on the hill awards which were held at hamilton live in washington , d.c.\nangelina jolie spoke passionately about the plight of refugees in syria and sharply criticized the un security council for their lack of action . the actress briefed the council as special envoy for the u.n. on refugee issues on friday . nearly four million syrians have fled the conflict into neighboring countries , which warn they are dangerously overstretched .\npoundland has been forced to pull decorative plastic easter eggs from shelves . trading standards officials in buckinghamshire and surrey raised the alarm over the chinese made decorations . they were ` likely to contravene food imitation safety rules ' the eggs have now been withdrawn nationwide ahead of the easter break .\nnorman turgel , 24 , was sent to arrest ss guards at bergen-belsen . he met gena , 20 , who was a walking skeleton and fell in love with her . major leonard berney , the commanding officer of liberated belsen , took a personal interest in the pair . norman and gena were married two months short of their golden wedding anniversary of 50 years . bergen belsen was liberated by the british army 70 years ago this week .\ndarren goddard , 48 , was about to delete his facebook account when lewis helget , 27 , posted an appeal for help finding his father . mr goddard left germany in 1989 after his marriage broke down following a car accident . he had left behind his 18-month-old son , who he thought he would never see again . the pair finally met last month when lewis flew to the uk for his grandfather 's funeral .\ncody the horse got stuck in the bog in belvedere , south-east london . crews spent more than an hour trying to free him from the watery ditch . the horse was covered head to hoof in mud after being dragged to safety . fire crews say cody will not be running in the grand national tomorrow .\njerry brown ordered state officials to impose mandatory water restrictions for the first time in history on wednesday . the state continues to grapple with a serious drought . brown said wednesday that he had signed an executive order requiring the state water resources control board to implement measures in cities and towns to cut water usage by 25 percent compared with 2013 levels . california has been in a drought for four years .\ntexas-based pre-law student taylor burmeister tweeted a joke about hillary clinton 's inability to ` satisfy ' her husband bill clinton on thursday . when someone retweeted the quip two hours later and included trump 's twitter handle in the message , one of the billionaire 's staffers retweeted it for him . trump 's office confirmed on friday that it was a trump employee , not a fat-fingered ceo , who was responsible . burmeisters deleted the tweets after getting lots of backlash .\ntheia , a one-year-old bully breed mix , was hit by a car and buried in a field . she survived and was found emaciated and dirt-covered on a farm . the dog still needs surgery to help her breathe . a fundraising page has raised more than $ 10,000 for her care .\nchelsea drew 0-0 with arsenal at the emirates stadium on sunday . john terry was the star performer for jose mourinho 's side in north london . jamie carragher believes terry is the best defender to have played in the premier league . carragher claims terry has been almost as influential as eden hazard .\nella may rudd had been trying to have a leak on her hummer h2 repaired at a maaco auto body shop in haggerstown , maryland for two months . co-owner kyle kandrick left a threatening voicemail for rudd 's husband after she left a scathing review on the shop 's facebook page . ' i want you to get her in check before there is a big f *** ing problem here on my end , ' he said . kandrick was suspended after rudd posted the voicemail on facebook and the post quickly went viral .\na 27-year-old man was arrested after police found a woman 's body in his car . the man ran into bushland after police stopped his hyundai getz on wednesday . police chased him into bush land and pounced on him . he was taken away by police without a struggle . police are investigating whether the body is that of missing canberra woman daniella d'addario .\nthomas buckett , 21 , was 16 when he fell through roof of school in 2010 . he had broken into tuck shop and was dared to jump on glass skylight . mr buckett suffered ten skull fractures and had to have surgery . his family sued staffordshire county council for not doing more to secure premises . but they were unsuccessful and now face a huge legal bill .\ntwo police officers and a court clerk in the city of ferguson , missouri were fired after exchanging racist emails . one email sent by captain richard henke said of president obama ; ` what black man holds a steady job for four years ' in the other emails president obama is labelled a monkey , welfare recipients are described as ` lazy ' and unable to speak english before being compared to dogs . first lady michelle obama is called a tribeswoman in one email . all three were removed from their jobs after the emails were discovered . analysis of more than 35,000 pages of police records found as well as racist comments from ferguson officers as well . the emails were released on thursday .\nall day long is a new book by joanna biggs . it tells the stories of people who work all over the country . biggs divides her workers in interesting categories . she also discusses mandatory work activity , usually known as ` workfare ' the book is a great contribution to our knowledge of the world of work .\nhonza and claudine lafon have posted pictures of their yoga poses on instagram . the sydney couple have more than 251,000 followers on the social media site . the images show the pair doing yoga poses in front of famous landmarks . they have posted photos from ubud , bali , to barcelona and london 's tower bridge .\nandy murray is set to marry fiancee kim sears in dunblane next saturday . the couple will be celebrating with family and genuine friends . murray is currently world no 3 after winning the miami open . the scot lost to novak djokovic in the mens final on sunday .\nshigella infections , otherwise known as ` delhi belly ' or ` montezuma 's revenge ' were traced to people who had recently traveled to the dominican republic , india or other countries . symptoms include diarrhea , stomach cramps and nausea . the superbug sickened at least 243 people , in 32 states and puerto rico .\nalison hall , 48 , was at work when she took out her blue salbutamol inhaler . she took a sharp breath and felt something shoot to the back of her throat . the mother-of-one ran outside in a panic when a neighbour came to her rescue . she said it was part of a cheap # 1.50 set she had used weeks before .\ndemocratic presidential candidate hillary clinton will testify in public about the benghazi debacle , and about her exclusive use of a home-brew email server while she was secretary of state . south carolina republican rep. trey gowdy said he wants clinton to testify the week of may 18 and again before june 18 . the first hearing would focus on clinton 's use of private emails , and the second on the september 2012 attacks that killed four americans , including the u.s. ambassador to libya .\nmichael slager , 33 , is being held in isolation at charleston county jail . his lawyer said he is not allowed to walk down a hall without the entire cell block being cleared first . his wife jamie is eight-and-a-half months pregnant . his mother karen sharpe and his wife were allowed to visit him on friday . slager was charged with murder on tuesday after shooting dead walter scott . he stopped the father-of-four over a broken tail light on saturday . when scott fled , slager followed , and shot him in the back .\nroyal horticultural society calls on people to plant trees , shrubs , climbers , hedges or flowers to attract wildlife . more than 7million front lawns in britain have now been paved over . rhs says it raises risk of flooding and reduces habitats for wildlife . poll found 95 per cent of people said being in a beautiful garden lifted their mood .\nmoore is selling the 14-bedroom upper west side home she once shared with ex-husband bruce willis for $ 75million . if the home sells for that much , it will break the record for the most expensive co-op apartment ever sold on the upper west side . the actress and willis purchased the south tower penthouse on the 28th floor of the historic san remo apartment building in 1990 .\nthree ba planes were diverted in just over 24 hours over the weekend . one plane from baku , azerbaijan to london was forced to return back to the airport . a medical emergency and two technical issues meant delays for passengers . ba denied an engine fire forced one of it 's london-bound planes to return .\njoe calzaghe retired from boxing in 2011 after 46 fights . the former world champion was on holiday in barbados . he was pictured with his girlfriend lucy on the beach . the couple enjoyed a jet-ski session before the rain came down . calzag he won all 46 of his professional fights .\ntyphoon maysak could make landfall in the philippines on sunday . the storm is expected to lose strength before it reaches the country 's coast . the typhoon could bring heavy rains to luzon starting friday . the philippines is frequently hit by typhoons . in april .\npeter o'toole was on set for the last time when he died in 2012 . fall of an empire : the story of katherine of alexandria has been dubbed one of the biggest independent films for decades . the film features steven berkoff , edward fox , joss ackland and nicole keniheart alongside o`toole .\nhome affairs committee chairman keith vaz led calls for compensation . just 2,191 compensation applications were approved between april and january . ministers refused blanket refund to families who had to pay extra to get documents . passport office made a surplus of # 42.3 million between april to october last year . in 2013-14 managers were handed a total of # 1.8 million in bonuses .\nnbc journalists are looking at brian williams ' reporting in egypt in 2011 . the nightly news anchor said he ` made eye contact ' with a government soldier . however , there is no footage of williams actually on tahrir square . williams was suspended in february amid allegations he lied about being in a helicopter that was shot down in iraq in 2003 . nbc 's investigation is not yet complete and will make recommendations about his future .\ntiny two-bedroom home is only 5ft wide in some areas and its maximum width is 8ft 8in . it is sandwiched between two double fronted properties on a leafy street in islington , north london . the property has a tiny study , reception room , shower room , cloakroom , kitchen and a garden .\ncharlie austin has scored 17 goals for queens park rangers this season . the qpr striker is being monitored by england boss roy hodgson . the three lions face republic of ireland and slovenia in the summer . harry kane will be with gareth southgate 's under-21 team in italy .\n` all hell broke loose ' in mass brawl involving up to 20 holidaymakers at pontins . two women were knocked out and a reveller was arrested after fracas . police were called after teenagers started ` running riot ' and women threw chairs at one and other during the fracas at southport holiday park , merseyside .\nfootball association have decided to withdraw from the victory shield . england are the most successful country in the competition 's history . the football association say the move is to aid player development . wales are the current holders of the competition . wayne rooney , sir stanley matthews , duncan edwards and peter shilton are all veterans of the long-contested under 16 tournament .\nthe suspect , who has n't been named , was quickly apprehended but not before he had driven the best part of a mile , abandoned the car and attempted to flee on foot . birmingham officers responded to a phone call about a burglary in progress on the 300 block of memphis street in wylam around 8:45 a.m. on sunday . the man was put in handcuffs with his hands behind his back and placed him in the back of a police cruiser . while medics were treating an officer for a cut , the suspect managed to get his hands in front of him and climb into the front seat of the vehicle . he then drove less than a mile to the 4600 block of 9th avenue\njosh mason , who is standing in lib dem-held redcar , said the deputy prime minister was ` not the most popular ' he said a visit from the party leader to the seat would not ` do us any favours ' mr clegg has seen a dramatic collapse in his popularity since the 2010 election .\nanthony joshua faces jason gavern in his 11th professional fight on saturday . the british heavyweight is unbeaten in 10 fights and has never been knocked out . joshua believes his ` hunger and determination ' will more than make up for gavern 's superior experience . the pair will go head-to-head at the newcastle metro arena .\nnasa 's ellen stofan says we may find evidence of alien life in 20 to 30 years . `` we are not talking about little green men , '' she says . nasa has found evidence or indications of water on a number of celestial bodies . the hubble space telescope has been key to the discoveries , nasa says .\npatrick bamford scores the opening goal of the game in the 20th minute . middlesbrough move back to the top of the championship table with the win . the on-loan chelsea striker has now scored four goals in his last four games . wigan remain in the relegation zone after a third defeat in their last five games .\nfbi says it has removed zulkifli bin hir from its list of most wanted terrorists . marwan , whose real name is zulk ifli abdhir , was killed in a botched raid in january . he was believed to be a member of southeast asian terror group jemaah islamiyah .\nmanhattan 's fifth avenue was a sea of bizarre hats today as people celebrating easter took to the streets in outlandish headgear . bunny ears , eggs and flowers were among the more conservative adornments festooning the heads of new yorkers . the parade was centered on st patrick 's cathedral , where christians emerged from mass. .\nlord janner signed letter to lords authorities on april 9 saying he wanted to remain a peer . it comes a week after cps ruled he would not face child sex charges because he has alzheimer 's disease . abuse campaigners have questioned why he was able to remain in the house of lords if he was too frail to be brought before court .\nhuw davies has been searching for permanent employment for 13 years . he has a bsc -lrb- hons -rrb- degree and three a-levels on his cv . but he has not even been called for an interview . the 34-year-old has worked in south africa , kuwait and saudi arabia . he says he has moved three times to work but has not secured a job .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call . the weekly newsquiz tests students ' knowledge of events in the news .\npj spraggins , from birmingham , alabama , was told his wife tracy , 39 , would need a kidney transplant if she did n't get one . he lost 145lbs in a year to be a perfect match for her . but doctors said his size meant the operation could n't go ahead . he kept losing weight and going in for tests , only to be told he needed to lose more . finally , in december 2014 , they got the green light to undergo surgery .\ncan a woman with 34g curves like mine ever look fab in a strapless dress ? . lace pencil dress , # 169 , monsoon.co.uk . sweetheart neckline dress , # 150 , coast-stores . com ; heels # 485 , biondacastana.com .\nleicester city manager nigel pearson wants his side to focus on their own jobs . the foxes are just three points from safety in the premier league . leicester face swansea city at the liberty stadium on saturday . jamie vardy scored an injury-time winner against west bromwich albion on saturday to improve his side 's slim chance of premier league survival .\nshaun worthington 's car was filmed on a truck 's dashcam veering into oncoming traffic . the 29-year-old died instantly after his audi a4 collided with a truck on a614 . his mother appealed to other motorists not to use their mobile phones while driving . coroner paul marks returned a verdict of accidental death at hull coroner 's court .\ntickets for the may 2 bout between floyd mayweather and manny pacquiao sold out within minutes on thursday night . the high pay-per-view price of the fight could mean that thousands of fight fans might try to watch the bout for free via a live video streaming app like periscope or meerkat . if that were to happen , broadcasters showtime and hbo could miss out on millions as viewers illegally stream the content between their devices without paying .\nsupreme court justices appear divided on the constitutionality of gay marriage . chief justice john roberts seemed to lean more closely to conservative justices . justice anthony kennedy returned to a familiar role as the court 's pivotal vote . the arguments unfurled inside a packed courtroom on tuesday while supporters and opponents of same-sex marriage rallied outside .\n39 % of voters say they will back the conservatives compared to just 33 % for labour . shock poll published this afternoon by icm puts tories six points ahead of labour in the polls . comes after tories unveiled key election pledge to scrap inheritance tax on # 1m homes .\naracely meza , 49 , is accused of helping to starve the boy to rid him of a ` demon ' witnesses told police that the boy 's parents believed he had a ' demon ' inside of him , and that he was starved for 25 days , being given only water four to five times a day . church member nazareth zurita said the toddler , whose name has not been released , fell and hit his head several times , but she hesitated to help him ` due to his demon possession ' police believe the child was dead during the ceremony but that his parents took his body to their native mexico for burial without reporting the death . meza was charged on monday with injury to a child\ngareth shoulder has been recruited by the bbc to comment on the election . he is a member of its ` generation 2015 election youth panel ' the 24-year-old used his ` @bbcgen2015 ' twitter page to make the remark . he mocked mr cameron and ivan , who died aged six in 2009 . ivan was born with cerebral palsy and epilepsy .\na letter to my mom is author lisa erspamer 's third collection of tributes to mothers . the book has been published just in time for mother 's day on may 10 . kelly osbourne wrote a letter to her mother sharon saying she 's proud to be her daughter .\nbrittany huber , 23 , was killed on impact when her fiance john redman lost control of his car on a georgia highway last april . redman survived but was left with a cracked skull and broken ribs , and was told he would spend the rest of his life in a wheelchair . the 25-year-old assistant basketball coach at dalton state college recovered and helped lead his team to its first championship title on march 24 . huber was not there to celebrate with redman .\nthe south sydney rabbitohs beat the canterbury bulldogs 18-17 in an absorbing encounter at anz stadium in sydney on friday night . fans turned on referee gerard sutton and his colleagues after they penalised bulldogs captain james graham in the final minute . sideline interchange official darren alchin has been taken to hospital with a suspected broken shoulder after he slipped to avoid being hit with bottles . canterbury chief executive raelene castle said the club has called for a life ban from all nrl fixtures on fans who were responsible in the attack .\njeff green was diagnosed with an aortic aneurysm while playing for the boston celtics . the memphis grizzlies small forward had open heart surgery . he missed the entire 2011-2012 season . green is now using his story to raise awareness of hidden heart risk . he also spends time with children dealing with cardiac issues .\narsene wenger 's side face aston villa in the fa cup final on saturday . jack wilshere was on the bench against reading after five months out through injury . ray parlour has backed the 23-year-old to be the future of the club .\nthe duck ran from animal care workers for at least a week after it was pierced in the neck . the egyptian goose at first appeared to make it successfully through the arrow removal operation at a bird and wildlife clinic wednesday but then died a short time later . the cause of the birds injuries are unknown but officials believe it was the victim of animal cruelty .\nxabi alonso won the champions league with liverpool and real madrid . the 33-year-old is now at bayern munich and wants to win it with a third club . bayern face porto in the quarter-finals on wednesday night . the first leg is at the dragao stadium .\nalleged horse thief francis pusok , 30 , was chased by officers in california . he is seen falling off horse and being stuned with a taser by officers . seconds later , two deputies appear to come up and kick him in head and crotch . as more officers join in , the men huddle in a pack over pusok . he was then seen being punched and kicked in the back and head . now , 10 deputies have been placed on paid administrative leave . san bernardino county sheriff john mcmahon said footage ` disturbed him '\ntim sherwood was sacked as tottenham manager last summer . the former england midfielder will return to white hart lane on saturday . mauricio pochettino says he expects a ` very good reception ' for sherwood . tottenham host aston villa at white hart lane on saturday afternoon .\njohn dickerson , chief political correspondent of slate magazine , will take over from bob schieffer . the 78-year-old announced he would be retiring last week . dickerson worked for time magazine for 12 years , four of them as white house correspondent . he is expected to make his first appearance this summer . schieffer has worked for cbs since 1969 . he began at the political affairs show ` face the nation ' in 1991 .\nmore than 200 australians are confirmed safe but authorities are still trying to contact hundreds of others . around 549 aussies are registered as travelling in the himalayan region . the family of 20-year-old perth volunteer ballantyne forder led a tireless campaign , making headlines as they pleaded for help to find her . actor hugh sheridan has made a heartbreaking plea on social media to ask for prayers for his younger brother zachary who is missing at mount everest .\ndavid cameron has been accused of trying to hide his bald spot . ukip leader nigel farage said he was ` jealous ' of how the tory leader has reversed the greying process while in downing street . mr farage said : ` any man who can reverse the greied process i 'm jealous of '\nblues midfielder willian wants his team-mates to take confidence from saturday 's win against stoke . eden hazard and loic remy scored in chelsea 's 2-1 win at stamford bridge . jose mourinho 's side are seven points clear at the top of the premier league table .\npilot on flight from berlin to paris gave speech to calm nerves . hugh roche kelly said he felt ` enormous respect ' for the pilot . second black box flight recorders confirm andreas lubitz deliberately crashed plane . lubitz , 27 , deliberately flew airbus a320 into side of mountain in french alps .\nthe two-bedroom property in snodland , kent , was first rented in 1915 . len and beatrice barnes raised their son gordon and three daughters in the house . it was passed to freda when they died and she died last december aged 99 . howard knott , 70 , son of hilda , is selling the house for # 164,500 . simon miller estate agents is holding an open day at the house tomorrow .\ntaylor davis , 20 , was seen in the kissimmee , florida store , touching himself and possibly following a female shopper on tuesday . the disney worker told authorities he has done similar inappropriate acts while working at disney . he was arrested on disorderly conduct and criminal mischief and booked into the osceola county jail .\na jury has been selected in the colorado movie theater massacre trial . james holmes is accused of killing 12 people and injuring 70 others in 2012 . he has pleaded not guilty by reason of insanity . opening statements in the trial are scheduled to begin on april 27 . the jury is almost entirely white and mostly middle-aged .\nkai windsor , 10 , from cheltenham , gloucestershire , was born a girl . he shunned traditional girls ' toys in favour of kicking a ball around . by nine , he told his mother rachel , 37 , he was really a boy . now , at the age of ten , kai is set to undergo hormone treatment . it will halt puberty to stop him developing into a woman .\ndavid tungate , 58 , from london , has had two failed marriages with gambian women . his first wife was a serial bigamist who conned him out of # 24,000 . he then remarried but the marriage broke down shortly after he brought her to the uk . david is now dating a third gambian woman and is convinced it will be third time lucky .\nvanilla ice , whose real name is robert van winkle , appeared . in palm beach county court on thursday and agreed to a plea deal over a grand theft charge . he agreed to perform 100 hours of community service and pay $ 1,333 to the estate of a neighbor in lantana , florida . he was accused of stealing furniture , a pool heater , bicycles and other items from the home .\nprince harry took part in sortie from goodwood to isle of wight in spitfire . video shows him howling with excitement as he performs a loop over english cennel . the 30-year-old will begin a month-long attachment with australian defence force .\nallie davis , 21 , based in minneapolis , delivered her boyfriend the ten-question document . she informed him that he must score at least 60 per cent ` to stay in the relationship ' allie posted results of stunt on twitter , revealing that he passed with 80 per cent . she later shared a blank copy of the exam with her 2,000 + followers .\ncomputer game based on whack-a-mole encourages players to throw food at cartoon girl battling anorexia . if player misses the girl , she starts to lose weight until she eventually dies . game was available on amazon and android platforms until it was withdrawn following complaints .\narsenal legend ian wright says theo walcott should have been a striker . the gunners winger has made just five starts for arsenal this season . wright says he would be ` sad ' if walcott left north london . the england winger 's contract expires next summer . arsenal are interested in liverpool 's raheem sterling .\nalex impey is a father-of-two selling medicinal marijuana to those suffering from serious illness . he says he receives 20 new requests for help each week . the cannabis is used to treat cancer , parkinson 's and other conditions . parents of children with serious illnesses are being taught how to grow their own marijuana crops . peter rule , who has cerebral palsy and epilepsy , turned to liquid cannabis to help his daughter , larisa , cope with her symptoms .\nbritish company swan sold its first iron in 1933 . swan has just released a top-of-the-range steam generator iron . but does it really make things easier ? tessa cunningham finds out . the super steam iron is available from swan for # 279.99 .\nrangers will play hearts at tynecastle on may 3 in the championship . the match was moved back 24 hours to accommodate broadcasters . hibernian and hearts are upset that the game has been pushed back for tv purposes . the spl have been told that all final round fixtures must be played at the same time .\nmiss harman has said she wants to become deputy prime minister . ed miliband refused to say that his deputy would get the second most powerful job if he gets to number 10 . miss harman previously suggested gordon brown 's refusal in 2007 to make her deputy pm was sexist .\nlobster pound and moore , in cape breton , nova scotia , had posted ` effective as of now , we will no longer allow small screaming children ' on facebook . the message , posted last sunday night , was deleted by monday morning after a torrent of online abuse came from disgruntled parents . owner richard moore later posted an apology on the page , saying that the ` hate and threats ' the owner had received had prompted him to reconsider his policy .\npeter costello slammed the abbott government 's tax plans in an opinion piece in the daily telegraph . he said the government 's proposal for a ` lower , simpler , fairer ' system was a ` morbid joke ' the former treasurer also slammed labor and the greens for using the tax system to re-distribute income . treasurer joe hockey was not impressed with the costello critique , lamenting the fact his liberal predecessor had more tax revenue to use during the howard government years .\nbitglass created a spreadsheet of 1,568 fake employee credentials . it was placed on anonymous file sharing sites within the dark web . the data was viewed more than 1,000 times and downloaded 47 times . by day 12 , the file had received over 1,080 clicks . it landed in five continents and 22 countries within just two weeks . some activity had connections to crime syndicates in nigeria and russia .\nmarouane fellaini started for manchester united against chelsea on sunday . chelsea manager jose mourinho had been preparing his players to deal with the threat of the 6ft 4in midfielder all week . but the blues boss was told by a hotel doorman that the belgian was not playing . mourinho said he went to google and found out that fellaine 's twin brother mansour was also at the hotel .\nthe ship , called the dalny vostock , sank in the sea of okhotsk at 4am . it was carrying 132 crew members when it tipped over in the freezing sea . more than 1,300 people are involved in the rescue operation , with 63 rescued . at least 54 bodies have been recovered , and 13 people are still missing .\nvin los , 24 , has 24 tattoos on his face , neck , chest , arms and legs . he has been modelling for underwear brand garçon model since last year . the montreal-based model says he wants to become the most famous man in the world .\nregina agyare is a tech entrepreneur from ghana . she is teaching local girls how to code . her project achievers ghana aims to help girls in nima , a slum . achieters ghana provides school funding to help the girls shape their own future .\nbarcelona travel to paris to face psg in the champions league quarter-final on wednesday . the first leg of the tie will take place at the parc des princes . adriano has warned his team-mates they must be at their absolute best if they are to overcome psg 's star-studded squad .\ned miliband is never far from a lectern during the election campaign . labour leader has been touring the country with the prop in an attempt to make him appear more statesmanlike . he has delivered key speeches in the campaign stood behind the lectern . but it has also been deployed when he is just making some brief remarks or holding question and answer events with members of the public .\njoe root scored 182 not out on day four of the second test in grenada . west indies finished day four 37 runs ahead on 202 for two at stumps . root admitted that the pitch was too easy to score runs on and too tough to take wickets .\nwaheed ahmed , 21 , from rochdale , arrested at birmingham airport this morning . he was deported by turkish authorities and flown back to britain last night . ahmed and eight of his relatives - including four children - were stopped on the turkish border with syria on april 1 .\nmodel and actress has unveiled her latest collection . full of lace dresses and playsuits . launching on wednesday . michelle , 27 , is also face of garnier ambre solaire no streaks bronzer self tan . recently revealed her beauty secrets . says she takes a ` less is more ' approach to make-up .\ncommemoration services held all over the world to mark 100th anniversary of gallipoli campaign . queen led tributes to those who fought and fell in ill-fated offensive . prince charles and prince harry joined 10,000 people in a dawn pilgrimage at gallipoli .\npianist laurie holloway accompanied the queen and princess margaret to buckingham palace in august 1990 . the royals recorded a cassette tape of favourite children 's songs for the queen mother 's 90th birthday . princess margaret told mr holloway that the queen mother really liked the tape . unfortunately , the recording was lost following the queen 's death in 2002 .\nsvinafellsjokull glacier in iceland is a popular hiking destination . the salar de uyuni is the largest salt flats in the world . the fairy chimneys of cappadocia are said to have been the homes of fairies . yellowstone national park 's grand prismatic spring is the first largest hot spring in the world .\nmany record stores are succeeding by catering to a passionate core of customers and collectors . record store day is an annual celebration of your neighborhood record store . many stores will host live performances , drawings , book signings and special sales of rare or autographed vinyl . some will even serve beer .\nus researchers claim that exact prices of goods on ebay attract higher offers than round numbers . when the posted initial price is of a round number , like $ 1,000 , the average counteroffer is much lower . but sellers with round numbers are more likely to close a deal six to 11 days sooner . they are also up to 5 per cent more likely than non-round numbers to sell at all .\none seal died and another was hurt on friday at joint expeditionary base little creek-fort story in virginia . the names of the seals are being withheld pending notification of next of kin . navy spokesman lieutenant david lloyd said : ` they were working out in the pool . it was not dive training '\njenson button 's miserable formula one season continued in bahrain . the british driver was set to start from the back of the grid after he broke down in qualifying . mclaren chairman ron dennis said the engine was not broken . button took to twitter to update his fans following yet another car failure .\njulian zelizer : u.s. has made clear it is ready to step up to the plate on climate change . he says the u.n. climate negotiations in paris in december are the place to secure strong agreement . zelizer says a successful pact will send a signal that a shift to a low-carbon economy is underway .\ngiuliana rancic and jerry o'connell were pictured together at the maxim hot 100 party in las vegas in june of 2004 . the tv personality revealed in her new book that jerry was ` talking up rebecca as a prelude to feeling up rebecca ' the couple split in 2005 after jerry was found cheating on her with geri halliwell from the spice girls .\nperth glory have been banned from the a-league finals . the club was found guilty of rorting the salary cap over three years . glory were fined $ 269,000 and relegated to seventh spot on the table . ffa claims the club failed to disclose payments and benefits to at least six players . glory have filed with the supreme court of western australia seeking an injunction against ffa 's verdict .\nmoises henriques has signed a deal to play for surrey in the t20 blast . the australian all-rounder will join after the ipl ends next month . henriques will also be overseas cover for kumar sangakkara . the 28-year-old has been capped by australia in all formats .\nthiago made his first appearance for bayern munich since march 2014 . the midfielder came on for philipp lahm in the 1-0 win against borussia dortmund . thiago admitted it was an emotional moment and thanked the club . the spaniard said : ` football is my life '\npaul hellyer was a canadian minister from 1963 to 1967 . he is now urging world powers to release what he believes to be hidden data on ufos . ` much of the media wo n't touch -lsb- the documents -rsb- ' , he said . hellyer , 91 , first went public with his belief in aliens on earth in 2005 .\ntwo turks were killed in a suicide car bomb attack near the us consulate in the kurdish region of iraq . the us state department said the bombing in ainkawa , near kurdish regional capital arbil , did not kill or wound any consular employees . isis also claimed responsibility for two car bombings in baghdad that killed at least 27 people on friday .\nobama administration 's nuclear deal with iran looks like a win-win for iran , says peter bergen . but the deal lacks tough safeguards to stop iran from cheating , he says . bergen : if obama is going to hand over billions of dollars to a regime that behaves like this , it has to be a better deal . he says congress should have introduced tougher sanctions on iran .\nthe brazil international is out of contract with barcelona in june . dani alves has been sounded out by manchester united over a move to old trafford . the 32-year-old is hoping barcelona make him an improved offer . but if he does end up at united will he be a success ?\nengland are set to face trial by leg-spin in the second test . west indies captain denesh ramdin confirmed that leg-spinner devendra bishoo will play on tuesday . bisho has taken 40 wickets over 11 caps for the west indies .\nrory mcilroy battled with fifty shades of grey star jamie dornan in circular soccer . the world no 1 golfer defeated the film star 2-1 to take the crown . the duo were taking part in the first circular soccer showdown of 2015 .\na queensland man and an australian citizen have been arrested in china . the two men were allegedly arrested at guangzhou airport in june 2014 . they were allegedly in possession of a substantial quantity of ice . the man , ibrahim jalloh , is awaiting trial . he is believed to be facing the death penalty . the arrests were mentioned in a melbourne court last week . three men face trial , accused of being embroiled in a drug ring importing drugs to australia from china .\nnoor ellis admitted to the murder of her husband robert ellis , 60 , at their home in bali last october . she told the court that she hired hitmen to kill her husband because he refused to give her money or grant her a divorce . the body of robert ellis was found wrapped in plastic with his wrists and feet bound and was dumped in a ditch in a rice field . mrs ellis faces the death penalty if she is found guilty of the charge of premeditated murder .\nindonesia 's attorney general 's office says nine of ten on death row given 72 hours notice . lawyers for philippines maid mary jane veloso say she will be executed on april 28 . the ten are mostly foreign prisoners , including two australians . they were denied clemency in late 2014 .\nmolly hennessey-fiske , a reporter for the los angeles times , received the letter from a man purporting to be robert durst . the letter , post-marked april 1st in baton rouge , specifically states that durst ` said nothing about charges , crimes or trials ' but rambles on about his thoughts on life in southern california . durst , 71 , was arrested last month for the suspected 2000 murder of his friend , writer susan berman , in los angeles . he is currently being held in louisiana on state and federal gun charges before being extradited to california .\noxford university study says amount spent on dementia and strokes is ` still way too low ' almost two-thirds of research funding allocated by to the four conditions was allocated to cancer . the spend on heart disease is eight times that of dementia and triple the amount spent in stroke .\nap mccoy will retire from racing at sandown on sunday . the northern irishman has won 20 consecutive champion jump titles . mccoy has won every major race to his name including the grand national . he has lost the equivalent weight of two african elephants in his career . mccoy is the most successful jump jockey of all time .\nseven-week-old baby grace joy roseman died after she managed to move over the edge of her adjustable cot . a ` safety ' ridge cut off oxygen supply to her brain , west sussex coroner 's court heard . coroner penelope schofield has called for the ` dangerous ' cot to be pulled from the shelves .\ntakako konishi was found dead in a field in the frozen wastes of minnesota in 2001 . she had travelled to the us to find a suitcase of cash buried in the film fargo . the 28-year-old was found by a hunter and her body was found in woodland . the film fargo was shot in the area and the story of her death was made into a film . kumiko , the treasure hunter tells the story in a new documentary about her journey and death .\ngraffiti artists have transformed more than 30 phone booths into baymax . the character from the disney movie big hero 6 has a cult following in china . artist xiao wang said he wanted to raise a smile with stressed-out residents . the team of artists painted 30 phonebooths in five hours overnight .\nqueens park rangers host chelsea in the west london derby on sunday . qpr are without defender richard dunne who is close to a return . diego costa is out for chelsea with a hamstring injury . cesc fabregas will start alongside nemanja matic in midfield .\nmarc carn was drinking in irish bar with friends when he suddenly disappeared . the 29-year-old failed to turn up for his flight home from barcelona on saturday . his family feared he would miss the first birthday of his twins tomorrow . but he handed himself into the british consulate this afternoon after walking for two days to try and get back to barcelona . family said he was dropped ` miles away ' from his hotel by his taxi driver .\nmk dons beat doncaster 3-0 in league one on tuesday night . preston remain top of the table after beating notts county 3-1 . swindon look destined for the play-offs after a 3-3 draw with walsall . rochdale kept their faint play-off hopes alive with a 1-0 win over leyton orient .\n`` mad men '' is ending its eighth season on sunday . the show has become part of the national fabric , if never a huge ratings hit . the last season ended with the moon landing in 1969 . the new season will pick up soon afterward . the '60s will be the focus .\nmore than 112,000 drivers were given fines or appeared in court for motorway offences last year . increase put down to introduction of ` smart motorways ' which use cameras to police speed limits . conservatives are already moving to scrap the controversial cameras . labour has pledged to repaint them yellow so they are easier for drivers to spot .\nswiss town of zermatt has banned selfies with st bernards . the dogs are being used as tourist props by a company in the town . animal welfare charity said the dogs were kept in ` miserable conditions ' the mayor said the practice will be stamped out by next winter .\nthe prison in philadelphia , pennsylvania was built in 1895 and housed some of the country 's most dangerous criminals . it was closed in 1996 after 101 years of violent riots , bloody beatings and cruel chemical experimentation on inmates . haunting images published in 2011 proved that government doctors used the jail to test chemical substances on inmates and disabled american citizens .\nmanchester united lost 1-0 to chelsea in the premier league on saturday . eden hazard scored the only goal of the game at stamford bridge . wayne rooney was happy with his side 's performance despite the defeat . louis van gaal labelled his side as their best display of the season .\nshadow welsh secretary owen smith expressed regret that the party can not ` get rid ' of the trident nuclear deterrent . around three quarters of labour candidates back scrapping trident . but the party has committed to maintaining the deterrent in its election manifesto . replacing the deterrent with a ` like for like ' system would cost around # 100bn .\npsg forward edinson cavani insists he has a respectful relationship with zlatan ibrahimovic . reports had suggested the pair do not get on . cavani has been linked with a summer exit from the ligue 1 club . the uruguayan forward insists he is frustrated at being played out of position .\nhomeless period project hopes to shred taboo around menstruation . team photographed women living rough in london and wrote messages on cardboard boxes . campaign video tells the story of a woman called patricia who lived rough for six months . she says she was forced to use ` ripped up cloth ' as a makeshift sanitary towel . 26 per cent of people who access homelessness services are women .\nthe army of russia brand is aimed at cashing in on a new wave of patriotism sweeping russia . the men 's clothing label is called the army of russian and launched at mercedes-benz fashion week in moscow . it comes ahead of a military parade in red square on may 9 to mark the 70th anniversary of end of the second world war .\nmay 2 fight between floyd mayweather and manny pacquiao to be held in las vegas . tickets for the highly-anticipated event will go on sale after an agreement on allocation . kenny bayless has been named as the referee of the bout . the 64-year-old nevada native has refereed five of mayweather 's bouts .\nnicola sturgeon has said she will work with labour 's left-wing backbenchers . she said she would ensure a labour minority government did not pursue austerity . the snp leader also pledged to form alliances with minor parties such as the greens and plaid cymru .\nso-called ` boomerang generation ' are putting parents in debt , research shows . only 42 % charge their children rent , compared to a typical uk rent of # 750 . 80 % still buy their adult child 's groceries and 60 % cook dinner for them . parents should not be afraid to ask their children for rent and money .\ncnn team visits the al marmoum camel race in dubai . camel racing is an ancient tradition in the region . the camels race for thousands of dollars in prize money and fancy cars . the winning camels are paraded with pride . the race is held in the desert .\ngovernment abolished paper tax discs last autumn . many motorists are unaware that the old documents are now automatically cancelled when a vehicle changes hands . critics allege that the dvla has been operating a ` money-making scam ' figures show clamping soared after the paperless system was introduced . drivers have faced bills of up to # 800 to get their impounded vehicles back .\nex-nida graduate shannon dooley , 30 , has founded retrosweat . a freestyle aerobics class inspired by eighties vhs workouts . choreography is inspired by jane fonda 's iconic let 's get physical . 50-minute class has 12 dance tracks and is full of costumes .\nthomas ` buddy ' crotty recorded the moment with his daughter madison . he had tried out several ` white noise ' sounds to try and get her to sleep . but she found vader 's deep-sea breathing technique soothing . the video has been viewed more than 4,000 times on youtube .\nobama and castro met for the first time at the summit of the americas in panama . the two leaders are expected to have a ` substantive ' exchange on saturday . speculation is high that cuba could be removed from state department 's list of state terror sponsors . that removal would also lift some economic sanctions on cuba . obama and castro have met once before - at the 2013 funeral of nelson mandela in south africa .\ncallum ryan , 21 , has committed himself to running eight marathons in australia . he will run in each of the eight states and territories between january and september 2015 . the university of sydney student is raising money for heartkids australia . malachy frawley died from heart disease in 2013 when he was just 14 years old . malachie brought laughter to the world in his short but wonderful life . he battled a severe heart condition hypoplastic right heart syndrome . every day in australia , eight babies are born with a heart defect .\nquick silver p-51d mustang was built in 1945 and used in korean war . was reconstructed from more than 200 parts by father-and-son team . bill and scooter yoak restored the plane as a tribute to u.s. servicemen . they say it is a ` celebration of our nation 's armed forces '\nmiddle-aged woman launched into racist tirade on sydney train . she berated muslim woman for wearing a black headscarf . stacey eden , 23 , stood up for the muslim woman and her partner . ms eden recorded a short snippet of the incident on her phone . she told the woman to ` breathe ' and ` shut your mouth ' the muslim couple said they were ` very grateful ' for her stand . police are urging witnesses of the alleged incident to come forward .\npresident obama this morning put a human face on the harmful effects climate change can have on public health - his daughter malia . ` well you know , malia had asthma when she was four , and because we had good health insurance , we were able to knock it out early , ' the president told abc news ' chief health correspondent , dr. richard besser . obama said he can ` relate to ... the fear a parent has when your four-year-old daughter comes up to you and says , `` daddy , i 'm having trouble breathing . '' '\nmanchester united announced a # 750million kit deal with adidas last summer . the german brand will make the club 's kits for 10 years starting from 2015-16 . supposed images of the club 's home , away and third strips for next season have leaked online .\nnigel farage rounded on audience of live tv debate for being too left wing . ukip leader booed by voters at westminster 's methodist central hall . he faced claims he blamed all of britain 's problems on migrants . pollster icm , which was hired by the bbc to select audience , defends process .\nunited launch alliance -lrb- ula -rrb- has unveiled plans for a reusable rocket named ` vulcan ' it will use new engines , mid-air recovery and a new upper stage aimed at enabling complex on-orbit manoeuvres . ula 's plan is to skip returning the whole booster , an approach favoured by rival spacex . it hopes to separate the engines after launch , inflate a heat shield around them and dispatch a helicopter to grab them mid - air .\nthe body of stephanie scott has been formally identified after an autopsy was carried out this week . the 26-year-old 's burned body was found in cocoparra national park , north of griffith , nsw , on friday . the adored teacher from leeton went missing on easter sunday while preparing to go marry her fiancé , aaron leeson-woolley . the department of forensic medicine has made contact with ms scott 's family to provide specialist grief counselling .\nthe australian newspaper lost $ 30 million in the 2012/13 financial year . news corp australia ceo julian clarke was peppered with questions from greens senator and party leader christine milne . ms milne questioned why the australian runs a business when it is not profitable . mr clarke defended the newspaper as the ` finest national newspaper operating in australia '\nnewer beauty products will be personalised to meet your needs . eyeko london 's bespoke mascara comes in dozens of brush shapes . jennifer young offers customised moisturisers , serums and cleansers . harvey nichols ' beauty concierge is a personal shopping service for make-up .\nthe video was captured in wangaratta , northeast victoria . the driver sprayed the door of his car with insect repellent . a huntsman spider then crawled out from under the door handle . the video has already garnered over 100,000 views on youtube and 12,000 shares on facebook .\ntwo air force nuclear missile launch officers face drug charges related to ecstasy , cocaine and bath salts . 1st lt michael alonso and 1stlt lantz balthazar have been charged in cases stemming from an investigation that led to the disclosure last year of a separate exam-cheating scandal . alonso and balthazaar are both members of the 12th missile squadron at the 341st missile wing at malmstrom air force base in montana .\nkevin sinfield will leave leeds rhinos at the end of the season . the 34-year-old will join yorkshire carnegie on an 18-month contract . sinfield is closing in on third place in rugby league 's all-time scoring list . former leeds and england coach tony smith admits he was shocked by sinfield 's decision to switch codes .\nhong kong is experiencing a food mania . tourists and locals line up for hours to buy jenny 's cookies . the cookies are sold for $ 9 a tin . the popularity has spurred bakeries to make and sell knockoffs . the frenzy in hong kong is not an isolated example .\nrihanna was born bradley cooper and realised she was born in wrong body . at 16 , she was accepted for gender reassignment treatment on the nhs . but she called a halt to the programme after two suicide attempts . now , she is working as an escort to pay for her gender reassignments .\nevita nicole sarmonikas died while undergoing plastic surgery in mexico . the 29-year-old was admitted to hospital quirurgico del valle on march 20 . she died on the same day , and her body was not returned to australia . her family flew to mexico to collect her body after an official autopsy . they found discrepancies in the report prepared by the clinic . dr victor ramirez lost another patient the year before ms sarm onikas . roseann falcon ornelas , 52 , was given a tummy tuck by dr ramirez . she began complaining of shortness of breath just five hours after her operation . dr ramirez has been suspended from duty .\nan inebriated sergio barrientos-hinojosa had his 13-year-old son take him to buy beer at the gas station , where he got into an argument and started shooting at another customer . no one was injured in the incident . barriento-hinosa is facing charges including child abuse .\nphilip dunning 44 , from west lothian , made the decision to give notice as shift manager at a food plant in the town within hours . after hitting the jackpot in saturday night 's lotto , he went in for his 4am shift at caledonia produce the next day and told his boss he was quitting .\ntulsa county sheriff 's office launched investigation into reserve deputy 's training . robert bates , 73 , is charged with second-degree manslaughter in the shooting of eric harris . bates ' attorney says bates had the proper training . a 2009 internal investigation found bates was shown special treatment .\nmcilroy is looking to complete a career grand slam this week . the 25-year-old is heavily favourites to win at augusta national . only five men have won all four of golf 's majors in the masters era . mcilroy was caddied by one direction superstar niall horan .\nbradford city 's valley parade fire killed 56 fans and injured 265 on may 11 , 1985 . author martin fletcher claims the devastating fire was not an accident . he has revealed a sequence of other blazes at businesses owned by or associated with stafford heginbotham , the club 's chairman at the time . west yorkshire police today said they would review any fresh evidence surrounding the tragedy .\nscandal-hit lender faced barrage of criticism at annual general meeting . chairman sir david walker defended decision to pay out # 1.86 billion in bonuses . group chief executive antony jenkins saw his pay package more than triple to # 5.5 million . sir david said bank had to pay ` competitively ' to attract best talent .\nisrael says four militants crossed into the golan heights from syria . the militants were trying to plant a bomb on the border , the military says . the airstrikes prevented the bombing , the israeli military says , citing idf sources . three of the alleged attackers were killed , israeli media reports .\nfbi release image of man they believe may have ` critical information ' about child abuse case . they found images of a ` pre-pubescent blonde girl ' being abused . one picture does not show any abuse taking place , but features man posing with her . fbi said they are trying to trace the man - referred to as john doe 29 .\nfly filmed trying to free itself from frozen beef steak . video was recorded in auckland , new zealand . fly is initially captured enjoying itself as it fastens its big tongue onto the beef steak and has a taste . but then it notices that its tongue is stuck to the frozen beef and begins squirming in its attempts to break free .\nmet office says britain will be hotter than ibiza , athens and barcelona tomorrow . temperatures could soar to 21c -lrb- 70f -rrb- tomorrow , with forecasters warning people to make the most of it . ice cream vendors say they have had their busiest april ever as britons cool off .\nhampshire police spent # 16,000 on hunt for ashya king after he was taken from hospital . five-year-old was taken by his parents to be treated abroad last august . police spent more than # 12,000 in overtime and # 1406 on accommodation . grandmother patricia king said : ` it 's disgusting to spend all that money '\nrobert donovan , 57 , was jailed indefinitely in 1974 for stabbing a man to death . he disappeared from ford open prison in arundel , sussex , in 2010 . it took police four years to alert the public about his disappearance . he is one of 39 inmates who have gone missing since 2004 . ministry of justice has now released details of 29 others on the run .\nfifa have been called upon to overturn the controversial decision to hand the 2022 world cup to qatar . qatar won the final round of voting 14-8 against the usa in the executive committee ballot . new research by the mail on sunday has shown just how much the oil-rich middle east state spent on deals in the course of lobbying . there were cash payments made from secret slush funds controlled by mohammed bin hammam .\nthe robots , collectively called avert , are the creation of a european consortium led by the democritus university of thrace in greece . they are fitted with sensors to help them move cars without human intervention . the team has been working on the technology since 2012 and believes a production model could be ready by next year .\nlondon wasps captain james haskell posted a photo on instagram dressed as iron man . the england flanker has played his rugby in france , japan and new zealand . haskell returned to wasps for the 2012 season after spells with stade francais , ricoh black rams and highlanders in new zealand .\njennifer mcgirr claims to be living in fear after windows were smashed at her hotel . the 61-year-old said she received intimidating phone calls after appearing on channel 4 's ` four in a bed ' she described other hotels in blackpool , lancashire , as ` grim ' during the show . cctv footage shows man throwing a brick at the tower view hotel .\nrevellers in remote village in jharkhand state tie themselves upside down onto a wooden pole . they then hang themselves above an open fire in the hope it will bring them good luck . locals believe that the unusual practice helps protect the village from drought and disease .\norlando city have expressed interest in signing javier hernandez . the mexico international has been on loan at real madrid . orlando have a huge latin-american fanbase and kaka is the captain . manchester united have made a revised contract offer to andreas pereira . click here for more manchester united news .\ndeputy labour leader refuses to rule out above-inflation tax rises . she says labour will not increase vat or national insurance rates . but she says party will raise taxes on fuel , alcohol , tobacco or air fares . george osborne says labour would bring back ` fuel duty escalator '\nstacey johnson , 22 , from hertfordshire , was diagnosed with a brain tumour in 2007 . she has undergone gruelling rounds of chemotherapy and radiotherapy . her sister dannii , 20 , became her full time carer and helped her through her teenage years . last year , danni began to suffer headaches and felt ill , so went to the doctor . tests revealed she too had a brain growth , but hers is benign . both sisters were born with neurofibromatosis type 1 - a condition that causes benign lumps and bumps , but it is unclear if it is related to their tumours .\ngraeme dott is through to the last 16 of the world championship . the 37-year-old beat ricky walden 10-8 at the crucible in sheffield . dott remains aggrieved by having to play three best-of-19-frame matches . john higgins impressed with a 10-5 victory over robert milkins .\nbody of janet brown , 51 , was found by builders at the bottom of the stairs of her home in radnage , buckinghamshire . mother-of-three was found naked , gagged with packing tape and her arms cuffed behind her back . police have appealed for information about the ` heinous ' crime 20 years ago . detectives say they have the suspect 's dna but stress there are ` no suspects '\nyou do n't need to go to the african savannahs or the amazonian rainforests to find wild life . here are a few suggestions of places to see wildlife in britain . ospreys , dolphins and red squirrels are all easy to reach . mull is the best spot in scotland to see golden eagles .\nu.s. citizens caught in crossfire of warring parties in yemen . muna mansour and her family are among the dozens of americans trapped . the u.s. , india and other countries have evacuated their citizens , but not americans . the state department says it is too dangerous for them to directly evacuate american nationals .\nsix men accused of exploding car bomb in syrian city of al-mayadin . terrorist group 's latest video shows them being beheaded in front of crowd . one by one , they are marched to a wooden stump and killed with sharpened blade . footage cuts to shots of injured children and adults from the car bomb . isis claims the men are soldiers fighting for syrian president bashar al-assad .\nchris lane was shot in the back as he jogged in duncan , oklahoma . chancey luna , 17 , has been charged with first-degree murder . the trial continues . lane 's family and friends broke down in court as they listened to 911 call . witnesses told how they tried to resuscitate the young man . lane was on a baseball scholarship with oklahoma 's east central university . he was visiting his girlfriend in duncan when he was randomly gunned down .\ndaniel ricciardo has urged his red bull team to go back to basics . the australian driver has struggled at the start of the 2015 season . ricciardo finished third in practice ahead of this weekend 's chinese grand prix . lewis hamilton was fastest in his mercedes ahead of kimi raikkonen .\nandrea lindsay , 43 , from prescot , merseyside , shed more than three stone using an hypnosis app . she dropped from a size 18 to a size ten to 12 in half a year . her husband 's colleagues thought robbie had traded his wife in for a younger , slimmer model at a christmas party when they failed to recognise her .\npatrick randall was 16 in may 1990 when he held a knife to gregory smart 's throat as his friend billy flynn , shot him in the head . flynn was pamela smart 's then-16-year-old lover and shot her husband dead at her request . randall won parole thursday at his first hearing - he wo n't be released until after june 4 . flynn has been paroled last month ; smart is serving life without parole after being convicted of plotting the murder . the case inspired the 1995 movie ` to die for '\nliverpool face blackburn in the fa cup quarter-final on wednesday . brendan rodgers is considering recalling dejan lovren for the game . lovren has been out of the team recently , but could return against blackburn . liverpool were thrashed 4-1 by arsenal at the emirates on saturday .\nespn sports reporter britt mchenry has been suspended for one week . the 28-year-old was caught on camera berating a tow truck company employee in arlington , virginia . she was told she was being filmed at the start of her ugly rant , however continued to insult the woman 's looks , education and job on-camera . she has since deleted her twitter account , saying she was ` frustrated '\nofficial says 3 students killed at school in southwestern yemen . officials : airstrikes hit a military base near the school . the school was not the main target , officials say . separately , saudi airstrikes wipe out about a fifth of armored vehicles . captured by the houthi rebels .\nmaggie doyne left her new jersey hometown to travel the world before college . she met nepalese refugees in india and nepal . doyn 's organization helps children who have lost both parents . do you know a hero ? nominations are open for cnn heroes 2015 .\nbinky felstead , 24 , has opened up her closet to share her top tips for street style . she says faux fur is one of her top five tips for achieving chelsea street style . she also says statement jewellery is a life-saver and can jazz up any outfit .\npritesh , 36 , and mansi gandhi , 35 , started trying for a baby ten years ago . mansi was diagnosed with cervical insufficiency - premature dilation of the cervix . she eventually became pregnant and gave birth in 2007 but the boy , khushi , was so premature he died after a six-month fight for life . pritesh 's sister hiral shah , 32 , offered to carry the couple 's baby - and after ivf treatment , gave birth to krish three weeks ago after a 20-minute labour .\nlisa courtney , of hertfordshire , has spent most of her life collecting pokemon memorabilia . her fixation with the japanese characters started at the age of nine . she now holds the guinness world record for the largest collection of pokemon items . her mother had to move to the smallest room in the house to make room for her daughter 's collection .\nvirtual studio asked designers to imagine what cities would look like without their famous landmarks . nearly 100 submissions were created , with many focusing on the eiffel tower in paris . the towers are the most photographed in the world , and would not be easy to remove . without the statue of liberty , liberty island looks forlorn and barren .\nben powers played the character of thelma 's husband keith in the show 's sixth and final season between 1978-1979 . he passed away at his new bedford , massachusetts home on april 6 at the age of 64 . powers ' on-screen wife bern nadette stanis wrote an emotion message on facebook on thursday to mark the actor 's death .\nan extremely rare species of shark has been discovered off the gulf of mexico . the tiny nipper - measuring just 5.5 inches long - was caught during a 2010 government research trip . this week scientists revealed the dinky creature is a pocket shark - a miniature variation of the more popular kind . the young male is the second of its species ever seen . the first pocket shark was found 36 years ago in the pacific ocean off the coast of peru and it 's been sitting in a russian museum since .\njavier hernandez is on loan at real madrid from manchester united . real madrid had first option to buy hernandez outright . but the deadline passed at midnight on thursday night . hernandez has scored five goals in his last six games . west ham , southampton , newcastle and lazio are interested in the striker .\nbarcelona beat paris saint-germain 3-1 in champions league quarter-final first leg . neymar and luis suarez scored for la liga leaders . psg 's thiago silva was forced off injured and replaced by david luiz . blaise matuidi was the star man for barcelona and was in fine form .\n12-year-old bluey 's purr is four times louder than the average cat . she has reached a maximum of 93 decibels - more than the official world record holder . bluey is currently in a rehoming centre in cambridge looking for a new owner .\ncarol chandler , 53 , is accused of indecently assaulting a boy under 16 in 1980s . she was charged as part of operation winthorpe , scotland yard 's investigation into allegations of sex abuse at st paul 's school in barnes , south west london . former pupils at the school include chancellor george osborne .\nabout a quarter of a million australian homes and businesses have no power after storm . about 4,500 people isolated by flood waters as roads are cut off . the emergency services have been slammed with 13,000 calls for help due to flooding . the powerful storm has already claimed four lives , according to new south wales police .\nkerrie armitage , 28 , from leeds , suffers from the ultra-rare condition aquagenic urticaria -- an allergy to water . she was diagnosed two years ago after her skin erupted in agonising blisters when she got caught in a rain storm . now the mother-of-three has had to stop kissing her husband of four years , because the saliva on his lips can trigger a painful flare-up .\nthe owners of the sugar pine mine near medford have called in gun-toting right-wing militiamen amid a bitter land use dispute with the u.s. government . tensions have remained high at the facility after the facility was served with a federal stop-work order last month . owners summoned armed guards from the conservative oath keepers activist network ahead of a major protest yesterday . at issue is a dispute over mine ownership records , oregon blm spokesman jim whittington said . the owners argue they have exclusive surface rights and need not follow federal regulations .\nleanne bourne , of romford , essex , was heartbroken when she found out her partner steve was having an affair with her sister larissa knipe . three years later , the pair are finally reconciling after a bitter family feud . ms bourne says she still has bad days when she ca n't stop crying .\nnikki and kyle kuchen becker from illinois got married in illinois . they later hung their dancing shoes up and jetted off to cancun , mexico , for honeymoon . video footage shows them getting into the groove with an attentive audience watching on . to date , the clip of them in action has been watched more than 900,000 times .\nfraser forster has undergone surgery on a serious knee injury . the england international will be out for several months . ronald koeman would not be drawn on whether southampton will sign a new keeper in the summer . kelvin davis will deputise for forster until the end of the season . the saints travel to everton on saturday .\nsamantha and david cameron have ruled out having another baby . the couple have been pictured cooing over seven-week-old regan . mrs cameron revealed her doctor has told her : ` no way , jose ' she was pregnant throughout the 2010 campaign , and gave birth to their fourth child florence in cornwall after she arrived weeks early .\nthe body of barway edward collins , 10 , was found in the mississippi river on saturday . his father , pierre collins , 33 , was arrested monday on suspicion of second-degree murder in the death of his son . the fourth-grader was last seen riding a bus after school on march 18 . police said sunday that mr collins is a ` primary suspect ' in the case .\nf1 world champion lewis hamilton sprayed champagne at grid girl liu siying after winning the chinese grand prix . the incident drew widespread criticism from an anti-sexism group . hamilton says he was just acting on his excitement after winning in shanghai . siying says she did not think too much about it and was told to stand on the podium .\nitaly international gianluigi buffon has no immediate plans to retire . the 37-year-old says it would be a waste to quit now when he is still in top form . juventus beat monaco 1-0 in the champions league quarter-final on tuesday . buffon made three important saves to deny monaco an away goal .\ngruesome death rituals performed 1,200 years ago have been uncovered in dozens of tombs in peru 's cotahuasi valley . each tomb was filled with bones of up to 60 mummies , with infants kept in small containers , and others repeatedly ripped to pieces while decomposing . archaeologists have so far opened up seven of the tombs , recovering 171 broken mummies from the ancient ceremonial site known as tenahaha .\nmusic teacher yulia simonova offered # 1,400 for hit on her ex-lover damian vanya . the pair had been dating for a year but he ended the relationship . simonova asked a friend to find someone to torture and kill the 15-year-old . but police set up a sting operation , sending an undercover officer to meet her . secret camera filmed the exchange where simonova said she wanted the boy to bleed to death before she ` finished ' him .\na two-year-old girl from gardena , california , was found thursday night after disappearing from a car wash and shouting ` mommy ' police are searching for the driver of a white recent-model nissan altima , which was seen at the car wash around the time the girl was abducted . the girl was found injured outside of jim 's burgers 13 miles away and was spotted by concerned customers next to a dumpster .\njames boase was found standing next to his car after a car crash in torquay . the 36-year-old publican claimed he had been sleep walking and was not drunk . but prosecutors said he had failed to stop after hitting another car on march 13 , 2014 . boase has been found guilty of drink-driving and banned from driving .\nlota ward , 8 , was diagnosed with a rare form of brain tumor in october 2014 . he has had four brain surgeries since then . despite his illness , lota continues to run . he recently ran 33 miles in a 50-mile race . he is currently recovering from his fourth surgery .\nscientists have found gibbons use whispers to communicate with each other . the animals produce soft ` hoos ' that are almost inaudible to the human ear . they were found to be used to warn each other of predators and foraging . researchers at the university of durham say the findings could help to provide valuable clues about human speech evolved .\nchelsea travel to arsenal on sunday in the premier league . oscar hopes that winning the title can kick-start a period of dominance in english football for the blues . the brazilian midfielder has aspirations of further success in the coming seasons . chelsea are 10 points clear of second-placed arsenal at the top of the table .\ncrystal palace boss alan pardew says he would sell yannick bolasie for # 40-60million . pardews claims all of his players are ` undervalued ' by the premier league club . the former newcastle boss is ready to fend off big-money bids for his stars . but he admits ` every player has a price '\na young boy was approached by his favourite character r2d2 at a star wars convention . the robot followed him around the corridor and began dancing with him . the child 's infectious giggles can be heard as the pair dance in time . r2d2 was at the star wars celebration convention in anaheim , california .\na cathay pacific pilot was arrested after trying to board a flight from london to hong kong with knives in his luggage . the pilot was stopped during security checks as the flight prepared to depart on saturday night . he was later bailed and ordered to return in may pending an investigation , police said .\nmccoy 's intended mount benvolio has withdrawn from the race . the 20-time champion will retire next week . mccoy will ride at sandown next weekend . mccoy finished fifth on shutthefrontdoor in the grand national . he will be a spectator in the big race this afternoon .\nman tore tendon in his thumb after playing candy crush saga for weeks . he had been playing the game all day for six to eight weeks . tearing tendon is normally painful , but he reported he felt no pain . doctors said his case shows video games can numb people 's pain . this could be why some people become addicted to the game . candy crush has been downloaded by more than 500 million people since 2012 .\nengland lead west indies by 74 runs at stumps on day three of second test . joe root scored 118 not out , his first overseas test century . gary ballance added 77 to his opening stand of 165 with root . england captain alastair cook scored 76 in a century stand with jonathan trott .\nsabra hummus was recalled last month due to contamination . dr. john swartzberg , a clinical professor at the university of california at berkeley , explains how to check if your food is safe . `` there 's nothing the consumer can do prior to learning about the recall , '' he says .\nanthony corrales has filed a suit claiming he was almost killed by a retired nypd officer who was then let off the hook by fellow cops . the incident occured last june outside the resorts world casino in the queens section of new york city . corrale claims he was driving with his wife and daughter , 10 , when a car cut in front of him after refusing to let him change lanes . he then claims that when he got out of the car to get the car 's license plate number , he was mowed down by the car , and driven for several blocks at breakneck speed by the driver . when he returned to his car however , police arrived on the scene and arrested cor\nmario balotelli has no future at liverpool after manager brendan rodgers lost patience with the striker . rodgers will admit he ignored the warnings about balotlli . the italian has scored just once in the premier league this season . balotelli shared an image of a thermometer reading to prove he was too ill to play against blackburn on wednesday night .\nbbc has made light of disgraced presenter jeremy clarkson 's attack on a junior producer . new episode of mockumentary w1a shows bosses holding an emergency meeting after clarkson uses the word ` tosser ' on top gear . episode was apparently filmed last july , but narration has recently been tweaked .\naston villa face qpr in a premier league six-pointer on tuesday . tim sherwood has vowed to give pal chris ramsey the red-button treatment if he tries calling him ahead of the game . ramsey was sherwood 's closest lieutenant at tottenham last season . villa lost 3-0 to manchester united on saturday .\na u.s. census bureau guard was shot and critically wounded outside its headquarters in suitland , maryland . authorities locked down the campus just before 8pm thursday amid reports that the shooter had barricaded himself inside . however , the shooter instead took some three dozen police officers on a wild chase back into d.c. that ended when officers shot him on a busy northeast washington street . the guard died before 10pm after he was taken to a washington area hospital .\n44-page guide was commissioned by bbc bosses who then hired an agency to research how smiley faces could be used in news stories and on social media . bosses at radio 1 and radio 1 extra were sent the guide earlier this week . emoji designers were also told to make graphics for the faces of popular stars such as gary lineker and graham norton .\nbraylon robinson , 1 , was playing at a house in cleveland , ohio , on sunday . another three-year-old boy found unattended gun and pulled the trigger . bullet struck baby boy in the face ; he was later pronounced dead in hospital . investigators are now trying to determine where gun came from and identity of person responsible for bringing it into the house .\nbrazil international oscar has not played a full 90 minutes for chelsea since february . there have been suggestions that the 23-year-old could be offloaded . but oscar has insisted he is happy at stamford bridge and will be staying . chelsea currently lead the premier league by seven points .\ndancing with the stars co-host erin andrews , 36 , was seen with a friend at the home she reportedly shares with nhl star jarret stoll , 32 . stoll was arrested on friday in las vegas , nevada , on drug possession charges . he was allegedly found with cocaine and molly in his swim trunks at a pool party at the mgm grand hotel . stolls , who plays for the los angeles kings , was released on $ 5,000 bond .\nwilliam kulk , 9 , and piper kulk , . 8 , died in a head-on crash in nsw on saturday . their grandmother 's car aqua-planed and swerved into the path of an oncoming ute . the siblings were on their way home from the royal easter show in sydney . their mother , daniel , 12 , and grandmother , chantelle , 31 , are still in hospital . the seven people involved in the crash were all trapped in the wreckage . a gofundme page has been set up to help the family with their funerals .\nrussian bikers camped out on polish border after being banned from entering country for a world war ii memorial ride . polish authorities said last week they would ban entry to the night wolves . leaders called their plans to ride through poland en route to commemorations of world war two a ` provocation ' the group vowed to enter anyway and 15 were seen monday morning at the border crossing between brest , belarus , and terespol , poland .\nkentucky judge olu stevens was sentencing gregory wallace to five years ' probation after he and his accomplice , marquis mcafee , robbed tommy and jordan gray 's louisville home in april 2013 . in victim impact statement 's prepared for the sentencing of wallace , the couple called for him to be sent to prison . but when the case appeared before stevens on february 4 in jefferson circuit court , it was the parents , not wallace , who suffered judge stevens ' wrath . stevens accused the grays of fostering racist stereotypes in their 3-year-old daughter 's mind . friends and family of the graying say they are outraged by his comments and are calling for him .\nairstrikes target al-shabaab training camps , a somali resident says . kenya 's rapid response team was stuck in nairobi for hours after the attack , a police source says . a kenyan government spokesman says the response was adequate . nearly 150 people were killed in the attack on garissa university college .\nthe north shore suburb of cammeray has been hit by a transport war . a fed up resident stuck a note on a car parked near a school . the note said : ` if you ca n't afford to park in the cbd do n't come here ! ' other locals were ` horrified ' by the letter .\nwomen are abandoning traditional diamond rings in favour of more exotic gems . demand for coloured stones , such as sapphires and rubies , has seen prices soar . value of some coloured stones has increased by more than 2,000 per cent over the last ten years . celebrities such as kate middleton have driven the craze , wearing coloured gems .\nsunderland host newcastle in the wear-tyne derby on sunday . dick advocaat says he will not underestimate the significance of the fixture . he was criticised for playing down the significance in 1998 . advoca at rangers were thrashed 5-1 by celtic in the old firm derby .\nprime minister backs the royals ' choice of private care for kate 's second birth . prince william and kate will use st mary 's hospital in paddington , london . mr cameron said he supports peoples ' right to choose treatment options . but he ensured he praised the nhs , saying : ` the nhs is superb '\naustralia 's foreign minister julie bishop wore a headscarf during her visit to iran . she is the highest-ranking australian official to visit the country in 12 years . social media lit up with opinions on whether she was right to cover her head . opposition leader bill shorten said the criticism was ` ridiculous ' bishop also donned a hat , which attracted comparisons to michael jackson . she said she wore the headscarf out of respect for the culture .\neverton players attended the club 's annual academy day at finch farm . leon osman , phil jagielka , ross barkley and romelu lukaku were all present . players from under-6 to under-11 age groups joined the blues ' senior stars for a training session .\nformer italian police officer dino maglio has been found guilty of raping a 16-year-old australian girl . maglio , 35 , was sentenced to six and a half years in prison on tuesday . he was accused of luring the girl to his home via a couch-surfing website . magio admitted drugging the girl with a tranquilliser and having sex , even though he knew she was under-age . he claimed sex with the girl was consensual but admitted he was ` stupid ' to spike her drink .\npaul anderson is hoping to kick-start his side 's misfiring attack . huddersfield have plummeted from third to ninth after losing all three games over the easter holiday period . the giants go into sunday 's home game against catalans dragons with the best defensive record in the league .\nbrazilian supermodel gisele bundchen has announced her retirement from the fashion industry . she said she wants to spend more time with her family . bundchen walked in sao paulo fashion week on wednesday night . she is married to new england patriots quarterback tom brady . .\nmen more likely to discuss sexual problems and relationship issues than football . more than 70 hours of footage from hidden cameras in london pub . one man in lord nelson told friends he was gay while dating a married woman . three middle-aged men talked openly about erectile dysfunction .\nthe latest beauty trend involves sucking on a shot glass to look like kylie jenner . the hashtag #kyliejennerchallenge has been trending on twitter . the `` belfie '' is a selfie that involves posting self-photography of one 's posterior .\npeshmerga troops have freed more than 200 yazidi prisoners in northern iraq . the prisoners were led to a handover by kurdish forces southwest of kirkuk . the yazidis , including 40 children , were piled onto a minibus . they are said to be in poor health and bearing signs of abuse and neglect .\npolice forced to separate reclaim australia supporters and opposing protesters by forming a wall at separate rallies . crowd numbers continued to grow throughout the afternoon , and some protesters had to be treated by paramedics . it comes after a twitter account claiming to be linked with anti-islam groups has mocked protests . organisers behind the sydney protest were quick to disassociate themselves with the account . ` it 's not us , ' a spokesperson told daily mail australia . ` ours is @reclaim_aus '\nedinburgh-born illustrator lucy scott had her first child in 2012 . she created a book of 120 doodles to capture every aspect of being a parent . the book chronicles the emotional and difficult experiences of new parents . it includes hilarious doodle images such as breastfeeding in a public toilet .\ntottenham striker harry kane scored his 30th goal of the season against newcastle on sunday . he became the first spurs player since gary lineker to reach the mark . but spurs boss mauricio pochettino is convinced he can improve further . nacer chadli and christian eriksen scored for spurs in 3-1 win .\nsian harkin abused her position of authority by signing cheques totalling # 30,000 . claimed the work was to be carried out at llwyncelyn primary school in porth . but the work never materialised and was carried out instead at her home . harkin , 54 , used the chequebook when she was headteacher of llwynceslyn . she continued to use it when she moved schools and even forged the deputy head 's name to cash one . builder lee slocombe was jailed for 43 months earlier this year for fraud .\ncloud formation resembling the wi-fi symbol appeared in central china . student shi chao took a photo of the cloud in xiangtan city last friday . chinese internet users have since shared and commented on the photo . china has seen ufo-shaped clouds and mysterious ` highway ' clouds . the global wi - fi symbol has one dot and three curved lines radiating from it .\nthe defect affects 2005 to 2008 models of the mini cooper and cooper s. bmw says the air bag may not work properly because of a error that might prevent the vehicles ' mat detection system from sensing a passenger sitting in the front seat during a severe crash . the recall of the mats , which are manufactured in germany , will begin may 1 .\nincident took place in olani village , four kilometres from manpur , in central india . terrified villagers watched on from rooftops as ward ran towards the leopard brandishing his stick . he managed to strike the big cat on the head twice before it retaliated , dumping the ward to the ground .\njurgen klopp announced he will be leaving borussia dortmund in the summer . the german coach has been linked with a number of leading clubs . klopp has urged his players to keep smiling despite the news . arsenal manager arsene wenger branded the ` circus ' around klopp 's decision as ` ridiculous '\nclaudia lawrence , 35 , was last seen on march 18 , 2009 , at her home in heworth , york . pub landlord paul harris was arrested last july on suspicion of perverting the course of justice . 47-year-old man released from bail after he provided information to detectives .\ntv celebrity doctor mehmet oz has defended himself after ten top doctors sent a letter to columbia university urging the school to remove him from his faculty position . dr oz , 54 , is the vice chairman and professor of surgery at columbia 's college of physicians and surgeons . the doctors sent the letter to lee goldman , the dean of columbia 's faculties of health sciences and medicine .\nbodies of a man and woman found by cleaning crew in their stateroom on ms ryndam in san juan , puerto rico . the couple were in their 50s and from cleveland , police said . it is not known how the couple died . the ship is expected to get back underway on friday as it heads to the virgin islands .\ndarren bent gave derby the lead from the penalty spot in the 23rd minute . watford 's marco motta was sent off for a foul on johnny russell . tom ince doubled derby 's lead in the 57th minute with a low strike . odion ighalo scored a late equaliser to secure a point for the hornets .\ndirector of public prosecutions alison saunders is facing growing calls to stand down . campaigners , police chiefs and mps have accused her of ignoring the rights of victims and failing to clear speculation of a cover-up . ms saunders ruled not to charge lord janner despite evidence of 22 offences against nine victims . she said experts agreed the former leicester west mp was in such poor health due to advanced alzheimer 's disease .\nelijah mckenna , 11 , was attacked by three dogs near his grandmother 's home in moore , oklahoma , saturday . his sister , alyssa mckenna , 9 , saw the dogs mauling the special-needs boy and ran over to help . elijah suffered two wide , bloody gashes on his back of his head and numerous deep bite marks all over his face and body . the hearing-impaired boy was taken to a nearby hospital for treatment and later released with 40 staples in his head . the dogs were still seen roaming around a neighbor 's yard monday .\njohn howard , 66 , from canterbury , kent , had been a member of the organisation for 30 years . he enjoyed dining alone on several # 300 meals a month and also spent money on flowers . father-of-three had sole access to the overseas press and media association 's account . his fraud was only uncovered after the association had problems paying its creditors . he was jailed for two and a half years and mouthed ` i 'm sorry ' to a former colleague .\njose mourinho stumped at a question posed to him at his press conference . mourinho was asked how hard arsene wenger pushed him this season . the chelsea boss replied ` because i am always honest in my answers , i can not answer you ' mourinho had previously said there are ` no problems ' with wenger .\ncomres survey of 4,000 undecided voters found a slim majority have been more impressed with the performance of the prime minister than that of ed miliband . separate poll of marginal seats by lord ashcroft suggests ukip 's vote is being squeezed in key constituencies .\nmormon church does not recognize transgender people as members . grayson moore , annabel jensen and sara jade woodhouse all transitioned . church doctrine says those who take their gender identity too far can not be baptized . but the three have found a way to exist within the mormon universe .\nbob greene : five years after oil spill , gulf coast still recovering , but oil still there . he says bp has spent $ 14 billion on cleanup , but many safety reforms not implemented . he asks : what have we learned ? what can we do to make sure it does n't happen again ? greene : research , better management of natural resources are key to avoiding another disaster .\njoni mitchell has suffered from morgellons disease for most of her life . she has dedicated herself to trying to get it recognized as a medical condition . the medical community believes it is likely a mental illness and that sufferers are anxious , depressed or even suffering from substance abuse . mitchell was recently found unconscious at her home and is in the hospital . she claims to have suffered from the disease for years , and that it is an ` incurable disease '\nap mccoy made his final ever ride at sandown on saturday . mccoy is a fan of channel 4 presenter emma spencer . the 20-time champion jockey is a keen golfer and tennis fan . mccoy will be a spectator at the punchestown festival this week .\njapanese police arrest a former school principal over allegations he photographed an obscene act with a girl . yuhei takashima says he paid for sex with more than 12,000 women over more than a quarter of a century . police seized 147,600 photos that takashama took of his activities over the years .\nbristol city beat swindon town 3-0 in the local derby at ashton gate . kieran agard , joe bryan and aaron wilbraham scored for the home side . steve cotterill needs just two more wins to achieve his fourth promotion .\nrichie benaud has passed away aged 84 . benaud was a trailblazing all-rounder who took 228 wickets in 68 tests . he was also a broadcaster and captain of the australian national side . shane warne paid tribute to his mentor on instagram . warne said benaud ` was the best there 's ever been ' and ` an absolute gentleman '\nreal madrid beat granada 9-1 at the bernabeu on sunday afternoon . gareth bale opened the scoring for carlo ancelotti 's side in the 25th minute . cristiano ronaldo then scored five goals in the first half , including a hat-trick . karim benzema also scored twice as real madrid bounced back from their el clasico defeat by barcelona . granada had only won once at thebernabeu in their history .\nexecutive editor for comedy chris sussman revealed rules . he said jokes have to go through ` quite a lot of layers ' to be approved . some jokes even have to be looked over by director general lord hall . comes after ` difficult few years ' following sachsgate scandal .\nreal madrid are currently fourth in la liga , six points behind leaders barcelona . carlo ancelotti 's side face atletico madrid in the champions league quarter-final on tuesday . the italian has lost to atletico four times in a season . real have also lost seven times in 11 derbies against diego simeone 's side .\na report says the u.s. must rethink the role of manned submarines . it says the navy should prioritize new underwater detection techniques . concern that china could match u.s. underwater capabilities has encouraged development of an unmanned drone ship . an actuv prototype vessel is already in production .\nsix players who left manchester united are in the champions league semi-finals . patrice evra , javier hernandez and cristiano ronaldo are all in the last four . gerard pique , carlos tevez and paul pogba are also in the semi-final . united missed out on europe 's premier competition for the first time in 19 years .\nsome celebrities have taken a quicker turn for the worst than their contemporaries . from child actors to golden hollywood stars , femail rounds up the celebrities that have aged terribly . lohan , depp , spears and zellweger among those to have aged badly . but who else has taken a turn for worst ?\npetra kvitova beats caroline garcia to send czech republic into fed cup final . czechs will face germany or russia in november . defending champions have been in four finals in five years . kv itova won 6-4 , 6 - 4 in the first reverse singles .\niran and saudi arabia have long been at odds over syria and iraq . the latest conflict is in yemen , where the saudis are fighting iranian-backed rebels . peter bergen : both sides have good reasons to want to stop the yemeni crisis from spiraling out of control .\nkris and tina wardle fell in love in 2002 and had planned a life together . the couple married in 2011 with her son mark acting as best man . less than two years later , kris 's wife katrina was killed in a frenzied knife attack . mark , 21 , stabbed her to death after a row over his cannabis use .\njoseph o'riordan , 74 , stabbed his wife of ten years mandy , 47 , eight times . he had told a friend he was considering allowing her to have affairs . o ' riordan denies attempted murder at brighton crown court . he is also accused of trying to murder his wife 's mother .\nlabour candidate tulip siddiq met vladimir putin in moscow two years ago . she was at the kremlin with her aunt , the hardline leader of bangladesh . the tories last night accused ms siddiq of trying to conceal her links . they said she appears to have gone to great lengths to cover up the trip .\na man has accused dmx and his entourage of robbing him while at a new jersey gas station on easter morning . the unidentified newark resident , 22 , said he recognized the 44-year-old rapper , whose real name is earl simmons , while at an exxon station on sunday . police said the victim reported that he had a brief conversation with dmx about rap music around 12.30 am . ` during the conversation a male in dmx 's entourage showed the victim a gun and demanded the victim 's money , ' said newark police spokesman sgt. ronald glover .\nthe queen does n't run britain . voters are voting for a new prime minister , not for a president . the election could result in the handing of power to the labour party . the uk parliament consists of 650 seats , each representing a different number of constituents . the party that wins most seats then gets to say who becomes prime minister .\nrobert downey jnr was on channel 4 to promote new film avengers : age of ultron . interviewer krishnan guru-murthy asked him about his drug abuse and time in prison . actor , 50 , was visibly uncomfortable and said : ` i 'm sorry , i really do n't ... what are we doing ? ' he was asked about a comment he made in a five year-old interview .\nvladimir bukovsky has lived in the uk since he fled the soviet union in the 1970s . he was arrested for spreading anti-soviet propaganda and spent 12 years in prison . he smuggled 150 pages of documents detailing abuse of psychiatric institutions to the west . now he will be charged with making and possessing indecent images of children . he will appear at cambridge magistrates ' court on may 5 after police investigation .\njoel burger and ashley king will be married on july 17 in jacksonville , illinois . burger king contacted the newly-engaged couple via skype and gave them the good news . bk will be paying for the wedding and providing personalized gift bags , mason jars and burger king crowns for the event .\nthe distinct tracks were found at ileret in kenya and are the oldest human footprints in the world . they were left by a barefooted early human in ile ret in the middle of an ancient lake . researchers have now found 99 prints and believe they belong to hunting parties . they believe the prints were made by homo erectus - an extinct species of early human that disappeared around 200,000 years ago .\nkendra moad , 20-month-old of kearns , utah followed her grandfather out of the house friday morning and into the driveway . he did not see the toddler and ran her over as he pulled his truck up in the driveway to move the trash cans and ran over and killed the 20-year-old . this is now the fourth time since august that a child was accidentally run over and died in their own driveway by a family member in utah .\nsian lloyd and her husband visited south australia for the tour down under . the city of adelaide is known as the ` food capital of australia ' the city is a much softer city than sydney , with lots of parks and space to breathe . the clare valley riesling trail is a great way to explore the region .\nhibernian refused to form a guard of honour for hearts in the edinburgh derby . alan stubbs feared there would have been crowd trouble if he 'd agreed . hearts boss robbie neilson feels that it is disrespectful not to acknowledge his team 's achievements . hearts fans favourite alim ozturk also feels that hibs ' decision shows a lack of respect . hibs face hearts at easter road on sunday afternoon .\nenvironmentalist group sea shepherd has rescued 35 crew members from a sinking ship . the rescue mission comes after the sea shepherd vessel bob barker followed it 's world record breaking pursuit of the accused poaching vessel thunder . the poaching vessel was trailed for more than 100 days before it started to submerged on monday . around 35 crewmembers from the thunder ship were safely rescued after being held in life rafts .\nlong-time friends brian lufty and neil janna took their two sets of sons on a trip to the original home of kentucky fried chicken in corbin , kentucky . the group of six completed the drive in three days crossing two canadian provinces including quebec and ontario , as well as five u.s. states . for three of the sons , it was the first time they had tasted kfc .\njermain defoe scored the only goal in sunderland 's 1-0 win over newcastle . dick advocaat has refused to rule out staying at sunderland beyond this season . the 67-year-old has signed a nine-game deal with the black cats . sunderland face crystal palace on saturday in the premier league .\nterrorists are undergoing training in ceredigion , powys and pembrokeshire . locations are being used to radicalise muslims , says officer from wales extremism and counter terrorism unit . those involved ` take part in seemingly ordinary activities ' but ` have ulterior motive ' incidents of islamic extremist activity in wales can be traced back to 1998 .\nkate winslet wants to build a 550ft-long sea wall to protect her west sussex home . but natural england has recommended the application be refused . environmental body has concerns over the impact it will have on the natural habitat . the actress bought the eight bedroom house in west sussex in 2013 .\nmanchester united will have to wear nike kit during their us tour . club are expected to jet across the atlantic in july for a trip of around 12 days . there is no buy-out agreement that would allow the club to exit the agreement early . united last wore adidas shirts in 1992 .\njim ratcliffe has applied to demolish existing beach hut and build new mansion . the 62-year-old businessman claims that the new house will be his only uk residence . the high-tech planned mansion will be virtually ` carbon-zero ' and uses renewable energy such as solar power . the house has a revolutionary jacking system which can lift the property up in the case of flooding .\nlazio beat napoli 1-0 to reach coppa italia final on wednesday . senad lulic 's late goal gave lazio a 2-1 aggregate win . the biancoceleste will face juventus in the final on june 7 in rome . lazio are riding a seven-game winning streak in serie a.\nnew research has found that certain items on sale at poundland are up to 50 per cent more expensive than those sold in supermarkets . the budget retailer last week announced that sales exceed # 1billion for the first time last year . poundland is europe 's largest single-price discount retailer .\na sickening propaganda image linked to the islamic state terrorist group has surfaced . the image shows a newborn baby sleeping next to a grenade , a handgun and what appears to be a birth certificate . it was re-posted by an anti-isis activist in syria with the warning : ` this child will be risk to you not just to us ' terror experts have revealed to daily mail australia the snapshot is a showcase of the groups supposed longevity .\nthe men , pictured in southern china , release a cormorant bird , which then dives into the water and retrieves a carp , returning it to the fisherman 's reed raft . the stunning images were captured on the river li in guilin , china , by a russian photographer called viktoriia rogotneva .\nsouth sydney hooker issac luke posted an offensive comment on instagram . the 27-year-old was responding to attacks from canterbury bulldogs fans . he had made a heartfelt appeal to track down the young fan who was allegedly attacked at anz stadium in sydney on friday night . the rugby league player had intended to donate a jersey to the boy . but the good samaritan is now under investigation by the nrl integrity unit . he has since apologised for his offensive remark .\nno one in britain lives as much as 70 miles from the sea . our coastline of 10,800 miles is longer than india 's . popular television series explore it , gliding over cliffs by helicopter . the national trust mainly bought up the wilder shores to preserve their wildness .\nagencies like the cia , nsa , and national counterterrorism center hire therapists to deal with analysts ' trauma . the analysts watch graphic content and look at violent photos to gain clues about the actions of terrorists . in many cases , the therapists have watched the same material as their patients .\nstunning images of cricket players from around the world make up the short-list for the wisden -- mcc cricket photograph of the year 2014 . the competition 's winning image was taken by getty images photographer matthew lewis and captures an outrageous pouch by west indies player dwayne bravo .\nricky dearman said he was falsely accused of being the leader of a satanic cult . it was claimed he trafficked children into the uk to be tortured and killed . but scotland yard found his children had been tortured by their mother . ella draper and her partner abraham christie are now missing . mr dearman now hopes to win custody of his children , who are eight and nine .\njordan spieth won the masters by four shots on sunday . the 21-year-old broke several scoring records on the way to his victory . he became the championship 's second-youngest winner of all time . spieth visited the observation deck of the empire state building .\nportsmouth sacked manager andy awford after 3-1 defeat to morecambe . the league two club parted company with awford at a meeting at the club 's roko training ground this morning . assistant manager gary waddock is will take caretaker charge of the team ahead of the clash with stevenage tomorrow .\n` skinny girl ' joselyn alejandra niño is believed to have been killed , dismembered and stuffed in a beer cooler just over the mexican border last sunday . she gained notoriety in january when a picture of her grasping a modified m4 assault rifle with an innocent smile on her face began circulating on social media .\nmercury expected to reach 25c in the south east today . will beat marseille at 22c , athens at 21c , rome at 19c and madrid at 18c . temperatures will drop slightly tomorrow as fresher weather arrives . but the days will remain sunny until next week . the maximum temperature recorded by the met office yesterday was 22.7 c -lrb- 72.9 f -rrb- in st james 's park in central london .\ncleveland cavaliers beat miami heat 114-88 on thursday night . lebron james scored 23 points and kyrie irving also scored 23 . james passed patrick ewing into 20th place on the nba 's all-time scoring list . houston rockets beat dallas mavericks 108-101 to move half a game ahead of memphis in the race for the no 2 seed in the west . golden state warriors beat phoenix suns 107-106 to extend winning run to 11 games .\nmodel manuela arbelaez removed the wrong price tag during thursday 's show . the colombian-born model and host drew carey both gasped after she revealed the true price of the hyundai sonata se . the show 's contestant andrea shouted out ' i win ! ' as she was given the car .\nrajul patel , 35 , stole valuables from virgin active gyms across london . he obtained memberships using the stolen driving licence of a doctor . patel stole rolex watches , jewellery and iphones from wealthy gym members . he was jailed for 32 months after admitting eight burglaries at isleworth crown court .\nsouth korean kim sei-young eagled the par-five 18th to surge into a two-shot lead in the second round of the ana inspiration . ko 's record-equalling run of 29 consecutive rounds under par on the lpga tour came to end when the world no 1 bogeyed two of her last four holes for a 73 .\nbinge drinking as a teenager can cause long-lasting damage to the brain . alcohol changes genes in brain cells , which stop the cells developing connections . this can put teenagers at risk of anxiety disorders and alcoholism , researchers found . but a cancer drug may be able to reverse the damage , they said . the university of illinois college of medicine carried out experiments on rats . they showed increased anxiety-like behaviours and drank more alcohol in adulthood .\nesteban cambiasso won 15 trophies during his time at inter milan . the former real madrid man is now at leicester city . cambiasson says keeping leicester in the premier league will feel like winning a trophy . the foxes are currently seven points adrift at the bottom of the table .\nmarcelo says real madrid 's recent form will have no bearing on their champions league quarter-final tie against atletico madrid . real have failed to beat their neighbours in six attempts this season . the last time real beat atletico was in last season 's champions league final . real face diego simeone 's side at vicente calderon on tuesday night .\nstoke city 's charlie adam scored a stunning goal from inside his own half against chelsea . the stoke man struck from behind halfway at stamford bridge on saturday . david beckham and xabi alonso have also scored from behind in the premier league . jonny samuelsen and moritz stoppelkamp have also struck from inside their own half .\nmiss sturgeon , 44 , wore a blue and black dress on last night 's bbc debate . viewers took to twitter to debate the colour of the frock 's colour . many said it was grey , while others insisted it was green . but one viewer said the debate was about policies , not the dress .\ntony pulis insists west brom chairman jeremy peace will not let a takeover drag on . peace is open to offers for the baggies and is understood to want between # 150million and # 200million for the club . there is interest from groups from america , australia and china .\nchetwar pujara has joined yorkshire on a deal until the end of may . the indian batsman spent time with derbyshire at the back end of last season . pujra will play for yorkshire until aaron finch is free from the ipl . younis khan has cancelled his contract with yorkshire .\nswansea have made a contract offer to marseille striker andre ayew . the ghana international is out of contract in the summer . swansea are also interested in schalke full-back christian fuchs . the 29-year-old is out-of-contract at the end of the season .\nstaff at wellington college , in berkshire , taught students wrong english book . students at the prestigious school spent a year studying for as-level exam . the mistake only came to light when mock papers arrived and no exam questions related to the taught text . school has apologised for the error but would not name the works of literature involved .\nthe new york-based couple have been signed to fusion models . john tuite , 22 , and carlos santolalla , 25 , are the first openly gay couple to be signed to a modeling agency . the couple have starred in a campaign together for dkny and posed for big brands like edun and dsquared2 .\nbolton wanderers beat cardiff city 3-0 at the cardiff city stadium . craig davies scored a brace after eidur gudjohnsen put bolton ahead . emile heskey also impressed for the trotters with two assists . neil lennon 's side now have a 13-point buffer on those in relegation zone .\nthe shoe that grows uses adjustable buckles and a strap on the toe to expand by five sizes . it was invented by kenton lee , from nampa , idaho , who saw children running around barefoot and in shoes several sizes too small . the invention runs on power generated by the swing of your foot as you walk . it currently comes in two different size ranges - small and large and a single pair costs $ 30 -lrb- # 20 -rrb- but buying 100 pairs reduces the cost to $ 12 -lrb- # 8 -rrb- mr lee is working with an organisation called because international which aims to send the shoes to orphanages in africa .\njoseph o'riordan was sitting on polegate town council in east sussex . he grew suspicious his wife , amanda , 47 , was having an alleged affair . hired a private investigator to follow her and discovered she was having affair . o'riordan stabbed his wife eight times with a seven-inch kitchen knife .\nfriends say raymond howell , jr. had been bullied by older students . he was found dead near a culvert in mckinney , texas , on thursday morning . police have not confirmed how he died but friends say he died of a bullet wound . he had recently asked for a transfer after being bullied , friends say .\nfive georgia southern university nursing students were killed in a fiery crash on their way to school wednesday morning . emily clark , morgan bass , abbie deloach , catherine pittman and caitlyn baggett were killed . brittney mcdaniel , megan richards and caitlynn baggett survived the crash but were hospitalized with injuries . the driver of the tractor-trailer that caused the massive pileup reportedly said he wished he was also killed in the fiery wreck . thousands of mourners gathered on campus thursday night for a candlelight vigil and memorial service .\nnew orleans pelicans beat san antonio spurs 108-103 on wednesday . anthony davis had 31 points and 13 rebounds as new orleans reached play-offs . the pelicans will face the golden state warriors in the first round . marc gasol 's 33 points helped memphis grizzlies defeat indiana pacers 95-83 .\nthe chancellor was challenged 18 times on the andrew marr show . he repeatedly ducked questions about how the massive cash boost would be paid for . mr osborne said it would come from the conservatives ' ` balanced plan ' for the economy . but he declined to go into further detail . labour deputy leader harriet harman said the promise was ` illusory '\nholly beard and steve hancock weighed 41st when they set a date for their big day . but after holly received cruel taunts in her workplace the couple went on a joint diet . holly went from 17st 8lb to a slim 11st 9lb in just nine months .\nmaison souquet was designed by jacques garcia and is located in pigalle , paris . the five-star hotel is located just steps from the famed moulin rouge theatre . the 20-room property has been described as the ` temple to hedonism ' and offers three categories of rooms .\ntwo las vegas parents have been arrested after a child 's corpse was discovered in a car . a baby was found with severe malnutrition and a sheltered teenager was impregnated by her stepfather . jondrew lachaux , 39 , and kellie phillips , 38 , turned themselves in after the three children were found . they have been charged with child abuse and concealing evidence . a teenager is also being held on a child abuse charge .\nbruce jenner , 65 , made the revelation during an interview with diane sawyer on abc 's 20/20 special last night . he said he is a republican and that he would lobby the gop over lgbt rights . he also said that he still considers himself a heterosexual and that his ` brain is much more female than it is male '\nm mazzy suffers from spina bifida . the four-year-old was on board a southwest airlines flight over the us when the entire airplane sang her happy birthday and moved her to tears . mom brein bjorson marzano was flying with mazzy and her other daughter birkly from tampa to pittsburgh on their way home from vacation .\nthe supermarket posted a list of healthy tips for staff on its website . suggested that employees should have walking meetings and run on the spot . also told to dance in the store in whatever style they see fit . industry insiders say it is part of a wider move to smarten up tesco stores .\ndirk kuyt returns to feyenoord after nine years at liverpool and fenerbahce . the 34-year-old signed a one-year deal with feyenoords , but says his stay will likely be longer . kuyt retired from international football in october after finishing third with the netherlands .\nrajpal singh , 34 , went to hospital complaining of a stomach ache . doctors carried out an endoscopy - a long thin tube with a camera attached . it revealed hundreds of foreign objects in his stomach . over a three year period , he had swallowed 140 coins , 150 nails and nuts and bolts . he had also gulped down screws , nails and magnets . doctors have carried out 240 endoscopes to remove the objects . but mr singh will still need another operation to remove more of the metal .\nmartin springall , 38 , photographed his daughter in zushi , japan , in july . he sent the picture to a friend , who posted it on reddit . sceptics have suggested the boots could be samurai boots . mr springall said he has ` no idea ' what the item could be . he insisted there was ` no one ' else in the vicinity .\na north las vegas couple are being sought for questioning after their 3-year-old daughter was found dead and their 4-month-old baby is in critical condition . kellie cherie phillips , 38 , and jondrew megil lachaux , a 39-year old ex-convict , are believed to have abandoned the house . the couple left the 17-year - old girl with the two younger children in a brown stucco two-story tract home with a tile roof . a police swat team broke into the house thursday to find the body of the 3 - year-old .\ndavid cameron embarked on his first proper walkabout of the election campaign today . but he was reprimanded by one woman for the ` name-calling ' in the campaign . a busker with a ukulele sang : ` f *** off back to eton with all your eton chums ' but the prime minister was repeatedly stopped and asked for selfies .\nchiropractor charles manuel of lamoni in southern iowa has surrendered his license to practice . manuel admitted to swapping services for sex and performing exorcisms on some patients . he 's received outstanding evaluations for patient satisfaction on healthgrades.com . manuel has pledged not to apply for reinstatement for at least 10 years .\na rajasthan royals player was offered money to influence a game last month . the player was not part of the ipl but was offered the money by a state team mate . the franchise said the player immediately reported the incident to the indian cricket board 's anti-corruption and security unit .\nquinton fortune claims neymar looked uncomfortable during barcelona 's 1-0 win over celta vigo . former manchester united midfielder says neymar 's body language was poor . neymar has failed to score in his last four games for barcelona . jeremy mathieu scored the only goal of the game in the 73rd minute .\nuniversity of south florida and hillsborough county sheriff 's office plan to build a ` body farm ' in lithia , florida . five to ten bodies would be buried or placed on two acres of the walter c. heinrich practical training center . the research could help solve 500 cold cases in hillsborough , pasco and pinellas counties . hillsborough commissioner stacy white has taken a stand against the facility , fearing strong odors and the reputation it could bring to his community .\nwith congress gridlocked , liberals have more political space to move forward . julian zelizer : the most exciting ideas are taking hold at the local level . he says states such as vermont , oregon , and washington are leading in eco-friendly policies . zelizer says liberals need to abandon bias against local initiatives .\nvictim , 12 , was walking in subway under a major road in newbury , berkshire . two boys - aged 12 to 13 - approached him , doused him in wd40 and threatened to set him alight . victim sustained minor injuries but did not require hospital treatment . police are now hunting the pair following their threats in broad daylight .\nfloyd mayweather vs. manny pacquiao tickets on sale for $ 180,000 . ringside seats at saturday 's fight in las vegas are going for as much as $ 361,894 . most of the 16,500 tickets for the highly-anticipated fight have sold out .\nengland cricketer moeen ali named as ambassador for pak reds . the pakistani club is liverpool 's official supporter club . ali was recently at anfield for the lfc all-stars match . he has been called up for england 's final two tests in the west indies .\nalastair cook and peter moores are the next two names to be sacked . paul downton was sacked as managing director of england and wales cricket board . kevin pietersen could return to the england side after rejoining surrey . james whitaker looks sure to follow downt on the way out .\ncharles tillman ends his 12-year career with the chicago bears . the veteran cornerback has agreed a deal with the carolina panthers . tillman will link-up with former bears defensive co-ordinator ron rivera . the 34-year-old was a staple of lovie smith 's stingy defense .\nhull city face southampton on saturday in the premier league . tigers are currently two points above the bottom three . steve bruce 's side have lost three of their last five games . tigers boss admits his side need ` crazy results ' to avoid relegation . tom huddlestone and andrew robertson set to return from suspension .\nkatie , a giraffe at the dallas zoo , gave birth to a baby friday evening . the birth was captured by 10 cameras and streamed live by animal planet . the baby is doing well , and is nursing from mom , the zoo says . there is no word on the baby 's gender or condition .\njohn terry is the man of the season for chelsea . manuel pellegrini is under pressure after recent results . newcastle are an embarrassment and need to show they are improving . hull deserved their win against crystal palace . dame n'doye scored the opening goal for the tigers .\nnrl head of football todd greenberg vows to issue canterbury fans who threw bottles at match officials with life-time bans . referees and officials were struck with projectiles by angry supporters after a tight contest between south sydney and canterbury ended in controversy . sideline interchange official darren alchin was taken to hospital with a broken shoulder blade after slipping over in an attempt to avoid a water bottle thrown from the stands . canterbury chief executive raelene castle said the incident will be investigated and the club has called for a life ban on fans who were involved in the attack .\nthe all-gender restroom has opened in the eisenhower executive office building . it is the first of its kind at the white house and fits in with the administration 's stance on lgbt issues . on wednesday president obama '' executive order on lgbt workplace discrimination went into effect .\nengland striker toni duggan says her side will not fear anyone at the world cup finals in canada . duggan is working hard to rediscover her best form ahead of the finals . the 23-year-old has scored 11 goals in 16 games for her country .\nthe tree was planted in january-wabash park in ferguson , missouri on saturday at a ceremony led by the black caucus of the american library association . but by sunday morning , the branches had been stripped , leaving just a shard of the trunk . the metal dedication plaque at the base of the tree had also been removed . the incident is the third time that a brown memorial has been destroyed . brown , 18 , was shot dead by ferguson police officer darren wilson on august 9 , sparking massive protests against police brutality across the country .\nvideo shows ` end of days ' group brawling with cops in cottonwood , arizona . it was filmed on a patrol car dashcam on march 21 just moments before deadly gunfight . enoch gaver , 21 , was killed in the fight and suspect david gaver , . 28 , was shot in the stomach and taken into custody . cottonwood police veteran sgt jeremy daniels was also shot and hospitalized , but has since been released . family had allegedly been camping outside the store for a few days .\ntommy connolly had n't seen his teenage cousin in 10 years when she added him on facebook . he messaged her to see how she was doing and soon found out she was homeless , illiterate and 32 weeks pregnant . the 23-year-old sunshine coast university student picked her up from where she was sleeping rough on the gold coast and took her in . he is now helping to raise her four-week-old baby boy and works three days per week to support the three of them .\npresident obama nominated loretta lynch to be attorney general in november . the nomination has been delayed by the senate judiciary committee . the full senate has yet to vote on lynch 's nomination . the delay is longer than any previous attorney general nominee in recent history . the naacp and north carolina activists are pushing for lynch 's confirmation .\nat his lowest point in the 1980s , bruce jenner wanted to flee to europe for gender reassignment surgery and return to america as his children 's aunt heather . that was around the time his young sons asked their mother why their father had breasts . linda thompson , now 64 , met bruce at the playboy mansion when he was separated from his first wife , chrystie crownover . they fell in love and got married in hawaii when she was already pregnant with their son brandon . a few years later they welcomed a second son together , brody . but when brody was 18 months old and brandon was three , bruce revealed to linda the secret that he finally told the world friday night .\nreal madrid beat granada 9-1 in la liga on sunday afternoon . cristiano ronaldo scored five goals , including a hat-trick . the portuguese superstar has now scored 299 goals for real madrid . he has scored 11 against granada in just eight matches . but some clubs have got off lightly in ronaldo 's scoring record .\nnigel farage said there was a ` half black ' party spokesman featured prominently . ukip leader made remarks after being asked to justify lack of diversity . it was suggested the only black face in the document appeared on a page about overseas aid . mr farage said : ` well firstly there was one fully black person '\nhillary clinton , 69 , has launched her campaign to be us president . if successful , she would become the second oldest president ever . she has posted a black-and-white photograph of herself as a toddler . the image shows her pointing at the camera , with the phrase ` hillary 's counting on you '\natletico madrid drew 0-0 with real madrid in champions league quarter-final first leg . mario mandzukic was battered and bruised by sergio ramos and dani carvajal . but atletico boss diego simeone says he should be fit for the return . atletico face real madrid at the bernabeu on wednesday .\na poll by insurer direct line found that parking charges are most-hated . atm cash withdrawal fees and debit and credit card surcharges also high on list . a total of 48 per cent thought they should be free , while 31 per cent said they are too high .\nalbert webb and his two sons harassed pensioners with dementia in the street . they followed people home from post office before demanding money for roof work . the trio would then con their way into their homes and steal from them . albert webb , 51 , was jailed for three and a half years and son jimmy chuter , 26 , was sentenced to four years for conspiracy to defraud . jesse webb , 19 , was due to be sentenced with his father and brother , but went on the run . he was tracked down and given a 12 month term this week after being caught .\nwoman , 84 , suffered head injury and broken bones in the crash in east sussex . she was taken to hospital in a critical but stable condition . her husband , also 84 , hit three parked cars and a wall before coming to rest . witness said the woman was ` covered in blood ' and was ` shaken up '\na group of armed assailants stormed the attorney general 's office in balkh province . two police officers and a security guard were among the dead . most staff members and civilians have been rescued , but an exchange of fire is ongoing . afghan security forces are cautiously making advances in the fight to avoid civilian casualties .\nrory mcilroy has won all four of his major titles after rain . the northern ireland star will be in pole position to win the masters . tiger woods is a long shot to win at augusta national . bubba watson and adam scott are the other big hitters .\nleeds rhinos defeated castleford tigers 26-12 at mend-a-hose jungle . joel moon scored first try of the season for leeds rhino . ryan hall was sent to the sin-bin for the first time in his career . adam cuthbertson scored a fine performance for the rhinos .\ndeutsche bank will pay $ 2.5 billion in fines for its role in a vast multi-year conspiracy to rig libor interest rates . the case centers on charges that deutsche bank derivatives traders manipulated the london interbank offered rate . the bank will pay a record $ 2,5 billion fine for interest-rate manipulation .\nfirst minister told french ambassador sylvie bermann in february . she told the ambassador she would prefer david cameron to remain in number 10 . sturgeon has denied the claims and has asked cabinet secretary to investigate . she said the story was a sign of ` panic ' within westminster . the snp leader called on ed miliband to commit to ` locking out ' mr cameron .\nraul castro died in his sleep on friday morning while in his san diego hospice care . he was the first hispanic governor of arizona and served as ambassador to three latin american countries . he is survived by his wife pat , two daughters and a son . ` america is the land of opportunity , ' he said in 2010 .\nu.s. president barack obama said on saturday that diplomacy was the best option to deal with iran 's nuclear program . obama said he expects a ` robust debate ' on the deal in the united states . many of obama 's republican opponents in congress have been skeptical of a deal with tehran .\naustralia has placed higher safety restrictions on thai airways . the civil aviation safety authority has increased the number of ramp inspections of thai airways flights into australia . china , south korea and japan have banned new charter flights of thai carriers . the ban comes after an audit by the un 's international civil aviation organization -lrb- icao -rrb- found ` significant safety concerns ' with the country 's aviation safety .\nhouse of cards star robin wright , 40 , won best actress at the golden globes . she wore a slinky reem acra dress for the ceremony . she and sean penn divorced in 2010 after nearly 20 years of marriage . the actress has revealed that she chose fame over family in the 1990s .\nfrancisco pusok was arrested on thursday after police showed up at his house to arrest him for identity theft . he led cops on a two-and-a-half hour chase on horseback , part of which was captured on a helicopter . pusok was tasered and beaten by cops as he fell to the ground . he says he was handcuffed for '99 per cent ' of the beating and that a deputy whispered into his ear ` this is n't over ' 10 officers have been placed on paid leave as the fbi investigates whether excessive force was used in the arrest .\ntottenham striker harry kane has been nominated for the pfa player of the year award after a standout season . eden hazard is the red hot favourite to land the prize after his excellent season with chelsea . mauricio pochettino says kane deserves to win the award for his impact on english football .\nbournemouth drew 2-2 with sheffield wednesday at dean court on saturday . the cherries went from top to third to second in the space of one game . the battle for automatic promotion to the premier league is hotting up with three points covering four teams and two games to play . eddie howe was unhappy , to put it mildly , that lewis buxton was cleared of fouling callum wilson in the second half .\nthe idea of having another referendum on scotland 's future in the uk before 2020 was ranked 19th on a list of 23 policies presented to voters . it comes after scottish first minister nicola sturgeon refused to rule out staging a second independence vote if the snp wins the 2016 holyrood elections . ms sturgeon has vehemently criticised david cameron 's pledge to hold an in-out referendum on europe .\nportland timbers defender liam ridgewell writes his second column for sportsmail . the 2015 major league soccer season is well under way in the united states . ridgewall 's family are visiting portland for the summer . the 30-year-old is looking forward to playing against orlando city 's brazilian star kaka .\nduchess of cambridge is due to give birth on the 25th april . police searched lamp posts outside the lindo wing in paddington . royal fans were also out in force , many of whom had set up camp . john loughery , 60 , was the only member of the public to attend every day of princess diana 's inquest in 2008 . margaret tyler , 71 , spent six days waiting for prince george to arrive .\nduchess of cambridge 's mother carole middleton is promoting baby shower goodies . she emailed customers of her party pieces firm recommending chevron divine tablewear range for parents-to-be . the cheapest item in the range is a # 2.79 set of party cups . it also includes straws for # 3.49 and cake bunting at # 7.69 .\ncomcast ceo brian roberts announced the company was abandoning its bid to buy time warner cable . the $ 45.2 billion deal would have merged comcast 's 30million customers with time warner 's 11million . the new company would have spun off or sold 3.9 million customers . fcc regulators questioned whether the creation of mega-size tv and internet provider was in the public interest .\nteam lead by the university of southampton studied fossilised organic molecules taken from sedimentary rocks that originally accumulated on the bottom of the panthalassic ocean . the rocks are now exposed on the queen charlotte islands , off the coast of british columbia , canada . experts found signs of bacteria which had suffered severe oxygen depletion and hydrogen sulphide poisoning which would have been caused by massive volcanic rifts in the earth 's tectonic plates . the study authors fear that the planet today could suffer similar consequences .\nfour men were caught on cctv robbing a service station in melbourne . they filled a doona cover with $ 38,000 worth of cigarettes . however they struggled to fit the loot into the boot . they dragged the stash alongside the car during their getaway . the men are wanted for five similar break-ins in the area .\ndr. nikita levy was fired from john hopkins health system in february 2013 after it was discovered he had secretly videotaped and photographed thousands of women during gynecological exams . investigators discovered roughly 1,200 videos and 140 images stored on a series of servers in his home . levy was forced to turn over the camera and committed suicide ten days later . the settlement is one of the largest settlements on record in the u.s. involving sexual misconduct by a physician .\ned miliband has been getting a lot of praise for admitting that he ` blubbed ' while watching pride , a british film released last year . the film centres on the 1984 miners ' strike . pride achieves a double whammy by venerating not one but two sacred cows of the left : bolshie unions and minorities .\nnew york-based writer danielle page asked every cabbie she came across to dispense their best piece of relationship advice . the drivers , many of whom are married themselves , revealed their personal tips , life lessons and cultural anecdotes . one cab driver said people should always think about how they can make their partners happy .\ndiwalinen vankar , 58 , went to the vishwamitri river in west india to wash clothes . but a crocodile grabbed her daughter kanta 's leg and dragged her into the river . vankars tried to pull her free but the crocodile was too powerful . she then attacked the crocodiles head with a wooden paddle for 10 minutes . kanta suffered a leg injury but is expected to be fine .\nvictor moses injured his hamstring in stoke 's 1-1 draw with west ham . the winger has been on loan at the britannia stadium this season . moses has returned to parent club chelsea for treatment following a scan . stoke are still keen to tie up a permanent deal for the nigeria international .\nbob barker returns to `` the price is right '' for the first time since 2007 . he hosted the show for 35 years before stepping down in 2007 . barker handled the first price-guessing game of the show , the classic `` lucky seven '' drew carey finished up the show .\ncnn anchor britt mchenry is in the news after a video surfaced showing her berating an employee . john sutter : she should have known better than to have used such words . he says the problem with social media is that it allows people to present and receive whatever angle . sutter says we 're obsessed with putting celebrities on a pedestal , celebrating them .\npaul simon has reached number one in the uk album chart with the ultimate collection . the 73-year-old rose to fame as part of simon & garfunkel in the 1960s . his album outsold those by the likes of ed sheeran , james bay and sam smith .\na farmer who built a suggestive hay bale structure out the front of his property could face porn charges . bruce cook has been warned by police that he may face serious charges if he does n't take down his sculpture . the 59-year-old put up the structure on good friday as ' a bit of fun ' he says many passersby have enjoyed his sculpture and even stopped to take photos . but he has refused to take it down and ` told the copper to p * ss off '\ncharlesetta taylor , 79 , may have her home of 70 years torn down by the city of st. louis . this so the city can make way for a campus for the national geospatial-intelligence agency . taylor was part of the first african-american family to live in her neighborhood , and now it and 49 others , may be bulldozed . a change.org petition has been started , and already there are over 90,000 signatures . the city says it will resort to eminent domain to take their homes if residents are not willing to move .\na sudden infection landed madison hurd , 16 , in the hospital and forced her to miss her high school 's prom . nurses spent their day off doing hurd 's nails , makeup and hair , getting music and a cake , and decorating her room with streamers and balloons . the stunning turquoise ball gown hurd had started an after-school job to afford was laid over her hospital gown , and her boyfriend flew in from alabama with a tux and a corsage . hurd has since been diagnosed with myocarditis , an inflammation of the middle layer of the heart wall .\ndarren gough is a close friend of kevin pietersen . pietersen has rejoined surrey in a last-ditch bid to earn a place in the ashes squad . gough says pietersen will ` disappear to the caribbean premier league ' if he does n't get an england call .\nbbc boss danny cohen wants sci-fi series to be turned into a hollywood movie . but the show 's creative team are reluctant to rush into making a film . sony and bbc worldwide are under pressure to make a film , emails reveal . the messages were among 173,000 hacked by north korea .\nb.b. king 's dehydration was caused by type ii diabetes , his daughter says . the legendary guitarist and vocalist released a statement thanking those who have expressed their concerns . `` i 'm feeling much better and am leaving the hospital today , '' king said in a message tuesday .\ndouglas murphy was cleaning up after a children 's picnic when he bumped his leg against a bin bag . the 47-year-old 's ankle was barely touched but a cut so small it was barely visible became infected . the father-of-two was diagnosed with necrotizing faciitis - a flesh-eating bug . surgeons were preparing to amputate his right leg when antibiotics began to work .\na new email has been leaked showing cameron crowe joking about bruce jenner 's alleged gender transition . in the email , the director was speaking with former sony head amy pascal about his upcoming film aloha . this as jenner is set to discuss his transition in an upcoming interview with diane sawyer .\nsalford red devils secured a second win in a row with a 18-12 victory at huddersfield . former hudderfield centre josh griffin scored a try and kicked three goals . griffin and ben jones-bishop scored tries in the first half . jack hughes gave the giants hope . carl forster 's try and griffin 's penalty made the game safe .\nsebastian vettel won the malaysian grand prix for ferrari last week . the german driver returned to a hero 's welcome at the team 's factory at maranello . the four-time world champion is determined to ensure his win is not a one-off . vettel is looking to build on his win at the chinese grand prix in shanghai .\nmaria twomey , 42 , of watford , was 12st 7lb and wore size 14 clothes . she lost four stone in a year and dropped from 38 % body fat to 15 % . she has now left behind her job in nursing and joined the ranks of fitness models .\na hoax video showing a wave rider surfing in front of the sydney 's opera house has gone viral for the second time . the video was uploaded to twitter on tuesday morning by popular sydney radio duo fitzy and wippa . it was originally posted by sydneysider darren johnson following strong storms and tandem heavy swells in june 2012 .\nstreaming service spotify has analysed over 2.8 million ` sleep ' playlists . sheeran 's thinking out loud features as the top song that people fall asleep to . brit award winner features on the list an additional six times . also featuring regularly on the lists is pop singer sam smith , 22 .\nhln 's the daily share has released a video that shows the shocking price differences between men and women 's versions of products and services . the clip shows that women make , on average , 78 cents on the dollar to men . the practice of ` gender tax ' is legal in almost every state in the us - even when the products or services are exactly the same for both genders .\nformer new england patriots star aaron hernandez is on trial for murder . he is accused of killing odin lloyd in june 2013 . hernandez is known for his swagger in court . jury deliberations resume wednesday . . watch `` downward spiral : inside the case against aaron hernandez '' tonight at 9 p.m. et .\na mother was holding the two-year-old boy and another child when he slipped and fell into the cheetah exhibit at the cleveland metroparks zoo on saturday . the boy was rescued by his parents before firefighters and paramedics arrived on the scene . he suffered from minor bumps and bruises and was listed in stable condition at the hospital . the zoo plans to press child endangering charges against the child 's mother .\nkat lee 's facebook post has gone viral as she appeals for witnesses to come forward . she said her son was assaulted at an adelaide train station on saturday night . she shared images of her son following surgery for his broken jaw in two places and fractured cheekbone . ms lee said a group of five , including four teenagers and an adult , attacked her son over money owed for a hot dog .\nnew study by ofcom says 4g speeds in the uk are slower than promised . mobile phone companies boasted 4g would be five times faster than 3g . but the actual figure is only 2.5 times faster - 14.7 megabits per second . this is compared to 5.9 mbit/s per second on the 3g service . ee 's 4g network , which covers 81 per cent of homes and businesses , delivered the fastest average download speed of 18.6 mbit / .\ntwo chimpanzees are the first animals to be granted the same rights as human prisoners . hercules and leo are currently living in a lab at stony brook university . a representative of the university have been ordered to appear in court to respond to a petition by the nonhuman rights project . the group argue that the chimps are ` unlawfully detained ' and should be moved to a sanctuary in florida .\njulian speroni has agreed a new contract with crystal palace . the goalkeeper has triggered a 12-month extension that will expire at the end of next season . sperini joined from dundee in july 2004 and will take his palace career into a 12th season .\nvince cable prides himself on being the tories ' bogeyman in the coalition cabinet . he wants a substantial role in government and envisages working with the conservatives again . cable said the prime minister and the chancellor were ` highly intelligent guys ' and added that they ` do n't snarl at each other '\ncody neatis was admitted to royal preston hospital last thursday with a chest infection . but the hospital does not have a suitable bed for the eight-year-old . he has down 's syndrome , epilepsy , autism and is fed by a tube . his mother , lynne , 48 , has had to sleep with cody on the mattress . she watches him sleep in case he pulls out his oxygen or hurts himself . she is demanding answers from the local health trust as she claims she has waited two years for a high-sided bed needed for cody and other disabled children .\npaul casey is the 99th qualifier in the field of 99 due to play at the masters . the englishman got in due to staying in the world 's top 50 . casey finished sixth on his masters debut in 2004 and actually led in 2007 after five holes of the final round .\nliverpool lost 4-1 to arsenal at the emirates stadium on sunday . reds are seven points behind manchester city in the premier league . brendan rodgers ' side face newcastle at anfield on monday night . liverpool can finish in the top four and win the fa cup if they beat newcastle .\nfather has been charged for using medical cannabis on his daughter . the two-year-old has a rare form of cancer called neuroblastoma . he was charged with administering a dangerous drug to a minor and was refused access to his sick daughter . he has now been allowed to see her and is pleading for the government to legalise the drug . the little girl has now lost her breath and is having seizures .\nnew video shows three men accused of being assad agents executed in syria . the men were forced to kneel on the ground before being beheaded by a fighter . the brutal execution was filmed in deir ez-zor , syria , earlier today . the video comes just one day after isis released footage of christians being shot in libya . the extremist group claims to have killed more than 30 ethiopian christians .\nthe island nation has been used for film and tv filming since 1920 . iceland has become an increasingly popular filming location for hollywood blockbusters . the country 's many stunning waterfalls and glaciers are used in many productions . game of thrones , interstellar and prometheus are just a few of the films to feature in iceland .\nkevin rebbie , 56 , of limerick township , pennsylvania , faces several charges , including aggravated indecent assault , unlawful contact with a minor , sexual abuse of children and invasion of privacy . a 15-year-old girl found a hidden camera under the sink in a bathroom in her limerick township home in march . she told investigators that rebbies had been watching her for years when she was undressing and when he believed she was asleep .\nryan taylor 's newcastle united face sunderland in the tyne-wear derby . the 30-year-old scored the winner against sunderland three seasons ago . taylor has been a fan in the crowd during three of the last four derby defeats . the utility player is out of contract at st james ' park this summer .\nnbc anchor brian williams has threatened to make his departure ` really ugly ' he is refusing to go down ` without a fight ' as he looks to return to his post on nbc nightly news , according to a source close to the network . it comes after an internal inquiry found williams 's had lied in his reporting to make himself look good at least 11 times .\nbristol city on the brink of promotion after two seasons in league one . steve cotterill 's side are eight points clear at the top of the table . owner steve lansdown has backed the club with his own personal fortune . city face bradford city on tuesday night in the fa cup third round .\ntwins are an endless source of fascination , but we are still baffled by the uncanny bonds identical twins share . some primitive african societies abhorred twins because of the way multiple births resemble an animal 's litter . in greek mythology , twins were believed to be the product of human intercourse with the gods , meaning they were sacred . many identicals are truly identical in ways we arestill uncovering .\nmark faville , of christiansburg , virginia , was found guilty of voluntary manslaughter in the death of his wife anne , who died in 2000 . he was then led away from the courthouse and it is believed he took his own life . anne died after being suffocated in a homicidal manner . faville had reported at the time she had choked on a piece of chicken , something that was supported by an initial autopsy .\nin 1996 , at the age of 9 , kathy bush was arrested and accused of deliberately making her daughter ill for attention . kathy 's daughter jennifer was taken from her family and placed in foster care . after a year of investigation , a jury found kathy guilty of aggravated child abuse and sentenced her to five years in prison . kathy and jennifer were not allowed to see each other until jennifer was 18 . on wednesday , jennifer , now 27 , released a statement saying she has repaired her relationship with her mother and believes she was never abused .\non monday hillary clinton stopped at a new hampshire bakery and coffee shop to meet with customers . but some staff members in the kitchen refused to be seen with her . clinton 's campaign has been criticized for bringing in pre-screened partisans to some events . but her communications director said it 's a necessary evil in early primary states .\nvideo shows two planes landing on adjacent runways at san francisco airport . both aircrafts ' wheels touch the tarmac at the same time . pilots say it is normal procedure at airports around the world . plane landings on the caribbean island of saint martin are also famous .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call .\nmilitants fighting for isis are being led by former baathist military figures . almost all of the group 's senior officials were members of saddam hussein 's army . many of them were involved in the insurgency that led to the 2003 invasion of iraq . they were then given senior roles in the terror group by isis leader abu bakr al-baghdadi . the former iraqi army generals ' connections with oil smugglers are crucial to isis ' # 2 billion-a-year income .\ntoby alderweireld has impressed on loan at southampton this season . the belgian defender will return to atletico madrid once his loan ends . tottenham are also believed to be interested in signing the 26-year-old . atletico say they are counting on alderweireld and oliver torres to return to la liga .\nsabra dipping co. is recalling 30,000 cases of hummus . the recall is voluntary . no illnesses have been reported . listeria monocytogenes can cause serious and sometimes fatal infections . the potential for contamination was discovered when a random sample tested positive for listerian .\nduchess of cambridge is expected to give birth to a girl on april 25 . odds on the sex have been slashed by 90 per cent with ladbrokes . a scottish punter placed a whopping # 2,000 wager on a new princess . the 18th , 19th and 20th april is the most popular date of birth . names alice and victoria are also popular with betting fans .\nsurvey by association of school and college leaders found 44 % of respondents had vacancies in english , 52 % in maths and 50 % in science . overall , 86 % had ` difficulty ' recruiting teachers for core subjects . london schools are experiencing the most problems finding teachers in english .\nlewis hamilton and olivia munn filmed scenes in rome . hamilton was seen sitting front row for a fashion show . the scene looked like ben stiller 's male model was taking part in a catwalk show . hamilton is making his first live-action cameo on the big screen .\nriddick bowe was once seen as the best heavyweight boxer in the world . he retired in 1997 and reportedly had a fortune of $ 15million at his peak . but he has now offered to ` tweet anything ' for anyone who pays him $ 20 . bowe has posted messages asking for dates and promoting companies .\nthe couple are set to marry in torbay hospital 's chapel tomorrow . jack jordan , 23 , proposed to his girlfriend laura cant , 24 , last christmas . they had hoped to wed after a bone marrow transplant to prolong his life . but last week mr jordan was told he was too ill for the operation . he has now been given just weeks to live and is ` absolutely exhausted '\nrupa huq says she felt no shame in accepting # 1,000 donation from tony blair . she is standing for ed miliband 's party in a key marginal seat in west london . ms huq is the sister of former blue peter presenter konnie huq . she said fellow candidates who turned down the cash were ` sticking their noses up ' at mr blair .\njustine jones , 44 , was left covered in huge sores and in agony . she had opened the bottle of tesco finest garnacha wine to celebrate her daughter 's birthday . the accountant suffers from rare condition pemphigus , which means her immune system is extremely sensitive to certain chemicals . the next day she was covered inhuge sores .\nan australian flag was reportedly set alight at the shrine of remembrance in brisbane 's anzac square on friday afternoon . a 66-year-old man from palm beach was arrested and charged with a ` breach of the peace ' and public nuisance . the man will face brisbane magistrate 's court on the morning of saturday 's 100th anzac day commemoration service .\ncare quality commission branded hinchingbrooke in cambridgeshire as ` inadequate ' in january the watchdog placed it in special measures along with a dozen of the worst hospitals in the country . today the watchdog will upgrade this to ` requires improvement ' and publish a glowing report .\nmelissa plancarte , whose stage name is melissa : cartel princess , filmed in michoacan state courthouse for her pop video ` since you left ' the clip shows glamorous pop star dancing the tango at the bottom of the courthouse staircase . furious officials say the star did n't have permission to film at the courthouse .\ndavid cameron set a target for britain to spend 0.7 % of national income on aid . more than half of 28 industrialised nations reduced aid budget between 2013 and 2014 . but the uk increased its spend by 1.2 % to # 11.7 billion in 2014 .\njosi harrison , laura lefebvre and hailey walden were bullied into sending nude pictures to a boy at their middle school . they reported their ordeal to school officials , only to be told to ` suck it up ' when they sought help , they were told they would be charged with creating and distributing child pornography . on thursday , two years after filing a civil suit against clatskanie school district , a judge ordered that each girl receive $ 75,000 in damages .\na series of images by photographer yûki aoyama sees fathers leaping into the air next to their daughters . the 37-year-old 's images are said to be part of a book which roughly translates as daughter and salaryman . each image sees the daughter stood po-faced as their father makes an energetic leap .\narsenal host chelsea in the premier league on sunday at 4pm . mesut ozil took to instagram to show off his new apple watch . the 26-year-old compared his gadget to tv character michael knight . jack wilshere is expected to start for the gunners at the emirates .\nunited beat manchester city 4-1 at old trafford on sunday afternoon . the result takes louis van gaal 's side four points clear of city in the premier league . the red devils are now just one point behind arsenal in second place . here 's how sportsmail rated each player from the game .\nhillary clinton 's announcement that she is running for president on sunday was the most popular question typed into google politics . last monday , sen. rand paul announced he is seeking the oval office in 2016 . google politics tweeted what it said were ` related questions to rand paul in the last 24 hours ' the top questions on marco rubio were ` how old is marco rubio ? ' and ` where was marco rubio born ? ' the second-most popular question about the senator was ` where were marco rubio 's parents ? '\nkenneth wanamaker jr , 37 , of northhampton county , pennsylvania , pleaded guilty to reckless endangerment on friday . a dentist testified the girl 's teeth were in such bad shape they posed a potentially fatal threat to her health . she had been scheduled for surgery in march but did not have the procedure because her parents did not set up a pre-operation examination . authorities still are investigating wanamakers and his partner jessica hoffman , 32 , in connection to the deaths of wanam baker 's other children .\nkim sears was spotted watching her husband-to-be andy murray lose to novak djokovic in the men 's final of the miami open . the bride-to be wore a similar black silk dress to the tournament . kim and murray will marry at dunblane cathedral on april 11 .\nap mccoy could have ridden cause of causes in the grand national on sunday . the 19-time champion jockey is bidding for a dream end to his career . mccoy 's mount shutthefrontdoor is owned by his boss jp mcmanus . cause of causes has very good reasons why he should be backed .\nthe tory chairman was accused this week of doctoring his own biography . he deleted embarrassing facts about his past and added unflattering details about his political rivals . but the senior administrator who investigated the allegations was a former lib-dem member . richard symonds , 29 , is one of the uk 's top administrators for the website . he once described himself as ` liberal democrat to the last ' before deleting his profile yesterday .\nthe irish rugby player was hurt after being caught by an opponent 's hip or shorts . davy mcgregor was playing for heriot 's racing club against the barbarians . the hooker 's ear was left hanging off after playing against the barbarians for their 125th anniversary . the former ulster hooker took to twitter to show off his battle scars .\nworld no 1 rory mcilroy practised with sir nick faldo on monday . faldo gave mcilory a squeeze on the shoulder during the session . the northern irishman is bidding to win his fifth major and complete a career grand slam at augusta national this week .\nduchess of cambridge 's close friend sam waley-cohen won at aintree this weekend . the 33-year-old jockey was dubbed ` the royal matchmaker ' after he helped the couple rekindle their romance during their brief split in 2007 . bookmakers have slashed odds on the name sam - which could be used for samuel or samantha - being chosen for the name of the second royal baby .\nwest ham are showing interest in crystal palace midfielder james mcarthur . the scotland international only joined palace last summer in a deal worth # 7million from wigan athletic . west ham want extra legs in their midfield and have concerns over whether they will sign alex song on a permanent basis from barcelona .\nchelsea host manchester united at stamford bridge on saturday . jose mourinho has defended manchester city manager manuel pellegrini . the chilean has been under pressure after losing six of eight games . mourinho said pellegrini had been treated like a ` criminal ' by the media . the blues boss also dismissed the premier league 's fair play table .\nbournemouth were promoted to the premier league on monday . the cherries official name is afc bournemouth . arsenal will start season in second place for the first time in 100 years . the gunners have started each season since 1915/16 at the summit of england 's top tier .\nblackpool fans pelted directors ' box and main reception area with eggs . blackpool were relegated to league one after rotherham 's victory over brighton . chairman karl oyston was the target of their criticism . black pool drew 1-1 with reading at bloomfield road on tuesday night .\nrev richard coles sits on the board of wellingborough homes , a housing association in northamptonshire . he rose to fame as half of the famously gay 1980s pop band the communards . coles raised eyebrows by publishing a frank memoir last year .\nkentucky loses 71-64 to wisconsin in ncaa final four . badgers will play duke in monday night 's title game . blue devils beat michigan state 81-61 in first game . duke led 36-25 at halftime , then cruised home in second half . .\nandre blackmen tried to dodge community order for shoplifting . the 24-year-old claimed it would hinder his search for a new club . blackman has been told he is ` surplus to requirements ' by blackpool boss lee clark . he was ordered to carry out 40 hours of unpaid work at hammersmith magistrates ' court .\nkim said her daughter north west is obsessed with make-up and watching her get ready . the 34-year-old also revealed that she thinks she dresses sexier now that is a mother . kim said she likes it when kid 's wear ` mini-me styles ' and she loves ` seeing kids in black '\niowa state university student tong shao , 20 , was found dead in her car on september 26 . her body was found in the trunk of her toyota camry and next to it was a 15-pound barbell . police say she was last seen alive by her boyfriend xiangnan li , 23 , on september 5 , 2014 . li is believed to have flown back to china two days later . police have reportedly issued an arrest warrant for li for first-degree murder . tong 's father has called for more to be done in solving his daughter 's death .\nroyal bank of scotland has racked up # 50billion in losses since bailout . bank lurched to a # 446million loss for the first three months of the year . comes after rbs was forced to put aside # 856million to cover lawsuits and fines still being decided .\nboat carrying hundreds of migrants capsized after passengers surged to one side . women and children were trapped in the hull and died as water surged in and boat turned upside down . survivors said the two-deck vessel ` flipped ' after a commercial ship was spotted .\nevery police force in england and wales will be required to record anti-muslim hate crimes and treat them as seriously as anti-semitic attacks . home secretary theresa may said police will have to record islamophobic attacks as a separate category . the move has been hailed by islamic groups .\nfloyd mayweather and manny pacquiao will fight on may 2 in las vegas . but tickets for the bout have yet to go on public sale . the two camps and the mgm grand are locked in a stand-off over allotments . the impasse has left fans in the dark , and ticket brokers perplexed .\nalmond growers in california are at the centre of a row over water usage . state supplies more than three-quarters of the world 's $ 4.93 bn -lrb- # 3.3 bn -rrb- almond market . despite ongoing drought , almond growers are still planting trees .\ntalksport lead football pundit stan collymore was in full fan mode as he celebrated aston villa 's 3-3 draw with qpr . colly more called qpr 's joey barton a ` f ***** g rat ' after he fell down to win a free-kick for qpr during the game . yorkshire 's championship winning coach jason gillespie is preparing for new season by becoming a vegan .\neden hazard named pfa player of the year on sunday . chelsea have six players in the premier league team of the year . liverpool top the table with 75 representatives in the best xi . chelsea are third with 29 , while manchester united have just two . steven gerrard has been named in the team of year more than anyone .\nprince of wales has been accused of secretly trying to influence government policy with scrawled notes to ministers . but lord prescott has defended the prince , saying he should be allowed to ` write as many damn letters as he likes ' the former deputy prime minister said he has ' a lot to offer this country '\nnew survey shows who brits would most like to have as a family member . david beckham voted number one choice for dad . holly willoughby voted best mother figure by brits . ed sheeran and channing tatum voted best brothers . helena bonham carter voted best aunt .\ndavid villa has scored one goal for new york city since joining the mls . the former barcelona forward posted a snap of the empire state building on instagram . the new york captain has been enjoying his new home in america . new york are currently third in the eastern conference .\ndavid roberts is in the running to become mayor of middlesbrough . he followed in his great-great-uncle daniel mcallister 's footsteps by jumping off the transporter bridge over the river tees . but instead of falling to his death like his relative did more than 100 years ago - mr roberts survived the jump which he carried out for a children 's charity .\ndirector of public prosecutions under pressure over failure to put lord janner on trial for serious child abuse offences . alison saunders said her job was to make the correct legal decisions in difficult cases , not the most popular ones . but she was accused of ignoring rights of victims and perpetrating establishment cover-ups .\nsydney grandfather peter mutty was caught with homemade alcohol in saudi arabia . the 57-year-old was sentenced to six months jail and 75 lashes . he was released on march 19 but has been banned from travelling out of the country . mutty says he received little help from the australian embassy in saudi . he has gone public to drum up awareness about his situation . the australian embassy has now offered him assistance .\nbournemouth are within touching distance of promotion to the premier league . eddie howe 's side secured a hard-fought win over reading at the madejski stadium . callum wilson opened the scoring for bournemouth in the fourth minute . the cherries are now just one point behind championship leaders fulham .\nfrench officials blame britain for a sharp rise in youngsters binge-drinking . health minister marisol touraine wants to impose fines and prison sentences for inciting binge drinking . critics have said it 's a case of double standards for a country where children are encouraged to drink wine at the table from a relatively early age .\nhsbc was criticised for refusing to grant the # 250,000 loan . bank ` relied on untested assumptions , stereotypes or generalisations in respect of age ' financial ombudsman service found the lender guilty of being ` unfair ' hsbc was ordered to pay # 500 to the couple for their ` distress and inconvenience '\npeter bergen : dzhokhar tsarnaev 's conviction is not surprising , but it could be the answer to preventing more violence . he says muslims are n't unusually predisposed to violence , but radicalization is . bergen says radical islam began at the intersection of politics , religion and religious identity .\npedro has started just 12 league games for barcelona this season . luis enrique has favoured lionel messi , luis suarez and neymar . the 27-year-old has been linked with a move away from the nou camp . pedro says it is normal for a player not to play regularly this season .\njamelia , 34 , said she was ` hounded on twitter ' after airing her views on itv show . she said obese women ` should feel uncomfortable ' about their size . added that high street stores should not be catering for them . but she now insists she was only referring to people larger than a size 20 .\nharry kane was named captain for tottenham hotspur against burnley . the 21-year-old striker was the youngest premier league captain this season . kane failed to score as tottenham lost 1-0 at turf moor on sunday . tottenham are now just four points behind manchester city in the premier league .\nlewis hamilton won the chinese grand prix to extend his lead at the top of the f1 championship . nico rosberg finished second with sebastian vettel third . rosberg accused hamilton of compromising his race strategy by driving slowly . hamilton denied he had done anything wrong and said he was just focused on his own race .\nnadir ciftci scored for dundee united in the second half . the turkish striker celebrated by blowing a kiss at opposition goalkeeper scott bain . greg stewart had given dundee the lead in the 14th minute . but jake mcpake and paul heffernan scored for the dark blues . it was dundee 's first win in a derby for more than 10 years .\nformer model jennifer sky , 38 , has revealed that models are being asked to wear spanx underwear stuffed with sandbags , so they can clock in at a ` healthy ' weight . france recently passed a law that bars models from walking the catwalk if their body mass index is deemed too low . agencies who employ ` too-thin ' models face large fines and even jail time under the new french law .\npat ingles , 69 , from edinburgh loves to party the night away dancing on tables . the retired hairdresser lost her husband 12 years ago to prostate cancer . she 's focused on enjoying herself and wants to make the most of her time . her family think she 's great fun and love it if she joins them on nights out .\npatrick kramer specialises in oil paintings of incredible detail . the 33-year-old from utah takes up to 300 hours to complete each painting . his work is so realistic it 's impossible to tell it 's not a photo . he also paints surreal still-life images and imitates drake 's album cover .\nhibernian beat hearts 2-0 in the edinburgh derby on sunday . alan stubbs ' side remain second in the championship table . jason cummings and farid el alagui scored the goals . stubbs praised el alags ' performance after returning from injury . hibs face falkirk in the scottish cup semi-final on saturday .\nmessi opened the scoring for barcelona in the 14th minute . neymar doubled the lead with a fine free-kick after 31 minutes . banega pulled one back for sevilla before gameiro completed the comeback . barcelona are now just two points behind real madrid at the top of la liga . claudio bravo and gerard pique were both guilty of individual errors .\nthe sfa have banned josh meekings from the scottish cup final . meeking blocked a leigh griffiths effort in inverness ' 3-2 win over celtic . fifa 's head of referees says the sfa are ` entirely wrong ' in their decision . meeks has been retrospectively suspended for one match .\nlarry mcelroy , 54 , fired his 9mm pistol at the armadillo in his leesburg , georgia backyard . one bullet hit the armador , but another bounced off the armored shell and hit his mother-in-law carol johnson in the back . johnson suffered non-life-threatening injuries and was talking all the way to the hospital . lee county sheriff 's department said they recommend using a shotgun to kill vermin .\nthe research was carried out by scientists at the lawrence berkeley national laboratory in california . they cut real skin samples and then attempted to rip them apart . using x-ray beams they were able to directly observe the microscopic changes that take place in skin to help it resist tearing . they discovered that the curly fibers of collagen that make up dermis of the skin straighten and stretch in response to a tear . this is to share the load and prevent further damage . the findings help to explain why the thin layer of cells that cover our bodies is able to provide such an effective barrier to the outside world .\nlack of iron in women can trigger hair loss as it means less oxygen is delivered to the follicle . florisene pills contain iron and do n't cause digestive irritation . eating protein with every meal is vital to strong , healthy hair . some studies show caffeine can stimulate human hair growth in vitro .\nuntil she was 18 munroe bergdorf was a boy called ian . the beautiful dj , 27 , from east london , is now a model . has worked with and modelled for a variety of fashion and beauty brands . she 's now taking female hormones to live as a woman . she hopes her story will help other transgender teens .\ncountdown co-presenter rachel riley left embarrassed on recent episode . two contestants offered up rude eight-letter word as their answer . host nick hewer struggled to contain his laughter as word popped up . it is not the first time hewer has struggled to control his laughter .\n43 % think ed miliband ` comes across as wanting to win the most ' just 25 % think david cameron wants to win most , according to yougov survey . just 7 % think mr cameron is enjoying the campaign the most out of all party leaders . snp leader nicola sturgeon is judged to be enjoying the fight more than anyone by 34 % of voters .\nmanchester united had scouts at the san paolo stadium on wednesday . felipe anderson has attracted interest from psg , manchester city , arsenal and liverpool . anderson set up senad lulic 's winner in the coppa italia semi-final second leg . gonzalo higuain is unsettled at napoli with rafa benitez set to leave .\npictures show kim jong-un with his right wrist wrapped up in bandage . the 32-year-old was inspecting a weapons factory in pyongyang . latest in a string of presumed health problems for the north korean dictator . doctors say it is unlikely that he has fractured his wrist .\nimf predicts the uk economy will grow by 2.7 per cent this year . it is expected to be beaten only by the united states in 2016 . george osborne says it is ` proof our economic plan is working ' but david cameron warns growth could be put at risk if tories lose .\nengland 's attack failed to take the eight wickets they needed in antigua . liam plunkett and mark wood impressed in the nets on sunday . moeen ali has joined up with the squad after missing the first test . england face west indies in the second test on tuesday .\nasian elephant me-bai returned to her mother after years apart . the pair were reunited in the elephant nature park sanctuary , thailand . me-bai was sold to provide rides for tourists when she was three-and-a-half years old . she did n't see her mother , who also worked in the trade , for three years . the emotional moment the pair were reunite was captured on camera . it shows the elephants caressing each other with their trunks .\narthur baldwin , an off-duty secret service agent , was arrested at 12:30 am friday on a residential street in south-eastern d.c. . he has been hit with a felony charge of attempted burglary and another of destruction of property . the agency revoked his security clearance and put him on leave .\nnottinghamshire beat yorkshire by seven wickets on the opening day of the lv = county championship match . alex hales scored a double century for the first time in his career . hales is unbeaten on 222 not out after the first day of play . james taylor and brendan taylor also scored centuries for the hosts .\nnovak djokovic beats thomas berdych in monte carlo masters final . serbian world number one wins 7-5 , 4-6 , 6-3 . djokova extends his winning streak to 17 matches . berdych 's third loss in a final this year .\njennifer lopez 's upper body is as impeccably toned as her curves . the mother of two has completed triathlons . we reveal how to get the enviable physiques of the stars . the singer/actress shows off toned arms at the annual academy awards in february .\nstoke city are 17th in the premier league fair play table . mark hughes believes tom jones ' song ` delilah ' is costing them a spot in the europe league via the fair play league . stoke have been singing the 1960s hit as their unofficial club anthem since the 1980s . the potters are set to miss out on european football next year .\nconcepts were created by concept artist alex brady , 32 , from cambridge in the uk . he imagines a space station of tomorrow similar to las vegas , with neon lights and plenty of attractions . several spacecraft docked at the space station can also be seen , based on similar designs for space planes . the cone-shaped space station is also shown in a state of partial completion , with space planes again making the journey from the ground . and mr brady has also given his take on how humans might get into orbit in the future on a variety of space planes , as they could take off from a runway and land back on earth .\nvigil remembers 147 students killed in terrorist attack at university in garissa . `` we need to talk about the bright futures cut short , '' organizer says . kenyan authorities have not released a list of the names of the victims . the al-shabaab militant group claimed responsibility for the attack .\nwest brom boss tony pulis wants to sign bakary sako and neil taylor this summer . baggies are currently 17th in the premier league table . pulis said west brom has ` gone off the rails ' in recent seasons . he wants to ensure the club can become a top-ten team again .\ncorporal christian walmsley suffered from post-traumatic stress disorder . he had served in the first gulf war , bosnia , angola and northern ireland . father-of-three struggled to adapt to civilian life after leaving the army . he was found dead in his flat in bolton wearing five war medals , inquest told .\ntottenham left back danny rose has attracted interest from manchester city . the 24-year-old was signed up to a five-year contract last summer . mauricio pochettino believes rose is the best english left back . city are short of homegrown players and want to sign a new left back this summer .\nhatton garden raid has been compared to two similar robberies in la in 1980s . criminologist richard hoskins said he noticed ` striking similarities ' between the two crimes . he believes the gang who raided hatton garden must have read the book black echo , which is based on the two robberies . officers from scotland yard 's flying squad released images of three suspects on saturday , but refused to release a picture of the supposed ringleader . it is believed he has already been identified after police released cctv images of the raid .\nsnp leader admits she understands concerns of english voters about coalition . suggests david cameron has been ` not unhelpful ' to the snp . insists she would put ed miliband in downing street even if labour wins 40 fewer seats than tories in a hung parliament . polls suggest snp is on brink of landslide on a scale unprecedented in modern politics .\nsapphire glass screen in the apple watch has remained scratch-free after being rubbed with sandpaper , keyed and even hit with a hammer . the test was carried out by cardiff-based iphone repairs specialist iphonefixed.co.uk . it used a sapphire screen from a 38mm apple watch for its experiment . sapphire glass is said to be twice as tough as normal glass and almost as hard as a diamond . the apple watch and apple watch edition both have sappire glass screens , while the cheaper ` sport ' version has a strengthened ion-x glass screen .\nislamic state has issued a new set of social media rules to censor coverage . follows heavy defeats at tikrit and the costly siege of kobane . some isis supporters have been criticised for leaking information . rules include banning the ` stupendous spread of mujahideen '\nspacex is scheduled to launch its unmanned rocket with the espresso maker and 4,000 pounds of food , science research and other equipment on monday afternoon . the machine was originally intended for astronaut samantha cristoforetti of italy so she could get a break from the station 's instant coffee . it is the first coffee machine able to work in micro gravity on the iss .\nretired calgary couple were on a sailing trip in honduras when they were attacked by four men with guns and knives . loretta reinholdt , 54 , and andy wasinger , 46 , were on their second day into a trip from belize to the honduran island of roatan . the men boarded the sailboat and took all of their money after waving down the sail boat by asking for gas . after the terrifying hold-up , the pirates pushed the sailboats to the shoreline of a remote beach , leaving the couple and their captain stranded for four days .\ndeborah roberts forced tissue into phyllis hadlow 's mouth to silence her . the 53-year-old also poured water over the dementia patient in front of other nursing staff at kent and canterbury hospital . roberts was found guilty of ill-treatment or wilful neglect of a person without capacity but avoided a prison sentence .\nlib dem leader nick clegg wants existing phone appointments extended . he said it could be used for update appointments or brief progress checks . lib dems also want repeat prescriptions and booking appointments available online . officials stressed that people would not be forced to use the service . they said it would only be for minor ailments or progress checks .\naston villa face manchester united at old trafford on saturday . ron vlaar returns from injury to help villa in their battle against relegation . tim sherwood has urged the dutch defender to prove his worth . vlaars played under louis van gaal in brazil and will face his former international boss .\nneanderthals were dominant human species in europe and asia for 250,000 years before vanishing entirely 41,000 year ago . scientists have found proof that a group of modern humans known as the protoaurignacian culture arrived in southern europe at around the same time the neanderthals disappeared . they have been able to conclusively show that a pair of ancient baby teeth found at two prehistoric sites in northern italy belong to modern humans from this culture . it has settled a debate that has raged since they were discovered in 1976 and 1992 .\ntop gear co-host releases first home video on new channel on youtube . the ten-minute clip shows him shouting ` bored ' to himself and his dog . it follows him as he learns how to herd sheep in the lake district . hammond has already been watched by 230,000 people on the video site .\nwaheed ahmed , 21 , was arrested at birmingham airport after returning from turkey . he was with eight relatives who were stopped at the turkish border with syria . they include his aunt , two male cousins , his cousin 's wife and their children . four children aged one , three , eight and 11 have also been flown back to the uk .\nedinburgh face newport gwent dragons in european challenge cup semi-final on friday . scotland international centre matt scott ruled out until at least the end of the season . the 25-times-capped centre is now also a doubt for september 's world cup . scott has n't played since picking up his latest injury on scotland duty against ireland in the final game of the six nations last month .\nmonty python and stephen hawking team up for a new song . it 's a version of `` galaxy song '' from their 1983 film `` the meaning of life '' the song is available for download on saturday . it features hawking singing the song in his signature computerized voice .\nmanny pacquiao sings and performs in a new music video for his country . the ` i 'm fighting for filipinos ' video shows footage of his previous fights . pacqu xiao-manny faces floyd mayweather in a $ 300million fight on may 2 . the filipino boxer has also tried his hand at basketball and acting .\nu.s. president barack obama and cuban president raul castro will have a substantive ` discussion ' tomorrow at a regional summit the two men are attending this weekend in panama . it will be the first time in more than 50 years that leaders from the previously estranged countries will have had a lengthy in-person exchange . ahead of an anticipated run-in , if not a formal meeting , this weekend at the seventh summit of the americas , the two presidents spoke by phone on wednesday for only the second , known time in as many years .\nmichael keaton hosts `` saturday night live '' for the third time . he pays homage to his `` beetlejuice '' and `` batman '' roles . fans delighted in a cameo from norman reedus . the show also poked fun at cnn . . the actor 's performance drew high marks from viewers and critics .\nanantara the palm jumeirah is a luxury over-the-water resort in dubai . rebecca adlington and husband harry stayed there on their first holiday together . the couple are expecting their first child in june . rebecca says she was impressed by the luxury of the city .\nluis enrique believes xavi has a vital role to play in barcelona 's hunt for the treble . the 35-year-old has managed just five starts in 21 games for barcelona this season . xavi assisted jeremy mathieu 's winner against celta vigo on sunday . barcelona face alemria on wednesday in la liga .\nmohammad liaqat , 34 , hurled insults at white teachers at mount carmel school . he then went to another school and assaulted the headmaster , court heard . liaqats objected to strict uniform policy at mount . carmel high school . the school said 14-year-old boys were banned for growing beards for religious reasons .\nzlatan ibrahimovic has been banned for four games by the french league . ibrahimovic lost his temper during psg 's 3-2 loss at bordeaux on march 15 . he insulted referee lionel jaffredo and one of his assistants . the swede also used an expletive to describe france . ibrahimovi will miss psg games against nice , lille , metz and nantes .\nformer world champion mika hakkinen says lewis hamilton is getting inside his teammate nico rosberg 's head as the german bids to win his first world championship title . rosberg accused hamilton of deliberately compromising his race at last weekend 's chinese grand prix by slowing down . hamilton won his second race of the season and fourth in china .\neaster sunday is celebrated in greece , russia , turkey and the balkans . orthodox easter sunday is marked a week later than in the roman catholic and anglican church . in the aegean island of chios , rival parishioners fired thousands of homemade rockets at each other in a traditional ` mock war ' the custom dates back to the 19th century , when the island was under turkish occupation .\ndefense attorney james sultan said his client ` witnessed ... a shocking killing committed by somebody he knew ' hernandez , 25 , is accused of killing semi-pro football player odin lloyd in june 2013 . prosecutors say he and two friends picked up lloyd at his boston home before dawn on june 17 , 2013 , and drove him to an industrial park near hernandez 's house . surveillance video at hernandez 's home minutes after the shooting showed him holding a black item that appeared to be a gun . a joint found near lloyd 's body had hernandez 's and lloyd 's dna on it .\nfloyd mayweather jnr 's sparring partner jeremy nichols gives mock interview as manny pacquiao . ' j flash ' makes fun of the filipino 's faith , singing and claims his mother uses voodoo . the undefeated mayweather meets pacqu xiao in a $ 300million mega-fight on may 2 .\ned miliband pledged to introduce a mansion tax on homes worth over # 2m . labour leader 's own home in dartmouth park , north london , would be hit . estate agents in london are now offering a higher ` cameron price ' for same property . one buyer has threatened to drop offer to # 13.5 m if labour win election .\nlorraine cobourn was struck by a canary-coloured taxi in may last year . the 51-year-old was left with a broken hip and had to leave her job as a bank clerk . she is now undergoing counselling to help her deal with the psychological damage . she can not even touch bananas and has a terrible fear of anything yellow .\njoanna lumley told jennifer saunders to ` do it before we die ' in absolutely fabulous . film will be based in london , with some scenes in the south of france or bahamas . saunders was spurred on to finish script by # 10,000 bet with dawn french .\nnewcastle united lost 1-0 at sunderland on sunday . john carver admits the club need to look at the ` dna ' of their dressing-room . newcastle travel to liverpool on monday in the premier league . carver says he was 'em barrassed ' by the performance against sunderland .\nimages captured by photographer graeme whipps above pitcaple in aberdeenshire yesterday . the lyrid meteor shower is expected to peak tonight with between 10 and 20 meteors an hour . the annual celestial event has been observed for the last 2,700 years across the globe .\nprotesters gathered in hyde park to call for reform to drug laws . four police officers restrained a man just yards from a police sign reading : ` possession of cannabis is illegal ' thousands of campaigners were seen openly smoking marijuana . 16 were taken into custody , while 21 were released on street bail .\nchelsea have won all three of their matches following the international break . everton lead the table with three wins from three after the internationals . manchester city and southampton are the only other unbeaten sides . arsenal and liverpool are yet to win after an international break this season . sportsmail examine the table using only results immediately after internationals .\nbarcelona-based booking platform byhours.com allows users to organise stays of three , six and 12 hours . it has already got 25 hotels in the capital on board . the app allows the user to select their area , and then their time slot , to be then shown a list of available hotels .\njohn bramblitt , 42 , from denton , texas , developed epilepsy aged 11 . the condition slowly caused him to lose his eyesight at the age of 30 . despite this , he decided that an inability to see should not prevent him from painting . he uses a special technique to transfer his visions onto the canvas .\ncolleen deborah ayers ' decomposed body was uncovered in a shallow grave on her parent 's 25-acre lakesland property , south west of sydney . micheal john duffy , 34 , pleaded not guilty to murdering ms ayers . crown prosecutor elizabeth wilkins sc told the court duffy had willingly joined in . duffy claimed his former partner rachel evans , was the one with a ` twisted desire to kill ' and he had only helped bury ms ayer 's body . evans has plead guilty to murder and debridge to being an accessory to murder .\n`` giga-coaster '' is tallest and fastest `` giga - coaster '' in the world . ex-boxer mike tyson lived in a gaudy , abandoned mansion in ohio . cnn exclusive : bikram yoga creator accused of sexually assaulting six former students .\nadam johnson has been charged with grooming and three counts of sexual activity with a 15-year-old girl . the 27-year old has been bailed to appear before peterlee magistrates on may 20 . sunderland will not suspend johnson despite the charges . the club 's hierarchy have decided that the outcome of his case has been decided .\npresident barack obama 's point man on isis says the u.s. is in `` uncharted territory '' brett mcgurk says the number of foreign fighters in syria is `` off the charts historically '' he says isis has expanded its reach to libya , egypt and yemen .\nwest ham left back aaron cresswell has impressed in his first season in the premier league . manchester city are keen to add to their homegrown quota of players . chelsea are also interested in the 25-year-old . city travel to the etihad stadium to face west ham on sunday .\nmirko ` cro cop ' filipovic defeated gabriel gonzaga by unanimous decision . the heavyweight rematch took place in krakow , poland . jimi manuwa beat jan blachowicz in the co-main event . stevie ray made his ufc debut and stopped marcin bandel . joanne calderwood was submitted by maryna moroz in the first round .\nchristian benteke has scored eight goals in six games for aston villa . the belgian striker says it would be risky to say villa are safe . villa are six points clear of the relegation zone . they face liverpool in the fa cup semi-final at wembley on saturday .\nreal madrid defeated celta vigo 4-2 at the balaidos on sunday night . javier hernandez scored twice to keep real in the title race with barcelona . the manchester united loanee has now scored six goals in eight starts . nolito gave celta the lead after nine minutes but toni kroos equalised . hernandez scored his second and james rodriguez 's third in the second half .\njacques burger received a one-week ban for striking racing metro scrum-half maxime machenaud . the namibia flanker will be available to play in saracens ' semi-final against clermont auvergne . burger will miss saracen 's aviva premiership clash with leicester on saturday .\nrita wilson , 58 , took to twitter on wednesday to thank her supporters for their support . on tuesday , she shared the news of her disease through a statement published by people magazine . she explained that her first test for cancer came back negative but that she was correctly diagnosed after seeking a second opinion . the mother-of-two underwent a double mastectomy and reconstructive surgery last week .\nchildren who experience stressful events could be three times more likely to develop type 1 diabetes . swedish scientists analysed more than 10,000 families with children aged two to 14 who did not have the condition . they looked at whether there was any family conflict , a change of family structure , interventions from social services or unemployment . subsequently , 58 children were diagnosed with type 1 diabetes .\nstevan ridley has signed a one-year deal with the new york jets . the 26-year-old suffered a tear to his right acl last season . ridley played just six games as the patriots won the super bowl . he joins chris ivory and bilal powell at running back in a revamped jets offense .\nstoke city manager mark hughes is confident he will have money to spend in the summer transfer window . asmir begovic is out of contract at the end of next season and could be targeted by clubs . hughes wants to tie down goalkeeper begovo to a new contract at stoke .\nfrench defender raphael varane filmed real madrid 's entrance to the santiago bernabeu on wednesday . real beat atletico madrid 1-0 on aggregate in the champions league quarter-final second leg . fans mobbed the team coach and banged on the windows in support and anticipation . javier hernandez scored the winning goal in the 88th minute against atletico .\nmatthew sitko , 23 , was driving erratically when he crashed into a fence . he was dangling over the edge of bryden canyon in lewiston , idaho . a passer-by smashed his window and pulled him to safety . sitko is recovering in hospital from minor injuries . police are looking for the man who saved him .\nemily reay , 17 , is a pupil at trinity school in carlisle , cumbria . she has natural auburn hair but colours it so it is brighter . claims she has sported the same vibrant ginger hair for the last three years . but on her return to lessons she claims she was ordered to tone it down . now she has been told she is banned from lessons until she changes her appearance .\nthirty years ago this month the world snooker final was held in sheffield . steve davis was leading 8-0 when he missed a shot on the green . dennis taylor pounced upon the error to overturn the difference and lead 9-7 overnight . the 1985 final was watched by 18.5 million , a bbc2 record .\nfour-year-old darius is the king of the continental giant breed . darius seems nonchalant about his world record . he is set to lose his title to his son , jeff . aged only one , jeff is already 3ft 8in long and weighs 2st .\ncastle toward , near dunoon , was used to prepare troops for d-day landings . it was commissioned as hms brontosaurus in 1942 and was used as a training base . soldiers practised beach landings - complete with bombs , smokescreens and strafing fighters . many servicemen were killed in accidents during the demanding training . the castle is now on the market for # 1.75 million .\ndr michael shannon saved chris trokey 's life when he was born premature more than 30 years ago . but in 2011 , dr shannon was trapped in his burning suv after it was t-boned by a semi-truck and trokey worked to pull him out alive . the two men met up last sunday when they both took part in a fundraiser for childhood cancer .\nwest ham were held to a 1-1 draw by stoke in the premier league . aaron cresswell had given the hammers the lead in the first half . marko arnautovic equalised for stoke in stoppage time . sam allardyce has criticised his side 's ` nerves and panic '\nchristian benteke faces a substantial pay cut if aston villa are relegated from the premier league . the belgian striker 's contract at villa park is worth # 50,000 per week . but if villa are out of the premier league bentekes wages will drop to # 35,000 a week .\nalice barker , 102 , was a dancer in new york nightspots in the 1930s and 1940s . she had never seen any motion pictures of herself dancing , and her memorabilia had been lost . a filmmaker and volunteers put together a video of `` soundies '' -- early music videos .\nuniversity of sydney offering 17-week bridging diploma for year 11 students . program only offered to pupils at prestigious sydney private school scot 's college . students who completed the course were guaranteed places in a number of undergraduate level courses . tuition , sporting and curricula fees for scot 's college reportedly top $ 30,000 . national union of students president says program is ` really concerning '\nafrican investors are spending millions on luxury property in london . nigerians are splashing out the most cash on bricks and mortar . london is seen as a `` safe haven '' for prime property investments . many of the african buyers see these houses as a way of maintaining cultural ties with london .\natletico madrid in talks to sign paulo dybala , according to reports in spain . palermo representative gustavo mascardi is in madrid and will meet atletico . juventus , roma , inter milan and psg are all interested in the argentine . mundo deportivo have installed barcelona as favourites to win the champions league .\nglenn ford , 65 , was convicted of killing jeweler isadore rozeman in 1983 . he was sent to death row in angola , louisiana , but was released last year . he has since been diagnosed with stage 4 lung cancer and was given six to eight months to live . former prosecutor marty stroud , 63 , visited ford at his home last week . he apologized for putting him behind bars for 30 years for a murder he did n't commit .\nfrankie franz watched the spanish right-back pull off the staggering trick shot in a video recorded at barcelona 's ciutat esportiva training ground . the nine-year-old moved the basketball hoop into the middle of the goal and after a little run up sent the ball straight through the net first time . frankie is an academy player with dagenham and redbridge football club .\nroland giroux takes videos of his pet fish interacting with him . the man places his hand in the tank and gently cups the fish with his fingers . the blood parrot cichlid stays still as he strokes it with his finger . the fish swims away from the man 's hand a few times in the video .\nshae-lee shackleford , lana kington , and madison lloyd are the three australian models who rose to fame with their youtube videos . the trio have appeared on the ellen show and good morning america . their videos have been viewed 260 million times across social media .\nmother of april jones has revealed she receives hate mail for her daughter 's murder . coral jones , 43 , had letters demanding her other children be taken into care . she was branded a ` bad mother ' for allowing april to play in the street past 7pm . april was abducted and killed by paedophile mark bridger in october 2012 .\nenglish fan jonathon stevenson wrote a letter to richie benaud in 1996 . he asked for tips on left-handed leg spin and benaud replied . the typed letter , dated september 27 , 1996 , was personally signed by benaud . accompanying the letter was a full sheet of notes about spin bowling for left-hand bowlers . benaud passed away in his sleep on thursday night in sydney after battling skin cancer .\ncalifornia-based youtube user lionel hutz filmed the video . he filmed his young son chasing family feline around the garden . footage shows the cat licking his fur before the boy plonks himself on top . after a brief moment of stillness , the cat immediately gets up .\nryan skivington took the pets out of their cage during a row with the girl 's mother . the 26-year-old lightweight admitted criminal damage to the guinea pigs . he also admitted assaulting his former partner bobbi jo houston at her home in blackpool .\ncharles severance , 54 , was in court for a hearing on thursday in alexandria , virginia . he is accused of the murders of nancy dunning , ron kirby and ruthanne lodato . all three victims were gunned down at their homes in daylight attacks . prosecution argued severance 's writings linked the three murders . he was reprimanded for making an obscene gesture during the hearing . his trial will be moved to fairfax county over fears for an impartial jury due to the hysteria surrounding the murders .\npentagon released a map this week showing coalition forces have taken back 25-30 % of iraqi territory seized by isis . counterinsurgency specialist afzal ashraf says the map is telling . he says isis is winning in ramadi , but is trying to distract attention from its losses .\nandy king says his goal against west ham may turn out to be his most important for the club if they stay up . leicester city beat west ham 1-0 in their premier league clash on saturday . king scored his 50th goal for the foxes in the 86th minute .\nthe women were raped by the firm 's security guards and police patrolling mine . one of the women was just a 14-year-old girl attending school in enga province . barrick gold reached the out-of-court settlement when the women threatened to file a lawsuit in the us .\nfour-month-old roscoe was caught on camera this week at the asheville humane society in north carolina taking some of his first steps . the rescue pup was born with a deformity which caused his front to legs to be bent backwards at the knees . as a result , he was forced to crawl around on his joints .\nporters are carrying luggage up and down 32 stairs at nadrazi veleslavin station . the station is the closest to prague 's international airport . but the construction project did n't budget for an escalator . an escalator was built but it connects with an unbuilt train station .\nhuge concrete markings have been spotted all across america . the arrows were once markers for early airmail flights across the us . the us postal service began delivering mail in the early 20th century . the concrete arrows were placed at the base of lit beacons near airways . retired couple brian and charlotte smith have photographed 102 of them . they have set up a website arrows across america to help find the rest .\nprofessor stephen hawking appeared at the sydney opera house on saturday night as a 3d hologram from his physical location at cambridge university in the uk . he was asked about the cosmological effect of former one direction singer zayn malik leaving the boy band . professor hawking joked that in another different universe ` zayn is still in one direction '\nalan pardew 's five-game winning run was crucial for newcastle 's season . newcastle were bottom of the premier league when he took over . the magpies would have been relegated without the five wins . pardw 's side are now on 20 points and seven points from the bottom three .\ntens of millions of chinese people travelled home to mark the qingming festival . families cleaned their ancestors ' graves and left their favourite food and drink . the festival marks the start of spring and the beauty of nature . a record-breaking 36.5 million passenger trips were made over the weekend . in shaanxi province , a huge outdoor celebration was held in honour of the ` yellow emperor ' huang di .\nthe eiffel tower has been closed to tourists for 18 hours as part of the strike action . workers at the most visited paid monument in the world have joined the walkout . it follows action by french air traffic controllers which involved a two-day walkout starting yesterday .\nlaw allows oklahoma to use nitrogen gas to kill death row prisoners . governor mary fallin signed into law a bill approving nitrogen as an alternative method of death . the method involves pumping a chamber full of nitrogen and leaving a prisoner 's body to die from lack of oxygen . supporters say it is ` foolproof ' and requires no medical expertise .\njordan sim-mutch was part of an armed gang responsible for 29 robberies . the gang targeted businesses across greater manchester with weapons . sim-mutch posted pictures of stolen money and drugs on facebook . he was jailed for nine and a half years yesterday after admitting offences .\nrep. kevin mccarthy : japan 's pm shinzo abe has an opportunity to do right by `` comfort women '' mccarthy : abe has been criticized for saying there was no evidence of japanese coercion . he says japan must apologize and educate future generations about the crime . mccarthy : the women are dying and justice has been due to them for 70 years .\npeter moores and alastair cook face a five-week tour of the west indies . the three-test series begins in antigua on april 13 . england coach insists kevin pietersen is not on the radar for the tour . pietersen rejoined surrey in an attempt to win back his test place .\nhamza parvez , 22 , has been living with a group of unmarried fighters in raqqa , syria . he travelled to syria in may 2014 , telling his parent he was going to germany . he has lived in iraq and syria for over 11 months , but still has n't found a wife . his friends have taken to social media to vent their frustration at being a bachelor .\nmichael owen says raheem sterling is better than mesut ozil . the former liverpool forward made the claim before arsenal 's 4-1 win . owen 's opinion drew criticism on social media but he has refused to back down . the ex-england man believes there should not be a debate about whether sterling is more talented than ozil .\na mum is outraged after her son was turned away from a qantas flight . gizelle laurente said her son , jacob prien , was not allowed on the flight because of his autism . jacob was booked to fly to brisbane so he could spend the easter weekend with his father and younger brother . qant as said it had not been given the required paperwork to clear an unaccompanied child .\nthe child , whose name has not been released , suffered fatal injuries in the incident at grant elementary school in dumont , new jersey on march 6 and died later that day . he had been playing chess with another student during a morning recess period when he became upset that his opponent did n't say ` checkmate ' after beating him , according to a new police report . an aide overheard him saying to the other student : ` do you want me to do something drastic ? ' he had previously told his chess opponent on four separate occasions that he would jump out the window , but the classmate told police he thought the boy was just messing around .\nbill spedding charged with five counts of child sexual assault and two counts of common assault . spedding , 63 , was a person of interest in the case of missing toddler william tyrrell . the washing machine repairman was charged after police were tipped off about his alleged involvement in a paedophile ring in 1987 . the 63-year-old was living with three young boys at the time the toddler vanished . the new south wales ombudsman is investigating how spedded was able to live with children despite claims being made against him .\ntottenham striker harry kane will play for england 's under 21s . kane has been in talks with gareth southgate about playing at the european championships . england boss roy hodgson says kane will be in the squad . ross barkley and raheem sterling will both be excused from the tournament .\njoel ward has signed a new three-and-a-half year deal with crystal palace . the deal will keep him at the south london club until the summer of 2018 . ward has played every minute of palace 's premier league campaign this season . the 25-year-old has made 35 appearances for the eagles in all competitions .\nmanchester united defeated manchester city 4-1 at old trafford . ashley young scored and set up two goals in the derby win . young also laughed at city 's fans after the game . the 29-year-old says united were focused on quieting their ` noisy neighbours '\nthe black-eyed bandit was found stuck 30ft-high on a flag pole outside philadelphia 's cathedral basilica of saints peter and paul on tuesday morning . video footage shows the animal clinging for life as it teeters on its makeshift perch . it reportedly took them several hours to coax the climber down from the flagpole .\nmcdonald 's announced it will raise wages for 90,000 of its employees . but the move does n't cover all of the company 's restaurants , says rev. jesse jackson . jackson : the raise is n't nearly enough , and it does n't give workers a voice in workplace conditions . he says the company should pay workers enough to afford to eat burgers for dinner .\nesteban cambiasso signed a one-year deal with leicester last summer . the 34-year-old has been in excellent form for the foxes this season . cambiasso is wanted by delhi dynamos in india 's i-league . nigel pearson wants cambiassi to stay but premier league status is key .\nthe masters third round begins at 7:55 pm uk time on saturday . jordan spieth will tee off with charley hoffman at 2:55 pm local time . justin rose and paul casey will tee-off with dustin johnson at 745pm . rory mcilroy and tiger woods will be out at 12:45 pm and 5:45 am .\nmaths teacher paul shorter had a series of liaisons with the schoolgirl . the 31-year-old kissed the teenager after class and groped her in his car . shorter was giving one-to-one tuition at rydens school in hersham , surrey . father-of-one admitted two counts of sexual activity with a child .\nvalerie cadman-khan was arrested by cleveland police in front of her daughter in 2008 . the 56-year-old was taken into custody amid claims of child neglect . cleveland police claimed she had left her daughter alone for 45 minutes in the cold . mrs cadman khan has won a wrongful arrest case against the police . she appeared on this morning to talk about the incident with her daughter , aimee , now 19 .\nthe humanoid head is called ham and was designed by american robotics designer david hanson . it is able to answer basic questions and can also be used in the simulation of medical scenarios . ham is currently on exhibit at the global sources spring electronics show at asiaworld expo in hong kong .\naliesha peterson , 22 , from alberta , canada , first started exercising in august 2013 . she says she was depressed , and her therapist recommended she join a gym and start working out three times a week . she has since lost nearly 20lbs and gained a six-pack .\nrun down car park has been bought by the national trust for # 3million . site overlooks golden sands at rhossili in south wales - voted uk 's number one beach , third best in europe , and 9th best in the world by tripadvisor . visitors to tip of gower peninsula can see coastline stretch on for miles , surrounded by rolling welsh hills .\njose mourinho 's chelsea have started 20 games with same back seven . mario balotelli 's first start in a premier league game since november was frustrating . tottenham 's players collectively outran southampton to earn 2-2 draw . robert huth has played a major role in leicester 's recent run of results .\nsir paul mccartney married heather mills in ireland in 2002 . but the couple 's daughters stella and mary were not happy with the choice . the pair separated in 2006 and went through a bitter and messy divorce in 2008 . never-before-seen pictures of the wedding reception have emerged . the pictures belong to the family of sir paul 's late housekeeper rose martin .\nresearch found children were more likely to engage in risky behaviour when those looking after them were distracted . texting or talking on the phone was a common cause , the study found . researchers observed randomly selected parents with children who looked between 18 months and five years old at playgrounds in new york .\nnick loeb filed a complaint against sofia vergara . he wants to keep two female embryos he shares with the actress . the couple dated while they were dating . loeb says he wants to implant the embryos in a surrogate . the case has led to questions about who has the right to embryos .\nhattie gladwell blogs about her experience of living with an ostomy bag . she has called for the new tips from former smokers ad to be banned . ad features julia , 58 , of mississippi who smoked for more than 20 years . she developed colon cancer at 49 years old which requires her to use an ostotomy bag . the ad is unfair to many people who need to use one , she argues .\njonathan krueger , the photo editor at the school newspaper and a junior in the college of communication and information , was shot in the chest around 2 a.m. friday . police charged justin smith , 18 , with the murder friday afternoon , this after he fled when they tried to stop him earlier in the morning while driving a minivan that matched the one described by someone who was with the victim . another man who was . with kruegers told officers a min van pulled up and confronted them . he claims the men grabbed his watch , and that he then threw his wallet and them and ran . he said as he was running he heard gunshots .\nsunderland lost 2-1 to newcastle in the premier league on sunday . the magpies were without recognised defenders on the bench . jonas gutierrez started for the first time in 20 months after twice beating cancer . jack colback was not protected from the home fans ' ire . sunderland fans paid tribute to two fans killed in mh17 crash .\nthe first generation ipad was revealed by steve jobs in early 2010 . but at the time it was met with ridicule as experts struggled to see how it would prove popular . five years and 225 million units later , it seems many critics have been proved wrong . but amid falling sales and a new generation of alternative devices , some industry experts have predicted that the ipad 's days are numbered .\na video of liz the bearded dragon has gone viral . the reptile responds to her owner when asked ` are you hungry ? ' the bearded dragon is then rewarded with a superworm treat . liz lives with owner shannen hussein , 21 , on her hobby farm in melbourne .\ntwo-mile victorian railway tunnel could reopen as britain 's longest cycle tunnel . rhondda tunnel , which runs 1,000 feet beneath the welsh hills , was closed 50 years ago . it was shut down as part of the sweeping beeching report , which spelled the end for thousands and stations across the rail network . but engineers are due to visit the 3,148 m tunnel next week - for the first time since it closed - to see whether it is safe to use as a cycle route .\niphone sales account for more than two-thirds of apple 's $ 58 billion in revenue for the quarter . apple sold more than 61 million iphones in the quarter , accounting for more . than two thirds of its $ 13.6 billion in profit . sales of iphones in china were also revealed to have outstripped those in the us .\nzooke weekly 's ` special anzac centenary issue ' was released on monday . the issue featured a half-naked model holding a red poppy . the department of veteran affairs said the word ` anzac ' is protected by federal legislation since 1920 . zoo weekly removed all ` offending ' images of the model from facebook .\nlatest growth figures will be released tomorrow morning by the ons . experts predict economy will have grown by 0.5 per cent in first three months . it is expected to be down from 0.9 per cent for the same period in 2014 . tories step up warnings about risk to economy if labour wins election .\nthomas brock , 30 , was killed at his home in pasadena , california . police say he was involved in a road rage incident with another motorist . the two men got into a fist fight and the alleged killer left the property . but he returned with a second suspect and shot mr brock dead . brothers steven rodriguez , 24 , and jacob rodriguez , 29 , have been charged with capital murder .\na cnn crew meets a 12-man crew on the calabrese , an italian ship that rescues migrants . the calabree regularly patrols the mediterranean off lampedusa , italy . lampedus is the first point of entry to europe for tens of thousands of migrants .\ngermans no longer see the second world war as a defeat , research finds . instead , they now think of themselves as victims of the nazis . only 9 % of germans now consider the end of the conflict a defeat . findings published 70 years after hitler committed suicide in a bunker in berlin .\ndaniel wass can play at right back , left back or either wing . the 25-year-old has been watched by chelsea , liverpool and newcastle . schalke and inter milan have also shown interest in the denmark international . mark hughes has been given licence to spend this summer .\nbritain last year produced more than 1.5 million cars - the most since 2007 . we are poised to overtake france and become the second biggest car manufacturing power in europe . boris johnson : the problem with ed miliband is that he wants to take the country back to the 1970s . he says labour 's plans are truly nightmarish for business and enterprise .\ninspectors in welshpool and llandrindod wells accused of being too lax . officers there were reluctant to issue tickets for parking offences . investigation carried out by officials from powys county council . council needs to issue 40 per cent more tickets just to break even .\nwales face belgium in a crunch euro 2016 qualifier on june 12 . the match has been declared a 33,000 sell-out by the faw . the top two sides in group b meet at the cardiff city stadium . wales are in their best position to qualify for a major tournament since the 1958 world cup finals in sweden .\nwool-and-cashmere ponchos have boosted burberry sales by 10 per cent . the designer-label version carries a personal monogram and costs # 1,000 . the poncho originated as a humble garment worn by south american tribes . it later featured on the back of clint eastwood in the spaghetti westerns .\nbenjamin netanyahu said iran 's nuclear deal would pave the way for tehran to build an atomic bomb . he said the deal would ` increase iran 's aggression and terror throughout the middle east and beyond ' president barack obama has hailed the agreement as a ` historic understanding '\nevery adult in britain would be paid # 72 a week under a commitment in the green manifesto . but party leader natalie bennett admitted her pledges could take decades to implement . she said the so-called ` citizens income ' would take longer than five years to bring in .\nmanchester united host manchester city in the manchester derby on sunday . louis van gaal 's side are currently third in the premier league table . manchester city sit second in the table , one point above united . phil jones has called on his side to ` turn up and play their football '\nbon apetit have revealed the best way to revive a stale loaf of bread . run it under water before baking it in the oven . nutritionist luvisa nilsson says the trick does actually work . but make sure to eat the bread that same day .\nchelsea winger eden hazard has been nominated for pfa player of the year . hazard is one of three players nominated , along with diego costa and harry kane . manchester united goalkeeper david de gea is also in the running . john terry revealed his nomination for philippe coutinho . jamie carragher says terry will have told his squad not to vote for de gea or kane .\ntoby alderweireld joined southampton on loan from atletico madrid . the belgian defender has been in superb form for ronald koeman 's side . manchester city and tottenham are interested in signing him . but alderweireld is focused on securing european qualification .\nfast car sequel has already earned $ 294 million in the u.s. alone . the film is predicted to overtake the likes of frozen and iron man 3 in a matter of weeks . furious 7 is now one of the ten highest grossing movies of all-time worldwide , ranking seventh with $ 1.152 billion .\na trailer for zack snyder 's upcoming `` batman v. superman : dawn of justice '' leaked online . the highly anticipated footage was set to premiere in imax theaters on monday . `` batman '' will be released on march 25 , 2016 . the film also stars amy adams .\nthief posed as a member of congregation at st james ' church in manchester . he sat down next to 86-year-old woman and stole her handbag on good friday . he then tried to steal the contents of two other women 's bags before fleeing . police have released an e-fit image of the suspected offender and cctv footage .\nbill dudley , 90 , has worked at mcdonald 's in mold , flintshire , for nine years . great grandfather and second world war veteran has no plans to quit the fast-food joint . he joined the team after growing ` bored ' pottering around the house .\ngary ross dahl 's wife , marguerite dahl , confirmed on tuesday that her husband of 40 years died march 23 of chronic obstructive pulmonary disease . his rocks formed a brief but remarkably successful craze for several months in 1975 , came packed in a cardboard box containing a tongue-in-cheek instruction pamphlet for ` care and feeding ' and made him a millionaire .\ndoctors are putting women and babies at risk , un officials warn . they say procedure should only be carried out when ` medically necessary ' just over a quarter of women giving birth in england now have a caesarean . rate has more than doubled since the early 1990s .\nmike brown has been ruled out for the rest of the season with concussion . the harlequins flyer says he is unsure when he will return to action . brown was knocked out cold in england 's 47-17 victory over italy . the full back says he will take a ` cautious ' approach to his recovery .\njustin rose admits he lost to the better man as jordan spieth wins masters . the 21-year-old finished 18 under to beat rose and phil mickelson by four shots . spieth becomes the second youngest masters winner - after tiger woods in 1997 . rory mciiroy finished fourth after a closing 66 .\ndavid wihby , 61 , was arrested on friday in nashua on a misdemeanor charge for solicitation of prostitution and resigned on saturday . wih by has been the new hampshire republican 's state director for the last year and her number-two staffer behind the chief of staff . ayotte said she was ` shocked and deeply saddened ' by wihby 's arrest . he was one of ten men to be arrested in the last week by nashua police on charges of prostitution .\ngareth bale injured his calf in real madrid 's 3-1 win over malaga . the welshman was forced off after less than five minutes on saturday . he will have tests on his calf muscle in the next 24 hours . bale faces a race to be fit for real 's champions league quarter-final against atletico madrid on wednesday .\nactress mindy kaling 's brother says he posed as a black man to get into medical school . vijay chokal-ingam says the experience opened his eyes to what he calls the hypocrisy of affirmative action . he says he applied to 22 medical schools and interviewed at 11 .\nrutgers has banned fraternity and sorority house parties at its main campus in new brunswick , new jersey , for the rest of the spring semester . the probation was decided last week but announced by the university monday . last month , a fraternity was shut down because of an underage drinking incident in november . and in september , a 19-year-old student , caitlyn kovacs , died of alcohol poisoning after attending a fraternity party .\narmed raiders used a sledgehammer and an axe to try and break in to a jewellery shop in wigan , greater manchester . a worker barricaded the door and pushed one of them back through a broken window , and they fled the scene on a motorbike . police are now appealing for the public to help them identify the two robbers .\nthe codpieces used in the hit bbc drama were too small , says expert . victoria miller said they should have been double the size . she said the codpieces were meant to draw the eye to the general region . damian lewis , who played henry viii , admitted the codpiece were a source of ` giggling ' during filming .\nmercedes were beaten into second and third in malaysia by ferrari . sebastian vettel won the race after winning the australian grand prix . lewis hamilton and nico rosberg are second andthird in the standings . mercedes boss toto wolff says there is no reason to panic . he says the team will just keep calm and carry on .\nryuichi kiyonari bettered the donington park lap record to take put his buildbase bmw on to pole start . the japanese rider powered in a scorching time of one minute 29.455 seconds . defending champion shane byrne , despite hand and ankle injuries he suffered last month during testing spain , completed the front row of the grid aboard the pbm kawasaki .\nin 2013 , a cyberattack brought chaos to several banks and media outlets in south korea . in december , computers at the country 's nuclear operator were breached . the source of these attacks is suspected to be north korea . south korean investigators say they have proof -- the actual malicious codes used in the attacks .\nplus-size model laura wells spoke to australian women 's weekly about her new york modelling experience . she says her ` skinnier ' room mates were told to eat ` one cracker and a couple of glasses of water ' before fashion week . wells says they were put through ` unhealthy ' stress by their agents . she also revealed she was insulted when she was first asked to be a plus-size models . wells ' comments come days after france passed a law banning excessively thin models from the catwalk .\nspurs boss mauricio pochettino has praised michel vorm 's attitude . the dutchman is set to deputise for hugo lloris at burnley on sunday . vorm was on the bench for spurs ' league cup final defeat to chelsea . llor is currently sidelined with a knee injury .\nsomali-based terror group al-shabaab has carried out a series of deadly attacks in the sahel region . al - shabaab is targeting schools , teachers and students in kenya and nigeria . the head of a kenyan school says al-shabaab wants to prevent children getting a `` western '' education .\nrobin ellis was diagnosed with type 2 diabetes by chance in 1999 , aged 58 . the actor , now 73 , was struck by michel montignac 's book dine out and lose weight . he has since eliminated sugar and refined carbohydrates from his diet . he was diagnosed after a friend was diagnosed . with prostate cancer .\ngonville and caius college beat magdalen college , oxford in final . ted loveday answered 10 starter questions in last round of bbc quiz show . law student admitted he had help from unlikely sources for final . team revised questions by watching youtube videos and researching wikipedia .\nformer indonesian army general prabowo subianto privately assured joko widodo there would be no political consequences if the bali nine were reprieved . mr prasetyo penned a letter to mr joko at the weekend in which he said that if the president were to ` postpone the executions indefinitely ' , he would come out in support of the decision . independent senator nick xenophon said he was told earlier in the year by human rights advocates that mr prabowo was ` very sympathetic ' to clemency . this comes after a senior indonesian government official praised the firing squad that executed bali 9 pair and six other convicted drug traffickers .\nshocking video filmed in china shows woman slapping elderly man . she was taking pictures of her children when he accidentally knocked her phone out of her hand . the man promised to pay her back but said he did not have the money . after a long argument , she forced him to kneel in the street . the clip has since gone viral on chinese social media .\neddie hearn presented cheque to carl frampton 's camp on monday . the northern irishman has been offered # 1.5 m to fight scott quigg . the fight is set to take place in manchester on july 18 . quigg is the defending wba super-bantamweight champion .\npeter hiett , 49 , worked at feltham young offenders institution for eight years . he claims staff would put inmates in cells padded with mattresses to fight . claims some workers would stay and watch battle unfold , while others ` turned a blind eye ' he also said gangs controlled entire wings at the jail in hounslow , london . claims echo scenes from 1999 film fight club starring brad pitt .\nmaarij khan , 11 , and his mother mushammat are set to be removed from their home in newcastle . the schoolboy 's brother saffat died of meningitis last month after a long battle with cancer . the family first came from bangladesh to the uk in october 2007 . they tried to challenge the decision , but a tribunal turned down their appeal last year . now 3,500 people have signed a petition to allow the family to stay in britain .\ngareth silk let his five friends plan a stag do in benidorm , spain . they were inspired by the money supermarket advert featuring ` dave 's epic strut ' the men wore high heels and denim hot pants from the waist down . the stunt garnered them a lot of attention from locals and even the police .\nmanchester city are looking to sign a young star to replace wilfried bony . manuel pellegrini says the club 's academy players are not ready . the fa are set to increase the number of homegrown players in premier league squads to 12 . raheem sterling would fit the bill if his impasse with liverpool is n't resolved .\nthe duchess of cambridge preparing to give birth to second child . she already has a nanny and mother carole is moving into anmer hall . expert emily-jane clark has compiled a list of tips for a mother . she says it is almost impossible to get anything done with two children .\nlaura scurr , 15 , from whitley bay , was 13 when she developed anorexia . she was so obsessed with her weight she would hide food down the side of her bed . she would also lie to her mother about eating and sometimes survive on just one piece of fruit a day . her dramatic weight loss led to horrific consequences when she collapsed . she has now spoken about the pressures on young girls to be a size zero .\nl'ardéchoise site is in the stunning ardèche region in south central france . the region is famous for having the world 's oldest cave paintings at chauvet-pont-d'arc . the eurocamp safari tents are well equipped with adequate cooking facilities .\ntiger woods was all smiles as he played a practice round ahead of the masters . woods is set to make his 20th appearance at augusta in the tournament . the former world no 1 is ranked 111th in the world and has never won the masters before . woods has said he would not enter a tournament unless he thought he had a chance of winning it .\ncelebrated cleric in iran says thinking about another woman while having sex with your wife will make your child gay . ayatollah hossein dehnavi also warns that women should not wear the hijab properly . homosexuality is punishable by death in iran , with gay and lesbian people forced to hide their sexuality .\nchelsea held to a goalless draw by arsenal at the emirates stadium . david ospina was lucky not to concede a penalty after clattering into oscar . olivier giroud had little joy up front for the gunners . john terry and gary cahill did well to prevent giroud from becoming a threat .\nellen gallant was on everest when the 7.8 magnitude earthquake struck on saturday . she and another doctor rushed to help the injured but said there was nothing they could do to save a 25-year-old sherpa who died from his injuries . four us citizens who were on mount everest are confirmed to have died along with 15 other climbers and sherpas . up to 100 americans are still missing following the disaster and at least 3,300 people were killed .\nisis militants attacked iraqi army humvees with a bulldozer packed with explosives . a suicide bomber first attacked the convoy before militants opened fire . the commander of the iraqi first division was killed in the attack . the country 's army is embroiled in a battle to reconquer western anbar province . fighting has been focused on the provincial capital of ramadi .\nmark robinson warns matt prior is ` pretty much out indefinitely ' prior has not played since july because of an achilles injury . the 33-year-old lost his england place to jos buttler last summer . prior admitted he may never play test cricket for england again .\nfamily of four was walking in portland , maine on friday when a white man yelled a racial slur at them before speeding off . the family consisted of a black mother and white father who were with their nine-year-old daughter and 23-year old son . news anchor jackie ward shared her account of the incident on facebook . she said she shared the story as a ` reminder for us to be kinder to each other ' the mother , shay stewart-bouley , who runs a blog called black girl in maine and writes about race , has told her story in her blog .\njudge judy has been married to jerry sheindlin for 38 years . the couple divorced in 1990 only to marry again the following year . judy recently renewed her tv contract with cbs for another three years . she reportedly earns $ 47 million a year - the highest paid personality on television . the 72-year-old admitted she just loves working .\ndrew miller says he 's ` very lucky ' that a skate that struck him in the face did n't hit his eye . the red wings forward was hit by ottawa 's mark stone 's skate during a game on tuesday . miller required 50 to 60 stitches to close the wound along multiple layers of skin . the team said he will likely return to the ice thursday against boston .\noffice workers caught couple having sex in a park in full view of their tower block . couple appeared not to mind being in full sight as they enjoyed steamy encounter . incident happened at three bridges playing fields in crawley , west sussex . comes as temperatures reached 25c in some parts of the uk yesterday .\nworld has seen a wave of savage beheadings by isis militants since james foley 's murder . experts say the spate of killings may be encouraging copy-cat acts or threats of decapitation . arie w. kruglanski says the frequent , high profile reports of isis beheadments could result in psychologically `` priming '' people to emulate them .\nchange4life is being run by public health england to help address obesity crisis . it is promoting dishes on its website with up to 29g of sugar per serving . apricot bread pudding has slightly more sugar than a snickers bar . cardiologist dr aseem malhotra said he found the advice ` disturbing '\ncharity announced on wednesday that it has decided to continue to look abroad for millions of dollars while limiting donor nations to a select group of six . the change in policy comes as former board member hillary clinton undertakes her presidential campaign . the foundation 's reliance on funding from several middle east governments that suppress dissent and women 's rights has sparked criticism . clinton resigned from the foundation 's board last week . the clinton foundation will stop holding cgi meetings abroad and most foreign governments will no longer be allowed to sponsor programs .\na lamborghini sports car crashes into a guardrail at walt disney world speedway . a passenger in the car dies at the scene , the florida highway patrol says . the driver is hospitalized with minor injuries . the exotic driving experience bills itself as a chance to drive your dream car on a racetrack .\naussie filmmaker kieran murray has released the second installment of his hilarious series . the film asks americans to attempt the australian accent by saying ` g'day mate , how you going ? one man in austin , texas was convinced murray said ` get out -lrb- of -rrb- my nightgown '\nliverpool face newcastle united at anfield on monday night . mamadou sakho is set to miss the game with a hamstring injury . the french defender was replaced by kolo toure in the 28th minute . sakho will also miss the fa cup semi-final against aston villa .\nholland beat spain 2-0 in amsterdam arena on tuesday night . stefan de vrij and davy klaasen scored the goals for the dutch . vicente del bosque says his side were made to pay for a poor first 20 minutes . spain boss was impressed with malaga forward juanmi and sevilla winger vitolo .\nsteven naismith has won the barclays spirit of the game award . everton forward has been awarded for his contributions to the local community . naismiths teamed up with job centre plus to offer unemployed fans the opportunity to watch the club . barclays will also be giving away more than 8,000 tickets to local communities in partnership with premier league clubs .\njurors have been deliberating for more than seven hours in the boston marathon bombing trial . they have n't reached a verdict yet ; they will return wednesday morning . dzhokhar tsarnaev , 21 , faces life in prison or the death penalty if found guilty of 30 counts .\nmumia abu-jamal was taken to hospital last week after collapsing in prison . he was delivered two batches of letters from children in new jersey and philadelphia . the letters were written by third graders in orange , new jersey , and high school students in the philadelphia student union . the 60-year-old was hospitalized for a mystery illness . his supporters say he is ill and frail and that his health is a fraud .\nbritain 's prince harry arrives in australia . he 'll spend four weeks with the country 's military . the prince will work and live alongside colleagues in the australian army in sydney , darwin and perth . he will also meet wounded , injured and ill service members in australia , officials say .\ngary ballance scored 122 as england beat west indies in antigua . the batsman 's century was his fourth in nine tests . ballance 's innings was the mainstay of england 's 333 for seven declared . west indies need an unlikely 438 to win the first test .\ndulwich picture gallery introduced fake painting to its collection in february . jean-honoré fragonard 's 18th-century young woman was replaced by a replica . it was produced in china and ordered over the internet for # 70 . visitors were challenged to spot the replica among 270 old master paintings . only 10 per cent of them guessed right , the gallery has revealed .\ndavid frum : hillary clinton is the best-known presidential candidate across both parties . frum says the question unanswered is `` what does hillary stand for ? '' he says there are good grounds for a liberal primary challenge to clinton . frump : democrats ' challenges are just substantial , masked by charismatic man in white house .\nweather forces spacex to postpone tuesday 's launch of its falcon 9 rocket . spacex hopes to land its booster rocket upright on a platform floating in the ocean . the company wants to cut costs by using rockets like airplanes . the rocket will carry an uncrewed cargo spacecraft to the international space station .\nchris christie appeared on the tonight show on wednesday evening and called out jimmy fallon for his weight jokes about him . the new jersey governor asked fallon ; ` if i look great , what the hell 's with all the jokes every night ? ' fallon then gave christie his favorite food - ice cream . christie however took the treat for himself , slowly moving away . he has not yet announced if he plans to run for president in the upcoming election .\njohn isner beat kei nishikori of japan in straight sets 6-4 , 6-3 . isner is the first american to reach the miami open semifinals since 2011 . he will play either novak djokovic or david ferrer in the semi-finals . andy murray takes on tomas berdych in the other semi final .\ndjango greenblatt-seay , 33 , made the ad for his 2002 ford taurus . he shot the video with a drone at hummel park in omaha , nebraska . the ad is soundtracked with an old-fashioned 1987 ford taurus commercial . greenblat-seays is selling the car so he can buy a van .\ncrystal palace beat sunderland 4-2 at the stadium of light . yannick bolasie scored a hat-trick in the second-half . glenn murray and wilfried zaha also scored for palace . sunderland have now lost four games immediately after derby wins .\nengland fly half george ford scored the only try of the game in the first-half . ian madigan kicked six penalties for leinster , including a penalty with seconds to go . bath lock stuart hooper scored a second-half try after another brilliant break from ford . anthony watson was sent off for bath for a reckless aerial challenge on rob kearney .\nolivier rousteing says couple embody idea of modern family . says they are ` among the most talked-about people ' and embody idea . reveals he was inspired to feature couple in balmain 's army of lovers campaign . kim and kanye have a 22-month-old daughter north west .\nlewis hamilton won the chinese grand prix in shanghai on sunday . the brit sprayed a hostess in the face with champagne after winning the race . leading group condemns driver 's ` selfish and inconsiderate behaviour ' on twitter . campaigner says he should apologise for ` specially directing ' the bubbly into the woman 's face .\nhugo mbaeri allegedly handed over customer names , account details and signatures to a gang of fraudsters . he is on trial for fraud by abuse of position and conspiracy to commit fraud at the old bailey . seven others are accused of using their accounts to siphon the funds away .\noliver minatel , 22 , says he was sleeping on air canada flight 8623 from toronto . he says a stranger sitting behind him tried to choke him with a rope . the man was escorted off the plane and taken to the hospital . the incident occurred about a half-hour before the flight landed .\ncanadian duo mitchell moffit and greg brown present online science show asapscience . they say the order in which you were born can affect your personality . they claim that first-born children are expected to be higher academic achievers . middle-borns tend to be more co-operative and sociable . last-borns tend to have a more relaxed attitude in life .\ngary deegan 's challenge on gary irvine in 2013 sparked debate . referee craig charleston saw incident but not the gory details . sfa changed rules to allow retrospective action on players . pfa scotland chief executive fraser wishart disagreed . he has called for member clubs to put the genie back in the bottle . inverness defender josh meekings was banned for one game .\na police helicopter scoured the area around manchester airport after the potential drone sighting . flights were halted for about 20 minutes as police searched for the drone . some departing flights were delayed and some incoming flights were diverted . police found no evidence that a drone was operating in air space .\nclarkson 's estranged wife frances , 53 , spent easter weekend in barbados . she sunbathed and drove a jet ski as she enjoyed the sun . she has previously holidayed in the area with the 54-year-old broadcaster . but the pair are said to have lived apart for years and are going through a divorce . bbc announced last month they were dropping clarkson from top gear .\nbentley design chief luc donckerwolke thought ford 's new lincoln continental shared too many similarities with its flying spur . donckerwolke posted a comment on lincoln designer david woodhouses ' facebook page that was subsequently deleted . he wrote : ` do you want us to send the product tooling ? ' a lincoln spokesman dismissed the bentley designer 's criticism and said the model ` is clearly a lincoln '\njack nicklaus was playing in the par-3 contest at augusta national . the 75-year-old hit a hole in one on the 130-yard fourth . gary player and ben crenshaw were also in attendance . camilo villegas followed nicklaus with an ace on the fourth .\nellie grant , 22 , appeared on itv 's this morning to discuss condition . she was talking about how she found love with fiance jordan , who is deaf . but in the middle of pre-recorded interview , she suffered verbal tic . blurted out ` silver fox ' at phillip , 53 , - his nickname . viewers reacted with amusement at the moment - hailed ` greatest tourette 's moment ' miss grant developed tourette 's syndrome aged 21 and was diagnosed with the condition after she started shouting swear words in a supermarket .\nthe stage collapsed during a performance of american pie at westfield high school in indiana on thursday night . one student suffered critical head trauma and was taken to hospital . more than 12 people were injured , including at least one who was critically injured . the tragedy occurred just as the cast of the musical danced on-stage for the finale . the drop from the top of the wooden riser to the floor was likely around 10 feet .\nlaura jordan was told her now husband , jack jordan , 23 , had just weeks to live on saturday april 11 . couple , from brixham , devon , got engaged at jack 's hospital bedside just two months ago . ed sheeran sent them a personal video message saying they should have an amazing wedding . couples got married in torbay hospital chapel just six days after the heartbreaking news .\nbuilder ian merrett accused of sexual harassment after whistling at woman . he said poppy smart , 23 , was ` lucky ' to have received the attention . he says he has ` snogged loads of girls ' off the back of the wolf-whistling . mr merrett , 28 , was jailed for 12 months in 2009 for affray . miss smart , a marketing co-ordinator , filmed the whistles and handed evidence to police .\nidc says samsung sold 82.4 m smartphones in the first three months of 2015 . it said samsung had a 24.5 percent market share , while apple held 18.2 percent . but samsung said first quarter net profit plunged 39 percent as consumers switched to bigger iphones .\nformer banker rurik jutting charged with two counts of murder . court hearing adjourned until may . police found bodies of two women in upmarket hong kong apartment . one was found on the floor , the other was stuffed in a suitcase . the victims were domestic workers from indonesia .\nthree-day celebrations will mark 70th anniversary of victory in europe -lrb- ve -rrb- day . queen and senior members of royal family will attend westminster abbey service . chain of beacons will be lit across the country , spitfire and lancaster bomber planes will take to the skies . stars will also perform at a 1940s-themed concert held on horse guards parade in london .\nkhloe kardashian , 30 , has been showcasing blonder locks , flawless face and honed physique . recently revealed she 's lost 13 pounds in three months thanks to grueling exercise regime . revealed her secret to toned figure at ulta beauty hair care launch .\nus scientists have found a way to use discarded corn husks and stalks to make cheap hydrogen fuel that does n't pollute the environment . breakthrough could one day see the fuel being produced locally and drivers stopping to refuel their vehicles at roadside bioreactors . it could accelerate the take up of biogas for cars . eco-friendly hydrogen cars emit only water , but the gas is expensive and is not easy to store .\n56,000 dogs were treated for poisoning by vets between 2010 and 2014 . of those , 470 dogs died , according to figures compiled by the kennel club . painkillers were the most common cause of poisoning , followed by rat and mouse bait and chocolate . chewing gum was another major cause of poisonings .\nmelbourne-based actor , lucy gransbury , wrote a two-page rant about her noisy neighbours . she dropped a thank you letter and some gifts over the fence to the seven or eight men who lived there because she was ` too scared ' to knock on their door . after weeks of not hearing back from any of the boisterous lads , jershon witehira posted an equally cheeky reply on his facebook page opening with ` my dearest lucy ' witehira said although others may find her crazy he thinks gransburry is brave and creative .\nronald koeman has promised not to leave southampton this summer . the dutchman has guided saints to a seventh-place finish in the premier league . koeman says he would not leave southampton for barcelona or neymar . the former holland boss also said he would never leave real madrid .\ncouple from cambridge stayed at a ` four-star ' hotel in cyprus for a friend 's wedding . patrick miller and damien rigden , both personal trainers , made a video diary of the hotel . the three-and-a-half minute video offers a glimpse into every traveller 's nightmare . it shows dirty rooms , antiquated amenities and a swimming pool no one would dare to enter . the video has been viewed thousands of times on facebook and youtube .\na letter penned by jordan spieth six years ago has surfaced . the 21-year-old wrote the letter to the murphy family who funded the scholarship that helped pay for his tuition . spieth was already an extremely talented golfer in 2009 and he casually informs the family that he 's the no. 1 junior golfer .\nblackpool fans have been protesting against the oyston family . frank knight , 67 , posted an apology on a supporters ' messageboard last week . he said he had agreed to pay damages of # 20,000 to the sky bet championship club . a campaign was set up to raise money for knight . over 1,000 supporters did just that , ensuring the target was met in only three days .\ntheo walcott will open talks with arsenal in the next two weeks . the 26-year-old has just over 12 months left on his current # 90,000-a-week deal . liverpool and manchester city are keen on the england winger . walcott has been a peripheral figure this season .\nfloyd mayweather and manny pacquiao will fight on may 2 in las vegas . referee kenny bayless has been appointed to officiate the mega-fight . bayless is widely considered the leading referee in the world . the 65-year-old will celebrate his 65th birthday two days after the fight .\njade and ross morley were shocked when they found out they were having twins . harrison stone morley and cleo téa morley are healthy and feeding well . the morley 's first baby , floyd-henry , has a rare form of dwarfism called achondroplasia . the couple released a video to explain floyd 's condition to their friends and family . the video quickly went viral , and was shared and liked by dwarfism awareness websites as inspirational . the family now has three children under 20 months .\nserena williams beat carla suarez navarro 6-2 6-0 in the miami open final . the world no 1 won the final 10 games in a one-sided final . williams dedicated the title to her father after the win . the american won her eighth miami open title in 14 years .\nvincent stanford , 24 , is accused of murdering stephanie scott , a teacher at leeton high school in nsw . he moved to the small town of leeton with his mother and elder brother 13 months ago . he was born in tasmania and lived in holland with his family before returning to australia as an adult . he has worked as a school cleaner at the school since october . his identical twin brother moved from holland back to australia in june 2013 .\na new book , `` clinton cash , '' will raise questions about the clintons ' charity work . julian zelizer : the clinton foundation has taken donations from foreign governments . he says the clinton family 's charities have been a financial quagmire . zelizer says the book will likely be a distraction for hillary clinton .\nbritain is paying professional aid workers up to # 1,000 a day to work in africa and asia . spending on consultants has doubled to # 1.4 billion over the past four years . hundreds of ` team leaders ' working on aid projects earn at least # 120,000 .\npaul smith and andre ward are set to fight in oakland , california on june 20 . the liverpool super-middleweight has lost his last two world title challenges in germany . ward defeated carl froch in 2011 and could be set for a rematch if he beats smith .\nvideo shows a massive twister barreling across an open field in iowa . a tornado destroys a local favorite restaurant in rochelle , illinois . one person is killed in fairdale , illinois , in the second tornado in two days . the national weather service warns of a `` particularly dangerous situation ''\nards borough council put on the taxpayer-funded dinner to ` maintain morale ' staff feasted on roast turkey and potatoes cooked in duck fat at the party . the local authority will merge with its neighbouring authority next week . council chiefs paid # 5,225 for caterers for the dinner in december last year .\nfugitive scott kelley is taken into custody at the atlanta airport , a u.s. marshal says . he 's accused of kidnapping his wife 's daughter and then fleeing with her . his wife , genevieve kelley , is charged with the same crimes . the case was featured on cnn 's `` the hunt ''\nrebels have seized president abedrabbo mansour hadi 's palace . comes on same day al-qaeda militants freed hundreds of inmates in jailbreak . two guards and five inmates were killed in clashes , official said . elsewhere , advance by iran-backed rebels into aden .\nprince william is due to accompany queen and duke of edinburgh on an official engagement next saturday . it is the same day his wife is reportedly expected to give birth . despite the clash , the duke of cambridge plans to do ` everything he can ' to be at the official commemorations to mark the centenary of the gallipoli and anzac campaigns .\nstarbucks says a computer outage that affected registers at 8,000 stores in the us and canada has now been resolved . the global coffeehouse chain said in an update on its site that stores are expected to open for ` business as usual ' saturday . the company said earlier the outage affected 7,000 . stores in us and 1,000 in canada . it did not explain exactly what caused the outage , which began in the early evening on the east coast and in the late afternoon on the west coast .\nnovak djokovic lost the second set of the miami open to andy murray . the serbian player shouted at his backroom team during the match . djokova grabbed a towel from a ball boy who was caught up in the cross fire . the tennis champion has apologised to the youngster and his parents .\nthe 26,000-square-foot castle was built of ranch homes glued together by a former pimp turned construction king . jerry a. hostetler was once a 24-year-old pimp known to indianapolis police as mr. big . after he died in 2006 the home became a spectacle when no longer attached to its creator . the house is sometimes known as the ` pimp house ' or ` dolphin mansion ' the house 's asking price has dropped from $ 2.2 million in february 2012 to $ 862,000 . the listing agent says she 's shown the home to two serious buyers .\nhollywood legend , 71 , said if the former secretary of state is voted into the white house there will be ` no surprises ' he said she has ` paid her dues ' and ` earned the right ' to be elected . de niro has been a long-time supporter of the democratic party .\nkenneth lombardi was a red carpet regular for cbs new york . he was forced to quit his job in november and relocate to los angeles . he claims he was sexually harassed by two male colleagues . one allegedly drunkenly groped and kissed him at a christmas party and the other aggressively came onto him during an after-hours meeting . he is suing cbs , duane tollison and albert colley for violation of labor laws , infliction of emotional distress and discrimination .\nalexander kristoff won the tour of flanders with niki terpstra in second . team sky 's geraint thomas finished in 14th position . sir bradley wiggins was one of a number of riders to crash . the briton was knocked off his bike in the middle of the peloton .\njosh darnbrough woke up to find his friend had tattooed his back . rob gaskell , 24 , had inked the words ` if found face down call an ambulance ' on his back , using a diy kit . rob said he carried out the practical joke on josh , who had passed out at a friend 's party , in revenge for a tattoo josh did on rob 's leg two years ago .\ndave doggett , chairman of cambridge united , warns of new breed of hooliganism . he believes groups of up to 10 men - aged in their 50s and 60s - are trying to relive 1980s . he said violence at matches has increased recently as older men return to watching team . mr doggett fears there is a danger they will try to encourage younger fans to join their ` gangs '\ndr. nima namgyal says he has seen 14 bodies so far . jon reiter says 17 people have been killed on everest . the indian army 's everest expedition evacuated 13 mountaineers from a base camp . two companies report the deaths of americans on the mountain .\nthe brawl occurred during the seventh inning of thursday 's game between the kansas city royals and chicago white sox . four royals players were ejected and three from the white sox were punished for their roles in the fight . royals pitcher yordano ventura was handed a seven-game suspension . fellow starter edinson volquez was given five games and outfielder lorenzo cain and reliever kelvin herrera were suspended for two games . white sox pitchers chris sale and jeff samardzija were suspended five games each .\nmichael slager 's wife is eight months ' pregnant and the city will pay for her medical . slager , 33 , has been fired from the north charleston police department . slagers initially told investigators that he used a taser in a confrontation with walter scott . scott , 50 , was pulled over for a busted taillight .\nmorrisons supermarket is bringing in halal-only pick and mix counters . the move means muslim customers do n't have to check the ingredients of their sweets . a selection of 36 sweets are on sale , all guaranteed to be free of animal products or alcohol-based ingredients .\nromelu lukaku is set to return from a four-week absence with a hamstring injury this weekend . everton manager roberto martinez admits he would not be able to ease striker lukaku through the remainder of the season even if he wanted to . martinez believes he would have a difficult time trying to convince him to take it easy .\nlabourer noeleen foster captured the phallic cloud on friday morning . the mother of-four was on a work break when she spotted the formation . she said she was shocked to see the phallus-shaped cloud above zuccoli , 25km southeast of darwin .\njapanese bullet train has broken the speed record for rail vehicles . it beat the previous record of 361mph -lrb- 580km/h -rrb- set in 2003 . another attempt is scheduled for tomorrow and could reach 373mph -lrb- 600km/h -rrb- maglev trains use magnets to lift the carriages above the track . this eliminates the need for wheels and therefore any incidence of friction . the technology promises a ride that 's smoother , quieter and almost twice as fast as traditional high-speed rail .\npope francis is expected to visit cuba in september , the vatican says . he will stop in cuba before his planned stops in washington , new york and philadelphia . francis helped negotiate a thaw in u.s.-cuba relations . he is expected in south america in july .\nmui thomas suffers from a rare genetic condition that leaves her skin red raw and open to infection . she was abandoned at birth but adopted by a couple who lived in hong kong . mui 's struggle to come to terms with her condition and other people 's reactions to it has , at times , left her on the brink of suicide .\n`` american pie '' lyrics sell for $ 1.2 million at auction . the song 's manuscript was 16 pages long . it 's the third highest auction price for an american literary manuscript . the record is held by bob dylan 's `` like a rolling stone '' mclean said it was time to part with the manuscript .\nmore than 60,000 drivers voted in poll of 200 cars in britain . nissan note mk1 was named most uncomfortable car with 80 per cent of the vote . hyundai i20 and fiat panda also made the top ten most uncomfortable cars . lexus has five models in the top 10 - including five in the rx mark 2 .\nalondra luna nunez , 14 , was taken from her family in guanajuato , mexico , by federal police officers working for interpol last week . she was taken to houston , texas , where she was reunited with her real family after a dna test proved she was not dorotea garcia 's daughter . garcia had traveled to mexico in search of her daughter who was illegally taken from texas by her father in 2007 at age four . alondra was taken by police to a hearing in michoacan , but a judge ignored her family 's pleas and put her on a bus to houston .\nmark hamill , who played luke skywalker in the original star wars films , said he was nervous about the choice of director j.j. abrams . the 63-year-old actor said he had to say yes to the role because he was ` drafted ' hamill said he recorded a voiceover for the new teaser trailer . the force awakens opens in theaters on december 18 .\nliana barrientos , 39 , of the bronx , pleaded not guilty on friday to two felony charges of filing a false instrument , involving marriage licences . she is accused of marrying 10 men over the course of 11 years in an apparent immigrant scam . one of the men she wed was deported back to pakistan for making threatening statements against the united states in 2006 . she has been arrested multiple times , including for loitering , drug possession , and a turnstile .\na man was hospitalised after swallowing a beer bottle at a family get together . paramedics were called to a home in wagaman , northern darwin , at about 9pm on wednesday . the 38-year-old man had reportedly chewed and swallowed the entire glass bottle before lying down . his family called royal darwin hospital .\nferguson , missouri , has a new governing board . two african-american candidates won their wards . the city council was predominantly white , as is the police force . it was the first city election since white police officer darren wilson shot and killed unarmed black teenager michael brown .\nduke and duchess of cambridge due to give birth at st mary 's hospital in paddington , central london . but duchess is now four days overdue and could be induced this week . prince george was reportedly born three days late at hospital in july 2013 . royal baby is expected to be born before the end of april , according to coral .\nbarcelona face psg in the champions league on tuesday night . luis suarez admits he was nervous at the prospect of playing with lionel messi and neymar . the uruguayan has scored 19 goals in all competitions since joining the club . suarez says he has been helped by his team-mates at barcelona .\nfloyd mayweather vs manny pacquiao could be one of the greatest fights ever . the fight will be one the biggest in history financially and socially . the thrilla in manila was one of boxing 's greatest fights . muhammad ali and joe frazier fought to a controversial draw .\ncod stock levels have risen after being heavily overfished for decades . experts say cod could be certified as sustainable within five years . but 400 fisheries failed to provide accurate data on number of fish caught . the marine conservation society still lists cod caught in the north sea as ` fish to avoid '\nroy keane delivered ` bizarre ' team talk to sunderland players . former manchester united midfielder was trying to motivate his players . danny higginbotham scored in sunderland 's 1-1 draw with aston villa . keane is now part of martin o'neill 's backroom staff at aston villa .\nproton partners international ltd to open three centres in the uk . the first will be in cardiff , london and northumberland by 2017 . announcement comes just weeks after ashya king was given the ` all-clear ' after receiving proton beam therapy in prague .\nfigures show number of child sex abuse reports has soared since 2011 . south yorkshire police saw the largest rise with nearly 9,000 reports filed . but number of arrests has fallen by nine per cent , figures reveal . critics accuse government of failing victims of abuse . yvette cooper said the figures were a ` national scandal ' .\nairbus a319 was tracked by flightradar24.com as it took off from malta 's international airport . the passenger jet flew in the shape of two giant hearts shortly after takeoff . air malta said the flight was to celebrate the wedding of two of its crew .\nu.n. official to visit palestinian refugee camp in syria on saturday . pierre krähenbühl will assess the humanitarian situation in the camp . the yarmouk refugee camp has been engulfed in fighting since december 2012 . the camp is home to 18,000 palestinians and syrian civilians , including 3,500 children .\nkingston road in stockton is the backdrop for the latest series of benefits street . the channel 4 documentary divided opinion with its debut in birmingham . local residents claim housing bosses have given the street a makeover . they say it will look ` completely different ' to anyone who visits after watching the show . housing association say the works were planned well in advance .\ntony abbott was filmed drinking a glass of beer in seven seconds . the australian prime minister was in a sydney pub with football players . some commentators focused on abbott 's drinking technique . others suggested he was setting a bad example . the pm had previously criticized binge drinking in australia .\nsuspect arrested after duffel bag containing human remains found in cambridge . it was found on loughery way , just a block from a police station , on saturday morning . comes as more remains have been found in common area of apartment complex . officials say all of the remains are believed to belong to one person , who has not been identified . suspect will be arraigned on monday at cambridge district court .\nfootball coach ian drinnan claimed he could barely walk and needed crutches . but he was filmed putting up goalposts at his local club blackpool rangers . drinnans claimed # 3,500 in disability benefits and told dwp he had no hobbies . he was sentenced to 80 hours unpaid work and ordered to pay # 85 costs .\ntewksbury police department came under attack by hackers in december . they infected their computers with internet malware called cryptolocker . it encrypted their files using a program called crypto locker and demanded a ransom . the department was forced to pay a $ 500 bitcoin ransom to recover the files .\nworkers are pictured building a walkway for tourists in pingjiang county , hunan province , china , perched thousands of feet up a mountain . with no ropes or safety harnesses , and only hard hats to protect them if they fall , the men spend their days hauling heavy planks and wheelbarrows full of cement over a rickety wooden walkway . chinese officials hope that the road will draw thousands more tourists to the area .\nhigh court orders parents of nine children involved in plots to travel to syria should have their identities hidden . they include three terror suspects who have all previously been named but now can not be identified to protect their youngsters from the glare of publicity . also among the parents are a couple who lied to the authorities about losing their daughter 's passport .\nheather mack , 19 , was found guilty of killing her mother sheila von wiese-mack . she helped her boyfriend tommy schaefer , 21 , stuff her body into a suitcase . schaefer was sentenced to 18 years in prison for battering von wiese-m mack to death . mack gave birth to her own daughter just weeks ago .\njackson byrnes , 18 , was diagnosed with a stage four brain tumour three weeks ago . he was told by doctors that the tumour was too deep and aggressive to be safely operated on . his girlfriend jahnae jackson has put her psychology studies on hold to care for her long-term boyfriend . the 18-year-old and his family have raised over $ 80,000 for his life-saving surgery to be performed on wednesday . dr charlie teo is the only surgeon in australia willing to perform the risky operation .\nsquirrel was taking a nap on a coconut leaf in the early morning sun in india . adorable creature gave a big yawn and flicked out his tongue when he woke up . cute moment was captured by 19-year-old student , ranajit roy .\nconrad clitheroe was arrested with two friends at dubai airport in february . the 54-year-old is in a cell with friends gary cooper and neil munro . his wife valerie says he has run out of blood pressure medication . she says guards ` do n't care ' about her husband 's serious heart condition .\nthe fire was set in the early morning hours of march 26 at the garold wayne interactive zoological park in oklahoma . authorities suspect an arsonist is to blame for the fire that left seven alligators and a crocodile ` boiled to death ' at the park . the fire also destroyed a video production studio . only one alligator escaped the blaze and one of the animals reportedly belonged to michael jackson .\nswansea midfielder tom carroll faces up to six weeks on the sidelines . carroll was injured during england under 21s ' 1-0 win over czech republic . midfielder scored the winning goal in prague last friday . carroll has made 18 appearances for swansea during his season-long loan spell .\nbrianne altice , 35 , pleaded guilty to three counts of forcible sexual abuse involving three male students at davis high school in utah . she accepted the agreement in exchange for prosecutors dropping 11 other counts , including several first-degree felonies . one of the boys was 16 and two were 17 when they were having sex with the english teacher . altice could face up to 45 years in prison when she is sentenced next month .\ngang of eight rented a restaurant across the road from guanghui temple in zhengdin county , north china . while serving snacks to public , they were digging a 50m underground tunnel . they were just 20 metres away from breaching the temple 's famous hua pagoda when they were caught . five men were arrested following a tip-off , but three are still on the run .\nat least five people killed , more than a dozen injured in bus station blast in gombe , nigeria . woman left explosives-laden handbag near a bus filling up with passengers , witnesses say . no one has claimed responsibility for the attack , but boko haram is the main suspect .\nrose mcgrath of battle creek , michigan was diagnosed with lymphoblastic leukemia in 2012 . last week st. joseph 's middle school , a private catholic school , sent a letter to rose dismissing her from the school for low attendance and poor academic performance . the school says that rose only attended school 32 days out of this entire school year . rose 's parents feel as though the school is seriously failing their child .\nalvaro arbeloa , asier illarramendi and nacho gave adidas an exclusive tour of their state-of-the-art training complex . the trio were joined by adidas presenter roman kemp during the behind-the . scenes guided trip around the club 's facilities . real madrid 's first-team stars have a room where they can shoot hoops , play games consoles and relax .\ncharlie kwentus , 42 , from webster groves , missouri , was granted his dying wish by the annie 's hope bereavement center for kids . the charity provided all of his family with star treatment for the day , with black tie makeovers and a limousine included . tear-jerking footage from the special event shows kwentus dancing with his daughters maren , aged nine , and zoe , 13 , before stopping to give a heartfelt speech .\nsarah theeb boom stopped washing her hair six years ago after a friend told her that giving up shampoo was the secret to gorgeous locks . the writer from new york city said her hair is now silkier and ` totally frizz-free ' since she gave up using shampoo .\nrand paul announced this morning that he would run for president in 2016 . his campaign store has expanded to include an array of unconventional swag . items include ` stand with rand ' flip-flops , ` rand on a stick ' posters and a ` nsa spy cam blocker '\nnew england patriots beat seattle seahawks 28-24 to win super bowl xlix . president barack obama congratulated the patriots on their win . but there was one notable absence from the patriots squad who visited . quarterback tom brady was nowhere to be seen at the white house . patriots said ` prior family commitments ' were the reason why brady did n't attend the visit .\nsuspects had been taken to court in hyderabad in southern india . but one asked for a break in police van , and another tried to escape . police opened fire on the group , killing five of them and one officer . suspect syed viqaruddin had links to feared terrorist groups .\nmary murphy , 66 , tried to grab hold of partner john wood , 67 , when he stumbled at the top of the stairs . she slipped herself and the pair fell to their deaths at their home in failsworth , greater manchester . police initially thought the deaths may be suspicious , but after investigating they believe it was a ` bizarre and tragic ' accident .\nthe chart show has been a staple of sunday night listening for almost 50 years . but now it has been branded a ` banal failure ' by respected rock historian . paul gambaccini blamed presenters ' obsession with discussing sex appeal for slump in ratings . he said he was particularly annoyed about last week 's show when host clara amfo appeared to dismiss superstar paul simon .\ned balls was left briefly stumped by a basic maths question today . asked what seven times six equals , labour 's shadow chancellor looked down at his feet and laughed nervously . he eventually answered correctly following a ten second pause . mr balls said : ` the answer ... the answer is 42 ' during a speech in leeds .\njamie silvonek , 14 , is accused of conspiring with her soldier boyfriend by text message to have her mother killed . cheryl silv onek , 54 , was found stabbed in a shallow grave about 50 miles northwest of philadelphia . her boyfriend , 20-year-old caleb barnes , is charged with homicide . jamie silvonek 's attorney said the girl tearfully told him she missed her mother , and claimed she was coerced by her soldier partner . the teen is charged as an adult with homicide and criminal conspiracy .\nofficer michael rapiejko rammed patrol car into armed robbery suspect mario valencia . footage shows him mounting curb and mowing down the 36-year-old on february 19 . he told investigators it was ` either shoot him or run him over ' in inquiry recording . police have since spoken out in defense of rapiejo 's actions in marana , arizona . said valencia had left him with no other choice but to use potentially lethal force .\nseven-year-old colin gilpatric wrote to george lucas asking him to change the rule that bans jedi knights from marrying . colin , who has autism , wanted to avoid becoming a sith like anakin skywalker . lucasfilm sent colin a package of star wars merchandise and a letter addressing his question .\njordan henderson is nearing the final year of his # 60,000-per-week contract . the liverpool vice-captain is yet to sign an extension to his current deal . henderson has already rejected a five-year deal worth # 80,000 per week . sportsmail understands an improved offer worth # 5.2million-per year will be enough for henderson to stay at anfield .\nin february , williams was suspended for six months after admitting he had lied about being on board a helicopter that came under fire in iraq in 2003 . but according to a report in vanity fair , williams started exaggerating his stories because he felt insecure following in tom brokaw 's footsteps at nbc .\nnew rotherham chief executive could be paid up to # 40,000 more than outgoing boss . council will offer up to $ 200,000 to candidates , rather than # 160,000 enjoyed by martin kimber . he left in december after council report said 1,400 children had suffered horrific sexual abuse over a 16-year period .\ndavid cameron made the gaffe while giving a campaign speech in london . but he then named west ham instead of the west midlands giants . pm said he had driven by the west ham stadium the day before . but it later emerged that he flew over the ground in a private helicopter . he had earlier insisted he became a villa fan after watching the team beat bayern munich in the european cup final as a child .\nsouth africa had warm-up games under suspicion before 2010 world cup . fifa 's ethics committee is investigating allegations of match-fixing . south africa 's sports minister fikile mbalula is frustrated the report has taken so long to produce . mbalala met with the chairman of the ethics committee in zurich this week . he has received assurances that the report will be completed and presented in june .\nedinburgh face newport gwent dragons in the semi-final of the european challenge cup . tim visser was a key player in edinburgh 's dramatic win over london irish at the madejski stadium . vissers hopes he can end his edinburgh career lifting european silverware at the ground he will call home from next season .\ndanny willet cards one-under 71 in first round of 2015 masters . englishman frustrated with rules official for getting in his line-of-sight . willett shouted at official who was sitting 60 yards away in a golf cart . 27-year-old is playing in first ever masters at augusta national .\nrose byrne and gracie otto join forces with krey boylan , shannon murphy and jessica carrerea . the five women have launched their own production company called the doll house collective . byrne wants to follow in the feminist footsteps of sheryl sandberg and arianna huffington .\nsabine smouha was given # 2,000 tote bag by husband for 50th birthday . it was made from skin of nile crocodile , a protected species under cites . but it did n't have the required documentation and was seized by border officials . border force refused to return it to her , saying it did not have the right permit . but a tribunal judge has now ruled in her favour , saying the crocodile was farmed .\nthe unnamed ohio woman and her catholic husband learned they were expecting a girl in december . but at 20 weeks , they discovered that the fetus was much smaller than it should have been . an amniocentesis test showed that the baby had triploidy , a chromosomal defect that is ` incompatible with life outside the womb ' the woman and husband decided to have an abortion at 23 weeks .\nbayern munich beat borussia dortmund 1-0 in the bundesliga on saturday . robert lewandowski scored the only goal of the game in the first half . dortmund coach jurgen klopp says bayern deserved to win . mats hummels disagrees with his manager and says dortmund deserved more .\ndeaths in britain will start to go up and increase by 20 per cent over next two decades . report by international longevity centre-uk says younger people will still be under money pressure even after their deaths . report says funeral costs have already risen by 80 per cent in the past 10 years .\nchipotle co-ceo steve ells said ` it 's relatively easy for us to have all non-gmo ingredients ' the company has 68 total ingredients -- and another company 's burrito features upwards of 80 . rice , meat marinades , chips , salsa , and tortillas will not be made with gmos .\nhouthi rebels still control sanaa , but the airstrikes have hurt them and destroyed infrastructure . the electricity has gone out on 16 million yemenis living in houthi-held areas , officials say . on monday , more than 50 people died in the port city of aden alone .\naustralian artist ben quilty has penned an impassioned message to the indonesian president in the final hours before his treasured friends , myuran sukumaran and andrew chan , are expected to be executed . quilty became a mentor to bali nine duo in 2012 and has been a staunch advocate for clemency . he has tirelessly led the mercy campaigns and organised vigils to appeal for mercy from the indonesian government .\ngovernment officials say employing cheap labour from asia could help tackle the childcare shortage in australia . extending au pairs on working holiday visas to stay with one family for a year instead of the current six months is another option . labor opposition leader bill shorten says foreign nannies are not the answer to limited childcare and rising costs .\nphil primmer , 42 , died after collapsing at his gym in darwin on thursday . he had reportedly just been to see a doctor to seek treatment for neck pain . he was given cpr but it was too late by the time emergency services arrived . the body-building community is in shock after the premature death . his facebook page has been inundated with heartfelt tributes from people inspired by him .\nlawrence phillips is suspected of killing his cellmate in a central california prison . phillips , who was jailed in 2005 , is serving a sentence of more than 31 years for choking his girlfriend in san diego and driving his car into three teens after a pickup football game . he is suspected in the death of damion soward , a 37-year-old inmate from san bernardino county serving 82 years to life for a first-degree murder conviction .\nkonstantin sivkov wrote an article for the military-industrial courier . he said that russia should develop a new nuclear deterrent against us . he says that the us should be worried about a new ` megaweapons ' system . this would be manned by a small force that can cause tsunamis and seismic activity at yellowstone national park . sivakov says that this could cause massive damage to 240 million people .\nmore than 3,000 students received acceptance notices from university of florida . but they were told they would have to spend entire first year taking online classes . part of a new program - the pathway to campus enrollment - which started in 2015 . it aims to accommodate a higher number of students at the public college in gainesville .\nresearchers at nasa 's jpl in california have released new images of ceres . they were taken by the dawn spacecraft from a distance of 21,000 miles -lrb- 33,000 km -rrb- the spacecraft is beginning to move closer and closer to ceres . and it will soon study the whole planet - including its mystery bright spots . however , the images have not yet revealed what the mystery ` bright spots ' on the surface of the world are .\nphilip gigante , 41 , is the grandson of vincent ` the chin ' gigante . his grandfather was the head of the genovese crime family in new york . he was elected into the positions by residents of airmont , new york . the republican real-estate lawyer will get $ 25,000 a year for the part time job .\narkansas gov. asa hutchinson said wednesday that he wo n't sign a religious freedom bill that his state 's legislature sent to him on tuesday . he is sending it back to lawmakers , he told reporters , for amendments that will bring it more in line with the 1993 federal religious freedom restoration act . hutchinson said during his press conference that his son had in part convinced him not to sign the bill into law . ` my son seth , signed the petition asking me , dad , the governor , to veto this bill , ' hutchinson said . ` and he gave me permission to make that reference , and it shows that ... there 's a generational difference of opinion on these issues '\npope francis could make a stop in cuba on his trip to the united states this september . the vatican says it 's too early to consider the possibility of a papal visit to cuba . the pope helped negotiate a thaw in relations between the u.s. and cuba .\ngreg hardy has been suspended without pay for 10 games . the decision follows a two-month nfl investigation . hardy was accused of assaulting his former girlfriend nicole holder . the five-year nfl veteran was found guilty by a district court judge in july . hardy may appeal the nfl 's decision within three days . the former carolina panthers player signed with the dallas cowboys last month .\n11 leading figures have written to the times questioning the cps 's decision . they say director of public prosecutions alison saunders is ` damaging public confidence ' in the justice system with her ruling . cps accused of double standards after 19 men with dementia have been convicted of child sex offences since 2010 .\nthe monarch spent a second day enjoying the spring sunshine in windsor great park . she was joined by lord vestey and her head groom terry pendry . her majesty , who is approaching her 89th birthday , was spotted riding her faithful black fell pony , carltonlima emma .\n45 per cent of under-30s surveyed said they had a painful back or neck . almost one in four said that they are in pain on a daily basis . chiropractors blame days and nights spent sitting hunched over mobile phones and tablet computers .\nrandom darknet shopper bought drugs on the ` dark net ' - a hidden part of the internet . it bought 10 ecstasy tablets in a dvd case and sent them to an exhibition . the robot was designed as a shopping system that spent up to $ 100 a week . it was seized by swiss police who destroyed the drugs and the computer . the group behind the project said they had been cleared of all charges .\nsally gordon-smith was last seen leaving her school in keilor east , victoria , at 3pm on friday . police confirmed she was still missing early on saturday morning . she was described by police as caucasian , 150cm tall , with blue eyes and brown shoulder length hair .\nsunderland beat newcastle 1-0 at the stadium of light on saturday . costel pantilimon admits he thought about relegation after 4-0 defeat to aston villa . the romanian goalkeeper says dick advocaat has brought the team 's confidence back . sunderland travel to crystal palace on sunday afternoon .\nprosecutors say gianni van , now 45 , killed gonzalo ramirez , 24 , in 1995 after he was pointed out by a college student as her rapist . ramirez 's body was found on the side of a road in irvine , california having suffered 30 blows from a meat cleaver . prosecutors say van killed ramirez as revenge for raping his on-and-off girlfriend norma esparza . esparzas and van allegedly entered into a sham marriage before van 's original arrest for the crime . es parza was arrested in 2012 when she re-entered the united states for an academic conference . she is now the mother of a little girl .\nbrayden travis , 18 , was left without medical attention for seven hours after overdosing on heroin and xanax at a friend 's house in st charles county , missouri in early march . his lungs and kidneys failed , and he suffered a stroke and severe brain damage . doctors warned that he will likely remain in a vegetative state , but his mother , kelly smith-miller , shared a photo of him in hospital to deter others from taking drugs .\nbaby elephant showed off its playful side by trampling all over its mother . the footage was captured on camera by a visitor to the abq biopark zoo in albuquerque , new mexico . the youngster named jazmine approached its mother rozie and started clambering over her .\nhallam amos , nic cudd and tom prydie score tries for newport gwent dragons . cardiff blues score tries through lloyd williams , josh navidi and gareth anscombe . dragons reach european challenge cup semi-finals with 25-21 victory . london irish or edinburgh will face newport g went in the final . cardiff 's sam warburton and taulupe faletau were on the bench . dragons suffered loss of andrew coombs to leg injury .\nneurio claims to make ` an ordinary home smart ' it recognises the electronic signature of different devices , such as kettles and washing machines . the $ 250 -lrb- # 168 -rrb- device monitors a home around the clock . it can tell users if they have left their oven on , if their washing is finished and if the water is cold . when used with another app , neurio can be used to turn appliances and household devices on and off remotely .\nandrew strauss has thrown his hat in the ring to become england 's new director of cricket . kevin pietersen has rejoined surrey for the county season . strauss says the pietersen affair is a ` distraction ' for english cricket . michael vaughan remains favourite to pip strauss for the role .\ncristina coria used facebook to help police nab a man accused of stealing her husband 's truck . the 18-year-old suspect was arrested after police found the bed and wheels in a storage lot . coria arranged to meet the suspect with her husband at a gas station parking lot near i-45 in houston , texas .\nsupermodel mothers like cindy crawford and yasmin le bon were huge stars in 80s and 90s . now their daughters are making their own names in the fashion world . georgia jagger , amber le bon and ella richards are among the models of the moment .\nraheem sterling pictured smoking a shisha pipe with liverpool team-mate jordon ibe . arsenal midfielder jack wilshere has been pictured smoking in the past . diego maradona , paul merson , saido berahino and robin friday are other stars to have been involved in similar incidents .\ncarnival spirit was stranded at sea after being prevented from docking in sydney harbour due to the storm of the century . the cruise ship finally docked at sydney harbour this morning . the ship , carrying 2,500 holidaymakers and 1,500 crew , was stopped by 40 foot waves . one passenger said that many passengers had been ` vomiting for two days ' due to rough seas conditions . the carnival spirit was returning from a 12-night cruise to new caledonia , vanuatu and fiji .\nseth casteel photographed 750 babies in ten states for his new book , underwater babies . the pictures show the babies at their most playful and pure as they dive down into the deep . castele hopes to use the images to promote water safety for toddlers .\narsenal host liverpool in the premier league on saturday . martin skrtel is suspended for the game after stamping on david de gea . kolo toure and mamadou sakho are in contention to replace skrtle . olivier giroud will be licking his lips to score against liverpool . arsenal 's aaron ramsey and jordan henderson should be a close affair .\nsex toy was discovered during an excavation of ancient toilets in gdansk . it was found during a dig at a school of swordsmanship in the coastal city . the eight-inch leather dildo with a wooden head dates back to the 18th century . archaeologists believe it was dropped by someone in the ancient toilet .\nhillary clinton launches white house bid with video featuring gay couple . it features jared milrad and nate johnson , from chicago , illinois . milrad says he is delighted to be part of the video , showing u.s. change . but russian network dozhd has given it an 18 rating to avoid fine . they fear it may fall foul of putin 's ` gay propaganda ' laws .\ncustomers asked to provide airline letter confirming cancellation of flight . but easyjet told hard-hit passengers to pay a # 10 fee for proof . charge came to light when customers sought to claim money back from travel insurers . comes after french air-traffic strikes affected flights earlier this month .\neddie raymond tipton , 51 , of norwalk , iowa , was originally charged with two felony counts of fraud when he was arrested in january for illegally playing the lottery . now prosecutors say he used an intricate system to make sure he would win . they argue he installed a self-destructing hack program to makesure the random number generator selected his number in december 2010 . also claim he tampered with security cameras in the building so he would not be caught installing the program . his trial had been due to start monday but defense lawyers asked for it to be delayed to they could examine the new evidence .\nsome 44 million americans go to their doctors every year for a physical exam . a new poll shows 92 percent of americans say it is important to get an annual exam . but there 's little evidence that those visits do any good for healthy adults . one doctor says he avoids giving physicals because he does n't like to frighten people .\nwoman found dead in flat in fulham , south west london , at end of march . vanessa santillan , 33 , worked as a transgender escort in london and paris . the woman was pronounced dead at the scene after suffering injuries to the head and neck . police have arrested a 23-year-old man in connection with her death .\nhoward wilkinson played under nigel pearson at sheffield wednesday . leicester host swansea in the premier league on saturday . foxes have beaten west ham and west brom in their last two games . nigel pearson has spoken to wilkinson for advice on his side . leicester could escape the drop if burnley fail to win at everton .\ndzhokhar tsarnaev killed three people and injured 260 others in 2013 bombings . prosecutors described the 21-year-old as ` america 's worst nightmare ' but a poll found less than 20 per cent of massachusetts residents want him to die . in boston itself the figure falls to just 15 per cent in favour of death penalty .\nfloyd mayweather and manny pacquiao will meet on may 2 in las vegas . the welterweight showdown will be held at the mgm grand garden arena . the weigh-in is expected to attract huge crowds of fans . fight organisers have decided to charge for tickets for the event . tickets will cost # 6.60 and go on sale on friday at 8pm .\nedwin ` jock ' mee allegedly targeted young army cadets at croydon military base . he allegedly locked a female recruit in an office and raped her when she was 19 . the woman , now 27 , claims she became pregnant before suffering ectopic pregnancy . mee is accused of carrying out sex attacks on 11 victims as young as 15 . he denies 17 counts of sexual assault , three rapes and one count of assault by penetration .\n` hoosier hospitality had to be restored , ' indiana house speaker brian bosma said this morning at a press conference . indiana lawmakers unveiled an amendment to their already-in-effect law clarifying that no one will ` be able to discriminate against anyone at any time ' the arkansas legislature was also poised to pass changes to its legislation after the state 's republican governor asa hutchinson rejected its bill at the last minute on wednesday following public uproar . the two , gop-controlled states were in a frenzy to quell national outrage over legislation meant to satisfy evangelicals . the moves had the direct effect of upsetting gay and lesbian individuals , however , and incited massive protests .\nmonaco 's princess charlene , 37 , presented tennis ace novak djokovic with his sportsman of the year award . presentation took place during the laureus world sports awards in monte carlo . other guests included actors benedict cumberbatch and henry cavill . charlene is a former olympic swimmer and mother to four-month-old twins .\nbrighton and hove albion are giving young players training in the law and ethics surrounding sexual consent . the club are the first to provide such training to its youth players . the protect , inform and prevent programme aims to explain when consent can be said to have been given , in law .\namerican peter quillin will fight andy lee in limerick next weekend . quillin is undefeated with a 71 per cent knockout ratio . the 31-year-old has been criticised for not defending his wbo world title . quillin says he is looking forward to the fight and is focused on himself .\nfabio capello insists john terry should never have been stripped of england captaincy . terry was accused of racially abusing anton ferdinand in 2011 . chelsea defender was cleared of the charge but banned and fined by the fa . capello believes england would be in a much stronger position if they still had terry .\ncricket legend richie benaud dies aged 84 . benaud was australia 's first test captain and a leg spin bowler . he was also a broadcaster for more than four decades with the bbc . australian prime minister tony abbott offers condolences . `` he personified cricket , '' abbott says .\nbayern munich doctor hans-wilhelm muller-wohlfahrt quit this week . he had a reported rift with pep guardiola over player injury treatment . the pair fell out over philipp lahm 's broken ankle in training last year . muller - wohlfaert is a world-renowned specialist and had been at bayern for 40 years .\ndarron gibson is out for the rest of the season with a metatarsal injury . everton will look to extend his contract this summer as he recovers . roberto martinez has assured gibson he has a place in his plans . martinez is also interested in signing tom cleverley . the midfielder has spent the season on loan at aston villa .\nfaux-gothic victorian hotel mohonk mountain house is 90 minutes north of new york city . it sits on the banks of lake mohonk in the hudson valley , new york state . the hotel , lake , gardens and trails are a vast adventure playground for all ages .\ntimothy crook is accused of murdering his parents bob , 90 , and elsie , 83 , in 2007 . he is alleged to have driven their bodies 150 miles in a grey nissan micra . but the car he is accused to have used to transport the bodies has been lost . bristol crown court heard the blunder could have forensic consequences .\nulrike berger , 44 , and daughter kaia , 7 , last seen at her brooklyn home on march 21 . they are believed to have boarded a plane to germany on march 22 . berger is barred by a court order from leaving the country with her daughter . police are appealing for information about the pair 's whereabouts .\nbritain was sixth from last in a list of 65 countries in a global poll . only 30 per cent of people in the uk called themselves religious . this compared to 53 per cent who said they were not religious . thailand was the most religious country with 94 per cent calling themselves religious .\nwarning for a tsunami as big as one metre -lrb- three feet -rrb- was cancelled . the tsunami was expected to hit islands in japan 's far south after a 6.6 magnitude earthquake struck off eastern taiwan . national broadcaster nhk said waves were possible on several islands in the southern okinawa chain .\nromelu lukaku was absent injured as everton beat southampton 1-0 . the win came in the wake of lukaku 's new agent mino raiola 's comments . raiola said lukaku would never have signed for everton had he been his representative earlier . everton boss roberto martinez has dismissed claims suggesting his star striker could leave goodison park .\nmanchester city beat west ham 2-0 in the premier league on saturday . frank lampard should have started more games for manuel pellegrini this season . phil jagielka is five games away from going a complete season without getting a single booking on club duty for everton . tom cleverley has found a steely edge since tim sherwood took charge at aston villa .\nlee ferguson , 18 , was flung from his horse merrion square at wincanton . the amateur jockey was on his first ride for new boss paul nicholls . ferguson escaped the fall with only ` dented pride ' according to nicholls . nicholls expects to have a team of four riders competing at the grand national .\nniall horan caddied for rory mcilroy at the masters on wednesday . horan fell while caddying for the northern irish golfer in the traditional par-3 contest at augusta national . horans revealed that the pair will reunite on stage in boston . mcilory is set to compete at the deutsche bank championship .\ncooperative weather and efforts of firefighters helped beat back flames sunday that had threatened hundreds of homes near a southern california dam . evacuation orders were lifted just before dawn for about 300 homes in an area along the border of the cities of norco and corona . by midday , fire officials said they had contained 25 per cent of the fire , which had grown to 1.5 square miles .\nbritish artist daisy bentley has been collecting notes for six years . she has amassed a collection of 1,500 notes from people around the uk . the collection is now on display at a gallery in london . bentley says she finds the note collection an interesting way to explore people 's lives .\nliverpool star raheem sterling gave a revealing insight into his liverpool talks with bbc sport . sterling rejected a contract offer of # 100,000-a-week from the reds . the 20-year-old says he is focusing on his football and not money . sportsmail tries to interpret what sterling said .\nbath beat newcastle 29-19 at kingston park on saturday . ollie devoto , semesa rokoduguni and anthony watson scored tries . matt banahan added a bonus point try for the visitors . sam burgess made his first start for bath in the back row .\nbody of chelsea bruck found on 13-acre private property near train tracks . medical examiner 's office used dental records to confirm body is hers . bruck , 22 , was last seen on october 26 in frenchtown township , michigan . she was dressed as the comic villain at a halloween party . police say evidence indicates the death was a homicide .\nkevin morgan injured in 2005 when land rover reversed into his car . married engineer claims the accident has left him in too much pain to work . but he was filmed out with friends including max clifford in coffee shop . he has been accused of a staggering fraud by motor insurers direct line group .\nsaudis say they are bombing houthi rebels to protect yemen constitution and elections . frida ghitis : saudi motives likely have nothing to do with protecting the country 's constitution . she says saudi goal is simple : prevent rise of any popularly supported government in the region . ghitis says the u.s. decision to stand behind saudi attack on yemen can best be described as misguided .\ngreece 's prime minister alexis tsipras met the russian president in moscow . pair agreed a package of investment in energy and other projects . but mr tsipra insisted he had not asked for -- or received -- financial aid . he said greece is a ` sovereign nation ' and ` not a debt colony '\nrussia are on the brink of making the fed cup final with a 2-0 lead . anastasia pavlyuchenkova saved a match point to beat germany 's sabine lisicki . svetlana kuznetsova beat julia goerges in straight sets in the opening rubber .\nedda goering , 76 , tried to get state of bavaria to return family money confiscated . she claims posthumous expropriation of assets two years after his death was illegal . goering was deputy to hitler and the regime 's greatest art thief .\nsteven abberley shouted abuse at politicians during a session in the house of commons . the 28-year-old threw marbles from the public gallery but they missed mps . he then shouted ` you are all just liars ' at prime minister david cameron . abberly also daubed the words ` the enemy within ' in red paint on palace 's walls . he was given suspended sentences for criminal damage and threatening behaviour .\ndanny willett shot an opening round of 71 at augusta national . willett admitted it was a dream come true to mark his masters debut . the 27-year-old was playing with 1987 masters champion larry mize . willet was in the second group out at 7.56 am on thursday .\nkevin morton , 49 , admitted killing his son kye backhouse , 13 . he gave him a super-strength painkiller after he complained of feeling ill . kye was found dead at his home in barrow-in-furness , cumbria . morton said he will ` have to live with it for the rest of my life '\nandy mcilvaine , 33 , proposed to kelley mulfinger , 30 , on a flight from baltimore to maine in october . he was lugging three bottles of champagne onto the flight when he met southwest employees . they gave him a $ 100 voucher as a gift . after he wrote to the firm 's ceo thanking the company , they threw a wedding shower at baltimore-washington international airport .\nsam pearce , 24 , was discovered on the f train in new york city by a fellow model who wanted to sign him up for his own modeling agency . mr. pearce , who teaches english to eighth graders in brooklyn , new york , now works as a model for top designers .\nnguyen thi hang was travelling with just hand luggage when she was stopped . the vietnamese woman was waiting to board a flight at tan son nhat international airport in ho chi minh city , vietnam . she was told her luggage weighed more than the 7kg permitted for her size . the 35-year-old lashed out and slapped an airline worker in the face .\nbayern munich boss pep guardiola craves stability . chelsea owner roman abramovich believed he had landed guardiola in the summer of 2012 . but the then-barcelona coach was spooked by the russian 's habit of hiring and firing managers . guardiola opted to join bayern munich instead and has maintained their dominance in the bundesliga .\ndonatella versace , 59 , is set to appear in a new ad campaign for rival design house givenchy 's fall-winter campaign . riccardo tisci , 40 , revealed the surprising pick for his fall - winter campaign on instagram yesterday , posting a photo of himself and donatella .\nmanchester united boss louis van gaal is keen to strengthen his defence . ilkay gundogan and mats hummels are both likely to join the club this summer . gundogan expects to complete a # 15million move to old trafford . hummela is expected to cost around # 36million .\nnico rosberg is second in the drivers ' standings ahead of the chinese grand prix . the german has been out-qualified by mercedes team-mate lewis hamilton . sebastian vettel is third in the standings ahead of lewis hamilton and lewis rosberg . niki lauda has criticised his mercedes driver ahead of race in shanghai .\nmanchester city were offering free coaches for fans to attend the game at selhurst park . but the six coaches set off from the etihad at 1.30 pm and missed the kick-off . city have written to 300 fans and apologised and promised ticket refunds . the premier league champions lost 2-1 to crystal palace on saturday .\njonathan w. krueger was shot dead friday in lexington . justin d. smith , 18 , and efrain diaz , 20 , have been charged with murder and robbery . the two men appeared via video link from jail on monday and pleaded not guilty . krueger was the photo editor for the university of kentucky 's campus newspaper , the kentucky kernel . he was shot in the chest and died at the scene .\nthe eclipse started at 3:16 a.m. pacific daylight time . it will last nearly five minutes , nasa says . it 's the shortest total lunar eclipse of the century . the eclipse will be visible in western north america . the east coast will see a partial eclipse .\ndavid alaba posted a video on instagram of his cast being removed . the austrian international has been out with knee ligament damage . bayern munich face porto in the champions league quarter-final on wednesday . pep guardiola 's side have won three on the trot . click here for more bayern munich news .\njason lee , 38 , was a managing director at goldman sachs and is accused of raping a 20-year-old irish student in august 2013 . he allegedly took the woman home after a party at georgica restaurant in east hampton , new york . the woman , who was visiting her brother in the hamptons , said lee undressed and forced his way into a bathroom and pinned her to the floor . lee has pleaded not guilty and is free on $ 100,000 bail .\ntepco cut off cable after robot stopped moving inside one of the damaged reactors . the robot had been deployed friday to collect data on radiation levels . tepco called the robotic probe an `` unprecedented '' experiment . the fukushima daiichi nuclear plant suffered a meltdown following a devastating earthquake and tsunami in 2011 .\nthe first year students at washington university were rowing at creve coeur lake in missouri . the giant asian carp decided to strike and hurl themselves at the boat . the video was captured by filmmaker benjamin rosenbaum . asian carp are known for getting easily frightened by boats and leaping from water .\nthe baby boy was found in the female toilets of a shoe factory in wenzhou city . a cleaner found the child in the toilets and said he was ` icy cold ' the mother , xiao ying , 17 , was found back working on the production line . she denied giving birth , but came clean when managers saw blood on her shoes . ying said she was afraid to tell her parents she was pregnant .\ntony pulis ' west brom beat crystal palace 2-0 at the hawthorns on saturday . james morrison and craig gardner scored the goals for the baggies . pulis insists he will never change his touchline attire . the 57-year-old will wear a cap , track suit and shiny white trainers .\nabbey clancy joins forces with famous friends to target breast cancer . model , 29 , looks chic as she shows off her famous legs in new campaign . joined by singer foxes , victoria 's secret angel lily donaldson and model alice dellal . campaign has so far raised # 13.5 m for breakthrough breast cancer 's research .\nwomen in their 30s and 40s are suffering stress spots as well as wrinkles . superdrug has launched a range of creams with ingredients normally found in teenage spot treatments -- as well for anti-ageing . poll of 2,000 women in their 40s and 50s found half were still blighted with blemishes well into adulthood .\njeff bezos was pictured at the campo de ' fiori in rome on tuesday . the billionaire was snapped taking pictures of the stalls with his amazon phone and camera . the 51-year-old was accompanied by family members and a security guard . bezos is worth $ 34.7 billion from his online marketplace . he is ranked number 15 on forbes ' billionaires list .\npoll of 15,560 family doctors found one in six is considering going part-time . another one in ten is thinking about moving abroad to countries including canada and australia . senior gps say they are facing ` incredible ' pressures brought on by an increasingly ageing population who have complicated illnesses .\na federal grand jury charges robert durst with unlawful possession of a firearm . the 71-year-old is accused of possessing a .38 caliber revolver . he faces a maximum of 10 years in prison if found guilty of that charge . durst is charged with first-degree murder in the 2000 killing of his friend .\nsteve bruce is confident he can keep hull city in the premier league . hull were beaten 2-0 by southampton on saturday . the tigers are just two points clear of the relegation zone . bruce has targeted 10 wins to survive but has managed just six . southampton moved up to fifth in the table after the defeat .\npolice meet with man who was in walter scott 's car when he was pulled over for a broken taillight . police say they are not at friday night 's visitation , mayor says . police continue to investigate incident in which scott was fatally shot in the back by officer michael slager .\nscarlett o'hara 's dress sells for $ 137,000 at auction . the outfit was worn by vivien leigh in `` gone with the wind '' it was the most sought after item among roughly 150 pieces of `` gone with the wind '' memorabilia .\nceltic 's josh meekings handled a goal-bound header from leigh griffiths . inverness went on to beat celtic 3-2 after extra-time in the scottish cup . meeking will argue his case at an sfa tribunal tomorrow . inveress have vowed to ` vigorously defend ' their player . celtic had goalkeeper craig gordon sent off in sunday 's second half .\nresearchers found a new species of torrent frog in the atlantic forest of serra do japi in the state of são paulo , brazil . called hylodes japi , it was found to mate underground in secret chambers . males and females typically find a spot to mate in about five minutes . and the male will cover up the eggs to protect them from predators .\nalex s had 19 of his teeth removed over four weeks in munich , germany . the patient - known only as alex s - was charged 2,000 euros -lrb- # 1,435 -rrb- the dentist - known as k - claimed to be a ` recognised healer ' he believed the operations would help him regain his vitality .\ncrystal palace winger yannick bolasie scored a hat-trick in 4-1 win over sunderland . referee anthony taylor sprinted past lee cattermole before bolasies ' goal . arsenal goalkeeper david ospina has kept six clean sheets since replacing wojciech szczesny . west brom 's players wore multicoloured boots on ` jeff astle day '\ngangs of african immigrants armed with machetes have clashed with police in south africa . five people have died since vigilantes started looting and attacking shops owned by immigrants . police fired stun grenades and rubber bullets as immigrant gangs confronted vigilantes . more than 200 immigrants had to take refuge in a police station as trouble spread .\ncharlie adam scored from inside his own half to give chelsea a 1-1 draw with stoke . the stoke midfielder 's goal is the highest-ever scored in the premier league . david beckham scored from the same spot for manchester united in 1996 . adam admits he was praying it would go in as he watched thibaut courtois .\nnicola sturgeon hits out at people asking her why she does n't have children . snp leader said her predecessor alex salmond did not have to field questions . she also attacked criticism she and other female politicians ' have had to endure over their appearance . steely first minister made remarks in special tv programme . it is the latest of five special programmes profiling main party leaders .\npakistani supermodel ayyan ali , 21 , has been in jail since march 14 . was caught with over $ 500,000 in her carry-on bag at islamabad airport . charged with money laundering offences and has been housed in a rawalpindi prison . lawyers say she was not due to fly and was going to hand the money over to her brother .\napple is expected to launch a new iphone this autumn . but rumours suggest it will skip the 6s and go straight for the iphone 7 . this suggests the next model could be substantial improvement on iphone 6 . it could also feature force touch , recently added to the apple watch and new macbook . this follows rumours a 4-inch version of the iphone 6 is in development .\nnbc investigation found brian williams lied about his reporting 11 times . leaked information from the probe was designed to make him resign , media executives say . williams was suspended for six months after it emerged he lied about being on a military helicopter hit by a rocket-propelled grenade in iraq . the nightly news anchor has up to a $ 50million contract .\nbayern munich travel to bayer leverkusen in the german cup quarter-final on wednesday . pep guardiola 's side are currently top of the bundesliga and through to the champions league last eight . bayern beat borussia dortmund 1-0 on saturday despite a number of injuries .\nlindsey vonn watched her boyfriend tiger woods play in the second round of the masters on friday . woods played a solid round , carding a three-under-par 69 . he is still 12 strokes behind the leader , 21-year-old jordan spieth . vonn looked stressed at times though woods played well .\nluke lazarus , 23 , was sentenced on march 27 for raping an 18-year-old virgin in an alleyway outside his father 's soho nightclub in kings cross , inner sydney . lazarus hired back schwartz vaughan - a liquor licensing specialist law firm , who lodged the appeal five days after the conviction . lazarus also contested the five year-maximum sentence he received . waverley mayor sally betts wrote a reference for lazarus ` out of loyalty to the family ' she is now developing a new risky behaviour education program for young women .\nfather-of-one szilveszter injected petroleum jelly into his penis . he wanted to make it bigger but it became swollen and inflammed . he was unable to have sex and was in constant pain . he feared he would never be able to have more children . he shares his story on the latest series of tlc show extreme beauty disasters .\npeter ackroyd has written a biography of alfred hitchcock . the film director was born in 1899 in leytonstone , east london . he was educated by the jesuits and had a ` lack of faith ' in the church . his first film was the lodger in 1927 , about a man wrongly accused of being jack the ripper .\nprince abdul malik married dayangku raabi'atul ` adawiyyah pengiran haji bolkiah yesterday . the couple wed in a lavish ceremony at the sultan of brunei 's palace . the ceremony cost an estimated # 21million -lrb- $ 32million -rrb- and included 1,900 guests . it is possibly the most opulent wedding of all time .\nspacex 's falcon 9 rocket blasted off at 4:10 p.m. et from florida under perfect conditions . the booster was programmed to flip around and fly to a platform in the atlantic . the impact of landing , however , caused it to tip over destroying the lower part of the rocket . spacex said it will post a video in the next few days , but images tweeted by musk reveal that the booster landed successfully .\nmanchester united host rivals manchester city in the premier league on sunday . wayne rooney has listed his five most memorable moments of the derby . the england striker scored four stoppage time winners in the past . rooney 's overhead kick and a rare paul scholes header are included .\nbarcelona to play bayern munich in champions league semi-finals . pep guardiola 's side will return to nou camp to face former club . real madrid to face juventus in other semi-final tie . first legs to be played on may 5-6 , with return matches on may 12-13 . final to be held on june 6 at the olympic stadium in berlin .\nreal estate publicist and freelance writer kelly kreth , 44 , has been penning letters to murderers behind bars to find out exactly what makes them tick . she says after having a traumatic encounter with a sociopath in her own life she became inspired to learn about the inner workings of a criminal mind . six years and 600 prison letters later , kreth says she 's learned that a sociopaths is a person ` who wants to feel like the smartest person in the room '\nsierra sharry and lane smith lost their unborn son in july . sharry wanted to have a picture of their family with lane in it . the photographer found just the right picture of smith looking over his family 's shoulder . the family photo has become a social media sensation .\nshabana bibi , 25 , died in hospital on saturday after suffering burns to 80 per cent of her body . her husband muhammad siddique and father-in-law pir bakhsh have been arrested . her brother , muhammad azam , said he will set himself alight if he does not get justice .\nmore than 31,000 web pages featuring vile images of sexual abuse removed in 2014 . that is a 136 per cent increase on 13,000 in 2013 , according to internet watch foundation . nine out of every ten images of child sexual abuse found online in 2014 showed children aged ten and under .\nscotland 's first minister said labour leader had allowed himself to be ` kicked around ' by the tories . she called on him to be more ` tougher ' and ` bolder ' in his post-election speech . mr miliband insisted at the weekend that he is ` not interested in deals ' with the snp .\nyemen 's houthi rebels vow not to back down . `` anyone who thinks we will surrender is dreaming , '' rebel leader abdul-malik al-houthi says . saudi brig. gen. ahmed asiri says airstrikes have decimated the houthis ' central command .\na sandstorm has been captured sweeping across a street in saudi arabia . the orange cloud gets thicker as it disperses and engulfs the road . the storm caused havoc in the arabian peninsula last week . flights were cancelled and schools were forced to close due to the disruption . people in dubai were left with respiratory problems after the storm .\nthe man , only named as mr zhang , was thrown off his motorbike when he was hit by a car . he was taken to hospital but died from his injuries shortly after . his brother had died at the same junction eight months earlier after colliding with a lorry . the driver of the car that hit mr zhang is under investigation by police .\nchristopher bridger , 25 , from stevenage , sexually assaulted three women . he was jailed for 12 years after being convicted of rape and four other abuse charges . hcpc conduct and competence committee today removed him from the register . they described his crimes as ' a serious breach of trust '\nlooking after someone with dementia can stretch people to their limits . here 's how to make life easier for carers and their loved ones . in england alone , there are more than 670,000 unpaid carers . here , we turn our attention to the carers , and what can be done to make it easier .\nlying agent posted advert on gumtree for a generous double room in peckham , south-east london . in advert he says there is a leak in the room , but makes no mention of plans to fix it . location is excellent - close to local amenities and a stone 's throw from transport into the city .\ndash cam shows new jersey police officers saving a woman from her overturned convertible . they cut off her seat belt , then dragged her limp body away from the crash . not a minute later , flames licked out of the car . the woman was airlifted to a hospital and survived .\nedward snowden admits he did not read all the top-secret intelligence documents he leaked . the fugitive squirmed as he admitted only ` evaluating ' the files stolen from gchq and the us national security agency . he also acknowledged there had been a ` f *** - up ' when newspapers that were handed the classified material failed to redact sensitive details exposing operations against al qaeda .\nwatford can be promoted if one of bournemouth or middlesbrough lose and norwich fail to win . derby can secure a play-off spot if they win at millwall . preston can be relegated if they beat mk dons . burton albion can be crowned champions in league two . barnet will be promoted as champions in the conference if they defeat alfreton .\ncalf has been called nandi - a nickname for lord krishna - in northern india . he can only take in milk through two of his mouths and can only see to his sides . he is being fed three times a day at the dairy farm where he was born .\naction shot was taken at estavayer-le-lac in switzerland where jet surfing has taken off . the contraption can be seen leaping up above the surface , almost resembling scenes from the film back to the future . jet surf boards have a top speed of 33mph and weigh just 15kg .\nsnl skit about male student having sex with his female high school teacher painted the relationship as every teen boy 's dream . reaction reflected growing view among law enforcement and victims ' advocacy groups that it is no laughing matter when a woman educator preys on her male students . in u.s. schools last year , almost 800 school employees were prosecuted for sexual assault , nearly a third of them women .\n`` furious 7 '' is out friday . the film is the latest in the `` fast and furious '' franchise . paul walker died in a car crash in november 2013 . the movie is being released in the wake of his death . there have been multiple tributes to walker leading up to the release .\nblake cronkhite , 5 , and jayden secrest , 3 , were riding a kid-size 50cc atv on private property in rural placer county , california . the 5-year-old lost control of the vehicle and it plunged into a pond . blake 's father , brandon cronkhites , jumped into the water and pulled the children to shore , but they died . the boys were airlifted to a hospital , where they died sunday night .\nbenedict cumberbatch was challenged to a game by chinese ping pong legend deng yaping . the sherlock star was hosting the laureus world sports awards in shanghai . deng , one of the world 's most successful players , eventually beat him with a wooden spoon .\npm and his family were filmed eating breakfast at no 10 for itv news show . they were teased for appearing to confuse disney film frozen for a book . samantha cameron said : ` they take the mick all day long ' over breakfast . pm also spoke frankly about death of couple 's disabled son ivan in interview .\npaige vanzant and felice herrig had to be separated during the weigh-in . vanzants and herrig will face each other in the octagon in new jersey on saturday . vanzant is bidding to become the ufc 's youngest-ever champion .\npolice say a 26-year-old woman secretly delivered a baby in a bathroom stall at work , stuffed the newborn inside her bag and resumed her duties . staff at ceva logistics in michigan had no idea their co-worker had been pregnant until tuesday morning . the unnamed mother has not been arrested .\nthe new south china mall in dongguan is the biggest shopping mall in the world . it was once a `` dead mall '' but is now bustling with activity . the mall is set to re-launch in may , with most of its units leased to tenants .\nmodel manuela arbelaez accidentally reveals the correct answer to a guessing game . she wins a new hyundai sonata . host drew carey could n't stop laughing . arbelaez was mortified , but everything turned out ok . it 's been a busy week for `` the price is right ''\ngolden state warriors beat los angeles clippers 110-106 . stephen curry scored 27 points and klay thompson had 25 for the warriors . brooklyn nets beat indiana pacers to reclaim sole possession of eighth and final play-off spot in the eastern conference . tony parker scored 16 points in his 1,000 th nba game against miami heat .\naaron tate , 29 , and rachel jaajaa , 22 , charged with child endangering . police say jaajaa refused to take the baby because it was the father 's ` turn to have the baby ' and she had plans . jaajaan 's sister is now caring for the baby . tate declined to comment on the charges . the baby was found on friday night at a mcdonald 's in elyria , ohio .\nsophie english was adopted by an australian family when she was 10 months old . she was born at the height of the vietnam war and has never found her birth mother . she has been searching for answers for more than 40 years . ms english travelled to vietnam with abc 's foreign correspondent sally sara to find closure . she met another adoptee who has since found her mother and moved back to vietnam .\nthe wrinkle preventing pillowcase has ' a blend of hydrophobic fibres ' that help skin retain moisture . the $ 40 -lrb- # 26 -rrb- cloth cover is said to hydrate the face and prevent lines while you sleep . made by hammacher schlemmer , in canada , and comes with a lifetime guarantee .\nfreddie gray , 25 , was arrested on april 12 in baltimore and died a week later from a severe spinal injury . he was shackled and driven to the police station in a paddy wagon without being strapped into a seatbelt . ` nickel rides ' have caused spinal injuries in the past and baltimore police epartment rules were updated nine days before gray 's arrest stating that all detainees shall be strapped in by seat belts or other device .\nliverpool face aston villa in the fa cup semi-final at wembley on sunday . raheem sterling is wanted by manchester city for # 50million . brendan rodgers says a move to city would not be a step up . rodgers says it could take two decades for city to reach the status of liverpool or manchester united .\ntibor racsits , 42 , had gone to pick up his daughter kiara from the movies at charlestown square in newcastle , north of sydney , on sunday night . he was dragged across the road by at least three young men before being kicked in the stomach and head . his daughter can be heard screaming as she runs to help , but she is pushed from behind by a young girl and slams face-first into the concrete .\ntony abbott has said his country 's immigration controls have been strengthened . the australian navy is processing asylum claims while at sea . 46 vietnamese were rejected on board a navy vessel before being returned . the group was handed back to vietnam last week after being screened at sea .\nin 19th century collection , fossils of creature bearing ` striking ' similarity to depictions of nessie have been found in inverness museum . fossils belonged to writer and geologist hugh miller . scientists have revealed that the fossil may have lived at the bottom of the freshwater lakes that would later become loch ness .\nmanchester united beat aston villa 2-0 at old trafford on saturday . the win made it five wins in a row for louis van gaal 's side . juan mata says his side must take every game as a ` final ' united are currently second in the premier league table .\ndavid perry : freddie gray 's death raises questions about police use of force . he says police narrative says gray fled unprovoked , so that 's only reason for stop . perry : police must also have reasonable suspicion to conduct a search . perry says police have conceded that knife was not seen until the stop .\nmalky mackay was sensationally sacked by wigan athletic on monday . hibs boss alan stubbs is among the front-runners for the job . gary caldwell is expected to be handed the job on a temporary basis . former wigan player danny wilson is also under consideration .\nman from japan sent photos of his apple gadgets to cheating girlfriend . she dumped his imac , iphone , ipad and accessories in the bath tub . retweeted more than 15,400 times , the response has been mixed . english-language twitterers hailing it as ` the best revenge '\nhayley okines , 17 , died from progeria earlier this month . prince charles has led tributes to the girl dubbed the ' 100-year-old teenager ' in a letter to her parents charles described her as ` an inspiration to millions ' there are 74 known cases of progeria around the world and only 4 in the uk . hayley 's tiny turquoise coffin was carried into church by pallbearers .\nthai smile , a subsidiary of thai airways , unveils colorful new livery for `` adventure time '' the airline is partnering with cartoon network amazone to create the plane . the inaugural flight takes place on april 4 , heading from bangkok to phuket .\nhannah moore , 20 , from broxburn , west lothian , posted images of her post-pregnancy body . she claims her account was deleted ` within two minutes ' of posting them . site said images were deemed to contain inappropriate ` nudity and violence ' claims the rebuttal had taken her confidence away . instagram has come under fire for refusing to publish certain images .\nhashim amla has signed a short-term contract with derbyshire . the south africa test captain will play five matches for the club . amla will replace martin guptill , who has been called up to south africa 's test squad for the series against england .\ndenver broncos cornerback aqib talib and his brother yaqub are being investigated for aggravated assault . the incident occurred at a dallas-area nightclub on wednesday morning . talib was wanted on charges of aggravated assault with a deadly weapon in 2011 . he and his mother were accused of shooting a gun at his sister 's live-in boyfriend in garland , texas .\nthe teenager , who has been identified only as nuaman , was beaten and burnt with kerosene . he is recovering in hospital from burns to 55 percent of his body in lahore , pakistan . the two muslim youths approached the boy as they left friday prayers at their local mosque . they asked him what his religion was and then started beating him .\nroyal mail is to issue a set of stamps marking 200 years since the birth of anthony trollope . the novelist introduced post boxes to the uk in 1852 after seeing them in france . the first boxes were erected in jersey in 18 52 as a trial before appearing across mainland britain .\nnew york mayor bill de blasio says he wants to see an outlined vision of where hillary clinton plans to go with before giving up an endorsement . as campaign manager for clinton 's successful 2000 senate run , de blasio said on sunday it is important for clinton to define her campaign message . he also said he wants the candidate to outline her vision for addressing income inequality .\nfishing trawler karen was dragged violently backwards by a russian submarine . the karen was towed at 10 knots during yesterday 's incident 18 miles from ardglass on the south-east shore of northern ireland . it is the second time in two months that fishermen have reported being dragged by a suspected submarine .\nmet office predicts warmest temperatures for april , may and june of this year . but winds of more than 75mph were recorded in north wales today and snow was also reported to have fallen on high ground in northern england . forecasters predict temperatures could rise as high as 25c -lrb- 77f -rrb- by wednesday . friday saw hottest day of the year so far with 21.9 c -lrb- 71.4 f -rrb- observed at st james 's park in london .\nlabour has refused to commit to an extra # 8billion a year for the nhs . sir david nicholson said it was crucial that all parties backed the nhs 's five-year plan . the plan calls for a 7 per cent boost to the health budget by 2020 . david cameron and nick clegg have pledged to find the cash . but ed miliband has refused .\nmark cuban , taylor swift and arizona governor have urged people to get tested . david perry : there are many lab tests to order on yourself , but the primary effect wo n't be more health . he says if you feel well , do n't think that testing will make you feel better . perry : the food and drug administration needs to start worrying about snake oil .\ncornet player karen newton played the bugle call across the water 's edge at testers hollow in gillieston heights . the residents were unable to cross the water to attend an anzac day memorial service . the video has been viewed over 5,000 times on facebook . ms newton played as the sun rose over the water and remembered flood victim anne jarmain . ms jarmains car was swept away by flood water as she went to get milk .\nmargaret atwood says duchess of cambridge is cautious when it comes to clothes . she said she is told what to wear by advisers and dresses ` uneventfully ' the 75-year-old said kate has n't lived up to fashion icon reputation of princess diana . she is the latest high-profile female writer to attack the duchess 's image .\nproposal put forward by experts at nhs health scotland , the scottish government 's health promotions agency . move would apply in pubs , clubs , supermarkets and off-licences in scotland . if introduced , legal minimum age for buying alcohol would be higher in scotland than it is in the rest of britain , where it is 18 .\njay brittain , 63 , was worried that the baby owls at small breeds farm park and owl centre , herefordshire , look so similar at birth that he could end up overfeeding them . so he instructed workers at the farm to varnish the claws of each fluffy owlet using nail polish in their very own ` talon salon ' the first born tawny owl is given orange talons , the second hatched has theirs painted purple and for the third born , pink .\nnaked bodies of the alleged attackers were driven around garissa in a pickup truck . hundreds gathered to see the bodies at a primary school playground today . it comes as survivor cynthia cheroitich , 19 , who spent two days in a wardrobe is rescued . she was rescued after al-shabaab gunmen stormed garissa university college on thursday .\nhaley mulholland , 45 , became suspicious husband kevin was having an affair . she found messages from a neighbour suggesting he had an sti . mrs mulh holland put her husband on a sex ban until he admitted the truth . but after a lie detector test on the jeremy kyle show , he admitted cheating . she has now started to track her husband 's movements to make sure he is n't seeing other women .\nkaren buckley , 24 , from county cork , died of head and neck injuries . her death certificate was signed by her parents marion and john . alexander pacteau , 21 , appeared at glasgow sheriff court today . he was charged with murder of the irish student and attempting to defeat the ends of justice on april 17 . miss buckley vanished after a night out in glasgow 's west end earlier this month , sparking a four-day police search .\nbeatrice , 26 , looked glamorous in a black leather dress by joseph . the joseph a-line dress is currently sold out . we have found great alternatives below . beatrice was spotted out with boyfriend dave clark , 31 , last night . the pair were at shoreditch house , a hipster club in east london .\nlawsuit filed two weeks before april 30 nfl draft . erica kinsman claims she was raped by jameis winston in 2012 . she claims he assaulted and raped her at an off-campus apartment in 2012 . winston has denied the allegations and prosecutors declined to file charges . he also was cleared by the university following a two-day student conduct hearing last year .\nwarren weinstein , an american held by al qaeda , was killed in a u.s. drone strike in january . the u.s. government made no serious effort to negotiate for his release , a senior official says . a senior pakistani official says the pakistani government put out feelers to members of the militant haqqani network .\naiko chihira , a toshiba android , is a temporary employee at an upscale tokyo department store . toshiba says chihiras can speak in sign language and even sing . japan is testing out robots as a possible solution to the country 's shrinking workforce . a growing number of japanese businesses are testing out the robots .\nfernando hierro says that real madrid can win the champions league for a second successive season . the real madrid assistant coach believes that winning the competition is in the club 's dna . carlo ancelotti 's side face city rivals atletico madrid in the quarter-finals .\nrebecca calder , 24 , drained up to # 300 a day from disabled victims ' accounts . went out drinking on same night she used victims ' bank card to withdraw cash . calder posted regular partying pictures of facebook not knowing family . family installed a spy camera and filmed her taking cash . today calder was jailed for 12 months after she pleaded guilty to theft .\nthe duchess of cambridge has worn seraphine during her two pregnancies . the online and high street firm has seen sales double in two years . among the most popular royal choices was a # 195 mist-blue cashmere coat . kate wore the coat to a series of engagements in kensington in january .\nthe singer went bra-less to eat at a restaurant in santa monica this weekend . she is one of a number of celebrities who are ditching their underwear . rita ora and nicole scherzinger both left the bra at home recently . kim kardashian and scout willis also went braless on night out .\npolice hunting man aged between 50 and 60 suspected of robbing a bank . robbery took place at a lloyds bank branch in fairwater , cardiff . detectives have issued cctv images of the suspect , who is 5ft 9in to 6ft . he is 5 ft 9in-6ft and was wearing black clothing at the time of the robbery .\nchris brugger , 35 , has relapsed with hodgkin 's lymphoma . he is receiving non-taxpayer subsidised treatment for his disease . the treatment , brentuximab vedotin , ca n't be distributed on the pharmaceutical benefits scheme . chris has launched a ` my name is chris ' campaign to raise money for the treatment . the campaign has raised over $ 22,000 so far . the brugger family attended a senate inquiry on monday in canberra .\nmercedes driver lewis hamilton took pole position for the bahrain grand prix . the brit beat ferrari 's sebastian vettel by four tenths of a second . hamilton has now won four poles out of four races this season . mercedes team-mate nico rosberg was third on the grid . jenson button 's mclaren broke down during qualifying and he will start 20th and last .\nthe four sisters caught in the middle of a battle between their parents have told their side of the story . claire , emily , christine and lily vincenti were taken from their italian home by their mother in 2012 . their mother , laura garrett , had australian passports made for the girls and fled to australia . she claimed she had to escape her abusive partner , tomasso vincenti . the sisters were returned to italy in 2012 , after ms garrett 's story fell apart . the two eldest girls , claire and emily , told 60 minutes ' tara brown they had moved on from the ordeal .\ndawn marie davies warns sunbed users could be at risk of contracting herpes . the sexually transmitted infection is highly contagious . it spreads from one person to another via skin-to-skin contact . when a person sweats , it provides a breeding ground for bacteria or viruses . bacteria that lies on a person 's skin can easily be transferred to the bed .\naverage heterosexual couple now having sex three times a month , research shows . this is compared to four times a year in 2000 and five times a week in 1990 . professor david spiegelhalter , a cambridge university statistician , says people are checking their emails ` all the time '\nbarcelona beat paris saint-germain 3-1 in champions league quarter-final . luis suarez scored twice in the first half at the parc des princes . psg boss laurent blanc made no excuses for his side 's performance . blanc said his side were superior to barcelona ` in virtually every department '\nrepresentatives from comcast and time warner cable plan to meet with us department of justice officials on wednesday . meeting would aim to negotiate concessions related to antitrust concerns over their planned merger . staffers at both the justice department and the federal . communications commission remain concerned the combined company . would have too much power in the internet broadband market .\nkathryn beale , 41 , is part of a cottage industry that prepares fresh placenta . she whizzes it into smoothies or grinds it into pills for women convinced of its health benefits . mothers say eating placentas has helped to increase milk supply and reduce bleeding . celebrities who have eaten their own placentes include january jones and alicia silverstone .\none direction star , 23 , was seen rolling a ` suspicious ' joint in his hotel room in london on wednesday night . he was seen leaving cirque le soir nightclub in the city at 4am , before returning to his hotel with a group of five girls . newly-released snapchat images show him in his room with friends in the early hours of thursday morning .\nchannel islands heritage festival celebrates 70 years since liberation . guernsey , alderney , jersey , herm and sark will unite for the event . the island archipelago was under german occupation for half a decade . the festival will be held in st peter port and st helier .\ngrammy-winning passenger graeme finlay , 53 , denies attacking couple . accused of attacking ronald and june phillips on thomson cruise ship . claims he was attacked by mr phillips with his crutch after row over silence . claims mr phillips threw a cup of cocoa in his face and hit him with the crutch .\nmail online travel reveals the best things to do with a layover at an airport . turkey hunting is allowed in designated areas around the st. cloud regional airport , in minnesota . san francisco international airport has two rooms dedicated to yoga . singapore airport offers travellers a free two-hour city tour .\npatrick lyttle , 31 , was left in a coma after being punched in kings cross in sydney 's inner-city on january 3 . his brother barry , 33 , pleaded guilty to causing grievous bodily harm . barry was given a 13-month suspended jail sentence on friday . magistrate graeme curran said barry was of good character , remorseful and unlikely to re-offend . patrick spent six days in an induced coma before making a remarkable recovery .\nandrew caldwell claimed last year that god had cured him of homosexuality . but he was attacked by a froyo cashier who he says recognized him . the woman , stephanie diaz , threw a bowl of yogurt in his face . caldwell said he was doused in the dessert and called her a ` dog ' diaz , who is openly gay , said it had nothing to do with the viral video . she has been charged with third-degree assault .\nthe earthquake that struck nepal was a ` nightmare waiting to happen ' , experts say . the country is under constant threat of earthquake of natural disaster . but experts claim its shoddy infrastructure and poor building standards make the country much less equipped to deal with the aftermath of major incidents . a week ago , 50 earthquake scientists from country the world met in kathmandu to discuss how the area would cope with such disaster .\nmartin odegaard joined real madrid in a # 2.3 m deal in january . the 16-year-old has been dropped by the club 's b-team castilla . the norwegian is said to be on a different wavelength to his team-mates . zinedine zidane is desperate to see castilla promoted .\nuu navy hopes roof mounted laser will be the answer to enemy drones . ground-based air defense directed energy on-the-move program . system will be able to spot and track drones , then shoot them out of the sky using a 30kw laser . system is being designed for use on light tactical vehicles such as the humvee and joint light tactical vehicle .\ntwo-bedroom log cabin in newgrounds , near godshill , hampshire , is on the market for # 350,000 . the 76sq ft hideaway is made entirely from timber imported from norway . it has 141,000 acres of forest surrounding the cabin , which is worth twice as much as a similar bolthouse in the same area .\njack grealish impressed in aston villa 's 2-1 fa cup semi-final win over liverpool . the 19-year-old is wanted by the republic of ireland and england . tim sherwood wants grealishes to focus on his aston villa career first .\nirwin horwitz wrote an email to his students at texas a&m galveston campus . he accused them of `` backstabbing , '' `` game playing , '' `` lying , fighting '' and `` backtalking '' he said he would fail the entire class and would no longer teach the course .\nmanchester university issued a statement advising students at its north manchester campus , some 36 miles west of fort wayne , to shelter in place . indiana state police and a bomb squad responded to the incident , though left after deciding that it should be investigated as a likely prank call . police said they received a phone call from someone saying that they had stabbed their roommate at the university , was armed with a shotgun and threatening to blow up the administration building .\nreal madrid beat granada 9-1 in la liga clash at the bernabeu . cristiano ronaldo scores hat-trick , karim benzema also on target . gareth bale and diego mainz score own goal for real . robert ibanez scores granada 's consolation goal .\ntony lopez lozano , 35 , was charged with the august 2013 murder of his boyfriend , brian romo , after fatally stabbing romo in the heart following an argument at their oregon city home . loziano pleaded guilty to first-degree manslaughter as part of a plea deal and , on monday , a judge sentenced him to 10 years in prison . the victim 's mother , kathleen tapia , said that 's not long enough .\nformer illinois governor rod blagojevich , 58 , has been photographed with his still full head of hair a shocking white color rather than the boot polish black that was his trademark as a politician . he was infamously caught trying to sell barack obama 's u.s. senate seat when he was elected president in 2008 . blagojevich is currently serving a 14-year sentence at the federal correctional institution englewood near denver .\nthousands of people gather on boats to pray for good fortune . the water temple fair in jiangnan , china , commemorates an ancient hero . fishermen from the area take their boats out for show . the net boat fair showcases the unique culture of jiangnan water people .\nthe north sea has warmed four times faster than the global average . and further warming is predicted over the coming century . this means the abundance and distribution of popular fish could fall . as a result uk fisheries will need to replace current species . these include john dory and red mullet , for example . and this could increase the price of fish and chips .\nnicola adams is hoping to become a double olympic gold medallist in rio next year . the 32-year-old is preparing to return to an english ring for the first time since her london 2012 triumph at the national championships in liverpool next week . adams insists she has no plans to retire after the rio olympics . natasha jonas announced her retirement from boxing on april 7 .\nwashington state representative jesse young wants to link bremerton and port orchard across the sinclair inlet . he wants to use two or three carriers as a bridge . the us navy is storing three retired carriers just a few hundred yards from the proposed site of the bridge . a navy spokesman said the uss independence and the uss kitty hawk are not ` currently available '\ngertrud tiefenbacher 's hands had been tied with a typewriter cord . a towel was placed over her face and she was suffocated , say police . her body was found by other nuns at the sacred heart missionary in ixopo .\ndinosaur was found in southern chile and is called chilesaurus diegosuarezi . palaeontologists are referring to it as a ` platypus ' dinosaur because of its bizarre combination of characteristics . it has a small skull and feet , which are more like those seen on long-neck dinosaurs . it also has leaf-shaped teeth , similar to those of primitive long - neck dinosaurs . most unusually , the animal was a vegetarian , despite belonging the theopod family of dinosaurs , which were mostly fierce meat eaters .\nsandy dee hall , 34 , and his girlfriend maxine cher , 24 , adopted smokey da lamb after he was abandoned by his mother . the lamb has been living in sandy 's lower east side apartment since he was smuggled in from upstate new york . but city officials have now demanded that he is sent back to the farm .\na new report has claimed nasa can afford a mission to mars in 2033 . it would take astronauts into orbit around the martian moon phobos . this would lead to a landing on the red planet 's surface in 2039 . the planetary society analysed the feasibility and cost of the plan . it concluded that such a plan could fit within nasa 's budget . but the report said politics is holding the decision back .\nprosecutors release details of a survivor 's account of a boat carrying 950 people . the boat capsized in the mediterranean , sending the passengers into the sea . the bangladeshi migrant says smugglers locked the doors , prosecutors say . malta 's prime minister calls the tragedy `` genocide '' and slams human traffickers .\nneil killham made the infamous shepherds pie-trifle combination . the dish was immortalised in popular tv show friends 16 years ago . it features sponge , jam , custard , lamb , peas , onions , whipped cream . neil , 32 , from manchester , said it tasted ` f ****** horrible '\n` shameless liar ' andrew o'clee , 36 , was jailed for eight months for bigamy . his first wife michelle , 39 , found out about his affair when she saw facebook video . she reported him to police after finding photos of his lavish wedding . now it has emerged he may have been on the prowl for wife number three . a dating profile matching his description was discovered on plenty of fish .\nphotographer martin beck 's latest project is called we can be heroes . he has taken portraits of superheroes who have retired from crime . the series shows how they are now focusing on everyday life . the dubai-based artist says there is a very important message to his work .\nukip leader tells itv 's julie etchingham about his childhood in deal , kent . reveals he enjoyed skinny-dipping in the english channel as a boy and ` youthful excess ' reveals his father left home when he was just five and he ` always questioned authority ' revealed he plans to go on and on as ukip leader until 2030 .\nkate winslet , 39 , has big feet and wears a size-nine shoe . titanic co-star leonardo dicaprio referred to them as ` my canoes ' average shoe size in the uk has risen from a dainty 4 1/2 in 1900 to a roomy six .\nduke of kent spotted leaving aberdeen royal infirmary with walking stick . queen 's cousin , 79 , injured himself while staying at balmoral estate . taken to hospital on easter monday and spent a night in hospital . buckingham palace said he had been ` successfully ' treated for dislocated hip .\nczech immigrants trafficked into the uk by a roma family , court hears . they were promised a ` better life ' but forced to work for free , jury told . workers were kept under duress amid fears for their safety , jury hears . ruzena tancosova , brother petr tancos , cousin martin tancos and nela dzurkova are on trial for people trafficking . all deny the charges at plymouth crown court .\ngary neville believes manchester city have a ` mentality problem ' former manchester united defender says city can not sustain success . manuel pellegirni 's side are nine points behind chelsea in the premier league . city lost 2-1 to crystal palace at the etihad stadium on monday .\npilot culls in somerset and gloucestershire should be completed by trapping the badgers in cages and then shooting them , says the bva . it concluded that the first two years of culling had not demonstrated conclusively that ` controlled shooting ' of free-running badgers could be effective and humane . environment secretary promised to roll out more culls across the country if the tories win the election .\nmanchester city have laid on six coaches to take fans to selhurst park . the champions face crystal palace in the premier league on monday . around 3,000 fans will be able to travel on the coaches for the game . hundreds of thousands of football fans are facing a travel nightmare this weekend because of the easter rail shut down .\nlawyer miriam gonzález durántez wore bright pink outfit to awards . she was at ldny fashion show and wie award gala at goldsmiths ' hall . the 46-year-old is the wife of deputy prime minister nick clegg .\nrogue one is the first of three standalone star wars films . director gareth edwards revealed a glimpse of the film at the star wars celebration in anaheim , california , on sunday . the film will follow a band of resistance fighters who unite to steal the death star plans and ` bring a new hope ' the film is set between the third and the fourth movies in the ` star wars ' saga .\nraheem sterling is in a contract stand-off with liverpool . sterling rejected an offer worth # 90,000-per-week from the reds . the 20-year-old has been abused by his own fans . but sterling says he is not affected by the criticism . he says he pays no attention to the criticism and is just focused on football .\nkim richards stormed out of an interview with dr phil mcgraw after a highly emotional discussion of her alcoholism , daily mail online can exclusively reveal . the hysterical real housewife broke down in tears and went into full meltdown as observers revealed she bolted from the room . witnesses heard her scream ` f *** ' , and other obscenities when she ran out of the room and down the hall . richards , 50 , was arrested last week and charged with public intoxication , trespassing , resisting an officer and battery on a police officer .\nscotland guard shaun smith , 25 , stamped 18 times on victim 's head . fellow soldier jason collins , 22 , rained blows on to the man 's body . pair had been drinking near catterick garrison in north yorkshire . judge james hill said he decided to show mercy after hearing glowing tributes and being told the army was keen to keep them . smith given 12-month suspended sentence and collins given 12 month community order .\n150 art fans have taken part in a nude gallery tour . the tour was held at the national gallery of australia on wednesday night . it was the first ever naked art tour in australia . the tours are led by melbourne-based artist stuart ringholt . he said that the experience creates an ` educational state ' for viewing the art . the exhibition is called ` james turrell : a retrospective '\nmanchester city are six points clear at the top of the premier league . city overtook liverpool with one game to play last season . sergio aguero 's injury-time winner in 2012 sealed city 's first title . crystal palace host city on monday night . alan pardew has no fresh injury concerns ahead of the match .\nalannah hill has been diagnosed with an invasive malignant melanoma . the tasmanian-born designer was diagnosed with the cancer after breaking her foot . she has had part of her toe removed and a skin graft from her inner thigh . she is taking a three-month break from her new clothing label - louise love . hill is telling her story to warn others about the disease .\nvilla held to a 2-2 draw at home by qpr in the premier league . charlie austin and christian benteke scored for the visitors . qpr boss chris ramsey praised bentekes hat-trick . tim sherwood was disappointed with his side 's performance .\nmanchester city are set to make yaya toure available this summer . the premier league champions will listen to offers for the ivorian . inter milan are interested but there are doubts over their ability to afford him . city will resist any attempt by valencia to pull out of a # 24million deal for alvaro negredo . the spanish club are looking at radamel falcao as a replacement .\nwomen 's team competed alongside men for the first time in 161st boat race . oxford university women 's team beat cambridge in historic race . women 's race has been held since 1927 further up river at henley . after years of campaigning for equal billing , they were finally given equality .\nfilm crew shooting documentary lair of the megashark were just off new zealand 's stewart island . they attempted to put a camera on the dorsal fin of the massive ocean predator . the men can be seen panicking as the great white uses it 's strong jaws and tail to shake the boat . images of the footage have been posted online by groups who want to ban shark diving .\ncounter-terrorism police search an noor community centre in west london . they also visit home of burnell mitchell , 61 , a director at the centre . mr mitchell is a director of the building where abdul hadi arwani used to preach . mr arwari was found dead in his car on a street in wembley last week . leslie cooper , 36 , has appeared in court charged with his murder .\nedinson cavani 's agent claudio anelucci says a move to england is a possibility . manchester united are monitoring the situation at paris saint-germain . cavani is reportedly fed up of playing second fiddle to zlatan ibrahimovic . united are thought to be interested in cavani to replace robin van persie .\nchelsea could make a move for atletico madrid centre back miranda . the blues technical director michael emenalo travelled to spain to watch the defender . miranda has one year left on his contract and atletico are keen to cash in . the 31-year-old has also been offered to manchester united and manchester city .\npoll by yale university found that 52 per cent of americans are worried about global warming . but this national number glosses over the geographic diversity of the us . concern about globalwarming ranges from an estimated low of 38 per cent in pickett county , tennessee , to a high of 74 per cent . hawaii , california , vermont and massachusetts are the four states that are most worried by climate change . click on the interactive map below to find out which regions think global warming is happening . just over 60 per cent believe global warming has taken place .\nstephen taylor , 54 , left lee-on-solent in hampshire at 11.30 am yesterday in his kayak . he was in touch with his partner michelle fuller throughout the day . but when he failed to return home late in the evening she alerted police . coastguard helicopter , rescue teams and lifeboats launched to search off hill head . police revealed shortly after midday today that a body had been found .\nowen farrell is hoping to be fit for saracens ' champions cup semi-final clash against clermont on april 18 . the fly-half has been out of action since he suffered a knee ligament injury against the same opponents in january . farrell missed the entire rbs 6 nations campaign as a result .\nethel rider , 87 , was being turned by susan logan , 59 , at half acre care home in radcliffe . she fell from bed and broke her pelvis , but carers failed to call an ambulance . logan and supervisor lauren gillies , 25 , lied about what had happened . judge branded them ` idle ' and jailed them for six months each at bolton crown court .\nabc released a fourth promo video on thursday on the eve of bruce jenner 's sitdown interview with diane sawyer . the 65-year-old former decathlete is seen greeting sawyer at his home . he tells the journalist : ` it 's going to be an emotional rollercoaster , but somehow i 'm gon na get through it ' video then shoots to footage of bruce 's older children ; burt , 36 and casey , 34 , along with brandon , 33 , and brody , 31 .\nmindy kaling 's rep said the comedienne has been estranged from vijay chokal-ingam ` for years ' and was not aware of his decision to apply to medical school under a different name and race . chokal-ingam claims he changed his appearance to get into the st. louis university school of medicine in 1998 . he claims he was only granted admission because he was black . he has now released a book , almost black , about his experience .\ncristiano ronaldo scored five goals in real madrid 's 9-1 win against granada . the portuguese forward 's haul took his tally in la liga to 36 for the season . he has scored more goals than 53 of the 98 teams in europe 's top five leagues . nine premier league teams have managed fewer goals than ronaldo .\nwayne rooney was spotted filling up his # 100,000 range rover . the england captain was seen driving to training at carrington . manchester united lost 1-0 to chelsea in the premier league on saturday . eden hazard scored the only goal of the game in the first half .\nthiago alcantara kicked stefan kiessling in the chest during extra time . the spaniard 's kick went unpunished and he later scored the winning penalty . bayern munich beat bayer leverkusen in a penalty shootout to reach the german cup semi-finals .\nspanish researchers say climate change impacted human migration . until 1.4 million years ago it was too cold for hominins to inhabit southeast spain . but then the climate warmed to 13 °c -lrb- 55 °f -rrb- and became more humid . this enabled hominin - our distant ancestors - to move to new regions . but as conditions warmed , they were able to branch out from africa into spain . and ultimately spread across europe .\nburt hazeltine , 36 , was directing school buses in suburban new orleans when he was shot three times in the face , elbow and eye . st charles parish sheriff greg champagne says the shooting was sparked by an argument over traffic . suspect paul devillier , 56 , was arrested after a brief ` tussle ' with officers .\nrodrigo gularte , 42 , was shot dead alongside australians andrew chan and myuran sukumaran in indonesia on wednesday . the brazilian national was a paranoid schizophrenic who did n't realise he was being executed until his last moments of life . father charlie burrows said he talked to gularte for an hour and a half late on tuesday night to prepare him for the executions . the convicted drug trafficker was confused about his fate and complained about hearing voices . gularte was arrested in 2004 for attempting to smuggle six kilograms of cocaine into indonesia .\na 2-year-old milwaukee boy was killed in an accident at his birthday party . the boy 's older brother , 15 , and the driver of the van were also shot . the suspect , ricky ricardo chiles iii , committed suicide in a chicago-area hotel , police say .\nshona banda is fighting for custody of her 11-year-old son after he disagreed with an anti-drug presentation at his school . the department of children and families contacted police who went to banda 's home . she did not give authorities consent to search her home , but they returned several hours later with a warrant and discovered marijuana in plant , oil , joint , gel and capsule form . the boy was given temporarily to his father , who is separated from banda , but returned to state custody on thursday ahead of the hearing . banda wrote a book about how she uses a liquid form of cannabis as therapy for crohn 's disease .\ntesco announced a record annual loss of # 6.38 bn yesterday . it is the largest ever declared by a british retailer . the supermarket giant is under pressure to axe 200 stores . it has already closed or cancelled 100 stores . retail experts and mail writers identify what went wrong .\ndiego simeone played for argentina against england in the 1998 world cup knock-out match . the 44-year-old midfielder was shown a red card for kicking out at david beckham . sime one is hoping to lead atletico madrid to second successive champions league final . real madrid face atletico in the quarter-final second leg on wednesday .\nliu siying was pictured grimacing as lewis hamilton sprayed champagne at her face after winning the chinese grand prix . the 23-year-old was a ` podium girl ' at the race and was pictured looking less than impressed . campaigners have called for hamilton to apologise for his ` selfish ' behaviour . but siying said she was n't offended by the incident and was just doing her job .\ngov. mike pence said he will `` fix '' indiana 's religious freedom law . julian zelizer : the easy way to fix it is to add a line saying discrimination is harmful . he says the law should be protected unless there is a compelling governmental interest . zelizer says the bill was passed in 1993 , before the national conversation on lgbt rights .\na memorial service for stephanie scott will take place on wednesday . the 26-year-old teacher from leeton , nsw , disappeared on april 5 . her body was found in cocoparra national park on april 10 . her funeral will be held at the venue intended for her wedding . her sister kim has shared a photo of her as a little girl . she asked everyone to ` show your support ' at the service .\neating disorder data offered by firm linked to sale of nhs patient data . also offered to supply names of those suffering from stress , hair loss , dandruff , impotence and snoring . details of dieters and those who have had plastic surgery appear on the list . the mail has this week exposed companies that have secretly sold private financial and medical information without proper checks .\n1 in 10 americans suffering from anger issues has easy access to guns , study finds . 3.7 million confessed to carrying weapons outside of the home . majority of angry gun owners were young or middle aged men , study found . study was carried out by harvard , columbia and duke university .\nmanchester city are considering a summer move for jack wilshere . the gunners midfielder has been linked with a # 30million move to the etihad . wilsheres injury record has hampered his career so far . but he would be a perfect fit for arsene wenger 's style of play .\nkyle major punched father-of-two paul walker in the back of the head in unprovoked attack . paul walker , 52 , was found face down in a pool of blood in the early hours of new year 's day . teenager followed victim who had just asked his group of friends for directions . he was ordered to be detained for three years at preston crown court today .\ntwo best mates from rural victoria have vowed to keep aussie lingo alive . jeff mccubbery and ian bullock devised the plan for captain cootie cards over twenty years ago . the pair now has a quirky range of greeting cards , coffee mugs , stubby-holders and calendars . but their hopes of spreading the message were dashed after they were spurned by the companies they pitched their products to .\nwigan athletic have appointed gary caldwell as their new manager . the 32-year-old has been at the dw stadium since 2010 . caldwell will take charge for the first time against fulham on friday . malky mackay was relieved of his duties after defeat by derby .\nfloyd mayweather pays up to $ 1,000 per plate for food cooked by chef q. adrien broner also feasted on the food at mayweather 's mansion in las vegas . chef q , also known as quiana jeffries , has helped mayweather with his strict organic food diet . mayweather faces manny pacquiao in the biggest fight in boxing history on saturday .\njackson byrnes was diagnosed with a stage four brain tumour three weeks ago . he was told he had only weeks to live and was told the only surgeon in australia willing to perform the risky operation was dr charlie teo . on wednesday , the 18-year-old underwent a risky operation to remove the tumour on his brain . his family are ` over the moon ' that the surgery was a success . jackson woke up from the surgery with the ability to move his body and even to ask his relieved mother for food .\nerik meldik posted video of his painful prank on youtube . his girlfriend dominika petrinova was furious at his previous stunt . she decided to exact revenge by gluing wax strips to his genitals . the 27-year-old blindfolds her boyfriend before leading him to the chair . she then blindfasts him and puts him naked on the booby-trapped seat . mr meldk cried and screamed as he tried to free himself from the chair .\ncate mcgregor spent 40 years in the army , most of those under the name malcolm . in 2012 , after years of drowning agonising pain with alcohol and drugs , mcgregor stopped ` functioning ' as a man and chose to live as a woman . she tried to resign from the office of former chief of army david morrison when her transformation became public . mr abbott publicly backed his friend by introducing her on abc 's australian story . ms mcgregor said she is ` sad ' that mr abbott is not a supporter of gay marriage .\nchristopher marinello has tracked down # 250million worth of stolen art in past two decades . london-based founder of art recovery international has recovered priceless works by picasso , renoir and matisse . he is representing heirs of art dealer paul rosenberg in bid to recover henri matisse 's 1921 femme assise found in squalid munich flat .\nfamily pay tribute to ` daring and determined ' boy who died in the alps . carwyn scott-howell may have entered woodland because he thought it was a shortcut to his hotel in the ski resort of flaine . he was on holiday with his mother ceri scott - howell , nine , sister antonia and brother gerwyn , 19 .\nmatthew hall , 25 , scaled walls of trendy apartment blocks in manchester . he hid on balconies of his victims , asking ` am i scaring you ? ' and ` can i come in ? ' he walked into one victim 's bedroom as she slept , making off when she switched light on . hall has been banned from the northern quarter district for five years .\neric isaiah adusah has been charged with the murder of his wife charmain . the 41-year-old was found face-down in a bath at a hotel in koforidua . her brother paul said it was ` an outrageous lie ' to say his family were addicts .\none direction star niall horan among those to pay tribute to bbc broadcaster . colin bloomfield died yesterday morning after battle with skin cancer . the 33-year-old worked at bbc radio derby for 10 years as a presenter . he was also a derby county commentator and a shrewsbury town fan .\nemily grimson , 25 , from shropshire , has been modelling for a year . she 's appeared in tv ads , magazine ads and product videos . the former beauty writer moisturises her hands up to ten times a day . she says she loves hand modelling and can make up to # 100 an hour .\narchbishop of canterbury justin welby will say 148 students slaughtered by somali gunmen on thursday were ` witnesses ' to their faith . his comments follow pope francis 's denunciation of the ` senseless ' killings at garissa university college .\nformer hewlett-packard ceo is expected to announce her presidential bid on may 4 , according to the wall street journal . fiorina 's spokeswoman told daily mail online that it 's just a rumor at this point . she is scheduled to make the rounds in the early presidential primary states where other likely presidential hopefuls have turned up . fiorina also has a book scheduled for release on may 5 . she wants to be the conservative balance to democrat hillary clinton when americans consider electing their first female president .\nresearchers said runways could be synced with taxiing aircraft , to help capture birds ' attention before an aircraft takes off . the study was conducted by scientists at purdue university in indiana . they were investigating how to reduce bird to aircraft collisions by keeping birds away from planes . research showed that birds responded most to blue lights on planes . when the plane was stationary , the birds became alert more quickly when the lights were on . but when it approached them with its lights off , their response slowed . and they only became more alert when the light was turned on . authors suggest that runways can be synched with aircraft to alert birds to incoming planes and avoid collisions .\nbritish jihadis have posted pictures of junk food and drinks smuggled across the border . they include burgers , chocolate , pringles , oreos and even pre-mixed mojitos . twitter users have condemned the hypocrisy of the fighters ' diet . four britons arrested on suspicion of trying to cross illegally into syria were arrested yesterday .\nunseen images show captain scott 's doomed expedition team setting off . pictures show ponies and husky dogs used on 800 mile trek to south pole . pictures were taken by official photographer herbert ponting . they were sold at auction for # 36,000 to an unnamed buyer . scott and his polar party died on return journey after enduring dreadful conditions .\noscar posted a picture of himself swigging from a bottle of sweets on instagram . the chelsea forward has a capital one cup medal to his name this season . oscar scored in brazil 's recent 3-1 victory against france in paris . juventus scouts were present at the stade de france to watch oscar in action .\ndaisy , 26 , poses in leather and heavy eye make-up for rodial . models the brand 's contouring range . femail caught up with the model to discover her style secrets . daisy was chosen by the brand last year thanks to her ` cool edge '\ntestosterone does n't always get a good press . everything that 's unpleasant about male behaviour is ascribed to testosterone . yet , as joe herbert explains , testosterone is at the heart of human life . it begins its influence in the womb as it helps to shape the distinctive characteristics of the male body .\nmanchester united face aston villa in the premier league on saturday . robin van persie is out of the game with an ankle injury . luke shaw has recovered from a hamstring problem but chris smalling is a big doubt . jonny evans is out for aston villa with a six-game ban . ron vlaar is expected to make his aston villa return against manchester united .\nabedin was spotted leaving capital city fruit in norwalk , iowa on wednesday ahead of hillary clinton . she and clinton were last spotted together on monday at an ohio chipotle . abedin has known clinton since 1996 and was her deputy chief of staff when she ran for president in 2008 . she is married to disgraced former new york democratic congressman anthony weiner , who resigned from congress in 2011 . abedin had an email address on clinton 's private server , and was allowed to work part-time at a consulting firm while earning a government salary .\ntony blair has been dragged into a row over gold mining plans . the former british premier made an unannounced visit to ulaanbataar last month . he is a consultant to the cash-strapped government , which is dogged by allegations of endemic corruption . ecologists fear a mining boom in the region could destroy sacred treasures .\ntennis legend andy murray and his girlfriend kim sears wed in dunblane , scotland . the wedding was dubbed `` the royal wedding of scotland '' crowds of people braved rain and snow to watch the ceremony . the couple met at the u.s. open in 2005 and got engaged in november last year .\ngroup of young men in afghanistan pledge allegiance to isis . u.s. officials have voiced their concern about potential for an isis presence . isis is trying to recruit disillusioned taliban in several areas around the country 's east and south . afghan president ashraf ghani calls isis a `` terrible threat ''\nwashington family heard a strange man 's voice on their 3-year-old son 's monitor . they heard : ` wake up little boy , daddy 's looking for you ' the family believe a stranger has also got into the camera on the device . technology experts have warned that it is becoming easier for hackers to infiltrate family 's baby monitors as many of the newer devices connect to the internet .\nimages of the watch 's circular face were unveiled as part of an announcement about samsung 's upcoming developer scheme . samsung 's previous watches have all had rectangular faces , or in the case of the gear s , a curved design . motorola , huawei and lg currently offer round watches , while the pebble steel and apple watch are square .\ncristiano ronaldo scored five goals in one game for the first time in his career . real madrid beat granada 9-1 to keep their title hopes alive on sunday . jeremy mathieu scored a diving header as barcelona beat celta vigo 1-0 .\njacksonville , florida photographer kristina bewley took her daughter giselle to disney world for the first time last september . gisellle has been visiting the park monthly since then and wears a different princess outfit every time . kristina is so inspired by her daughter that she started a facebook page called giselle 's garden that features her 4-year-old princess in her whimsical attire .\nforeign minister julie bishop caught up with jimmy choo over the easter holidays in perth . she was in the city to meet the families of sas members . the shoe designer is in australia for his first ever masterclass . ms bishop is a huge fan of the malaysian designer 's pieces . she often wears his designs to parliament and is a fan of louis vuitton and christian louboutin .\nuefa general secretary gianni infantino says there will be no choice but to suspend greece from international football . the greek government have proposed new laws banning teams from european competitions . infantinos says football does not allow government interference . greece 's deputy sports minister stavros kontonis says the supervision exercised in greek football by fifa and uefa has failed .\na road rage incident was caught on camera in maryland , with a man savagely beating an elderly truck driver . the aggressor is seen on video as he throws and punches the old man along the side of route 95 near baltimore , maryland . tommy solis , who filmed the incident , drove by with a friend , and tried to break up the fight . the man refused to stop and got in the face of solis ' friend , who clocked him and left him out cold on the side .\nbrian cassidy , who works at a walmart in bangor , maine , found the cash while picking up trash last thursday . he immediately called store security and they contacted the police . an officer learned that a man had lost $ 4,000 in the parking lot last winter . he went to the man 's restaurant and the man returned the money . cassidy was thanked for his honesty and given a police coin .\ndaniel sturridge hopes raheem sterling stays at liverpool . sterling is stalling on a new # 100,000-a-week contract offer . the 20-year-old has been linked with a number of europe 's top clubs . sturridge believes sterling will only be happy if he plays regularly . the england striker is hoping to return to his best form after injury .\nbaby was found in disabled toilets at silcock 's amusement arcade in southport . police believe the girl was delivered at the arcade hours before she was discovered . officers say they have traced the mother to an address in the merseyside area . baby april has been named by hospital staff as ` safe and well '\nbrendan rodgers has reminded raheem sterling and jordon ibe of their professional responsibilities . the liverpool duo were caught smoking shisha pipes on monday . liverpool boss rodgers has n't disciplined sterling or ibe for the incident . reds face aston villa in the fa cup semi-final at wembley on sunday .\nskeletons of two people were found on top of one another in a tomb in south korea . the tomb dates to between the 5th and 6th century and is from silla dynasty . it 's thought that the tomb was intended for a noblewoman and her lover . the man is believed to be a human sacrifice and his bones are on top . some experts say the set-up was designed to imitate sex . but others say it could have been designed to show two people having sex .\na team of researchers studied the asteroid impact 66 million years ago . they found the heat near the impact site in mexico was not intense enough to ignite plant material . a heat pulse lasted less than a minute , too short to set plants alight . the core they hope to retrieve will allow them to look back in time 10 million to 15 million years into the past . it could help uncover exactly what happened to create the crater - and if it killed off the dinosaurs .\npresident obama met world-class sprinter usain bolt in kingston , jamaica on thursday . he praised the six-time olympic champion saying ` nobody 's ever been faster than this guy ' obama then asked bolt to show him his signature ` lightning pose ' before the pair joined in . bolt posted the video of the encounter on instagram and said it was ` truly a great honor ' to meet the u.s. president .\nmei ru , 50 , and her husband song ming , 53 , were going shopping in fuzhou , china . she parked the car and he climbed out the passenger side before she reversed over him . cctv footage shows her reversing over him as he stood behind the car . he was rushed to hospital but died from massive internal bleeding and broken ribs .\nmegan sheehan , of san francisco , was arrested by bart officers in a station on st patrick 's day of 2014 . she was booked into santa rita jail for resisting arrest , battery on a police officer and public intoxication . sheehn claims she was guided to the ground after ` violently punching ' bart and oakland police say she resisted and tried ` violently punching ' sheehill was knocked unconscious and suffered four broken cheek bones , a split molar and a cracked front tooth .\nbroga is a ` rugged ' take on the 3,000-year-old yoga practice . it is designed for men who are more likely to be flexible . experts say it helps with flexibility and strength training . more gyms are offering classes for men to practice the gentle work-out .\netan patz went missing in new york city at age 6 in 1979 ; his remains have never been found . pedro hernandez confessed to police three years ago , but his lawyer says he is mentally ill . a new york jury will deliberate over a possible verdict against hernandez on friday .\nfour men accused of theft are shown being interviewed by isis militants . they are then dragged before crowds in mosul and beheaded in a town square . the savage punishment is significantly more extreme than isis ' usual punishment for theft . the men 's military-style clothing suggests they may have been isis fighters .\ndog shelby got stuck in a tar pit near the great salt lake 's spiral jetty . owner tom george had to leave his dog and drive an hour out to the nearest town . but a family was willing to stay with shelby and more strangers followed . they used grocery bags , car floor mats , tarp , garbage bags , a straw hat and even bare hands to try and free the dog . shelby has since recovered but had to have his hair shaved off and has lost 40lb of tar .\nliam treadwell has been booked to ride monbeg dude in saturday 's grand national . tread well won the race on venetia williams-trained 100-1 shot mon mome in 2009 . tom scudamore and paul carberry have already got rides .\nscores of syrians wait in line for hours for food in the terror group 's self-declared capital raqqa . pictures posted on twitter by anti-isis campaign group raqqa is being slaughtered silently . they risk their lives every day by documenting atrocities from inside the city .\nlionel messi is known to be a big fan of paris saint-germain 's lucas moura . moura has singled out messi for special praise ahead of his side 's champions league encounter against barcelona . the brazilian playmaker has revealed he is ` obsessed ' with messi .\ncyril abiteboul has promised red bull that the engine problems will be resolved . red bull owner dietrich mateschitz threatened to pull out of formula one . red bulls and toro rosso both suffered a power-unit failure in china . abiteboul says the plan is to have ` absolutely no reliability issues ' by monaco .\na dallas zookeeper and his 5-year-old son excavated the fossil . wylie brys was digging with his dad , tim brys , back in september at a construction site near a mansfield , texas , grocery store . the bones belong to a nodosaur , a pony-sized herbivore with scaly , plated skin . university experts say it 's rare to find dinosaur remains in the dallas area .\n` dark matter ' is thought to account for 85 per cent of the universe 's mass . but until now , it was thought to interact only with gravity . durham university scientists found a clump lagging behind a galaxy . this is because it is interacting with itself through forces other than gravity . the discovery was made around one of the galaxies in abell 3827 cluster . it could be the first evidence for rich physics in the dark sector .\nasda has recalled the little angels 2 newborn soothers 0 + months after a complaint . complainant said that the teat had detached from the hard casing . comes after parents were also asked to return packs of little angels cherry soother in 2013 .\nthe video was created by oprah winfrey 's own tv and features on super soul sunday . shows children explaining what happens in their minds when they get angry . reveals how to use mindfulness techniques to help them calm down . mindfulness is the latest buzzword when it comes to dealing with stress .\nnicola adams was due to fight in the english national championships . the olympic gold medallist was forced to withdraw after a burglary at her home . adams was at home at the time but was not aware of the break-in . two cars , training kit and valuable personal possessions were taken . adams had been due to contest the women 's 51kg flyweight division .\nnew drink-drive limit was introduced in scotland on december 5 . bar sales have dropped by 60 per cent since the limit was lowered . industry leaders claim it is stopping moderate drinkers from having a tipple . it is also being blamed for stalling the country 's financial growth . bank of scotland pmi report shows a poor result in the country .\nformer ukip mep ashley mote on trial at london 's southwark crown court . he is accused of a string of fraud-related offences including acquiring criminal property and obtaining a money transfer by deception . mote , 79 , denies 11 offences alleged to have taken place between 2004 and 2010 . he allegedly used european parliament money to fund his legal costs .\na black woman , tyus byrd , was recently elected mayor of the town of parma , missouri . six city officials quit their jobs shortly after byrd won , according to multiple reports . two of those individuals - trish cohen , parma 's former police chief , and rich medley , the town 's former assistant police chief - recently spoke to nbc news . cohen alleged in the interview that she and medley feared for their safety , and said their home addresses had been shared online by byrd 's family members . medley said byrd ` never approached any of us , never advised us what her plans were or anything '\ncatalans dragons winger vincent duport has been ruled out for rest of the season with a shoulder injury . the france international suffered a ruptured tendon in the dragons ' 33-22 defeat at hull fc on march 20 which requires surgery . next up for the sixth-placed catalans is a trip to wigan on sunday .\nrafael nadal defeated nicolas almagro 6-3 6-1 in the barcelona open third round . the world no 4 is looking for his ninth title on the catalan clay court . nadal will play 13th seed fabio fognini or russian qualifier andrey rublev on thursday .\ncnn 's brian todd and khalil abdallah were on their way to interview a legal analyst . they saw a brood of baby ducks causing a stir on a busy washington street . a man gave up his umbrella for the cause `` while the mom was going crazy , '' abdallah says .\ncolin pitchfork was jailed for life in 1988 for raping and killing two schoolgirls . he was the first man to be convicted on the basis of dna evidence . pitchfork strangled 15-year-old lynda mann to death in 1983 . three years later he raped and killed dawn ashworth , also 15 . pitch fork was finally caught two years later thanks to dna tests . he received a 30-year minimum sentence which was then cut to 28 years in 2009 .\nukip politician victoria ayling accused of lying about son 's injury in afghanistan . the 55-year-old is running for the key election seat of great grimsby . she made comments after being confronted by her local party . she said she had spent ` five months nursing her son back to health ' lieutenant colonel ron shepherd launched an investigation into the claims .\nthe sato named bonnie is so afraid that she will be abandoned again that she ca n't bear to eat alone . in an adorable video posted to youtube by user jeannine s. with nearly one million views , bonnie can be seen lifting her dish to bring it over to her canine friend clyde . bonnie lifts the dish into her mouth and scuttles her paws backwards to dine along with clyde .\naston villa boss tim sherwood claims tottenham chairman daniel levy tried to persuade him to stay on at the club . sherwood will return to white hart lane for the first time with his new team on saturday . levy sacked sherwood last may to bring in mauricio pochettino .\nattorney general loretta lynch has been sworn in . julian zelizer : her first task is to restore order in baltimore . he says she must use the power to withhold federal funds from local police departments . zelizer says the justice department has been trying to get local police to improve .\nvernika saadvakass , from kazakhstan , became a youtube sensation when she was five-years-old after she was filmed throwing around 100 punches in less than two minutes . the video was viewed around three million times and now two years on the young girl has returned to update the world on her progress .\nu.s. astronaut scott kelly says the spacecraft will not dock with the iss . the spacecraft will re-enter the earth 's atmosphere in about a week , roscosmos says . the progress resupply vehicle will come off its orbit and begin its combustion in the atmosphere . the ship is now spinning out of control , nasa says .\n`` believe me , '' robert bates tells nbc 's `` today '' show . bates is accused of manslaughter in the death of eric harris , who died after a tussle . bates says he mistook his firearm for the stun gun . sheriff 's office denies allegations that training records were forged .\nwest ham could qualify for europa league via the fair play league . hammers are top of premier league fair play table , just above burnley . sam allardyce 's side face manchester city on sunday . west ham boss is out of contract at upton park in the summer .\nbbc wales picture editor johanna powell reported missing in laos . 37-year-old was on holiday with three friends when boat hit a rock and sank . crew , tour guide and other passengers swam to safety but she disappeared in the strong current . rescuers launched a massive search along 20km of the mekong river to try and find her . a body has been recovered , but it has not yet been identified , officials said .\nbenzema believes real madrid are capable of retaining the champions league . real madrid face atletico madrid in the champions cup final on wednesday . james rodriguez has said ` it 's a pleasure to work with ' carlo ancelotti . real won their 10th european cup last season .\nsuzanne adams ' son james robshaw was born with cerebral palsy . midwives failed to carry out a caesarean section or properly monitor her during labour . high court ruled today that united lincolnshire hospitals nhs trust must pay in excess of # 14.6 million for birth injuries . james can not speak , dress or feed himself and must use a wheelchair .\nqueens park rangers face west brom in the premier league on saturday . chris ramsey has praised tony pulis ahead of the clash . the qpr boss says that pulis is one of the best coaches in britain . but ramsey says that he wo n't be asking for his tactical advice .\nryan dearnley was set to lead reading out in the fa cup semi-final . the 10-year-old was filmed saying he hoped arsenal beat huddersfield . the video sparked outrage from royals fans who felt he should not walk out . the fa have now offered him the chance to be a mascot for england .\nbritt lapthorne , from melbourne , was last seen at the latin club fuego in dubrovnik . her body was found in nearby boninovo bay , where it was found almost three weeks after she disappeared on september 18 . her family believes ms lapthorn was murdered , her body weighted down and dumped at sea . it has now emerged a victorian inquest into her death will be closed . state coroner ian gray will officially close it at a hearing in melbourne on thursday .\na jury of media peers has dissected rolling stone 's disastrous , discredited story about rape on the campus of the university of virginia . peter bergen : rolling stone made mistakes of reporting and editing , but its decision not to fire anybody is not . bergen says the editors who committed the blunder seem unprepared to revamp their operation .\nit was one of 25 questions in the singapore and asian schools math olympiad . the puzzle asked : albert and bernard just became friends with cheryl , and they want to know when her birthday is . cheryl gives them a list of 10 possible dates : may 15 , may 16 , may 19 , june 17 , june 18 , july 14 , july 16 , august 14 , august 15 and august 17 . each of the men does not know what the other has been told . to reach the answer it is possible to rule out nine of the dates in a number of steps . given there are two dates in august and one in july , it has to be july 16 .\ndevelopers want to demolish crescent designed by john nash and rebuild it as luxury flats . park crescent west , near regents park in london , was designed by the architect of buckingham palace . developers have submitted fresh plans for 73 homes , ranging from studios and mews houses to five-bed flats worth # 15million . residents who live behind the site are furious at the proposals , claiming years of noise and disruption will ruin their lives .\nlabour peer greville janner , 86 , was mp for leicester west from 1970-97 . he has repeatedly denied claims he abused young boys at care homes . but alison saunders , director of public prosecutions , ruled he is not fit to stand trial . she said he is too old and ill to stand charges despite ` credible evidence ' detectives have interviewed more than 20 men who claim they were abused by janner .\ntornadoes touch down near dallas . one looked half a mile wide , official says . no deaths have been reported . there are reports of damage . . residents report hail the size of softballs . . the national weather service warns of a `` large , damaging tornado '' in rio vista .\nhobart international airport website has been hacked and defaced . it was left with a statement supporting the radical islamist group isis . tasmania police are investigating and monitoring activity at the airport . airport management has disabled the site and customers are advised to visit airline websites for flight information .\nguinness world records confirms that peter weber jr. is the oldest active pilot in the world . the record was confirmed after weber proved he piloted a plane march 30 in placerville by mailing in multiple pieces of evidence . weber has been married to his wife since 1943 and is a father to a 70-year-old son .\nahmed farouq was the deputy emir of al qaeda in the indian subcontinent . he was killed in a u.s. airstrike in january , the white house says . he had a special role in the terrorist group , but was not well-known in the west .\nhamilton filed for divorce from his wife , katie , in late february , it has emerged . the couple , who married in 2004 , have not listed the reasons for the split and only cite ` conflict ' hamilton , 33 , self-reported a substance abuse relapse earlier this year and may not return to the la angels . he played for the texas rangers between 2008 and 2012 and was named the al mvp in 2010 .\nvet nick fisher , 31 , from leintwardine , shropshire , said his dog twiglet was behaving strangely . he had dilated pupils and bloodshot eyes after eating the drugs near a bus stop . after 45 minutes of drooling at the mouth uncontrollably , shaking and walking into walls twiglets seemed back to normal . neurologist believes the illness was caused by narcotics .\nsharon smith , 43 , from halesowen , west midlands , weighed 20st and a size 26 . she was forced to stand on an 11-hour flight because she could n't fit into a seat . she lost 4st through slimming club but then shed another 4st after taking up running . today she weighs in at a healthy 9st 9lb and is a size 10 .\nliverpool beat blackburn rovers 1-0 in the fa cup quarter-final at ewood park . mario balotelli missed the game after falling ill on wednesday night . the italian striker was not included in the squad to face arsenal or blackburn . robbie savage branded balotlli ` pathetic ' for missing the game . the striker posted a photo on instagram showing a temperature of 38.7 c.\n10 of the 11 defendants were sentenced on monday for their roles in a scheme to inflate students ' scores on standardized exams . fulton county judge jerry baxter urged the defendants during the sentencing hearing on monday to accept deals with the prosecution in the trial over a widespread conspiracy to cheat on state tests . he also threatened prison sentences for them if they fail to reach those deals . the sentencing will resume on tuesday . the 11 defendants , including former atlanta public school superintendent beverly hall , were convicted of racketeering earlier this month .\njosé gutierrez is set to be offered a contract extension by newcastle united . the midfielder will trigger the deal if he starts the remaining seven matches of the campaign . gutierrez was the only united player to emerge with any credit in the wake of last weekend 's 1-0 defeat at sunderland .\ncamilla parker-bowles , 67 , married prince charles on april 1 , 2005 . the couple have been married for 10 years and have two children . she has become a much-loved member of the royal family . a recent poll revealed that she is loved by 50 per cent of britons . 56 per cent credit her with charles ' own increasing popularity .\nthe tanya heath paris shoes feature an interchangeable heel . a high heel can be swapped for a lower heel -lrb- 1.5 inches -rrb- at the push of a button . the shoes start from # 260 , and come in a variety of styles and prints . canadian-born designer tanya has lived and worked in paris for 20 years .\naaron hernandez 's defense team called five witnesses on monday before resting at 3pm . prosecution took two months and more than 100 pieces of evidence to accuse the former new england patriots player of killing odin lloyd . hernandez has pleaded not guilty to killing lloyd , who was shot six times in the chest and back on june 17 , 2013 .\njames anderson plays his 100th test match against the west indies on monday . sir vivian richards believes anderson is a worthy heir to sir ian botham . anderson needs just three wickets to go level with sir ian . botham 's national record of 383 test wickets . anderson is the most prolific english bowler in history .\nasmir begovic has been linked with a summer move to real madrid . but stoke boss mark hughes has dismissed the reports . the potters are hoping to sign barcelona b winger moha el ouriachi . stoke face southampton at the britannia stadium on saturday .\nchristopher smalling has been a revelation for manchester united . marlon samuels ' salute to ben stokes was a joke . thomas muller led bayern munich 's post-porto celebrations . diego simeone 's atletico madrid play football on the edge of rules . sam tomkins has left the tiniest of impressions in the nrl .\nben kacyra is the founder of cyark , a company that uses laser scanning to protect heritage . cyark has mapped 500 world heritage sites , including ancient thebes and mount rushmore . the company also offers free educational access to the digital recreations of important monuments .\njames corden is currently filming late late show in the us . he met former england captain david beckham and nfl star odell beckham jnr . the comedian tweeted a picture of the pair on thursday . last month , beckham embarrassed his son brooklyn on corden 's show .\npilot program to hire people with autism for full-time positions within the company . announcement was made on the company 's blog by mary ellen smith . smith has a teenage son , shawn , with autism . the positions will be based at its redmond campus in washington .\ngao yu ` illegally provided state secrets to foreigners ' , court said . she leaked 2013 directive by ruling communist party to hong kong media . document warns of ` dangers ' of multiparty democracy , independent media . gao was imprisoned following government crackdown on student protests .\nfour-year-old austin west died last saturday after he slipped while chasing a bumblebee in the backyard and fell into an in-ground pool at his family 's home in gastonia . austin 's grandfather , jeff west , says that when he attempted to launch a gofundme campaign to raise money for his grandson 's funeral , he was shocked to find that there were already multiple pages carrying the deceased boy 's name on the site . on thursday , austin 's father set up a genuine donation page hoping to collect $ 10,000 . as of friday evening , only $ 315 has been raised .\ndominique granier suggested putting on service specifically for roma passengers . he said the smell was a ` sanitation risk ' and caused by people using route 9 in montpellier . but bus company tam has ` outsourced ' part of the route to avoid the smell .\ngermanwings flight 9525 crashed march 24 in the alps . investigators are not expected to return to the crash site , a french police official says . a private security company will guard the site until the remaining debris is collected . the flight data recorder , or `` black box , '' was found thursday .\nplans leaked in text message intended for senior aide to george osborne . details of the plan are unclear , but it is thought to mean minimum wage earners would not be paying any income tax . labour has pledged to raise the minimum wage to # 8 an hour by october 2019 .\nresearchers from nagoya university and the university of tokyo in japan studied stone tools used by people in the early ahmarian culture . they found the human tools were no more effective than neanderthal-created tools of the same era . traditionally , scientists believed innovation in weapons enabled humans to spread out of africa to europe . but the new study argues neanderthals were just as well-equipped as their human counterparts .\nashley doody was arrested on sunday after allegedly stabbing her mixed-breed dog , trixie , with a kitchen knife . police believe she was high on bath salts and believed the dog was possessed by demons . trixies is expected to survive and doody has been charged with aggravated cruelty to animals .\nuniversity of manchester researchers have revealed an hd dark matter map . it shows clumps of mystery particles across 0.4 per cent of the sky . red here shows more dark matter , and blue shows less . the map should allow astronomers to study how galaxies formed in the universe . it is the first in a series of maps of the cosmos that will eventually allow a 3d view of dark matter across one eighth of the night sky . the goal is to eventually map 12.5 per cent over five years .\nstatistics collected at maastricht university in holland , where cannabis is decriminalised . students who were able to buy drug from coffee shops were five percent less likely to pass their courses . but foreign students who did not have ready access to the mind bending drug did better on average .\nkirk rose was alleged to have bribed voters in southampton with sausage rolls . ukip candidate , 57 , is standing in key marginal seat in southampton itchen . he was questioned by police but will face no further action over the allegations . mr rose branded police involvement as ` absolutely ridiculous ' and said he could win his seat .\ndamon albarn has criticised modern pop stars for singing only about themselves . blur frontman said they are part of a ` selfie generation ' that sings about platitudes . he said they could be using their music to make political statements in the run up to the general election .\nbritish boy , 14 , remanded in custody after appearing in court today . he is charged with inciting terror overseas and plotting to carry out attack . allegedly planned to behead , run over or shoot a police officer in australia . also alleged to have encouraged an australian teenager to beheading someone . sevdet besim , 18 , was arrested by australian police last weekend . five other men have also been arrested by counter-terrorism officers . boy from blackburn , lancashire , is thought to be youngest person charged with islamist-related terror offences in the uk .\nwest indies bowled england out for 299 in their first innings . alastair cook passed alec stewart 's 8,463 runs to become england 's second highest test run-scorer . stuart broad bowled beyond 90mph for the first time since returning from knee surgery .\nlakenya hall , 35 , of kenner , louisiana , drove six children to a fight just after 5pm wednesday . a 14-year-old was shot in the upper thigh and treated at a hospital . hall was booked on six counts of contributing to the delinquency of a juvenile and disturbing the peace .\nindianara carvalho , 23 , had hymen surgery last year to ` restore ' her virginity . she posted a snap of her naked body painted with image of virgin mary . alongside the photo she wrote : ` good friday . lord , on this day i ask for peace , love , wisdom and strength ' the image attracted more than 750 ` likes ' on her instagram account .\nbobby was performing at the verizon theatre in dallas on saturday night when he told the stunned audience that ` bobbi is awake . she 's watching me ' the singer did n't elaborate on if his daughter had regained consciousness or if he was talking instead about her spirit . after the 46-year-old 's comment , his sister tina posted on facebook , ' -lsb- bobbi -rsb- woke up and is no longer on life support !!!!! :-rrb- : -rrb- god is good !! thanks for your prayers , ' she said . but tmz reported on monday that whitney houston 's family insists the 22-year old is not awake and is the same condition she was when she entered the facility .\nnatalie dimitrovska set dana vulin alight at her perth home in february 2012 . the 29-year-old suffered horrific third degree burns to more than 60 per cent of her body . she has had countless operations to reconstruct her scorched face , arms and torso . her attacker is appealing her 17-year jail sentence in the supreme court of western australia . lawyers for dimitroska will argue that ms vulin was not as badly injured as she stated in court .\nperiscope is twitter 's new live broadcasting platform . amanda oleander , 25 , is one of the stars of the app . she has been ` loved ' over 7.5 million times in less than a month . ellen degeneres is the highest ranking star with 3 million ` loves ' amanda broadcasts her day from her bedroom in la. .\nair india pilots allegedly got into a fight in cockpit before take-off . captain claims co-pilot misbehaved and struck him during altercation . both pilots have been removed from duty and an inquiry has been ordered . air india insists the altercation was limited to a verbal argument .\ndamian lewis said redheads are doing well at the moment . he said : ` this might be a unique moment in recent history ' julianne moore , ed sheeran , lily cole and prince harry are all redheads . sophie turner is a natural blonde , which is what makes her red .\nkenneth stancil iii , 20 , is accused of shooting dead his former supervisor , ron lane , 44 , at wayne county community college in north carolina on monday . he was arrested more than 500 miles away on a florida beach and will be extradited back to north carolina to face a charge of open murder . on tuesday , he appeared in court and admitted to the killing in an obscenity-laced statement . he said lane had been ` messing with ' one of his family members . his mother has denied that lane had abused the young relative . she said he was angry after being dismissed from his job and had a moment of insanity .\npeggy siegal claimed in hacked sony emails that the academy did not want a british director to win best picture for 12 years a slave because it was not patriotic enough . she said that steve mcqueen would not win as the academy did n't want a dark message about the us to be ` sent around the world ' siegal was wrong about the film and 12 years a slave did win the best picture oscar .\nreal madrid beat atletico madrid 1-0 in the champions league quarter-final . javier hernandez scored the goal of his life in the bernabeu . but real are unlikely to take up their option to buy the player . manchester united have no shortage of interest in hernandez .\nbelle gibson has admitted she never had cancer . she said : ` none of it is true ' in an interview with australian women 's weekly . the whole pantry founder 's online community was destroyed by the scandal . she is thought to be struggling financially . the magazine said it did not pay for the interview .\ntrial of brett robinson begins today in oregon . she is accused of having sex with an inmate six times in four months . robinson , 33 , is a services technician at washington county jail . she allegedly let the inmate out of his cell and had sex with him . she will use the insanity defense , claiming she is mentally ill . robinson 's case follows that of her colleague lisa curry . curry was sentenced to four years in prison for having sex in a closet .\nthe 88-year-old monarch was spotted riding her faithful black fell pony , carltonlima emma . the queen , who turns 89 this month , has never worn a riding helmet . she prefers to ride in a silk headscarf instead . the monarch has been riding since she was four years old .\nben affleck has apologized after he demanded information about a slave-owning relative be withheld from a pbs show about his ancestry . the actor appeared on finding your roots and learned one of his ancestors was a slave owner . he then asked that the information be left out of the program . the network agreed to the request and affleck is now saying he was 'em barrassed ' by the thought .\nmaksims uvarenko joined cska sofia on an 18-month contract in january . the latvian goalkeeper has not been paid by the bulgarian club . uv karenko has had to ask his parents to send him money to pay his rent .\neight deputies filmed beating and kicking alleged horse thief . francis pusok , 30 , was pursued by officers in san bernardino county . he was stunned with a taser and tried to flee but was caught . he lay face-down on the ground as they beat him with fists and stun guns . sheriff has ordered an investigation into the incident .\njenner , 65 , will speak in a two-hour interview with sawyer for a special edition of ' 20/20 ' on friday april 24 , abc news announced on monday . the interview comes amid growing speculation about the father-of-six 's transition to a woman . it also follows closely behind his involvement in a deadly car crash in california in february . the kardashian women will not be stealing the spotlight because they will be in armenia when the interview airs . rumors started swirling around jenner 's gender identity last year , when he emerged from a beverly hills clinic with his adam 's apple shaved down . his behavior over the past year also fueled speculation as he began embracing an increasingly female appearance .\nland bridge between north and south america formed 10 million years earlier than previously thought . evidence found in rock deposits from ancient rivers in colombia . discovery suggests land bridge was present since 13 to 15 million years ago . scientists are debating when this happened . the two continents continue to move together .\nformer virginia governor bob mcdonnell was sentenced to two years in prison for selling the influence of his office to the ceo of a dietary supplements company . he was convicted in september of accepting more than $ 165,000 in gifts and loans from former star scientific inc. . ceo jonnie williams in exchange for promoting his company 's nutritional supplements . mcdonnell 's lawyers argue that the favors he did for williams did not amount to ` official acts ' covered by federal bribery law . a three-judge panel of the court will conduct a hearing on his appeal of his public corruption convictions on may 12 .\nshcherbakov family in russia adopted a bear cub after it wandered up to their gate . the cub was found alone after its mother was likely killed by poachers . the family matriarch cooks porridge for the bear and feeds him from a bottle . wildlife experts caution against bringing an orphaned bear cub into the home .\ncheng chen , 27 , spent six months researching and building the replica . the finished product is two metres high , weighs just 4kg and comes with helmet , gloves and backpack . but cheng said he was was too ` chubby ' to fit into it and had to ask his nephew to model it for him . he was inspired to make the iconic body armour after watching the hit film with his younger brother .\na man who lost his left leg in the boston marathon bombing testifies . steve woolfenden 's 3-year-old son was also injured . a doctor who served in iraq and afghanistan testified about the carnage he saw . a group of dzhokhar tsarnaev 's relatives arrived at boston 's logan international airport on thursday .\na new book claims bradford city 's 1985 fire was one of nine blazes . it was allegedly connected to the club 's then chairman stafford heginbotham . sir oliver popplewell conducted the 1985 inquiry into the fire . he says police should look at eight other fires to ` see if there was anything sinister ' the tragic fire at valley parade killed 56 people and injured at least 265 .\nmichael bloomberg is reportedly considering a run for london mayor . he has been elected to the top job three times in a row in new york city . bloomberg , 73 , has significant business interests in the city . he owns a $ 30million mansion and has described london as his ` second home '\njasmine midgley was born with a birthmark which was initially ignored . but within weeks it had grown into her throat , almost closing over her airways . doctors told her parents she had bronchiolitis - a common infection of the airways . but when antibiotics failed to help , she was rushed back to hospital . she was diagnosed with a rare condition called a subglottic hemangioma . it is a benign tumour made up of blood vessels that can be on the skin . if left untreated , they can cause potentially fatal breathing difficulties .\nfbi destroyed files on tommy tarrants , a former kkk member . also destroyed was file on joseph milteer , who spoke of kennedy and king assassinations . miltee was known for covertly recording interview in 1963 . fbi disobeyed order not to do so from congressional committee . historian stuart wexler says it could be one of greatest scandals in fbi history . king was shot dead by james earl ray on 4 april 1968 in memphis .\nfour british sailors accused of raping woman at canadian military base . joshua finbow , 23 , craig stoner , 24 , simon radford , 31 , and darren smalley , 35 , appeared in court in dartmouth . they were given identical bail conditions and must live on canadian naval base . they will also continue to work for royal navy and draw current pay . all four men are charged with sexual assault causing bodily harm and group sexual assault .\nkatie prager , 24 , was diagnosed with an infection in her lungs in september 2009 . doctors predicted she would not live a year without new lungs and she is desperately in need of a transplant . her husband dalton , 23 , who has already received new lungs , is pleading for help . her insurance company , kentucky medicaid , will not pay for the out-of-state treatment she needs at the university of pittsburgh medical center .\ntottenham hotspur sold gareth bale to real madrid for a world-record # 85m . daniel levy is planning a new transfer policy for the club . the chairman wants to buy young players with good resale value . spurs sold stars such as michael carrick and dimitar berbatov to manchester united .\nargentina referee german delfino awarded a penalty to velez sarsfield . arsenal 's daniel valencia was adjudged to have handled the ball in the area . referee overturned the decision after linesman ivan nunez caught a replay of the incident on a nearby cameraman 's monitor and informed delfinos . velez were left fuming after the penalty was overturned and valencia was allowed to return to the field .\nrobbie mcnamara says he is feeling ` great and optimistic ' as he continues to recover from serious injuries . the jockey was due to partner last year 's cheltenham gold cup winner lord windermere in the crabbie 's grand national at aintree . mcnamara broke eight ribs , cracked six vertebrae and has no feeling in his legs .\ngerman aviation authority says it did not know about andreas lubitz 's mental health . european commission said it warned germany of ` long-standing problems ' in november . lubitz , 27 , killed all 150 people on board germanwings flight in crash last week . investigators found search terms for disorders such as ` bipolar ' and ` manic depressive ' on his tablet computer .\ngareth bale was on the scoresheet in the first leg of the champions league quarter-final at the vicente calderon . real madrid and atletico madrid played out a goalless draw . the second leg takes place at the bernabeu on tuesday night .\nan eight-year-old boy named peter penned a letter to health conscious michelle obama to tell her one ketchup packet at lunch simply is not enough . peter 's father said that he found the letter on his son 's desk and that it took his boy months to angrily write it . peter criticizes the first lady for america 's lack of troops in the middle east and in the ukraine . he also suggests that the united states bomb syria .\nalera , run by grant achatz , is chicago 's only three-michelin-starred restaurant . the top 10 featured four american restaurants which are all in new york . the us has 19 of the best restaurants in the world , followed by france which boasts 14 and the uk , which has a mere eight . spain has eight in the list while italy has seven and australia had five .\nhannah bluck , 18 , from porthcawl , south wales , has suffered a rare condition . avascular necrosis is bone death due to poor blood supply . teen football prodigy was warned by doctors that her leg could collapse . the 18-year-old has played for the wales youth national teams at u19 , u17 and u16 level .\n12-year-old boy from henan province injured after phone explodes while charging . boy , known only as hanghang , was using the old handset as an alarm . he said the phone felt hot and then blew up in his face , exposing part of his jawbone and embedding fragments in his arms and legs .\nbaby 's mother tried to open door when keys to her range rover were locked . eight-month-old boy was stuck in car alone as temperatures hit almost 23c . she grew increasingly distressed as car became hotter with no fresh air . kingston police called to car in surbiton , south-west london , at lunchtime . pc resteghini smashed car 's window with his baton to rescue the baby . police tweeted photo of incident , hailing officer as a ` hero ' and ` hero of the year '\nindia cricketer ankit keshri died after suffering a cardiac arrest . the 20-year-old had been playing in a club match in kolkata . he collided with a team-mate while attempting to take a catch . sachin tendulkar among several india stars to offer their condolences .\navril lavigne has revealed she has lyme disease . the singer has no idea where she got the tick bite that infected her . she was bedridden for five months . the disease was recently highlighted after real housewives of beverly hills star yolanda foster revealed she can no longer read , write or even watch tv because of it .\nc4 presenter krishnan guru-murthy tried to ask robert downey jr about his drug-taking past . the actor said : ` i 'm sorry , i really do n't ... what are we doing ? ' before walking out of the interview . the american star is in london to promote his new film avengers : age of ultron .\nsergio garcia is in houston to play in the shell houston open this week . the spaniard is looking to win his first pga tour title since 2012 . garcia finished third at the masters last year but missed the cut . the 35-year-old is comfortable with the fact he may never win a major .\neighty guests fled the fire at the 119-bedroom randolph hotel , which featured in tv 's inspector morse . lauren halliday and steven smith feared they would have to get married in their jeans . the couple salvaged their rings and the bride 's dress from the charred building .\nstar wars : rogue one , starring felicity jones , is slated for release in december 2016 . the film is set chronologically between the third and the fourth movies in the ` star wars ' saga . the upcoming standalone movie will be directed by gareth edwards of ` godzilla ' fame .\nbafetimbi gomis injured his hamstring against everton earlier this month . the swansea striker has been recovering in france . gom is hoping to be back in two to three weeks . the 29-year-old has been spending time with his family in lyon . gomis will miss swansea 's next three games .\nthe cessna 172 crashed on autobahn 28 near hatten , oldenburg . the male pilot was killed in the crash , and three passengers were injured . one man , believed to have been co-piloting the plane , is in a ` serious condition '\nconvicted murderer nikko jenkins , 28 , tried to carve ' 666 ' into his forehead . but he used a mirror - so the numbers came out backwards . jenkins was jailed exactly one year ago for shooting dead four people . he is appealing his conviction on grounds he is mentally unstable .\nengland bowler stuart broad slipped during his first over of the day in saint kitts . broad required lengthy treatment on the pitch after clutching his left ankle following the fall at warner park . england are playing a second warm-up match against a saint kitt 's and nevis invitational xi . jonathan trott , who had switched to the saint kitts team , was removed for a duck by james anderson .\nfor the new one beautiful thought ad campaign , dove asked a group of women to write down every thought they had about themselves . the women filled in a notebook each , and handed it back to dove . unbeknownst to the women , those negative remarks and self-body shaming were turned into a script .\nclaudia lawrence was 35 when she disappeared from york in 2009 . north yorkshire police confirmed three men were arrested this morning . the body of the missing chef , who was from york , has still not been found . officers have now launched a fresh search for evidence which could lead to her whereabouts .\nswedish study analysed dna from 21,566 men convicted of sex offences . found that sons and brothers of convicted sex offenders are four to five times more likely to be convicted of a sex crime than men in the general population . only 2 % of cases could this familial connection be explained by shared environmental factors .\nnicole mayhew went to work leaving her spouse scott working on his car in their garage in saratoga springs , utah . while she was gone , the 43-year-old was seriously injured when the heavy vehicle after the fell off its jack - crushing his chest . mrs mayhew got a strange feeling she urgently needed to see her husband . trusting her intuition , she rushed home to find the father-of-five stuck underneath the car .\nkiradech aphibarnrat won the inaugural shenzhen international on sunday . the 25-year-old beat li hao-tong on the 18th hole after a play-off . it was aphibarrat 's second european tour title and first in china .\nthe video was shot by australian tourist dirk nienaber in bali , indonesia . shows a monkey interacting with a tour guide , who squirts water at it from a hole in a bottle . the man throws the bottle over to the primate and scarpers with a smirk . the monkey recieves the bottle and holds it in its hands before attempting to quench its thirst .\nfrances clarkson showed off her holiday tan in a white bikini on a beach in barbados . the 53-year-old has been enjoying a family break with friends and family . she has previously holidayed on the island with her estranged husband jeremy clarkson . the bbc announced last month they were dropping clarkson from the hit motoring show .\ngerard pique says barcelona 's front three have a special relationship . luis suarez , lionel messi and neymar have a ` special relationship ' , according to pique . barcelona face paris saint-germain in the champions league quarter-final on wednesday . pique also says there is no hint of jealousy between the trio .\nshocking footage has emerged of a man stabbing a bouncer outside a melbourne nightclub . police say the man had been ejected from the club late thursday night when he soon returned and attacked the security guard from behind . the 29-year-old bouncer was taken to hospital with non-life threatening injuries . police have expressed their ` disgust ' over the incident .\nnicholas and kseniya soukeras are having a baby in august . ksenya wants to name the child michael , after her late father . nicholas prefers the greek name spyridon , after his own father . the couple has turned to the general public to help them make a decision .\nfive sailors removed from hms ocean in emergency ` medevacs ' during last nine years . at least one woman was airlifted from hms illustrious , which was nicknamed ` hms lusty ' by the crew before it was decommissioned last year . eighteen other ships - including hms dragon , hms enterprise and hms richmond - had emergency evacuations . ministry of defence spokesman confirmed there was a strict ` no touching ' rule in place at sea .\n11-year-old luke shambrook was last seen on good friday morning . he was camping in a national park in central victoria . search crews are searching for the boy who has limited speech . he may not even know he is lost and is known to hide . luke has been seen walking near the devils river on sunday . police say he may have been able to stay warm overnight . temperatures dropped to as low as 8 degree celsius on saturday night .\nmassachusetts senator elizabeth warren said on thursday that she does n't believe convicted boston bomber dzhokhar tsarnaev should be sentenced to death . tsarnaev was found guilty on wednesday of carrying out the boston marathon bombings which killed three and injured hundreds . the trial will now move on to the penalty stage which could begin as early as monday . the jury will decide whether or not to sentence tsarnaev to life in prison or the death penalty . warren stuck by her anti-death penalty stance .\nfriend of the couple , who had been friends for 25 years , went to house to find them dead on sofa in xalo , near benidorm . peter tarsey , 77 , and wife jean , both 77 , were found shot in the neck and back . couple were locked in each other 's arms under a green raincoat on sofa . police have launched a murder investigation and are not ruling out other lines of inquiry .\nitalian journalist says migrant crisis has been brewing for years . but now , with as many as 1,600 deaths in mediterranean , minds are focused , he says . some italians are losing their patience , he writes . `` this problem will not be resolved by hiding our heads in the sand , '' he says , adding that europe must help .\nmurray will marry long-term girlfriend kim sears at dunblane cathedral next week . the tennis star has admitted he ` could n't care less ' about the finer details of the day . miss sears , 27 , has been entrusted with planning the pair 's wedding . murray will have three best men and the reception will be at cromlix house hotel .\nengland stars took part in a crossbar challenge to celebrate st george 's day . arsenal winger alex oxlade-chamberlain and chelsea defender gary cahill pitted themselves against jack nowell and george ford . nowell uploaded a video of the challenge on his instagram page .\nleicester city beat swansea 2-0 at the king power stadium on saturday . the win lifts nigel pearson 's side to 17th in the premier league . the foxes have won three games in a row for the first time since 2000 . sportsmail assesses the key themes of leicester 's revival .\npensioner robert clark has been living in his home for 50 years . but brent council has refused to increase funding for his carer . the 96-year-old could be forced out of his home and into a care home . his son mike clark said it would be ` like going back into a camp ' more than 127,000 people have signed a petition calling for him to stay . council said mr clark 's needs can be met in a carehome for # 451 a week .\njohn and elizabeth knott lived in # 500,000 retirement cottage in bosbury , herefordshire . mr knott , 71 , was battling plans to build gipsy camp near their home . he feared the camp would knock thousands off the value of his home . also faced strain of caring for his wife of 37 years , who had alzheimer 's . inquest heard he shot her dead before turning gun on himself last august .\nnew belgium and ben & jerry 's will collaborate on a beer inspired by ice cream . the salted caramel brownie ice cream will be called `` new belgium brownie ale '' the beer is set to hit shelves in the fall . both companies have a history of social activism .\nmaricopa county sheriff joe arpaio 's office failed to arrest patrick morrison , who raped his niece sabrina morrison in 2007 . the girl , who is mentally disabled , told a teacher about the attack but authorities falsely said there was no evidence of a rape . the rape kit showed traces of semen but deputies did not collect a blood sample from morrison . it meant he continued to assault the girl for four years and even got her pregnant . the case was re-opened in 2011 and morrison was sentenced to 24 years in prison .\njohnny manziel was spotted for the first time since being released from rehab . the footballer checked into a facility on january 28 after stating that he wanted to ` be a better family member , friend and teammate ' tuesday night the cleveland browns quarterback was seen enjoying a texas rangers game with girlfriend colleen crowley . he also stayed away from the booze , sipping water throughout the game . this as offseason workouts with the team will begin next monday , april 20 .\njapanese chefs have created a series of videos showing how to make miniature versions of classic foods . the videos are called miniature space and are filmed in the bijou area of tokyo , japan . the latest video shows a chef making a miniature strawberry cake complete with frosting , sprinkles and strawberries . the video has more than 900,000 views on youtube .\noriginal 1959 barbie doll goes back on sale this saturday . first 100 customers at myer city stores in melbourne , sydney , perth , brisbane , and adelaide will be able to buy the doll for the original 1959 price of $ 3.00 . the dolls will be on sale for $ 34.95 thereafter . the doll was first released at the new york toy fair in 1959 .\npippa middleton spotted buying biodegradable nappies in geneva . the mull-cloth nappie is popular in europe but has yet to catch on in the uk . the duchess of cambridge is expected to give birth imminently . pippa has also been seen buying baby grows in switzerland .\njosh meekings ' ban for handball was dismissed on thursday . the sfa judicial panel decided it was not entitled to apply retrospective punishment . meeking admitted he was fortunate not to have conceded a penalty and been red-carded against celtic . inverness defender will be allowed to play in scottish cup final against falkirk .\nchelsea beat arsenal to eden hazard 's signature by # 32million in 2012 . arsene wenger admits he could not afford the belgian forward . hazard 's agent discussed terms with wenger in his house . wenger insists hazard and alexis sanchez will fight for player of the year . click here for all the latest chelsea news .\ntavon watson , 24 , was taking racing advice from instructor gary terry on sunday when he lost control of the italian supercar at the exotic driving experience at walt disney world in florida . terry , 36 , died at the scene while watson was rushed to celebration hospital near lake buene vista for treatment where he was later declared stable . the day out at the track was a present from watson 's wife and he posted a picture of himself next to a red ferrari on the tarmac just hours before the fatal collision .\nformer hewlett packard head carly fiorina is attributing the years-long drought in california to ` liberal environmentalists ' she says the state 's water shortage with their policies . ` it is a man-made disaster , ' she told glenn beck during a monday radio interview . ` with different policies over the last 20 years , all of this could be avoided ' the ` tragedy ' of california , fiorina said , is it ` has suffered from droughts for millennia ' and still ` liberal . environmentalists have prevented the building of a single new reservoir or a single . new water conveyance system over decades '\nthe shooting of walter scott in north charleston , south carolina , has drawn comparisons . the two shootings bear only mild resemblance , with the exception of the officer and victim . there are also stark differences in the circumstances of the shootings , including the lack of bystander video . north charleston 's police department is more racially balanced than ferguson 's .\nmartina levato , 23 , and her german boyfriend alexander boettcher , 30 , wanted to ` purge ' her previous relationships , a milan court heard . the couple planned to throw ` corrosive liquid ' at men she had previously been linked to even if just by a kiss , it was claimed . levato also tried to castrate a man 's genitals while in his car , prosecutors alleged .\nmarouane fellaini has enjoyed an upturn in fortunes at manchester united . the belgian has been used as a second striker under louis van gaal . wayne rooney has hailed his team-mate as one of the best in world football . united travel to chelsea in the premier league on sunday .\nthe tory leader said that the recovery must be seen in every part of the country . he said three in five new jobs should be created outside london and the south east . latest figures show that there are 2million more people in work than in 2010 . tories have promised to create another 2million by 2020 .\nrebecca francis posed for the photo five years ago next to a dead giraffe . comedian ricky gervais tweeted the photo with a question . he retweeted the tweet almost 30,000 times in three days . francis responded in a statement to huntinglife.com .\n34 people in six states have contracted hepatitis a virus . four adults , three in victoria and one in nsw , have contracted the virus after consuming the same brand of frozen mixed berries . patties foods says its testing has found no link between its nanna 's brand frozen mixedberries and a national hepatitis a outbreak . the company said no hepatitis a or e.coli were detected in any sample of its recalled and non-recalled nanna 's mixed berries 1kg product .\npresident barack obama became the first president to visit jamaica since president ronald reagan in 1982 on thursday . prime minister portia simpson miller told president obama the citizens of her country loved him , and she loved him as well . president obama signaled thursday he will soon remove cuba from the us list of state sponsors of terrorism . he is off for another historic meeting there , this time with cuba 's president raul castro .\nlamborghini swerved across a highway in the north-western turkish city of istanbul . the luxury car then hit another car before bursting into flames . tugce taskin , 26 , was killed and her friend adem kilic , 31 , is in a critical condition in hospital . witnesses said it was a ` miracle ' the pair were able to get out alive .\njeopardy contestant tom left a lasting impression with viewers for all the wrong reasons after giving a highly inappropriate answer to a question about puberty . host alex trebek asked : ` in common law , the age of this , signaling adulthood , is presumed to be 14 in boys & 12 in girls ? ' the first contestant to press his buzzer was tom , a freemason , who inexplicably answered : ` what is the age of consent ? '\ncorinne gump , 10 , and her grandparents were killed in a fire in youngstown , ohio , on monday - the day her mother 's boyfriend was set to go on trial for raping her . robert seman , jr. , 46 , was under electronically-monitored house arrest at the time of the fire but he was taken back into custody on monday , accused of trying to bribe a witness in the rape case . corinne 's mother , lynn schmidt , reportedly left the girl with her grandparents and went back to her boyfriend 's home , even after she knew he was accused of sexually assaulting her daughter .\ns slain editor of charlie hebdo has slammed his left-wing critics from beyond the grave . stéphane charbonnier , known as charb , finished his book just two days before being murdered by jihadist gunmen . in it he argued that left-leaning intellectuals who denounced the cartoons in the satirical magazine were ` ridiculous demagogues ' he also defends charlie hebdo 's controversial depictions of the prophet and extremism over the years .\nfaa certificate shows pilot can fly in dc special flight rules area , or sfra . faa developed sfra to protect washington area after 9/11 terrorist attacks . aircraft must enter sfra through specific flight `` gates '' that are displayed on a map . noncompliance with sfra requirements carries serious federal penalties .\njames freedman , 49 , is a one-man pickpocket show called man of steal . he has advised the metropolitan police and taught the ` art ' to actors . freedman describes himself as ` the only honest pickpocket you will ever meet ' he shows how to remove a watch without noticing it 's missing .\npolish police release images of man who claims to have lost his memory . man , 35 , was found in gniezno in february , but has no memory of who he is or where he is from . he communicates only in english , but knows a few polish phrases . police are working with experts to try and work out where his accent is from .\nkestutis martuzevicius repeatedly stalled efforts to extradite him . lithuanian gangster , 52 , is wanted for 22 crimes in his home country . he spun out legal battle for nearly five years by insisting he was mentally ill . in lithuania he is accused of two murders , robbery and extortion . european court of human rights criticised his ` manifestly ill-founded ' case .\njohanna basford , 32 , created first colouring book for grown-ups in 2013 . secret garden has sold over 1.5 million copies and inspired flurry of similar books . mother-of-one 's second book enchanted forest has sold out within weeks .\nthe seven one year-old crocodiles flew out of melbourne on wednesday . they were conceived and hatched at melbourne zoo , the first and only australian zoo to breed them . there are only about 250 philippine crocodiles left in the wild , making them the most endangered crocodile species in the world . the crocodiles will be released into the wild where they could grow to be up to three metres long .\nharry redknapp was at the emirates to watch arsenal beat liverpool 4-1 . redkn app claims he was attacked with coins by some arsenal fans . the former tottenham boss was stuck in traffic after the game . redkapp is currently out of work after leaving queens park rangers .\njudge orders marion `` suge '' knight to stand trial for murder and other charges . the former rap mogul faces up to life in prison if convicted . the judge also lowers knight 's bail to $ 10 million from $ 25 million . knight is accused of running over two men , killing one of them , during an argument .\njordan spieth won his first major title at the masters on sunday with a four-stroke victory . the 21-year-old became the first player to reach 19 under par at augusta national . spieth admitted he would probably sleep in the green jacket after claiming his first major title .\nken broskey , 69 , of livonia , michigan , has been diagnosed with stage 4 cancer , and his doctors have urged him to check into hospice care . instead , broskey has taken a job as an uber driver so he can earn enough money to pay off his mortgage before he dies so his daughter and two grandchildren can continue to live in his house . a college student started a gofundme page for broskey after riding in his car , and it has almost reached its $ 95,000 goal . now , uber has donated $ 5,000 to the man , and is also donating $ 1 to a go fundme campaign set up for the man for every rider who enters\nresidents of celoron , new york , were understandably disturbed when this statue of lucille ball was unveiled in 2009 . it sparked a facebook campaign to get it removed , which attracted 600 likes . the sculptor of the i love lucy statue in celor on has called it ` by far my most unsettling sculpture ' and has pledged to make a new one for free .\nhigh school teacher stephanie scott was murdered on easter sunday . the 26-year-old 's body was found in a national park on friday april 10 . a memorial service will be held at the eat your greens centre in eugowra , near ms scott 's home town of canowindra . the parish priest of the anglican-uniting church at canowindra , confirmed the venue to the abc . he said he knows the family well and is expecting it to be a tough day for everyone . ms scott and her fiance aaron leeson-woolley were due to get married last saturday .\ncalifornia is in a fourth year of drought , with two-thirds of the state in ` extreme drought ' the state 's farmers are using more water than ever to grow almonds . the almond is the second biggest agricultural commodity in the state , after milk . demand for the nut has exploded by 1,000 per cent in a decade .\nthermal images show copper inside a li-ion battery reaching temperatures of at least 1,085 °c -lrb- 1,985 °f -rrb- this caused jets of molten material to burst from its vent . the footage is the first time the failure of li-ion batteries due to overheating has been recorded . researchers from university college london subjected two commercial li-ions to external heat . they then used thermal imaging and non-invasive high speed imaging techniques to observe the internal structure of each .\n100-year-old photos show beijing landmarks with barely any visitors . they were taken between 1900 and 1911 during the qing dynasty . some of the attractions featured in the photos are now unesco world heritage sites . the images offer an enchanting glimpse into china 's last imperial era .\nstaff attorneys at u.s. justice department 's antitrust division are nearing a recommendation to block comcast corps . $ 45.2 billion proposal to merge with time warner cable inc. . a spokesman for twc questioned the reports and told reuters that the company has been working productively with both the doj and the federal communications commission . if the deal is successful , comcast would become the nation 's leading cable and internet provider .\nformer missouri auditor tom schweich shot himself dead on february 26 . he had been running for governor in 2016 . schweich was upset that the missouri republican party chairman had told donors that schweich is jewish . he perceived the remarks as anti-semitism . schwech told an aide on the day of his death that he would have to either ` run as an independent or he needed to kill himself ' his wife , kathleen , told investigators that schwech had never been seen by a psychiatrist .\na railroad worker spotted aleksandr glushko driving by the crash site in fairbanks , alaska , and reported him to police . police said the 21-year-old drove a stolen forklift more than three miles while intoxicated to retrieve it . he has been charged with a felony for driving under the influence of alcohol .\nandrew hennells admitted plans to rob a tesco store on facebook . the 31-year-old posted a message saying he was ` doing tesco . over ' he then threatened staff at the king 's lynn store with a knife . hennell fled the scene before police arrived , but was arrested in a nearby pub . he was jailed for four years at norfolk crown court today .\npolish prince challenges ukip leader to a sword fight over his immigration attacks . janek zylinski is the aristocratic son of polish war hero who fought nazis in 1939 . he posted the challenge online after declaring he had ` had enough ' of ukip leader . mr farage today forced to defend his stance on immigration after meeting eastern european worker during a factory tour in essex .\nresearchers found heart patients who expressed gratitude for the positive things in their life had improved mental , and ultimately physical , health . study involved men and women who had been diagnosed with stage b heart failure . patients who were more grateful had lower markers of inflammation , which can worsen heart failure , the researchers said .\nmother-of-three michelle schwab , 38 , charged with child endangerment . she faces six months in jail and a $ 1,000 fine . schwab is an assistant director at kindercare in columbus , ohio . she has three sons and a degree in therapeutic childcare . witnesses say she dangled her child over the 10-foot-deep enclosure . the boy was treated for a leg injury at cleveland metroparks zoo .\ndenmark has passed a law banning bestiality in an attempt to crack down on perverts visiting the country to have sex with animals . the nordic country decided to tighten up its laws amid reports of animal sex shows , clubs and even animal brothels . the previous law only stipulated a ban on intercourse which harmed the animals .\nreanne evans saw her 10-year reign as women 's world snooker champion come to a shock end on tuesday . the 29-year-old from dudley lost 4-2 to hong kong 's ng on yee in the semi-finals . evans was beaten by yee last year in the final of the world amateur snooker championship .\nthe everton midfielder has been dogged by groin and knee injuries this season . pienaar made his return from injury in everton 's 1-1 draw with swansea city . the 33-year-old has made just 11 appearances for the toffees this season due to groin and knees injuries .\nbaby pingan zhao was born as his mother died in a horror car crash . the baby boy was thrown from his mother 's womb and landed ten feet away . he was given the name zhao pingan which means ` safe and sound ' in chinese . on saturday he celebrated his first birthday publicly .\nmozambique national emmanuel sithole was stabbed and beaten by four men . he was found bleeding to death in a gutter in alexandra township , johannesburg . photographer james oatway captured the attack on camera on saturday . he has been accused of not doing enough to prevent mr sithole 's death . but mr oat way has defended his decision to take the images , saying they reflected the ` absolute stark reality ' of the situation .\nralph vaughan williams 's lark ascending tops classic fm hall of fame after 200,000 votes . it topped the poll last year as well and was named the nation 's favourite desert island discs tune . top five was completed by rachmaninov 's piano concerto no. 2 and elgar 's enigma variations .\nformer kgb agent says litvinenko may have poisoned himself by mistake . dmitri kovtun insists that he was not involved in the dissident 's death . he says he and another former spy left a trail of polonium around london . litvinko died of radiation poisoning in november 2006 after meeting kovtun .\nlifetime has greenlit a `` full house '' tell-all . the network is following up its `` saved by the bell '' movie . the telepic will look at the cast 's rise and the pressure they faced . casting will begin immediately . an air date has yet to be determined .\n` welcome to fabulous las vegas ' sign was designed by betty willis in 1959 . willis , 91 , died in her overton , nevada , home on sunday . the sign sits in a median in the middle of las vegas boulevard south of the strip . the welcome sign 's design has become a fixture on travel tchotchkes from vegas and everywhere else .\nex-marine jesse kidder was chasing michael wilcox after a police chase . wilcox , 27 , allegedly gunned down is fiance and best friend in new richmond , ohio . kidder had only been on the force for a year when he refused to shoot . the officer was warned by dispatchers that wilcox might try ` suicide by cop '\njack rodwell and scott sinclair struggled at manchester city . kolo toure says raheem sterling could be making a similar mistake by leaving anfield . toure compared sterling 's situation with that of rodwell 's and sinclair 's at city . the liverpool midfielder says the club is the best place for sterling to continue his development .\nwooden deckchair once sat on a first-class promenade of the ill-fated ship . it was salvaged by a search team from the atlantic ocean after the titanic sank in 1912 . dubbed ` one of the rarest types of titanic collectable ' , the chair is too fragile to sit on . it has been owned by a british collector for the past 15 years .\nresearchers at boston university and the university of bath used computer models to see how much energy neanderthals would have been able to get from their food . they found that without fire , a group of neanderthals would have had less energy than if they did not use fire . this would have meant they lost out when modern humans arrived from africa .\nthe block 's up market south yarra apartments are set to go under the hammer later this month . the four apartments have been valued between $ 1.3 million and $ 1.5 million by listing agents . the apartments will be auctioned on april 28 . thousands of fans will finally get the opportunity to see the apartments for themselves .\nbradley neil finished 13 over par in his first masters . the 19-year-old is being tipped for huge things by rory mcilroy . neil earned his invitation to the masters after winning the scottish boys championship in 2013 and then the british amateur championship last year .\nan undercover drug sting in houston has lead to the arrest of six students . the bust was spearheaded by one male narcotics officer , who posed as a high school senior between august 2014 and march 2015 . the two schools hit in this operation were pearland high school and dawson high school . an amount of cocaine , marijuana and prescription drugs xanax and tramadol was also seized in the bust .\nshannon carter , 21 , jailed for three-and-a-half years for attacking stranger with shoe . she repeatedly struck amelia gledhill , 20 , with the shoe in a nightclub toilet . ms gled hill was left traumatised and is still having problems with her eyesight . she has also been left with permanent scarring and is afraid to leave the house alone .\njordan spieth held a two-shot lead after seven holes of the final round last year . the 21-year-old threw away the lead as he finished joint second . bubba watson went on to win his second green jacket in three years at augusta . spieth believes he is better equipped to win the first major of the year .\nthe video was made by scientists at the new jersey institute of technology . it shows a solar flux rope taking shape on the sun in high-resolution . the rope is thought to be the main cause of solar flares and cmes . it is hoped the study could help increase understanding on how they form .\nfirm 's annual sales exceed # 1billion for the first time in its 25-year history . total revenue over 12 months grew 11.8 per cent to just over # 1.1 billion . poundland is europe 's largest single-price discount retailer , with a trial expansion into spain currently underway .\ntories have promised to lift the threshold for paying 40p tax from # 41,865 . but labour has vowed not to increase vat or national insurance . shadow chancellor ed balls refused to rule out using the point at which the higher income tax rate kicks in to raise money to balance the books .\nthe lockheed c-130 hercules is the oldest continuously produced family of military planes in history . the plane is used in the film `` furious 7 '' to drop cars from 12,000 feet in a stunt . the c - 130 has been used in more than 60 years to carry out military missions .\nu.s. and cuba are attending the summit of the americas in panama . the u.s. , which has not blocked cuba 's attempt to join since 1962 , will be watching closely . the summit could provide the opportunity to push forward an agreement to re-establish formal relations .\nbilly mitchell , now seven , was born with apert syndrome , a rare genetic condition . it causes malformations of the skull , face , hands and feet , and can lead to stroke and death . he endured a series of major operations to correct the deformities . surgeons cracked open and reshaped his skull and rebuilt his features . he also had a titanium frame drilled into his head , which was left there for nine weeks .\ninverness caledonian thistle beat celtic 1-0 in the scottish cup semi-final . celtic wrote to the sfa after they were denied a penalty in the game . celtic striker leigh griffiths complained : ` we were robbed ' scottish football needs wiping out and starting again .\nlib dem leader nick clegg said idea of more than two parties forming a government is not ` going to work ' he said it would be a ` messy ' way to run the country , and risked instability . pollster yougov suggested the likely result on may 7 is a badly hung parliament .\nvisual health studios in colorado has developed a weight loss app called visualize you . it calculates what you would look like if you lost a specified amount weight . users are shown an original and a slimmer version , with a slider . they can compare how they would look before and after losing weight .\nprince harry to fly out of uk to australia without seeing his new niece or nephew . duchess of cambridge now overdue for the birth of her second child . harry will not be able to meet the new royal baby until he returns in may . prince will be bumped down to fifth in the line of succession by new arrival .\nkelly-anne bates was tortured to death by her lover james smith . smith , 49 , tortured her for three weeks before killing her in a bath . her mother margaret said she wished she had killed smith when she first met him . mrs bates said she is still unable to read the autopsy report detailing the 150 injuries her daughter suffered . next year marks the 20th anniversary of kelly-anne 's death .\nnigel farage called for the number of arrivals into britain to be limited at 50,000 a year . but he claimed overall caps on net migration would be ` ludicrous ' because it was impossible to stop people leaving the country . ukip 's manifesto chief later added to confusion by saying the 50,00 limit ` might change every year '\ncledford hall in the small hamlet of cledford in cheshire is being demolished to make way for a gipsy camp costing # 3.2 million . neighbours in the village have reacted with fury about the plans saying travellers could intimidate nearby pensioners . cheshire east council gave the proposal the go ahead at a planning meeting yesterday . the mansion 's grade-ii listed adjoining barn will be converted into ` washing and toilet ' facilities .\nambulance bosses routinely make 21,500-mile round trip to australia . they hire paramedics on # 4,500 ` golden hello ' payments . it is far cheaper than training them in britain . london ambulance service has just filled 225 vacant posts with applicants from sydney and melbourne .\ncarlos tevez has shocked juventus by suggesting he wants to leave the club this summer . the striker has always said he intends to finish his career back at his first club boca juniors in argentina . tevez is on course to win a second serie a title with the old lady .\njorge lopez was killed in a suspicious road accident while in sao paulo in july . bayern munich boss pep guardiola wore the top demanding justice for lopez who died in a car crash at the world cup . uefa have charged guardiola for an ` incident of a non-sporting nature '\nu.s. rep mike doyle 's office was placed under quarantine after a staff member opened a letter containing a grainy white substance . hazmat teams tested the substance and found it to be non-harmful . the quarantine was lifted at 3:37 p.m. on wednesday and the building was reopened . doyle said that the capitol police were ` prompt and professional '\nrichard dysart was an award-winning stage actor . he gained fame playing law firm leader leland mckenzie on `` l.a. law '' he died of cancer at his home in santa monica , california , according to his wife . dysart appeared in every episode of the show , which ran from 1986 to 1994 .\na nation-wide vigil was held on monday night for andrew chan and myuran sukumaran . over 300 people gathered at sydney harbour for a candlelight vigil . brisbane , melbourne and perth also saw hoards of people congregate to show solidarity for the condemned duo . the two men are set to be executed just after the stroke of midnight on wednesday -lrb- 3am aest -rrb-\negyptian officials leave football event early after they are offended by belly dancing . dina talaat put on a spectacular show at opening ceremony in cairo . but delegates from country stayed in adjoining hall until end of performance . video of the performance has since gone viral online .\nnabil dirar believes radamel falcao was not happy in france . the colombian striker joined manchester united on a season-long loan . united will have to pay # 46million to make the loan permanent . falcaos has only scored four goals for united this season .\ntechnology is so advanced it allows ` true integration with the human body ' paypal 's top developer said the devices would be powered by stomach acid and include mini computers . he said passwords as they are now were not working and that users need to ` harden it with something physical behind it '\nmounir obbadi scored in the 90th minute to give hellas verona a 1-0 win . fiorentina were left nine points behind third-placed as roma . alessandro diamanti missed a second-half penalty for the home side . the viola host dynamo kiev in the europa league quarter-finals on thursday .\nchristine bleakley is engaged to manchester city midfielder frank lampard . the 36-year-old has become close to frank 's two daughters isla and luna . she says building a bond with the girls has been a ` well-thought-out process ' she says she and frank waited until they were sure of their feelings for each other .\nlee-anna shiers , 20 , her partner liam timbrell , 23 , their baby charlie , 15 months , and niece skye , two , were trapped and perished in the first-floor flat . jay liptrot , 43 , was among the first firefighters on the scene of the 200c inferno at a block of flats in prestatyn , north wales . melanie smith , 45 , a neighbour of the victims , was jailed for life for murdering the family .\nanzac day tweets by sbs journalist scott mcintyre sparked outrage . mcintyre called anzac day ` the cultification of an imperialist invasion ' and accused australian diggers of committing war crimes . the senior writer for the australian financial review has spoken out in support of mcintyre . geoff winestock said he hoped ` in 50 years no soldiers around to honour ' mcintyre was fired by sbs on sunday after a public backlash . sbs managing director michael ebeid said mcintyre 's comments were ` highly inappropriate and disrespectful '\nscientists believe life on earth began evolving around 3.8 billion years ago . but they are still far from knowing how it appeared . now researchers in the us and italy say they have evidence that dna-like fragments may have come with ` instructions ' that guided their growth into complex life forms .\nbrendan rodgers ' side are five points adrift of the champions league places . liverpool face arsenal at the emirates on saturday afternoon . rodgers has urged his team to perform well in the clash . the reds lost 2-1 at home to manchester united on sunday . daniel sturridge has returned to training after a hip injury .\nnico rosberg will start behind lewis hamilton for sunday 's chinese grand prix . mercedes team-mate missed out on pole by just 0.042 secs in shanghai . rosberg has now been out-qualified by hamilton at each of the three races this season .\nceltic currently lead aberdeen by eight points in the scottish premiership . the league leaders face their nearest challengers on may 11 . aberdeen striker adam rooney does not want to see celtic celebrate on their patch . rooney has been nominated for the pfa scotland player of the year .\nthe rogue european eagle owl has been terrorising the dutch town of noordeinde for months . the bird of prey has been seen soaring from the roof of a nearby house and landing on unsuspecting walkers . locals have been advised to arm themselves with umbrellas against the bird .\njudge orders v. stiviano to pay back $ 2.6 million in gifts from donald sterling . sterling 's wife sued stiviana , saying she targeted wealthy older men . stviano says she never took advantage of the former clippers owner . shelly sterling is thrilled with the court decision , her lawyer says .\nbayern munich won 5-0 at the allianz arena to take a 3-1 lead into the second leg of their champions league last-16 tie against porto . the german giants have now scored 115 goals in all competitions this season . thiago alcantara , jerome boateng , robert lewandowski , thomas muller and xabi alonso scored for the home side . porto 's marcano was sent off for a second bookable offence in the 73rd minute as the portuguese giants failed to stage an unlikely comeback .\na new master plan has been revealed for the ancient inca city . it calls for a 're - conceptualisation ' of the site between 2015 and 2019 . entry to the site will be moved to a visitor and orientation centre . certified guides and guards will be employed , and security cameras installed .\njoni mitchell was found unconscious at her home in los angeles . she regained consciousness on the ambulance ride to an l.a. area hospital . she is in intensive care undergoing tests , her website says . mitchell is known for her hits `` big yellow taxi , '' `` help me '' and `` free man in paris ''\nmarc gasol of the memphis grizzlies was heading back to the locker room after the team beat the new orleans pelicans 110-74 on wednesday night . he stopped to chat with a young fan on the sidelines , who animatedly talked and pointed to gasol before they exchanged a high five . the young child is a devoted grizzlies fan and popular with the players .\nutah national guard officer fired for allowing british models to use military base and equipment . three soldiers were disciplined and forced to pay back $ 200 in military fuel . two police officers were also disciplined for helping out at the shoot . the group of soldiers were filmed firing a range of weapons in a video posted on youtube .\nmassimo vian , one of the heads of milan-based luxottica , said his team was looking to improve on the internet-connected device . he told shareholders that his company is ` now working on google glass version 2 which is in preparation ' vian did not give any details about a proposed launch date for the second version .\nchristopher barry , 53 , was stabbed to death by a 13-year-old boy . the attack happened after a row outside a block of flats in edmonton , london . the boy , who can not be named , pulled a knife from his rucksack and stabbed mr barry twice in the chest . he pleaded guilty to the murder and was jailed for more than 11 years . the teenager is a member of the notorious wood green gang .\nchristopher annan , 24 , and tyrone wright , 20 , took part in gun attack on tottenham turks gang member inan eren . attack was led by hitman jamie marsh-smith , 23 , who earned nickname ` freddy ' after nightmare on elm street killer . he was jailed for 38 years last year for the shooting of inan , the murder of his cousin and crime boss zafer eren and a botched attempt to kill his own getaway driver .\npolish company moratex has developed a liquid that hardens on impact . called shear-thickening fluid -lrb- stf -rrb- , it is used in body armour . it provides protection from penetration by high-speed projectiles . it also disperses energy over a larger area , reducing the risk of injury .\nislamic state have used teenage suicide bombers in recent weeks . the savages have used their leader 's alleged cousin to blow himself up at a checkpoint in iraq . abu hafs al-badri is claimed to be the cousin of abu bakr al-bagdadhi . another teenage suicide bomber abu basir al-shami blew himself up in anbar province , near the iraqi city of ramadi .\ntianwen chen and his wife gairen guo adopted 40 disabled children over the last 26 years . they took them into their home in rural shanxi province , central china , in 1989 . sadly , nine of the children died and another 12 were adopted by other families . but thanks to generous donations , the couple are now able to afford to send their children to school .\ncnn ireport : share your photos and stories of the quake in nepal . a massive 7.8 magnitude earthquake struck nepal on saturday afternoon . witnesses share their accounts of the earthquake in their own words . many people are still too scared to go back inside any buildings , after a wave of aftershocks .\nvijay chokal-ingam claimed on his blog that he posed as a black man to get into medical school in 1998 . he claims he shaved his head , trimmed his ` long indian eyelashes ' and joined the organization of black students . he also claims that his fraternity brothers did n't recognize him . he was eventually accepted to st. louis university school of medicine . chokal-ingam has been at the end of a huge backlash following his contentious claims .\nmanchester united are currently fourth in the premier league table . louis van gaal says his side can still win the title despite being eight points behind chelsea . the united boss also admitted that marouane fellaini has become almost undroppable . van gaal confirmed that robin van persie is still injured .\nnew : authorities say a side jersey barrier came loose and fell onto the roadway . new : the concrete landed square on the roof of the vehicle , police say . josh and vanessa ellis and their 8-month-old son were killed , authorities say . the couple led a youth ministry at a church in bonney lake , a seattle suburb .\nlouis van gaal 's side lost 1-0 to chelsea at stamford bridge on saturday . the red devils are now ten points behind the leaders with six games to play . chelsea are likely to win the premier league title this season . manchester united will spend big in the summer to challenge for the title .\nmen in u.s. special operations forces do not believe women can meet the physical and mental demands of their commando jobs . they fear the pentagon will lower standards to integrate women into their elite units . studies that surveyed personnel found ` major misconceptions ' within special operations about whether women should be brought into the male-only jobs .\nscientists at the university of hawaii say a supervoid may account for an anomaly in the cosmic microwave background radiation -lrb- cmb -rrb- of the universe . in 2004 astronomers first found the ` cold spot ' - a region 20 per cent less dense than elsewhere . the new theory suggests the supervoid is responsible for the region . at 1.8 billion light-years across it would be the biggest object ever found . but some ` exotic physics ' is also needed to explain what 's happening .\ngloucester face edinburgh in the european challenge cup final on friday . jonny may will start on the wing for the english side . the 25-year-old has lost his england starting place to jack nowell . may is a childhood friend of pop star ed sheeran .\nhull fc beat widnes 22-8 to make it back-to-back wins for the first time since last june . tom lineham scored two interception tries in an eye-catching hat-trick as hull fc beat the vikings . jamie shaul went over late on to make sure of the two competition points for hull .\nrobert durst , 71 , grew up in the seven-bedroom tudor stone mansion in scarsdale , new york . the property boasts five fireplaces , a chandelier , maids ' quarters and a solarium . the home is on the market for $ 3.8 million . durst is awaiting extradition to face murder charges in california over the death of his friend susan berman .\ncambridge and oxford universities rowed on same stretch of river thames . women 's teams competed on same day as men for the first time in 87 years . oxford claimed their fourth win in five years in supreme show of strength . president constantine louloudis claimed a fourth and final boat race victory .\nshinto kanamara matsuri , the festival of the steel phallus , started nearly 40 years ago . participants carry three phalluses in the streets of kawasaki , japan . the sight of three large phallus being paraded through neighbourhoods draws giggles from tourists . participants pray to a god of fertility , child birth and protection from sexually transmitted infections .\nchrysler sold family a 1999 jeep with a gas tank mounted behind the rear axle . walden , of bainbridge , georgia , was killed when the jeep driven by his aunt was hit from behind by a pickup truck in march 2012 . the fuel tank leaked , engulfing the jeep in flames and killing the four-year-old . jury ruled that chrysler was 99 per cent at fault for the crash and the pickup driver was 1 per cent .\nthe nypd 's first fifty years is a new book by bernard whalen . it charts the early rise of the world renowned police department . the book includes accounts of kickbacks , mob violence and secret kkk members . the nypd 's first chief was william devery , known as the king of kickback .\njordan meikle was running the london marathon to raise money for the salvation army . he stopped to stretch his muscles in front of spectator 's barriers at the 26-mile mark . while stretching he gets down on one knee and produces a ring from behind his back . his girlfriend , kayleigh harris appears speechless by the sudden gesture .\nthe final day of mercedes-benz fashion week australia kicked off in sydney on thursday . the australiana-themed show was presented by design duo luke sales and anna plunkett . the art gallery of new south wales was transformed into a spectacular set designed by designer alice babidge .\neu regulations say organic farmers must use homeopathic remedies to treat fish . this includes ` substances from plants , animals or minerals in a homeopathic dilution ' british and norwegian vets have called the directives ` scientifically illiterate ' they say homeopathy could lead to ` serious animal health and welfare detriment '\nspain 's queen letizia , 42 , was at the woman awards in madrid . showed off her defined back in a backless sequinned cocktail dress . also unveiled a new bob haircut . presented mexican actress salma hayek with an award . the royal is currently in denmark for queen margrethe ii 's birthday .\nvaccine teaches immune system to recognise compounds found in cancer cells . it 's being given to men who have already been treated for prostate cancer . protein tarp is found in about 95 per cent of prostate cancers . animal studies have shown that protein can effectively stimulate the immune system .\nkenny hetrick 's stony ridge farm was seized by the state in january . six tigers , a bear , a lion , a cougar , a black leopard and a liger were taken . authorities found he did not have the correct permit and cages were ` unsafe ' authorities have started cracking down on the owners of wild creatures following an incident in 2011 where a man in eastern ohio released 56 exotic animals - including lions and tigers - then killed himself . hetick is now fighting to overturn the seizure , backed by neighbors who insist his menagerie does n't pose a threat .\nbillionaire john caudwell claims his staffordshire mansion is ` being haunted ' he says visitors to one room have felt a bed vibrate and a ghost brushing past them on the stairs . he believes the ghost is of a boy who was shot by a soldier during the english civil war .\npennsylvania state representative kevin boyle claims he was hit by soda . tonya stack , wife of lt gov mike stack , allegedly threw it at him . she was at a fundraiser in philadelphia for a slain afghanistan veteran . boyle and stack are at the center of a political row . the two are fighting over the state senate seat stack vacated .\nsuspected boko haram militants attack a village in cameroon for the first time in a month . six attackers are killed by cameroonian forces , a military spokesman says . the attackers came thursday `` in the hundreds , '' he says . boko haram has been waging a years-long campaign of terror in nigeria .\na new medical technology could be the key to eradicating polio . the microneedle patch could bring polio vaccines to the doorsteps of the people that need it . it 's been 60 years since a mass inoculation of jonas salk 's vaccine began with school children .\ntim ward and his wife , brandy , were killed in the march 2014 mudslide . he was buried under 25 feet of mud but managed to call for help . a week later , he was told he did not have ` landslide insurance ' he has spent the past year trying to pay his mortgage . but last week , chase bank said an anonymous donor had paid the lot .\nbereaved families say report is being dragged out so figures like tony blair can rebut its findings . publication of sir john chilcot 's inquiry had already been pushed back until after the election . it is now unlikely to be published until next year at the earliest , it has emerged .\nmichael carrick has won just 33 caps for england in a 14-year career . the manchester united midfielder has started just nine competitive games for the three lions . carrick was dropped for the quarter-final of the 2006 world cup . england have won just four competitive matches when carrick started .\nandreas christopheros , 29 , was left fighting for his life when acid was thrown in his face . property developer suffered a loss of vision and facial scars after the attack . nicole phillips , 45 , from hastings , east sussex , has been charged with perverting the course of justice . husband david phillips , 48 , had already been charged over the attack in truro , cornwall .\ngareth bale has come under fire from fans in his second season at real madrid . the welshman has been linked with a return to the premier league . mark hughes has urged bale to stay at the bernabeu . hughes regrets only spending one season at barcelona in 1988 .\nmemo : `` enemy forces '' and `` adversaries '' used to refer to protesters . missouri national guard used the language in mission briefings , documents show . the national guard came to ferguson to support law enforcement officers . some community members objected to the police officers ' actions in putting down riots .\nthe tuning fork facial is offered at hale clinic in london . the pieces of metal make different pitched sounds when struck . vibrations are said to tighten sagging skin , eradicate dark circles , lessen the appearance of wrinkles and stimulate collagen . some say it 's the non-jab equivalent of botox .\njulia ware was 15 when she lost control of her suv and it rolled over last august . shamus digney , cullen keffer and ryan lesher , all 15 , were killed in the crash . ware admitted to three felony counts of homicide by vehicle and two misdemeanor counts of accident involving death or injury . she sobbed in court as she faced the parents of the three boys .\nstatus quo , katherine jenkins and west end star elaine paige to perform . set to be one of the highlights of three-day commemoration of end of second world war . 1940s-themed concert will take place on saturday 9 and will be broadcast on bbc1 .\naden gould , 21 , opened speakers at sainsbury 's in stoke-on-trent . he put them back on display but was immediately apprehended by security . staff took him into the manager 's office and forced him to empty his bag . he was cleared of shoplifting but was told he had to pay # 150 ` security fee ' sainsburys has now revoked the ban and waived the fine .\nhomeless isa richardson , 46 , intimidated the youngster into handing over her last 15p . richardson claimed she needed money because her car had broken down . the schoolgirl told police she felt intimidated by richardson , who has a history of begging and outstanding fines . richardson was caught and arrested on march 19 after cctv operators were alerted to her suspicious behaviour .\nstuart mccall is compiling a dossier of transfer targets for next season . the rangers boss is already speaking to agents about potential new signings . rangers are currently second in the scottish championship table . mccall still does not know if he will be in charge beyond the current campaign .\nikea claims new vegetarian meatballs will cut carbon emissions by half . firm says new version uses far less energy than making pork and beef variety . veggie balls created from a secret recipe of chickpeas , peas , carrots , peppers , corn , kale and seasoning .\njon stewart has revealed that he decided to call time on his 17 year reign because he was becoming increasing depressed by american politics and watching cable news . speaking for the first time since making his shock decision , stewart said he was looking forward to not having to watch the ` relentless ' 24-hour news networks anymore . ` watching these channels all day is incredibly depressing , ' said the comedian .\nhamayun tariq , 37 , shared four images on twitter of his bomb-making factory . components are seen organised on shelves and bomb - making equipment neatly laid out . father-of-two says he hopes it will emerge as ` the best electronics lab in islamic state ' tariqu served a sentence for fraud in the uk before joining isis in syria last year . he specialises in posting detailed instructions on how to build bombs .\nthe new testament mentions money 37 times , including in jesus ' parables . peter bergen : how did the first-century evangelists support themselves ? he says jesus ' followers had a common purse because they needed money to survive . bergen says jesus and his disciples probably received donations from supporters .\nsoft toys brought into the operating theatre by children served as a breeding ground for bacteria , study found . researchers at vanderbilt university in tennessee urged parents to wash and sterilise their child 's toys before bringing them into the theatre . they note that despite hand washing and other protocols , surgical-site infections continue to pose a problem .\nchelsea host stoke in the premier league on saturday evening . stoke have lost all eight of their visits to stamford bridge . mark hughes says his side must end their poor record at stamford bridge . the potters have not won at the ground since 1984 . marc muniesa is set to return to the squad after missing five games .\ndagenham and redbridge midfielder joss labadie has been banned for six months for biting ronnie henry . the 24-year-old was charged with violent conduct by the fa last month . labadies has played twice since the incident at stevenage on march 28 .\n3,700 women served as guards at nazi death camps during second world war . but only three have been investigated by german prosecutors for their roles as accomplices to mass murder . they include charlotte s , gisela s and charlotte s. who were all deemed too ill or infirm to be punished . they are all in the spotlight as the trial of ` auschwitz bookkeeper ' oskar groening continues .\ndavid cameron launches tory manifesto with seven key policies . says they will help get people on to property ladder and build more homes . also cut cost of saving for deposit , moving house and paying off mortgages . tory leader , wearing clean new work boots , insisted ` dream of home ownership is alive ' he used launch of manifesto to promise voters ` security at every stage of life '\nbora-argon 18 rider sam bennett was involved in a mass pile-up in the final kilometre of the scheldeprijs one day classic in belgium . the 24-year-old was taken to hospital after the crash in belgium on monday and suffered severe cuts on his back and shoulders . team sky riders bradley wiggins and geraint thomas were both involved in the race but managed to avoid the crash .\nfour english sides in the last eight of the new champions cup . bookies believe toulon are destined to finish on top of the pile for the third successive year . clermont their primary challengers followed by racing and leinster . aviva premiership quartet are all away from home this weekend .\nholidaymakers watched in horror as cannonball fired from a wooden trebuchet struck a medieval thatched boathouse at warwick castle . spiders from the fireball ignited the roof of the building , causing it to erupt into flames at about 5.45 pm yesterday . hundreds of tourists had to be evacuated from warwick castle after the fire .\nthe veterans association estimates that 22 former servicemen and women end their lives every day across the us . ted koran , 59 , from florida , says he was struggling to deal with the loss of his wife karen who passed away from cancer six months ago . he says he called the va suicide hotline on saturday night but was put on hold three times for 10 minutes at a time . only the thought of the 60 rescue animals he and his wife cared for stopped him from ending his own life .\nexeter has been dubbed ` too posh for monopoly ' after game makers were told there is nowhere low-rent enough to fill the space of old kent road . thousands of voters have suggested landmarks across the city to fill more expensive slots . but no one has come forward with ideas for which streets should fill the brown sections of the board , which cost $ 60 in monopoly money .\nthe build-up to the mayweather vs pacquiao fight has stepped up a gear . floyd mayweather will hold an open workout for the media on tuesday night . the session will be streamed live across the world . you can watch it here from 12am uk -lrb- 7pm edt -rrb-\n10,000 australians and new zealanders are sitting in reverence on the shores of the gallipoli peninsula . a formal ceremony was held to honour the diggers who fought and fell in gallipoli a century ago . australian prime minister tony abbott , his new zealand counterpart john key , prince charles and prince harry are among those in attendance . defence force chief mark binskin told the thousands gathered there of the horror the anzacs were confronted with on the day they came ashore in turkey a century years ago .\nthe west indies drew first test against england in antigua . ian bell says england did not underestimate the west indies . bell says he never expected england to win the series without a struggle . the batsman is looking forward to the second test in grenada . devon smith admits comments from incoming chairman colin graves have not gone unnoticed by his side .\nreal madrid beat atletico 5-0 in champions league quarter-final on wednesday . gareth bale was a second-half substitute , but did not start the game . the welshman has missed eight of real madrid 's 50 matches this season . real have won all of their games without bale , scoring 25 goals and conceding just one .\nthe bell 525 relentless is due to make its maiden flight this year . the state-of-the-art helicopter has a luxurious 88-square-foot cabin and space to fit 20 passengers in boardroom-style comfort . the buyers are expected to use the craft for offshore oil and gas missions . it is also the first commercial helicopter to incorporate fly-by-wire flight controls .\nthe aluminium battery was created at stanford university . it is said to be the first high-performance aluminium battery . it recharges in less than 60 seconds and can withstand 7,500 cycles . aluminium is cheap and has a low flammability , as well as a high-charge storage capacity . but the researchers said the battery has only half the voltage of lithium-ion technology .\ned miliband stopped off at praise house community church in croydon . he bowed his head while church leaders ` put their hands forward towards ed ' last year mr miliband described himself as a ` jewish atheist ' all party leaders are now trying to reach religious groups in the scramble to win votes .\nalberto bueno played for derby on loan in 2010-11 . he has scored 17 goals for rayo vallecano this season . bueno could move to porto at the end of the season . the 27-year-old will face his former club real madrid on wednesday .\namanda peake glover was a devoted youth ministry teacher and choir singer who 'd only one month before had completed the myrtle beach marathon with her brother . glover was also a co-owner of an elgin fitness center . her husband of nine years , benji , was just behind her in the palmetto half marathon .\narmy sgt. bowe bergdahl was captured by the taliban in june 2009 and held for five years . three of bergdhal 's comrades claim that admiral mike mullen told them that bergdahal was a deserter . mullen was the chairman of the joint chiefs of staff when the soldier fled his post in afghanistan . the claims mean that mullen knew about bergdahs ' desertion and was in a position to tell the president . this casts a huge shadow over the deal to swap five taliban commanders for bergdahn .\nhibernian lost 1-0 against falkirk at hampden park on saturday . peter houston 's comments about hibernian 's crosses were criticised . alan stubbs did not know what to make of the comments . stubbs said he had a lot of respect for houston and his team .\nkell brook has challenged amir khan to a fight on may 30 . brook is hoping to extend his unbeaten streak to 12 fights . khan has blasted brook 's motives for wanting to fight him . he claims that brook is not even a big name in the uk . khan also denied that he will fight chris algieri next month .\nbeatrice nokes , 21 , accused of running vice ring with met police officer daniel williams . university college london chemistry student is suspected of grooming three young women to sell their bodies for sex . she is the daughter of two highly experienced legal professionals . williams , 37 , faces several further offences including voyeurism and hiding profits in socks stuffed up the chimney of his home .\nliverpool beat newcastle 2-0 in their premier league clash at anfield . raheem sterling and lazar allen scored in the first half to put liverpool in the lead . newcastle 's moussa sissoko was sent off for a foul on sterling in the second half .\nperfumers spend vast amounts of time and money creating fragrances . they are designed to evoke positive feelings of satisfaction and sensuality . perfumers claim wearing certain scents will make a woman seem younger , more athletic or even slimmer than she actually is .\npacific gas & electric co. ordered to pay record penalty for unsafe operation . most of the penalty amounts to forced spending on improving pipeline safety . pg&e says it has paid more than $ 500 million in claims to victims and victims ' families . on september 9 , 2010 , a section of pg & e pipeline exploded in san bruno , killing eight people .\naston villa boss tim sherwood has labelled qpr clash as ` biggest game ' for years . villa host their relegation rivals on tuesday night in the premier league . sherwood admits he does not have the players to grind out results . the pair forged a close friendship at tottenham hotspur .\nargentine striker franco di santo scored winner in the 84th minute . hamburg 's valon behrami was sent off for bringing down zlatko junuzovic . new coach bruno labbadia made losing return to hamburg bench . werder bremen are seventh in the bundesliga on 38 points .\nat least 54 people have died and 15 are missing after a russian fishing vessel sank . more than 60 people were rescued from the chilly waters in russia 's far east . the dalniy vostok freezer trawler was carrying 132 people , the russian ministry says . of the people on board , 78 were russians .\nthe great british bake off star announced her departure from twitter . she said her timeline had been full of men wishing her dead . perkins was bookmakers ' favourite to replace jeremy clarkson on top gear . she is not the only celebrity to have left the site due to bullying . downton abbey star lily james quit after being trolled .\nchloe owens , 27 , from swanley , kent , came up with the idea for bump 2 breast . she had no idea what to expect when she brought her first child home . chloe struggled to remember which boob she had used last when breastfeeding . she designed the app to contain a huge amount of information on everything from late stage pregnancy and birth to breastfeeding .\nthree-and-a-half-year-old baylie lost a stone and a half in eight weeks . he swapped sweet treats and processed dog food for a diet of raw meat . his owners say he 's now ' a different dog ' after losing weight .\naristol ` apryl ' foster , 33 , was last seen leaving a bar in ybor city on february 12 . her car was found in a lake in brandon , florida on sunday . autopsy shows she was intoxicated when she drove into the water . her blood alcohol level was 0.18 , which is over twice the legal limit for driving , as well as thc , the active ingredient in marijuana . her death has been ruled an accidental drowning .\nstunning images capture the way young people in iran are defying the country 's hardline islamic image . taken in the capital tehran , the photographs show teenagers and people in their early 20s kissing in public , drinking alcohol and living openly gay lifestyles . some of those pictured are even seen wearing clothing adorned with the stars and stripes - something previously unthinkable in a country where the conservative religious and political leadership still regularly leads chants of ` death to america '\nbeijing 's `` great firewall '' is used to block access to western news sites . but chinese censors have developed a new it weapon , a study says . it blasts targeted web servers with massive distributed denial of service attacks . the attack is visible and handily carried out within another country 's borders .\niraqi forces say they have removed isis fighters from saddam hussein 's presidential palaces compound . iraqi forces are concerned about booby traps and the behavior of iranian-backed shiite militiamen . officials fear reprisals by shiite militias against the sunni population could stoke local anger .\nmichelle obama and barack obama paid more than $ 93,000 in federal taxes last year on an adjusted gross income of more than $ 477,000 . their effective tax rate was 19.6 percent , the returns show . the obamas lowered their 2014 tax bill by claiming nearly $ 160,000 in itemized deductions , including $ 70,712 in charitable donations to 33 different charities .\nchevrolet spokesman tells daily mail online that the standard issue chevrolet express police transport van has bolts that are built into the door . design of the van shows no bolt sticking out from the back door . development raises a number of questions about the official account put out by the force which emerged today in a report of its internal investigation into gray 's death . baltimore police department may have customised their vehicle .\nceltic defender jason denayer is wanted back by manchester city for pre-season . the 19-year-old is on loan at parkhead from parent club city . but ronny deila has confirmed that denayer will be missing for the champions league qualifiers in july .\nalmost a third of people aged 16-to-34 have deleted their accounts because they no longer see it as ` cool ' trend comes as increasing numbers of older users turn to the social network to stay in touch and share family pictures . nearly 60 per cent of britons aged over 55 now have a facebook account .\naston villa boss tim sherwood wrote to a fan he beat to the job . charlie pye applied for the role when paul lambert was sacked . sherwood congratulated pye on being appointed captain . the 6-year-old would have appointed his parents as assistant managers .\nfrancis saili has signed a two-year deal with munster . the 24-year-old will link up with the irish province later this year . he currently plays for auckland-based super rugby side the blues . saili made his all blacks debut against argentina in 2013 .\nlauren bacall 's personal mementos were auctioned off at bonhams new york on wednesday . the actress , who died in august aged 89 , had hundreds of items up for grabs , including housewares , furniture , fine art , jewelry and clothing .\nsheldon nadelman worked at terminal bar in times square from 1973 to 1982 . the bartender and photographer , 80 , would meet prostitutes and other people floating around the port authority bus terminal . he would photograph them as they came in for shots of cognac before going out to work the streets . nadel man 's photos have been digitized by his son stefan .\ncouncil inspectors found shocking state of hygiene at the steer inn in wilberfoss . owner david crossfield later admitted 17 charges of breaching food safety regulations . officers found food in kitchen was mouldy and unfit for human consumption . raw meat was being prepared in direct contact with ready to eat salad items . food was being served to the public that had exceeded its use by date .\nbenik afobe opened the scoring for wolves in the 46th minute after a neat move around karl darlow . bakary sako doubled the lead from the penalty spot after henri lansbury fouled sako in the box . dexter blackstock scored a late consolation goal for forest with a header in the 90th minute .\njustin whittington , 23 , was arrested on friday in bakersfield , california , and charged with child cruelty after the video of the alleged abuse surfaced online . but following interviews , his charge was changed from ` cruelty ' to ` endangerment ' , and his bail dropped from $ 1 million to $ 20,000 . on saturday , whittingon posted bail . he will be released by sunday morning , with a court date set for april 24 .\njill wright is the first celebrity to front an ann summers campaign . the 29-year-old stars in the resort collection , hotel summers . the full collection will be available in-stores and online on tuesday , 7 april . jess says she is a huge fan of the brand and was thrilled to be on board .\nuk fashion label to open second store in nsw at westfield miranda . cheyenne tozzi and nic westaway to host exclusive launch celebrations . london black cabs will escort fashion bloggers to the launch . store will be 100 square metre and will be a welcome international addition to the shopping centre . it will be the seventh topshop store to open in australia .\nal sharpton has denied reports he was barred from walter scott 's funeral . new york daily news claimed family wanted him to stay away to avoid a ` circus ' he said there had never been a discussion about him attending the service . sharpton will now head to north charleston , south carolina , to preach on sunday . he will also attend a vigil at the spot where scott was killed by officer michael slager .\ndavid perry : two states are cracking down on physician free speech . perry : florida and arizona have laws that threaten doctors ' ability to ask patients about guns . he says the laws are an assault on the doctor-patient relationship . perry says state medical associations have most clout in statehouses .\nhundreds of international runners took part in north korea 's marathon . the event was founded in 1981 but only opened to foreigners in 2014 . around 650 foreign entrants joined the race , three times more than last year . runners praised the jovial atmosphere as thousands of supporters turned out to cheer them on .\npenny wong and her partner sophie allouache have announced the arrival of their second child . the south australian senator 's partner gave birth to baby hannah in adelaide on good friday . ms wong shared the news with her 100,000 twitter followers on tuesday morning . the couple used the same sperm donor who helped them become parents to three-year-old alexandra .\nsam tomkins has been released by the new zealand warriors . the full-back is homesick and wants to be with his family . tomkins spent five years at wigan before leaving for new zealand . the 26-year-old is interesting his former club . wigan have an option to bring him back to the dw stadium .\naljaz bedene is currently ranked 99 in the world and plays for slovenia . he has been given a british passport but can not play for his new nation in the davis cup . greg rusedski has backed bedene 's bid to overturn the itf 's ruling . rusedki himself moved from canada to represent great britain in 1995 .\nitalian police release e-fit image of millionaire people trafficker ermias ghermay . he is thought to have made # 72m with accomplice mered medhanie from smuggling . medhanies heard laughing about overloading migrant ships , causing them to capsize .\npolice in maine were responding to reports of an apparently drunk woman walking in and out of traffic . rebecca grant , 40 , initially claimed that she had been kidnapped and abused . when police checked her id and found that she was out on bail , they went to arrest her . she became violent and tried to head-butt a deputy sheriff before ` thrusting her head onto the trunk of his cruiser on two occasions ' she also bit the upholstery , tearing the material , causing $ 500 worth of damage .\ndavid rush , 33 , from lisburn , northern ireland , used to weigh 34st . he piled on the pounds thanks to a twice-daily takeaway habit . mr rush ` hated leaving the house ' because of his looks . he lost the weight after plucking up the courage to start cycling . he now weighs a slimline 15st 4lbs and is training for a half-marathon .\nsix somali-american men have been charged with trying to join isis . the men were arrested sunday in minneapolis and san diego . they are accused of conspiracy to provide material support and attempting to provide support to a foreign terrorist organization . the six are described as close friends who met secretly to plan their travel to syria .\nhibernian beat hearts 2-0 in the edinburgh derby on sunday . jason cummings and farid el alagui scored the goals for the hosts . the win was hibs ' first in the championship this season . the leith outfit are now second in the table .\na pro-life group put a photo of timothy eli thompson in an ad . the photo was removed from the social media site after it was deemed to be too controversial . facebook has since reversed its decision after public protest . eli was born premature on march 4 without any nasal passages or sinus cavities .\nan omura 's whale was found washed up on a remote west australian beach . the 5.68 m juvenile female was at first difficult to identify . it is the first sighting of the species in wa and only the second in australia . the species is usually found in indonesian waters , the philippines and the sea of japan .\nthe gold moto 360 is available to pre-order online from o2 . any customers making orders before 10pm bst on 20 april will receive the watch on 21 april . it will then go on general sale online and exclusively from o 2 stores on 23 april . the original moto 360 has a 22mm black leather strap and costs # 199.99 . motorola 's gold version has an 18mm stainless steel band and costs . # 50 more , at # 249.99 - which is # 50 cheaper than apple 's cheapest sport model .\nfor 54 per cent of single women , the best part about being single is to be able to go home and go straight to bed . yet for aussie blokes , 29 per cent say the variety of sexual partners is what floats their boat . while women spend almost half the time that men do seeking love , men do it more often . both men and women struggle with the lonely part of single life . 53 per cent hate being the only single person at a family gathering .\nmoha el ouriachi is set to sign for stoke city , according to his agent . the 19-year-old is turning down a new deal with barcelona to join the potters . stoke have already signed bojan krkic and marc muniesa from barcelona in last two years .\nguenter grass was awarded the nobel prize for literature in 1999 . he was best known for his novel `` the tin drum '' grass was an outspoken public figure . he has drawn controversy in the last decade . . grass died of pneumonia , '' his publisher says . grass was 87 .\nbridewell prison in liverpool is being developed into a luxury hotel . the grade ii listed building was previously known as bridewell prison . it housed inmates for court appearances and short sentences . the rooms have been transformed into bright and airy abodes .\nruben navarrette : retired rep. barney frank said `` we 're winning '' on lgbt rights , but it 's not true . he says a ballot proposal in california would legalize killing gay people , and other anti-gay laws are on the rise . navarrete : 2016 election will be a replay of pat buchanan 's `` cultural war '' speech .\nbayern munich are in talks with pep guardiola over a new contract . the former barcelona boss is out of contract in the summer of 2016 . board member jan-christian dreesen says guardiola will not be looking to earn as much money as possible . bayern are currently 10 points clear at the top of the bundesliga .\n`` it 's not often you get to celebrate a loss , '' mount st. joseph coach says . lauren hill was diagnosed with a rare brain tumor in 2013 . she played her first college basketball game last year . hill helped raise $ 1.4 million for pediatric cancer research .\nkamron t. taylor was awaiting sentencing for murder when he escaped from the jerome combs detention center in kankakee , illinois , early wednesday . the 23-year-old beat a guard into unconsciousness , took his keys and uniform and sped off in his suv . he was convicted of first-degree murder in february and faces a sentence of 45 years to life in prison . authorities issued an alert for a 15-year old girl , savannah bell , who they believed was with taylor . illinois state police later announced the girl had been found , but did not say where or how officials found her or whether she had been with taylor in the escape .\nap mccoy will attempt to win the irish grand national on cantlow . the 19-time champion won the 2007 running on butler 's cabin . mccoy has vowed to retire if he wins saturday 's crabbie 's grand national at aintree . cantlow disputes favouritism for monday 's race largely due to the presence of mccoy on his back .\nmelbourne man sharky jama reported to have been shot dead in syria . the jihadist 's father , dada jama , confirmed the news to sbs radio . his cousins have taken to social media to pay tribute to their cousin . sharky was a former model who lived in melbourne . he reportedly fled to syria with a friend to join the terror group .\nat her largest , amelia-jane harris weighed 27st 10lbs -lrb- 388lbs -rrb- she was bullied at school and called ` fatty bum bum ' by classmates . at 17 , she fell ill and was diagnosed with crohn 's disease . the illness has left her in constant pain and she can barely keep food down . she lost 18 stone in 20 months to become a slim size six . but she says her new ` dream body ' is actually a nightmare as she can not eat .\nmarco evaristti , a chilean artist , poured red fruit dye into the strokkur geysir . when they boiled , vibrant pink steam blew up from the ground . he has since been jailed for two weeks after landowners lambasted his efforts as ` vandalism ' evaristti defended his artwork , saying nature belonged to ` no one '\ndaley blind was given a self-portrait of himself and his father danny . the manchester united star posted a picture of the painting on instagram . the 25-year-old has been a key figure for united this season . blind has played in midfield and at left back for louis van gaal .\nsaudi arabia began airstrikes on houthi rebels in yemen three weeks ago thursday . the houthis forced president abdu rabu mansour hadi from power in january . hadi still claims to be yemen 's legitimate leader and is working with saudis and other allies to return to yemen .\nmike coupe , 53 , was convicted of embezzlement last september . former business partner amr el-nasharty accused him of trying to seize money . coupe is believed to have travelled to egypt to appeal conviction . but this was unsuccessful and he has now been sentenced to two years in jail . the crime relates to sainsbury 's venture into egypt 16 years ago .\nwayne kyle spoke for the first time since the end of his son 's killer 's trial . said he and wife deby are ` surviving ' now that they have had time to process son 's death . chris kyle and friend chad littlefield were shot dead at gun range in 2013 . eddie routh was found guilty of the murders and sentenced to life in prison . mr kyle said he was disappointed with the way the movie american sniper portrayed his other son , jeff , who also served in iraq .\npeople with rapid eye movement sleep behaviour disorder -lrb- rbd -rrb- move around in their sleep and ` act out ' their dreams . up to 90 per cent of people with rbd will develop a neurological condition . this could be an early sign of parkinson 's disease , researchers said .\nashley young moved to manchester united in june 2011 from aston villa . the winger acknowledges it took time for him to come into his own at the club . young feels he has an important role under louis van gaal . the 29-year-old has had to share responsibility with wayne rooney .\nrhodri giggs , 37 , said the offence on october 14 last year ` was n't intentional ' he was found guilty of driving a mercedes c200 without insurance . giggs was banned from driving for six months , fined # 110 and ordered to pay # 85 costs . he revealed he would permanently lose his job as an hgv driver with an agency .\nmax muggeridge , 19 , caught a four metre tiger shark at the weekend . he reeled in the monster on the tweed coast just inside the nsw border . the teenager said the catch was a once in a lifetime opportunity . he said he was exhausted and had blisters all over his hands . the teen released the shark back into the ocean .\narsenal face aston villa in the fa cup final at wembley on may 30 . the gunners will wear their yellow and blue away strip for the match . tim sherwood 's villa side won the coin toss ahead of the final . the winner of the coin-toss selects their home kit for the final .\nimages of christina o'gorman , then 14 , taken by her father mervyn o ' gorman in 1913 . the images are among the earliest surviving colour photographs ever taken . the strawberry-blonde teenager is seen posing in red on a beach in dorset . the haunting images are on display at the national media museum , bradford .\ntyphoon maysak was initially a top-rated category 5 typhoon , causing troops in the philippines to be put on alert today . residents and toursists along the eastern coast have been warned that it will hit land some time in the next 72 hours . it is expected to weaken once it hits the central or northern parts of the main philippine island of luzon on saturday or sunday .\naaron miller : drone strike that killed two hostages should n't surprise anyone . he says rogue regimes have long used hostages to extract concessions , humiliate u.s. miller : iran , north korea have used hostages in similar ways . he asks : why is obama trying to use diplomacy to bring them in from the cold ?\na tornado touched down in palm beach county , florida on thursday afternoon . thunderstorms were predicted to take place in several states on thursday evening , including in parts of south dakota , nebraska , kansas , and texas . friday 's weather may see storms in a number of major cities , including dallas and houston . severe storms may strike several southern states and along the gulf coast on saturday .\nfa cup semi-finalists reading threw away a 1-0 lead to draw 1-1 with cardiff . pavel pogrebnyak scored for reading after only four minutes against cardiff . conor mcaleny scored a late equaliser for the visitors at the madejski stadium .\nmanchester united defeated chelsea 1-0 in their premier league clash on saturday . eden hazard scored the only goal of the game in the first half . but there was controversy when ander herrera was denied a penalty for diving in stoppage time . jose mourinho said he was happy it was not a chelsea player .\nboris johnson will move centre stage in the conservative election campaign . london mayor will make a high-profile joint appearance with david cameron . there have been calls from conservative mps for mr johnson to be ` weaponised ' while many polls indicate deadlock , one lifted tory spirits yesterday .\nwwe show in newcastle is latest on their tour of the uk after wrestlemania . jermain defoe received a mixed ovation when he was introduced to the crowd . the sunderland striker scored the winner in the tyne/wear derby on sunday . the 32-year-old agreed a move back to the premier league in january .\ndanny wilson has decided to leave hearts at the end of this season . defender activated a clause in his contract to leave the club . wilson has been linked with a move to celtic under ronny deila . the 23-year-old led hearts to the championship title this season .\ndavid cameron 's campaign has focused on personal attacks on opposition . business leaders say the tories have failed to discredit ed miliband . one chairman said : ` the negative campaign has been disastrous ' comes as bookies name labour leader as favourite to be next pm . cameron 's advisers have called on the conservatives to change tack today .\nformer femen activist josephine witt threw confetti at mario draghi . the 21-year-old yelled ` end the ecb dictatorship ! ' before being bundled off by two heavyset guards , while a third threw himself in front of mr draghi . police said she was 21 and from hamburg .\nchelsea ellen bruck , 22 , from maybee , michigan , has been missing for six months . she was last seen at a halloween party on october 25 at a rural farmhouse attended by around 800 people . police have conducted extensive searches on foot and by helicopter to locate her . a new search was conducted on sunday night focusing on an area near the flat rock assembly plant .\ninverness defender josh meekings was charged with deliberate handball . the charge was dismissed by an sfa panel on monday . meeking will now be allowed to play in the scottish cup final on may 30 . the defender was not sent off as inverness beat celtic 3-2 after extra-time .\nformer northern territory politician matthew gardiner has been detained at darwin airport . the 43-year-old is believed to have been fighting against isis in syria . he reportedly flew from the middle east via sweden and singapore . in january the senior nt labor party figure fled the country with plans to join kurdish militants .\nfossil of yi qi was discovered by a farmer in mutoudeng , china . it belonged to a small dinosaur that lived 160 million years ago . the creature had small stiff feathers on its body and bat-like wings . it also had finger-like bones extending from each wrist that were covered in a membrane like a bat 's wing . scientists believe the dinosaur may have glided or even flown through the air .\nmatilda fitt , 21 months , played baby julia poldark in the bbc drama 's season finale . she was born nine weeks early in barry , south wales , weighing just 2lb 12oz . matilda was chosen to play to julie , who in the tv show died from putrid throat . her mother hannah fitt said watching the poldarks ' death scene brought tears to her eyes .\nnovak djokovic beat john isner 7-6 -lrb- 3 -rrb- , 6-2 in the miami open semifinal . the no 1-seeded serbian is aiming to win his fifth key biscayne title . he will face andy murray in sunday 's final after the scotsman beat tomas berdych .\nchelsea supporters trust and playfair qatar are organising the protest . photo protest will take place outside stamford bridge at 3pm on saturday . more than 1,400 confirmed deaths of construction workers in qatar . qatar will host the 2022 world cup in controversial conditions . the decision to award the world cup to qatar has been controversial .\nsarah thomas is set to become the nfl 's first full-time female official . the 42-year-old has officiated pre-season games as a line judge . thomas has been a referee since 1999 and has refereed college games . the mother-of-three will be one of eight new officials for the 2015 season .\nseaworld has released a five-year-old video showing ex-trainer john hargrove repeatedly using the n-word . the video was recorded during a phone call with a female friend . hargove was a trainer at seaworld for 14 years and spoke out against the company in the highly critical documentary blackfish . he has also released a book detailing his long career with the once-popular park . hargove says seaworld is mounting a smear campaign against him in an attempt to distract from his message .\nanne jarmain , 86 , was swept away in flood waters in maitland on wednesday . her car was pulled off the road and underwater as she tried to overtake a stalled car . her body was found at 7pm on wednesday , 10 hours after she went missing . ms jarmains car was dragged into the waters when she tried . to manoeuvre her silver hatchback around a stalled falcon . she was a beloved mother of three ; trevor , robert and jennifer and treasured grandmother and great-grandmother to many .\nkim and kanye stayed at the five-star ballyfin last may . the 18th century manor house is at the foot of the slieve bloom mountains . condé nast traveller has named it the grandest hotel in ireland . the hotel has only 20 rooms on its 614 acre estate .\ndimitri harris , 21 , ` pulled out gun and fired at fiancée samirria white , 19 ' they were arguing over his ` infidelity ' in bedroom of st paul apartment . carrying couple 's three-month-old child , he then shot her in face at close range . when medics arrived at scene , they pronounced miss white dead . now , harrell has been charged with second-degree murder at ramsey county district court . he reportedly admitted to having stored gun under daughter 's mattress .\nmarcello trebitsch , 37 , was charged with securities and wire fraud on monday . he is the son-in-law of disgraced new york politician sheldon silver . silver was arrested in january on charges he took $ 4million in brides and kickbacks since 2000 . trebitsh is married to silver 's daughter michelle , who is a certified public accountant . he allegedly ran a $ 7million ponzi scheme from 2009 through december 2014 .\nrafael benitez has dismissed reports linking him to the manchester city job . the spaniard is out of contract at the end of the season . benitez has yet to agree an extension with napoli . the former liverpool and chelsea boss is currently fourth in serie a.\nnew : `` i thought i lost you , '' frank jordan tells his son . louis jordan was rescued thursday after more than two months at sea . he was reported missing january 29 . the boat he was on capsized when he broke his shoulder . the father says he held hope because his son had a good boat .\nhigh school students in north east china 's jilin province forced to eat outside . teachers have banned packed lunches and erected barbed wire to prevent smuggling . pictures of students eating outside have spread rapidly on wechat . the school canteen has fought back by only serving staff .\noxford women made history on saturday with a 12th boat race victory in 16 years . for the first time in 88 years the women 's race was staged on the famous tideway course . hot favourites oxford romped to victory by six and a half lengths against cambridge .\nsurvey conducted by bt found a third of parents belt out hip hop songs . while ten per cent opt for pop tunes , including eurythmics ' there must be an angel . frank sinatra 's my way and dolly parton 's island in the stream also made the cut .\nmanchester united duo ander herrera and juan mata have been in fine form in recent weeks . mata scored twice as united beat liverpool 2-1 at anfield in may . herrera followed up his compatriot 's achievement with a brace against aston villa . united are third in the premier league table ahead of manchester derby on sunday .\nprincess leonore , 14 months , was in the vatican with her mother , princess madeleine . the duchess of gotland was not impressed with the papal visit . she was instead seen playing with her mom 's pearl necklace . madeleina is six months pregnant with her second child and will give birth this summer .\nnathaly hernandez , 2 , was born with a number of complications impacting her joints and movement . she has lived at the home of the innocents nursing facility in kentucky since she was three months old . staff at the facility were stunned by her antics and made a video of her lip-syncing to miley cyrus ' wrecking ball . to date , the clip has been watched thousands of times .\nfloyd mayweather takes on manny pacquiao at the mgm grand in las vegas on may 2 . the fight has been billed as the biggest sporting event in history . pacqu xiao-mao says he will have to be a warrior to beat mayweather . the filipino says he has to fight every round like it is the last one .\ncristiano ronaldo is a co-owner of second tier united states side , fort lauderdale strikers . the ex-barcelona and real madrid striker wants to sign the best talent in the world . ronaldo says he ` would pay from his own pocket ' to sign lionel messi .\namie cox , 33 , of victoria , has openly admitted she prefers her younger son alex , 5 , over her older boy william , 7 . she says the special bond is caused by his ` special smell ' and sniffs him all the time . she made the admission on an sbs insight programme about sibling rivalry . ms cox says she has been attacked and been called ' a freak ' , but that she is ' a normal loving mum ' she says she treats both boys equally and older son william also has appreciation for alex 's scent .\nmark jones is accused of killing 41-day-old amelia rose jones in november last year . the youngster died of a bleed to the brain after being rushed to hospital . jones , 45 , of cwmbran , denies murder and the trial continues . his daughter sarah jones , 25 , told court he had a difficult night with her baby .\nthe blaze began shortly before 7 a.m. at the general electric appliance park in louisville . video showed both smoke and bright orange flames . there were no reports of anyone injured or trapped . the park is large , such that 34 football fields could fit in one of its warehouses .\nrobin rinaldi , 42 , demanded an open marriage from her husband , scott . he had a vasectomy after she had a pregnancy test wrong . she bed 12 strangers in as many months . she 's now written a graphic , tell-all memoir about that year .\nhundreds of additional iraqi troops are being sent to reinforce colleagues . the reinforcements come four days after isis began attacking northern iraq 's baiji oil refinery . the facility refines much of the fuel used by iraqis domestically . isis launched an assault on the baiji refinery late saturday .\nsunderland beat newcastle 1-0 in the tyne-wear derby on sunday . jermain defoe scored the winner with a stunning volley . the 32-year-old is the first player to take part in the sunderland keepy up challenge . defoe sets an impressive score of 76 for his team-mates to beat .\nharris county sheriff 's officials say ulysses beaudoin , 39 , gunned down ulysse nelson , 22 , tuesday night after showing up at the family 's home in katy with his mistress in tow . beaudion allegedly got into a fight with his wife of 18 years , christina nelson , in the master bedroom . when the couple 's 22-year-old son tried to intervene , deputies say the father pulled out a 9mm handgun and shot him twice in the back .\nsaracens lost 13-9 to clermont in the champions cup semi-final . mark mccall 's side had five english-qualified forwards in the starting pack . the saracens director of rugby said he has no intention of overspending in a competitive post-world cup transfer market .\nabc is set to film a pilot for a new series of the muppet show . the network has asked big bang theory co-creator bill prady to mastermind the revival . the new series would feature kermit the frog , miss piggy , fozzie bear and other old favorites .\nlouis jordan , 37 , survived for more than two months on his stricken boat . he was rescued 200 miles off the north carolina coast on thursday . but doubters have questioned how he could be in such good shape . he declined medical help despite claiming to have broken a shoulder . he said : ` god knows i am a truthful man . my family knows i 'm telling the truth '\nteenage boy died after falling from a cliff and plunging into the sea . joshua smith , 16 , was plucked from the water by an raf rescue helicopter . he was flown to hospital in berwick-upon-tweed , northumberland , but later died . police say death is not being treated as suspicious but have referred it to police watchdog .\nwilfried zaha admits he felt ` worthless ' during his two-year spell at manchester united . the winger was signed by sir alex ferguson in january 2013 for # 10million . but he was loaned back to crystal palace for the remainder of the season . zaha then joined united in the summer but made just four appearances .\nfloyd mayweather v manny pacquiao will be the biggest fight of all time financially and the most significant this century . the fight between ali and foreman in 1974 is voted the greatest sporting event of the 20th century . it is one of the 12 fights that shaped boxing history .\nkevin pietersen has not played first-class cricket since january 2014 . the 34-year-old was axed by england after the ashes whitewash . pietersen is hoping to force his way back into the england reckoning . the batsman has been named in surrey 's 13-man squad for oxford university .\nceltic host inverness in the scottish cup semi-final on sunday . the match will kick-off at 12:15 , a time that is not popular with fans . ronny deila says teams should have more of a say on kick-offs .\nbbc trust chairman rona fairhead is facing calls to step down immediately . there are claims that hsbc 's swiss operation helped wealthy clients hide billions from the taxman . mrs fairhead , 53 , has said she wants to stay for a least another year . but two major investors and a leading shareholder group have voted to get rid of her .\nsky launched its buy and keep scheme for sky + hd subscribers in april 2014 . now it has opened the service to everyone across the uk and ireland . it lets people stream movies straight to their tv , or to their mobiles using an app . films can also be watched across multiple devices using a ` follow me ' function .\narsenal beat reading 1-0 to reach the fa cup final at wembley . the gunners will face liverpool in the final on sunday . the fa cup has been a great success for the tv channels this season . the bbc and bt sport presented their coverage from wembley on saturday .\njeremy clarkson was fired from top gear after attacking a producer . he has not publicly addressed dismissal , except to say ` everyone 's upset ' but he has now admitted he will ` miss ' fronting the bbc2 show . comes as angela rippon says she would be keen to return to show . she first presented the show 38 years ago and said it would be ` great '\nsabeen mahmud was shot dead at her cafe in karachi . she was leading a discussion on a topic that many want silenced . her death broke hearts beating for non-violence and progressive values . `` she really , truly was a success story of the heart , '' a friend says .\nmelbourne 's greatest ever easter egg hunt was held on saturday . the hunt is run by zaidee 's rainbow foundation to raise awareness of organ and tissue donation . a mother in her 30s was kicked out of the event after she took more than her fair share of chocolate treats . she became ` irate ' when a volunteer asked her to stop taking so many eggs . the woman told the volunteer to ` f *** off ' and swore at her .\nandy murray beat dominic thiem 3-6 , 6-4 , 6 -1 in the miami open quarter final . the world no 4 is into the semi-finals of the tournament in florida . murray was awaiting the winner of tomas berdych and juan monaco . the scot believes his fellow british players should use aljaz bedene 's arrival as motivation to better themselves .\na 15-year-old girl from cape town , south africa , was detained at the airport . authorities received information she was leaving the country to join isis , a minister says . the girl 's family has been debriefed and released into their care , he says .\nnew broadcasting house in central london covers half a million square feet . it took a decade to build and was opened by the queen in 2013 -- four years behind schedule and at least # 55 million over budget . bbc has admitted it ` occasionally ' runs out of meeting rooms in the building .\ntemperatures set to fall by around ten degrees next week . britain will go from being hotter than turkey and ibiza to colder than moscow , stockholm and finland in a matter of days . arctic airmass will arrive on saturday after it has blasted over from iceland . forecasters predict rain , thunder and hail will hit london marathon runners on sunday .\nreading were beaten 2-1 by arsenal in the fa cup semi-final at wembley . steve clarke 's side were flat in the first-half and offered too much respect . but they responded in the second-half with a goal from garath mccleary . adam federici 's goalkeeping error enabled arsenal to win in extra time .\nbritish solicitor cecil hamilton miller was part of the team that prosecuted the men and women responsible for running the notorious bergen-belsen concentration camp . he was responsible for the convictions of 31 camp guards in 1945 . mr hamilton-miller , who died in 2001 , struggled to talk to about the horrors he witnessed during the holocaust or the role he played after the liberation of belsen .\nholly solomon , now 31 , pleaded guilty to aggravated assault . she ran over her husband daniel in a mesa , arizona parking lot in 2012 . she was six months pregnant at the time and was driving in circles . bystanders called police after she slammed the door on her husband repeatedly . she had blamed problems in their family on obama and ` just hated ' him . barack obama won reelection with 332 electoral votes to mitt romney 's 206 .\nnative american actors walk off set of `` the ridiculous six '' in protest , report says . they say the script is insulting to native americans and women . `` they were being disrespectful , '' says one of the walkout actors . netflix defends the movie as satire .\npatricia ebel , 49 , was driving her 10-year-old grandson home after a day at the pool in naples , florida . she crashed her black bmw into a car that was stopped at an intersection . ebel was captured on video staggering as she failed all field-sobriety-tests . she is facing dui charges including driving with a .15 - or-greater blood alcohol content with a minor in the car .\npolice say nyia parler left her quadriplegic son in a wooded area near their home in south west philadelphia on monday . she then went to visit her boyfriend in maryland , police said . the 21-year-old , who has cerebral palsy , was found in the woods on friday night . parler has been charged with assault and neglect . she wrote a message on facebook on tuesday saying she was ` so happy ' the boy was hospitalized with dehydration , a deep cut on his back and possible eye injuries , but he appeared to be improving .\nwoman says people are living in fear and suffering under the terror organisation . she has seen people killed in front of her for breaking the rules enforced by is . she was lucky to escape from the is capital raqqa in syria where she said women are forced to cover up in a burka and must not go out in public alone .\nmohammad javad zarif has been iran 's foreign minister since last year . he has been key in helping to secure a breakthrough in nuclear talks with the u.s. . he is known for being `` polished '' and `` jovial '' but there are some facts about him that are less well-known .\nclorox tweeted ` where 's the bleach ' in reference to last week 's introduction of new 'em oji ' cartoons for iphones that include several faces of people with black and brown skin . the maker of clorox bleach and other products says it was attempting a humorous reference to other emoji symbols for objects like toilets and bathtubs that people use bleach to clean . the corporate twitter post hit a nerve when news reports and online discussions were focusing on the new collection of racially diverse faces that have been added to the symbols people can use in emails and text messages .\nbaroness brady helped david cameron with his jacket at newark event . tv star was appearing alongside pm to announce 16,000 new apprenticeships . cameron has pledged to create three million more apprenticeships over five years . costa coffee and supermarket chain morrisons have signed agreements to train thousands of apprentices each .\nhillary clinton is linked to a poor welsh mining family , an expert has claimed . her great grandmother mary griffiths emigrated to america with her family . the family made the journey via ellis island to scranton in pennsylvania . shortly after they arrived hannah jones was born , sometime between 1882 and 1883 . hannah jones met hugh rodham , part of the rodham family who had travelled to america two years earlier from northumberland . the pair eloped to binghampton in new york to get married .\nmelvin the giraffe had got his head stuck in the fence when he was attacked by an eland antelope . the giraffe was born at kristiansand zoo in norway in 2010 and named in a local newspaper competition . around 30 people witnessed the unprovoked attack at the zoo on easter monday .\nbayern munich lost 3-1 to porto in champions league quarter-final . ricardo quaresma and jackson martinez scored for the portuguese side . record opted for the pun ` fantasporto ' as their headline for the next day . abola simply write : ` superb ! '\nsupermodel maggie rizer gave birth to her daughter cecilia kathryn on february 9 . the 37-year-old is now enjoying a family vacation with her two-year old son quinnlann clancy and her husband alex mehran . she shared a photo of herself wearing a string bikini while playing with her son on the beach on monday .\na blue tit has built a nest in a damaged street light near copenhagen , denmark . the bird collected moss , grass and straw to line a nest inside the lamp post . the blue tit usually takes between one to two weeks to build a nest . jeanette rosenquist , 47 , was on her way to work when she spotted the bird .\njudge denies motion to let teen with hodgkin lymphoma go home . cassandra , 17 , has been forced to have chemo for nearly six months . her attorney says she is feeling well and wants to complete her treatment . cassandra has been under the custody of the connecticut department of children and families .\nstephanie scott was due to marry fiancé aaron leeson-woolley this saturday . but the 26-year-old vanished on easter sunday while making final preparations for the wedding . family and friends who travelled from around the world to be at the wedding now face having to attend her funeral . vincent stanford , 24 , has been charged with her murder . police have not found her body but have not ruled out foul play . the english and drama teacher was ` so in love ' with her partner .\nbhutan is a tiny himalayan kingdom wedged between tibet and india . the country measures its success with a gross national happiness index . tiger 's nest monastery is the most sacred site in the buddhist country . buddhism lies at the heart of society and houses are decorated with dragons .\nreal madrid drew 0-0 with atletico madrid in champions league first leg . gareth bale and cristiano ronaldo failed to make an impact on the game . jan oblak was brilliant for atletico and denied james rodriguez and gareth bale . raphael varane showed why he is a star of the future for real madrid .\nbayern munich boss pep guardiola will see out his three-year contract . karl-heinz rummenigge claims guardiola would not go to manchester city . the spaniard has been linked with a move to the premier league champions . guardiola joined bayern in 2013 after winning 14 titles in four seasons at barcelona .\nchristy turlington burns will run the london marathon on 26 april . the 46-year-old says she 's feeling ` stronger and healthier ' than ever . she suffered a potentially life-threatening complication shortly after the delivery of her daughter grace in 2003 . her experience inspired her to launch every mother counts in 2010 .\njoseph o'riordan , 76 , stabbed wife mandy , 47 , nine times with a kitchen knife . he flew into a rage after discovering her affair with postman nick gunn . but it can be revealed mr gunn , 41 , had previous affairs with women on his rounds . former girlfriend reveals he confessed to cheating on previous partner . o'riordan found guilty of attempted murder at brighton crown court .\nstudents at denver 's doull elementary write `` i wish my teacher knew '' on post-it notes . the assignment is based on conversations teachers have about their students . students ' wishes can reveal painful struggles or hopes for the future . teachers around the country are using the assignment to help their students ' wishes .\nthe 49-year-old woman was treated at memorial sloan-kettering cancer center . she developed a huge tumour underneath her left breast . doctors combined a standard drug , ipilimumab , with another , nivolumab . after one dose of the drugs , the tumour ` kind of dissolved ' doctors have hailed the patient 's recovery ` one of the most astonishing responses ' ever seen . the new therapy could save thousands of lives in future .\nqpr beat west brom 2-0 to keep their survival hopes alive . chris ramsey is the only black manager in the premier league . ramsey is a fine coach who has been overlooked for countless jobs . he took the qpr position after harry redknapp left the club .\nman utd face boyhood club chelsea at stamford bridge on saturday . luke shaw admits he has endured a ` frustrating ' debut season at manchester united . the 19-year-old has made only 17 appearances in all competitions for the red devils . shaw joined united in a # 31.5 million transfer from southampton last summer .\njohn carver will take charge of newcastle against sunderland on sunday . carver was assistant to ruud gullit when he left newcastle in 1999 . gull it controversially left out alan shearer and duncan ferguson . newcastle lost 2-1 to sunderland at st james ' park on a sodden night .\nsinger avril lavigne was diagnosed with lyme disease in april . she first started noticing symptoms in the summer of 2014 , but did n't know what was plaguing her . she visited specialists , but no one could help her out . the 30-year-old singer said she knew she had the disease ` the whole time ' she was bedridden for five months and was out of the public eye for most of that time .\na graphic on nbc 's today show on wednesday misidentified saturday night live creator lorne michaels as ` lauren ' the flub by a graphics person was made on the east coast feed of the morning show . today had interviewed 70-year-old michaels for a story matt lauer did on a new york gathering for people listed by time magazine as the 100 most influential in the world .\nmawi keivom 's mock croc ` dealer ' bag caused a stir on instagram . the word ` dealers ' is spelled out in bling diamond lettering . rihanna and rumer willis have also been spotted carrying gun-themed bags . grayson perry designed a bag in the shape of a scrotal sac .\n90-second clip filmed by a witness at king khalid international airport in riyadh . shows two male employees in blue uniforms recklessly hurling large suitcases onto the belt and against a wall . for nearly two minutes the men are filmed throwing or flinging several suitcases without care . two supervisors and three baggage handlers have been sacked by saudi arabian airlines .\nkathleen bailey , 70 , was given power of attorney over her terminally ill friend 's finances . she later became a carer for her victim , who was battling breast cancer . but the grandmother helped herself to at least # 1,500 and used the money to finance trips to north wales . she was handed a 12-month suspended jail sentence after admitting theft .\ninstitute for fiscal studies said ed miliband 's ` vague ' promise to balance the books would allow labour to borrow # 90billion more than the tories . this would rise to # 280billion in extra debt by the end of the next decade if labour remained in power . david cameron said the assessment showed labour was ' a risk to our recovery , a risk to the economy , arisk to jobs '\nmarco negri quit the scottish giants after fearing he was hiv-positive . negri joined rangers from italian side perugia for # 3.5 million in 1997 . the striker scored 23 goals in his first 10 league games for the club . in his autobiography , negri reveals his nightmare started after a reserve match vs aberdeen in 2000 .\nthe majority of the 550 were burmese nationals who were desperate to leave . they were rescued from island village of benjina last week . those who said they wanted to stay did so because they were owed back pay . an investigation last month revealed massive rights abuses in benjine . it traced slave-caught seafood from there to thailand and into u.s. .\ntruckers from bulgaria , poland and romania already work in the uk . employment agency mainline is offering incentive to lure them . they are being offered # 100 for each driver they manage to lure into britain . this is despite there being 3,000 jobless residents in swindon .\nap mccoy will retire from professional racing at the end of this month . mccoy will race at sandown on saturday for the last time before retiring . cheltenham gold cup winner andrew thornton has been one of the few weighing room colleagues to witness mccoy 's entire career . thornton : ` it is a bit like watching lionel messi on a horse '\nthe long-necked dinosaur was one of the largest animals to ever walk the earth . but for more than a century scientists believed the infamous dinosaur never existed . since 1903 , experts have been arguing the creature was originally misnamed . instead of belonging to the genus , or species ` family ' brontosaurus , they said it should in fact have been classified as ` apatosaurus ' now new research has shown that it is , after all , sufficiently different from apatosaurus to deserve its own genus name .\napp features quotes from china 's current leader , president xi jinping . designed by the central party school , it aims to `` arouse enthusiasm '' for socialist ideologies . analysts say xi is using state propaganda apparatus to build a cult of personality . the app drew mixed reviews online and on social media .\nshakespeare 's `` double falsehood '' was first published in 1728 by lewis theobald . but scholars have long dismissed the play as a fake , suspecting theobald tried to pass it off as his own . new research suggests shakespeare wrote it more than a century earlier with help from john fletcher .\ndome-like hue go lamp can be controlled wirelessly via the philips hue app . it can also be synced to music for a disco effect and tv programmes . the bowl-shaped lamp uses a rechargeable li-ion battery and offers up to three hours of continuous light after a 90-minute charge . it will be on sale in the us from june and cost $ 100 .\nblackburn rovers beat millwall 2-0 at ewood park on tuesday night . rudy gestede opened the scoring for blackburn with a fine finish . jordan rhodes added a second in injury time to make it 2-1 . neil harris ' side are now four points adrift of the play-off places .\nluis enrique insists he is not concerned by neymar 's recent goal drought . barcelona boss is confident the brazil forward will soon return to top form . neymar has not scored for barcelona since february 15 . barcelona are bidding to repeat the historic treble of 2009 under enrique .\narlette ricci was ` particularly determined ' to stash money in swiss accounts for two decades . she denied hiding the equivalent of more than # 15million , saying she had simply tried to avoid tax . but bugged phone conversations between heiress and her daughter suggested otherwise . ricci , 74 , was given a total of three years in prison , with two years suspended .\nms giffords walked through the airport in california using a cane . the former u.s. representative was accompanied by her husband , retired astronaut mark kelly , and a young woman . the couple were seen jetting out of los angeles ahead of the easter weekend . ms gifford , 44 , survived an attempted assassination in tucson , arizona , four years ago . she is now an advocate for gun control .\nmargaret and gary mazan found guilty of animal cruelty at court . their 14 red setters were found in ` worst conditions ever seen ' in a garden shed . rspca inspectors found three of the dogs crammed in puppy cages . the animals had matted fur , were dehydrated and not provided with a diet . couple were jailed for 26 weeks and banned from owning pets for 25 years .\njulian zelizer : democrats are showing signs of taking on economic inequality . he says the party needs to change the way it raises money for campaigns . zelizer says democrats have lost their traditional base of campaign support . he asks : if democrats want to take on wall street and tackle inequality , they must reform campaign finance .\ncnn looks at the role of isis in some communities . a newly discovered frog has a distinct resemblance to kermit the frog . some children are using suction to make their lips look like kyle jenner 's . the pentagon is working on drones at sea . and they could be valuable tools in tracking enemy ships . and more .\nopinion polls show no clear winner in uk election debate between seven party leaders . david cameron is probably wise to have refused all invitations to go head to head with miliband alone , writes simon tisdall . miliband has been given a hard time by the british media , he says . but labour 's leader is a perfectly capable debater , he adds .\npeter bergen : obama 's policies have led to rise of radical islam . he says obama has failed to see that isis and al qaeda are manifestations of radicalislam . bergen says obama 's policy on yemen shows that al qaeda remains a threat to u.s. and allies .\nbritain struck oil in falklands yesterday , a discovery likely to escalate tensions with argentina over ownership of the islands . officials claim companies active there are acting ` illegally ' in argentine territory . discovery at zebedee exploratory well comes amid worsening relations with buenos aires , exactly 33 years after argentina invaded the islands .\njust one crème egg will take 19 minutes of skipping to burn off . kit kat chunky easter egg contains 24 teaspoons of sugar . lindt bunny contains 540 calories and can be burned off in an hour of rowing . a 90g packet of mini eggs contains 444 calories .\ncarl hendrick , head of learning at wellington college , berkshire , has attacked the ` tidal wave of guff ' in classrooms . these ` missives in mediocrity ' often tell pupils to ` live your dream ' and ` you can do it '\nrenee bergeron 's superhero project is a free photo project that features disabled children . the 38-year-old photographer from washington dresses up her children with disabilities and autism in order to make them feel like they can do anything . mrs. bergeron says she hopes the images will inspire people to see disabled children as superheroes .\nmichelle pfeiffer is set to star in a new television comedy about a morning news program produced by katie couric . the series was created by diane english , the creator of murphy brown , about a female news anchor . couric will serve as an executive producer , drawing on her experience as an anchor on today for 15 years .\nsolar impulse 2 is attempting to fly around the world without using a drop of fuel . plane has been grounded in china for two-and-a-half weeks due to bad weather . plane will cover some 35,000 kilometers -lrb- 21,748 miles -rrb- over five months .\narmed men attacked fenerbahce 's team bus as it drove to the airport in trabzon . the turkish football federation have suspended football for one week . the decision affects next weekend 's super lig fixtures and the midweek cup quarter-finals . turkish official says police have detained two people suspected of involvement in the attack .\nfamily of hitler 's propaganda minister suing publisher over book using his diaries . cordula schacht is representing joseph goebbels ' estate in case . peter longerich drew on diaries for biography called goebbels in 2010 . english edition of biography is due to be published by penguin random house uk .\nflames erupted from a manhole cover in central london yesterday . firefighters and gas workers are still battling to put out the blaze . more than 2,000 office workers had to be evacuated due to the fire . more then 1,000 buildings remain without power today .\nplague is still contracted by 2,000 people a year in sub-saharan africa and madagascar . the disease famously killed millions of europeans during the black death . it is most commonly carried by fleas and rodents and can spread to humans . prairie dog deaths in picture canyon , arizona , alerted officials to the outbreak .\njapanese woman charged with defacing florence cathedral dome with make-up . 48-year-old used an eyeliner pencil to write her name and the day 's date . police said it did not leave any permanent marks , but she was charged . it 's the second time in four weeks that a holidaymaker has been charged .\nharrison poe was announced as best supporting actor at the annual tommy tune awards on tuesday in houston , texas , but the high school student had a little difficulty navigating the stage . tv cameras caught him confidently getting up to accept the accolade before slipping and falling headfirst into the darkness . poe fell into a net covering the orchestra pit and luckily no one was hurt below .\nmarie teresa ratcliffe worked at furness general hospital in cumbria . she has been accused of 77 misconduct charges relating to 14 patients . two babies died at the hospital between 2004 and 2013 . ms ratcliffe has today accepted her mistakes ` contributed ' to the deaths . she refused to defend herself at a fitness to practise hearing . she also declined to send a lawyer in her place to the nursing and midwifery council .\ntwo-year-old boy fell into cheetah enclosure at cleveland metroparks zoo . witnesses claim mother was dangling him over the edge . cheetahs did not approach the boy or his parents while in the pit . zoo plans to press child endangering charges against the mother .\napple watch will go on sale on april 24 . firm will show off the watch to the public for the first time from tomorrow . customers can pre-order their watch online from tomorrow morning . there wo n't be an in-store pick-up option . watch allows users to check email , listen to music and make phone calls .\nrachel simpson was diagnosed with one-in-a-million genetic condition last year . the 15-year-old has a mutation of the gata2 gene - important in production of blood cells . this means a sufferer 's blood count might be low , making them vulnerable to infection . or , the blood cells might be abnormal , leading to leukaemia . the rest of her family are now waiting on tests which could reveal which of them also have the faulty gene .\nliverpool midfielder lucas leiva has recovered from injury . the brazilian played 90 minutes in sunday 's all-star charity game at anfield . liverpool captain steven gerrard is suspended for three games . lucas is hoping to slot back in seamlessly after injury halted his season . the midfielder is looking to recapture his best form in two years .\nhillary clinton announced her presidential bid on friday . julian zelizer : foreign policy will be a major issue in the upcoming campaign . he says clinton 's tenure at the state department should be an advantage . zelizer says she will have to define her own approach to the world .\nfive hat-tricks have been scored in liverpool vs arsenal matches since premier league inception in 1992 . robbie fowler has scored two of the five hat-trick heroes in this fixture . thierry henry scored a treble for arsenal in 2004 and peter crouch scored the fourth in 2007 . andrey arshavin scored a quadruple in april 2009 for arsenal against liverpool . martin skrtel scored an injury-time equaliser in december 's 2-2 draw at anfield .\ntesco 's clothing brand f&f has launched the cheapest bridal gown on the market . it is available online for just # 80 and can be worn again rather than being stashed away . the dress is a mixture of nylon , cotton and polyester and can also be handwashed .\npolicewoman cao yu was stabbed in the shoulder by a thug with two knives . the 22-year-old held off the man in a public square in guizhou province . she sustained further wounds to both hands as she fought off the robber . chinese social media users have praised her bravery .\n238m passengers flew out of uk in 2014 , up 4.4 % on 2013 and 10m more than in 2013 . spain is most visited country by plane , followed by germany , italy and france . united arab emirates also ranks in top 10 countries british flyers most travel to .\nmamadou sakho will miss liverpool 's clash with newcastle united with a hamstring injury . the france international came off in the first half of wednesday 's fa cup replay against blackburn . emre can will return from suspension but martin skrtel and steven gerrard must serve final three-game bans . daniel sturridge should be fit after complaining of muscle tightness . daryl janmaat should befit to take his place in the newcastle team despite injury scare .\nthe masters begins on thursday at augusta national . rory mcilroy is bidding to complete a career grand slam . tiger woods will be accompanied by his children for the first time in over a decade . the 80th anniversary of the most famous shot in masters history . gene sarazen made his albatross on the 15th hole in the final round .\nreal madrid host atletico madrid in the champions league on wednesday . javier hernandez is on loan from manchester united and is set to start up front for carlo ancelotti 's side . the 26-year-old has scored in his last two appearances for the club . click here for all the latest real madrid news .\nkristina patrick from alaska filmed her german shepherd , pakak , performing a skillful trick . video footage shows the pup lying on her back with a tennis ball neatly clutched between her front paws . she then proceeds to lift it into the air being careful not to drop it .\nclint gee had planned to reunite his mother , elizabeth hobbs , with his father , alex gee , who died in 1964 . he made the six hour journey from brisbane to wandoan in regional queensland to bury his mother . mr gee said he had confirmed the day with the council to ensure everything would run smoothly . but the council failed to dig a spot where he could place his mother 's ashes . ` it was shattering , ' mr gee said , after he had to dig the hole himself . the council apologised and provided mr gees with a refund .\nthe incident occurred during the riots in baltimore , maryland on monday night . fifteen police officers were injured in the clashes with angry mobs rioting over the death of freddie gray . a photo taken by photographer patrick semansky captures the moment one police officer threw a rock back at protesters while his fellow cops looked on . about 27 people have been arrested after looting local businesses and setting several buildings on fire as revenge for gray 's death .\nrangers are currently fourth in the scottish premiership . they face dundee united in the league on saturday . stuart mccall expects shane ferguson to be fit and ready to play . ferguson was one of five newcastle players sent north on loan to rangers . mccall says he is impressed with ferguson 's mental state .\nalex song has picked his #one2eleven xi for the fantasy football club . the west ham midfielder has played for arsenal and cameroon . song believes carlos kameni could have played in the premier league . barcelona 's neymar and lionel messi also feature in the xi .\npatrick kluivert has made a winning start as curacao coach . the former holland forward and assistant coach beat montserrat 4-3 on aggregate . curacaos will face cuba in the next round of 2018 world cup qualifying . kluivert worked with louis van gaal at the 2014 world cup in brazil .\ncrystal palace travel to sunderland in the premier league on saturday . sunderland midfielder sebastian larsson is suspended for the clash . jack rodwell will return to the squad after a hamstring problem . wes brown and emanuele giaccherini are still missing for the black cats .\ndocuments show his club 's wage bill soared by another # 1million last season alone . saracens are being investigated by premier rugby for alleged salary cap breaches . nigel wray has dismissed rugby ' 's salary caps rules as ' a farce ' the employee wage bill ballooned to # 9.1 m last year .\nwest brom host leicester city at the hawthorns -lrb- saturday 3pm -rrb- craig dawson set to return for baggies after serving one-match ban . youssouf mulumbu starts three-game ban after being sent off in qpr defeat . matt upson and dean hammond available for leicester . ben foster still out for baggie 's with knee injury .\niona costello , 51 , and daughter emily , 14 , were last seen on march 30 near their home in the wealthy seaside village of greenport . their car was found in a parking garage on 42nd street in manhattan , but the pair left no other trace of their whereabouts . relatives of the ` quiet irish family ' , who own a horse farm on long island 's north fork , reported them missing on tuesday . mrs costello 's husband george , the co-owner of the construction company costello marine in greenport , died from a heart attack in 2012 . a relative said that the widow had been ` under a lot of stress ' because of a legal battle with four of\nukip censors poll showing nigel farage is on course for humiliating defeat . secret poll shows farage has fallen behind tory opponent in kent seat he is contesting . he is in danger of finishing third , with labour catching up fast . if poll is accurate , it could end farage 's political career . he has vowed to resign as ukip leader if he fails to win south thanet .\nvirgin galactic chief executive george whitesides has said the new spacecraft is nearly ready . he said it could begin test flights by the end of this year . its predecessor was destroyed in the mojave desert on 31 october 2014 . co-pilot michael alsbury was killed and pilot peter siebold was injured . mr whitesides said the company is planning to use lessons learned from the crash to ensure that the new spaceship works ` better '\nmother-of-six louise henderson alakil , 49 , moved to yemen 27 years ago . she worked as a teacher at international school in sanaa until fighting . she is now hiding in a shelter below her family home on outskirts of city . her youngest children miriam , 11 , and ayesha , nine , are also hiding there . they are terrified of dodging fighting to get to uk embassy in sudan for documents .\nthe white house state dinner is the highest diplomatic honour the u.s. reserves for allies and other countries . obama has held the fewest number of state dinners since harry s. truman , who left office 62 years ago . the state department pays the entire tab , which averaged about $ 500,000 each for obama 's seven dinners .\nthe bus hit the boeing 777 passenger jet at tashkent airport in uzbekistan . the collision caused damage to the plane 's engine , but no injuries were reported . tashkent is the largest international airport in central asia . the crash will have delayed hundreds of passengers .\nswansea 's bafetimbi gomis was injured in the 1-1 draw with everton . the frenchman will miss league trips to leicester and newcastle . he hopes to return for the visit to arsenal on may 11 . gom is a grade two hamstring strain and will be out for three to four weeks .\nformer new york giants kicker lawrence tynes is suing the tampa bay buccaneers for $ 20million in lost future earnings and $ 15,000 in damages . he says he contracted the deadly infection in 2013 following a surgery on an ingrown toenail . the lawsuit alleges that the buccaneers ` failed to disclose and actively concealed ongoing incidents of the infection among other individuals ' who used team 's facilities . tynes and another player , offensive guard carl nicks , both contracted methicillin-resistant staphylococcus aureus -lrb- mrsa -rrb- infections during a july 2013 outbreak of the bacteria .\nkristen lindsey from brenham , texas , allegedly hunted the animal down and shot it with a bow believing it was feral . but a local rescue center say the cat , believed to be called tiger , was domesticated and had been missing for around two weeks . she then posted a horrifying image of her holding the dead cat on facebook . lindsey , 31 , said after the picture was uploaded that she did n't lose her job - claiming no one would fire her because she is ` awesome ' local prosecutors are now considering whether she should face criminal charges .\nbild and paris match report they have video of the final moments of germanwings flight 9525 . a french prosecutor says he is not aware of any such video . a gendarmerie spokesman says cell phones have been collected at the crash site . all 150 people on board the flight were killed .\ncrystal palace beat manchester city 2-1 at selhurst park . glenn murray and jason puncheon scored the goals for the eagles . sergio aguero scored a late consolation for the champions . manuel pellegrini believes palace 's first goal was clearly offside . the chilean insists he is not concerned about his job after the defeat .\npippa middleton was spotted out jogging in london today . the 31-year-old is preparing to take part in a 54-mile bike ride . she is raising money for the british heart foundation . pippa has previously revealed how she sticks to ` wholesome carbs '\ntom varndell scores hat-trick as wasps beat london welsh 40-13 . ashley johnson , sailosi tagicakibau and alapati leiua also score tries . wasps win away from home in the aviva premiership for first time in 2015 .\na. alfred taubman died on friday night at his home after a heart attack . taub man 's business success spanned from real estate and art houses to the hot dog-serving a&w restaurant chain . he was convicted in 2001 of conspiring with anthony tennant , former chairman of christie 's international , to fix commissions the auction giants charged . taubman was fined $ 7.5 million and spent about a year in a low-security prison in rochester , minnesota .\nfamilies of five chinese feminists have issued a plea to authorities for their release . the female activists were arrested the weekend before international women 's day , as they were preparing to hand out leaflets about sexual harassment on public transport . they now face being jailed for up to five years if they are charged .\nparis saint-germain face barcelona in the champions league on tuesday . zinedine zidane is confident psg can beat barcelona and progress to the semi-finals . the french champions lost the first leg 3-1 at home last week . zlatan ibrahimovic and marco verratti will be available again for psg .\nizzat ibrahim al-douri was a former top deputy to saddam hussein and a key figure in sunni extremist groups . he was killed in an operation by iraqi security forces and shia militia members , a militia commander says . al-douri was the highest-ranking member of hussein 's regime to evade capture .\ndidier drogba spotted on his mobile phone in london on tuesday . chelsea striker was spotted taking a stroll through the capital . drogbba replaced diego costa during chelsea 's 2-1 win over stoke . chelsea are seven points clear at the top of the premier league .\nthree eight-week old puppies were found inside of a sealed cardboard box on april 18 . the labradors were found by a woman who said the dogs were covered in urine and suffering from heat exhaustion . the box was taped to prevent their escape and had no food or water inside . the puppies have worms and are malnourished , and it is likely they have lived their entire lives in a cage , according to mckamey animal center where the dogs are being treated .\ncharities run by hillary clinton 's family are under scrutiny after an investigation revealed they misreported tens of millions of dollars in donations from governments . the clinton foundation and the clinton health access initiative said they will be refiling multiple annual tax returns and may audit returns extending as far back as 15 years . republican critics say the foundation makes clinton vulnerable to undue influence . her campaign team calls these claims ` absurd conspiracy theories ' the errors appear on the form 990s that all non-profit organizations must file annually with the internal revenue service to maintain their tax-exempt status .\nlinsey ` jade ' berardi appeared in season 12 of bad girls club : chicago which aired in may 2014 on oxygen . she is reportedly survived by her parents , a brother , and a sister . no details or cause of death have been released . she was nicknamed the ` brooklyn brat ' on the show .\nworkman caught hanging out the door of a van travelling at 85mph down the m40 . he appeared to be laughing and making jokes with colleagues inside the kj rail van . the man claims he was only leaning out of the door because he was feeling unwell . he is now facing a disciplinary hearing after being caught on camera by a driver .\nkim revealed that she keeps her designer outfits in clear plastic bags . the reality star said that she is saving ` every last piece ' of her wardrobe . the 34-year-old said that her husband kanye always finds something ` super cute ' for their 22-month-old daughter north west to wear .\nhut 39 on mudeford spit in christchurch , dorset , measures just 15ft by 10ft . it has no bathroom , no mains electricity and the only way to reach it is by boat or a novelty ` noddy ' train . it is the same price as a five-bedroom house in herefordshire and more than a four-bedroom home in kingswood , hull . owners will also have to shell out between # 2,500 and # 4,000 a year in ground rent to christchurch borough council .\nrebecca exton-russell , 37 , was formally a size 18 and earned # 2,000 a day . posed in campaigns for major brands including marks & spencer , qvc and dove . but she was secretly ` repulsed ' by her body , so she checked into a military-style fitness camp and lost just over two stone in two months . dropped from 14 stone to just below 12 stone .\nwillem-alexander and his wife maxima visited the dutch city of dordrecht today . the couple and their three daughters were celebrating king willem-alexander 's birthday . the visit was part of the dutch royal couple 's 48th birthday celebrations . koningsdag - or king 's day - is a public holiday in the netherlands .\nthe 16-year-old was high on ` white rhino ' - super-strength cannabis . he threw the kitten against the door and flushed it in the toilet . the cat , named tilly , was so distressed she had to be put down . the defendant admitted causing unnecessary suffering . he was banned from keeping animals for ten years .\nruben costa , 35 , pleaded guilty to impersonating a member of the police force . he was only handed a two-month suspended sentence . the incident occurred when the northern territory man returned home from work to find his wife had left him , taking their son and possessions . costa pretended to be a police officer investigating a crime over the phone , claiming he needed the assistance of taxi drivers in the area .\nboxing legend floyd mayweather takes on manny pacquiao in las vegas on may 2 . the fight is billed as the biggest in the history of the sport . mayweather and pacqu xiao-piao have been posting photos of their toned bodies . mayweather is expected to earn an estimated $ 180million from the fight .\ncoca-cola has switched all the lids on its 500ml bottles to red . the move is to ` help make our consumers aware of the full choice ' fans have taken to twitter to express their discontent at the changes . coke zero , coke life and coke fat used to have different colour tops .\nshaheen pirouz from denton , texas , filmed her tiny pet canine being propped up and repeatedly falling forwards . footage shows him being positioned on his back legs , with his eyes immediately starting to close . pirouz is heard cooing in the background as she watches the sweet moment unfold .\nsir alex ferguson is spending his retirement devoting himself to any number of causes . the former manchester united boss has been associated with a good dozen charities or foundations . ferguson was in glasgow on thursday to make a # 5,000 donation to the remember mary barbour fund .\na car bomb explodes at a restaurant near the presidential palace in mogadishu . police say a woman and a boy are among the dead . islamist militant group al-shabaab claims responsibility for the attack . the restaurant is across the street from the central hotel , where al - shabaab killed 15 people in february .\nban ki-moon : young jihad and mohammad ya ` qoub are miracle children . they are among thousands trapped in the yarmouk refugee camp . ban : the logic of our humanitarian mandate -- the mission to protect -- never felt stronger . he says he will continue to press the case for humanitarian access to other children like them .\nmother of baby born with deformed hands and feet begs husband to come home . jiang min says she ca n't even afford food for her and her older daughter . her husband left home at the start of the year and has n't been heard from since . local media have cruelly dubbed the girl 's webbed hands andfeet ` trotters ' a charity has offered to pay for her basic medical care .\nlloyd dennis , 32 , has been charged with 28 separate offences against two children . the offences include rape and sexual activity with a child , police say . dennis taught at a number of primary schools across hampshire before becoming a lecturer at basingstoke college of technology .\na north pacific gray whale has completed the longest migration of a mammal ever recorded . the whale , named varvara , swam nearly 14,000 miles -lrb- 22,500 kilometers -rrb- the previous record was set by a humpback whale that swam a mere 10,190 miles . varvar was thought to be an endangered western whale .\nespn reporter britt mchenry apologized for her comments to a towing company worker . cnn 's kelly wallace says she 's taught her daughters to respect others . she says mchenry 's comments show she has n't lived up to that . wallace : other celebrities have handled stressful situations with grace and dignity .\nbarcelona face valencia in the la liga on saturday . luis enrique 's side beat paris saint-germain 3-1 in the champions league . barcelona are five points clear of real madrid at the top of the table . real madrid kick off against malaga in the evening on saturday . andreas iniesta is definitely out for barcelona with a bruised pelvis .\nnicola sturgeon 's policies are apparently tailor-made for a power-sharing deal . snp leader will unveil a manifesto including proposals for british foreign policy , welfare payments , energy bills and english university tuition fees . several of her election pledges overlap with labour policy . others are calculated to drag a minority labour government to the left .\ntara and gavin hills from kanata , canada have been anti-vaxxers for six years . but their seven young children came down with whooping cough . the hills ' three eldest kids were partially vaccinated , but the four youngest ones got no shots at all , leaving them vulnerable . the children have been ordered to remain in quarantine until they stop being contagious .\nantonio conte was back at juventus stadium for italy 's 1-1 draw with england . the former juventus boss insisted his return to turin prompted ` fond memories ' conte reportedly received death threats from juventus fans in the days leading up to the friendly .\nseven-year-old shiba inu dog has become an internet sensation in japan . he uses his nose and paw to open sliding glass window at tobacco shop . visitors have travelled from as far away as england to say hello . one youtube video showing his customer service skills has more than two million views .\nchinese woman posts pictures of her pet pig in bed every day . she has raised her beloved five flowers since it was a piglet . the porker has now grown to a whopping 187lbs -lrb- 13st -rrb- her husband is understood to be ` tolerant ' of the relationship .\nasian hornets have killed at least six people in france and terrorised wildlife . experts fear millions of the two-inch-long hornets could be heading for britain . they pose a terrible danger to our honeybees and are thought to have travelled to france in 2004 . norfolk beekeepers ' association to hold summit meeting on may 23 to discuss threats .\nlaurent stefanini , 55 , was in january asked by french president francois hollande to represent country at holy see . but appointment was met ` with a stony silence ' by the vatican , according to french media . mr stefanini worked as number two to french ambassador at vatican between 2001 and 2005 .\nclassical singer camilla kerslake , 26 , wore a daring backless black dress . she was joined by england rugby captain boyfriend chris robshaw . the couple looked the picture of happiness as they arrived at awards . camilla recently revealed she is ` pre-engaged ' to robshaw , 26 .\nlast season , luis suarez was clearly liverpool 's player of the season . the striker scored 31 goals in the campaign for the reds . steven gerrard , daniel sturridge and raheem sterling also played well . phillippe coutinho has scored six goals this season for liverpool .\nella parker , 9 , was nervous about her first triathlon . her mother , kate parker , decided to take a picture of her to remember her . the image is one of many from parker 's series , `` strong is the new pretty '' the series began as a way to expand her knowledge of lighting and composition .\nthe national radio astronomy observatory is objecting to proposals by irobot to release a radio wave-guided lawnmower . it claims irobot 's machines will interfere with its sensitive radio telescopes which astronomers are using to pick up signs of alien life . irobots claims the astronomers ' concerns are exaggerated and said the chances of its gardening technology will interfere are ` infinitesimal '\nwinston churchill appeared to fall asleep at a second world war reunion party alongside dwight eisenhower . the former prime minister was president eisenhower 's guest of honour at the gathering in london in 1959 . the party , held on the 20th anniversary of nazi germany 's invasion of poland , brought together the great and good of the allied wwii campaign .\njessica carey drove three hours to washington to see her grandmother . she had her husband aaron carey tattoo a portrait of her grandmother on her arm . the video was captured in february but has only just emerged online . patty lawing is overcome with emotion at the tattoo . she shouts ` oh my god ' and begins to shake and wave her arms .\nbarcelona beat paris saint-germain 3-0 at the nou camp . neymar scored twice as the la liga giants eased through . david luiz was poor as he was left to fend for himself . lionel messi and andres iniesta were also in fine form .\nleo the dog was hunting for dog biscuits when he knocked over the hob . fire started after the staffordshire-boxer cross turned the cooker on . the heat from the hob set fire to a child 's seat that had been left on the hob . more than 10 firefighters were needed to extinguish the flames in peckham , london .\ncharles kingham , 86 , and pauline moore , 68 , have been together for 40 years . they bought their home in mablethorpe , lincolnshire , for # 35,000 in 1987 . but it became a ` living hell ' after it was converted into an offender centre . vandals smashed windows with stones and pelted home with eggs . they have both suffered health problems as a result of the stress .\nclermont auvergne beat northampton 37-5 on saturday night . nick abendanon scored one try and had a hand in two others . the english full back was man of the match for the third time this year . abendan won the last of his two england caps in 2007 .\nmillwall beat charlton 2-1 at the den on good friday . alou diarra gave the addicks the lead in the second half . magaye gueye equalised for millwall with a late strike . charlton had chris solly sent off for handball in the box . lee gregory missed the resulting penalty for the hosts . millwall 's jos hooiveld scored the winner with a low drive in the 87th minute .\nitalian physician dr. sergio canavero is working on a head transplant . he says he has a patient who volunteered to be the first patient . he hopes to get the green light for a human whole head transplant in 2017 . but some experts say the research is not valid enough to go to human clinical trials .\nvirginia trimble ritter 's daughter , marcia , was raped and choked to death by jerome sydney barrett in 1975 . marcia 's body was found 33 days after she disappeared and ritter was advised not to see the photos . she finally asked to see them last year and said she now regrets her decision . barrett was found guilty of second-degree murder in 2009 and sentenced to 44 years in prison .\nchelsea beat shakhtar donetsk 3-2 to win the uefa youth league . jay dasilva , tammy abraham , charly musonda and charlie colkett are among the players who impressed for chelsea . ian wright has praised dasilva , saying he is better than any current premier league left back . chelsea will play manchester city in the youth league final on monday .\nkate major lohan arrested for battery after ` drunken attack ' on husband michael lohan . michael made a 911 call claiming his wife had struck him after coming home inebriated . kate reportedly admitted she had been drinking and claimed michael grabbed her by the throat . she was taken to the palm beach country jail and charged for battery .\na new museum in barcelona will be dedicated exclusively to woody allen . the new york director picked the catalan capital for the setting of his film , vicky cristina barcelona . the museum will be housed in a former arts and crafts school , la llotja . a competition will decide what project will be set in the now abandoned building .\nharry reid , 75 , broke his face in a new year 's day exercise accident . he told fusion and univision anchor jorge ramos that he may never again see out of one eye . ' i ca n't see out . of my right eye . and that 's okay , i can live with that , ' he said . reid said he was using a plastic exercise band to ` maintain my firmness ' when it slipped and ` slipped , spun me around , about , i guess four feet '\nbayern munich beat porto 6-1 in champions league second leg . pep guardiola 's trousers tore during the game . kurier report on a ` fixed ' bayern munich . record report on porto 's ` terror in munich ' l'equipe build up to monaco 's quarter-final second leg against juventus . barcelona ` fly into the semis ' after 2-0 win over psg .\ninverness ' josh meekings was given a penalty for handball in the scottish cup semi-final against celtic on sunday . celtic won the match 2-1 after leigh griffiths ' shot was blocked . the officials failed to spot the incident and should have given a spot-kick . fifa have been reluctant to use goal-line technology since the 2010 world cup .\n18-year-old charles terreni jr was found dead at the pi kappa alpha house in columbia , south carolina , on march 18 . he was four times over the legal alcohol limit when he died . the cause of death is still under investigation . the house was draped in st patrick 's decorations and a beer keg could be seen outside .\nchelsea face arsenal at the emirates stadium on sunday . didier drogba has withdrawn from monday 's ` match against poverty ' the ivorian striker has an ankle injury and is a potential doubt . diego costa and loic remy both missed saturday 's 1-0 win over manchester united .\nmarie csaszar , 45 , died last september following a ten-year battle with a brain tumour . she had worked for seven years at the bbc 's financial centre in cardiff . her husband paul says she was forced out of the post into another job after drawing attention to management blunders . he has asked for her work emails , which he believes will show she was being bullied by bosses , but the bbc has refused .\njet was spotted on comet 67p churyumov-gerasimenko on 12 march . it is unusual because it is erupting from the dark underside of the comet . such activity had only been seen on the day side so far , like this . jet may have been caused by a wave of heat reaching ice trapped under the surface .\ntiger woods announced he will play at the masters next week . woods played an 18-hole practice round on tuesday at augusta national . the 39-year-old has not played since february 5 at torrey pines . woods has plunged to no. 104 in the world ranking .\nthe fall of saigon on april 30 , 1975 , was a historic day for the south vietnamese army . ba van nguyen piloted a military helicopter to save his family , who were all ultimately saved by the uss kirk . nguyen somehow managed to pilot the helicopter while getting out of his flight suit and jumping into the ocean just seconds before it crashed . he was awarded an air medal for bravery for the feat . nguyen was reunited with the crew of the kirk in 2009 , and went on to start a new life in seattle .\nserena williams beat sabine lisicki 7-6 , 1-6 , . 6-3 in the miami open quarter-finals . the world no 1 recorded her 700th career victory on wednesday . williams will face either sloane stephens or simona halep in the semi-finals .\nsam allardyce wants west ham to qualify for europa league next season . the hammers are currently first in the premier league fair play table . the top three nations in uefa 's rankings qualify for the competition . england currently sit third behind the republic of ireland and netherlands .\nengland 's national saint 's day falls on april 23 . a number of international footballers took to social media to celebrate . harry kane posted a picture of his younger self , with his face painted with the st george 's cross . rio ferdinand also posted a photo of his time in an england shirt .\nvideo titled ` we will burn america ' shows footage of 9/11 terror attacks . also features footage of recent isis-inspired atrocities , including james foley 's beheading . claims u.s. citizens ' sense of safety is a ` mirage ' and will be burned . claims previous jihadis carried out 9/1 attacks with ` less resources ' than isis .\nnasa says a white dwarf star ripped apart a planet at the edge of the milky way galaxy . white dwarf is the dense core of a star like the sun that has run out of nuclear fuel . it is thought to have ripped the planet apart as it came too close to it .\nhillary clinton announced her 2016 white house bid on sunday . jared milrad and nate johnson , who are planning a summer wedding , were featured walking hand in hand in the video . the couple will get married in july in a chicago park . they plan to donate financially to clinton 's white house campaign .\naston villa have struggled to compete in recent years . tim sherwood has invigorated the side and you can feel it . but fans must be patient and be realistic . villa won the european cup in 1982 . they are a proper club . martin keown joined villa in 1986 because of their rich history .\nscientists have found a small area of the u.s. southwest produces more than triple the standard ground-based estimate of methane emissions . the hot spot , near the four corners intersection of arizona , colorado , new mexico and utah , covers only about 2,500 square miles .\nin the latest elders react video , a group of senior citizens are given their first introduction to popular messaging app snapchat . many of the elders have no idea what snapchat is - never mind how to use it . the group also learn how to take selfies , which they find difficult to do .\nthe ringling bros. . center for elephant conservation is located in polk city , florida . the center houses 29 elephants , and 13 more will join the group by 2018 . the company that owns the circus is retiring elephants from its traveling circus . the decision was made after years of criticism and lawsuits by animal rights groups .\nbarnet clinched promotion back to the football league on saturday . the bees defeated gateshead 2-0 in the conference clash . mauro vilhete scored twice in the second-half to secure the win . barnet will return to the league after a two-year absence .\nbotched is back for its second season tonight on e! the doctors are back to take on some of the world 's most shocking plastic surgeries gone wrong . dr terry dubrow and dr paul nassif were ` floored ' by the number of cases they had to fix this season . one of their patients , rajee rajindra narinesingh , had her face injected with ` cement ' at an underground cosmetic filler party .\nmanuel pellegrini 's manchester city face crystal palace on monday . city have lost ground to chelsea in the premier league title race . pellegrini 's side can ill afford to drop points at selhurst park . the champions laboured to a 3-0 win over palace in december .\naaron bee was wanted by lincolnshire police over an alleged domestic violence and assault . the 22-year-old goaded officers by sharing photographs online which showed him standing outside the force 's headquarters . he was eventually arrested in november in a cafe after posing outside five different police stations over two weeks . bee was jailed for eight months but has been released after spending less than five months behind bars since being arrested .\nkimberly dianne richardson was shot in the head on saturday night . she was rushed to hospital but died in the early hours of sunday . daniel steele , 25 , was arrested at his home in raleigh and charged with murder . richardson was six months pregnant and her baby has survived .\ndisabled fans say they are ` disgusted ' with manchester city . club accused of trying to relocate disabled fans by hiking up season ticket prices . some tickets have gone up by 283 per cent from # 870 to # 1,700 . city say they do not wish to discriminate and have to ensure they give the same offering to all supporters .\nreal sociedad lost 1-0 to elche in la liga on monday night . jonathas scored the only goal of the game in the first half . barcelona are top of the league on 78 points , two ahead of rivals real madrid in second-place .\njohn carver says he would walk away from newcastle if the club 's hierarchy had not given him assurances of serious summer investment . supporters are threatening to boycott the next home match against spurs in protest at mike ashley ' 's running of the club . newcastle have lost the last five tyne-wear derbies .\nislam will become america 's second-largest religion by 2050 . percentage of atheists across the globe is expected to fall . muslims will outnumber christians by 2070 , according to pew research center . christians in the us will decline from three quarters of the population in 2010 to just two thirds in 2050 , researchers claim .\nwladimir klitschko speaks to cnn from his miami training base ahead of april 25 title defense . world heavyweight boxing champion says he is shocked and upset by ukraine 's conflict with russia . klitsch ko says he wants to see a democratic ukraine and not a soviet-style dictatorship .\ndrexel university professor lisa mcelroy , 50 , made national headlines last month after accidentally emailing her students a porn link . mcelory said she was ` mortified ' and ` in terrible shape ' when she found out what she had done . she has now spoken out about reclaiming her dignity since the scandal .\nacetaminophen is the main ingredient in the over-the-counter pain reliever tylenol . it has been in use for more than 70 years , but this is the first time that this side effect has been discovered . previous research had shown that acetaminophen works not only on physical pain , but also on psychological pain . this study takes those results one step further by showing that it also reduces how much users actually feel positive emotions .\nbath have signed england sevens international jeff williams . the 26-year-old will move to the recreation ground for next season . williams was awarded a full-time sevens contract in 2012 and he has scored 36 tries on the world series circuit . he helped england win the tokyo sevens earlier this month .\npeter gale was dismissed by nonsuch high school for girls in surrey . the 47-year-old was sacked for ` unprofessional and inappropriate conduct ' investigation reveals he sent ` informal ' emails to sixth form pupil . school rules forbid teachers sending messages to pupils from private accounts .\npeter fox , 26 , believed to have fled to london after alleged double murder . his mother bernadette , 57 , and sister sarah , 27 , found dead in bootle . police say mrs fox died of asphyxiation , while her daughter was stabbed . cctv images show peter fox leaving liverpool lime street on wednesday . police are appealing for public 's help to track down mr fox in connection with deaths .\ngaston pinsard was sentenced to 18 months behind bars after admitting nine charges of indecent assault . the 96-year-old was jailed for the historic sexual abuse of two young girls . pinsards claimed he was abused at a jersey children 's home as a boy . the frail father-of-four is thought to be britain 's oldest serving prison .\nleanne mitchell was the first ever winner of the voice uk in 2012 . but her debut single failed to chart in the top 50 . andrea begley was mentored by sir tom jones but has also flop . now she works as a holiday camp performer . stevie mccrorie has been crowned the voice 2015 winner .\nnew york teen daria rose has been accepted into all seven of the ivy league schools she applied to . rose and her family lost everything when the superstorm hit in october 2012 . the 18-year-old plans to study political science and russian literature at the ivy .\nman in his 70s barricaded himself into his home in zaragoza , spain . he shot and wounded his daughter 's boyfriend and a police officer . after a night of failed negotiations , police stormed the house . the man yelled ` enter if you have the balls ' before an intense firefight ensued . he was shot dead when the civil guard slammed open the front door .\na look at oklahoma city , 20 years after the murrah bombing . a fly-by of pluto , 4 billion miles away . the struggle to save the last male northern white rhino in the world . a video of espn reporter britt mchenry insulting a tow company clerk goes viral .\na new study of australians ' spending habits reveals that 1.2 million either have a secret credit card or hide purchases from a partner . one in ten cardholders , or an estimated 800,000 australians , also admit their credit card spending has lead to an argument with a partner . the study of 1,200 cardholders by creditcardfinder.com.au found that the biggest culprits of covert credit behaviour are women .\nnico rosberg was quickest in friday 's practice session . but the mercedes driver admitted he 's wary of ferrari 's pace . the german described their pace as ` dangerous ' and ` worrying ' rosberg trails team-mate lewis hamilton by 17 points in the drivers ' standings .\nalissa sizemore , from vernal , utah , was only seven-years-old when a truck ran over her foot and immediately severed it . she had to have her right leg amputated below the knee . the little girl was fitted with a prosthetic leg in september and has been dancing since . she gave her first solo dance performance since she lost her leg last month .\njust four points separate the bottom five sides in the premier league . leicester , burnley and qpr are the only teams in the top flight to be safe . hull and sunderland are also in danger of being relegated . sportsmail 's reporters give their verdicts on the relegation race .\nalaska airlines flight 448 bound for los angeles was forced to return to seattle-tacoma international airport monday when passengers heard banging and pleas for help . the unnamed airport worker said he woke up when a piece of luggage fell on top of him . earlier , the terrified man called 911 begging the dispatcher for help .\nit is now a year since more than 200 schoolgirls were kidnapped by boko haram militants . nigerian president muhammadu buhari said the whereabouts of the girls is not known . he said his government will do ` everything in their power ' to find them . but he said he could not promise they would ever be found .\namanda burleigh won a decade-long battle to give mothers more time . she was convinced that clamping the cord within seconds of delivery was wrong . doctors and midwives have clamped the cord since the 1950s . they feared the drug -- since replaced with a safer substitute -- could harm the baby .\nlawyers say money is not needed for evidence or subject to forfeiture . robert durst , 72 , was arrested at a new orleans hotel in march on a murder warrant . he is accused of killing his friend susan berman in 2000 to keep her from talking to investigators about the disappearance of his first wife in 1982 . authorities who arrested durst in mid-march found $ 44,000 , marijuana and a revolver at his hotel room . they also found maps of florida and cuba , leading some to believe he was ready for a life on the run .\ndefence minister kevin andrews refused to name the leader of islamic state on abc 's 7.30 program . mr andrews said he was unable to do so for ` operational reasons ' the federal government announced 330 australian troops would be leaving for iraq on tuesday . the troops will be training iraqi soldiers for two years .\nceltic beat st mirren 2-0 at the paisley stadium on friday night . ronny deila was impressed with his side 's performance . but he also criticised the state of the pitch in scotland . deila believes scottish football will struggle to develop top players .\nbusinessman mark doggett has trained his two dogs to sniff out dry rot . border collie meg and english springer spaniel jess were trained for six months . they can detect the fungus in places a person would miss . mr doggett now plans to train his dogs to hunt out bed bugs for hotels .\nmost us teens are online or on their smartphones every day . pew research center survey found 92 percent of us teens go online daily - and 24 % admit they are online constantly . household incomes can influence which social network children use . instagram and snapchat are popular with children from wealthier families .\ndeliberations resume on thursday in the case of etan patz , who disappeared in 1979 . a new york jury is trying to decide whether pedro hernandez is guilty or not . hernandez confessed to police three years ago , but his lawyers say he made up his account .\nresearchers simulated how self-driving taxis would affect traffic . even with only one passenger per ride , the number of cars dropped by 77 % . the finding comes amid reports that google and uber are working on technology to develop driverless taxis . google is believed to be working on self - driving cabs , but has n't revealed details . uber has also said it could replace all of its drivers with autonomous vehicles .\na five-month-old baby was found dead at a home in perry barr , birmingham . the child was taken to birmingham children 's hospital but died hours later . a 25-year-old man and 22-year - old woman have been arrested on suspicion of murder . west midlands police said the death is being treated as suspicious .\ncontestant siyanda ngwenya ` raped a fellow housemate ' on big brother . the pair were last seen on tv kissing and cuddling in bed before cameras moved away . ngwenyan ' b boasted to housemates the next day that he had sex with the woman ' the alleged victim is said to have been shocked by the claims .\nconvicted murderer martynas kupstys posted a video on facebook of himself brandishing a meat cleaver . the 26-year-old was jailed for life for the murder of ivans zdanovics in lincolnshire in january 2014 . he was mistakenly let out of lincoln prison by bungling prison staff . kupstys spent three hours sitting on a bus stop before being taken to court .\na set of 500 limited edition copies of kim kardashian 's selfie book selfish sold out less than a minute after going on sale . the 352-page collection of selfies wo n't be available to the masses until may . the limited edition versions of the book were signed and numbered by the reality star .\nsurvey of 1,000 pet owners reveals pets watch 21 hours of tv a week . paul o'grady 's for the love of dogs is pets ' favourite show . one per cent of dogs are glued to the tv for over 10 hours . owners admit they leave it on when they are out to keep their pets company .\nwilson took a leave of absence from broadway play ` fish in the dark ' earlier this month . the 58-year-old actress revealed that her first test for cancer came back negative but that she was correctly diagnosed after seeking a second opinion . she underwent a double mastectomy and reconstructive surgery last week . wilson is also known as the mother of marnie , played by allison williams , in hbo 's ` girls '\nchantelle doherty , 21 , was jailed for two years after pleading guilty to burglary . she and accomplice martin lawrence , 27 , targeted elderly people in their homes . they stole whisky , a decanter , phone and credit card from a 92-year-old man . doherty is the niece of my big fat gypsy wedding and celebrity big brother star paddy doherty .\nthe 23-year-old driver and his two adult passengers escaped unharmed . the blue mitsubishi lancer sunk to the bottom of the pool at hinchinbrook in sydney 's north-west early on friday morning . the men told police they were driving along partridge road at 4.30 am on friday when they collided with a taxi at a roundabout . a taxi driver involved in the bungle fled the scene of the accident leaving the 23 - year-old to explain to police .\ncasino teenager jackson byrnes has been diagnosed with a stage four brain tumour . the 18-year-old was told by doctors that he had a tumour too deep to operate on . he and his family then turned to social media to raise money for the risky procedure . after seven days of campaigning online , the casino teenager is over halfway to his goal with two days to go .\nthe new species is called hyalinobatrachium dianae , or diane 's bare-hearted glassfrog . it was found on the caribbean slopes of costa rica . the last time a new glassfrog was found in costa rica was back in 1973 .\nsurgeons calling for rules on laser eye surgery to be strengthened . private hospital in harley street says increasing numbers of people are seeking its help after being given bad advice or poor treatment elsewhere . up to 120,000 britons have laser eye surgery each year . almost one in 20 of them suffer some sort of complication .\na man from mittagong in southern new south wales has struck gold . he discovered his good fortune on tuesday evening . the man said he and his wife had been ` struggling ' before the win . he said he had ` butterflies in his stomach ' when he read the winning numbers . two entries won the first division share of oz lotto 's $ 40 million jackpot draw on tuesday .\nthe bank 's page for the young entrepreneur awards was unlucky to be accessed . visitors were greeted by images of women posing naked or having sex . the porn site took over the address after the awards were scrapped in 2011 . hsbc yesterday removed the hyperlink from its main website .\nthe tony nominations for the 69th annual tony awards were announced tuesday . bruce willis and kristin chenoweth are among the nominees . the awards will be handed out on june 7 . the ceremony will air live on cbs at 8 p.m. et .\nlucy southern was a waitress at britannia hotels in leeds . she claims she was quizzed about her sex life and groped by boss . she kept silent because she feared her hours would be cut . an employment tribunal has now ordered her to pay # 20,000 in compensation .\nbritish scientists have discovered an ` achilles ' heel ' in prostate cancer . study could lead to better treatment for 42,000 men a year diagnosed with the illness . disease claims almost 11,000 lives a year in the uk , with most deaths occurring after it spreads around the body . scientists funded by cancer research uk studied samples taken from tumours in the prostate and around thebody in ten affected men . reading the dna revealed details of how the cancer metastasises .\njeanetta riley , 35 , a mother-of-three daughters was killed last july after she brandished a knife at two cops outside of a hospital in sandpoint , idaho . she was taken to hospital by her husband , shane , after he heard her fiddling with blades and talked about killing herself and stabbing people . she pulled a knife from under the car seat and was confronted by police before she was shot and killed . officers michael valenzuela , 27 and skyler ziegler , 29 were cleared of any wrongdoing following the incident and the case was closed in november .\ngao yu is sentenced to seven years in prison . she was accused of disclosing a highly confidential document to an overseas news organization . her lawyer says the conviction is based on a forced confession that she has since retracted . gao , 71 , immediately said she would appeal .\nturkish security guard cengiz guven has protected russell crowe , naomi campbell and aerosmith rocker steve tyler . he is the supervisor of site security at lone pine , the hilltop battlefield cemetery that will host the second australian dawn service on anzac day . the 30-year-old security manager from istanbul has been taking care of things at lone pine for the past four years .\nzimbabwean president robert mugabe arrived into south africa for state visit today . he appeared to be sporting a new hairstyle and even a pair of earrings in the shot . but it was in fact just a cleverly taken shot taken by a woman standing directly behind him . comes amid claims that mugabe wants daughter bona to succeed him as president .\nholder addressed hundreds of lawyers and staff members one day after his successor , loretta lynch , was confirmed by the senate . he told them he was proud of them and said he was going to miss them all . holder , a former judge and u.s. attorney who took the job in 2009 , will exit the department as the third-longest serving attorney general in u.s. history . newly confirmed attorney general-designate lorettalynch will take over from holder , following a months-long delay of her senate confirmation vote .\nonline game simulates ordeal of refugees trying to flee war-torn country . syrian journey often ends with refugees drowning in mediterranean . game criticised by experts for turning suffering of millions into a ` children 's game ' bbc insist it was made in-house and has had over a million hits online .\nukip leader nigel farage says party is only seen as racist by white people . he said claims the party is racist have stopped many supporters from backing him publicly . mr farage said that when he goes into ` black parts ' of london he gets a warm reception .\nian pettigrew photographed 56 adult women living with cystic fibrosis for his new book , salty girls . the 46-year-old photographer from ontario , canada , said he wanted to bring hope to children and teens diagnosed with the disease . the book is ` dedicated to showing how beautiful those fighting cf truly are '\nnew south wales residents warned to brace for more floods and damage . the state emergency service was deluged with calls for assistance last week . the organisation is concerned that more storms will hamper clean-up efforts . early indicators show an east coast low could hit the region on thursday . the same weather system lashed the state 's east coast for three days last week , with heavy rain possible from thursday .\nthree people were on board a hot air balloon when it crashed to the ground . incident took place during a training session in russia 's dmitrov district . the instructor and two passengers were hospitalised with cuts and bruises . all three are reported to be in a stable condition . the filmmaker captured the moment the balloon collided with a transmission tower .\narsenal keen on signing liverpool winger raheem sterling . but gunners have reservations over sterling 's recent events . sterling is currently in contract stand-off with liverpool . real madrid chief zinedine zidane has revealed his side are interested . bayern munich are also interested in signing the 20-year-old .\nthe wood green animal charity is offering the service to help households rid themselves of mouse infestations . the charity has teamed up with cleaning and diy app handy to offer customers a cat fostering service . cats will not just catch mice but the scent they leave behind can also discourage rodents from returning .\nn. korea demands the release of a cargo ship and its crew . mexico says it is holding the ship because its owner has avoided u.n. sanctions . the mu du bong ran aground off mexico in july . the ship 's crew is free and will soon be sent back to north korea , mexico says .\nmesut ozil went to a berlin nightclub hours after missing arsenal 's win at newcastle . arsene wenger has chosen not to fine the german for the incident . ozil explained to wenger that he was only in the club for 30 minutes . arsenal face liverpool at the emirates on saturday . danny welbeck could return to the side after a knee injury .\nthe briton was at nelson mandela 's 90th birthday party back in 2008 . lewis hamilton said he was rushing to meet actor will smith . the 30-year-old admitted he stepped on former president bill clinton 's foot . hamilton said : ' i did n't even apologise , i just kept going '\nerik compton is set to play in his first ever masters this week . the 35-year-old has had two heart transplants . compton is a spokesman for donate life . his first appearance in the masters coincides with donate life month . compton has been battling to earn a spot on the pga tour .\njames milner 's manchester city contract expires in june . the england midfielder has been linked with a move to liverpool . brendan rodgers is keen to fill the void left by steven gerrard 's departure . milner will make a decision on his future at the end of the season .\nthe rubber bowl in akron was built in 1939 and served as the home for the university of akron 's football team for 68 years . the stadium hosted acts like the rolling stones , ringo starr , black sabbath , simon & garfunkel , alice cooper and jon bon jovi . it also hosted other events including wrestling , soccer matches and the circus . it has been basically unused for more than five years and has been falling into disrepair .\nfather-of-six james ward , 31 , was attacked by intruders at his home in burnley , lancashire . he was left with a severed finger and wounds all over of his body after the attack . surgeons were forced to use staples to seal wounds to his head , legs , and back . mr ward is now in hiding and is too afraid to return home because he fears his attackers will kill him .\nphilippe coutinho scored the winner for liverpool with 20 minutes to play . the brazilian 's header from a corner found the back of the net at ewood park . liverpool will now face aston villa in the fa cup semi-finals . blackburn goalkeeper simon eastwood had a chance to force extra-time but his shot was saved by simon mignolet .\nshona banda , 37 , has said she will continue to fight for custody of her 11-year-old son after kansas authorities placed the boy into protective custody . the divorced garden city mother said she did not get custody of the boy back following a hearing on monday . possible charges include possession of marijuana with intent to distribute , possession of drug paraphernalia and child endangerment . banda is the author of a book that detailed how she used cannabis oil to treat her debilitating crohn 's disease .\nsecond-hand car dealer neil tuckett has turned his back on the modern vehicle . he only sells henry ford 's famous model t and sells one a week . the vehicles do n't require road tax or an mot and are cheaper to maintain than a modern car .\nmanchester united host chelsea in the premier league on saturday . wayne rooney may have to play in a holding midfield role . michael carrick and daley blind are two of four players ruled out . phil jones and marcos rojo will also miss the trip to stamford bridge . louis van gaal described it as ` the worst scenario ' for united .\nchristian benteke scored three goals for aston villa in 3-2 win over qpr . matt phillips headed queens park rangers into a seventh-minute lead . clint green put qpr ahead just after the half hour mark . charlie austin scored qpr 's second goal to make it 2-2 at half time . chint hill scored his first ever premier league goal for qpr to make the score 3-1 . bentece scored a fourth goal in the 83rd minute to seal the win .\nthe amazing images were taken in jervis bay which is in the south coast of new south wales . photographer andy hutchinson described the sight as a ` beautiful supernatural scene ' caused by millions of plankton omitting light . a similar display was shown in sydney 's manly beach back in august 2014 .\nnatwest t20 blast launched at edgbaston on thursday . andrew flintoff has called on english cricketing public to show their love for the tournament . the former england captain has backed under-pressure test captain alastair cook . flintoff also believes kevin pietersen 's future is uncertain .\njose mourinho will stick by his midfield trio despite poor form . cesc fabregas , nemanja matic and oscar have struggled recently . mourinho insists he will not make changes to his squad in the premier league . chelsea beat stoke 2-1 at stamford bridge on saturday .\nillinois rep. luis gutierrez is at the head of a group of representatives trying to help undocumented immigrants avoid deportations with what they have called the family defender toolkit . the informational pamphlet includes a bilingual card that lists reasons a person should not be deported under expanded . obama 's policies . critics of the toolkit claim that it is ` flaunting the law ' and encourages a false sense of security for undocumented immigrants .\npeter alliss says bbc should have tried harder to win rights to open championship . veteran broadcaster claims equality laws for women have ` b ***** up the game ' claims women at four courses that host open championship have lost 150,000 members . broadcaster also claims women at clubs could have used facilities for free .\njanet and john brennan bought barholm castle in dumfries and galloway for # 65,000 in 1997 . the couple have spent eight years and hundreds of thousands of pounds turning the fortress into a luxury home . the castle is thought to have once housed scottish minister john knox . it is now on the market for # 695,000 even though the couple will lose a six-figure sum .\narsenal beat burnley 1-0 to maintain second place in the premier league . arsene wenger 's side have won 16 of their last 18 games . the gunners face reading in the fa cup semi-final this weekend . wenger admits he could not have predicted arsenal 's run of results .\na brazilian football store claims to have the new chelsea kit for sale . it can be purchased with gareth bale 's name on the back . bale has struggled at real madrid this season and is linked with a return to the premier league . the website also has shirts with didier drogba on the front .\njohn zelepos faces up to 15 years in prison after pleading guilty tuesday to tax evasion and financial structuring offenses . prosecutors said zelepos diverted just over $ 567,000 from mystic pizza 's gross receipts into his personal bank accounts and those of family members . they say he then filed false tax returns to hide the income . the restaurant owner may also be forced to pay a $ 500,000 fine .\nthe 12-story cabin was built after a forest fire swept the valley clean of trees . owner wanted to see the idyllic valley over the tall trees around their cabin . it was abandoned for years but new owners are now renovating it . dr seuss fans have flocked to visit the property in alaska .\nmanuel pellegrini admits his side 's spirit is a concern after derby defeat . manchester united beat manchester city 4-2 at old trafford on sunday . city have lost six of their last eight games in all competitions . patrick vieira is in charge of city 's under-21 development squad .\nraheem sterling is yet to sign a new contract at liverpool . sterling has rejected an offer of # 100,000-a-week to stay at the club . the 20-year-old has played in various positions this season under brendan rodgers . sterling is seen as disloyal for rejecting the club and manager that have best developed his game .\nrobert downey jr has raised more than # 1million for british hospice julia 's house . the ironman actor promised to fly a winner to los angeles to join him . the offer also includes a gown or tuxedo fitting and a helicopter ride . the money raised will now use the money to build a new hospice in wiltshire .\nmanchester city host manchester united in the premier league on sunday . radamel falcao and sergio aguero feature in a promo video for sponsors puma . the two players battle it out in a cage style match . manchester city lost 2-1 at crystal palace on monday .\nliverpool beat newcastle united 2-0 at anfield on monday night . jordan henderson believes his side can catch manchester city in the premier league . henderson and simon mignolet both played their 47th game of season . raheem sterling and joe allen scored the goals in the win .\n3 tons of ivory hidden in tea leaf sacks from kenya seized in thailand . 511 elephant tusks , worth $ 6million -lrb- # 4m -rrb- , were bound for laos . bust came after customs officials received a tip-off in laos and thailand . the ivory , hidden among tea leaves , was shipped out of kenya on march 24 .\njenson button crashed into the back of pastor maldonado 's lotus on lap 49 of the chinese grand prix . the mclaren driver finished 13th but was demoted to 14th after the incident . button was also given two penalty points on his superlicence for the incident in china .\nhillsborough investigators release images of fans pictured at 1989 tragedy . they hope members of the public may recognise some of the men and women . police say the images may be able to answer questions of victims ' families . 96 liverpool fans died after being crushed in the 1989 disaster .\nfrom today , users can post , explore other people 's photos and interact with captions using just emoji . emoji hashtags work with single emoji , multiple emoji or can be combined with text . instagram has also unveiled three new filters called lark , reyes and juno .\nsharon wood sat in anguish as details of children 's final hours were outlined . christi shepherd , seven , and her brother bobby , six , died from carbon monoxide poisoning during a holiday in corfu in october 2006 . their father , neil shepherd , and his girlfriend ruth beatson were also almost killed by the fumes . the family were staying at the four-star corcyra beach hotel .\ndoug hughes wrote about his intentions on a website called thedemocracyclub.org . he says he was delivering letters to congress . `` my flight is not a secret , '' the post says . hughes ' friend says he called him wednesday morning and told him to check out the website .\nliverpool are expected to offer up to # 50million for raheem sterling . manchester city , chelsea , real madrid and bayern munich are all interested . juventus have made an offer for belgium midfielder axel witsel . the serie a side are also interested in paul pogba and paulo dybala .\nformer first daughter chelsea clinton spoke at an event on women and girls in new york city . she said her family foundation will be ` even more transparent ' in the wake of the scandalous claims . the clinton foundation is under fire for allegedly accepting millions from foreign entities in exchange for special favors from the state department . hillary clinton was helping approve russia 's purchase of us uranium production as her foundation received millions from executives tied to the deal . the foundation recently committed to stop taking donations from foreign governments but insisted it would n't return money it has already collected .\nmansion in daintree , far north queensland is on the market for $ 15 million . the home is suspended over a man made lake and looks as if it is sitting on a lily pad . it was designed by architect charles wright and won the australian institute of architects house of the year for queensland in 2014 . the property boasts six bedrooms , six bathrooms , five balconies , a 2400 bottle cellar and a helipad 100 metres from the house .\n` monster ' james tingley of michigan was sentenced to up to 50 years in prison on thursday for sexually abusing at least seven girls . jackson county chief circuit judge thomas wilson told ` monster ' james . tingly that locking tingleys up for the next 25 to 50 . years in jail ` is worth every penny ' tingler 's attorney eric white told the court that tingley still claims he is innocent .\nthousands of flights could be cancelled over three days of strike by french air traffic controllers . easyjet and ba among airlines set to scrap hundreds of flights . families returning from easter holidays and those hoping for last-minute break worst affected . experts fear up to half of all flights between uk and france could be axed .\na 71-year-old man and a 64-year old woman are charged with unlawful possession of a firearm . the woman , a licensed trainer , is also charged with obstructing police . at least 55 dog carcasses were found dumped in queensland bush . police say the crime scene was `` nothing short of abhorrent ''\nliverpool lost 3-0 to arsenal at the emirates on sunday . the reds have lost ground in the race for the champions league places . brendan rodgers says his side 's recent defeats are down to his players , not his tactics being susses . liverpool face blackburn in the fa cup quarter-final replay on wednesday .\nfloyd mayweather rang his car dealer at 3am to order a bugatti . the boxer insisted the car was to be in his driveway in just 12 hours . obi okele was given the task of getting the # 1.5 million super-car . the car was delivered just 11 hours later and added to mayweather 's collection .\nscientists were using the lofar radio telescope in the netherlands to study lightning and thunderclouds . they found it could measure changes in lightning caused by cosmic rays . a storm can have hundreds of millions of volts over multiple kilometres . the method could provide a novel way to understand thunderclouds .\nnigella lawson to host new series ` simply nigella ' on bbc 2 in autumn . first time she has appeared on the channel since 2012 with nigellissima . show will focus on ' a new pared-down approach to cooking and eating ' nigella was at centre of court case in 2013 after her marriage ended . she was forced to reveal details of her past drug use in the case .\nthe northern lights were even more remarkable than usual in march . italian photographer giovanna griffo was in iceland to capture them in all their glory . griffo , 42 , who is based in latina , led a group of her students to vik and hella in iceland .\nanah sophia stevenson ordered her big mac at mcdonald 's in blenheim , new zealand . she took three bites into her burger before she realised something was wrong . ms stevenson pulled a half eaten , disemboweled cockroach out of her mouth . the 26-year-old said she was trying to work her teeth through what must of been the insect 's shell . mcdonald 's has organised to pick up the evidence from ms stevenson in order to aid their investigation .\nlouis van gaal expects ryan giggs to succeed him as man utd manager . giggs has been van gaal 's assistant since the dutchman took over at old trafford last summer . the former united midfielder had a spell in temporary charge of the 20-time english champions following the dismissal of david moyes last season . van gaal has previously likened giggs . to his own former assistant - now chelsea manager - jose mourinho .\ndzhokhar tsarnaev was found guilty of all 30 counts in the boston marathon bombings on april 8 . his aunt , maret tsarnaeva , and two other relatives told time this week that they believe he was wrongly convicted as part of a conspiracy by the u.s. . the bomber 's uncle , said-hussein tsarnaev , said that ` american special services ' orchestrated the attack . the family members could offer no evidence to back up their allegations . tsarnaev 's mother , zubeidat , has continued to insist that her son and his late brother tamerlan were innocent .\n11 per cent of computer scientists currently in higher education have n't had sex . 9 per cent are on computer science and dentistry courses at university . in contrast , pupils enrolled in arts subjects like history and english were far more likely to have lost their virginity either before or at university .\nnearly 90 per cent of u.s. adults now say they have health insurance . researchers behind the gallup-healthways well-being index say the number of uninsured americans is now at a record low . when tracking began in 2008 roughly 14per cent of citizens were uninsured .\nalice kovach-suehn , 56 , from apopka , florida , was arrested last friday and charged with elderly neglect . police say they found the man in her care weighing only 89lbs . the 96-year-old told officers he was never allowed to eat anything but meat and ` dog feces '\nandras janos vass , 25 , convicted of human trafficking and racketeering . lured victims to u.s. with promises of easy work and high wages . then took their passports and threatened their families , prosecutors said . faces maximum sentence of 155 years in prison .\nphotographs show the moment bergen-belsen was burned to the ground . the death camp was liberated by british and canadian troops in 1945 . it became the final resting place for 50,000 jews , gypsies , homosexuals , nazi opponents and the disabled . diarist anne frank , and her sister margot , also died here . images were taken by reverend charles martin king parsons .\nmelissa borg , 13 , left her baulkham hills sports high school in seven hills at 7:30 am on thursday . the year 9 student never made it to class and her father reported her missing when he returned home from work . police have questioned her school friends about her mysterious disappearance .\nengland skipper chris robshaw was caught on camera holidaying with girlfriend camilla kerslake . robshaw has already talked to andrew strauss and lawrence dallaglio about the pressures of being in the spotlight in world cup year . rob shaw and kerslake shared a boating picture via instagram .\ndom manfredi scored a hat-trick as wigan beat warrington 30-20 . ben flower made his return from a six-month ban . the forward was sent off for punching lance hohaia in october . manfredo scored a second hat-trick in five days in wigan 's win .\npete evans has shared two testimonies from women who claim the paleo diet has helped them overcome the symptoms of multiple sclerosis . a 30-year-old woman , known only as hollie , claims she no longer suffers from ms. the paleo diet is a diet that bans grains , dairy , preservatives and sugar . the diet has been one of the hottest diet trends around .\nthe fire boat massey shaw was requisitioned from the london fire brigade in 1940 and transported to dunkirk . it helped to rescue 600 british soldiers in the face of the nazi advance . the boat went out of service in 1971 and for four decades was used as a walkway in a london dock . it took six years to restore the vessel to its former glory thanks to a grant from the national lottery . volunteers are now hoping to take the boat back to the beaches where it helped to save soldiers .\nbaltimore police say rioting started amid rumors of a `` purge '' led by high school students . the term appears to be a reference to 2013 's `` the purge '' and its sequel , `` thepurge : anarchy '' the movies show a dystopian future america where all laws are suspended for a 12-hour period .\nofficer aaron stringer allegedly pulled on ramiro james villegas 's toes . he then ` tickled ' the feet and pulled on his head while discussing rigor mortis . villegs , 22 , had been shot dead by police in bakersfield , california , on november 13 after crashing his car in a high-speed chase . stringer has been on paid administrative leave since the incident was reported .\ncharlenemess allegedly murdered her husband of 30 years , douglas mess , 52 . he was found dead at their farm in attica , new york , on monday . police searched for seven hours before finding his body in a pile of manure . mrs mess was arrested and charged with second-degree murder .\na seven-month-old girl has found the ultimate snuggle buddy : boo the husky dog . troy slezak from huntington beach , california , filmed his daughter stella playing with the giant pooch on the living room floor at home . footage shows the duo rolling around together and even stopping for nose rubs .\ntiger woods will return to the pga tour at the players championship on may 7 . the 14-time major winner has played just three tournaments so far this year . the former world no 1 has been recovering from a wrist injury . woods met up with yao ming at nike 's headquarters in shanghai .\nreal madrid take on rayo vallecano in the la liga on wednesday night . spanish paper marca focuses on cristiano ronaldo ahead of the game . ronaldo scored five goals in real 's 9-1 win against granada at the weekend . lionel messi could make his 50th consecutive week in the league .\nman united beat manchester city 4-2 at old trafford on sunday . city goalkeeper joe hart was disappointed with his side 's display . hart said it was one of his ` worst days in a man city shirt ' manuel pellegrini 's side are four points behind rivals united .\nrioters break windows , loot stores and set fires in baltimore . a handful of people repeat the gray family 's message : no protest , no demonstration . `` it 's disrespect to the family , '' says rev. jamal bryant . the gray family lawyer says the violence is marring the cause and hope for change .\nfelix the cat disappeared after his crate was damaged after a flight from abu dhabi to new york . the two-year-old grey tabby belongs to jennifer stewart , 31 , and her husband , joseph naaman . the couple was told that the plastic crate broke open after one of the ropes became tangled on something . jennifer and joseph have enlisted the help of a non-profit organisation to locate the cat at jfk airport .\nlihi yona filmed the black pup enthusiastically jumping around in time to the squirts of water . the dog was filmed at a public play area in brooklyn , new york , over the weekend . each time the water sprays , the canine flies through the air .\nthe apple watch sport model has an ion-x glass display . it is supposed to be ` resistant to scratches and impact ' but when dropped from a height of four feet -lrb- 1.2 metres -rrb- it shattered . the watch survived unscathed despite a nasty ` crack ' noise . but when it landed on its face , it smashed instantly . damage to the screen is not covered by the watch 's warranty . it costs $ 349 -lrb- # 299 -rrb- in the us and $ 12,000 -lrb- # 8,000 -rrb- in other regions .\nex-nfl star aaron hernandez was convicted of murder in the death of odin lloyd . `` it 's been an incredibly emotional toll on all of us , '' jury foreperson lesa strachan says . `` he did n't need to pull the trigger , '' one juror says of hernandez .\nqpr fans harry childs and jack hutchins , dean foreman and bradley pack were sentenced for affray on friday . the foursome were involved in violent disorder outside a west london pub last year . the incident occurred after last season 's 3-3 draw between qpr and burnley at loftus road . childs , hutchins and foreman were found guilty of the offences on march 6 .\na man sued the new york police department in 2005 . he alleged that an officer pointed a gun and threatened to shoot him . the suit was settled for $ 20,000 . officer michael rapiejko resigned voluntarily in 2006 . he is accused of intentionally slamming his car into an armed suspect .\njessica carey filmed her daughter singing nursery rhyme for dinner . rilie carey , from salem , oregon , learnt the song at preschool . but as the rhyme continues , her eyes fill with tears and she starts to sob . she leans in for a hug from her mom - despite being told the ducks do return .\nlondoner kyle knox was last seen on monday morning in fort william . he failed to return to his accommodation in the scottish highlands yesterday . police believe he set off on the 4409-ft high ben nevis alone . search and rescue teams are continuing to search for the 23-year-old .\nthe 44-year-old man had recently returned from a holiday in algeria . he walked into a greater manchester police chadderton division . he complained that the weather was ` too hot ' and wanted to lodge a complaint . police tweeted a warning about wasting time and warned of the possible punishment .\naustralian neil robertson beat wales 's jamie jones 10-2 . the 2010 champion rattled in an opening break of 133 . robertson has committed more hours to the game than ever before . the 33-year-old believes it will help him fulfil his potential . he hopes to become a multiple winner of the sport 's major crowns . barry hawkins fought off a late fightback to beat matthew selt 10-9 . ding junhui lost the first four frames of his first-round match against veteran mark davis .\nblackpool fans have protested against the oyston family , who own the club . frank knight settled before court proceedings with the owners of the championship 's basement club , having to pay # 20,000 in damages . supporters up and down the country have reacted to that by raising close to # 15,000 .\nmanchester united currently sit third in the premier league table . the red devils are 11 points behind leaders chelsea . ashley young believes united will challenge for the title next season . the 29-year-old has praised louis van gaal 's managerial style . click here for all the latest manchester united news .\nlord tebbit hit out at the prime minister claiming he had never had a ` proper job ' the former tory party chairman said mr cameron had never been a special adviser . he also suggested tory voters north of the border vote tactically for labour . lord tebbit also accused mr cameron of bungling the scottish referendum .\nfernando torres scored his first ever league own goal in atletico madrid 's 2-2 draw against malaga . the spanish striker inadvertently headed a corner over his own line to pull malaga back into the game before half-time . torres has scored just four goals for atletico since his return to the vicente calderon in january .\nrio ferdinand has played just five times for queens park rangers this season . the 36-year-old started the first seven games of the campaign before being dropped . ferdinand has won six premier league titles and 81 caps for england . but his final season in english football has not lived up to expectations .\na nine-year-old boy has died from injuries sustained in a car crash . piper kulk , eight , was killed in the crash on new south wales ' central coast . her brother william , 12 , was airlifted to hospital but later died . the crash also left passengers in a ute with severe injuries . the seven people involved in the accident were trapped in the wreckage .\nmulti-millionaire richard harpin has given the tories # 375,000 since 2008 . firm was handed a record # 30million fine last year for selling expensive home insurance cover using misleading information and hard sell tactics . tory donor mr harpin founded the company in 1993 .\nfloyd mayweather and manny pacquiao face off on saturday at the mgm grand in las vegas . the pair have been training at freddie roach 's wild card gym in los angeles . mayweather has his own private facility in las las vegas called the mayweather boxing club . sportsmail takes a look at what is on offer at both gyms ahead of their bout .\nchelsea beat manchester united 1-0 at stamford bridge on sunday . jose mourinho deployed kurt zouma in a defensive midfield role . the 20-year-old was tasked with stopping marouane fellaini . mourinho said he wanted the game to be '10 against 10 '\nchelsea face qpr in the west london derby on sunday . jose mourinho has been trialling a new formation for the game . ramires and nemanja matic are set to start in the heart of midfield . oscar may drop out of the starting line up for the clash .\nliverpool face aston villa in the fa cup semi-final at wembley on sunday . steven gerrard is aiming to end his liverpool career in the final against arsenal . gerrard will leave liverpool at the end of the season and join la galaxy . martin skrtel says gerrard is still one of the best players in the world .\nthe retail corporation announced it was temporarily closing five stores for ` extensive ' plumbing repairs . workers at two texas stores , as well as in california , florida and oklahoma , were notified only a couple of hours before they lost their jobs . almost 550 people lost their job at the pico rivera store in california alone . walmart will put both the full-time and part-time workers affected by the closures on paid leave for two months as they try to transfer to another walmart location .\nsecond homeowners face being hit with double rates of council tax . lib dem plans to protect rural life include levy on holiday homes . said wealthy people would not mind having to ` chip in a bit ' to protect services . comes as party launches countryside charter in cornwall today . mr clegg said he wants to ` play on the conscience ' of second homeowners .\ndead fish are washing up on the banks of a rio de janeiro lake . the rodrigo de freitas lagoon will hold the brazil 2016 olympics rowing and canoe competitions . the lake is littered with thousands of dead fish due to the raw sewage and rubbish within it . officials say the recent problems are the result of rain , which caused the lake 's temperature to plummet .\nusain bolt has admitted he has had to cut back on his fast food diet . the jamaican sprinter said he has to eat more vegetables instead . he said he ` hates them all ' and has to be ` perfect in training ' bolt said tyson gay should have been given a longer ban for drugs cheating .\npolice fire tear gas and rubber bullets to disperse crowds in johannesburg . carol lloyd left covered in blood after rocks were thrown at her car . protests began two weeks ago in durban and have spread to johannesburg . six people have been killed in the violence which has been condemned by leaders .\nanderson silva will meet with brazilian taekwondo officials next week . the 40-year-old mixed martial arts fighter wants to compete in 2016 olympics . silva is currently suspended by ufc after failing drug tests . he has a hearing scheduled for may on the doping allegations .\nmanny pacquiao is due to hold his final conference call this wednesday . the filipino is preparing for his fight with floyd mayweather . pacquio 's promoter bob arum pulled the plug on the call . arum has always doubted the worth of mass telephone talk-ins .\nsheriff 's deputies chase eric harris , 44 , in tulsa , oklahoma , on april 2 . they tackle him to ground and order him to lie on his stomach , police say . robert bates , 73 , then takes out his service weapon and pulls trigger . after firing one round into harris , he says in shock : ` oh , i shot him ! ' harris then starts yelping on ground , while pleading for help . one deputy then tells him : ` f *** your breath ' and another : ` you should n't have ran ' harris , who was being restrained at the time , later died in hospital .\npakistan had almost completely eradicated polio three years ago . but it 's on the rise again after the taliban declared the vaccine to be a ` western conspiracy ' and a ` bio-weapon ' that would actually make children sick . mother-of-three farhina touseef is risking her life by leading a team of medics as they travel door-to-door through dangerous taliban strongholds offering the free vaccines to parents .\nwayne rooney believes england can win euro 2016 in france . juan mata revealed rooney tells him so every day . rooney scored his 47th england goal against lithuania last week . mata has not played for spain since their world cup exit . manchester united host aston villa in the premier league on saturday .\ndavid perry : emy afalava , a decorated veteran , was born in american samoa , a u.s. territory since 1900 . he says afalva has been denied the right to vote because the federal government insists he is no citizen . perry : the fourteenth amendment declares that all persons born in the u.s. are citizens of the united states .\nthree men arrested on suspicion of murdering claudia lawrence have been released on bail . detectives searched three locations in the york area looking for evidence . miss lawrence was 35 when she vanished on march 18 , 2009 . her father peter reported her missing after she failed to turn up to work . detectiving officers previously questioned a man in his 50s from york in connection with ms lawrence 's murder .\nalexandra allen , 17 , from utah suffers with the condition aquagenic urticaria . it is so rare it affects just 35 people in the whole world . showers have to be quick and cold - long soaks in the bath are out of the question because they trigger burning inflammation .\nrobert kushner lost his varsity coaching job at the jack m. barrack hebrew academy after testifying this week about his years selling marijuana . he told jurors tuesday that some of the undercover officers on trial had stolen $ 81,000 in cash and 7 pounds of marijuana from him during a 2007 arrest . kushner , 32 , is one of more than a dozen former drug dealers testifying for the federal government about allegations of police wrongdoing .\ndavid cameron is seen reading to a schoolgirl in bolton , bolton , on wednesday . the prime minister is n't the only politician guilty of causing kids to cringe . ed miliband , ed balls and nick clegg have all been pictured sharing awkward moments with youngsters . william hague has been met with incredulity by children on multiple occasions .\nkeepers at the columbus zoo in ohio say 10-year-old irisa had bred before but never conceived . but this spring it was found the female cat was pregnant - with triplets . while the birth on tuesday morning went smoothly , irisa failed to show any maternal care so her offspring are currently being hand-reared in an incubator .\nisrael 's prime minister benjamin netanyahu slammed the iran nuclear deal . said in a televised statement that it would threaten the survival of israel . said : ` such a deal would not block iran 's path to the bomb . it would pave it ' the preliminary agreement set out a framework where iran would scale down plans to enrich uranium and make weapons-grade plutonium . in return for western powers dropping stringent economic sanctions .\naerial photos show 18 freighters trapped in ice on eastern lake superior . they are carrying goods from canadian grain to us iron and steel . but they are being hampered by slabs of ice as big as pick-up trucks . the ships need a path cut through the lake by canadian and us ice breakers .\nclermont auvergne host saracens in the european cup semi-final . sarries beat clermont 46-6 at twickenham last year . saracen coach mark mccall wants his warriors on the pitch . owen farrell has recovered from a knee injury and will start on the bench .\nthe image was captured by nasa 's landsat 7 satellite using its landsat 8 satellite . it shows ` ribbons ' of sand and patterned stripes known as linear dunes in the erg chech , a desolate sand sea in southwestern algeria . the colours were caused as rays of sunlight hit the sand and were reflected off . linear dunes are straight ridges of sand that have been known to measure as long as 99 miles -lrb- 160km -rrb- the exact cause of these longitudinal structures is not known .\nthe body of chad geyen was found on sunday in a park near his home in ramsey , minnesota . the 45-year-old was charged with multiple counts of sexual abuse against young boys . he was found to have shot himself in the head . geyyen had been out on bail since he was first charged in november 2013 . he had been accused of assaulting at least six boys hundreds of times , including his own foster son . all of the boys were under the age of 13 when the alleged abuse began .\nrep steve knight was accosted by activists during an open house event at his simi valley , california , office last friday . a man named ` mike ' accused knight of lying about his voting record and patted him on the back after a prolonged handshake . knight , a former lapd officer who was elected to represent the 25th congressional district last year , went after mike and threatened him with violence . the heated exchange was captured on video and later uploaded onto youtube by a right-wing group called we the people rising . the group , save our state , has been accused of having ties to white supremacists .\nculture secretary sajid javid said values prevalent in some asian communities were ` totally unacceptable in british society ' his comments come after inquiries into the sexual abuse of vulnerable girls targeted by asian men in rochdale , rotherham and oxford . mr javid told the daily telegraph a ` misplaced sense of political correctness ' prevented police and social workers from properly investigating claims of abuse .\nthe wakē alarm clock rouses individuals from their slumber one at a time . it uses a focused beam of light and sound to wake up each person individually . the device is mounted on a wall and uses a sensor to detect body heat . it also has built-in rechargeable batteries and a wi-fi connected processor . the alarm costs $ 250 -lrb- # 167 -rrb- to pre-order on kickstarter and is due to ship in september . it partners with an app so users can tell the device which side of the bed they sleep on and when they want to wake .\na water main break in new york city caused evening commute hysteria wednesday as a surge of brown water poured into a west village subway tunnel . the 12-inch water main broke around 6:45 pm at 13th street and seventh avenue in manhattan , shutting down three train lines in both directions . around 500 riders were soon forced out of the subway . officials said there was no 1 , 2 or 3 train service in both direction between chambers street and times square/42nd street .\nmanchester united beat aston villa 3-1 at old trafford on saturday . ander herrera scored twice as united moved up to third in the premier league . louis van gaal was so pleased with herrera 's first goal he kissed him at half-time . the dutchman had been urging herrera to control the ball before shooting .\na new report has revealed that truck drivers are dealing drugs from behind the wheel of 60-tonne rigs , using secretive codes over their radio systems . 156 truck drivers tested positive for drugs on victoria 's roads in the past year alone . a former melbourne truck driver said his colleagues were taking drugs regularly . he said meeting areas were often set up between drivers over radios using codes , where drugs were then handed out . the news comes after a worrying video has appeared online in february exposing a truck driver snorting drugs from the wheel .\nlouis van gaal admits manchester united have offered david de gea # 200,000-a-week to stay at old trafford . there is speculation that de gea will leave united and join real madrid on a free transfer next summer . united would demand # 30m if real try to sign him this summer . de gea has been nominated for pfa player of the year .\npensions minister steve webb has urged people to not make rash decisions . he said over-55s ` do n't have to rush this ' and insisted there was ' a case for waiting and seeing ' the first 25 per cent of any withdrawals from pensions are tax-free . but savers will have to pay income tax on the remainder .\nframed photographs of sir bobby robson 's title-chasing side were found thrown in a skip outside st james ' park . alan shearer , gary speed , nobby solano and shay given are among the players included in the photos . the pictures were removed from corporate boxes inside the stadium and have been replaced by more recent images .\nman was running ahead of the bull in teulada , a small coastal town on spain 's costa blanca . he was seen trying to escape behind a set of iron bars when he was knocked to the floor . the bull appeared to hit him in the bottom with one of its horns as he tried to scramble away .\npaintings were from famed art director jack martin smith . used to work out how scenes might look once filming began . one shows dorothy meeting wizard of oz for first time . the other imagining emerald city sold for # 10,000 . each painting was tipped to fetch $ 9,000 - around # 6,000 at auction . but they sold for an enormous combined total of # 35,000 to an unnamed buyer .\narsenal thrashed liverpool 4-1 at the emirates stadium on saturday . danny welbeck was spotted arriving at the manchester arena on monday . liverpool full back jose enrique was also in attendance at the concert . alberto moreno and mamadou sakho were also at the show .\nvirgin atlantic will offer passengers a facebook login for free on new 787 routes . customers will be able to check in and share their location and photos mid-flight . the #skyhighselfie is one of the unusual extras being offered on the airline 's dreamliner 787 . other features include mood lighting to help with jetlag and full length mirrors in the bathroom .\nabraham lincoln was born in kentucky and moved to illinois as a boy . julian zelizer : lincoln 's two greatest legacies grew organically from his midwestern roots . he says lincoln knew no defensible border shielded land of corn from land of cotton . zelizer says lincoln 's assertion that union created states provoked strong disagreement .\niona costello , 51 , and her daughter emily , 14 , were last seen on march 30 . their car was found in a parking garage on 42nd street in manhattan . the pair often went to shows and museums in new york city . emily had been scheduled to return to school from spring break this past tuesday . police do not expect foul play and have no hard evidence suggesting the pair are in danger . mrs costello 's husband george died from a heart attack in 2012 .\nbarcelona threw away a two-goal lead away to sevilla in la liga . real madrid beat eibar 3-0 and are now just two points off in second . the italian media all led with bottom club parma beating serie a leaders juventus 1-0 .\nchelsea beat qpr 1-0 at loftus road to extend their lead at the top of the premier league . cesc fabregas scored the winner in the 88th minute after eden hazard 's pass . jose mourinho 's side are now seven points clear of arsenal at the summit of the table .\nkevin gill brought home an injured eight-inch gator for his son , 13 , to nurse back to health . but collier county deputies found the reptile during a search of the family 's home and arrested gill . it is illegal to keep an alligator without a license in florida .\nvideo shows moment a sandstorm sweeps over the city of soligorsk , belarus . within minutes , the storm had blocked out the sun , creating chaos on the streets . the storm was caused by a cold front moving in from the ukrainian-belorusian border . about 100,000 residents of the city were forced to stay indoors .\niain duncan smith says ed miliband is standing on ` most left-wing platform since foot ' former conservative leader says labour ` does n't understand work ' he says labour is ` peddling lies ' about government 's record . calls on fellow tories to ` bang the drum ' in next fortnight to champion achievements .\nlouise van ryn has had her letterbox firebombed and received threatening calls . the father of one of her victims has also been seen in her backyard . her husband maurice van ry has pleaded guilty to 12 sex offences . he is now allowed to sell his property to support his wife and pay off debts . a young woman who was subjected to years of abuse by van ry told a court of the severe impact it had on her life . she said she has suffered depression since she was 14 and attempted suicide .\nepping ongar historic railway in south-west essex used for film . woman dressed as a school girl has sex with a man in vintage train carriage . locals shocked to learn location had been rented out to american adult film company brazzers . parents said they were disgusted and mortified by the decision .\ngerman photographer dieter klein has spent six years travelling the world to find vintage cars left to crumble in leafy forests and fields . he came across a range of mysterious graveyards hosting all sorts of vehicles including a rare jaguar xk120 which , if restored , could be worth # 82,000 . many of the cars , often with doors , tires or windows missing , are parked on forest floors where nature has taken them over .\ndenise huskins , 29 , was allegedly kidnapped from her home in mare island , california on march 23 . the kidnappers claim they drilled a hole in the window of her home and used squirt guns to take her . they then tied up her boyfriend aaron quinn and drove off with her . huskins was released 400 miles away in huntington beach . the kidnapping has been called an ` orchestrated event ' by police . the self-proclaimed kidnapper has now said he will turn himself in if his co-conspirators are given immunity from prosecution . this comes one day after the kidnappers demanded an apology from the police for calling the entire incident a hoax .\nalex zhavoronkov is following a strict regime of regular exercise and drugs . he is also shunning marriage , children and material assets to focus on anti-ageing research . the anti-aging expert is confident he can live to 150 years old . he believes medical advances and knowledge of lifestyles will lead to a far longer life expectancy than has been seen to date .\nanti-rape campaigners have criticised the message in a sussex police poster . they claim it implies that victims are to blame for getting raped . the poster urges women not to leave their friends alone or let them wander off with strangers . but supporters say it is not blaming women and offers ` sensible advice '\nangela merkel said large countries should be prepared to accept more asylum seekers . the german chancellor demanded a new european union system that distributes asylum-seekers to member states based on their population and economic strength . the call comes as europe struggles with the growing refugee crisis in the mediterranean .\na new zealand man has been missing for 10 years . john daniel tohill , 37 , was last heard from by family in 2005 after he left nelson on the tasman bay to travel north . on tuesday he called his brother to say he was well and would be visiting in coming weeks .\nemile heskey and eidur gudjohnsen will be offered new contracts by bolton . the pair joined on short-term deals in december and have impressed . goalkeeper adam bogdan has also been rewarded with a new deal by manager neil lennon . barry bannan and neil danns have been fined two weeks wages by the club .\nheath hironimus fled with her 4-year-old son in february despite a judge 's order to appear in court and allow the circumcision to go forward . she is now suing for her constitutional rights to stop the procedure . hironimus and the boy 's father , dennis nebus , have been warring since her pregnancy .\nmigrants ' rights are a part of a south africa that is suffering from violence , says thokozile masipa . masipasa : attacks against newcomers in south africa are often reduced to attitudes of hate . masimasa says the term `` xenophobia '' does not convey the conditions in which african migrants are scapegoated .\nenglish supermodel stephen james hendry is currently in australia . he has landed down under to start work on a new campaign with windsor smith shoes . the 24-year-old has 498,000 instagram fans . he is one of the first full-bodied models to be tattooed . he says he is recently unattached and having fun .\nthe cdc says listeria was found in a cup of ice cream from a hospital serving blue bell . the cup was made at the broken arrow , oklahoma , plant , the company says . the company is temporarily shutting down its plant to investigate the contamination . the warning does not affect other 3-ounce servings of blue bell ice cream .\nlouisville , kentucky man kevin blandford won a free trip to puerto rico . he posted photos of his holiday snaps on facebook and reddit . each photo shows kevin pulling the same sad face in an attempt to prove how much he missed his wife . the photos have gone viral with more than two million views on imgur . kevin said his wife bonnie did n't ` get ' the joke when she first saw them .\nscott kemery , 44 , suffered first and second degree burns after setting himself on fire in the parking lot of a supermarket in eastport . he had been told by a friend that the best way to kill bedbugs was to douse them in alcohol . he then lit a cigarette inside the car .\n2,000 pet owners voted for their ideal dog to have different parts . the dog has the body of a border collie , the snout of a labrador and the eyes of a beagle . a third of owners want their dog to be short-haired and low maintenance . the great dane was most popular in east anglia .\nlogan kehoe , 13 , was having a final dip in the pool in costa teguise . emergency services dashed to the pool on saturday afternoon . despite paramedics performing cpr on logan , they were unable to save him . police have described the death as an ` accidental drowning '\njoyce tabram , 82 , was 39 kilograms when she was admitted to fiona stanley hospital in perth on march 30 with a swollen abdomen . she was told to fast for five days while waiting for tests to be performed on her . ms tabram lost five kilograms in five days and was left weighing just 34 kilograms . the west australian health minister said doctors did nothing wrong .\nafghan taliban release bizarre biography of their supreme leader mullah omar . praises the one-eyed terrorist 's ` special ' sense of humour and love of grenade launchers . comes as taliban have seen defections to isis in afghanistan . omar has not been seen since the 2001 us-led invasion .\ndufner and wife amanda married in 2012 but separated in february . the pair agreed a divorce settlement at the end of last month . amanda has been awarded $ 2.5 million -lrb- # 1.8 m -rrb- while jason will keep two of the couple 's houses . dufner has struggled this season as he recovers from a neck injury .\nnorwich beat leeds 2-0 at elland road in the championship . jonny howson opened the scoring for alex neil 's side in the 57th minute . graham dorrans missed a first half penalty but made up for it with a late strike . the result keeps norwich in the automatic promotion places .\ntory mp jesse norman is being investigated by police over claims he attempted to bribe voters with chocolate cake . he allegedly gave out cake while campaigning for re-election at an asda supermarket in his hereford constituency . west mercia police are investigating reports of a breach of the representation of the people act 1983 .\nkylie , 17 , wore a mesh dress by alexander mcqueen to coachella . the dress is still available at nordstrom for $ 315 . her style is considered the edgiest of all the kardashian-jenner sisters . she recently hinted that she has her nipples pierced in a snapchat post .\ndzhokhar tsarnaev 's defense team is trying to avoid the death penalty . the defense says life in prison would bring years of punishment and rob him of martyrdom . tsarnaev was convicted this month of all 30 counts against him . he faces the death sentence for the murders of four people in the boston marathon bombings .\ndan bilzerian forced into making film to avoid jail after being arrested . he was accused of placing homemade explosives in a tractor and shooting them . film shows him speaking from desk in his lavish home , complete with gun candle holder , action figurine of himself , and bizarre painting . he urges people to ` be responsible ' and ` follow the rules '\nsid ahmed ghlam , 24 , had shot himself in the leg before his arrest on sunday . he was arrested by anti-terrorist officers in the 13th arrondissement in paris . arrest came just hours after murder of aurelie chatelain , 33 , in villejuif . investigators reportedly claim dna evidence links ghlam to her murder . police found arabic documents mentioning isis and al qaeda at his home . also evidence on his computer that he was in contact with a man in syria .\ntottenham winger aaron lennon is currently on a season-long loan at everton . lennon will not be able to play against his parent club on final day of season . roberto martinez wants to get most out of lennon in his time at everton . martinez also praised kevin mirallas and rejected reports he could leave .\ncourtney terry , 27 , was diagnosed with kidney cancer when she was 19 . the disease killed her 23-year-old brother jordan seven years ago . she has received multiple treatments including chemotherapy and surgery . but the disease returned when she became pregnant in 2009 . she and her boyfriend billy webb had planned to marry in november . but doctors have advised her to bring the event forward because of her worsening condition .\ngood friday procession commemorates jesus ' death by crucifixion . faithful from iraq , syria , nigeria , egypt and china were chosen to carry cross . pope francis has repeatedly lamented christian suffering in the middle east . he will celebrate easter mass in st peter 's square on sunday .\nblanca cousins , 15 , fell to her death from a 19th floor apartment in hong kong . she had locked herself in the bathroom after a row with her father . police are investigating whether her birth and that of her sister were ever registered . it is also alleged that they did not attend school . nick cousins , 57 , was arrested over alleged ` ill treatment ' of blanca . he was released on bail yesterday pending police inquiries . police have applied for a ` care and protection order ' for his second daughter .\nchelsea won 1-0 at home to queens park rangers in the west london derby on sunday . cesc fabregas scored the winner in the 88th minute at loftus road . but the celebrations were marred by objects being thrown onto the pitch . branislav ivanovic was hit on the head by a lighter thrown by a fan .\nrobbie keane is sidelined by a groin injury . the la galaxy striker is not letting the injury keep him from entertaining his fans . keane sings karma chameleon in a video posted on boy george & the culture club 's facebook page . the video was apparently filmed during la galaxy 's day off on tuesday .\nceltic beat st mirren 2-0 in the scottish premiership on friday night . ronny deila branded most surfaces in the league ` terrible ' and said artificial pitches would be better . gary teale feels deila 's criticism was unfair on the paisley club 's groundsman .\ndelta air lines has launched a new pet gps system for $ 50 per flight . the system allows owners to track their pets ' journeys in real time via a website . the first-of-its-kind technology was developed by sendum wireless corp. and is available from 10 us airports .\nkerry hamilton had stomach cramps , bleeding and irregular periods for two years . doctors finally discovered she had a tumour the size of a golf ball growing in her cervix . she was diagnosed with leiomyosarcoma , a rare cancer of the soft tissue normally found in women over 50 . at just 34 , she was forced to undergo a hysterectomy and was devastated at the thought of not being able to have children . she now wants to raise awareness about rare cancers like leiomysarcomas .\nsouth africa is one of the uk 's biggest providers of high-strength cannabis . the plant is grown in swaziland , where it is a huge crop and is called ` swazi gold ' but the drug is being smuggled out of the country and into johannesburg . it is being mixed with heroin to form a highly addictive new cocktail known as nyope .\nfootage shows corporal james bass of north carolina sneaking up behind his son joshua while he strikes a formal pose . as the photographer shows joshua the finished photo he took , he spots his father pulling a goofy jazz hands pose in the background . ` daddy ! ' joshua exclaims , as he runs towards his father and gives him a big hug . bass had returned home after being deployed in kuwait for a year .\nheadmaster peter tait says parents must trust schools and teachers . he claims they should not be ` dervishes ready to battle with anyone ' on behalf of their child . mr tait is the headmaster of sherborne preparatory school in dorset . he said interference could end up hindering children 's natural development .\nboy named gabriel was befriended by a brown bear at a zoo in north america . the youngster was filmed standing next to the animal which was submerged in water . the bear rubs its nose against the glass partition and appears to try and bite him . the boy and bear go on to play together as the boy puts his hands against the partition .\nwi told it must pay thousands of pounds to serve the cakes at royal albert hall . two wi members spent 11 days baking 44 cakes to feed 5,000 women in june . but gesture would incur a ` sampling charge ' of # 2,500 because the centenary cake has fallen foul of the hall 's sponsorship rules .\nengland drew 1-1 with italy in a friendly at the juventus stadium . graziano pelle opened the scoring for the azzurri in turin . andros townsend equalised for roy hodgson 's side in the second half . wayne rooney said the england players were upset by their first half .\nrodney stover , 48 , was arraigned on thursday for rape , predatory sex assault and other charges for last saturday 's attack in the bathroom at the turnmill bar on east 27th street . he allegedly grabbed the victim , a long island student , by the throat , forced her into a stall and attacked her before fleeing the bar . stover was arrested on rape charges in 1992 in southampton for raping and sodomizing a 42-year-old stranger after overpowering and threatening her with a sharp object . he served an addition two-and-a-half years for another crime and was released on valentine 's day this year .\npanellist , 34 , said obese women ` should feel uncomfortable ' about their size . added that high street stores should not be catering for them . added she was ` hounded on twitter ' after airing her views on itv show . now insists she was only referring to people larger than a size 20 .\nsterling has already fallen nearly five per cent against the us dollar in the past five weeks . experts said a badly hung parliament would send pound plummeting by a further ten per cent . the sell-off could accelerate and spread to the stock and bond markets .\nthe presets posted a series of posts on its facebook page after it was announced andrew chan and myuran sukumaran would be executed this week . the band told fans who disagreed with its opinion to ` unfollow us , delete all our music and stop listening to us altogether ' the pair are believed to be executed in early hours of wednesday morning , april 29 . the presets are made up of julian hamilton and kim moyes .\nmanchester city are planning to make a bid for raheem sterling on july 1 . the premier league champions are looking to increase their homegrown quota . city believe they are leading the race to sign the liverpool forward . liverpool value sterling at around # 50million , a fee city can afford .\ntwo people were killed in fairdale , illinois , when a tornado struck on thursday night . residents from fairdale were told they could return to their homes on saturday to salvage what they could . officials reported that 17 of the 50 buildings in the town are completely destroyed , while the other 33 have all been damaged in some way . the tornado was a half-mile wide and remained on the ground for at least 28.7 miles .\nst etienne drew 2-2 with lyon in the rhone valley derby on sunday night . clinton n'jie gave the hosts the lead before max gradel equalised . christophe jallet scored for the hosts to send them top of the table . lille kept fourth place in sight with a 2-0 win over bordeaux . montpellier beat caen 1-0 to bounce back from 1-1 draw at toulouse .\nitalian didgeridoo maker andrea furlan was filmed in front of a river in stratford . he holds a ` butterfly landscape ' designed instrument to his mouth and plays a tune . the herd of cows stand rooted to the spot , as if hypnotised by the music .\nstephanie scott , 26 , has been missing for three days . she was last seen at her workplace leeton high school in leeton , 550km west of sydney , at 11am on easter sunday . her parents plan to hire a helicopter to join the desperate search for their daughter . they fear her disappearance has something to do with ` her car or foul play ' her sister kim scott said the 26-year-old is ` so in love ' with her fiance and could not possibly have cold feet .\nscott keyes , 28 , is a writer for think progress and a frequent traveller . he is about to travel 20,000 miles on 21 flights in first class around the world . he reveals his travel hacks in his ebooks how to fly for free and how to find cheap flights .\nayatollah ali khamenei said thursday that nothing is final and iran will continue to insist on a complete withdrawal of sanctions . khamenei warned about ` deceptive ' intentions of the united states . the crowd chanted ` death to america ! ' during the speech . ` instant annulment of all sanction is one of the demands of our officials , ' khamenei told state television . but he hedged on whether there will be a deal in place at all by the june 30 deadline .\nvideo played in court shows san diego police officer being hit with his own cruiser . officer jeffrey swett was allegedly run over by william bogard in january . bogard has pleaded not guilty after being charged with attempted murder , assault and vehicle theft . swett suffered two broken arms , a broken leg and severe head and neck trauma .\ntexas-based biologist dr joe hanson has calculated what the human body is in terms of chemical elements . a ` human molecule ' might contain 375 million atoms of hydrogen , 132 million atoms . of oxygen and 85 million atomsof carbon . by comparison , a human molecule contains just one atom of cobalt and three molecules of the metal molybdenum . dr hanson claims his formula only represents the chemical make up of the humanbody at birth .\nthe alleged kidnapping took place in akron , ohio last fall . clarence taylor , 44 , was found tied to a tree with zip ties by his girlfriend 's friend . taylor told police that a group of men tied him to the tree after stealing $ 2,500 from him . police have charged taylor with a first-degree misdemeanor charge of falsification .\nenglish teacher shelley dufresne pleaded guilty to one count of obscenity in exchange for a plea deal . duf resne , 32 , admitted in court thursday that she had sex with a 16-year-old student at destrehan high school . the married mother-of-three will not serve any jail time or have to register as a sex offender . dfresne and fellow teacher rachel respess , 24 , were arrested in september after the student started bragging that he had slept with both of them . the two teachers allegedly had a threesome at respess ' home .\ncharlotte cobbald was suffering from anorexia and depression . she was visiting her father 's farm in acton , suffolk , while on day release . she found the drug and injected it after saying she felt like a ` failure ' she then ran away from her father , saying ` let me die ' , an inquest heard . she collapsed in a field and her family called 999 , but she died in hospital .\npensioners pauline bruce and her late husband tony were harassed by their neighbour for seven years . yvonne ireland evans made silent phone calls to the couple day and night . when tony was diagnosed with terminal cancer , yvonn mocked him . she also attacked her son john with a four-foot long branch . y vonne 's dog attacked john after he fell into the garden .\nthe sru have clinched the biggest shirt sponsorship deal in their history . bt will take over from ousted backers rbs from the summer . sportsmail exclusively revealed last year that bt had agreed to pay # 20m over four years for the naming rights of murrayfield .\nremote community in aberdeenshire does not even have a shop . but local streams have been known for grains of gold for decades . towie has been ignored by investors in favour of the oil industry . but two-year investigation has revealed possible existence of gold deposits . a significant deposit is believed to lie somewhere near sleepy towie .\nliverpool lost 2-1 to aston villa in the fa cup semi-final at wembley . steven gerrard started in a number of different roles for brendan rodgers . the midfielder failed to influence the outcome of the game . gerrard will leave liverpool in the summer and join the los angeles galaxy .\nrangers beat raith rovers 4-0 at ibrox on sunday afternoon . nicky clark and haris vuckic scored for the hosts . nicky law grabbed a double for the home side . rangers and hibernian are level on 61 points in the championship .\ncalifornia 's governor jerry brown has imposed unprecedented new water-use restrictions on the state . many californians are taking extreme measures to conserve water in the face of the historic drought . robin weld of sacramento has converted her home 's toilet into a sink-toilet and chris brown of brentwood has installed a rainwater tank under his home . gray water is soapy water from washing machine 's , showers and sinks that are used to irrigate plants and trees .\nnick nicholas figueroa 's mother , ana , attended funeral for her son on tuesday . carried red rose and wore button featuring son 's image on her top . mr figueroa , 23 , was on second date at sushi restaurant in manhattan when he died . he was declared missing following gas explosion and building collapse last month . but last week , his body was pulled from rubble alongside that of 26-year-old busboy . mrfigueroa 's father , nixon , told mourners : ` i 'm broken . my son is broken '\nengland removed both west indies openers after choosing to bowl first . james anderson castled kraigg brathwaite in the third over of the second test . chris jordan had devon smith caught behind after replays showed ball missed his outside edge . smith declined to review the decision with hotspot not available in this test series .\nhigh street stores such as debenhams and monsoon offer designer gowns . vera wang and oleg cassini are two of the most expensive brands . femail pitted the high street against the high-end . can you tell which is better ? let us know in the comments below .\ngareth bale scores stunning goal in real madrid training on wednesday . real madrid return to training after a week off following their defeat to barcelona . carlo ancelotti 's side are four points behind la liga leaders barcelona . real take on 19th-placed granada in an early 11am kick-off on sunday .\nnathan charles was born with cystic fibrosis . the 26-year-old has earned four caps for australia . charles has spoken out about his battle with the disease . he wants to be defined by his abilities on the field and not by his condition . charles is in with an outside chance of making michael chieka 's world cup squad .\na five-year-old iranian girl has been held in an australian detention centre for more than a year . she has been prescribed anti-depressants and self-harmed by swallowing shampoo and nails , her lawyer says . the girl is now living in fear of being returned to troubled nauru . her father has applied for a protection visa for his family after fearing for his life and fleeing form the military police in iran .\nkamron taylor , 23 , is accused of assaulting a correctional officer in a jail escape . he was found in chicago , where he had a gertrude tattoo on his neck . the sheriff says he expects taylor to be returned to kankakee county , illinois .\naidan fraley , 16 , is the son of eric harris , who was fatally shot by volunteer deputy robert bates on april 2 . fraley says bates should have been in a retirement home , not out there on the scene killing his father . he believes all the tulsa police who allowed bates to become a cop should be held accountable for his death . meanwhile , his own mother -- who calls harris her ` soulmate ' -- has already forgiven his killer .\nthe great dying struck the earth 252 million years ago , wiping out 96 % of species . volcanic eruptions are commonly blamed for triggering the event . but research has found the majority of species were ultimately killed when the oceans became more acidic . in particular , they claim the volcanic eruptions released huge amounts of carbon dioxide which were absorbed into the oceans . this caused a lack of oxygen in the world 's waters , killing off marine life and destroying food chains . the study , led by the university of edinburgh , is the first to show that highly acidic oceans were to blame .\nankit keshri suffered a cardiac arrest following an on-field injury . the 20-year-old died in hospital on monday after colliding with a team-mate . sachin tendulkar has paid tribute to a ` promising ' cricketer . keshri was captain of the bengal under-19 team .\njamie vardy scored an injury-time winner to secure a 2-1 win for leicester city . the win gives nigel pearson 's side a slim chance of premier league survival . darren fletcher and craig gardner had put west brom in front at the hawthorns . david nugent and robert huth had scored for the foxes in the first half .\nchihuahua puppy was found in the play area of an animal shelter in antioch , california . it is believed the animal was burned by chemicals at a foster home . the dog is recovering after having its cars amputated in surgery . it has been named fireman by its rescuers .\nmesut ozil posted a picture of him playing with his dog on twitter . the german star returned to london after the international break on sunday . ozil was in fine form as germany beat georgia 2-0 in a euro 2016 qualifier . the midfielder missed arsenal 's win over newcastle through illness .\nthe apple watch is officially going on sale today . but none of its stores will have them in stock . instead , consumers will have to pre-order the watches online . this means they will not arrive in stores until june . analysts believe apple is sitting on some two million pre-orders .\nalyssa milano says heathrow airport workers confiscated breast milk she pumped for her daughter . the actress was on a trip with her husband . heathrow says travelers can carry only what they need for the flight . a blogger mom experienced a similar issue at the airport in 2011 .\nkarlis berdalis fell 10 metres down a mountain face in scotland . the 30-year-old latvian was attempting to scale the cliff in coire an lochain . he was rescued by his safety rope after his axe became dislodged from the ice .\nomar hallak is the principal of islamic school al-taqwa college in melbourne . he reportedly banned his female students from running , amid fears it would make them infertile . former teachers have sent a letter to education ministers claiming he is discriminating against female students . the victorian registration and qualifications authority is investigating the allegations .\nmartina navratilova 's brief stint as coach of agnieszka radwanska is finished . navratilsova won 18 grand slam singles titles as a player . poland 's radwinska is currently ranked no 9 in the world . the french open starts on may 24 .\nsolar probe plus will carry four experiments into the corona . it will study the solar wind and energetic particles as they blast off the star . the launch window opens for 20 days starting on july 31 , 2018 . over 24 orbits , the mission will use seven flybys of venus to reduce its distance from the sun . the closest three will be just 3.8 million miles from the surface of the star .\nsarah owen , 21 , was attacked by her boyfriend preston wright , 23 . he stabbed her several times with a knife then turned the weapon on himself . the couple were found dead inside a home in norman , oklahoma . owen arrived at the house and was attempting to move her things out of a garage . the argument escalated and the man 's younger brother said they were in a confrontation .\npolice in western australia have come under fire after reports emerged that hundreds of officers unlawfully accessed information relating to the arrests of fallen afl star ben cousins . officers also reportedly accessed files containing information about daniel kerr , a fellow former west coast eagles player . acting commissioner of west australian police , stephen brown confirmed an internal investigation is underway .\nsanjay chaddah concocted 't issue of lies ' over row with neighbours . he claimed dean paton kicked him and called him a ` p ** i ' in row over driveway . but police discovered altercation had been caught on cctv . chaddahs were embroiled in 18-month boundary dispute in wirral .\nnewcastle united face swansea at st james ' park on saturday . fans have been encouraged to stand in protest against owner mike ashley . ashleyout.com were behind the boycott of the 3-1 defeat to spurs . fans are unhappy at the club 's lack of ambition , despite ashley having # 34million in the bank .\nnew instagram account , chef jacques lamerde , is dressing up junk food as fine dining . the dishes are designed to poke fun at high-end restaurants . they feature junk food such as fritos and jimmy dean sausage patties . the plates come with equally pretentious captions .\nmark selby moved into the last 16 of the china open on wednesday . the world champion beat fellow englishman elliot slessor 5-2 . ding junhui had two breaks of 86 in a convincing 5-1 victory against mark davis . john higgins had a single break over 50 as he beat graeme dott 5 - 2 .\nmanchester united boss louis van gaal won the league and cup double in his first season in charge at bayern munich in 2009/10 . franck ribery worked under van gaal at bayern and claims the dutchman is a ` bad man ' who loses players ' trust . ribery admits he considered a move away from the bundesliga club .\nchelsea beat stoke city 2-1 in their premier league clash on saturday . eden hazard scored a penalty and set up loic remy 's winner . the belgian international believes chelsea are seven points clear at the top of the table . jose mourinho 's side have just eight games to play and need five wins and one draw .\nsome owners of the apple watch have found that it malfunctions if worn on tattooed wrists . some dark , vibrant ink seems to cause the watch 's heart sensor to lose connection and give inaccurate readings . tests suggest tattoos in dark and solid colours interfere with the device the most . apple has yet to comment on the problem , despite there being speculation that the apparent fault could also stop some people using apple pay .\nindian creek island road in miami is the most exclusive area in the city . its 86 residents include four of america 's top 500 richest people . the median house price is $ 21.48 million , and the average price is a massive $ 16.238 million .\nhector morejon , 19 , was shot by a long beach , california , police officer , who allegedly thought the 19-year-old was pointing a gun at him during a trespassing and vandalism incident . his mother , lucia morejon was at home when she heard the shots . she went to an alley near her home to see what happened and then realized it was her son in the ambulance . ` when he saw her , he propped himself partially up and cried to her , ` mommy , mommy , please come , pleasecome ! ' '\nthis is week three of an ongoing series : a catholic reads the bible . this week , a catholic reads the story of sodom and gomorrah in genesis . the story of lot and the destruction of sodam and gomorrah was new to her . she says she was horrified by the story .\nleeds united sporting director nicola salerno has resigned . the 58-year-old italian 's departure comes six days after leeds ' assistant head coach steve thompson was suspended . leeds owner massimo cellino is banned from having any executive influence at elland road until may 4 due to a tax conviction in italy .\njessica chastain recently purchased a $ 5.1 million apartment at the osborne in manhattan . the apartment features four bedrooms and 3.5 bathrooms . two residents from the osborne said they have had experiences with spirits in the building . one resident said she has a poltergeist and another said she heard a booming noise the first night they spent in their apartment . the osborne is also allegedly haunted by the ghosts of opera singer johanna gadski and architect alfredo taylor .\nthe 18-carat gold piece was a gift to lord uxbridge for his heroics . he was shot in the leg by a cannonball during the battle of waterloo . the box was given to him by trinity college dublin in 1828 . it was sold by bonhams to a private collector for # 100,900 .\nmikel arteta has been sidelined with a calf injury since november . he will miss arsenal 's fa cup semi-final against reading at wembley . the spaniard is expected to sign a new contract in the summer . arteta is confident it will take just ` five minutes ' to agree a new deal .\nchristine lillico , 47 , was trusted with looking after her elderly parents ' bank accounts . but she plundered their life savings to bankroll her own lifestyle over six years . she spent some of the # 78,000 on shopping sprees in b&q and photography services . left her father john air , who died in 2014 , in debt and without a phone . judge has now jailed her for 20 months and ordered she pay her brother # 39,000 .\nchaos : c caught on camera premieres on the science channel on april 13 . show focuses on raw footage of real life or death situations . each natural or man-made occurrence is deconstructed with graphics , illustrating and explaining the incredible facts behind each freak catastrophe or survival .\nsally white , 28 , rescued miller from a bleak hillside in swansea , south wales . the horse was malnourished , had severe anaemia and struggled to stand up . sally adopted him and after a lot of tender love and care he put his weight back on . she now competes with him in the british championships .\nveteran entertainer spoke out in support of assisted dying today . said watching first wife suffer with dementia convinced him of need for change . said it can be ` more cruel to do nothing ' than to let someone die . sir bruce , 87 , said he would like the right to end his life ` with a bit of dignity left '\nthe first trailer for a documentary on amy winehouse 's life is released . `` amy : the girl behind the name '' is set for uk release on july 3 . the film is endorsed by the late singer 's family . winehouse died from alcohol poisoning at the age of 27 in 2011 .\nsaracens beat racing metro 12-11 in the european champions cup quarter-final . jacques burger is alleged to have struck racing scrum-half maxime machenaud . the namibia international will face a disciplinary hearing on thursday . saracens return to aviva premiership action against leicester on saturday .\nbarney gibson has retired from cricket after four years in the game . the 19-year-old made his debut for yorkshire at the age of 15 . gibson has thanked his parents and england coach paul farbrace for their support . he said it was a ` difficult decision ' to retire at such a young age .\none direction star seen in shocking new picture of him with a joint . tomlinson , 23 , was seen partying hard in london yesterday . he left cirque du soir nightclub at 4am and returned to his hotel . comes after video emerged of him and zayn malik smoking marijuana . the pair were seen joking about drugs during a tour of peru .\nmanchester city take on manchester united on sunday . the premier league champions are currently fourth in the table . manuel pellegrini is braced for a ferocious derby clash at old trafford . city have held the edge over united in recent contests . the chilean is confident his side can win the derby this weekend .\na woman who may be a ` possible dui driver ' led the california highway patrol on a slow-speed chase , and even stopped at traffic lights , through los angeles for almost an hour . the chase finally came to an end in pasadena when one patrol officer tapped the rear bumper of the woman 's suv and sent the car into a slow spin . the woman then exited her vehicle and raised her hands up . she was taken into custody without incident .\ntony mccoy will be bidding farewell to the sport this week at aintree . the 40-year-old is riding in his 20th grand national this weekend . mccoy won the grand national on do n't push it in 2010 . the royal liver building in liverpool was lit up with a good luck message for mccoy on wednesday night .\neuan ritchie and jen martin launched a crowdfunding page to track kangaroos in the northern territory . within two days they received a pledge of over $ 2 billion from jeffrey green . the couple were shocked when the pledge disappeared within an hour . pozible has since attempted to track down the mystery pledger but to no avail .\nwebsite , called how old do i look , allows people to analyse any image found on bing , microsoft 's search engine . it even allows users to search for celebrities - and see what microsoft thinks their real ages are . the site was able to accurately guess kim kardashian 's age as 34 , but thought 37-year-old kanye west was actually 38 .\nabraham lincoln was shot in ford 's theatre in washington d.c. on april 14 , 1865 . he died from his injuries the next day . the red chair has been on display at the henry ford museum in dearborn , michigan , for 85 years . on april 15 , it will be removed from its encasing to be displayed for the 150th anniversary of the assassination .\nsupermarket giant ordered to pay $ 2.5 million in penalties . it 's ` made today , sold today ' slogan was deemed misleading by the federal court . it was slammed with a three-year ban to no longer promote its bread as baked on the day it is sold or made from fresh dough . the falsified fresh bread has generated a revenue of about $ 300 million for coles .\njoe anderson , 56 , was a mentor at chesterfield high school , merseyside , from 2001 . he was paid # 4,500 per year despite doing nothing for pupils , it was claimed . mr anderson , who is paid # 80,000 , tried to sue the school for discrimination . he claimed he was punished for his ` philosophical belief ' in public service . but a judge ruled that the school was right to stop the payments .\njohn pat cunningham was shot dead by the army in a field in co armagh in 1974 . dennis hutchings , 73 , has been charged with attempted murder and released on bail . mr cunningham , 27 , had the mental age of a child and was running away from an army patrol . the government apologised for his death in 2013 and the police investigation was re-opened .\ndavy condon has been advised to retire from horse riding . the jockey suffered a spinal concussion in the grand national . it is the second time within a year that condon suffered a similar injury . robbie macnamara is also recovering from life-threatening injuries .\nthe $ 2 billion fiona stanley hospital in southwest perth has been found to have blood and bone fragments on some of its medical instruments . the hospital was stripped of its service provider serco after they failed to return sterilising equipment by an arranged date in february . the company was fined $ 60,000 and was subject to department of health workers auditing its staff .\naustralia says it will share intelligence with iran on australians fighting for isis . the deal is `` an informal arrangement , '' australian foreign minister julie bishop says . but one australian lawmaker reportedly described the move as `` dancing with the devil '' bishop is the first australian government minister to visit iran in 12 years .\nat least three people are shot , one fatally , in ferguson , missouri . two people were shot in the neck and another was shot in a leg , a city spokesman says . the unrest carried on until about 3 a.m. and three police vehicles were damaged by rocks . the renewed tensions in ferguson follow rioting in baltimore after the death of freddie gray .\nleigh griffiths was caught on camera eating a biscuit on the bench . celtic beat st mirren 2-0 in the spl on good friday night . the bhoys striker was on the substitutes bench for the first 10 minutes . celtic manager ronnie deila has encouraged the 24/7 athlete . deila insists on a strict diet regime for his players .\nmanchester city forward sergio aguero opened the scoring for argentina . miller bolanos equalised for ecuador in the first half . javier pastore scored the winner in the 58th minute . gerardo martino 's side are preparing for the copa america . argentina beat el salvador 2-0 in washington on saturday .\ngang poured gasoline on a car that stopped to fill up at a gas station in south los angeles around 12:15 am on saturday . group covered the white dodge charger and lit it while there were two passengers inside . driver of car said he got into an argument with the suspects before the fire . the los angeles county fire department is investigating the incident as an arson and the suspects remain at large .\ncassandra c. , 17 , was diagnosed with hodgkin 's lymphoma in september . she ran away after two days of treatment in november . a judge ordered her into custody of the state in december . she has been living at connecticut children 's medical center since then .\nengland full back mike brown has n't played since march 21 . the 29-year-old was knocked out in a collision with italy 's andrea masi . brown is still suffering headaches after a week-long holiday in dubai . george north has been ruled out until the end of the month with concussion .\nfive-month-old baron the german shepherd was filmed using the toilet . he entered the bathroom and lifted up the toilet seat before climbing up to relieve himself . once he 's finished , he puts down both the toilet seats and flushes before running out . the video has been viewed more than 16,400,000 times on youtube .\nplane was struck by lightning and began to plunge into the north sea . autopilot ignored pilot 's commands and tried to crash the plane into the sea . pilot wrestled back control just moments before it was about to crash . island-hopping flight from aberdeen to shetland landed safely with no injuries .\ninvestigators have been scouring andreas lubitz 's computers to determine his state of mind before the tragedy . lubitz , 27 , crashed the airbus a320 passenger jet into the alps changing the aircraft 's altitude to just 100 feet using the autopilot . investigators believe that lubitz may have added a chemical to captain patrick sodenheimer 's coffee to remove him from the flight deck .\nmohammed khubaib , originally from pakistan , befriended girls and ` hooked ' them with alcohol . 43-year-old married businessman would pursue interest ` away from his home and family ' he was convicted of forcing a 14-year old girl to perform a sex act on him . khubaib is last of a string of men to be convicted of child sex offences against girls .\nsteven howie , 28 , left his girlfriend karen murray , 31 , with 18 injuries . he punched , kicked and kneed her during a prolonged assault on new year 's eve . he also smashed furnishings and pulled the door of their en-suite bathroom off its hinges . the couple were staying at the carronbridge hotel in the campsie fells . howie admitted threatening violence , assaulting and injuring miss murray , causing damage to the room , and giving a false name to police . he was sentenced to eight months in prison at stirling sheriff court .\ndoug hughes , 61 , is under house arrest in florida after landing his gyrocopter on the west lawn of the u.s. capitol last week . he is accused of violating a no-fly zone and could face four years in prison if found guilty . his daughter kathy , 12 , has called her father a ` patriot ' for his flight . he said he never feared he would be shot down and that he was only trying to highlight the ` problem of corruption in congress '\nvirtual reality video shows how passengers would survive a plane crash landing on water . the short film has been developed on an oculus rift - a virtual reality headset - by italy 's university of udine 's hci lab . it is hoped the simulation can make people aware of the correct processes to follow for a landing onwater .\nengland captain alastair cook put west indies in to bat in overcast conditions . graeme swann revealed when cook 's form took a turn for the worse . adil rashid was made to wait for his test debut after being left out . devon smith became the first grenadan ever to score a test run in grenada .\nadam prowse , 34 , of torquay , was captured on camera dancing to a series of songs from michael jackson 's do n't stop 'til you get enough to pharrel williams ' happy . video of adam dancing with the unsuspecting homeowner has been viewed around 1.5 million times .\nrobert clark has spent his life savings on home care for past two years . brent council said it could not afford to pay for a live-in carer . mr clark , 96 , has lived in the same home for 50 years and is blind . charity help for heroes has given him an emergency grant to fund his care . but they are now appealing for money to keep him in his home . more than # 2,500 has been raised on a justgiving fundraising page .\ntroy university students delonte ' martistee , 22 , of georgia and ryan austin calhoun , 23 , of alabama were charged on friday with sexual battery . the alleged victim told deputies she thought she had been drugged before the incident and that she was afraid to report it because she could not remember many details . authorities are still searching for two additional suspects in the case . the footage was uncovered on a cell phone during an unconnected investigation into a shooting in troy , alabama .\nfloyd mayweather and manny pacquiao will fight for the wbc emerald winner 's belt on may 2 . the diamond encrusted belt was unveiled in mexico city by world boxing council president mauricio sulaiman . current wbc light heavyweight champion adonis stevenson was also on hand as the $ 1million creation was put on show .\njames anderson took his 384th test wicket on friday night . anderson overtook sir ian botham as the most prolific bowler in england 's test history . england were bowled out for a draw in the first test in antigua . jason holder scored his maiden test century for west indies .\nman city and liverpool are in a race for the final champions league place . city lead liverpool by four points with six games to go in the season . the last meaningful race among the top teams is between liverpool and city . city have nine points fewer than at this stage last season .\nsir bradley wiggins will attempt to break cycling 's hour record in june . the four-time olympic champion will race at london 's olympic velodrome . the current hour record is 52.491 km , set by australian rohan dennis . tickets to watch wiggins attempt to set the record go on sale on april 19 .\nal-shabaab has claimed an attack on garissa university college in eastern kenya . it is another step in the ongoing escalation of the terrorist group 's activities . somalia-based al-shabab has been behind a string of recent attacks in kenya . al - shabaab is predominantly driven by the same radical interpretation of the koran as al-qaeda and isis .\nsouth african comedian was spotted at citi field in queens . he was joined by jerry seinfeld , larry david and matthew broderick . earlier he was filmed with seinfeld in brooklyn driving a ferrari . noah was named as jon stewart 's replacement last month . but he was accused of anti-semitism in the wake of the announcement .\nanje galsworthy was also stepmother to becky watts , 16 . tania watts is likely to see her at becky 's funeral as she was her mother . ms watts said she fears coming face-to-face with her daughter 's mother . becky vanished from her father 's family home in bristol on february 19 . police discovered her body parts at a house in barton hill , bristol , on march 2 and charged her stepbrother , nathan matthews , 28 , with murder .\npart-time worker in germany ordered to pay more three quadrillion pounds in pension contributions . blunder at the pensions office in essen saw a letter sent out the woman asking for # 3,351,978,728,190,661 . the bill is more than a thousands times than the whole of germany 's annual gross domestic product .\ndaniel craig 's james bond should have died at least three times , experts say . in real life 007 would have perished several times in skyfall . the incidents that ought to have been fatal include one before the opening credits rolled that would have ` turned his lungs out '\ndefense team seeks to spare dzhokhar `` jahar '' tsarnaev from death penalty . defense shifts focus from tamerlan tsarnav to younger brother . tamerllan was aggressive in ambulance , but jahar was docile , witness says . jahar 's former teachers describe him as smart , sweet , hard worker .\nfarmers in rural australia are renting their empty properties for $ 1 a week . the scheme is being used to attract young families to their communities . rural towns like cumnock , errowanbang and molong in nsw and wicheproof in victoria have benefited from the scheme . the towns hope the families will help populate their schools , save the local bus run and keep businesses open .\narian miyamoto is the first ever mixed race miss japan . the 20-year-old was born and raised in japan , speaks fluent japanese . she has faced racial abuse growing up in the port town of sasebo . her father is african-american and she has a japanese mother . she will represent japan at miss universe in las vegas next month .\nryan reynolds was struck by a car while walking in the residential parking garage of the shangri-la hotel on friday . the incident took place on friday , but he was left uninjured . the actor has been in vancouver for weeks shooting scenes for his new film deadpool .\nprosecutors said james holmes , 27 , was once a sought-after neuroscientist-in-training . but evidence shows he was preparing for violence months before the shooting . holmes told a classmate he wanted to kill people , had fallen out of favor with his professors , and had stopped seeing his psychiatrist . he also stockpiled weapons , ammunition , tear gas grenades and riot gear . holmes also rigged his apartment to become a potentially lethal booby trap .\nreal madrid beat rayo vallecano 2-0 in la liga on wednesday . cristiano ronaldo scored his 300th goal for madrid in 288th game . the 30-year-old has scored 18 goals against sevilla since joining in 2009 . ronaldo has netted 161 of his goals in the santiago bernabeu .\nreplica of french frigate that fought with u.s. in war of independence . l'hermione is a painstaking replica of an 18th century french frigate . it set sail in france on saturday for virginia to retrace a journey through american history . president obama calls france `` our nation 's oldest ally ''\ntwo college campus police officers in dallas have been placed on administrative leave after shocking video footage surfaced of them harassing a group of four students . the incident occurred at el centro college and was captured on cell phone by student charles adams . the footage shows the young men being ordered to face a brick wall , while one of the two campus cops searched , questioned , and even hit one of them .\narsenal beat liverpool 4-1 in the barclays premier league on saturday . hector bellerin , alexis sanchez and olivier giroud scored for the gunners . arsene wenger believes his side are finally starting to find their form again . the gunners are now seven points clear of manchester city in second place .\nmanchester united lost to rotor volgograd in the uefa cup in 1995 . the russian outfit were competing in the second division . rotor beat united 2-2 at old trafford to go through on away goals . the club have now been wound up after going bankrupt .\ndwayne harvard , 46 , had an argument with steven sutton , 36 , sunday night . harvard claims sutton was angry that he was giving sutton 's girlfriend a ride home . harvard drove through seven towns with sutton on the hood of his car . harvard was finally stopped at an exit in kittanning , pennsylvania . charged with simple assault , aggravated assault , reckless endangerment and dui .\nmarvel comics superhero hawkeye has a secret super-talent . jeremy renner was a guest on `` the tonight show starring jimmy fallon '' he got behind the piano to showcase some of his other skills . those talents include his collection of scarves and berets .\nthe daily mail revealed doctors are concerned with the trend of people cutting out whole food groups like carbohydrates . australian dietician and nutritionist susie burrell agrees with the research that points to white bread and heavily processed carbohydrates as contributors for weight gain . but she says this is no reason to cut all carbs out completely .\nronaldo brown has signed for league one club oldham athletic . the 16-year-old is named after brazil 's former striker ronaldo . the latics have also signed his twin brother rivaldo . the teenager was released by liverpool earlier this summer . he has explosive pace and plays on the wing for the latics .\nsandie konoelk of shiloh , illinois , was struck and killed by a st louis metrolink train . she was responding to a report about an opossum on the tracks . konoellk died of blunt-force trauma and was pronounced dead at the scene .\nbride-to-be adele mckenzie paid $ 1,000 for her wedding dress . she was devastated to learn the bridal company she had paid for it had closed down . ms mckenzie was one of around 140 brides who received the same email . the brides-to to be banded together to create a facebook page . they were inundated with offers of free wedding gowns .\nqatar airways flight landed at birmingham airport on monday night . severe winds foiled two landing attempts at manchester , where plane was due to arrive at 7pm . passengers were made to stay in seats as they waited for plane to be refuelled . police were first called to birmingham after passengers started ` kicking off ' officers returned two hours later after reports that angry passengers were trying to disembark .\narsenal face burnley at turf moor on saturday afternoon . victory will ensure gunners claim longest winning streak in premier league . arsenal have won seven straight games since defeat against tottenham . manchester city have also won seven in a row this season . arsenal hold the record for most consecutive wins - 14 between february and august 2002 . manchester united 's winning streak of 12 games helped them win the title in 1999-00 .\n` bright and beautiful ' gcse pupil was given drugs by dealers targeting schools . she was given cocaine , ecstasy and ` party drug ' meow meow . father , only known as john , has called on south gloucestershire council to do more to tackle drug dealing in its schools .\nrobbie williams has ditched plans for underground extension at his home . the 41-year-old star wants to focus on inside of the 46-room mansion . he bought the property in 2013 for # 17.5 million and has two children . led zeppelin guitarist jimmy page was upset by the plans . he claimed the work could damage his grade i-listed property .\npolice found a body at cocoparra national park , in the riverina region of nsw on friday night . the 26-year-old was due to marry her fiancé and partner of five years on saturday . her sister kim scott asked attendees of a memorial picnic on saturday to ` wear yellow ' in memory of stephanie . facebook , instagram and twitter were flooded by social media users who shared images of yellow clothing , balloons , ribbons , flowers and posters under the hashtag #wearatouchofyellow . more than 60,000 people have joined memorial pages for stephanie scott on social media as the nation mourns her tragic murder .\nnewcastle owner mike ashley has been warned he risks creating a lost generation of supporters if he fails to invest in the club . thousands of fans stayed away from sunday 's defeat by tottenham in protest at the way the sportswear tycoon is running the club , with the official attendance of 47,427 . protesters are calling for a repeat when swansea head for tyneside on saturday .\nliverpool are interested in signing monaco midfielder geoffrey kondogbia . the 22-year-old has been watched by arsenal in recent years . kondogsia has made over 100 league appearances for lens , monaco and sevilla . he was a key player for france at the under 20 world cup in 2013 .\njudge jerry baxter had given harsh sentences to three atlanta educators in cheating scandal . he said he was n't `` comfortable '' with seven-year prison terms given earlier to three educators . judge reduced sentences to 3 years in prison , 7 years on probation , 2,000 hours community service .\njon moss will take charge of fa cup final between arsenal and aston villa on may 30 . mark halsey has slammed the fa 's decision to overlook mark clattenburg . halsey said the english game would be a ` laughing stock ' over the decision . the former premier league referee said the appointment process was ' a joke '\nparamedics were called to cockle bay wharf in sydney 's darling harbour . the man was on the boat dock when emergency services were called . before they could wrap him in a foil blanket he fell backwards into the water again . the freezing man was taken to hospital as a precautionary measure .\naustralia will consume 54 million hot cross buns and 2,900 tonnes of chocolate . femail reveals which wine is best suited to washing it down . sales of lobster , oysters , prawns and fish will increase by 80 per cent over the easter holiday . peter nixon , resident drinks expert at dan murphy 's , has shared his top wine pairings .\nwest ham united lost 2-1 to stoke city at upton park . hammers boss sam allardyce believes his squad are unable to deal with the rigours of a full premier league season . allardyce 's contract expires at the end of the season but he feels his work at upton park is far from done .\ncarjacker attempted to drive off from fast track car wash in smyrna , georgia . woman jumped on top of bonnet but he was driving off regardless . passer-by pulled out his gun and shot the thief in the shoulder . police have hailed the man as a hero for possibly saving the woman 's life .\nkira hollis weighed just 6st at the time she was diagnosed with borderline personality disorder . doctors ordered the 27-year-old , from tamworth , staffordshire , to go to the gym . there , she turned her life around and is now a personal trainer . now a healthy 9.5 st , ms hollis says bodybuilding gave her confidence to overcome depression .\nharry redknapp resigned as qpr manager in february citing knee problems . the 68-year-old says he would consider a return to management if the right club came along . redkn app turned down a ` mind-blowing ' offer to coach abroad this week . the former qpr boss is leading a men united xi vs leyton orient legends charity match on sunday , may 31 .\na body pulled from the mississippi river on saturday has been identified as barway edward collins , 10 , who has been missing for nearly a month . police said on sunday that the boy 's father , 33-year-old pierre collins , is a primary suspect in the homicide investigation . the boy 's death is being investigated as a homicide . in video released by police , barway says ` there 's my dad ' and ` there 're my uncle '\nronald anderson , 48 , has been charged with armed kidnapping and assault on a police officer in thursday 's spree . he has been arrested after he shot and killed a census bureau guard and led police on a car chase before authorities cornered him in an exchange of gunfire . the guard , identified as lawrence buckner , died at a hospital in cheverly , maryland , at 7.19 pm thursday . anderson had previously been convicted with manslaughter and was recently charged in an assault case involving his ` visibly afraid ' girlfriend .\natletico madrid take on real madrid in the champions league on wednesday . diego simeone admits he is surprised there are no english clubs in europe . chelsea , arsenal and manchester city were eliminated at the last 16 stage . everton were dumped out of the europa league in the previous round .\nmichael bisping takes on cb dollaway in montreal on saturday . bisper is looking to avoid losing successive fights for the first time in his career . the manchester middleweight is open to fighting again in glasgow this july . biddings has not fought in the uk in five years .\nindia is sending in hundreds of troops and planes to help in nepal . prime minister narendra modi says indians need to `` wipe the tears of every nepali '' india has been taking a more proactive role in recent months . china is also helping in the region . but india 's help is welcome in times like this .\nantique furniture moved from library of ickworth house in suffolk earlier this year . it was replaced with four brown leatherette bean bags to encourage visitors . move provoked fury from heritage expects who branded it ` misguided ' it has emerged that similar experiments will take place at nine other venues .\nbus driver in queens , new york , seen driving with his wrists and forearms . commuter recorded him with both hands on a piece of paper . the bus was being used to replace part of a subway line closed for maintenance . driver has been taken out of passenger service while agency investigates .\nthe 16-year-old made his pre-season test debut in german formula 4 on wednesday . mick schumacher was pictured accidentally turning into gravel by the side of the track during a training session . the rookie 's boss frits van amersfoort says mick will need time to learn the trade of the racing driver . the teenager was involved in a 100mph crash at the lausitzring speedway in brandenburg , eastern germany in march .\nrebecca francis won extreme huntress reality tv show in 2010 . she is a proud advocate of hunting - and regularly posts pictures of her kills . gervais tweeted picture of her lying next to dead giraffe - and it was retweeted thousands . some even tweeted they hoped she dies ' a lonely , painful death '\nmuslims have boasted they can influence up to 30 seats at the election . muslim engagement and development has links to extremists . group wants to let british muslims fight in syria without fear of prosecution . it has bragged that it is in talks with both the conservatives and labour .\naustralian homeowners are making room in their backyards to allow budget travellers to pitch a tent and stay for a few nights . homecamp , which launched in january , has been attracting both backpackers and locals who are looking for cheap and fast accommodation . one sydney host , steve york , has already had four successful bookings . there are currently more than 50 australian homeowners using the website .\nmanchester united defender chris smalling has joined twitter . the 25-year-old posted a photo of himself and girlfriend sam cooke . adnan januzaj has also joined the social networking site . the belgian winger has found his game time limited this season . united face manchester city at old trafford on sunday .\nmarvin hagler says floyd mayweather does not act in the manner befitting a champion . hagler was speaking at the laureus sports awards on the 30th anniversary of his blockbuster fight with thomas hearns . mayweather is the richest sportsman in the world . haglers warned mayweather 's showdown with manny pacquiao could be a dud .\ndavid gergen : baltimore 's riots , protests have little to do with baseball , but it 's a problem for the league . he says orioles postponed games against chicago , chicago postponed games ; no one else invited . he asks : without fans , does baseball mean anything ? gergen says sports is supposed to create community , to unify .\nscientists from the university of connecticut found one in six species of animals could face extinction if we do nothing to combat climate change . animals are most at risk in south america , australia , and new zealand . if future temperatures increase by only two degrees compared to pre-industrial levels , the extinction risk would increase from 2.8 to 5.2 % . but if global warming maintains its current trajectory and a 4.3 degree increase , that could increase to 16 % . a separate study from the university of berkeley in california examined extinction rates in fossils over 23 million years . they found that the tropics and antarctica are most likely to die out .\nteenagers plunged off edge of sec ` globe ' centre in kiev , ukraine . jacob polyakov cracked his head on floor after plunging off edge . his friend jamal maslow broke his coccyx after landing on corner of steps . witnesses rushed over to the teenagers , both 17 , after the accident . both were taken to hospital and are in intensive care .\ndriver in her 80s caused chaos when she drove the wrong way along a13 in essex . the dual carriageway was shut for an hour on monday afternoon after she drove a red peugeot towards southend . some cars were forced into the central barrier and one man needed treatment for neck and back injuries .\nbarcelona beat psg 2-0 to reach the champions league semi-finals . xavi made his 148th champions league appearance on tuesday . the former spain international also set the record for most appearances in the knockout phase of the competition . real madrid goalkeeper iker casillas can equal xavi 's total in both champions league games and knockout matches if he plays against atletico .\nsouth african troops deploy to jeppestown , where xenophobic violence broke out friday . seven people have been killed in recent violence against poorer immigrants . the united nations says the attacks began in march after a labor dispute . the unemployment rate in south africa is 25 % , according to government figures .\njohn terry scored a scrappy goal to put chelsea ahead against leicester . didier drogba equalised for the blues before ramires added a late winner . chelsea now sit 13 points clear of second-placed manchester united . jose mourinho 's side face crystal palace on sunday in the premier league .\nman , known only as john , posted the advert in his local newsagents . it has since gone viral after it was spotted by a passer by . the anonymous londoner then posted a picture of the ad on facebook . the post has since been viewed more than 100,000 times .\nbrad fraser made the song to welcome his new brother-in-law to the family . amanda beringer asked her brother to make a toast at her wedding at eagle bay , south of perth . mr fraser 's song poked fun at some of the burdens of marriage .\ned miliband announced the zero-hours contract ban to workers in huddersfield . labour leader said it was ` not good enough ' for millions of workers not to know how many hours they would be working from one week to the next . he said a labour government would give workers the right to demand a ` regular contract if they do regular hours ' after three months .\ntennis star billie jean king is co-chairing the lesbians4hillary campaign . the group , lpac , launched lesbians3hillary on monday . king helped run the former fiirst lady 's 2008 women for hillary clinton wing . she was outed as a lesbian in 1981 .\ndavid cameron confused devon and cornish ways of eating a cream tea . the prime minister made the gaffe on a campaign visit to devon . he then risked wrath of purists by claiming ` it all tastes the same ' wrangles over whether it should be jam first or cream have been running for generations .\nmanchester united defender chris smalling visited his old judo club . smalling presented some members with replica united jerseys during the visit . the 25-year-old was named national champion for his age group as a teen . smallings joined united from fulham in 2008 after impressing for maidstone united .\nher majesty attended traditional easter sunday service at st george 's chapel . joined by the duke of edinburgh , her majesty was there to present ` alms ' to 89 women and 89 men . the queen was presented with a posy of daffodils by seven-year-old milo fairman . the countess of wessex , autumn phillips and princess beatrice attended the service .\naustralian families take their pet kangaroos on walks to the beach , go away on holidays and even attend weddings with their owners as their plus-one . wally the wallaby was found on top of his dead mother on the side of the road and took home to nurse him back to health . suzie nellist from queensland said her pet wally thewallaby and her cat get along very well . wildlife carer suzie has cared for injured and orphaned wallabies for many years .\nlewis hamilton qualified on pole position for sunday 's bahrain grand prix . mercedes team-mate nico rosberg was third six-tenths of a second behind hamilton . hamilton leads rosberg by 17 points in the drivers ' championship . rosberg has a rare trait among modern formula one drivers : a hinterland place .\nu.va . associate dean nicole p. eramo said in an open letter wednesday to the magazine 's publisher , jann s. wenner , that the magazine has not done enough to make amends . ` rolling stone has deeply damaged me both personally and professionally , ' erama wrote . ` using me as the personification of a heartless administration , the rolling stone article attacked my life 's work ' the magazine retracted an article about sexual violence at u.va after the columbia university graduate school of journalism issued a scathing report this month concluding rolling stone had failed to meet journalistic standards .\ntara mcintyre was left virtually wheelchair-bound after crash in essex . ben hagon 's mercedes sports car crashed into her at up to 75mph , court heard . she suffered life-changing injuries including a fractured spine and pelvis . hagon had taken prescription tranquilisers and was twice the legal limit . judge branded hagon , of halstead , essex , 's driving ` madness ' and jailed him for two years eight months .\nrobert bates , 73 , from tulsa , oklahoma , shot dead eric harris , 44 , during a botched undercover gun-sale operation on april 2 . he said he was trying to subdue harris when he pulled out his gun instead of his taser . he appeared on the today show on friday , where he apologized to harris ' family and said the mix-up could have happened to anyone .\npolice removed body of anna ragin from san francisco home on april 4 . her daughter carolyn , 65 , lived in the house with her mother . property was teeming with black widows , rats , feces and 300 bottles of urine . realtors have priced the property at $ 2.5 million . it will be sold at a live auction on may 1 .\nhillary clinton and bill clinton went for a stroll in a park in chappaqua , new york , on saturday . the couple were wearing blue ball caps and matching dark blue polo shirts . clinton will hit the campaign trail again today in new hampshire , where she 'll hold a round table at a family-owned business this afternoon . meanwhile , her two ` scooby ' campaign vans got some tlc of their own at a local body shop , where they were also hand washed .\nceltic beat kilmarnock 4-1 at hampden park on wednesday night . leigh griffiths scored a hat-trick and was man of the match . the 24-year-old has scored 15 goals for the club this season . griffiths says he had a talk with ronny deila and john collins .\nseattle seahawks signed tight end jimmy graham on a free transfer . michael bennett labelled graham as ` overrated ' after the saints beat him in a playoff game two years ago . the defensive end says he still feels that way about graham . bennett will come face-to-face with graham on april 20 .\nnorwich city remain second in the championship after beating bolton . graham dorrans gave the canaries an early lead with a deflected free-kick . adam le fondre equalised for the visitors with a low finish in stoppage time . gary hooper came off the bench to score a late winner for the canary 's .\ndavid cameron reveals he and wife samantha were ` falling apart ' with stress of caring for son . ivan was born with ohtahara syndrome , a rare brain disorder which left him in a wheelchair . he died aged six in 2009 and his parents were left ` totally shattered ' by his condition . samantha cameron said stresses of looking after ivan pushed their relationship close to ` breaking point '\na 50-year-old man has been charged with murder and four counts of attempted murder . police allege he rammed his car into the home at delaneys creek , north-west of brisbane , about 7.30 pm on monday . a woman believed to be the man 's ex-partner was in the house at the time . the driver then allegedly climbed out of the smashed vehicle and stabbed a 50 - year-old to death .\nformer wales goalkeeper jason brown was racially abused last year . kick it out welcomed the successful prosecution of a supporter who racially abused brown . john wild was issued with a three-year banning order and ordered to carry out community service , pay compensation and cover court fees at bristol magistrates court .\npentagon : u.s. crew believed russian pilot 's actions were `` unsafe and unprofessional '' a russian su-27 flanker intercepted a u.s. rc-135u over the baltic sea on tuesday . the incident occurred in international airspace north of poland .\nmore than 60 per cent of britons buy their lunches out for lunch . workers could save up to # 1,300 a year if they prepared their lunch at home . food website food52 's ` not sad desk lunch ' series demonstrates how to make healthy lunches . recipes include steamed chinese buns , vietnamese banh mi sandwiches and toast tartines .\ninverness beat celtic 3-2 in scottish cup semi-final . josh meekings handball should have led to a penalty and red card . craig gordon was also sent off for celtic in the second half . inverness boss john hughes says the break was a turning point .\nthe variety theater in cleveland , ohio , was once a buzzing music venue . it was closed down after the ceiling cracked during a motorhead gig in 1984 . the venue was sealed off in 1986 and has remained abandoned for 30 years . photographer seph lawless has captured a collection of haunting pictures of the building .\nmanchester united beat manchester city 4-1 at old trafford . marouane fellaini , ashley young , juan mata and chris smalling scored for the red devils . sergio aguero scored twice for city but they are still in the premier league . united will now take third place in the league .\npolice in colorado have cited a. 37-year-old man for carrying his computer into an alley then shooting it eight times with a handgun . lucas hinch , who runs an organic herb and tea shop , was cited for discharging a firearm within city limits . he told officers he had not realized he was breaking the law .\nnarcocon , a church of scientology-backed drug rehab network , wants to build a center for 12 patients on the 40-acre plot of land near camp david in frederick county , maryland . it claims that the property , trout run , has historic significance because president herbert hoover once caught a fish there . but the land is currently classified as a ` resource conservation ' site and does not have a medical purpose . the group has been sued in the past for wrongful deaths but denies wrongdoing .\nben and shelby offrink met in college and married in 2010 . shelby was diagnosed with a rare form of brain cancer in 2014 . she has battled the disease for eight years , but it has returned . ben is now on chemotherapy and hopes to have a bone marrow transplant .\narsenal right back hector bellerin has been linked with a return to former club barcelona . the 20-year-old has impressed arsene wenger this season . bellerins scored his second goal for arsenal against liverpool on saturday . psg and man united are interested in signing dani alves .\nreplica pirate schooner liana 's ransom lost power early monday morning . crew members were forced to abandon ship and be rescued by coast guard life boats . crew member luke arbuckle came up short while attempting to make the jump to the coast guard ship . the 85-foot-long vessel was on its way to st maarten in the caribbean with nine crew members .\ntaiwanese man 's wife hired two strippers to perform at his funeral . the exotic dancers were dressed in just underwear and thigh-high boots . they danced around the casket to maroon 5 's moves like jagger . the dancers were hired as a final gift to the deceased 's wife .\ntop gear producer oisin tymon told police he did not want to press charges . police had opened an investigation into the incident at a hotel in hawes , north yorkshire . but officers have now decided to drop the probe without taking action against clarkson . the 54-year-old presenter was sacked from the hit bbc show last month .\njack grealish started for aston villa against liverpool at wembley . the 19-year-old impressed in a midfield role for the visitors . grealishes played a part in christian benteke 's equaliser and fabian delph 's winner . tim sherwood said grealish has a ` big future ' at the club .\nsir bradley wiggins finished 18th in his final race with team sky . wiggins was hoping to win the race , which he will leave in the summer . but john degenkolb won the race in two laps of the roubaix velodrome . degenkolb became the first rider to win both races since sean kelly in 1986 . luke rowe was sky 's best performer , finishing eighth .\nrobert dellinger , 54 , was sentenced on thursday to two four-and-a-half to ten year sentences that are to be served consecutively in the december 2013 deaths of amanda murphy , 24 , and her fiance , 29-year-old jason timmons . prosecution claimed he deliberately drove his vehicle head-on into the couple 's car because he was depressed and wanted to kill himself . he was given credit for the 15 months he has spent in jail since the crash , which means he could be released in less than eight years . he pleaded guilty in february to negligent homicide for the deaths of the couple , who were from wilder , vermont , and to assault for the death of\nandy murray will marry his girlfriend of almost 10 years kim sears on saturday . the wedding will take place in murray 's hometown of dunblane , scotland . the couple met when murray was playing at the us open in 2005 . murray and sears got back together in 2010 after a brief split .\nbradford city 's valley parade stadium was destroyed in a fire in 1985 . 56 people died and 265 were injured in the blaze . john helm was commentating on the match when it broke out . he says there is no evidence to suggest the fire was started deliberately . helm says stafford heginbotham 's family are being subjected to an unseemly inference .\nrichard eckersley is a free agent after leaving mls outfit toronto fc . he has been training with la liga side elche . the 26-year-old made just two premier league appearances for manchester united . eckersly is hoping to secure a dream move to spain with elche in january .\ndebris appeared to fall out of the sky over west pittston , pennsylvania . residents believe the rubbish came from the lavatory holding tank of a plane . paula viccica believes the debris landed on her property . she has complained to the federal aviation administration . faa said it is ` very rare ' for anything to fall from an aircraft .\nalexandra harra , 28 , has been dubbed ` the romanian kim kardashian ' has a ba degree in creative writing and classics . now works as a professional life coach and author . recently dyed her hair black to make her look more like the reality star . has appeared on the cover of playboy romania and many other glossies .\nqueens park rangers host chelsea in the premier league on sunday . qpr boss chris ramsey says he will have no problem shaking john terry 's hand . terry was banned for four games and fined # 220,000 for racist comments . rio ferdinand , brother of anton , will not be fit for the match at loftus road .\ndeath row records co-founder suge knight was punched a number of times during the deadly confrontation in january , but close-ups taken by detectives show he only had a slight black eye . the images were released along with a number . of key pieces of evidence as the court was shown footage of the deadly incident in compton on january 18 for the first time . knight has pleaded not guilty to killing terry carter and trying to kill cle ` bone ' sloan .\nthe coroner 's report revealed tuesday that rebecca eldemire , 21 , was shot in the face with a .357 magnum by her boyfriend , 27-year-old larry tipton . after shooting eldemires twice , tipt on laid down face up beside her and fatally shot himself . the day before her murder , eldemir called police to say that she wanted protection from her ex-boyfriend , who was visiting from out of town . but after speaking with him , she sent the officers away , police said . the next morning , her roommates called police , who arrived and found the bodies and one gun inside the room .\na 2-year-old ran in front of a van in milwaukee , wisconsin sunday evening . the driver of the van , archie brown jr , was shot in the head and died at the scene . a 15-year old boy was also shot and later died at a local hospital . police are still looking for the person responsible .\nthe anthem of the seas is royal caribbean 's second quantum-class liner . the 4,180-passenger ship is set to welcome more than 80,000 people on board this summer . the indoor seaplex activity area has bumper cars , a roller disco and circus school .\nsuperior court judge orlando hudson jr. said prosecutors had two aggravating factors and that craig stephen hicks is ` death penalty qualified ' hicks is charged with three counts of first-degree murder in the february 10 killings of 23-year-old deah shaddy barakat ; his wife , 21-year , yusor mohammad abu-salha ; and her sister , 19-year . old razan mohammad abu . hicks , 46 , appears to have been motivated by a long-running dispute over parking spaces at the chapel hill condominium complex .\nwayne community college in goldsboro , north carolina , was on lockdown after one person was shot in the library . police identified the victim as rod lane who worked in the college print shop . the suspect is kenneth stancil , 20 , a former student who did not graduate from the community college . he allegedly entered the building at 8am and fired one shot . the single bullet fired killed long-time employee ron lane . it is not known whether stancill and lane are connected or related .\ndesigner jackson gordon is a 21-year-old student at philadelphia university . he has created a full batman suit , including armor plating and a cape . the suit is made of kevlar , memory foam and a silicone cowl . gordon has raised $ 1,255 on kickstarter and is now making the cowls for sale .\nmanchester city host united in sunday 's premier league clash . wayne rooney knows united will be playing for ` pride ' against city . the united captain is the leading scorer in derby history with 11 goals . rooney scored a stunning volley in last week 's 3-1 win over aston villa .\ndavid alaba was injured during austria 's 1-1 draw against bosnia-herzegovina . the 22-year-old left back will miss around seven weeks of the season . bayern munich are top of the bundesliga with eight games left . alaba had been out for three months earlier this season after a partial ligament tear in his right knee .\nbritish boxer amir khan is keen to face manny pacquiao . the fight could take place in abu dhabi this november or december . khan is preparing to fight chris algieri in new york next month . the winner will face floyd mayweather on may 2 . mayweather will end his six-fight deal with showtime in september .\nandrew chan , 21 , and myuran sukumaran , 24 , were caught trying to smuggle more than eight kilograms of heroin out of indonesia in 2005 . both men were arrested on april 17 in 2005 and were convicted in october of that year . the pair , who first met at a party in 2002 , were disillusioned by their jobs and had been won over by the riches and lifestyle that selling drugs promised . the death penalty has never left the table for chan and sukumara since they were first convicted in 2005 following a tip off from australian federal police to indonesian officials .\ndanielle davis , 24 , refused a termination after scan revealed brain cyst . when daisy was born she was told she had the rare disorder anophthalmia . the condition is incurable , and daisy will never be able to see . she will be fitted with glass eyes when she is 18-months-old .\nresearchers found 69 per cent of people taking ssri did not have depression . but 38 per cent did not meet criteria for other psychiatric disorders . antidepressants are prescribed for major depressive disorder and other conditions . symptoms include a depressed mood , weight loss , weight gain and insomnia .\nfulton county superior court judge jerry baxter had delayed sentencing by a day and encouraged all to negotiate deals with prosecutors . but only two agreed to deals . one former teacher was sentenced to a year in jail , one former testing coordinator six months of weekends spent in jail . the three regional directors who oversaw multiple schools and were ` at the very top of this scandal ' were sentenced to seven years in prison . the judge called the cheating scandal ` the sickest thing that 's ever happened in this town ' and said it was ` pervasive ' and ` pervasively ' bad .\ndiane mclean and her three children lost ` everything but their lives ' in the east village apartment explosion last week . the mother and her children , rose , 8 , and twins james and annabelle , 5 , had nothing more than the clothes on their backs after the disaster . a gofundme campaign has raised nearly $ 90,000 for the family .\n100,000 pupils a year do not pass the english and maths tests before they leave primary school . david cameron will today announce that all children who do not . pass their tests aged 11 will have to take them again in the first year of secondary school , when they are 12 .\nfloyd mayweather has added a 2016 mercedes-maybach s600 to his collection of sports cars . the 38-year-old posted a video of the car to his instagram page . mayweather takes on manny pacquiao in las vegas on may 2 in the most anticipated fight in years .\nmanchester city have been linked with a move for yaya toure . the midfielder looks set to leave the etihad stadium this summer . toure has struggled to impose himself on games in recent seasons . but his legacy should be a positive one , with two premier league titles . he has been fundamental in city 's transition from wealthy hopefuls to champions .\nusain bolt said he felt ` let down ' by tyson gay 's reduced ban . the jamaican said he used to respect gay as a competitor . bolt said the decision to shorten gay 's punishment was ` stupidest thing i 've ever heard ' gay is set to compete against bolt after returning to the sport .\nmicrosoft hopes to lure more people to use its new windows 10 software by making it easy to use many of the same apps they 're already using on apple or android phones . the company said at its annual build conference on wednesday that it will release new programming tools for software developers to rapidly adapt their apple and android apps to run on devices that use windows 10 . microsoft also announced a new name for the web browser that it plans to offer with windows 10 - ` edge '\nbrent council said it was no longer able to afford to pay for a live-in carer . pensioner robert clark has already spent # 50,000 of his life savings on his care . he has lived in his home in burnt oak , north london for more than 50 years . armed forces charity help for heroes has set up a fund-raising campaign to help him stay in his own home . in just four days the total amount of donations has reached # 10,000 .\nkevin coulton , 16 , from manchester , stuck his mouth in the rim of a glass . he blew into the rim to achieve a fuller pout but was left with bruising . schoolboy said : ` it really did hurt , and it went all purple and bruised straight away ' he is now warning classmates not to take part in the ` kylie jenner ' challenge .\na pair of turkey-sized ` egg thief lizards ' dubbed romeo and juliet were found in mongolia in the mid-90s . palaeontologists led by the university of alberta believe they can tell males and females apart from certain tail bones . they say that the key differences between the sexes lie in bones near the base of the tail . the researchers suspect that male oviraptorosaurs shook their tail feathers in intricate displays to woo potential mates , akin to modern-day peacocks .\nrwandan edwin sabuhoro was working as a warden in rwanda 's volcanoes national park . he decided to quit his job and come up with an idea to help poachers make a living . he divided his savings and gave it to poachers to rent land , buy seeds and start farming .\nthe duke and duchess of cambridge have returned to kensington palace . they spent the weekend at kate 's family home in berkshire . the couple are preparing for the birth of their second child on saturday . prince william has finished his pilot training earlier than expected . he will now be able to be with his wife both before and after the birth . prince harry will return to the uk this weekend to watch the london marathon .\nbbc trust chief rona fairhead will stand down as a director of hsbc . she was criticised by margaret hodge over her handling of tax evasion scandal . mrs fairhead has told shareholders she will stay on for ' a further one-year period ' before leaving the bank 's board entirely .\nphillip hyman painted a black angel with wings near the spot where walter scott was shot . the figure has been used by protesters in the black lives matter movement . hyman says he painted the figure as a way of mourning with scott 's family . `` it 's a statement of where we are in america today , '' hyman said .\na massive sandstorm has swept across the arabian peninsula . images show it sweeping across saudi arabia , oman and the united arab emirates . it also reached as far east as india and pakistan over a period of seven days . the sandstorm caused chaos across the area 's major cities including riyadh and dubai . more than 450 flights were cancelled between wednesday and friday .\ndr. kristen lindsey posted a photo of a dead cat on facebook . she said it was her first bow kill . the clinic fired her , covered its marquee with duct tape . the sheriff 's office is investigating . the cat was probably a pet of an elderly couple , an animal rescuer says .\nchristian communities across america observed good friday on friday . the day commemorates the crucifixion and death of jesus christ . ` way of the cross ' walks took place in ohio , pennsylvania and over the brooklyn bridge , among others . tens of thousands of people flocked to pope francis ' good friday torchlight procession at the colosseum in rome .\nheckler & koch 's g36 rifle is inaccurate by up to 20 feet at long range when temperatures top 30c , it has been claimed . weapon also becomes unreliable when left in direct sunlight , exposed to humidity or fired repeatedly , according to a confidential report . the german-made weapon is used by police forces across the uk .\nrichards will appear on dr. phil on april 28 to discuss her struggle with alcoholism . the 50-year-old was arrested on april 16 after a drunken altercation at the beverly hills hotel . she is scheduled to appear in court on may 10 . sources from the cast and crew of real housewives of beverly hills say that kim 's recent protestations that she was sober were laughable .\nlee wright , 56 and leslie roy , 52 , were visiting relatives in ishpeming , michigan , when their suv got stuck on april 11 . they rationed girl scout cookies , cheese puffs and melted snow to stay warm . they heard crunching in the woods at night and thought it was bears . they were found friday near lake superior in a remote part of the upper peninsula .\nerwin rommel was captured by british major general michael gambier-parry . he was given the goggles as a gift to thank him for retrieving a stolen hat . rommel later found gambier parry 's army goggles in a staff car . he asked to keep them and gambier agreed . the goggles are now housed in a museum dedicated to rommel .\naaron taylor-johnson , 24 , met sam , 48 , on the set of nowhere boy in 2009 . he was 19 and she was 42 when they married in somerset . he says he does n't notice the age gap because he is so grown up . friends of the couple call him benjamin button after brad pitt 's character .\nryan and jaclyn are seen arguing over dinner in puerto rico . jessica and ryan are also seen arguing during their honeymoon . davina varricchio and sean varricchi are also experiencing problems on their honeymoons . the couples will return to the set of married at first sight on tuesday night .\npippa middleton has been slammed for eating whale meat on holiday . the 31-year-old wrote of eating minke whale in a newspaper feature . she said that she ate the meat at the juvet landscape hotel in norway . environmental campaigners say she is helping promote an ` unimaginably cruel ' trade .\nfidel castro was last seen in public in january 2014 . he met with venezuelan visitors to havana on monday , state media reported . he shook hands with them ` for hours ' before going to a school . it is his first public appearance since a landmark deal to reestablish ties with the us . he has previously met with cuban spies released by the us in the agreement .\npiper was in the car with her mother , two brothers and grandmother . the young girl died in a two-car collision on new south wales ' central coast . her mother , glenda milham , and daughter , michelle , were injured in the crash . the crash happened about 5.15 pm on saturday . a 54-year-old lower portland man was charged with drink driving . he will appear before windsor local court on may 14 . the national easter long weekend death toll now stands at 10 . it follows the death of a two year old girl on friday when a ute rolled over in south australia .\nspencer gerlach , 20 , confessed to stabbing his ex-wife to death on wednesday when he called 911 and turned himself in . keltsie gerlache was found in the living room stabbed to death as her 15-month-old baby girl was sleeping in the next room . spencer faces first-degree murder charges and was booked at elder county jail .\nceltic 's virgil van dijk is yet to be called up to the holland national team . the defender has been in fine form for the hoops this season . but van dijk has never been capped by his country . the 20-year-old is happy for team-mate jason denayer , who made his debut for belgium against israel .\nlazio beat napoli 1-0 in the coppa italia semi-final on wednesday . they will now face juventus in the final on june 7 . defender mauricio captured the lazio fans celebrations via selfie stick . lazio face empoli in serie a on sunday .\nthe london west hollywood hotel 's 11,000 square foot penthouse is the largest in los angeles . the luxury suite features a master bedroom with a tapestry and custom-designed bed . the 10th-floor penthouse will open on may 18 and will cost $ 25,000 a night .\nprince abdul malik , 31 , married dayangku raabi'atul ` adawiyyah pengiran haji bolkiah , 22 . the couple exchanged vows in a lavish ceremony at the monarch 's 1,788-room palace . the bride wore a diamond tiara and a necklace of emeralds , and a bouquet of crystal flowers . the wedding is taking place over a period of 11 days , and started on 5 april . the prince is the youngest child of the sultan , hassanal bolkia , and his wife , queen saleha .\nanthony ray hinton will be freed on friday after spending 30 years on alabama 's death row . prosecutors told a judge there is not enough evidence to link him to the 1985 murders he was convicted of committing . hinton was convicted for two murders that occurred during robberies of fast-food restaurants near birmingham . prosecutors linked hinton to the killings through a .38 - caliber revolver found at his house . the u.s. supreme court last year sent hinton 's case back for a potential new trial , which prompted a re-examination of the evidence .\nlouis van gaal 's side beat manchester city 4-2 at old trafford on sunday . the red devils ' website claimed the city was turned red once more . but was this the case ? or was it just a bad game for manuel pellegrini 's side ? sportsmail gives their verdict on the manchester derby . click here for manchester united transfer news .\nla galaxy move off the foot of the western conference with a 2-0 win over seattle sounders . alan gordon scored the opening goal of the game in the first half to put the home side ahead . robbie keane and clint dempsey were both left out of the galaxy 's side through injury .\nthree former police officers are caught on camera smoking marijuana in a new video . the men , all of whom are from washington , say they think the drug should be legal . the video was released on april 20 , which is regarded by many smokers as the national day to get high .\ncouple , scott suggs , 28 , and brandy kangas , 36 , were arrested last december . police received anonymous tip about 17-month-old boy and two girls , 3 and 4 . found youngsters locked in room with urine and feces for 24 hours a day . also found to have been fed meals through a homemade ` gate ' couple pleaded guilty to three counts of felony child neglect on monday . however , they have been spared jail and given suspended sentences .\ndetective patrick cherry of the nypd 's joint terrorism task force was caught on camera screaming at an uber driver . the cop has been stripped of his badge and gun and will be placed on modified duty . he was returning from a visit with a colleague who had recently had a heart attack and was reportedly very stressed . the driver , named only as humayun , tried to repeatedly apologise to detective cherry . the nypd 's internal affairs bureau launched an investigation into the incident .\narmenians were rounded up by ottoman turks in 1915 and deported to the desert . john elder and armin t. wegner smuggled photos of the atrocities to germany and the us . they helped build a case against a turkish government which still denies the slaughter of up to 1.5 million armenians constituted genocide .\njohn terry was booed by the loftus road crowd as he was introduced . the chelsea captain was involved in a racially abused incident with anton ferdinand in october 2011 . terry played the full 90 minutes as chelsea beat qpr 1-0 in the west london derby .\ncalifornian start-up eaze lets users order medical grade marijuana . they can choose the type they like and have it delivered by a vetted driver . the service is available in states where the drug is legal for medical use . the company has just raised $ 10 million -lrb- # 6.7 million -rrb- to expand its service . it is rumoured to be backed by rapper snoop dogg .\n` internet first ' strategy is part of bbc 's bid to compete with web services . chief technology officer matthew postgate says corporation needs to remain ` relevant ' to a new generation of viewers . but the revelation could spark controversy over the future of the licence fee . viewers are currently able to use the bbc 's online services without paying for them .\nlove home swap released the list of 20 most ` instagrammed ' places in australia on wednesday . sydney harbour bridge has topped the list with 342,969 photos . it is followed by bondi beach which has been ranked second with 261,911 photos . the world heritage listed sydney opera house has been listed third of the 20 most photographed australian attractions on instagram . others include uluru , the twelve apostles along the great ocean road in victoria , and the big banana in coffs harbour . nearly 60 million photos are reportedly uploaded to instagram each day .\nrory mcilroy will tee off alongside phil mickelson and ryan moore on thursday . tiger woods will be among the later starters at augusta national . the four-time green jacket winner returns to action for the first time since february . jamie donaldson and jimmy walker will also play in the tournament .\nceltic striker john hartson has reflected on his battle with cancer . hartson was diagnosed with testicular cancer in 2009 . the former luton , arsenal , west ham and celtic striker admitted cancer forced him to face up to a gambling addiction and he changed his ways as he slowly recovered .\n`` furious 7 '' is the seventh installment of the `` fast and furious '' franchise . the film is being criticized for how it handles the real-life death of paul walker . the critics say the film is still great , despite the tragedy . the movie opens friday .\njeremy clarkson made comments at charity auction in the cotswolds . he said : ` in the olden days when i used to work for bbc , i could n't say s *** - but i am not , so i will say s ** ' hundreds of fans paid # 15 a ticket to watch clarkson oversee the auction .\ngender equality rules , laid down by the eu court of justice , came into effect from december 2012 . they meant that many car insurance firms had to change their pricing policies . insurers are dodging the rules by offering lower premiums to motorists who have jobs that are done mainly by women .\nkamrons t. taylor escaped from jail in kankakee , illinois , on wednesday . he beat a guard unconscious and stole his uniform , keys and suv . he was caught in south side , chicago , with loaded gun on friday night . he had been awaiting sentencing for the murder of nelson williams jr. . in february , he shouted at the victim 's family in court : ` i 'm going to get you mother ******* ' taylor , 23 , is considered armed and dangerous .\nsue townsend , author of the bestselling adrian mole books , left # 1,106,163 in her will . the novelist died aged 68 in april last year . she achieved huge success with the secret diary of adrian mole , aged 133⁄4 , when it was published in 1982 .\npoland international winger maciej rybus is being watched by hull , leicester and swansea city . rybus has one year left on his current deal and has a get-out clause of # 3.2 million . the 25-year-old is currently playing for russian side terek grozny .\nyumini karanam was diagnosed with a pineal tumour in her brain . the 26-year-old noticed she was struggling to understand things she had read , and felt lost in conversations . she was diagnosed as having a brain teratoma - a rare growth . surgeons operating on her discovered it was in fact an embryonic twin . it contained bone , hair and teeth - and even resembled a foetus .\nelena klimova , 26 , runs children 404 , an online support group for young people about coming out and dealing with discrimination . she regularly receives hate-filled rants from strangers telling her she 's ` disgusting ' and should kill herself . the activist fought back by publishing the messages on the russian equivalent of facebook . she has also posted photos of each sender to the social media site .\njackie mcnamara under pressure after dundee united 's recent slump . dundee lost 2-0 to celtic in the scottish league cup final on wednesday . the defeat was united 's first derby defeat in 11 years . united have failed to win any of their last 10 games in the league .\namol gupta , from manhattan , is suing zogsports kickball league . he claims that during a match two years ago he ran into a brick wall , breaking his nose and elbow , and also injuring his spine . kickball is a popular american schoolyard game akin to baseball where players kick the ball to bat instead of using bats .\nibf welterweight champion kell brook will fight frankie gavin on may 30 . the fight will be on a pay-per-view show at london 's o2 arena . brook beat jo jo dan for the ibf title in sheffield last month . the 29-year-old had been hoping to fight amir khan at wembley in june .\nformer baywatch star pamela anderson joined controversial arizona sheriff joe arpaio on wednesday to promote the benefits of a vegetarian diet . arpaio says cutting meat from the meals served to the more than 8,000 inmates has saved an estimated $ 200,000 per year . the jail has been serving vegetarian meals for 16 months now . anderson and peta have came under fire for their association with the polarizing arpaio , who has long faced criticism that he unfairly targets minorities for law enforcement .\nbritney e. montenegro was charged with disorderly conduct after getting involved in a fight in orlando , florida . the 20-year-old was arrested covered in blood , but police say it was not her own . the fight is believed to have started inside a bar before spilling out onto the streets .\nchildren 's book written by future monarch will be published in june . told story of 12-year-old girl , alice laselles , who was sent to boarding school . victoria 's story was written in her ` composition ' notebook as part of her studies . book will be illustrated with new pictures which feature her paper dolls .\nzinedine zidane has revealed real madrid are monitoring raheem sterling . the england winger is at loggerheads with liverpool over a new deal . zidne says real are looking for the world 's best youngsters . sterling has rejected an offer of # 100,000 a week to extend his stay at anfield .\ntom sturridge , 29 , stars in the west end play american buffalo and far from the madding crowd . he will also star in a film with ryan gosling later this year . the actor has been dating sienna miller since 2011 . born into a thespian family , he never planned to be an actor .\ncurt almond , 26 , from bristol , spent at least # 40 a week on new boxers . bought 365 pairs of calvin klein underwear - which he wore every day . but after wiping out most of his savings , he realised he needed to wean himself off addiction .\nmarcin wasniewski , 34 , escaped death by millimetres after crash in coventry . his car ploughed into the back of a lorry on the a444 in march . paramedics said the impact would 've been ` certainly fatal ' if it had been closer . but marcin walked away with just cuts and bruises after the crash . he believes he was saved by jesus christ watching over him that day .\nthe area around azle , texas , shook with 27 magnitude two or greater quakes in 84 days from november 2013 to january 2014 . scientists now believe these earthquakes were the result of high-pressure injection of drilling wastewater into the ground . this adds to other studies that linked injecting wastewater from energy wells to a tremendous jump in earthquakes in oklahoma and southern kansas .\nsnp leader nicola sturgeon left the door open to a second referendum . she insisted last year 's historic vote was a once-in-a-generation chance . but she today refused to rule out demanding a re-run within five years . opponents claim she has ` broken a promise the size of ben nevis ' on a referendum .\nbayern munich face bayer leverkusen in the last eight of the german cup on wednesday . pep guardiola will be without arjen robben , franck ribery , david alaba , javi martinez and tom starke . bastian schweinsteiger has also been ruled out of the bayarena clash .\naston villa 's jack grealish has been photographed taking nitrous oxide . the england youngster is the third top flight starlet caught on camera inhaling the drug . grealishes starred for villa in their fa cup semi-final win over liverpool on sunday at wembley .\nsarah weatherill , 31 , became addicted to red bull in 2009 when she was studying law . she drank 24 cans a day leaving her lethargic , depressed and suffering heart palpitations . she was told if she cut down too quickly she could suffer a seizure . but she claims she was cured of her addiction after a single session with hypnotherapy . she spent # 5,460 a year on the energy drink and was drinking 1.92 g of caffeine a day .\ncleront beat northampton 37-5 at stade marcel-michelin in champions cup . saints exit europe at the quarter-final stage after being routed four tries to one . tom wood tweeted : ` thanks to clermont for inviting us to their open training session today . we 've left our non-contact bibs in the changing rooms #humbled '\nfootage shows michael slager shooting walter scott eight times . slager has been fired and charged with murder in the death of 50-year-old scott . witness says he did n't see scott grab slager 's taser . a north charleston police report includes brief statements from eight officers .\nbarcelona host paris st germain in champions league quarter-final . zlatan ibrahimovic and marco verratti back from suspension . laurent blanc says his side must score to have any chance of progressing . psg lost 3-1 in first leg at the nou camp last week . luis suarez scored twice for the catalan giants .\nparents are buying diy brain stimulation kits for their children . the kits are being sold online for as little as $ 55 us . experts are concerned about the potential side effects of the equipment . the devices are used to improve speaking in those with speech problems . the equipment is still relatively new and experimental .\nher majesty is celebrating her 89th birthday today . she was filmed ` jumping out of a plane ' during the london 2012 olympics . her grandson prince william described her as an ` unbelievably good sport ' the queen is also a regular rider and is frequently spotted riding in windsor . she also enjoys watching the action at the cartier polo cup .\njeff the rabbit is set to challenge his father darius for the title of world 's biggest bunny . darius is currently the world 's largest rabbit at 4ft 4in long and weighs three and a half stone . but jeff is just 3ft 8in long - with six months of growing to do .\nmanchester city midfielder yaya toure is a top target for inter milan . roberto mancini wants to bring the ivory coast star to serie a . the former city boss is prepared to offer toure a five-year contract . city want to keep toure and will offer him a new deal in the summer .\nfossilised cone snail shells have been found in the northern dominican republic . scientists used uv light to reveal traces of pigment left in the shells . this allowed them to reconstruct the patterns and colours of the shells as they once were . the shells are up to 6.6 million years old and are thought to include 13 entirely new species .\nstudy by financial guide money advice service found 45 per cent of britons have lied about their earnings , spending and credit cars . 41 per cent said they were in the dark about their partner 's finances . for women clothes were the biggest reason for lying , with 66 per cent fibbing about the cost of their wardrobe .\nufc light-heavyweight jon jones wanted as suspect in hit-and-run . albuquerque pd spokesman said 27-year-old is facing a misdemeanour hit - and-run charge related to an accident involving a pregnant woman . the pregnant woman was sent to hospital with ` non life-threatening injuries ' amid reports police found marijuana in his car . if jones is found to have caused the accident , he would be liable for damages to the vehicles involved and medical costs of the 20-something woman .\nfritz the golden retriever from california appears to lack any eye-mouth co-ordination skills , as a new video shows . the pooch was filmed wearing bunny ears this easter trying - and miserably failing - to catch a hard-boiled egg between his teeth .\ngerry sutcliffe says he is convinced the fire was an accident . the former bradford south mp says he knew the club 's then chairman stafford heginbotham ` flew by the seat of his pants ' the fire at valley parade claimed 56 lives and injured 265 in 1985 . new book claims the fire at bradford was just one of at least nine fires at businesses owned by or associated with hegin botham .\nleila alavi , 26 , was found stabbed to death inside her car in sydney 's west . her sister mitra alavi has revealed her sister was on a desperate mission to find a women 's refuge to escape her estranged husband . the apprentice hairdresser had taken out an apprehended domestic violence order against 33-year-old mokthar hosseiniamraei . ms alavi reportedly agreed to meet him on the day she was found dead .\ncalifornia gov. jerry brown imposes mandatory water restrictions for the first time . he orders cities and towns in the drought-ravaged state to reduce usage by 25 % . `` we 're in a new era , '' brown says . the reduction in water use does not apply to the agriculture industry .\nnicky law scored twice in rangers ' 4-0 win against raith rovers on sunday . the striker 's representatives have fielded calls from ten english clubs . brighton , birmingham and reading are showing the strongest interest . rangers are pushing for promotion to the premiership via the play-offs .\nit 's national park week , and most of the country 's national parks are free . but some of the most popular sites , like yellowstone and yosemite , have fees . the national park service is hosting the event through april 26 . it 's free to explore the parks for two days only .\nengland captain leah williamson took penalty in 2-2 draw with norway . referee marija kurtes disallowed penalty for encroachment . instead of ordering williamson back to the spot , kurtes awarded a free-kick . match was replayed five days later and lasted 18 seconds . england held on to secure a place in this summer 's finals in israel .\na 16-year-old student opened fire at north thurston high school in lacey , washington , on monday morning . brady olson , a government and civics teacher at the school , tackled the boy to the ground and pinned him down until authorities arrived . the shooter , who has not been identified , only transferred to the school a month ago . no one was injured in the shooting .\nthe martinhal beach resort is renowned as one of the best in the algarve . it is the only five-star resort in the area to have direct access to a beach . adventurer , author , broadcaster and writer ben fogle is a regular at the resort .\nexam board officials unveiled a draft syllabus for 14 to 16-year-olds . they said it would ` make content more contemporary ' and rid classrooms of ` tired phrases ' the board said children were ` uninspired ' by conventional topics . french , german and spanish gcses would allow pupils to talk about their interests using updated content .\nmemphis depay has met with manchester united in a secret meeting . united are leading the race for the psv eindhoven winger . louis van gaal was tempted to sign depay last summer . psv coach phillip cocu admits van gaal is a ` very good coach ' depay could line up at old trafford next season .\non tuesday jessa duggar announced she 's pregnant with her first child with husband ben seewald , 19 . ` we are so excited . the due date is november first , our wedding anniversary , ' she said . the announcement comes after an image of the two was uploaded to facebook that suggested they could be expecting .\ned miliband will insist he offers ` clear , credible and concrete plan ' on immigration . but his own shadow home secretary refused to say labour would put a target on net immigration . yvette cooper would say only she wanted the number to be lower than the current 300,000 .\nmost of england and wales will enjoy sunshine over the next few days with temperatures hitting 24c later this week . the temperature in the south is forecast to reach 24c -lrb- 75f -rrb- today and 25c -lrb- 77f -rrb- tomorrow . the delightful weather is caused by warm air blowing up from the azores .\ndriver was filmed by passengers as he sang along to a radio broadcast . he was filmed while driving in boston , america . at first the driver lets the radio take command before singing along . the taxi driver then begins singing along himself in perfect tune . the passenger filming then says : ` wow , that was brilliant . thank you very much ' .\nforecasts show house prices across the uk will rise at a fraction of last year 's frenetic pace . property prices soared by 10 per cent in 2014 but will grow by just 1.5 per cent over the next 12 months . london will fare the worst , with prices actually dropping by 3.6 per cent .\nfloyd mayweather jnr was almost two hours late for his workout . manny pacquiao has promised to be on time . the filipino icon will be put through his paces at the iconic wild card gym in los angeles this evening . you can watch it here from 11pm . .\nrichie sambora , 55 , allegedly told former business partner nikki lund he would ` dig a hole in the desert and bury her ' the pair founded the nikki rich clothing line together but split last year . lund filed a report with police in calabasas , california , on wednesday night . sambora is believed to be on vacation in bora bora with his ex-wife heather locklear and daughter ava . a representative of mr. sam bora said there was no truth in nikki lund 's claims .\nchelsea face qpr at loftus road on sunday in the premier league . john terry was caught up in a race controversy with anton ferdinand in 2011 . terry was cleared in court of racially abusing ferdinand but was banned and fined by the fa . terry 's former england team-mate gary cahill says he will be fine .\nchanceyallen luna is convicted of first-degree murder for a 2013 drive-by shooting . christopher lane , an australian attending east central university , was shot in the back . luna was 16 at the time of the shooting . the vehicle 's driver , michael jones , pleaded guilty in march to second-degree death .\non-loan hull city midfielder tom ince scored two long-range goals for derby . oscar gobern and mark hudson scored for huddersfield in the first half . reece james and nahki wells scored in the second half . simon dawkins and jesse lingard scored for derby to make it 4-4 .\nindiana pacers beat washington wizards 99-95 in second overtime to keep playoff hopes alive . c.j. miles scored 25 points and george hill added 24 for the pacers . chris paul scored 22 points as los angeles clippers beat phoenix suns 112-101 . celtics edge toronto raptors 95-93 to secure seventh seed in eastern conference .\nforeign fighters are helping fight isis in iraq and syria . u.s. military personnel are training iraqi troops . outside agencies are also providing support to the kurdish and iraqi forces . some westerners are volunteering to join forces against isis . but foreign fighters are n't universally welcomed by those opposing isis .\ndashcam footage , shared by dailymotion.com user vidsking , shows a giant st. bernard running across a road somewhere in the czech republic with a child trailing behind . the boy is pulled along the ground on his belly with his legs stretched out behind . as the canine scampers along , his passenger holds tightly to a leash .\nmichelle , a 32-year-old mother , said the white van drove through a red light at about 2:30 p.m. on tuesday and almost hit her vehicle . she said she followed the man and taped him after he swerved in and out of traffic while speeding on a stretch of road that has two school crossings . when she pulled up next to the man , he threw the bottle at her car , she told jacksonville sheriff 's office . police have identified the driver as daniel robert frank , 28 , who was arrested earlier this month for an unrelated offence .\nchocolate eggs contain 550 kilojules , men need to run for 30 minutes to burn them off . large chocolate bunny adds 11060 kilojule to daily calorie intake . two hot cross buns contain around 1800 kilojuli . men need to salute the sun for around an hour and fifteen minutes with ladies putting in an hour .\nsydney woman hopes to find the man who offered her his umbrella to cross the street . ` love call ' notices are posted on george street at australia square in sydney 's cbd . the woman , known only as missiesmile21 , is ` actively looking for you '\narsenal face chelsea in the fa cup final on sunday . alexis sanchez scored twice in the 2-1 semi-final win over reading . the chilean forward has scored three goals in his last three matches . sanchez is shortlisted for the pfa player of the year award .\njames anderson was on 100th test appearance in antigua . he is two wickets away from sir ian botham 's record of 383 . but chris jordan believes anderson 's family celebration is ` just around the corner ' west indies fell to 155 for four in response to england 's first-innings total of 399 .\nrory mcilroy goes into this week 's masters as favourite . world no 1 aims to be iconic figure in world sport , says paul mcginley . mcilory is no jose mourinho , unlike chelsea 's ruthless manager . mcginleys will be commentating for sky sports at augusta national .\njohn o'sullivan was on loan at barnsley when blackburn drew 0-0 with liverpool . the 21-year-old is ineligible to play in wednesday 's fa cup fifth round replay . gary bowyer says it ` does n't make sense ' that he ca n't use o ' sullivan .\ndavid seaman has backed wojciech szczesny to return to arsenal 's first team . the polish goalkeeper has n't played a premier league game since january . arsenal face reading in saturday 's fa cup semi-final at wembley . seaman believes szczezny can make the number one jersey his own .\ncommuter reportedly bent down to pick up his bag from the platform . he was then hit on the head by a train at stockwell station in south london . the man , said to be in his 20s , was rushed to hospital with life-threatening injuries . commuters told of their shock after witnessing the accident this morning .\nbrandon afoa was operating a tug at seattle-tacoma international airport . brakes and steering failed , causing him to crash into a luggage lift . incident left him unable to use his legs or right arm . much of his intestinal tract also had to be removed by surgeons . he then sued port of seattle , which owns and operates the airport . in 2013 , a state supreme court ruled that airport had a ` duty ' to provide a safe working environment . on tuesday a king county jury awarded afoa $ 40 million because of what the incident has done to his life . the port ofseattle says it 's reviewing the decision .\ngerry anderson 's son jamie has criticised new cgi version of classic show . he said cgi characters did not have same charm as ` lovingly detailed ' puppets . thunderbirds will return to screens tonight 50 years after it launched . but the jerky puppets have been replaced by cgi images .\nsam the german shepherd was filmed at home in pennsylvania . he was seen struggling to keep his eyes open while lying on the couch . footage shows his head slowly dipping down before he suddenly wakes up . he keeps repeating the same action before finally giving up and pulling a big yawn .\npersonal injury claims company direct assist has collapsed after being fined # 80,000 . it told one complainant they were likely to be called for three years until they made a claim . information commissioner 's office and telephone preference service registered 801 concerns . every complaint came from someone who was registered with the tps .\ndaniel pena had spent hours planning the perfect way to ask his girlfriend alex to the prom . but he was left in tears after she misunderstood his proposal . alex missed the crucial first sign with her name on and thought it was a joke . luckily she said yes after she realized it was him and she was left to console him .\nstate broadcaster rtve axed plans for a reality show in pamplona . it would have seen celebrities pitted against each other to outrun fighting bulls . but the town 's mayor said he feared the show would turn it into big brother . 15 people have died since records began in 1924 and dozens are injured .\nfive-year-old ava ciach from geelong in victoria had her skull removed , smashed into pieces and put back together like a jigsaw puzzle . she suffered from sagittal synostosis - meaning the two plates at the front of her skull had fused together prematurely restricting the growth of her brain . in september last year ava underwent the operation , which involved making an incision from ear to ear and removing her whole skull .\njonde lachaux , 39 , is married to the teen 's mother , 38-year-old kellie phillips . they have six children together while the teen is from another relationship . lachau allegedly sexually assaulted the teenager and she had become pregnant , but she did not know . the teen was left alone at the home in las vegas and gave birth in her mom 's bed . she did not have any medical help and did not take the newborn to the hospital . she stopped breastfeeding after two months because she was so undernourished and switched to baby formula . it was during this period that the three-year old died - the cause of the death is under investigation .\nformer liverpool defender jamie carragher flew out to watch his son play for the under 12s in the mediterranean international cup . carragher posted a picture on his instagram account of the opening ceremony . the tournament features over 200 clubs from 36 countries in girona in northern spain .\njason matthews , 40 , parked up before the manchester marathon on april 19 . he was unable to remember where he had parked his black saab 93 . mr matthews spent hours searching for his car in the area surrounding old trafford . he eventually had to get a train back to his home in the midlands . but good samaritan adam coppin , 32 , gave up his day off to help . he found the car in an office car park in salford quays this morning .\nabdul hadi arwani was lured to wembley on the pretence of providing a quote for work . but when the 48-year-old arrived , the killer got into the rear seat of his volkswagen passat . scotland yard officers are investigating whether mr arwani was murdered on orders of regime .\nthe ban on smoking in new orleans bars and restaurants took effect tuesday . the city 's city council passed the ban in january . bar owners and casino owners are suing to stop the ban . the ban applies to bars , casinos and restaurants . fines start at $ 50 .\nfacebook ceo mark zuckerberg predicts virtual reality will be the future of travel . zuckerberg said that the future will see people sharing 3d environments . the social media giant purchased virtual reality headset maker , oculus , last year . oculus rift headset allows users to see the world from multiple viewpoints .\nthe study was released on thursday by the centers for disease control and prevention . it found that about 30 percent of women who 'd had a child became pregnant again within 18 months . white women had the shortest spacing -- about 2 years , 2 months on average . black and hispanic women typically waited 2 1/2 years or longer . the older a mom was , the longer the spacing between a birth and her next pregnancy .\nisis claims to have taken control of iraq 's largest oil refinery . the baiji facility is just 25 miles from the city of tikrit . iraqi security officials deny isis ' claim and say iraqi forces are in full control . the refinery refines much of the fuel used by iraqis domestically .\nbrinks armored truck door flew open on interstate 20 in albilene , texas . motorists pulled over and got out of their cars to pick up the cash . police have warned anyone caught with the money will be prosecuted . some drivers have ignored the threats and pocketed the cash .\nlindsay sandiford is on death row in bali for smuggling cocaine . the 58-year-old has told friends she ` wants to get it over with ' her friend andrew chan is expected to be put to death on tuesday evening . sandifords says she is ` utterly heartbroken ' at the news about chan .\nsecret operation was launched to protect prince charles from a feared terror attack by welsh nationalists at his investiture ceremony . prime minister harold wilson was convinced terrorists campaigning for welsh independence would target charles at caernarfon castle ceremony . government sent metropolitan police officers to wales in lead-up to ceremony to join fight against extremists .\npassenger jin pai , 35 , was standing on the rim of a toilet when it collapsed . the toilet in hefei xinqiao international airport in china smashed to the ground . he was left with deep cuts on his leg and buttocks after the accident . authorities said they believed the incident was an accident .\naustralian researchers have tested their drone running companion . called joggobot , it is designed to float in front of jogger when they run . technology could allow it to track the speed and direction of the runner . and it could be used for other sports like cycling and rowing . researchers think their study could help design flying robots that support joggers . and they claim robotic companions could be use for a variety of other physical activities such as cycling , cross-country skiing and roowing .\njean wabafiyebazu , 17 , was shot dead in miami on march 30 . his brother marc , 15 , is awaiting a grand jury decision on whether to charge him with murder . the boys were both educated at top private schools in ottawa , canada . their mother is roxanne dube , canada 's consul general in miami . the brothers would drive around canada with loaded guns in the back seat , the younger boy told investigators .\nsandbanks peninsula is the most expensive place to buy a home in the uk . two adjoining ` his and hers ' mansions have gone on the market for # 13million . the beachfront homes are virtually identical in every way - with indoor swimming pool , four storeys and stunning sea views .\nprime minister says snp will prop up labour government in hope of bringing independence forward . warns that scottish nationalists ` do n't want the country to succeed ' in a minority government . but lib dem cabinet minister danny alexander accuses pm of ` playing with fire ' warnings come as polls suggest tories are three points ahead of labour in general election .\nfull-back mils muliaina arrested on suspicion of sexual assault . former all blacks star was led away by police following connacht 's 14-7 defeat by gloucester on friday night . muliain earned 100 caps for new zealand and retired after the 2011 world cup .\nreal madrid confirmed the signing of brazil international danilo . the deal is worth # 23million and will see him join the la liga giants . porto have sold 29 players for # 440million in the last 11 years . the majority of these deals have involved south americans . james rodriguez , pepe , joao moutinho and hulk are among those to have come off the production line .\nchiropractor gertrude pitkanen sold babies for as little as $ 100 in butte , montana . she would take them from their mothers ' arms and hand them to adoptive parents . the transactions formed the basis of a lucrative , illicit market that started in 1920s . pitkanan stopped selling babies in the 1950s but many still look for answers . heather livergood , 69 , was given up for adoption in 1946 but has been reunited with her brothers . bonnie gower , now 69 , has been using dna to trace her biological family .\ncampaign started by jaime singleton after she saw the baby elephant tied to a pole outside a restaurant at marina phuket resort . nadia is a ` mascot ' for the resort and is forced to do tricks for guests . ms singleton said nadia also used by another company in thailand in weddings . the change.org petition , titled ` please release nadia the baby elephant to a sanctuary immediately and let her live the life she deserves ! ' has received 50,627 signatures .\nrussian president ` to use nuclear weapons to force nato out of baltic states ' putin also planning imminent ` destabilising actions ' in pro-western states . these disturbances thought to involve cyber attacks or ethnic tensions . russia also considering any attempt to return crimea to ukraine as war . moscow described nato 's weapons supply to ukraine as ` further encroachment '\ntottenham hotspur host aston villa in the premier league on saturday . kyle walker and hugo lloris are absent for tottenham hotspur . jan vertonghen is a doubt for the visitors with a virus . aston villa are again without alan hutton , ashley westwood and scott sinclair .\nmercedes team-mate nico rosberg accused lewis hamilton of being ` selfish ' after their one-two finish in china on sunday . hamilton has finished ahead of rosberg in all three races this season . mercedes boss toto wolff said the team had to tackle the tension .\nrita , 24 , has collaborated with adidas originals . her range is inspired by her love of travel and asian culture . she also recently unveiled a beauty range for rimmel . femail caught up with the star to find out her plans for the future .\naston villa beat liverpool 2-1 in the fa cup final at wembley on sunday . randy lerner missed the game because of a family bereavement . but the american owner is expected to make the final against arsenal . villa chief executive tom fox said lerner was ` ecstatic ' with the win .\npub landlord michael thorpe has won eight-year legal battle to clear his name . he was convicted of illegally showing premier league games on foreign tv . mr thorpe says he has lost his pub as a result of the lengthy legal battle . judge has upheld his appeal and overturned conviction following european court ruling .\ndave tyler , 72 , from high wycombe , buckinghamshire , built his own observatory in 1977 . he now uses powerful telescopes to observe and photograph the solar system . the retired engineer captured these stunning pictures showing the ferocious activity on the sun 's surface during its solar maximum . the sun is at its most active during its 11 year cycle .\nspain 's queen letizia welcomed juan goytisolo to the casa real in madrid . joined by handsome husband king felipe , 47 , for a lunch in his honour . letizia was making her second appearance at an awards show in just two days . on monday night , she presented prizes at the woman awards .\nchaos erupted at the world 's biggest easter egg hunt in sacramento on sunday . children as young as two were pushed to the ground as adults invaded . the event was raising money for victims of human trafficking . it did not break the world record because they missed the deadline to apply .\nwest bromwich albion host liverpool on saturday in the premier league . the baggies are eight points above the relegation zone and face a tough run-in . they face liverpool , manchester united , chelsea and arsenal in their final five games . but manager tony pulis insists his side will embrace the challenge .\ngeorge osborne warns party has ` form ' on raising taxes . says ed miliband and ed balls have ` done it all before ' and will do it again . says voters will pay ` heavy price ' for labour government which will be ` looking in your payslip ' for tax .\nwaheed ahmed is understood to be returning to the uk from dalaman . the 21-year-old was detained with eight family members earlier this month . they were arrested in a remote turkish border town near the syrian border . he is the son of rochdale labour councillor shakil ahmed .\nchris early , who owns a production company in knoxville , tennessee , bought a quadcopter to make commercials . he decided he could use it for personal surveillance purposes too . the tech-enthusiast released footage of one of his remote chaperoning sessions to abc news , showing how he is now able monitor his child 's whereabouts from the skies .\nwarning : graphic content . russian man was filming a documentary in snow-covered mountains . he was struck by a falling icicle which caused a blood clot and swelling . the clot caused a huge swelling and bruising , leaving him unable to walk . he decided to perform surgery on himself while lying in the snow . he used items in his first aid kit which included a gas lamp and a scalpel . he then sewed up the wound , creating large , rustic-looking stitches .\nuniversal announces the second `` fifty shades of grey '' film will be released in 2017 . the third film in the series will debut feb. 9 , 2018 . the husband of el james will write the script . sam taylor-johnson is n't returning to direct the sequel .\nus alcohol regulators have approved plans for craft beer made from human waste . ten barrels of the beer will be made from waste gathered by sewage treatment firm . clean water services will treat the effluent before handing it over to microbrewers . scheme is proving unpopular with oregon residents who say it is ` unclean '\nchinese man , known only as xu , bought a wife for his son , who has learning difficulties . six months later , he discovered his son had not slept with his wife . desperate to have a ` grandson ' , xu tried to impregnate the young bride . but he realised she was likely to be infertile and sold her to another family . xu is currently under arrest for human trafficking by the police of lianyungang city in eastern china .\nmisao okawa died of heart failure at her nursing home in osaka , japan . born on march 5 , 1898 , she was the world 's oldest person in 2013 . the great-grandmother had only celebrated her 117th birthday on march5 . she said she thought her life had been ` rather short ' at her birthday party .\ncaitlin kellie-jones was diagnosed with hypoxic ischemic encephalopathy . doctors gave her hypothermia to keep her brain cool and prevent brain damage . she was placed on a specialist cooling machine within 40 minutes of birth . caitlin , now 10 months old , is recovering well and is able to feed and play . her parents are raising money to help other babies with the condition .\ninsta-fame is the latest criterion for models wanting to book jobs , according to leading australian modelling agencies . vivien 's models has introduced an ` influencer ' page noting their models ' social media stats . chic management also started a ` blogger ' management division two years ago .\nsimaba the cat spent 27 days trapped under a bath tub in germany . he was rescued by firefighters after a neighbour heard scratching . owners lost their pet in early march and had looked everywhere . but nearly four weeks later , a neighbour raised the alarm . it is thought he had crawled under the floor boards as bathroom was being renovated .\nsydney rape gang leader bilal skaf has been attacked by fellow inmates . he was attacked by three other inmates in the yard of goulburn correctional centre . a ' 33-year-old inmate ' sustained minor head injuries and was treated in hospital before returning the same day . skaf was sentenced to 55 years ' jail for his part in a series of gang rapes in sydney 's southwest . he will be eligible for parole , if he behaves himself in prison and admits his crime , in 2033 .\nturkish government denies that a genocide took place . armenians say 1.5 million ethnic armenians were systematically killed in the final years of the ottoman empire . growing number of scholars and world leaders believe that what happened should be called genocide . many armenians living in turkey still feel treated as second-class citizens .\nfans in the east stand at the etihad have been informed that their # 885 season cards will rocket to # 1,750 . but the club say that is because the seats have been upgraded and now come with a different package . some of the fans affected claim city are abusing their loyalty .\nuniversity of nebraska at omaha is getting a new $ 81.6 million stadium for its hockey , basketball and volleyball teams . voodoo tacos has teamed up with the university to shoot tacos into the stands at sporting events . #tacocannon is the no. 1 trending topic on twitter in omaha .\nrichard henyekane , a former south africa striker , was killed in a car crash early tuesday . henykane 's club , free state stars , said the 31-year-old player was the only person to die in the crash . henyekane made nine appearances for south africa in 2009 .\nmeasurements made by the european space probe philae , which landed on comet 67p in november , show the comet 's core is n't magnetised . some astrophysicists have suggested that magnetism might have been responsible for aligning and then binding together rocks into larger boulders during the early stages of planet formation . but the new study says the data do n't support this theory .\ninside abbey road is a new web app that gives a virtual tour of the studios . it features more than 150 360-degree images of the famous recording rooms . the studios have never before been open to the public . they have hosted every major name in music in the last 80 years .\nstan freberg died of natural causes at a santa monica hospital , his son and daughter say . he was known for his ad campaigns , musical parodies and radio shows . freberg also was known as a comic voice in cartoons , including in looney tunes cartoons .\nmanjinder virk will play pathologist dr kam karimore in the itv police drama . in 2011 , executive producer brian true-may described the show as the ` last bastion of englishness ' because it had no black or asian characters . he said the show ` would n't work ' if there was racial diversity among its cast .\nsiobhan-marie o'connor won gold in the 200 metres individual medley . her time of two minutes 09:51 seconds was the fastest recorded in the world this year . hannah miley took the silver medal with a time of 2:11:65 . aimee willmott claimed bronze in 2:13:30 .\nomar hussain , 27 , from high wycombe , left his parents house to join isis in syria . the former supermarket security guard has been writing advice on social media . he advises fighters not to be disheartened by other fighters who get married via social media .\nrobert penny , 83 , of malvern east , briefly appeared at melbourne magistrates court on monday . he is charged with murdering claire acocks and his wife margaret penny at old london coiffure hairdressers in portland on may 3 , 1991 . the women were found badly beaten , repeatedly stabbed , with their throats cut and were wrapped in black hair wraps . penny was remanded in custody to appear in the melbourne magistrate 's court for a committal mention on july 6 .\niranian militias are training , advising and supporting iraqi shia militias in their fight against isis . iranian officials say they would like better cooperation with the u.s. , but point out that the level of trust simply is n't there . the u.s. , which is leading the air campaign against isis in iraq , has denied any direct coordination with iran .\nnewington college in stanmore in sydney 's inner west is the latest prestigious private school to be hit by historic child sex abuse allegations . headmaster david mulford notified parents and students of the allegations in an email sent out on monday ahead of a pending court case . he said the case referred to alleged incidents from more than 35 years ago and asked anyone with grievances to come forward . it comes after the principal of st ignatius ' college riverview told its old boys last month that a former student had made allegations of ` child sexual abuse over 30 years ago '\naguero granucci davis , 28 , gave birth to her son andrew aaron lawrence on tuesday . her husband aaron davis , 31 , was fatally struck by a suspected drunk driver on saturday morning in st petersburg , florida . jason lanard mitchell , 25 , and his passenger , rayvorris altuan oliver , 27 , fled the scene following the crash . mitchell faces several charges including dui manslaughter , vehicular homicide , aggravated fleeing and eluding .\nthe 208ft -lrb- 63 metre -rrb- tall falcon 9 rocket was scheduled for 4:33 pm edt/2033gmt from cape canaveral air force station in florida . but poor weather conditions meant the countdown was halted at the 2 1/2 - minute mark . elon musk , founder of spacex , tweeted : ` launch postponed due to lightning from an approaching anvil cloud ' the company will now attempt to launch the uncrewed falcon 9 at 4:10 pm et tomorrow . but more bad weather is forecast . if the weather holds out , spacex is hoping to guide the bottom stage of the rocket upright onto a platform in the atlantic ocean .\ncyclists can be seen dodging level crossing barriers to avoid train . police warn them to stop - but three cyclists still sneak across . the shocking incident happened during the paris-roubaix race . sir bradley wiggins was competing in his last race for team sky .\nbrett robinson , 33 , will stand trial next week on 12 charges related to sexual misconduct and official misconduct . she allegedly had sex with a male inmate six times over four months while working as a services technician at washington county jail . robinson was hoping to present a psychologists report as evidence of mental disease or defect . the report said she was suffering from mental illness at the time of the alleged encounters and that it made her ` vulnerable , passive and gullible ' judge ruled the evidence was insufficient and that robinson would have to go to trial on april 28 without it .\nofficers posted pictures of lego models on facebook page to raise awareness . edinburgh division has seen break-ins soar by nearly 40 per cent . victims branded the move as ` insensitive ' and ' a joke ' police scotland defended the campaign , pointing out photos have been viewed almost 350,000 times .\na trapdoor is hidden inside a wooden wardrobe in a property in tijuana . it leads to a secret underground passageway stretching 500 feet towards the u.s. border . mexican soldiers uncovered the suspected drugs tunnel and arrested nine people . the 66ft deep route was still under construction and was being built next to the tijuana checkpoint .\nbayern munich host eintracht frankfurt on saturday in the bundesliga . pep guardiola 's side are without arjen robben and franck ribery . defender mehdi benatia is also out for up to four weeks with a hamstring injury . bayern travel to porto in the champions league quarter-final on wednesday .\nelena udrea was investigated over claims she accepted # 1.3 million in bribes . the 41-year-old former tourism minister is also accused of abusing her position in government . she was indicted along with seven other people , including the country 's former economy minister ion ariton . udrea has strongly denied any wrongdoing and accuses anti-corruption officials of being biased .\nboca juniors beat palestino 2-0 to finish group five with 100 per cent record . boca will now face arch rivals river plate in the copa libertadores last 16 . river plate kept alive their cup dream with a 3-0 victory over bolivian side san jose . internacional thumped universidad de chile 4-0 .\nmuch of kate 's pregnancy wardrobe came from the high street . favourites include hobbs , asos and séraphine . duchess is a huge fan of hobbs and l.k bennett . she also wore jojo maman bébé and alice temperley .\na new website has exposed nine everyday items that cost more for women . the gender price gap website was launched by getup last week . it highlights nine products that have identical female versions which cost more . this is despite the products being identical in almost every way except whether they are targeted towards women or men . bonds has been identified as one of the main culprits , advertising a button-up shirt that comes in both ` summer blue ' and ` blue denim ' colour options , on their australian website for $ 59.95 . other examples highlighted on the website show price increases by as little as 11c or even 1c for items marketed towards females .\nthe rare formation appears to be formed of two double rainbows . it appeared over a commuter rail station on long island early tuesday . amanda curtis , the founder of a fashion company , snapped the phenomenon while she was waiting for the long island railroad at the glen cove station .\nnewzoids is a new comedy spoof show to be broadcast on itv later this month . will feature duke and duchess of cambridge and prince harry in puppet form . other royals to feature include prince charles and the duchess of cornwall . show has been likened to 1980s behemoth spitting image .\nstuart mccall took over at ibrox after kenny mcdowall quit . mccall admits he was wowed by murray park 's # 12million training facility . former motherwell boss says he is loving life at i brox . rangers lost 3-0 to queen of the south on thursday .\na pregnant jehovah 's witness woman and her baby have died after she refused a blood transfusion . jenny-lee , 28 , was diagnosed with leukaemia seven months into her pregnancy . doctors at sydney 's prince of wales hospital in randwick told her she could give birth via a caesarean section and undergo chemotherapy . she refused both options as they required her to receive a blood . her mother heather said her daughter believed the cancer treatment would harm her unborn child , named aroura .\ninter and milan played out a goalless first half at the san siro . the game was overshadowed by the derby fever , but there was little quality . both sides are struggling in mid-table and under pressure from their managers . inter 's hernanes and milan 's alex had chances to score .\ntiger woods and his children sam , 8 , and charlie , 6 , attended the par 3 contest at the augusta national golf club in augusta , georgia , on thursday . vonn was the only caddie who opted out of the bland , white jumpsuits worn by other caddies . other golfers brought their wives , girlfriends or kids as caddied .\nandy carroll suffered torn ligaments in his left knee against southampton . the west ham striker wo n't be available for the rest of the season . carroll has been working hard at the club 's training ground . the 26-year-old posted a picture on instagram of him posing on a throne .\nkarla hornby thought she was going to die when she gave birth to freddie . the baby was born by emergency caesarean section weighing just 2lbs . ms hornby was on holiday in benidorm with her partner jordan jackson . the couple have been told they will have to stay in spain for at least three months .\narsenal striker olivier giroud won the barclays premier league player of the month award for march . giroud netted five times in arsenal 's four consecutive league wins last month . he is the 16th french player of month winner in the english top flight . thierry henry , eric cantona and nicolas anelka have all won the award .\ngizzi erskine posed with her pet cat kimchi for puss puss magazine . the cat fancier admitted that kimchi has a discerning palate . the 35-year-old said taramasalata would be his ` death row dish '\nselect amazon prime customers will be given the option to have their goods delivered to the boot , or trunk , of their car without needing to be near the vehicle . the delivery driver is then given temporary keyless access to the car to drop off the items at any time of the day . the pilot scheme is launching in munich next month and amazon has teamed up with audi and dhl to run the initiative .\nhbo 's `` kurt cobain : montage of heck '' is about the late nirvana singer-guitarist . frances bean cobain is an executive producer of the new documentary . she talks about her father and life after his death . she also discusses her complex relationship with her mother , courtney love .\n17-month-old rowyn johnson died after her mother 's friend ran over her with her car in september last year . cassie miller was picking up brynn 's son from preschool . the two women have now started a charity called raise for rowyn to help other families who have experienced similar tragedies .\nletter was sent to christopher moody , brother of officer james moody . mr moody died after the titanic hit an iceberg on its maiden voyage in 1912 . company bosses demand # 20 to have his body returned to england . they say it will be the family 's job to pay for his burial and transport . mr moodies ' body had not been recovered by the time the letter was written . experts say the letter could make # 25,000 when it goes under the hammer .\nformer army recruitment sergeant edwin mee denies sexual assault . allegedly abused his position of power to abuse or rape 11 alleged victims . alleged offences took place at an army careers centre in croydon , south london . mee , 46 , told jurors that the army was his life and the offences ` never happened ' he branded one alleged victim a ` time waster ' and a liar . mees admitted he would often swear in the recruitment office .\nconservative party chairman at centre of claims he changed wikipedia pages . mr shapps has been accused of deleting embarrassing references to himself . he has denied the claims calling them ` an extreme dirty tricks campaign ' david cameron said mr shapp is doing a ` great job ' on the campaign trail .\nkristen bieniewicz of westland is suing bassel saad , along with another man who controlled the team and the soccer league . the figure represents $ 1 million for each of the 51 additional years that john bieniewski , 44 , could have lived . bienewski died after saad punched him in the head just moments before saad would have been ejected from a weekend game in livonia . saad was recently sentenced to at least eight years in prison after pleading guilty to involuntary manslaughter .\narchie brown jr , 40 , struck and killed two-year-old damani terry who ran in front of his van in milwaukee , wisconsin on sunday evening . while at the scene an unidentified gunman shot brown and damani 's 15-year old brother , rasheed chiles . on wednesday , police obtained a warrant for ricky ricardo chiles iii , 27 , in connection to sunday 's shootings . chiles shot himself with his gun on thursday morning as police closed in on him at a motel in lyon , illinois . he was with his girlfriend at the time of his suicide , who has not been identified .\nfishing vessel abandoned by conservationists off west africa . crew of alleged poaching vessel rescued after 110-day chase . environmentalist group sea shepherd had been tailing vessel since last year . interpol says it has `` conflicting information '' about the current operator of the vessel .\naaron hernandez was sentenced to life in prison on wednesday for the murder of odin lloyd in 2013 . on thursday , the jury and alternate jurors sat down with cnn 's anderson cooper to talk about their decision . most of the jurors said they knew who hernandez was before the trial started , but maintained that his notoriety did n't have an impact on their decision to convict . the group deliberated for 35 hours over the course of a week , and decided that certain aspects of victim lloyd 's killing warranted a life in jail sentence .\njustin verlander , pitcher for the detroit tigers , met a little boy in a starbucks . the boy was wearing a dark blue shirt with verlander 's name and jersey number , 35 , on the back . verlander uploaded the selfie to his more than 150,000 instagram followers .\natletico madrid defender miranda has been linked with a move to manchester united . louis van gaal is said to be keen on signing the brazilian centre back . the 30-year-old says he is ` proud ' of being linked with the old trafford club . but miranda says he wants to stay at the vicente calderon for another year .\nformer motherwell boss stuart mccall has made an impact at ibrox . rangers winger david templeton says mccall 's training methods are superior to the previous management 's . mccoist was placed on garden leave last december with assistant mcdowall becoming caretaker manager .\non april 22 , 1915 , german forces used chlorine gas for the first time in world war i . the gas was carried by favourable winds over flanders fields from german positions . it sowed terror and agony for the french troops and killed 1,200 . on tuesday , the organisation for the prohibition of chemical weapons will hold a commemorative meeting close to the fields .\nben sunderman has down syndrome and was one of 12 students with special needs who received an acceptance letter for an internship with embassy suites . he was one on a list of things to do before turning 21 that also included building his muscles and finding a girlfriend . his mom filmed the moment he received the letter and he shouts ' i get it . i get the job ! ' as he rushes over to his dad .\ndog was filmed in action as he took a rescue rope out to his owner at the clarence j. brown dam and reservoir in springfield , ohio , on saturday afternoon . footage shows the unidentified man then being hauled to shore by firefighters after spending almost two hours in waters hovering around zero degrees celsius . he apparently got stuck waist-deep in mud while recovering some duck hunting gear .\nthe floral lederhosen and dresses worn by the von trapp children in the 1965 classic the sound of music are going up for auction at the end of the month . they are expected to fetch $ 800,000 when they are auctioned off at nate d. sanders on april 30 . the costumes are made of actual curtain fabric and are described as having ` minor spotting '\nthe latest domestic fashion is for private home cinemas . many of the super-rich are having them built . celebrities with a home cinema include benedict cumberbatch . and this week we learnt that the beckhams want one , too . a planning application submitted for their 1860s home in london 's holland park shows drawings for a lower-groundfloor ` cinema room '\nmanny pacquiao 's shorts will carry sponsorship logos worth # 1.5 m . the filipino will take on floyd mayweather on may 2 in the richest fight of all time . the fight is said to be worth $ 300m and then some to those involved .\npolice found the remains of jonathan camilien , 26 , in a duffel bag and his head in the recycling bin at his apartment block on saturday morning . carlos colina , 32 , is being held on $ 1 million bail after pleading not guilty to aggravated assault and battery and improper disposal of a human body . he previously worked out at the cambridge athletic club but was kicked out following a fight over gym equipment on november 24 . a witness said colina had intimidated fellow gym users and even fought them before being thrown out . the victim suffered broken ribs in the attack .\nbrad pitt 's charity set up to build new houses for people made homeless when hurricane katrina ravaged new orleans a decade ago . the star personally backed the building of 104 homes in the lower ninth quarter of the city . but in a lawsuit filed in new orleans ' district court last week , pitt 's make it right foundation is suing timber treatment technologies for $ 500,000 . it says it was forced to replace decking and other wood on the new homes after using the company ' 's timbersil product .\nclair schuler said robert durst was fascinated with wigs and make-up . the 71-year-old real estate tycoon used to live on galveston island , on the texas gulf coast and went by the name of dorothy in the early 2000s . schuler , who goes by the stage name cici ryder , said he was not fooled by durst 's apparent deafness and just thought he was an older divorcee coming to grips with his sexuality . durst is awaiting extradition to face murder charges in california .\nprofessional wrestler robert abercrombie uploaded the video to facebook . he was filmed pulling out his son james 's tooth with a chevy muscle car . the eight-year-old had been asking his father to perform the diy removal . the video has gone viral , attracting more than 3million views on youtube .\ncampbell is selling his # 6.75 million penthouse in chelsea . he has also listed a # 20million townhouse in london . the former england footballer has been an outspoken critic of the mansion tax . he threatened to leave the country if labour wins the election . campbell bought the chelsea flat in 2011 for # 4.25 million .\niona costello , 51 , and daughter emily , 14 , went missing on march 30 . they were found at 3am on sunday in manhattan 's upper west side . police questioned mother and daughter and now consider case closed . iona is in the midst of a nasty battle over the will of her husband , george costello sr. . he died of a heart attack as he was working on a southampton barge .\nroger the alpha male at the alice springs kangaroo sanctuary was gifted a soft toy bunny by a fan . the kangaroo quickly became attached to the bunny , but soon tired of it . sanctuary manager chris barnes said he attempted to take the bunny off roger but was met with hostility . mr barnes rescued roger in 2006 after finding his mother dead on a highway .\nlebron james posted an image on instagram showing him in the dentist 's chair . the cleveland cavaliers star was not happy with the buzzing of drills behind him . the 11-time all star led his team to victory over the chicago bulls on sunday . lebron delivered his first triple-double as cavs won a 50th game of the campaign .\njeannie flynn , 53 , was walking to her gp when pavement gave way . she was left lying in the basement of a fulham cafe as bricks fell on her . she heard passers-by screaming ` get her out because it 's all going to collapse ' a worker from the cafe then came to the rescue opening up their basement . ms flynn was taken to a hospital and suffered whiplash and bruising .\nmartin allen 's barnet side will return to the football league after two years . they beat gateshead 2-0 in the conference title final . barnet will celebrate their promotion with a trip to benidorm . allen is currently in his fourth spell in charge of the club .\nkenneth stancil iii , 20 , was removed from a courtroom in goldsboro , north carolina on thursday after he swore at the judge . he was extradited from florida where he was arrested on tuesday for allegedly shooting dead his former boss , 44-year-old ron lane , at wayne community college on monday . he told the judge he knew he would get life in prison or the death penalty for the murder . he has previously claimed that lane tried to molest his 16-year old brother . he said he shot lane because he hated gay people and that he was looking out for white people . lane 's cousin said that lane never made sexual advances toward anyone or worked with anyone .\nvictorino chua denies murdering three patients at stepping hill hospital . he also denies deliberately poisoning 18 others between 2011 and 2012 . chua , 49 , has given evidence for the first time at the stockport trial . he told the jury he did not contaminate medicine with insulin .\nchris evans and jeremy renner apologized for jokes made during a junket . renner called black widow a `` slut '' evans called her a `` complete whore '' the movie is due out in one week . it 's the second controversy of the `` avengers '' press tour .\nreigning world champion lewis hamilton claims his third straight pole position for the chinese grand prix . the 30-year-old briton will start ahead of mercedes team-mate nico rosberg . ferrari 's sebastian vettel will start third , nine tenths slower than hamilton . mclaren 's jenson button and fernando alonso will start on the penultimate row .\nchelsea striker diego costa has been ruled out for four weeks with a hamstring injury . costa injured his hamstring in chelsea 's 2-1 win over stoke city on saturday . jose mourinho hopes costa will be fit for the final four games of the season . chelsea face qpr at loftus road on sunday .\nkoby hodder was playing british bulldog with friends in the school playground . in the middle of the game he suffered a cardiac arrest and collapsed . his heart stopped beating and he lost consciousness for 12 minutes . he was saved by teachers who gave him cpr until paramedics arrived . he has now been fitted with a device to shock his heart back into rhythm .\nthe todd family - a 36-year-old father and his seven children aged six to 15 - were tragically killed as they slept in their princess anne home . father rodney todd was raising the children after divorcing their mother in november . the six-hour funeral service brought 1,200 people to the ella fitzgerald auditorium at the university of maryland eastern shore on saturday to pay their respect to the family . todd and his children were poisoned in their sleep only days after the power company discovered a stolen meter and cut off electricity to their rental home .\njudge tells jurors to avoid boston marathon , other events related to the race . dzhokhar tsarnaev was convicted of 30 counts in the 2013 bombings . the sentencing phase begins april 21 , a day after the marathon . the maximum penalty for several of the charges is death .\nron aydelott , head coach of riverdale high school warriors in murfreesboro , tennessee , was attacked by a 17-year-old student tuesday . the longtime coach suffered serious facial injuries and will require surgery . witnesses said aydalott in no way provoked the attack but that the 17 - year-old alleged attacker became violent after he felt ` disrespected ' the boy was reportedly in the coach 's office in order to turn in paperwork concerning his trying out for the team .\nthe antigua test will be james anderson 's 100th for england . he needs only four wickets to break sir ian botham 's record of 383 . anderson was a natural bowler for lancashire before being allowed to be himself by england coach peter moores . the former england captain says anderson ` would n't say boo to a goose '\nformer manchester united and bayern munich goalkeepers peter schmeichel and oliver kahn star in tipico 's latest advert . the duo renew their rivalry after playing against each other in the 1999 champions league final . kahn reveals he did n't like the look of himself aged by an additional 50 years .\na dress by lord & taylor sold out almost immediately and created an online buzz for the range . in order to ensure maximum exposure for their new design lab collection , the company partnered with 50 of the most influential fashion bloggers and got each to post a photo of them wearing the same dress . the company has admitted that it paid the bloggers to wear the paisley-print , handkerchief-hem summer dress . many of the posts generated more than 1,000 likes each , with several surpassing 5,000 likes .\npierre fulton said he does not know why walter scott ran . he was in the passenger seat when officer michael slager pulled them over . fulton and another officer stood by the mercedes watching in shock . slager chased scott into a park and shot him dead . fulton 's attorney has released a statement about the incident . comes as audio surfaced of officer slager laughing and admitting to experiencing a rush of adrenaline in the minutes following the deadly shooting in south carolina .\nemirates airlines have offered to sponsor the fa cup for three years . the deal would see the fa pay out # 30m a year to the winners . the amount would be on a par with wimbledon 's singles champions . arsenal could pocket # 1.8 m if they win the final against aston villa . sky staff believe the # 4.2 bn spend on premier league rights is responsible for the latest huge cost-cutting exercise .\nislamic state militants have released photographs which appear to show the beheading of an ` alleged blasphemer ' the man is seen being led out of a van handcuffed and blindfolded before he is executed by a masked man , wielding a meat cleaver . his beheading is believed to have taken place in hama in syria .\nthe rosehall estate near inverness was built in 1820 but was bought by the duke of westminster in the 1920s . the estate boasts a 22-room main house along with 700 acres of land and five separate out buildings . it was used as a secret love nest of the duke and coco chanel , who had an affair between 1923 and 1929 . former prime minister winston churchill also stayed there while recuperating from illness . the house has not been lived in for more than 60 years and is now in a dilapidated state .\narsenal lost 3-1 to monaco in champions league second round tie . arsene wenger refused to shake leonardo jardim 's hand after defeat . jardam claims juventus are a better team than arsenal . ligue 1 side face serie a champions in quarter-final on tuesday .\nrandy pierce lost his sight at 22 years old from a neurological disease that also left him in a wheelchair . he was soon training himself to walk again and has since climbed all 48 mountains in new hampshire , as well as run 30 road races with his guide dog quinn . pierce is now gearing up to run the boston marathon in honor of quinn after the dog passed away from bone cancer last year . he is one of only 10 percent of competitors to successfully ring a bell while swinging on a rope 25 feet in the air .\nbikram choudhury has been accused of sexual assault by six women . he has denied the claims in an interview with cnn . choud hury pioneered bikram yoga , which involves working out in 105f . he said his success means he would never need to assault anyone .\nreferee frankie santore jr. went over to pick up the samsung galaxy . marvin `` papi gallo '' jones and ramon luis nicolas were in the middle of a bout when the phone slipped out from jones ' black and red shorts at the ring in arcadia , florida . jones later told tmz sports that he was listening to music before the fight and put his phone in his shorts .\nmandy dunford , 54 , was followed around her farm by kenneth ward , 67 . the military historian even performed sex acts in front of her . ward was jailed for five years in 2011 after admitting 11 counts of exposure . but he has now been released and allowed to return to his cottage in north yorkshire . miss dunford feels forced to leave her home after restraining order was overturned .\ngerard pique will play his 300th game for barcelona against paris saint-germain . the spain defender joined barca in 2008 from manchester united . pique is poised to star for barcelona in their champions league quarter-final match with psg on wednesday night .\nseven women were duped by a woman named kayla who pretended to be a man . they were all believed to be in an online relationship with the same man . the women had a chance to confront kayla on an episode of dr phil that aired on friday . kayla apologized to the women , saying she was trying to figure out who she was because it 's ` difficult ' to be both gay and mormon .\nfloyd mayweather and manny pacquiao go head-to-head in las vegas on saturday , may 2 . the two boxers has revealed a dozen oddities about themselves in the build-up to the mega fight . mayweather takes his food very seriously . pacqu xiao-mao eats five meals and consumes 8,000 calories daily .\nresearch by website vouchercodes.co.uk reveals britons spend an average of # 62 a week on rewarding themselves . treats can range from as little as a bar of chocolate to designer clothes and shoes . men spend a third more a month than women on treating themselves .\nzimbabwean migrants pictured disembarking from buses in beitbridge , zimbabwe . about 3,200 malawians have also sought refuge in temporary camps . south africa 's influential zulu king goodwill zwelithini denied whipping up the xenophobic hatred in the country . seven people have been killed in anti-immigrant attacks that have left thousands from their homes .\nsteven gerrard will leave liverpool at the end of the season . the midfielder was pictured in a 1992 newspaper article . steve heighway described gerrard as ` outstanding ' in the article . gerrard has gone on to make 499 appearances for his boyhood club . the former england captain will join la galaxy in the mls .\ntwo french men have been charged with animal cruelty after setting a quokka alight . the incident happened on rottnest island off perth in western australia on april 3 . the two men allegedly ignited an aerosol spray with a lighter causing a large flame to make contact with a quakka . the lucky little critter survived the reckless incident but was singed by the flame .\nmike heatlie , 42 , launched the violent attack on fiona mccartney , 43 . he hit her so hard that she lost a tooth and was left lying unconscious . ms mccartney is now facing a # 7,000 dental bill and says she is too frightened to leave her home after being assaulted by the personal trainer . heatlie pleaded guilty at edinburgh sheriff court in march to the attack .\nbodies of three women and two women found in phoenix , arizona home . police believe the gunman killed his brothers , 38 and 56 , and their mother , 76 . he then shot dead his sister-in-law , 26 , before taking his own life . his wife and two children escaped the home and called 911 . police said it appears the man and his relatives were in an on-going dispute over the family business . neighbors said the family , who ran a transport company , had always been ` invisible ' until the shooting .\nac milan say they ` truly hopes that these reports are n't true ' the club 's under-10s were allegedly subjected to racist abuse . milan play benfica in the semi-finals of the universal cup . kevin-prince boateng led his teammates off the field after being racially abused by opposing fans during a friendly match in january 2013 .\nmichelle mone bought three-bedroom duplex in glasgow 's park circus area in 2013 . she paid # 780,700 for property off-plan after splitting from husband michael . it now boasts magnificent reception hall and stairway and is worth more than # 1m . it is understood she will move back into five-bedroom mansion in thorntonhall , lanarkshire . couple split in december 2011 after 19-year marriage collapsed .\nkaren buckley , 21 , went missing after night out at nightclub in glasgow . her body was found on a farm six miles north of the city earlier this week . alexander pacteau , 21-year-old , charged with murder and attempting to defeat the ends of justice . he made no plea or declaration at glasgow sheriff court today .\nnewcastle united midfielder jonas gutierrez was dropped from the squad for sunday 's 3-1 defeat by tottenham . the 31-year-old had a row with head coach john carver . gutierrez is set to be released by the magpies at the end of the season . the argentinian has twice beaten testicular cancer .\nwest brom chairman jeremy peace is hoping to sell the club . peace is understood to want between # 150million and # 200million for the club . groups from america , australia and the far east are believed to be interested in buying albion . manager tony pulis has been assured that the deal will be done by july .\nhomeland security and immigration and customs officials arrested more than 1,200 people in raids across the country . the raids were part of a six-week operation known as project wildfire . officials seized weapons , drugs and cash from 239 crime syndicates and arrested 913 people . as they were booked into jail , some suspects were forced to reveal their tattoos .\ngang of four spent eight minutes trying to hack into an atm outside a waitrose supermarket in kenilworth , warwickshire . they then fled the scene in a stolen audi rs7 and reached speeds of 145mph . police tracked the gang to a block of flats in tamworth after they were caught by a helicopter . mark kirk , pedro taylor , jason hadley and dean beech were all jailed for their part in the robbery .\ndoctors say hollie tillbrook had a dangerous level of potassium in her body . the 17-year-old , who suffers with bulimia , collapsed in basildon , essex . she was found by a bouncer who gave her cpr until an ambulance arrived . the teenager was then put into an induced coma but made a remarkable recovery . her family are now trying to find the police officers who saved her life .\ntennessee prosecutors banned the practice of using sterilization in plea deals . john sutter : it 's not a new thing , and it 's not even a violation of the constitution . he says even if it 's considered cruel and unusual , it 's probably ok for people to choose it . sutter says the issue of sterilization as a punishment is a red herring .\narsenal had 63 points from 31 games in 2013/14 . the gunners are now in fine form and beat liverpool 4-1 on saturday . but they have exactly the same record as they did at this stage last season . arsene wenger 's side finished fourth in the premier league last season .\njermain defoe scored the winner in sunderland 's 1-0 win over newcastle . the 32-year-old hit a left-footed volley to put the black cats into a 1-1 draw . defoe said he had to question if it was even happening . sunderland are now three points clear of the relegation zone .\narkansas circuit judge michael maggio admitted posting offensive comments . he revealed details of theron 's adoption two months before she announced it . maggio , 52 , faces up to 10 years in prison and a $ 250,000 fine . he pleaded guilty to federal bribery charges in march . he has now been barred from practising law in arkansas .\nmodel chrissy teigen posted a picture of her stretch marks to instagram . singer pink hit back at critics who fat shamed her . kelly clarkson said she was used to being bullied about her weight . lena dunham said she did n't want to be thinner . she said she had been criticised for wearing shorts on the red carpet .\ndidier drogba is yet to be offered a new contract at chelsea . the ivorian striker has been a bit-part player at stamford bridge . but drogba insists he will continue his playing career next season . the 37-year-old started in chelsea 's last gasp win against qpr .\nsprawling home in chelsea , west london , has been sold for # 51million . it is 300 times the average price of home in england and wales . but the buyer also has to pay # 7.6 m in stamp duty on top of the price of the home . stamp duty alone is enough for the treasury to pay the annual salary of 330 nurses . the 17,500 sq ft house was built on the site of an old telephone exchange .\narsenal are currently second in the premier league table . arsene wenger 's side beat liverpool 3-0 on saturday to finish fourth . but they are yet to challenge for the title this season . the gunners have been stuttering this season and are 13 points off top .\ngoogle maps combines google maps with pac-man . the game lets users play pac-man in manhattan , london and san francisco . google has a history of april fools ' day pranks . the company has previously released a pokemon challenge and a treasure map . . the pac - man game was released tuesday .\ntwo of heston blumenthal 's restaurants made it into the top 100 . alinea , run by grant achatz , was crowned best restaurant in the world . the uk has eight restaurants in the top hundred . us has 19 of the best restaurants in world . france boasts 14 and uk has a mere eight .\nmoya gerber , 24 , and her sister rone odendaal , 24 were travelling through the kruger national park in south africa . they spotted two lions trying to bring down a cape buffalo . the pair stopped to take pictures of the struggle , before the buffalo ran for the road . it managed to escape the lions ' clutches , but ran into the side of ms odendaals ' car .\nebola has killed more than 25,000 people in west africa . the virus has also infected more than 10,000 . the world health organization says 30 new confirmed cases of ebola were reported in the week of april 5 . the number of cases is the lowest weekly total since may 2014 . the ebola epidemic revealed flaws in government systems that are supposed to protect us .\na power outage temporarily blackened washington , d.c. this afternoon . the outage ` briefly had an impact on the white house complex ' but it was ` back on the regular power source ' by the time josh earnest began his briefing . the state department 's acting spokeswoman marie harf was in the middle of her daily briefing when the blackout hit . she lit the room with her cell phone , photos posted to twitter show , and ultimately had to cut it short . oprah winfrey was in a speech at a dedication ceremony for the maya angelou forever stamp when the lights went out on her at warner theater in downtown d.c. .\npensioner terry cooper , 79 , spotted the huge badger while in his garden . the animal burst through a hedge with two cubs and mr cooper was left shaken . his jack russell sam pulled him back inside and mrcooper fears he could have been attacked .\nava lane , hazel grace , olivia marie , parker kate and riley paige were born april 8 . the busby family is now a family of eight . they are the first all-female quintuplets born in the u.s. since 1969 . the rademacher family also had twins in march .\nnicholas tooth , 25 , died after sustaining a head injury during a rugby match on saturday . he was playing for the quirindi lions against the narrabri blue boars in mid-north nsw . mr tooth hit his head on an opponent 's shoulder during a tackle and collapsed . he suffered a critical condition and died in hospital on sunday . tributes have poured in for the young man , who was described as a ` good bloke ' by his teammates .\nthe trio of bikers were captured as they made leaps of faith at portland rock , off the coast of weymouth in dorset on sunday . the group included renowned professional trial bike riders jack gear , 25 , andrei burton , 29 , and joe seddon , 19 .\nlabour leader vowed to end casual employment contracts that ` undermine living standards and family life ' but his crackdown backfired spectacularly as he forgot labour use them . freedom of information requests found 22,000 zero-hours contracts were handed out by labour-run councils . 68 labour mps had also signed up researchers and other staff on zero-hour contracts in the last two years .\nshooting happened at 2.15 pm on friday at universal studios in hollywood , california . man was spotted in a smoking area near the despicable me ride . he had been banned from the park last week after vandalizing his ex-girlfriend 's car . police say he was stalking the mother of his child , who works in a restaurant .\njock mee allegedly told 18-year-old her visa application had been delayed . he then ` repeatedly asked her to have sex with him ' at croydon careers centre . court heard she saw him as a ` father figure ' after he helped her join the army . mee denies 17 counts of sexual assault and one count of penetration .\ngirl in the spider 's web will be published worldwide on august 27 . it will be the fourth installment in millennium crime trilogy by stieg larsson . book was completed in november by david lagercrantz based on plot outline left by larsson before he died of a heart attack in 2004 aged 50 .\nnew york is set to officially break ground on a 630ft ferris wheel this week . the attraction will offer stunning views of the manhattan skyline . the new york wheel will be able to carry as many as 1,400 passengers at a time . it will include mobile bar cars , a 20-seat restaurant and a 4-d ride on the ground .\nqpr have confirmed that eduardo vargas has been ruled out for 10-12 weeks . the 25-year-old picked up the injury to his left knee after falling awkwardly in the win against west brom . vargas is the third qpr player to sustain an mcl injury since the turn of the year .\nrafi , 10 , and dvora , 6 , were picked up by police on sunday after a concerned citizen called authorities . the maryland parents , danielle and alexander meitiv , say they were left to panic for hours by cps workers . the meitvils have been cited multiple times for allowing their children to roam free in their suburban neighborhood . they say they are now suing the authorities responsible for keeping them in custody for six hours .\nsarah and mark brennan had ten miscarriages in ten years . they were told they 'd never conceive naturally and were put on ivf waiting list . last year they became parents to their daughter eryn elisabeth . she was born seven weeks early , weighing just 3lb 11oz .\ntony mccoy will retire from racing at the end of the season . the former champion rode his 4,000 th winner at wetherby in november 2013 . he also won the 1994-95 championship for jumps jockeys . mccoy 's record of 290 winners in a season is the best in history .\njack grealish was pictured taking so-called ` hippy crack ' after a night out . the 19-year-old was pictured inhaling nitrous oxide through a balloon . aston villa boss tim sherwood has told grealishes he will not repeat his mistake . grealish inspired villa to fa cup semi-final victory over liverpool on sunday .\nan april fools day prank involving fireworks sent one apartment unit up in smoke near grand valley state university in michigan . fire officials said one of the apartment building 's residents threw a lit firework at a roommate ; the firework landed in a laundry hamper , setting the contents on fire . no one was hurt and the girl is not expected to face charges .\nmanor driver will stevens is preparing to race in the bahrain grand prix . stevens has been using the facilities at st george 's park to help him climb the formula one ladder . he was introduced to st george 's park by michael johnson performance . the company has a partnership with the burton-based centre .\nfeidin santana , 23 , filmed the moment officer michael slager shot dead walter scott , 50 , on saturday in north charleston , south carolina , after he fled from police . he has been hailed a hero for keeping his camera trained on the officer as he fired eight shots at scott , who was unarmed , and later releasing the video . on thursday , santana met with the scott family to thank them for their support and said he is glad the video could show the true story of what happened . officer slager , 33 , was arrested on tuesday and charged with murder .\npaula radcliffe will run her final competitive marathon on sunday . the former world champion says she will be emotional at the end of the race . radcliffe set the world record in 2003 when she won the london marathon in a time of 2:15:25 .\nmercedes-benz fashion week australia 2015 ended in sydney on thursday night . johanna johnson 's glamorous collection , ` sirens ' call ' , featured mirrored embellishments , fringing , and feathers . the collection was created in under one month and featured her trademark gowns .\n`` they actually spit on me and my service dog as well , '' a wounded veteran says . zeta beta tau fraternity members urinated , spit on veterans , a veterans group organizer says . the university of florida and emory university are investigating . the fraternity 's international office has suspended activities at the florida school .\nreanne evans beat ken doherty 10-8 in the first round of qualifying . the 29-year-old was hoping to become the first woman to play in the crucible . doherty won the world championship back in 1997 . the irishman is now ranked no 46 in the world .\nthe first season of marvel 's `` daredevil '' premiered on netflix last month . the company confirmed tuesday that a second season will be coming in 2016 . the show focuses on attorney matt murdock , who was blinded as a child . it 's just one of four marvel series that netflix is committed to airing .\njurgen klopp will leave borussia dortmund at the end of the season . manchester city are on the lookout for a new manager . brendan rodgers is also under pressure at liverpool as he faces a third trophyless season . liverpool were knocked out of the fa cup by aston villa on sunday .\nwhen kyli wolfson first woke up in excruciating stomach pain in october 2012 , doctors initially thought she had acute pancreatitis . but after visiting three more hospitals , she was finally diagnosed with chronic pancreatitis , a condition that affects less than 1 % of people . she was forced to stop eating for a year and a half and dropped from 110lbs to 80lbs . she eventually found a way to eat by having a risky procedure to remove the pancreas , spleen , gallbladder , appendix , and duodenum . she is now recovering and is able to walk down the aisle with her fiancé dustin wood .\nthe yeatman , in vila nova de gaia , is portugal 's first luxury wine hotel . all of its 82 rooms face the douro river and are themed after portuguese wineries . the hotel has been open for five years and is a michelin-starred restaurant .\nahmed gaddaf al-dam , gaddafi 's cousin , blames west for ` overwhelming chaos ' in libya . he said western countries have shed ` the tears of crocodiles over democracy and human rights ' about 800 people are believed to have died when a fishing boat carrying migrants overturned off libyan waters . senior conservative minister william hague has defended the government 's role in helping to overthrow the dictator .\ncalifornia appeals court ruled yoga classes taught at capri elementary school do not violate students ' right to religious freedom . family sued encinitas union school district claiming classes promoted hinduism and inhibited christianity . school district said the practice is taught in a secular way to promote strength , flexibility and balance .\nwill stevens is yet to compete in qualifying or the race for manor this season . the 23-year-old missed the opening two formula one races of the year in australia and malaysia . stevens is hoping for third time lucky at the chinese grand prix this weekend .\n13-year-old stephanie from houston , texas , wanted to send a message to her astronaut father . she enlisted help of car manufacturer hyundai to make the earth drawing , that has now broken a world record for its size . 11 cars wrote the message in the dusty land in nevada 's delamar dry lake using coordinates and a helicopter .\ntracey cox says eye contact is the most effective way to signal sexual interest . she says that it takes more than just simple eye contact to get someone 's attention . she gives her advice on how to use your peepers to get your man 's attention .\nkate and william are expecting their second child in april . prince george 's first year boosted the economy by # 247m . anything he wore sold out within 48 hours of being seen . a girl could bring in # 150m for the british economy . a princess would be able to set trends throughout her life .\nnewcastle face sunderland in the tyne-wear derby on sunday . the magpies have lost the last four matches against their north-east rivals . john carver says he will use a whip to motivate his players . dick advocaat will take charge of his second game as sunderland boss .\nbrian gemmell , former captain in the intelligence corps , said spy chiefs ordered him to ` stop digging ' when he reported possible paedophile ring at northern ireland children 's ' home . he spoke out during a meeting with victim richard kerr , who claimed he was one of three youngsters trafficked from kincora . mr kerr said he was molested by ` very powerful ' figures in westminster paedophile gang .\nchelsea host manchester united on saturday in the premier league . marouane fellaini has been a key player for united in recent weeks . jamie carragher believes jose mourinho will bring kurt zouma into midfield . carragher and gary neville believe mourinho will have a special plan to stop fellaini .\ncontract signed between tony blair and colombian government in 2013 . fees paid to tony blair associates for work advising colombia on mining industry . includes a requirement that his wife cherie join him on trips to south america . critics question why fees are being paid by united arab emirates . blair last week defended earning money , claiming it pays for ` infrastructure '\nwilliam tyrrell disappeared from his grandmother 's house in kendall , nsw last september . police believe he was abducted by a paedophile ring . detectives are ` vigorously perusing ' the line of inquiry . his parents have released new pictures and home videos of their son . the video shows the lively boy playing guitar and riding his bike . the parents have begged for his return in a heart-wrenching video .\nthe babel bike was designed by crispin sinclair - son of the famous british inventor sir clive sinclair . it boasts front and rear lights , rear view mirrors and even a car horn . and perhaps most noticeable of all is the roll cage that surrounds the cyclist - keeping them safe against trucks and buses turning into them . the bike also has foot protectors and an electric motor . crispin is seeking # 50,000 -lrb- $ 74,000 -rrb- of funding on site indiegogo to bring his dream to fruition .\nmohamed hamdin , 24 , appeared at downing centre court for his indecent assault hearing on tuesday . nsw police say hamdin touched the 15-year-old girl inappropriately during the concert of u.s. rappers yg and ty dolla $ ign at enmore theatre , in sydney 's inner-west , on australia day this year . charges were laid against hamdin after a violent brawl broke out during the australia day rap concert , which resulted in several people being assaulted .\nracing legend tony mccoy has won more than 4,300 winners in his career . the 40-year-old has been champion jump jockey for the past 20 years . he finished third in his 17,630 th race at sandown park on saturday . mccoy was presented with the champion jockey trophy by ian wright .\nmarried jafar adeli arranged to meet someone he thought was 14-year-old girl . he was arrested at bus station in leicester by paedophile vigilante group letzgo hunting . adeli was jailed for 27 months after admitting grooming a girl under 16 .\nkayla mooney , 24 , was in her first year teaching science at danbury high school . she was charged on march 31 after a seven-week police investigation . mooney was allegedly busted after she complained to school administrators that the boy 's girlfriend was harassing her .\namy-beth ellice , 17 , from essex started baking at the age of three . her first cookbook amy 's baking year was published at age 14 . her second , all about entertaining , is now firmly in the works . she has plans to launch her own baking products and become a tv chef .\npacks of cadbury chocolate fingers have come down by 11 grams to 114g . the popular biscuits are made under licence by another manufacturer , burton 's biscuit company . price at sainsbury 's has risen from # 1 to # 1.50 over the past year , but has come down from # 1 to 80p at tesco .\njack crowe was found face down in pool 20 minutes after going missing . family friend saw his body at bottom of pool in upavon , wiltshire , last july . coroner ruled death as accidental after hearing how he ` never went near ' pool . family are now campaigning for a change in the law to make fencing off pools mandatory .\nthree-year-old mikaeel kular was beaten to death by his mother rosdeep adekoya . his body was found in a suitcase and dumped in woods in kircaldy , fife . his death came just six months after he was returned to adekoya 's care . social workers also visited the family a number of times over two years . but review into whether they could have foreseen circumstances of his death has concluded it ` could not have been predicted '\ned miliband has insisted he does not live in a ` mansion ' - despite admitting it is worth ` between # 2million and # 3million ' labour leader said he would have to pay the proposed # 250 a month 'm mansion tax ' on homes worth more than # 2m . but he claimed this did not mean he actually lived in one .\nthe duchess of cambridge and prince george were pictured at a petting zoo . the couple were enjoying a day out together before the arrival of the baby . william has created a secluded retreat for kate , george and their new arrival . the royal couple are moving to anmer hall , in north norfolk .\ntom daley has spent the winter modifying his new dive with new coach jane figueiredo . daley hopes his new ` firework ' dive can help him win olympic gold in rio . the 20-year-old won silver at the recent world diving series in dubai .\ndavid templeton has been a rangers player since 2012 . the winger has struggled with injuries since joining the club . rangers face hearts at ibrox on sunday in the scottish championship . hearts are 26 points clear at the top of the table . templeton is hoping to prove his worth by returning to his best .\nshannon hamilton was arrested on sunday attempting to build a barricade on a bridge in georgia where his teenage daughter had died . cecily hamilton , 16 , and her friend taylor swing , 18 , died on march 15 when their car plunged off the bridge in white county . hamilton , together with friends and family members , had traveled to the bridge to errect a temporary barrier he had created to prevent cars from driving off the roadway . but before he could complete the work , hamilton was arrest by deputies .\nextreme sportsman jay alvarrez and model girlfriend alexis rene love travel . couple share stunning images of themselves on their tumblr blog and instagram . jay has 750,000 followers on instagram and alexis 1.1 million . pair share snaps from hawaii , indonesia and their home state of california .\nluis enrique 's barcelona beat paris saint germain 2-0 at the nou camp . barcelona won 5-1 on aggregate to reach the champions league semi-finals . neymar has the blend of cristiano ronaldo and lionel messi in his skillset . andres iniesta is finding his best form in the new barcelona style .\npower cut in at clapham junction , south-west london , at 7am . 1,200 passengers evacuated from east grinstead to victoria train . another 1,000 passengers stranded on brighton to london service for five hours . police and paramedics on hand to help stranded passengers in sweltering conditions . at least 338 cancellations and 138 part cancellations across network . 321 trains were delayed for a total of more than 600 hours .\nthe pentagon claims a u.s. rc-135u reconnaissance plane was intercepted over poland . it claims a russian su-27 flanker cut into its path in international airspace . the state department has filed an official complaint to russia . pentagon officials have slammed the move as ` unprofessional ' and ` unsafe '\nhayley adams , 29 , was caught on cctv stealing from william tanner 's wallet . his daughter angela wrenn , 56 , had installed the camera in his bedroom . she was shocked to discover the culprit was a trusted relative and mother . adams admitted to taking # 65 but relatives suspected thousands were taken in a year . she escaped with a community order , restraining order and a fine of # 175 .\nashley young got bird poo in his mouth during a match against swansea . manchester united players hung a fake bird above young 's peg in the dressing room after the incident . luke shaw says david de gea is the ` nicest guy in football ' and always approachable .\n` they are warning him to slow down on revealing too much of his journey on reality tv , ' a source told tmz on monday . ` kim and the boys think bruce was spectacular on the diane sawyer special and in won over millions of people in the process , ' added the source . the eight-episode docu-series will air starting july 27 . bruce has signed a contract with e! to air the show .\ntokyo 's narita airport has installed running tracks in its new terminal 3 . the cushioned tracks were designed to celebrate the 2020 olympics . the tracks also include directional information for travellers . the new terminal will be used for many of tokyo 's low-cost carriers .\nbrittany lincicombe beat stacy lewis in a play-off round at mission hills . the american won her second ana inspiration title after a dramatic end . the 29-year-old also won the tournament in 2009 . morgan pressel made it an all-american top three after finishing on two-under-par .\narsenal beat reading 2-1 after extra-time at wembley on saturday . adam federici 's error led to alexis sanchez 's winner . the goalkeeper is due to marry girlfriend micaela gardner in florence . the wedding would have clashed with the fa cup final if reading had won .\njihadi bride khadijah dare 's mother victoria has called on her to return . mrs dare , from lewisham , south london , says her daughter was a devout christian . but she changed her name to khad elijah after attending mosque . dare , 22 , was among the first britons to join the terrorists of islamic state . she is notorious for threatening to become the first woman to behead a westerner .\nanzac day falls on a saturday , as it does this year , so no public holiday is triggered . under the pact , no public holidays are granted on anzac day if it falls on the weekend . the agreement was designed to provide uniformity of public holidays across the nation . western australia and canberra will get monday off , but not the rest of australia . bosses in some states have been warned to expect a rise in employees calling in sick .\nengland 's justin rose hit 17 out of 18 greens in regulation . rose signed for a 69 at the shell houston open . phil mickelson enjoyed his best round in months with a 66 . paul casey celebrated his last-gasp masters invitation with a fine round . the masters starts on april 14 at augusta national .\namateur photography competition was held in the northern territory cattlemen 's association 's conference . the competition asks for images that will illustrate the northern territorians ' unique outback lifestyle . marie muldoon won the competition with a touching photo of her daughter cuddling up to a horse .\nsunderland winger adam johnson was charged with three counts of sexual activity with an underage girl and one of grooming on thursday . johnson was considered a prospect for roy hodgson as recently as a year ago . the 26-year-old scored seven goals in seven games for sunderland last season . johnson has scored five goals from 31 appearances this season .\ndundee united host dundee united in the scottish premiership on wednesday . dundee have lost seven of their last nine matches in all competitions . paul hartley is refusing to believe that will make his side 's job any easier . dundees are without a win in three matches themselves . hartley believes his players can still take confidence into the match .\nncaa says it has no legal responsibility to ensure academic integrity of courses offered to athletes . lawsuit filed by former unc athletes says they did n't get an education because of academic fraud . ncaa says it 's `` not responsible '' for the quality of the education of student-athletes .\nofficials in san bernardino county started a controlled burn on tuesday . the blaze was started to clear the area of flammable cattails . but a shift in the wind caused the fire to spread across 70 acres . residents were forced to flee their homes as the fire approached . one shed and one car were destroyed in the blaze .\nsharon edwards was last seen between 10pm and 11pm on march 14 in grafton , nsw . the 55-year-old teacher did not turn up to work at coutts crossing public school on march 16 . her estranged husband reported her missing the next day . her car was left parked in her driveway and her clothes were thrown in the washing basket in her bedroom . her wallet and handbag are missing but she has not accessed any of her bank or social media accounts . police are treating the investigation as a homicide .\nscottish first minister says ed miliband wo n't have the votes to do what he likes . she reiterates call for labour to ` work together to lock the tories out ' comes after miliband said he would not enter into any deal with snp . he told bbc1 's andrew marr show : ' i am not interested in deals , no '\npremier league has promised to invest five per cent of tv rights proceeds in grassroots sport . andy burnham says the move could unlock # 400 million for young players . the labour shadow health secretary accuses david cameron of not getting tough on the premier league . the league has taken in # 5billion in tv rights between 2013 and 2016 .\nyannick bolasie has been linked with a move away from crystal palace . the winger scored a hat-trick in palace 's 4-0 win against sunderland last week . alan pardew says the bidding will have to start at # 20million for bolasie to leave .\nuniversity of oregon student tanguy pepiot was running in the 3,000 m steeplechase . he had a clear lead on rival meron simon , who runs for the university of washington . but pepiot slowed down to celebrate his win , and was overtaken . simon ran his best ever time in the race , beating pepiot by a tenth of a second .\nlinda and george hunter spent a lifetime paying off their mortgage . they live in garrick street , wavertree , liverpool , and became mortgage free . but eight years ago , the street became part of a regeneration scheme . council bought properties and boarded them up ready for demolition . estate agents say the couple would struggle to sell their home for more than # 1 .\nfenerbahce 's team bus came under armed attack on saturday night . the bus driver was wounded in the attack and taken to hospital . the club have called for the suspension of the turkish championship . the attack followed fener 's 5-1 win away to rizespor in the super lig .\nit was set as a maths problem aimed at testing logical reasoning . but the question went viral after people across the world were left baffled . the problem has been shared thousands of times online as people try to solve it . it was set for 14-year-olds in the singapore and asian schools math olympiad . organisers of sasmo said the question was set to filter out the most intelligent of participants .\nthierry henry took exception to javier hernandez 's celebration after scoring the winning goal for real madrid against atletico . the former arsenal striker said hernandez owed everything to team-mate cristiano ronaldo . henry posted an 84-minute video of michael laudrup 's passing .\nlewis hamilton claims pole for chinese grand prix ahead of nico rosberg . sebastian vettel will start third on the grid ahead of felipe massa and valtteri bottas . jenson button will start 17th and fernando alonso 18th . hamilton 's mercedes team-mate rosberg will start second on the front row .\niowa lawmaker henry rayhons found not guilty of abusing his wife . he was accused of having sex with donna lou rayhons at her nursing home . the 78-year-old had been told she no longer had the capacity to consent . mr rayhon 's lawyer argued a guilty verdict could create fear of couples .\nswedish police officers makrus åsberg , erik näslund , samuel kvarzell and eric jansberger were on their way to see les misérables on broadway . they stopped a homeless man who was viciously beating another rider on a crowded 6 train last night . the four scandinavian cops held the attacker until nypd officers arrived . ` we 're no heroes , just tourists , ' said mr asberg .\nnicklas bendtner turned up late for training on friday . the denmark international was due to start the match . but he was dropped from the squad by manager dieter hecking . hecking said bendtners would have started if he had n't turned uplate .\ntyrone sevilla hand delivered a heartbreaking message to peter dutton 's office on monday . the 10-year-old has lived in australia with his mother maria since 2007 . their visa expires today and they face the very real possibility of being deported back to the philippines . ms sevilla 's visa application was rejected 28 days ago . the immigration department said tyrone 's autism would be a ` burden on the australian health system '\nmiddlesbrough beat wolves 2-0 at the riverside stadium on tuesday night . jelle vossen and patrick bamford scored for boro in the first half . aitor karanka 's side are now just one point behind championship leaders norwich . boro have four games remaining to secure their place in the top flight .\nchalke valley history festival will feature downton creator julian fellowes . he will give a unique insight into his inspiration for the period drama at the festival . other speakers include historian david starkey , best-selling novelist kate mosse and explorer sir ranulph fiennes . festival attracts more than 30,000 visitors to idyllic venue in wiltshire field .\nnational grid has revealed the uk 's first new pylon for nearly 90 years . called the t-pylon , it is a third shorter than the old lattice pylons . but it is able to carry just as much power - 400,000 volts . it is designed to be less obtrusive and will be used for clean energy purposes . national grid is building a training line of six t - pylon at eakring .\nsecond person charged with attempting to carry out an `` isis-inspired '' terror plot . five young men were arrested saturday in melbourne , australia . two of the teens , 18 and 19 , have been released `` pending further inquiries '' police say the suspects were targeting a ceremony on anzac day .\nfaith and hope howie were born on may 8 last year with one body and two faces . they died in hospital less than a month after they were born due to a rare condition . their parents laid them to rest at pinegrove memorial park in sydney 's west . family and friends had built a small shrine at their gravesite , which they have added to since the funeral . when they arrived on thursday , they found the site completely bare .\nisobel attwood , 16 , left her winchester home on saturday afternoon . she has not made contact with her family since . police are concerned for her welfare and believe she could be in winchester or southampton . friends say she is in southampton with a man in his 20s .\nkevin perz , 56 , graduated from parkway central high school in chesterfield , missouri , in 1977 . he has been looking up the teachers he has the fondest memories of and mailing them a ` gift ' over the past few years he has been mailing them checks for $ 5 , $ 10,000 and $ 10k . he recently sent his home economics teacher , marilyn mecham , a $ 10k check .\nblanca cousins , 15 , fell to her death from luxury apartment block in hong kong . her birth , and that of her 14-year-old sister , was never registered . herminia garcia was charged with wilful neglect and being in country illegally . her partner nick cousins was also arrested on suspicion of ` ill treatment ' mr cousins has not been charged and is currently on bail . police have applied for a ` care and protection ' order for the couple 's other child .\nmore than 140 students have been removed from school in spokane , washington . they could not prove they had the required vaccinations . health officials have warned of the danger of a measles pandemic in the us . they are concerned about a growing number of people not getting vaccinated . the virus has swept several states in america and california .\nshaker aamer has been held at guantanamo bay without charge or trial . the 48-year-old is expected to be released in the summer , us government sources say . he has been cleared for release twice by us presidents since 2007 . campaigners welcomed the move but said his detention was ` affront ' to civilised values .\nmodular robotic vehicle -lrb- mrv -rrb- can be driven remotely . can park sideways and spin on the spot . can reach speeds of 70mph . nasa says it will be used in future manned missions to mars and even an asteroid . watch the buggy in action below .\na survey found 96 per cent of women chose the ` average ' option . samantha says she 's no narcissist and loves her flaws . she says women would rather strut out in public as naked than admit they 're beautiful . says dove 's campaign exploits our need to act modestly . has received death threats for saying ` i 'm beautiful '\nmichael owen has claimed newcastle would be relegated with 10 games to play . newcastle are currently seven points off the premier league relegation zone . john carver has hit back at owen 's recent criticism of his side . newcastle fans will protest against owner mike ashley on saturday . siem de jong will be included on the substitutes ' bench for swansea .\noverweight people less likely to develop dementia , study finds . lead researcher said results are a ` surprise ' , but it 's no excuse to pile on the pounds . previous studies have found that being overweight reduces risk of premature death . but experts say bmi is too crude a tool on its own to make decisions about what a healthy weight is .\njason robinson has revealed he contemplated suicide . the former wigan star was arrested for violent offences . robinson credits then team-mate va'aiga tuigamala with saving his life . the 40-year-old scored in england 's 2003 world cup final win against australia .\nsan bernardino county has approved a $ 650,000 settlement with francis pusok . pusok 's beating by deputies after a horse chase was captured on video . the arrest was recorded by a tv news helicopter and led to an fbi civil rights investigation and 10 deputies being placed on leave pending an internal probe .\nfive-time world champion ronnie o'sullivan was warned by referee olivier marteel . o ' sullivan was speaking to matthew stevens after stevens missed a red . o'sullivan had taken a 5-3 lead in the second round match at the crucible . the 39-year-old was speaking with stevens when he made the gesture .\npresident obama and the first lady attended the 137th annual easter egg roll on the white house south lawn monday morning . the president read from his favorite childhood book where the wild things are . the first lady joined the so you think you can dance all stars on stage to perform a choreographed routine . this comes only days after she sported her mom dance moves on the tonight show starring jimmy fallon during a segment called the evolution of mom dancing part 2 .\nthe masters offers food at reasonable prices for its punters . padraig harrington has been using a new practice technique . tiger woods has his name inscribed on his putter . gary player is fit as a flea . jordan spieth has averaged 1.39 putts per hole .\namerican john moore 's images of the ebola outbreak in liberia won him the top prize at the sony world photography award . the awards , held in london last night , were the largest photography competition in the world . mr moore 's pictures were praised for their compassion and ability to convey the horror of the disease .\nbiso the cat squeezed into hole in the wall at mohamed naguib metro station in 2010 . he survived thanks to an elderly man called uncle abdo who fed him scraps of food . but the cat soon became too big to escape and stayed behind the wall . animal activists finally freed him after a picture of his tail was posted on facebook .\nformer prime minister said the snp would use westminster to foster division . he mocked ms sturgeon over her demand to play a role in propping up labour . he said she is ` not even bothering ' to stand as an mp herself . but ms sturgeon branded his comments ` an affront to democracy '\nan explosion and fire occurred at a chemical plant in zhangzhou , china , on monday night . five out of six people were injured by broken glass and have been sent to the hospital . the plant produces paraxylene -lrb- px -rrb- , a reportedly carcinogenic chemical used in the production of polyester films and fabrics .\nnasa says its messenger probe crashed into mercury on thursday . the probe was the first to orbit the planet closest to the sun . it was healthy when it crashed , but was out of fuel . the crash was n't visible from earth because it occurred on the far side of mercury . . the mission provided valuable data and thousands of photos .\nchelsea have opened talks with patrick bamford over a new contract . bamford is currently on loan at middlesbrough from chelsea . the 21-year-old has scored 17 goals in his first season at the club . bamfords currently earns # 7,500 a week at stamford bridge .\nchris smalling signs three-year contract extension at manchester united . the 25-year-old had been linked with a move to arsenal . smalling has become a regular starter for louis van gaal this season . the defender has made 147 appearances for united and won two premier league titles .\nukip candidate peter endean retweeted message mocking refugees . image with caption said : ` labour 's new floating voters . coming to a country near you soon ' around 1,300 people are believed to have drowned in the past two weeks . mr endean is standing for nigel farage 's party in council elections in plymouth . he has apologised and claims he re-tweeted the message by mistake .\neidur gudjohnsen scores in stoppage time to earn bolton wanderers a 1-1 draw with blackpool . michael jacobs opened the scoring for the hosts in the ninth minute at the macron stadium . the draw was blackpool 's first away win since april 26 .\nthe original pig rassle will be replaced this august with a human mud foosball tournament . st patrick 's parish in stephensville , wisconsin has discontinued its original pig rassle tournament after 44 years of the tradition . global conservation group , an animal advocacy group , launched an online petition claiming the tournament was inhumane to the pigs . it garnered more than 81,000 signatures in efforts to cancel the event .\nfrench model stars in a television film for garnier . she is filmed and photographed as she ` ages ' an average of five years . parisian public observe her appearance and judge her as older . she can be as young as 26 to as old as 40 in the ad .\nmanchester united beat city 4-2 in the derby on sunday night . louis van gaal celebrated the win with a meal at wing 's chinese restaurant . toni duggan posted a picture of herself with city women 's players on instagram . duggan later deleted the post and issued an apology on facebook . united manager van gaal was joined by his wife truus and friends . wing 's is the go-to place for footballers in manchester .\nchristine davidson , 61 , was diagnosed with terminal brain cancer in 2001 . she was told she only had between nine months and three years to live . the mother of two passed away on thursday at an adelaide nursing home . her family claims her diamond engagement ring was ` forcefully removed and stolen ' from her finger just days before she passed away . the family has launched a desperate online appeal in a bid to have their mother 's ring returned .\nliverpool beat blackburn 1-0 in the fa cup quarter-final replay at ewood park . philippe coutinho scored the winner with 20 minutes to play at e wood park . simon eastwood had a chance to equalise for blackburn in the dying stages . the blackburn goalkeeper 's last-gasp strike was saved by simon mignolet .\nawkward photos of the new zealand pm pulling multiple young girls ' ponytails are being posted on social media . this comes after he was forced to apologise to am auckland waitress for touching her hair at work . the waitress , amanda bailey , 26 , wrote a post on a blog site shaming him for his behaviour and saying it made her ` uncomfortable ' after the incident , reddit users started tracking down old pictures and videos of mr key touching other young girls 's hair and collecting them on a tumblr page .\nsurvey reveals 7 per cent of young professionals now have a drinking problem . 21 per cent said they had a problem , with 28 per cent for men alone . 35 per cent admitted to getting so drunk they could not remember most of their night out . one in 20 admitted to driving themselves home drunk and one in ten said they have got in a car with someone who they knew was intoxicated . 54 per cent say it is not acceptable to drink when pregnant . 23 per cent drink alone at home to relieve stress or relax . 53 per cent believe the nhs should refrain from treating alcoholics .\ntranssexual kellie , formerly boxing promoter frank maloney , started the process to change gender two years ago . the 61-year-old underwent her final surgery last week and was expected to stay in hospital for 10 days . but she has been released four days early and faces a further six weeks recuperation .\nmasked burglar scaled a rooftop vent to reach antique shop in hampstead . he crawled on the floor ` like a snake ' to avoid triggering infrared beams . thief stole 124 rare watches worth more than # 200,000 in the eight-minute raid . he and an accomplice returned the following night to try a similar break-in . but they were disturbed by neighbours and fled empty-handed .\nwest ham are planning to move for javier hernandez . the mexican striker scored the winner for real madrid against atletico . hernandez is on loan at real from manchester united . he will return to old trafford at the end of the season . the 26-year-old is not in louis van gaal 's plans and could be available for # 7million .\nkate hudson , pharrell williams and gwen stefani all look the same . angelina jolie , jared leto and jennifer lopez have all maintained their looks . mila kunis and rachel weisz have also maintained their youthful looks . femail rounds up the celebrities whose faces have n't changed in years .\na university student has revealed how she turned to sex work . she says that her student loan failed to cover her rent in london . the woman even visited some clients at their workplace . she spoke after a research project revealed more than a fifth of students have thought about being involved in the sex industry .\npsv eindhoven beat ajax to the eredivisie title on sunday . memphis depay scored the winner against heerenveen . the 21-year-old is the e redivisies ' top goalscorer with 20 . depay is in talks with manchester united over a # 25m move . click here for more manchester united news .\nclean eating alice has more than 102,000 followers on instagram . started sharing her healthy food recipes and exercise tips . says she has been inspired by the ldn muscle bikini guide . trains up to six times a week and says she loves exercising . would love to be the female jamie oliver .\nmanchester city have not won a premier league game having been behind at half-time in almost 20 years . manuel pellegrini 's side trailed at half time in 2-1 defeat to crystal palace . last time city won having trailed at the interval was in april 1995 . city beat blackburn rovers 3-2 having been 2-2 down at the break .\nwinchester council in hampshire said its annual clean-up of roads had been hit by new health and safety executive rules . but the hse denied tightening rules and said councils were ` over-interpreting ' legislation . former poet laureate sir andrew motion accused town hall bosses and the highways agency of ruining the countryside by failing to remove rubbish .\nnew york city police are searching for a man who was caught on a surveillance camera dumping an unconscious woman on a street in queens over the weekend . the nypd released the video tuesday , along with a photo of the victim in the hospital in hopes of identifying her . the woman was critically injured and still has not regained consciousness . in a hospital photo released by police , the victim appears to be an african-american woman in her 20s .\ntiffany gay , a sophomore at texas high school , has prader-willi syndrome -lrb- pws -rrb- that causes sufferers to have an insatiable appetite . luis velasquez promised to himself that he would take gay to the prom this year . video of the proposal has over 3.5 million views since being posted on tuesday . a go fund me page has been set up to help raise money for tiffany gay 's special prom with a $ 1,000 goal .\nchelsea beat manchester united 1-0 in the premier league on saturday . jose mourinho 's side had just 17 % possession in the game at stamford bridge . the blues boss has come under fire for his lack of possession this season . chelsea have had some wonderful moments this season , but not consistently sparkling .\nian , 36 , and nikki , 26 , tied the knot in a romantic ceremony in the santa monica mountains on sunday . nikki wore a stunning white lace long-sleeved custom gown by claire pettibone . ian carried his bride down a muddy slope so that her dress did n't get dirty .\nbarcelona has the perfect mix of art , culture and beaches . the city is a two-hour hop from london and is a great city break destination . andrea catherwood stayed at the hotel arts , a 44-storey skyscraper of glass and steel . the hotel is home to frank gehry 's huge futuristic sculpture , el peix d'or .\nchelsea defeated queens park rangers 2-1 at loftus road . cesc fabregas scored the winner in the 87th minute . thibaut courtois was the star performer for jose mourinho 's side . nedum onuoha and steven caulker impressed for qpr .\nambra battilana , 22 , told police that the hollywood producer groped her and put his hand up her skirt during a ` business meeting ' at his tribeca office in manhattan on friday night . she called police and they monitored a phone conversation with him . she also convinced him to meet him at a restaurant and the nypd were also there to watch that meeting . he voluntarily spoke with police on saturday and has promised full cooperation with the probe . but a recorded conversation between him and battilana shows he did not deny the incident , it has been claimed .\nhead chef at m restaurant and grill jared mccarroll explains how to cook the perfect steak . he says the first step to a perfect steak is buying the best meat you can afford . the best cut of meat is a fillet , which has the best texture and flavour . marbling is a great way to tell the quality of the meat , he says .\nquincy hazel and sabrina golden-hazel , 44 , from riviera beach , florida , have been charged with child neglect . the couple allegedly locked their 17-year-old son and 12-year old daughter in a closet for days on end and forced them to eat from a bucket . they also never took them to a doctor or dentist , according to a 26-yearold relative . the children were also forced to sleep on the floor of the house .\nbayern munich face porto in the champions league quarter-finals on wednesday . pep guardiola is bidding to reach his sixth semi-final in six years as a manager . the bayern boss is responsible for the decline of the premier league in europe . guardiola 's tactical change at barcelona was inspired by st andrews .\n` greedy ' shanice farier , 22 , stole # 15,000 from her employer , kanoo travel . she earned a ` decent salary ' and received handouts from her father . but that was n't enough for her expensive taste , the court heard . she helped herself to money from kanoo and spent it on hotels and living ` an opulent lifestyle ' farier was given a 10-month jail sentence suspended for 18 months . she was also ordered to do 240 hours of unpaid work .\nalastair cook and jonathan trott put on 158 for the first wicket . ben stokes took three wickets for 10 in england 's first innings . england dominated the day , dismissing a modest st kitts & nevis xi . stokes described cook as one of the best players in the world .\n` first of its kind ' equipment developed by elbit systems working with israeli ministry of defense . will be able to detect activity at a distance using a series of sensors . decision comes after israeli army considered more than 700 tunnel proposals . system is thought to cost around # 2.3 million -lrb- $ 3.5 m -rrb- per mile to install .\nrussia and montenegro 's euro 2016 qualifier was abandoned after 67 minutes . a flare hit russia goalkeeper igor akinfeev in the head . the keeper was taken to hospital for tests before making a full recovery . montenegro have been fined # 36,280 and ordered to play their next two matches behind closed doors . one of those matches is suspended for two years .\nattorney says police body cameras could have prevented walter scott shooting . he says cops are more likely to interpret actions from black men as potentially aggressive . he argues that racial bias in the criminal justice system is to blame . scott 's family will likely file a civil suit against the north charleston police department . the cost of body cameras may be worth it , he says .\nscott sinclair has scored three goals in 10 games for aston villa . the winger is on loan from manchester city but can be bought for # 2.5 m. sinclair wants to make his loan move permanent at the end of the season . joe cole believes villa can beat arsenal in the fa cup final .\na women 's rights group has slammed a popular eatery for their latest advertising campaign . the lowenbrau keller , in sydney 's the rocks , has released a social media and bus campaign featuring the slogan ` wunderbra ' the same campaign also features an image of two women in a similar state of dress with the caption ` make mein a dubbel ' collective shout , who claim the advertisements reinforces sexual objectification . the advertisements have garnered criticism from social media users who expressed their outrage over the allegedly objectifying images .\nmartin odegaard was pictured with former brazil international ronaldo at real madrid 's training ground . the 16-year-old joined real madrid for # 2.3 million in january . the norwegian midfielder signed a long-term # 40,000 a week contract with the champions league winners .\npadraig harrington has rediscovered his form ahead of the masters . the irishman was ` devastated ' after failing to qualify for last year 's event . harrington won the 2008 open and uspga championship with rory mcilroy . the 43-year-old is the last player to go to augusta looking for a third straight major victory .\nisis has overrun villages in northern iraq , leaving many christians homeless . assyrians have formed their own militia , dwekh nawsha , to fight isis . the militia has only assembled and trained 40 fighters . many assyrians see the fight with isis as a final battle for survival .\nheads of state from 35 countries in the western hemisphere have met every three years since 1994 . the vii summit of the americas was supposed to be all about the symbolic handshake between the united states and cuba . but insert venezuela into the mix and panama city , panama , quickly turns into a `` triangle of tension ''\nisrael held a two-minute silence at 11am for fallen soldiers and civilians on wednesday . theatres and cinemas are closed by law on the memorial day , which is held the day before israel 's independence day . the day has been expanded to include security personnel who have died protecting israel from terrorist attacks . in total , israel remembers 23,320 fallen since 1860 in fighting for the national cause .\na notorious brothel in fitzroy has gone on sale for $ 1.3 million . the edwardian-style building and shopfront was once owned by wei tang . she was convicted in 2006 of keeping five thai women as sex slaves . the brothel , formerly known as club 417 , has six bedrooms each with its own shower or spa . it is currently between a t-shirt shop and television repair company . the property stopped operating as a brothel in december 2013 and been vacant ever since .\na second robotic probe sent into the crippled fukushima nuclear plant has captured images of a strange green glow . tokyo electric power company -lrb- tepco -rrb- deployed the second remote-controlled robot last week after the first one broke down . the robot detected lower radiation levels and temperature than expected , an indicator that cooling systems were working effectively .\noscar winner plans another tv mix of romance , class struggle and social snobbery . based on work of anthony trollope , one of britain 's greatest novelists . lord fellowes , 65 , has revealed he is to turn trollope 's 1858 novel doctor thorne into a new three-part historical drama for itv . tv insiders say hugh bonneville and lily james would be ideal as thomas thorne and mary .\nzachary davis was 15 when he bludgeoned his mother melanie davis , 46 , to death with a sledgehammer in august 2012 . he then set his family home ablaze in an effort to also kill his elder sibling josh , 19 , who he claims raped him . davis , now 17 , is on trial for murder and attempted murder . his defense team admit that he was suffering from mental illness at the time of the attack . josh davis , 19 and the victim of sexual abuse , spoke in court on tuesday and said that he and his brother were close .\nceltic lost 3-2 to inverness in the scottish cup semi-final on sunday . virgil van dijk scored in the match but wants to win the league . celtic can reopen an eight-point lead over aberdeen by winning at dundee on wednesday night .\nsaracens are only english team left in the champions cup . brian o'driscoll believes huge investment is needed to turn english clubs back into a european force . but he admits scrapping the salary cap would be dangerous . french league becoming a honeypot for billionaire financiers .\ngirls at huizhou integrated high school in china undergo self-defence training . the girls aged between 16 and 18 are taught how to use a knife by a former special forces solider . the knives are not real but have retractable blades to prevent injury . the school has purchased 250 of the knives which have a plastic retractable blade .\ngeorge groves will fight badou jack for the wbc world super-middleweight title . jack beat anthony dirrell on points to take the title on friday night . danny jacobs stopped caleb truax in the 12th round to successfully defend his wba middleweight title on the undercard .\na new poll on modern families reveals almost a quarter of brits prefer their pets to their in-laws . 22 per cent cited their pets as a close family member , above in-law -lrb- 21 per cent -rrb- but below grandparents at 26 per cent . research commissioned by matalan for its made for modern families campaign .\nofficer michael slager was charged with murder in the shooting death of walter scott . frida ghitis : slager shot scott like a dog , but the man was shot like a runaway slave . she says police use of deadly force is a black and white issue . ghitis says police deadly force epidemic has not died .\nengland completed four days of warm-up action in st kitts on thursday . jonathan trott failed twice with the bat during the match . trott looks set to open the batting with alastair cook in the first test . england will leave st kitt 's and head to antigua for the first test on monday .\nactor says he 's now too busy to chase women . says he 's not even interested in the chase any longer . has been linked with a string of famous beauties . but now says he is a devoted father to his two sons james and henry . he is about to appear in the second series of true detective .\nengland face west indies in second test in grenada on april 21 . moeen ali will join up with the squad after recovering from a rib injury . moeens struggled with the short ball against sri lanka and india last year . he says he is ready to take on australia 's two left-arm mitchells .\naljaz bedene has won his first match since becoming a british citizen . the slovenian-born player beat maxime chazal of france in the opening round of qualifying for the casablanca open in morocco . bedene is now the british number two behind andy murray .\nyahya rashid , 19 , was arrested at luton airport yesterday . he was charged with preparing acts of terrorism under terrorism act 2006 . he is due to appear at westminster magistrates ' court today . the teenager was arrested as he entered the uk having landed from istanbul .\nheadteacher linda shute has banned children from drinking all other drinks . she says the rule is to protect the long-term health of pupils at rowdown primary school in new addington , south london . but some parents believe the water-only rule is too strict , claiming many children go all day without a drink because they do not like water .\ndawn milosky , 45 , has been charged with driving while intoxicated and having an open container of alcohol in the vehicle . she was airlifted to morristown medical center , but police say she is now doing okay . the incident happened in kinnelon , new jersey , on thursday night . police were called to a report of a woman driving erratically . when they arrived on scene , smoke was already coming out of the woman 's white 2006 toyota solara convertible , which had been turned upside down .\npolice : the suspect called for an ambulance sunday morning , saying he 'd been shot . but authorities found more than a man with a gunshot wound in his thigh . they also found weapons , ammunition and evidence of his plans to target churches , a prosecutor says . the man is identified as sid ahmed ghlam , 24 , who was under surveillance , an official says .\nnew england patriots quarterback tom brady posted a picture of himself lying in a hospital bed in a full body cast on wednesday . he had shared a video on saturday of himself jumping off a cliff into a river during his vacation . but according to the caption , it was n't the cliff jump that got him but michael jordan , who was spotted playing some pick-up ball with the football player several days ago . brady wrote : ` jordan 's crossover no joke ! '\nu.s. president barack obama condemned china for building islands . he said beijing was ` using its sheer size and muscle ' to bully countries . but chinese leadership has hit back saying washington has the greatest muscle . comes as satellite images show chinese vessels dredging sand onto land masses near the spratly islands in the disputed south china sea . many other countries in the region claim the area .\nkick it out have released their findings on the discrimination faced by premier league clubs and their players online . mario balotelli received the most abuse with more than 8,000 messages . arsenal 's danny welbeck received 1,700 messages , 60 per cent of which related to sexual orientation . chelsea received the greatest volume of discriminatory messages on social media .\nswansea city defender neil taylor is wanted by west bromwich albion . the baggies will make a # 3million move for the welshman this summer . swansea are willing to listen to offers for the 26-year-old . tony pulis is keen to sign taylor to fill in at left back .\nnewzoids puppet show sees prince george cast as a blinged-up rascal with a tattoo . teasers for itv show show duke and duchess of cambridge worrying about their son . the 20-month-old addresses a female doctor with ` oi , oi ! hello treacle '\ntoby perkins , mp for chesterfield , is deputy chairman of labour election campaign . email reveals interns are paid just # 25 per week for 12-hour shifts . labour 's 2015 manifesto has sought to champion working-class britons . but mr perkins said the interns are volunteers and will not be paid .\namanda knox 's biographer , douglas preston , claims that the ordeal has left her penniless and traumatized . preston says that knox is suffering from ptsd and is seeking professional help . knox and her ex-boyfriend , raffaele sollecito were exonerated by the italian supreme court in late march . the 27-year-old spent four years in prison after being convicted of the murder of british student meredith kercher . preston claims that knox and the family have spent millions fighting her conviction .\nwilliam kerr absconded from a bail hostel in hull after he was released from prison . he was jailed in 1998 for the murder of maureen comfort in leeds crown court . kerr was apprehended in the street in waterloo , south london , on friday . arrest came after a # 5,000 reward was offered for information about his whereabouts on bbc 's crimewatch .\nmackenzie moretter has a rare genetic disorder called sotos syndrome that has delayed her development . she told her parents she wanted a ` big-girl party ' for her tenth birthday . but after not getting rsvps and having families of mackenzie 's fourth-grade classmates cancel , her mother jenny moretters decided to do something about it . she posted on facebook and more than 700 people joined an event titled , ` mack mckenzie 's birthday party ' strangers of all ages showed up at a shakopee park on saturday to celebrate mackenzie . the party was moved to a local park , where city officials offered to host the family .\nnorwich scientists have developed an adaptor for colour blindness . eye2tv can be plugged into any hdmi port on a tv or computer monitor . a remote control or app then adjusts the colour adjustment . it allows colour blind people to watch shows they otherwise could n't . the subtle effect is such that someone with normal vision will barely notice any change in the picture .\nmanchester derby will take place in the late afternoon on sunday . police say they have no objections to the 4pm kick-off time . chief superintendent john o'hare says the decision is down to good behaviour . merseyside police launched a legal challenge after everton v liverpool .\nshooting victim reportedly known as karl kay on facebook . the 39-year-old man was shot numerous times while sitting in a car in his mother 's altona meadows driveway at about 2am on sunday . he died shortly after paramedics arrived at the scene . police believe the attack was targeted and confirmed the victim was known to police .\nprosecutor nafir afzal said teenagers see isis as ` pop idols ' like one direction and justin bieber . said children are ` manipulated ' by islamists and britain needs new approach . said teenagers are at risk of ` jihadimania ' and warned ` another 7/7 ' could happen unless britain makes sweeping changes to the way it tackles terrorism .\nbradley dew , 26 , had been drinking with his friend at a pub in faversham , kent . he had borrowed his mobile and returned to his friend 's home to claim it had gone . dew pushed his friend into a wall before striking him across the face . he then stole # 10 out of his wallet and fled the scene . dew was found guilty of robbery and assault and jailed for four years .\naston villa beat liverpool 2-1 in the fa cup semi-final at wembley . randy lerner was expected to attend the game , but missed it . the 53-year-old american has been trying to sell the club since last may . villa boss tim sherwood said he had not spoken to lerner yet .\nengland closed on 373 for six on third day of second test against west indies . joe root scored 118 as england closed on 74 for no loss at stumps . marlon samuels gave ben stokes a send-off salute after he was out . the gesture was seen as good ` banter ' by geoffrey boycott .\nlamborghini gallardo crashed into a tree and a bollard in beaumont leys , leicestershire . one of the rear wheels flew off the car and narrowly missed a man walking his granddaughter home . witnesses claim the driver laughed and said he would ` buy another one tomorrow '\nchristopher wheeler , 54 , was headmaster at the exclusive tower hill school in delaware . he was arrested after police raided his $ 350,000 mansion in october 2013 . found more than 2,000 images and videos of boys engaging in sex acts with men . investigation stemmed from allegations he had sexually his adopted son , aspiring professional golfer nikolai , and two other teenagers . nikolai has denied the allegations and wheeler has not faced abuse charges .\nxie xu , 18 , carries his 19-year-old classmate zhang chi to school each day . zhang suffers from muscular dystrophy , a condition that weakens skeletal muscle . xie , who stands at 1.73 meters tall and weighs 75 kilos , decided to carry his friend around the school 's campus to make sure he was able to attend all of his classes . both young men are hard-working students and are at the top of their class at their high school .\njoey essex joined nigel farage on a boat trip in grimsby this morning . the towie star said he did n't understand much about politics . but he said ukip leader was a ` really , really reem guy ' mr farage said : ' i think that 's good ... i 'm not sure ' essex is speaking to the leaders of the four major political parties .\nobama aides katie fallon and jen psaki are expecting babies in may and july of this year . fallon is currently serving as the president 's legislative director . psaki started her new job as white house communications director on wednesday after serving in the same position for the state department .\ncarl bradey was sleeping in his palmerston north home when it caught fire . the 25-year-old smashed through a window to rescue a three-year old girl . he suffered horrific burns to his whole body and has undergone four operations . bradey has been left with nerve damage that has left him unable to feel anything in his right arm . the fire was started by a candle in the house and took fire fighters 30 minutes to extinguish .\nohio-based national school safety and security services reviewed more than 800 school threats covered in the media during the first half of the 2014-15 academic year . researchers found that about one-third of cases involved violent remarks sent anonymously via text message , social media , email or other online means . law enforcement officers say the use of the modern technologies has made it that much harder to determine if a threat is real and to find the culprit .\nbruno fernández arrested after police searched his home in madrid , spain . officers found blood stains and what is thought to be a human tooth . 32-year-old has been dubbed the ` majadahonda ripper ' in connection with disappearance of adriana giogiosa , 55 , who was reported missing by her brother .\nresearchers from the university of bristol have found that male stegosaurus had different shaped plates running along their backs . they say the plates could have been used to show off their prowess in much the same way as peacocks do today . the research has also helped to answer a problem that has baffled palaeontologists for decades .\ncountry singer tim mcgraw has agreed to headline a connecticut concert for a pro gun control charity . the concert will raise money for sandy hook promise , which was formed in the aftermath of the 2012 school shooting that killed 20 children and six adults . anti-gun control commenters have said that mcgraw risks losing his career the same way female country trio the dixie chicks never bounced back from criticizing president george w bush .\njoan langbord and her sons found the coins in a bank deposit box in 2003 . the government claimed they were stolen from a philadelphia mint in 1933 . a jury sided with the government but an appeals court overturned the verdict . the coins were never released to the public after the us went off the gold standard . a surviving coin sold for $ 7.6 million in 2002 .\nhouston city codes prohibit drug felons from driving cabs . duncan burton , 57 , served 14 years in prison for cocaine possession . he was released in 2012 after his sentence was commuted . uber said burton passed all their background checks before working for them . but the firm only review sentences up to seven years old . burton was arrested last week and charged with sexual assault .\nparis-based designer martin grant will refresh the uniforms worn by qantas ' domestic and international pilots . a key focus of the redesign will be the female uniform . the last time the uniform was redesigned was in 2003 by australian designer peter morrisey . the new uniforms are expected to be rolled out next year .\ndiego maradona kept in shape by boxing training . maradonna guided argentina to world cup glory in 1986 . the 54-year-old has not worked since leaving al-wasl in 2012 . mar adona has undergone gastric bypass surgery . he is now keeping his weight in check with boxing training .\nrotherham beat brighton 1-0 at the new york stadium on monday night . matt derbyshire scored the opener after eight minutes . the win moves rotherham to just two points behind the visitors in the championship . brighton remain in the relegation zone after a fifth straight defeat .\nbrendan rodgers has backed himself to improve liverpool next season . liverpool lost 2-1 to aston villa in the fa cup semi-final at wembley . rodgers ' side take on west bromwich albion on saturday . jordan henderson is set to make his first appearance since signing a new five-year deal at the club .\namir khan has been in talks with adrien broner over a possible fight . the former lightweight world champion posted a video of the pair on instagram . khan is expected to announce his next opponent imminently . british rival kell brook is set to feature on his agenda for a wembley blockbuster next year .\ndashcam footage shows a patrol car stopping in spartanburg , south carolina . deputy michael hubbard from the spartanburg county sheriff 's office is seen approaching the unidentified female on the i-26 . he then puts his arms around her and then pulls her away from the drop .\nstuart armstrong backs jackie mcnamara to turn around dundee united 's season . mcnamara has faced a furious fan backlash in the past week . the tannadice boss has been under increasing pressure from fans . united have won just once since selling armstrong and gary mackay-steven .\nmanchester united beat manchester city 4-2 at old trafford on sunday . united move four points clear of city in the premier league table after derby win . united are now on course for a champions league return under louis van gaal . city have gone from joint top on new year 's day to 12 points off the leaders .\nrob edmond , 36 , ran 517 miles from perthshire to wiltshire . he rolled the whisky barrel for 12 hours a day and stopped for comedy gigs . zara tindall , 33 , was at the finish line to watch the personal trainer cross . she pretended to pull her husband mike along in the barrel-pulling harness .\nwest brom take on leicester city on ` astle day ' in premier league . former striker jeff astle died in 2002 at the age of 59 . baggies are commemorating launch of jeff astel foundation . west brom wore replica of 1968 fa cup winning kit . astle scored winner against everton in fa cup final .\nbenik afobe scored his 31st goal of the season to rescue a point for wolves at molineux . wolves defender richard stearman put ipswich ahead with an own goal in the 21st minute . afobe 's strike kept wolves in the championship play-off hunt .\nbush 's former press secretary dana perino said the mother yelled at the president and asked him why it was her son instead of his . perino was accompanying the former president as he visited wounded soldiers at the walter reed hospital in washington d.c. . she said the woman 's husband tried to calm her and that , at first , the president tried to offer the mother some words of comfort before he just ` stood and took it ' perino , who served in the bush administration for seven years , said the president had been in no hurry to leave the soldier 's room as the mother screamed at him .\niowa lawmaker henry rayhons will stand trial for sexually assaulting his wife , who died last august . the charges were filed days after she died . henry rayhon 's family , this was decided by her daughters from a previous marriage . the couple married seven years ago in their northern iowa hometown . donna lou rayhon , 78 , was moved to a nursing home last year . she was suffering from dementia and alzheimers .\ndoaa and umm were forced to flee from raqqa to southern turkey this year . they revealed they used to be heavily involved in punishing others . said they used to give 60 lashes to those who tried to flee and 40 for not wearing proper dress . now the pair , who are living in turkey illegally , are scared they will be discovered . the al-khansa brigade operates as an ultra-oppressive police force .\nhillary clinton finds a lot to love , and some distance from president obama 's leadership style . a top policy role for maya harris could signal a focus on women of color . some republicans worry that a change in the 2016 primary calendar could hurt them . and a gop activist floats the idea of a walker-rubio ticket .\nfootball clubs can look to championship and below for talent . here , sportsmail looks at examples of players who have represented the lower leagues well in the premier league . aaron cresswell , john stones and leonardo ulloa are among those who have proved a good fit for the premier league . dwight gayle has gone eight games without a goal for crystal palace .\nmanchester city are on incentivised contracts to stay within financial fairplay rules . sergio aguero , david silva , joe hart and yaya toure could miss out on a big payday if city fail to reach the group stages of europe 's top competition . manuel pellegrini 's side are currently fourth in the premier league .\neverton beat manchester united 3-0 at goodison park on sunday . james mccarthy , john stones and kevin mirallas scored for the toffees . louis van gaal said his players lacked motivation and aggression . the dutchman said he was worried after watching their pre-match warm-up .\npolice release more details on freddie gray 's encounter with police . they say he was arrested without incident on april 12 . less than an hour later , officers called for a medic . he slipped into a coma , dying a week after his initial arrest . the events surrounding gray 's meeting with police remain unclear .\naccording to the game of thrones books , valyrian steel is a form of super strong and light metal forged when the valyrians governed essos . it reigned for 5,000 years before a disaster struck the empire , known as the ` doom of valyria ' ned stark , played in the hbo adaptation of the books by sean bean , had a valyri sword called ice . in the latest reactions video for the american chemical society , materials scientist ryan consell studied which materials could create a similar sword . he concluded that valyian steel is n't a steel at all , but instead is a metal matrix composite .\nqpr won 4-1 at west brom on saturday to boost their survival hopes . chris ramsey 's side face aston villa on tuesday night . qpr are 19th in the premier league , three points adrift of safety . ramsey believes his players can get a good result at villa park .\nnewcastle united lost 3-1 to tottenham in the premier league on sunday . thousands of fans boycotted the game in protest at mike ashley . jamie carragher says he 's alarmed at the state of the club . he says ashley is only interested in making money .\nfootage captured by rumble user sean c shows bourbon the doberman enthusiastically licking a baby boy on the face and nose . at one point the youngster can barely breathe as his whole face is given a slobbery wash . ` bourbon easy ! off ! ' a man filming the scene is heard yelling .\nharry kane has been in the england squad for recent games against lithuania and italy . but tottenham fear the striker may suffer burnout ahead of the u21 european championships . mauricio pochettino wants to meet with the fa before making any decision on kane 's availability . tottenham boss wants to discuss his availability with gareth southgate .\nprincess beatrice has been seen at the bahrain grand prix . the 26-year-old was spotted in the gulf state with her long-term boyfriend . she was with the crown prince , whose regime has been accused of repressing pro-democracy activists . it is her fourth holiday in a month , after trips to new york , verbier and florida .\nthe famous tiger temple just outside of bangkok has been forced to shut . wat pa luangta bua yanasampanno has been told that their 147 tigers must be handed over to the department of national parks , wildlife and plant conservation by friday . the temple did not have permits for the cats , according to the department chief . the tigers will be rehoused at two wildlife breeding centres in ratchaburi province .\nmateo musacchio suffered a broken ankle in villarreal 's 1-1 draw with getafe . the argentine defender was carried off on a stretcher with 13 minutes to go . diego castro scored the only goal of the game for getafe in the second half .\neamon sullivan and girlfriend naomi bass got engaged in japan . the couple met in perth in 2011 and are now back in perth . sullivan proposed to bass beneath a cherry blossom tree in kyoto . the former swimmer has won two silver olympic medals . he previously dated fellow swimmer stephanie rice for two years before the couple split prior to the beijing olympics in 2008 .\nmen are more competitive than women in the 5,000 metre race , study finds . but women are more committed to their academic lives , researchers say . this may explain why boys are often seen as being more competitive . study could have implications for the workplace where greater gender diversity could bring advantages . researchers from cnrs-gate in lyon and the university of california analysed the behaviour of both sexes .\nharvey weinstein 's wife georgina chapman , 38 , is furious and humiliated by the allegations that he groped a 22-year-old italian model , according to a new report . she does not want the accusations tied to ambra battilana and her husband to further embarrass their children or interrupt her business , a source said . a spokesman for chapman denied the marriage was in trouble and said they had spent the weekend together .\ntwo-year-old girl was abducted from a car wash in gardena , california , on april 2 . she was found two hours later naked and with injuries in a restaurant parking lot . police initially said the driver was a serial predator . a neighbor saw cctv footage of the car and tipped off police . they used dna evidence to link michael david ikeler , 36 , to the crime . he has been charged with three counts of sexual assault on a child .\nsevere weather is predicted for the midwest and plains on thursday and friday . severe weather can be more dangerous during the night , cnn meteorologist says . severed storms will hit illinois and missouri , and wind and hail will continue to be moderate in those states .\nmanchester city striker sergio aguero scored against borussia dortmund 's marco reus . the pair went head-to-head to showcase the new puma evospeed 1.3 graphic . the square pitch had four different goals that opened and closed . the boot took inspiration from the japanese dragon .\na new video has emerged showing a group of female jihadis in syria . they are shown practising with their machine guns and learning how to march as a unit . the women are fully veiled , making it hard to identify individuals . it is believed several of the women could be british nationals .\nfloyd mayweather v manny pacquiao will be the biggest fight of all time financially and the most significant this century . here is a look at the six fights that shaped boxing history . the no mas fight was the fight that made sugar ray leonard the world champion . roberto duran quit after being caught in the face in the eighth round .\nnew tool downloads a history of every google search you ever made . visit history.google.com and log in with your google account . click onto a calendar view to take a look at what you searched for on any given date . the settings button on the top right corner can download the database .\ntony abbott says eu must follow australia 's ` stop the boats ' policy . he says harsh measures are the only way to stop migrant tragedies . operation sovereign borders involves turning back boats at sea . it has proved controversial but mr abbott says it is the only solution . up to 900 people died when a fishing boat capsized in the mediterranean .\ndzhokar tsarnaev is set to be sentenced to death or life in prison . jessica kensky and patrick downes lost a leg each in the april 15 , 2013 , blast . they say they oppose the death penalty and urge others to ` overcome the impulse for vengeance ' the couple 's statement follows a similar appeal made by the family of martin richard , who was killed in the blast .\nengland captain alastair cook was dismissed for 13 by jerome taylor . michael vaughan was watching cook in the commentary box . vaughan has been heavily linked with the newly created role of director of england cricket . the former england skipper has made no secret of his desire to replace paul downton .\nhuman remains were discovered in gough 's cave in somerset 14,700 years ago . researchers found evidence that the bones had been cut from them and chewed . skulls had also been carefully shaped into cups or bowls . findings suggest people living in the cave indulged in ritual cannibalism .\ngary lincoln , 48 , from port talbot , wales , was working in a house in cardiff . his jacket sleeve got caught in the blade and his hand was severed at the wrist . he put in in his sleeve ` to hold everything together ' and was taken to hospital . surgeons operated on him for more than seven hours earlier this month .\nboy , from memphis , tennessee , posts pictures of ` gang life ' with guns and drugs . he has amassed more than 3,000 followers with pictures and videos . critics have called his stunts ` sad ' and ` disappointing ' he hit back saying the backlash is ` stressing out ' his mother .\npresident obama is set to meet with cuban leader raul castro in panama . hillary clinton is preparing for a big campaign launch . the robert menendez indictment could have ripple effects on other candidates . gop operatives are getting calls from potential candidates . the 2016 race is getting closer .\nashya king had surgery to remove a tumour in southampton last july . his parents then took him to prague for proton beam therapy . they said he did not need chemotherapy as his cancer was in remission . consultant dr peter wilson said it was ` deeply unfair ' that he had to say no . he said chances of survival could have been halved by decision .\na trip to new york and iceland reveals the city 's new cultural vibe . new york 's contemporary arts scene is largely based in brooklyn and queens . the city is in the throes of a cultural revolution - but moma is still brilliant . iceland is still recovering from its economic meltdown but shows signs of recovery .\ngirlfriend of germanwings pilot andreas lubitz is too scared to return to her home town of montabaur . kathrin goldbach and her family are said to be afraid of being blamed for the crash . the 26-year-old maths teacher , her rescue volunteer brother andreas and their parents have told friends they do not plan to return .\ndr. sanjay gupta answers readers ' questions about medical marijuana . readers asked about the benefits of medical marijuana and the science behind it . he said the drug could help with everything from life-threatening illnesses to chronic pain . gupta : teaching about medical pot remains taboo in medical school .\njoshua corbett , 39 , is charged with stalking and breaking into sandra bullock 's los angeles home last june . on thursday , a judge will decide whether there is enough evidence for corbett to stand trial . the actress called police after seeing a man in her home heading for the attic . bullock hid in her bedroom closet and sounded panicked and tearful at times as she guided police into her house .\nlady hale of richmond wants bitterness taken out of matrimonial disputes . she wants couples to sort out arrangements for children and money before divorce . around 120,000 couples divorce in england and wales each year . couples currently have to cite one of five reasons for divorce . lady hale , 70 , was behind the move for ` no fault ' divorce in 1990s .\nstaff at post office in chadderton , manchester , refused craig roberts entry . the 36-year-old was told he had to leave his guide dog bruce outside . he was left feeling ` angry and shocked ' by the incident . the post office has issued an apology ` for any distress caused '\nhelen dunn , 78 , found cover images in sunday mercury newspaper . was 17 years old at the time of the shoot for raunchy lads ' mag . mother-of-two and grandmother from stourbridge , west midlands . she went on to marry manchester united footballer alan dunn three years later .\ndeath toll in nepal 's worst earthquake in 80 years climbs to 3,000 . families camped out in kathmandu 's airport , waiting for news of loved ones . police and military presence in city , keeping people away from rubble . residents still clinging to hope that loved ones are still alive .\nhillary clinton 's security detail arrived at a fruit processing company in norwalk , iowa on tuesday with a second scooby van . the two vans are mechanically identical , but the one with the new york license plate has a different design . the secret service often uses duplicates of vehicles to confuse and discourage would-be attackers . the president 's customized helicopter , marine one , travels with two decoys .\nreal madrid defeated granada 9-1 in la liga on sunday . cristiano ronaldo scored five goals for the first time in his career . karim benzema also scored twice in the rout at the bernabeu . the frenchman said his team-mate ronaldo is a ` phenomenon '\nipswich town lost 2-1 to huddersfield in the premier league on saturday . nakhi wells and james vaughan scored in the first half to put the home side ahead . luke varney headed home a late equaliser but it was n't enough for mick mccarthy 's men .\nall the land in the lower 48 states was worth a combined $ 23trillion in 2009 . washington dc had the greatest land value , with a staggering $ 1,050,000 per acre . california was the most valuable state overall at $ 3.9 trillion .\ncriticism comes after first episode of hit series was broadcast in u.s. for first time . catholic news service said it adopts ` narrow , revisionist and anti-catholic point of view ' criticised depiction of catholic martyr sir thomas more as ` sleazy , mean-spirited '\ngemma the pit bull was filmed at home in california being fed some treats . but in a bid to trick her , her owner throws a broccoli spear into the mix . immediately the canine pulls a look of disgust as she chomps on the vegetable .\nricardo moniz is the new manager of league one club notts county . moniz has six games to save the magpies from relegation to league two . the 50-year-old has signed a three-year deal at meadow lane . the club have confirmed that dave kevan will be moniz 's assistant .\nap mccoy will have two rides on his final day as a professional jockey at sandown . the 20-time champion jockey has been booked for mr mole in the grade one ap mccoy celebration chase at 3.15 . his last ever mount will be box office in the bet365 handicap hurdle .\na 15-year-old boy is pulled from the rubble of a building in kathmandu . he was buried for five days under the rubble . the boy was rescued by helicopter from a village in nepal . a u.s. special operations forces team rescued 30 people , including three americans .\nlewis hamilton 's younger brother nicolas suffers from cerebral palsy . nicolas is preparing to become the first disabled competitor to compete in the british touring car championship . hamilton admits the family are ` very stubborn ' and do n't always welcome advice . the 30-year-old briton won his third grand prix of the season in bahrain .\ncharlie adam scores stunning goal from 66 yards against chelsea . the scottish midfielder hit the ball with his left foot after noticing thibaut courtois well off his line . the goal will go down in history as one of the greatest the premier league has seen . it has been compared to other legendary long-range strikes from david beckham and xabi alonso .\nrecord numbers of fans have descended on houston for shell houston open . jordan spieth has risen to number four in the world after 18 months on the pga tour . fellow american phil mickelson is also in good form ahead of the masters . englishmen justin rose and paul casey are also in the field .\ntony pulis returns to crystal palace on saturday after guiding them to promotion last season . west brom are currently bottom of the premier league table , seven points from safety . pulis has never managed to guide a team into the top half of the table . he is the only manager in the premier league with more than 12 months experience who has never finished higher than 11th .\nryan hardie scored a brace on his full debut for rangers against dumbarton . the 18-year-old had made just four substitute appearances before the match . rangers boss stuart mccall has promised to give academy players a chance . mark wilson gave dumbarton the lead after just two minutes .\nduke and duchess of cambridge 's second child could be the first royal to be born outside london for 85 years . st mary 's hospital in west london is the first choice of venue for the delivery . but two other hospitals have been put on standby in case the duchess leaves the capital . kate is nearing the end of her pregnancy and is currently staying at kensington palace .\nthe man , named as mr zhang , was driving to visit his mother in anhui province . he saw an injured woman lying by the side of the road but decided stopping would be too much inconvenience . when he returned to the scene of the accident he found his mother covered in blood and dying . police have arrested a local over the hit-and-run .\npolice questioned five children after 623 fires ravaged 600 acres of fields and woodland in one month . fire crews in south wales say they have been stretched to breaking point by the ` unprecedented ' scale of destruction . officers yesterday called on parents to report their children if they suspect them of lighting fires .\nlatvian-based drive eo has created a vehicle , named eo pp03 , which runs on 50 kwh lithium-ion battery pack . it drives six yasa-400 electric motors and produces 1020 kw -lrb- 1368 horsepower -rrb- it is capable of producing 1020 . kw -lrb- 12.5 horsepower -rrb- and speeds of up to 160 mph -lrb- 260 km/h -rrb- the car is set to compete in the pikes peak international hill climb in june .\nfor a limited time starbucks will be introducing the s'more frappuccino which is scheduled to hit stored on tuesday , april 28 . the drink will be made with a combination of marshmallow whipped cream , milk chocolate sauce , graham crackers , coffee , milk and ice . starbucks says that the drink is inspired by the ` the nostalgic summer experience of roasting s'mores '\nkevin bollaert , 28 , was sentenced to 18 years in state prison after he was convicted in february of 21 counts of identity theft and six counts of extortion . he ran a website that allowed people to anonymously post nude photos of people without their consent . he then charged victims to remove the images and their personal information . victims were flown in from around the country to be involved in the prosecution and some have now said that they no longer feel ashamed for sending nude pictures .\nyemeni citizens are fleeing the capital , sanaa , as saudi planes bomb the city . the houthi rebels control the airport , including the airport . air india is especially active because so many indian nationals work in other nations . over the last few days , india has evacuated some 2,500 people from yemen .\nnatasha hope-simpson , from nova scotia , canada , has a prosthetic leg that helps her walk . she has received weekly angry notes on her windshield scolding her for parking in a handicap space . hope - simpson is an artist and uses her prosthetic limb to create wearable art .\njameela jamil , 29 , had high levels of mercury in her blood . tests suggested it was down to the ten amalgam fillings she 'd had as a child . she spent # 3,000 on having them all removed and replaced with white fillings . dental amalgam is banned in countries such as sweden and norway .\nparents of three obese children in india say they are ` terrified ' of their children dying . yogita , five , and anisha , three , and their 18-month-old brother harsh weigh 5st 5lbs -lrb- 34kg -rrb- , 7st 8lbs -lrb- 48kg -rrb- and 2st 5 lbs -lrb- 15kg -rrb- respectively . they eat enough food to feed two families in a month . father rameshbhai nandwana , 34 , is planning to sell his kidney to earn the money needed to see top specialists .\neden hazard could be named pfa player of the year this weekend . zinedine zidane has revealed his admiration for the chelsea star . the real madrid reserve boss has said he likes hazard more than cristiano ronaldo and lionel messi . hazard signed a new five-year deal at stamford bridge in february .\niain mackay , 40 , died in hua hin , 125miles southwest of bangkok . he was found bleeding from the head after kicking a mirror in a pool bar . his thai girlfriend nilobon patty , 35 , has been accused of ` indirectly causing his death ' she claims she was not with another man when mr mackay appeared .\nsanto seat by sii deutschland won the passenger comfort hardware award . the chair is one-and-a-half times the width of a standard aircraft seat . it is designed to make plane travel more comfortable for obese passengers . the santo chair beat off competition from 21 finalists to win the award .\nraheem sterling is attracting interest from chelsea and arsenal . the 20-year-old is yet to sign a new contract at anfield . sterling has claimed he is not motivated by money in stalling over a # 100,000-a-week contract . liverpool manager brendan rodgers insists sterling is ` going nowhere ' in the summer .\njoe launchbury is hopeful of making his comeback against leicester tigers . the 24-year-old has been out since october with a bulging disc in his neck . wasps face the tigers at the ricoh arena on may 9 . launchbury still has aspirations of playing for england at the world cup .\nliverpool play aston villa in the fa cup semi-final on sunday at wembley . daniel sturridge is a major doubt to feature for the reds due to a hip injury . comedian darren farley impersonated michael owen for a bt sport promotional video . the liverpool striker was left in stitches by farley 's portrayal of owen .\nhudson swafford shot a 6-under 66 for a share of the zurich classic lead with boo weekley . swaffords had an 11-under 133 total at tpc louisiana . jason day , ranked sixth in the world , was 5 under for the round through 14 holes . second-round play was scheduled to resume saturday at 8 a.m. cdt .\ncalvin harris has amassed a fortune of # 70 million since bursting onto the scene eight years ago . the 31-year-old is the 21st most powerful celebrity on forbes magazine 's celebrity 100 . he was born adam wiles in 1984 in dumfries , scotland , and is 6ft 5in tall .\na source says bobbi kristina brown remains unresponsive . her grandmother says she has `` global and irreversible brain damage '' the 22-year-old is no longer in a medically induced coma , the source says . `` we can only trust in god for a miracle , '' cissy houston says .\ntwo up , australia 's iconic game of chance , is legal to play on anzac day . punters use the ` double up ' approach to win , where if you lose , you double your bet . it 's a system of betting which originated in france and is used by many punters on anzac day throughout australia .\nthe 7.8 magnitude earthquake hit nepal 's capital kathmandu yesterday morning . the historic city is recognised as a unesco world heritage site . but several of the most recognisable buildings in the city , including towers and temples , now lie in rubble . more than 2,500 people died in the quake as buildings collapsed . the dharahara tower , which was built in 1832 , was almost totally destroyed .\njapanese artist megumi igarashi was charged with obscenity . she was accused of distributing plans of how to build a vagina kayak . igarashi said she had done nothing wrong in handing out the code for a 3d printer . she could face up to two years in jail if convicted of obscenities .\nlyrid meteor shower was visible around the world but best seen from europe last night . the meteor shower has been observed for the past 2,700 years . it peaked overnight with between ten and 20 meteors an hour . the cosmic show will continue on into saturday , so it is still possible to catch a glimpse of some meteors if you did n't last night , say experts .\nthe fashion world is raving about boden 's latest collections . clare goldwin admits she will sometimes fork out for boden for her daughter . but when it comes to buying clothes for herself , she avoids them . she does n't want to be labelled a boden ` yummy mummy '\n10 doctors urged columbia university to sever all ties with him . the celebrity doctor used thursday 's episode of the dr. oz show to hit back and claim that the criticism he 's received is part of a conspiracy . he said his show 's purpose was ` not to talk about medicine ' but to discuss ` the good life ' oz also denied having it in for genetically modified foods . ` that is not true . i have never judged gmo foods , ' he said . a report revealed how some of the 10 doctors ` have big ties to big industry '\na woman was reportedly spotted threatening people with a dildo in each hand . the altercation took place outside roches family hotel in grafton . graft on police confirmed they attended the scene . a spokesperson from roches hotel denied there was a fight outside the venue .\naustin hatfield , 18 , found the venomous water moccasin , also known as a cottonmouth , near his wimauma , florida home last week . he 'd been keeping the serpent in a pillowcase when it escaped over the weekend and slithered across his stomach . hatfield was rushed to a tampa hospital in critical condition .\nshrewsbury and telford hospital nhs trust paid # 183 an hour for one shift . figure represents double the rate for a neurologist and was revealed following a freedom of information request . trust has been criticised for wasting taxpayers ' money . but director of nursing said temporary staff had to be used to cover a shortfall in trained nurses .\nhiv , hepatitis c infection rates have risen in rural indiana and kentucky . authors : syringe exchange programs help curb spread of these diseases by providing clean needles . they say the programs have been effective in reducing hiv and hepatitis c transmission among injection drug users . writers : syring services programs save millions of dollars in hiv treatment costs .\ndavid cameron says when it comes to immigration , fears and worries remain . he says he is not one of those politicians who ` get ' how people feel about immigration . he said he had a ringside seat on labour 's complete failure on immigration in 2001 . cameron said under the conservatives , two-thirds of job growth now benefits british citizens .\nmuslim couple abused on sydney train say they will press charges . hafeez bhatti , 33 , and his wife , khalida , 26 , moved to australia several years ago . the couple were in sydney for just a day when they were abused by an unknown woman on an airport line train on wednesday afternoon . stacey eden overheard the ranter insulting the muslim couple as ` isis terrorists ' and was recorded on video standing up for the couple . the abusive woman has not been identified despite the video of the attack going viral .\nglory johnson , 24 , and brittney griner , 24 , . were arrested on suspicion of assault and disorderly conduct on wednesday afternoon . they were both released from jail on thursday morning . police were called after a fight at their home in a phoenix suburb turned physical . griner told police she threw a dog bowl at the wall . johnson had what appeared to be a tooth mark on her hand , as well as other injuries to her wrist and fingers , police noted .\narmenians were killed by ottoman turks during world war i. kim kardashian recently toured armenia , spotlighting the killings . pope francis recently called the killings `` the first genocide of the 20th century '' armenians are planning vigils and concerts to mark the anniversary . they hope to persuade president obama to label the killings genocide .\nalleged victim was gang raped in broad daylight on panama city beach . hundreds of people watched but did not intervene , police say . video was found on a cell phone during an investigation into a shooting . delone ' martistee , 22 , and ryan austin calhoun , 23 , have been suspended from college .\nkim callaghan , 39 , piled on the pounds after the birth of her two children . she reached 20st 3lb and was worried that her size was causing her to look like a man . she joined slimming world in secret and lost a stone in three weeks . kim now weighs 9st 10lb and is a slinky size 10 .\nrabbis mendel epstein , jay goldstein and binyamin stimler were convicted of conspiracy to commit kidnapping . they were part of a ring accused of planning and participating in the torture of jewish men who refused to divorce their wives . the men were arrested in october 2013 following an fbi sting operation .\nastronomer claims paul the apostle saw a bright light in the sky in syria . he was blinded for three days and heard a divine voice or sound . the experience so affected paul that he converted to christianity . astronomer dr william hartmann says it matches accounts of the chelyabinsk meteor . he says the light and sound could have been caused by an exploding meteor .\nsix hostages hid in a freezer during the islamist attacks in paris . lawyers claim french media endangered the lives of hostages by revealing their location live on air . amedy coulibaly stormed into the hyper cacher jewish store , killing four and taking others captive before being shot dead in a hail of gunfire .\nbacary sagna left arsenal for manchester city in the summer . the france defender has made only 16 appearances for city this season . city are fourth in the premier league , with arsenal second . sagna says he would make the same decision again if faced with the same choice .\ngerman language teacher used her classes to defend hitler 's domestic record . she also said he was a ` good man who built motorways and liked music ' she has since been suspended from the auguste remoir college in limoges . seventeen of the 20 pupils in her class signed a petition against the teacher .\nhistorian dr jim penman has drawn parallels between modern-day britain and rome in 100bc . he claims britons today have lost the drive for innovation that epitomised the victorian era . he says we 've lived too peacefully for too long and are heading for a collapse .\nmclaren driver jenson button had a disaster in first practice session . button 's mclaren suffered an electrical fault that cut the engine . the briton finished 19th in his mclaren , almost 4.5 seconds off the pace . button fears he will again be at the back of the grid for sunday 's bahrain grand prix .\nleaflet distributed in de facto capital raqqa warning isis jihadis about items of clothing they are no longer allowed to wear . threatens buyer and seller of nike products with punishments ranging from a small fine to whipping or even imprisonment . news comes after one militant decried popularity of nike among isis fighters , comparing the brand 's name and famous ` tick ' logo to wearing a christian cross .\nformer pm said he wants to set up his own ` leaders club ' of ex-statesmen . he also praised the authoritarian military regime in egypt in interview . blair said his ideas of leadership were ` close to a benevolent dictatorship ' tory mp andrew bridgen has branded blair a ` megalomaniac ' for remarks .\n23 people have minor injuries , fire department and ministry sources say . the plane overran a runway while landing at japan 's hiroshima airport , they say . there were 73 passengers and eight crew members aboard the flight from south korea . the airbus a320 may have hit an object on the runway during landing , the ministry says .\nmanchester united have been impressed by michael carrick this season . but louis van gaal knows carrick is in the twilight of his career . borussia dortmund 's ilkay gundogan is a prime contender to fill the role . gundogan 's existing contract expires at the end of next season .\nengland beat south africa 21-14 to win the tokyo sevens world series event . the victory is england 's first since february 2013 . phil burgess , charlie hayter and tom mitchell scored tries in the final . south africa still lead the series after collecting 19 points for runners-up spot .\nsix people arrested in dover on suspicion of syria-related terrorism offences . five men and one woman detained at approximately 8am this morning . four of the men are from birmingham , west midlands , while a 26-year-old man and a 23-year old woman of no fixed abode were also held .\npeter kelly , 34 , was fatally stabbed on tuesday night at the st croix river . he and a friend were fishing when they heard three teens swearing . they confronted the teens and an argument ensued . levi acre-kendall , 19 , was charged with first-degree reckless homicide . he is now facing a maximum sentence of 60 years in prison . kelly leaves behind a wife and five children under the age of nine .\nnancy perry will no longer teach students at dublin middle school in georgia and will retire at the end of the year . she is alleged to have told students that obama is a muslim and that any parent who support him could n't be christian , either . a 12-year-old boy in perry 's class brought the matter to the attention of his father , jimmie scott , who complained to the school . scott said he immediately requested a parent-teacher conference to which perry brought along her husband bill , who sits on the county board of education . instead of discussing perry 's classroom comments , scott says that she and her husband showed him what he described as internet propaganda . ` see , obama is\narsenal are close to signing 16-year-old argentine wonderkid maxi romero . the gunners are in advanced talks with velez sarsfield over a # 4.5 million swoop . romero has been dubbed the next lionel messi and would stay on loan at velez .\nthe classic anzac biscuit recipe is a much-loved classic cookie . femail asked food authors to contribute their spin on the classic anzac biscuit . recipes include sugar-free , chocolate-coated and raw versions . how do they stack up against the original ?\nparty education spokesmen reveal they would have no problem with next education secretary sending their children to private school . tristram hunt , labour 's shadow education secretary , said : ` yes . in certain circumstances ' he also confirmed labour could fire the thousands of ` unqualified ' teachers across the state sector .\nsimona trasca , 34 , made the joke in an interview on national television . she said her latest boob job was so cheap her surgeon could not have paid tax . dr marek valcu claimed her comments were defamatory and sued her . a local court ruled in favour of dr valcu and ordered her to pay compensation .\nthe first print ad , which shows images of various female american apparel employees , has the words ` hello ladies ' emblazoned across the page . the ad appeared in the latest issue of vice and was also posted on the company 's instagram account for international women 's day . according to the ad , 55per cent of american app apparel 's global workforce are women .\nkate thomas noticed her son miles had a different shaped head when he was born . at three months , he was diagnosed with flat head syndrome , also known as brachycephaly . this is when the back of the head becomes flattened , causing the head to widen and the front of the skull to bulge out . doctors believe it is caused by babies sleeping on their back . as it is not medically dangerous , the nhs does not pay for treatment . but mrs thomas raised # 2,000 in just one day to pay for a special helmet . the helmet , which applies pressure to the bulging parts of the brain , costs around # 2000 .\nbenik afobe has scored 31 goals for mk dons and wolves this season . the wolves striker is just one ahead of tottenham hotshot harry kane in the scoring charts . afobe says he feels ` unstoppable ' as he bids to become the country 's top scorer .\ncompulsory fitness tests have been introduced for all fbi agents . comes amid fears over expanding waistlines and lack of mobility . those who fail will have marks noted on their annual performance review . fbi chief james coney said the force depends on its agents ' ability to ` run , fight and shoot '\nbayern munich beat borussia dortmund 2-0 on saturday to restore their 10-point lead at the top of the bundesliga . pep guardiola 's side were training ahead of the international break . xabi alonso fell over during a rondo drill as he stretched for a pass .\natif saeed , 38 , from lahore , pakistan spotted the male lion in the distance . he crept up to within 10 feet of the hungry lion before leaving the safety of his car to lie on the ground . armed only with a camera , mr saeed managed to capture a couple of frames before retreating to safety .\na woman has been charged with assaulting a police officer . erica leeder , 26 , allegedly squirted her breast milk at the female officer . the incident occurred during a strip search at rockingham police station , south of perth . the mother of three was arrested on march 25 and charged with assault . she was refused bail and remanded in custody .\nsamara jabreen , 32 , and sikander rafiq , 34 , lied to birmingham city council . couple claimed # 66,268 housing benefit , council tax benefit and income support . jabreen signed declarations saying neither she nor her children were related to rafiq .\nbarcelona and real madrid will be looking to offload players in the summer . real madrid are expected to loan martin odegaard out next season . barcelona want to blood young players from their b-team out on loan . iker casillas could leave real madrid if they sign david de gea .\npresident obama is in panama for the summit of the americas . julian zelizer : obama has had some unhappy experiences at hemispheric summits . he says the u.s. has lost influence in latin america to china , russia and iran . zelizer says obama needs to put on a strong performance in panama to improve ties .\nartist thomas lamadieu takes photographs of the sky in courtyards and built-up areas to create a frame of buildings . the space in between then acts as a canvas for his playful illustrations which he has dubbed ` sky art ' lamadie travels the world to photograph the space between buildings in various cities .\nchad bernstein is the founder of guitars over guns , a program that pairs at-risk kids with professional musicians . since 2008 , bernstein 's organization has worked with more than 225 students in miami-dade county . do you know a hero ? nominations are open for cnn heroes 2015 .\njack wilshere is wanted by manchester city . arsene wenger insists the arsenal midfielder will not be leaving . wilsheres , mathieu debuchy , mikel arteta and abou diaby are all fit for selection . laurent koscielny will face a late fitness test on a groin injury .\nsergio gomez has been excavating a pre-aztec pyramid in teotihuacan , mexico , for six years . he came across ` large quantities ' of liquid mercury earlier this month in a chamber at the end of a sacred tunnel sealed off for 1,800 years . gomez hopes the mercury will lead him to the tomb of the city 's king .\nchelsea won the europa league under rafa benitez in 2013 . beniteze was made interim manager at stamford bridge in 2012 . the former liverpool boss has been linked with a return to the premier league . he would be a good stop-gap manager for manchester city and newcastle .\nlatika bourke was born in bihar , india , and adopted by her parents in bathurst , nsw in 1998 . she was eight months old when she was taken in by her new parents penny and john bourke . she never considered looking into her origins until she watched the movie slumdog millionaire . the film was life-changing and led her to a fulfilling spiritual journey back to india . she has visited india every year since 2012 and has fallen in love with the country .\nfrom bargain bath mats to silly straws , hundreds of products sold at discount retailers have been found to contain toxic levels of harmful metals , plastics and chemicals . the chemicals are easily absorbed through ingestion and skin . a recent study of four major discount retailers in the united states found 133 out of 164 products tested contained at least one hazardous chemical ` above levels of concern ' australian author and ceo of the australian college of environmental studies , nicole bijlsma , said an investigation into products sold in australian two dollar stores could produce similar results .\nthe eruption is `` stronger than the first one , '' chile 's national geology and mining service says . military and police forces are assisting with the evacuations of more than 4,400 residents . authorities issue a red alert for the towns of puerto montt and puerto varas in southern chile .\nnorthumbria police and crime commissioner vera baird donated # 500,000 to victims first northumbria , a charity of which she is a director . sitting alongside her on the organisation 's top table is chief constable sue sim . critics have described the charity as ` inappropriate ' and a conflict of interest .\nabdul hadi arwani was found slumped in a volkswagen passat on wednesday morning . the 48-year-old had gun wounds to his chest and was shot in the chest . he was said to have been embroiled in a dispute with his former workplace . mr arwini had been replaced at the an-noor mosque in acton by hassan anyabwile from trinidad and tobago . mr anyabwile is named in a trinidadian parliamentary report on an attempted coup which saw 24 people killed in 1990 .\nradamel falcao has only scored four goals for manchester united this season . the colombian striker admitted to being upset by his lack of game time . falcova has scored three goals in two games for his country . the striker will consider his old trafford future at the end of this season .\ngiovanni lo porto was abducted in january 2012 . he was killed in a u.s. drone strike two years later . he worked for an aid group in pakistan . his family and friends called him giancarlo . he died with fellow al qaeda hostage warren weinstein .\na bloodstained checklist from the gemini 4 mission in june 1965 is being sold at auction . the 13-page document shows the various steps astronauts had to go through when opening and closing the hatch to space . it includes a bloodstained document from the first us spacewalk . the gemini 4 missions of june 1965 ultimately proved successfully . they paved the way to astronauts walking on the moon for the first time four years later . the checklist is expected to fetch # 80,000 -lrb- $ 120,000 -rrb- at auction in london . it belonged to jim mcdivitt , who gave it to a friend after signing it many years ago .\nmauricio pochettino returns to southampton for the first time since leaving . steven davis says the saints have an advantage over spurs . the saints captain says the players know how pochettinos sets up his teams . southampton are just a point and a place behind spurs in the premier league .\nukip leader nigel farage was expected at a farm in staffordshire . he was due to attack the government over defence spending . but organisers pulled the plug while he was trapped in his chauffeur-driven car . he did manage to make an appearance at an event in carrick later today . mr farage is under pressure to show his election campaign is on track .\na safari stay in russia offers tourists the chance to spot , and sleep near , one of the world 's most endangered animals - the siberian tiger . bespoke holiday providers natural world safaris is offering the rare trip which gives guests a unique opportunity to view the big cat . the trip to durminskoye reserve in khabarovsk lasts seven days in total .\ngareth bale is a transfer target for chelsea , manchester united and manchester city . real madrid are also interested in borussia dortmund 's marco reus . real could look to make javier hernandez 's loan move a permanent one after his goal against atletico . petr cech could join real madrid if david de gea stays at manchester united . aston villa striker christian benteke could be sold if bids pass # 30m .\nlife & style reviews the best smartwatches for all budgets . from fitness to easy reading , these watches will make your life easier . from smartphones to fitness trackers , these are the best . but which is best for you ? find out below . . the pebble watch was one of the earliest smartwatch .\nu.s. researchers are testing the new gel it as a dressing for burns . spinning the blood leaves behind the plasma and the platelets but in higher concentration - up to ten times greater than usual . platelet-rich plasma is sometimes used to treat tendon injuries and for cosmetic procedures .\nwest indies believe they now dominate england captain alastair cook . cook failed in both innings of the first test in antigua . england finished on 116-3 to lead by 220 runs at the end of the third day . james tredwell took four wickets as england bowled west indies out for 295 in their first innings .\nnigel farage rounded on audience of live tv debate for being too left wing . ukip leader booed by voters at westminster 's methodist central hall . he faced claims he blamed all of britain 's problems on migrants . pollster icm , which was hired by the bbc to select audience , defends process .\nat least 35 people , most of them children , are killed in a bus crash in southern morocco , state media say . the bus collided with a fuel tanker , state-owned media report . the dead included athletes traveling for a sporting competition , an eyewitness tells 2m tv .\nmehmet oz , 54 , found himself at the center of a firestorm last week when 10 prominent doctors sent a letter to columbia university calling for his resignation . the doctors accused dr oz of pushing ` miracle ' weight-loss supplements with no scientific proof that they work . in a special episode of the dr oz show , which was pre-taped tuesday and will air thursday , the beleaguered physician directly addressed his attackers and accused them of trying to bully him into silence .\nall elephants will be phased out of the ringling brothers barnum and bailey circus performance by 2018 . once they retire from performing , elephants will go to the ringing brothers elephant conservation center . the center is in an undisclosed , 200-acre area of polk county in central florida . some of the asian elephants will live out their post-performance lives in the center , while other will be used for breeding .\naston villa 's players were able to read messages of support from fans before their fa cup semi-final clash against liverpool . jack grealish took to twitter shortly after arriving at wembley stadium to thank supporters for sending in messages . brad guzan also revealed the contents of his message ahead of the match .\nchinese city of shanghai has 10,000 license plates available each month . buyers must pay up to $ 13,000 to get a coveted license plate . some affluent city dwellers are spurning cars . china overtook the u.s. as world 's largest car market in 2009 .\nstephen beaumont took his teddy , named beaumon bear , with him on every flight . he was one of just seven of 24 pilots in his squadron who survived the battle . the pilot gave his t teddy a raf tie and printed the royal crest on his chest . he died in 1997 and the bear was passed to his family . it is now being auctioned by bonhams and is expected to sell for # 10,000 .\njoshua corbett , from montrose , california , faces charges of stalking and burglary . he was found in sandra bullock 's home last summer with a love letter for her . corbett also faces charges for having an arsenal of illegal weapons . sandra was forced to make a desperate call to the police after corbett broke into her home .\nuco stormproof matches are made using an incredibly tough coating that smoulders . they can burn even when submerged in water or buried underground in dirt . the matches will start burning again once they come into contact with oxygen . the match sticks are dipped into the coating , which keeps smouldering even underwater .\nadriana giogiosa , 55 , was reported missing by her brother after he was unable to contact her . spanish police have arrested a 32-year-old man in connection with her disappearance . they have also found a meat grinder and blood at the house in majadahonda . the man 's aunt has not been found and police are trying to trace her .\ndeputies rush kenneth morgan stancil iii from court after he swears at a judge . stancil is accused of killing an employee at wayne community college in north carolina . relatives have said victim ron lane was gay , and investigators are looking into whether it was a hate crime .\ndisabled cat was sitting in front garden when two dogs pounced on it in tarring , west sussex . the terrified cat was dragged to neighbour 's lawn before being mauled to death . police are investigating after a person pulls up in a blue car and collects the dogs .\nthe prize porker , known as pigwig , had fallen into the pool in ringwood , hampshire . his owners had been taking him for a walk around the garden when he plunged into the water and was unable to get out . two fire crews and a specialist animal rescue team had to use slide boards and strops to haul the huge black pig from the small pool .\nhealth expert ashy bines has addressed allegations her recipes were copied from other websites . the 26-year-old has almost one million followers on social media . the gold coast woman also revealed she has been bullied by online trolls who made nasty comments about her unborn child .\ngrandmother sandra garratt went through two years of agony . she had undergone two back operations for a slipped disc . last month doctors told her there was nothing more they could do . her husband steve said it was the ` final straw ' and she jumped . her body was found at the cornbow shopping centre in halesowen , west midlands .\ntwo prototypes of the cyg-11 seaplane have been tested over the sea off the coast of haikou in hainan province in china . the aircraft is believed to be a joint project between russia and china to build new types of super-efficient seaplane . the cyg - 11 uses reduced drag and increased lift from wing-in-ground effect to glide .\nsouthampton have struggled to score this season . ronald koeman believes it is due to opponents giving them more respect . saints have slipped out of the champions league places . koeman remains upbeat and is targeting european qualification this season . southampton face hull city at st mary 's on saturday .\ngareth macdonald was murdered by his boyfriend glen rycroft in 2007 . rycroft was jailed for life for the murder after being convicted of murder . his parents sue and charlie are still grieving for their son . they are still blaming themselves for failing to see rycroft 's true colours .\nabdirahman sheik mohamud was arrested and charged with supporting terrorism after getting training in syria . the 23-year-old columbus man said that after completing his training , a cleric with the group jabhat al-nusrah instructed him to return to the us and commit an act of terror . mohamuda was also an islamic state sympathizer , and that his brother , abdifatah aden , was killed fighting with the group in syria in 2013 .\nkenya 's athletics federation suspend two management companies . volare sports and rosa & associati will be banned for six months . kenyan authorities have blamed rise in doping on foreign agents . dennis kimetto and wilson kipsang are clients of volare . rosa & associations client rita jeptoo banned for two years for epo .\nclarkson will appear as a guest presenter on have i got news for you . he was dropped from top gear after a ` fracas ' with producer oisin tymon . it is believed he was booked to appear on the comedy programme before . it will be the first time clarkson has appeared on the bbc since march 8 .\nexperts analysed more than one billion sets of emoji data , covering 800 emoji across 60 categories . the languages studied include english , including us , uk and australian , spanish , vietnamese , french , malaysian , arabic , german , turkish , french , . portuguese , italian and russian . happy faces , including winks , kisses , smiles and grins were the most popular across all regions , making up 45 per cent of all the messages studied . sad faces were second followed by hearts , which includes all colours of hearts and the broken heart emoji . funny emoji , including farts and poop , are used by malaysian speakers at nearly double the average rate , but are least used in russia .\nborder gate at border field state park in california was temporarily opened . it was unlocked for children 's day , a mexican holiday that celebrates family . families were reunited after relatives were deported to mexico . two young boys reportedly fell to their knees as they crossed into mexico . they were reunited with their mother for the first time in two years .\nelisha wilson beach is pictured breastfeeding her toddler daughter . the photo was originally posted on instagram and then shared on facebook . it has been shared more than 25,000 times and liked more than 211,000 . the image has divided the internet community with many criticizing it .\nohio couple sue author of erotic e-book ' a gronking to remember ' they claim a photo of them was used as the cover without their permission . the book is about a housewife 's infatuation with patriots tight end rob ` gronk ' gronkowski . the couple are seeking $ 10,000 in damages and treble damages .\nmanny pacquiao trained on the streets of los angeles ahead of his fight with floyd mayweather . the filipino boxer was joined by his dog pacman as he ran around griffith park . pacqu xiao-manny will fight mayweather on may 2 in las vegas .\nhome secretary says new legislation urgently needed to update powers of mi5 and gchq . but , based on current polling , parliament would be left deadlocked . balance of power held by scottish nationalists opposed to updating law . if mps can not agree on replacement , spies will be unable to track terrorists .\nhelicopter came down on a house in carapicuiba area of sao paulo . one of the victims was reportedly thomaz alckmin , son of sao paulo governor . three mechanics and pilot were also among the dead in yesterday 's crash . authorities are investigating the cause of the crash .\ncalifornia native debra lobo , 55 , was shot in the right cheek and left arm . she is unconscious but expected to survive , police say . lobo had left the jinnah medical and dental college to pick up her daughters . police found pamphlets that the assailants had thrown into lobo 's car .\nserbian-born andreja pejic , 23 , is the new face of make up for ever . she underwent gender reassignment surgery last year . the model is thought to be the first transgender model to land a major cosmetics campaign . she also appeared on the cover of the may issue of vogue .\nbilly vunipola could miss saracens ' champions cup semi-final with clermont . saracen no 8 was cited on monday night for an alleged butt . the 22-year-old faces an rfu disciplinary panel on tuesday afternoon . toulon are plotting a move for australia fly-half quade cooper .\nhistoric rugby school was founded in 1788 by a group of students . it is said to have been the birthplace of rugby after pupils wrote their own rules . the world cup trophy was named after a pupil called william webb ellis . he ran with a football during a match in 1823 and is credited with starting the game .\nspanish midfielder isco joined real madrid from malaga in 2013 . the 23-year-old is unhappy with his current role and playing time . isco could join manchester city if manuel pellegrini stays at the club . the midfielder would have to play as a no 10 in a city team with yaya toure .\ndietitians say the ` happy tummy brew ' in evans ' cookbook is dangerous to babies . it contains almost five times the maximum vitamin a dose for a baby . the original recipe for the ` brew ' contained more than 10 times the daily intake of vitamin a for babies . the dieticians association of australia said the reworked formula still presents a threat to babies .\n` fullips ' device , a sort of suction-thimble , has been seen at west end parties . it is going viral online and sells for # 30 . the device works by creating a mini-vacuum while you suck on it . this draws blood to the surface of the lips , which swell .\nteenage girl was hit by a car on entrance road in warrilla at about 1am on wednesday morning . the driver can be heard beeping his horn at the girl who is standing middle of the road before hitting into her with a horrifying thud . amazingly , the 15-year-old girl suffered minor injuries and has already been released from shellharbour hospital .\na man has admitted to ripping another man 's scrotum with a metal hook . stephen john docherty , 66 , pleaded guilty to wounding with intent . mr docherty hired the victim to complete concrete works at his property . he returned to find the work was n't carried out to his specifications . he told the contractor he would rip the man 's penis off .\nburnley drew 0-0 with tottenham at turf moor on sunday afternoon . michael duff was satisfied with the way his side handled harry kane . the clarets tried to press high up the pitch to neutralise the striker . paul merson had a pop at spurs substitute andros townsend after the match .\nspanish midfielder isco is unhappy with his lack of playing time at real madrid . isco was dropped for james rodriguez after the colombian returned to fitness . is co was back in the starting line-up for the champions league semi-final . but the spaniard admitted he was not happy with carlo ancelotti 's decision .\nsiem de jong will feature for newcastle 's reserve side against derby . the # 6million summer signing suffered a collapsed lung in february . de jong has started just one premier league game since arriving from ajax . the 26-year-old returned to training earlier this month . john carver will be hoping to have de jong available for the final five matches of the season .\nthousands of selfies have emerged on social media to mark anzac day . some people have posted inappropriate or disrespectful captions . others have posted pictures of themselves in low cut tops and bared stomachs . one man posted a selfie complaining about getting up early for dawn service . others posted pictures with random hashtags mingling with anzac day .\nchelsy davy , 29 , was at the launch party for new london restaurant , the ivy chelsea garden . she wore a white layered chiffon top and navy trousers . the blonde was seen laughing and joking with friend , irene forte . davy split from society jeweller charles goode in january .\ndaryl janmaat played the full 90 minutes despite a suspected calf muscle tear . newcastle united lost 1-0 to sunderland at the stadium of light . jermain defoe scored the winning goal on the stroke of half-time . janmaa said newcastle 's performance was ` not good enough '\nalgeria 's championnat national de premiere division has just 11 points to play for . any of the 16 teams could still be crowned champions . last year 's champions usm algier are currently in fifth place . the top two teams qualify for next year 's caf champions league .\ntranmere were beaten 3-0 by oxford in the conference on saturday . the defeat leaves them bottom of the table with two games to go . manager micky adams has left the club by mutual consent . barnet and bristol rovers are battling for automatic promotion .\nthis is according to marks found on the fossils of two adults and a child . they were unearthed in the french region of poitou-charentes . similar marks have been seen at other neanderthal sites . scientists believe neanderthals may have eaten recently deceased friends and family either for food or in bizarre funeral rituals .\nthe duchess of cambridge is due to give birth to her first child later this week . the baby will spend its first few weeks at anmer hall in norfolk . the nursery has been given a beatrix potter theme . kate has had several pots of pink paint delivered to the country home .\njohn travolta has spoken out about his 40 years as a scientologist . says he will not watch the hbo documentary going clear . says his experience has been nothing but positive . tom cruise is only celebrity to be discussed more in the film than travolta .\nultrahaptics is a company that creates tactile surfaces out of thin air . the technology uses ultrasound to create a sensation of pressure in air . it could be used to control electronic devices such as cars and tvs . the company is working with 15 to 20 clients who are looking to incorporate the technology .\ncincinnati police say a tree fell onto a car driven by a woman in her 60s , killing her . the woman was later identified as jacqueline carr , age 65 . police say they still have to determine who owns the tree and is responsible for its upkeep . because of the tree 's immense size , police say investigating the cause of the accident may take longer than usual .\nfemail 's bianca london and martha cliff tested out facetune . # 2.99 app is designed to help you edit your portrait photographs . can remove spots , improve skin texture and enhance eyes . you can also fix grey hair , reshape your face and fill in bald patches .\nmarouane fellaini is expected to start against manchester city on sunday . the belgian midfielder was jeered by fans and pundits last season . louis van gaal has praised fellaini 's revival at old trafford . the united boss also praised goalkeeper david de gea .\npit crew member was hit by a car on sunday during the inaugural indycar grand prix of louisiana . todd phillips , a front-outside tire changer for dayle coyne racing , was injured when he was struck by the car of francesco dracone . dracone spun while exiting his put box , clipping phillips ' leg .\nfoxes boss nigel pearson insists his side have no margin for error in their relegation fight . leicester are currently bottom of the premier league , six points from safety . the foxes face west brom at the hawthorns on saturday afternoon . matt upson and dean hammond are both back in training for the game .\nmonsour alshammari , 27 , was arrested on friday at the border near san diego . he is set to be extradited back to utah where he faces charges related to the rape of a student in february . alshamsi is in the u.s. on a saudi government student sponsorship and has ties to the country 's royal family , according to court documents .\npeople remember boring information more easily when it is tied to emotion . this is because emotion affects activity in certain brain regions . strong emotion can strengthen memory for positive events , such as a surprise birthday party thrown by close friends , and for negative events , like making an embarrassing faux pas at the office holiday party . emotion also increases the strength of our memory over time - a process called consolidation . scientists at new york university have been trying to gain an understanding about how the brain stores memories for 'em otionally neutral events '\nformer coronation street star unveils new fashion collection . the 27-year-old has been designing for lipsy for several seasons . she also stars in garnier ambre solaire campaign . says she 's always been a fan of the range . reveals her beauty secrets and top workout regime .\nan avalanche hit base camp on mount everest on saturday after a 7.8-magnitude earthquake triggered a wave of snow , ice and rock . four americans were killed and 61 were injured in the avalanche . survivors have recalled how they felt themselves being dragged by the wind and snow and emerged to find the camp destroyed .\nbeverley davis tricked 89-year-old ray warren into handing over his bank cards to her . the mother of three used the cards to buy chinese takeaways and pay for creche fees . the former royal marine was left too traumatised to leave his home and stopped going out . he died just five months after his crime was discovered and his daughter said she will never forgive her . davis , 35 , pleaded guilty to five charges of fraud and was jailed for a year .\none in seven u.s. residents will be an immigrant by 2023 , report says . net immigration will steadily increase over the next 45 years , totaling at 64million . by 2060 , immigrants could account for 82 per cent of all population growth in the country .\nseveral survivors and relatives of the dead received purple hearts on friday at fort hood , texas . the army gave the medals to them after years of tension . the purple heart is given to military personnel wounded in battle and offers increased retirement pay . thirteen people were killed and 31 were injured in the 2009 attack carried out by an army psychiatrist who is now on military death row .\nreal madrid are four points behind barcelona in the la liga title race . carlo ancelotti 's side face rayo vallecano on wednesday night . cristiano ronaldo scored five goals in real 's 9-1 win over granada . james rodriguez and isco are set to return to the real team .\ntaxpayer money is being used to fund an ` army ' of spin doctors . more than 3,400 press officers employed by local councils across uk . london has at least 425 marketing staff and press officers working . manchester city council was the worst offender for its size with 77 staff .\ntricks involve placing mouth over opening of a cup , jar or other narrow vessel . sucking in until air vacuum causes lips to swell up , causing bruising . trend is popular among teens desperate to emulate kylie jenner 's bee-stung pout . problematically , the results are said to last for hours , even days .\n2,700 tourists were evacuated from liberty island after a bomb threat was made just after midday friday . police sniffer dogs found a locker on the island that they thought contained something suspicious . the nypd 's bomb squad was scrambled , but a full search of the island failed to find anything explosive . the island was deemed safe again around 4:30 pm , but tourists were not allowed back because the island was almost closed for the day .\nresearchers have released an interactive roadkill map to show the trail of destruction being caused by california 's state highways . clicking on the dots reveals the species - striped skunk , mountain lion , black bear , gopher snake , desert iguana - and where and when they were hit . major hotspots include the sacramento area where i-80 and i-5 run across bypasses along the pacific flyway .\njesse roepcke , 27 , was arrested sunday in ormond beach , florida , for pointing a laser at passing cars . he was also found with a bag of marijuana up his backside , according to police . roepcke told officers he was just having fun and did n't know it was illegal .\njose mourinho believes he is improving in every aspect of his job . chelsea boss regularly finds himself in hot water with the football association regarding his comments to the media . the former real madrid manager was fined # 25,000 earlier this season . mourinho says he is not a hypocrite when he faces the media but admits he can not help but be truthful .\nmany women are offered hysterectomy as a solution to pelvic organ prolapse . but a sacrohysteropexy uses an implanted mesh ` sling ' to lift and hold the womb back in place . it provides permanent solution to a prolapse and preserving fertility . the procedure is rare , with just 1,072 admissions for the surgery in the past three years .\nmiss wendy 's false mouth trick stunned the judges on saturday 's show . but viewers were less impressed and questioned the effect of the stunt . ofcom received 21 complaints over the act and itv received 35 . rspca said it would be contacting britain 's got talent to investigate .\nfrench diners previously treated doggy bags as 'em barrassing ' , study finds . but mp guillaume garot says they could save france up to $ 20 billion a year . throwing away still-edible food costs the average french household $ 400 . cash-strapped france is trying to save money after a poor 2014 .\njury found 11 former atlanta public schools educators guilty of racketeering . they were accused of falsifying test results to collect bonuses or keep their jobs . superintendent beverly hall died of breast cancer over the course of the trial . she is thought to have received up to $ 500,000 in bonus payouts . the 11 will all be sentenced on april 8 and could face up to 20 years in prison . a 12th defendant , a teacher , was acquitted of all charges by the jury .\nelliot minchella has made six substitute appearances for leeds . the 19-year-old has failed to break into the rhinos team so far this year . minchella has joined london broncos on loan until the end of the season . the broncos host featherstone on friday night .\nluis suarez scores double in barcelona 's 3-1 win over psg at parc des princes . luis suarez nutmegged psg defender david luiz on a night to forget . luiz was brought back from injury to replace thiago silva in the first half .\nqpr were held to a 3-3 draw by aston villa on tuesday night . christian benteke scored a hat-trick to keep villa above the relegation zone . clint hill scored his first premier league goal for qpr in the draw . chris ramsey 's side are still two points adrift of safety in the premier league .\nfather-of-six abdul hadi arwani , 48 , was shot dead on a london street . he was found slumped in a volkswagen passat with wounds to his chest . mr arwani was a fierce critic of syrian president bashar al-assad . his family has paid tribute to ` the most peaceful man you could ever wish to meet ' metropolitan police counter-terrorism officers are leading the inquiry .\njust two cups of coffee a day can halve the risk of cancer returning . it can also boost the effect of the drug tamoxifen , researchers found . tamoxifens is the main hormonal therapy drug given to women with breast cancer . it is usually taken for five years or longer after treatment for the disease .\naverage household now owns 7.4 internet devices , survey finds . smartphones are the most popular item , with an average of 1.7 per household . laptops were second , followed by tablets - with a fifth of homes owning two . digital advertising hit a record # 7.2 billion in the last year , report says .\na woman in new york city caught a man robbing her apartment after he was captured on her cat camera . on monday afternoon , the woman watched in terror as a man crawled through a window and proceeded to steal her laptop , digital camera and some jewelry . the thief took her laptop and digital camera , but the woman is now thrilled she purchased the device and has handed the video over to police .\nthe 55-year-old had his licence cancelled in 2013 after a string of complaints . hakaoro haka boro was sentenced to 20 months in jail in january 2014 for working without a licence . he has been found guilty of six new complaints by the immigration advisors disciplinary tribunal . the shocking new allegations include inviting women into his house to enter a sexual relationship with him as well asking them to carry out household duties .\neuropcar sent eight of the best instagram photographers on a three-day road trip to the isle of skye . the intrepid road trippers were sent by europcar to explore and snap nearly 650 miles in three days . their breathtaking findings have been seen by a combined following of over one million users .\nmedia personality miranda devine has apologised after calling rugby player david pocock a ` tosser ' for celebrating a try using sign language . pocock scored a hat-trick of tries for australian super rugby team , the brumbies , who were on their way to a win against the highlanders at canberra stadium on friday night . devine had assumed a gesture pocock had made after scoring a try was ` jazz hands '\nprime minister will promise to extend margaret thatcher 's famous policy . will allow all 1.3 million families in housing association properties to buy home . but national housing federation says subsidy will cost taxpayers # 5.8 billion . labour says it is a ` deeply unfair ' bribe which will cost billions . home secretary theresa may defends the policy as affordable .\ndaniel demarco was arrested in an elmwood park car lot at 2.45 pm on friday for possession of one bag of crack cocaine , a hypodermic syringe and drug paraphernalia . police on scene believed demarco , 28 , looked suspicious as they were patrolling the area for narcotics travel . demarco is employed as an officer for the new milford , new jersey , police department .\naljaz bedene transferred from slovenia to britain last month . the british no 2 defeated arthur de greef in just 70 minutes in casablanca . bedene will next face czech third seed jiri vesely in the quarter-finals . top seed guillermo garcia-lopez suffered a surprise defeat .\nduke of wellington 's forces defeated and killed tipu sultan , the tiger of mysore , in 1799 . troops plundered the city and the palace , returning to britain with gold , jewellery , arms , armour , clothing and even tipu 's grand throne . items were collected over 30 years by british tipu expert robin wigington . they have been put up for sale at london auction house bonhams .\nstephanie scott was allegedly murdered just days before she was due to walk down the aisle . vincent stanford , 24 , has been charged with her murder . he led a secret life online that included violent video games . he created an online alter ego to use in science fiction , gaming and fantasy forums characters . stanford wrote scripts for his favourite tv series , the science fiction show stargate .\nsarah watson was falsely accused of trying to extort # 100,000 from manchester united star . the 34-year-old was pictured cutting lines of a suspicious white powder in las vegas . pictures have emerged which appear to reveal her party girl lifestyle . high court has since overturned a gagging order against ms watson who claims rojo and his representatives were behind a plot to frame her .\nukip leader nigel farage came under fire for his comments on hiv treatment . he said people with hiv should not be welcomed into britain for treatment . match of the day presenter gary lineker labelled mr farage a 'd *** ' rio ferdinand said the leaders had failed to engage with today 's generation .\ndavid potchen , 53 , spent 12 and a half years in prison for a 2000 bank robbery . he was released in june 2013 but had trouble finding a job on his release . potchen decided to rob a bank in merrillville , indiana , so he could go back to prison for food and shelter . he stole roughly $ 1,000 and sat on the curb outside and waited for police to arrive . the welder is now employed and living with the support of his relatives .\ngael monfils beat roger federer in straight sets in monte carlo . the frenchman won 6-4 , 7-6 in a thrilling last-16 encounter . monfil will face grigor dimitrov in the quarter-finals . the world no 18 hit 22 winners to federer 's 17 .\nleeds united were beaten 2-1 by charlton on saturday night . neil redfearn had six players withdraw from his squad for the match . steve morison admits he has never seen anything like the chaos at elland road . former leeds captain trevor cherry has called for the players to be sacked .\nrobert charles bates shot and killed eric courtney harris , 44 . harris was allegedly trying to buy drugs and a gun from undercover officers . bates , a reserve deputy , was monitoring from afar when he opened fire . police say he accidentally pulled out his service weapon instead of the stun gun .\nthree-inch house spider crawls out of limmy 's mouth and across his face . the 38-year-old comedian grins manically as the spider crawles along his cheek . fans have described the video as a self-imposed ` bushtucker trial '\njordan waddingham made a startling discovery after following a trail of wasps . the 12-year-old found a 90-kilogram european wasp nest in tasmania . the nest is the largest subterranean european wasp nest ever discovered . it took two days to unearth the nest from the ground and four men to carry it out of the bush . the discovery is currently on display at the queen victoria museum and art gallery in launceston .\nnorthampton wing george north has been knocked unconscious three times in recent months . the wales international was knocked out against wasps on friday . north will miss saturday 's european champions cup quarter-final at clermont auvergne . the saints director of rugby jim mallinder said north is making good progress . mallinder is not unduly concerned but will await medical opinion .\njohn higgins beat robert milkins 10-5 in the first round of the betfred world championship . graeme dott also won 10-8 against ricky walden . higgins is bidding for a fifth world title at the crucible . the scot is bidding to go level with ronnie o'sullivan on five titles .\nashish thakkar is the founder of the mara group , a global investment firm . he has been called `` africa 's youngest billionaire '' thakker says africa has a very young demographic and entrepreneurs are important . he says the continent has a huge opportunity to innovate and grow .\nbanksy 's art adorns walls and homes in gaza . a door bearing a banksy drawing is seized by police in gaza after a dispute over its sale . the owner of the door says he sold it for just $ 175 u.s. without realizing its value .\njoe root scored 142 runs in england 's first innings . gary ballance was struck by jos buttler 's shot . stuart broad took the wicket of kraigg brathwaite . eoin morgan and ravi bopara were in action for sunrisers hyderabad . west indies were bowled out for 503 on day four .\nray parlour believes arsenal should sign petr cech in the summer . the former gunners midfielder believes the blues keeper would be a ` no brainer ' cech has made just four league starts for chelsea this season . arsenal face chelsea at the emirates stadium on sunday .\nresidents of beckley club estates in dallas , texas , saw a man approach a male peacock , who was in the middle of its mating ritual , before quickly snatching him up on saturday . footage from the home of lisa solis shows the thief grab the animal by both its claws before shoving him in his black suv around 7pm .\neric lee gates and his adult daughter , chalena mae moody , had asked the appeals court to overturn a decision for the baby to be put in foster care . the baby boy was taken away just four days after he was born in oregon . in march , moody , 25 , was sentenced to 10 days in jail on the incest charge , but got credit for time already served and did not have to serve any additional days behind bars . the pair have two children together - born in 2013 and 2014 - a third died in utero . moody was married to another man at the time of the second child 's birth with her father .\narmenians were killed in the ottoman empire 100 years ago friday . some scholars say it was the first genocide of the 20th century . the word `` genocide '' did not exist at the time . the issue of whether to call it a genocide is emotional for both armenians and turks .\ndoug hughes ' gyro-copter landed on the west front lawn of the us capitol building in washington d.c. around 2pm wednesday . the 61-year-old florida mailman was arrested by police and fbi teams moved in quickly afterwards with bomb disposal robots . house homeland security panel chairman michael mccaul revealed that capitol authorities had doug hughes , 61 , in their sights and were prepared to open fire . hughes claims he informed the secret service and capitol police of his potentially lethal stunt into the no-fly zone .\nphilippe coutinho met brazil legend pele before liverpool 's game with manchester united last month . the midfielder described it as the ` ultimate honour ' to speak to the legend . coutinho is on the six-man shortlist for the pfa player of the year . liverpool travel to wembley to face aston villa in the fa cup semi-final .\nin the third part of our major good health series on dementia , we look at ways to help minimise the impact of memory problems . getting a good night 's sleep can be especially difficult for those with dementia , especially those with alzheimer 's disease . but there are steps that can make it easier .\nbradford bulls have launched an investigation into reports that cars were vandalised during sunday 's ladbrokes challenge cup fifth-round defeat by hull kr . the championship club say three cars were broken into and damaged within the richard dunn sports centre car park . bradford are appealing for witnesses .\nmichelle obama has issued a warning to motorists in the washington d.c. area that her eldest daughter malia is now a licensed driver . ` i 've got a driver -- a 16-year-old driving around , ' the first lady said during an appearance on live ! with kelly and michael broadcast from the white house on monday . although malia receives protection from the secret service , mrs. obama revealed that she does get to drive outside the white house grounds on her own .\nimage shows a giant distant cluster of about 3,000 stars called westerlund 2 . it is inside a stellar ` breeding ground ' called gum 29 , 20,000 light-years from earth . massive young stars can be seen feeding a nearby region with fuel . hubble captured the image using its wide field camera 3 .\nboris majnaric of south jordan , utah has had his aviary in his backyard torn down after a three-year legal battle with the city council . the 75-year-old built the 384-sq-ft , four-room bird house in 1996 and went on to rear more than 200 birds - five times over the legal limit . majnarics spent more than $ 40,000 fighting the city in court .\nbonnie suchet was described by her husband as ` the love of my life ' by john suchet . she died on april 15 after a decade-long battle with dementia . last night suchet declined to comment saying it was a ` private family matter '\nengland women 's under 19s came from goal down to win 9-1 . manchester city 's natasha flint bagged a hat-trick in the win in belfast . england can now only make it to this summer 's finals in israel as best-placed runners up .\ncelebrity big brother star , 26 , unveils summer range with honeyz.com . full of boho frocks , paisley prints and flowing maxi dresses . inspired by seventies influence spotted on ss15 catwalks . says that launching her own range is a ` dream come true '\nbrian klawiter posted a message on his company 's facebook page on tuesday in which he announced that openly gay people are not welcome at his business in grandville , michigan . ' i would not hesitate to refuse service to an openly gay person or persons , ' he wrote . the mechanic 's post has been shared over 1,000 times , attracting hundreds of comments and more than 1,800 likes . critics have accused klawter of trying to cash in on the anti-gay backlash which netted an indiana pizzeria over $ 840,000 earlier this month .\na 65ft high snow cavern is located in the murodo area of japan . the walled wonder attracts thousands of tourists annually . the tateyama kurobe alpine route opened to the public today . the route opened in 1971 and usually draws about a million visitors .\nwendy visits the yukon , home to the infamous chilkoot trail . the trail was used by thousands of men during the klondike gold rush . she also flew over the world 's largest non-polar icefield in the kluane national park .\nan elderly couple have been charged as investigations deepen into the discovery of a mass dog grave containing the carcasses of 55 greyhounds . the 71-year-old man and 64-year , woman were charged with unlawfully possessing a firearm after a police search found a rifle and ammunition in a home in bundaberg on thursday . the carcasses were in various states of decomposition when found by a member of the public 360 kilometres north of brisbane . local speculation suggests the site is a common dumping ground for unwanted racing greyhound .\nmicrosoft founder bill gates says the world 's demand for meat can be met with ` moderation and innovation ' he says some of the environmental impacts of meat farming have been overstated . gates says it is unrealistic to expect large numbers of people to become vegetarian . he believes it will be possible to provide enough meat for the world 's growing population as demand in developing countries increases .\npensioner alan spencer had been tucking into his dinner when he began choking . the 67-year-old from withernsea , east yorkshire , felt his ` life slipping away ' he collapsed in his hallway and began to black out in front of his dogs . but 18-month-old lexi jumped on to the centre of alan 's back , dislodging the onion and saving her owner 's life .\nchinese man , 25 , can not afford hospital treatment for leukaemia . he built a human barbecue in his garden to roast his cancer cells . jia binhui lies on top of the coals and hopes it will cure his disease . he claims experts say temperatures above 42c can kill cancer cells .\nafter next month 's election , ministers could be asked to make sure easter day always falls between april 9 and 15 . in 1928 , the easter act was passed in parliament to makesure that the holiday weekend would be a fixed date in april . both the house of commons and house of lords passed the act but it was unable to get the agreement of churches and therefore has never been implemented .\n250 cases of melanoma registered each year by those working outside in industries such as construction , agriculture and leisure . two thirds of workers who spent an average of nearly seven hours a day outdoors thinking they were not at risk from the sun and sunburn . institution of occupational safety and health urged businesses to improve ` sun safety '\nmohammed ali malek , 27 , charged with multiple manslaughter over tragedy . he was arrested when he stepped onto sicilian soil last night , 24 hours after his boat capsized . he is accused of ramming the overcrowded fishing boat into a merchant ship . bodies of 24 victims of the tragedy were carried off the ship for burial in malta .\ncrisis-hit parma beat juventus 1-0 in serie a on saturday . jose mauri scored the only goal of the game on the hour mark . juventus are 14 points clear of roma at the top of the table . inter milan beat verona 3-0 to end a seven-match winless run .\ned miliband 's strategy of attacking tories for trying to ` privatise ' nhs backfired . father of senior labour politician carwyn jones admitted he paid for treatment . caron wyn jones underwent hip operation at private clinic in bridgend . he paid because welsh nhs could not perform the operation soon enough . came as mr miliband unveiled his general election manifesto for nhs .\nthe fire began on the sub in the zvyozdochka shipyard in northwestern russia . `` the rubber insulation between the submarine 's light and pressure hull is on fire , '' tass reports . a spokesman for the shipyard says there are no weapons on board .\nthe australian navy is allegedly in the process of returning up to 50 vietnamese asylum seekers to their home country . the detainees are being transported in secret via a supply ship currently on stand-by off the coast of vietnam . the hmas choules has been employed by the navy to hand the vietnamese nationals back to their communist government . the two-week return journey to vietnam could cost $ 2.8 million .\ndan fredinburg was one of four americans killed when a massive earthquake struck nepal on saturday . the google engineer was given the letters by his girlfriend ashley arenson just before he left . he was told not to read them until he reached the summit . friend max stossel posted a picture of the letter he wrote to his late friend on facebook .\nthe saints ' wage bill is # 55.2 million and they are seventh in premier league . chelsea are third in the table with a wage bill of # 192.7 m. manchester united have the highest wage bill at # 215.8 m. bottom-club burnley 's wage bill is just # 21.5 m including # 6m in promotion bonuses .\nmiddlesbrough lost 2-0 to watford at st andrew 's on saturday afternoon . troy deeney and odion ighalo scored for the hornets . deeney has now scored 20 goals in each of his last three championship campaigns . ighala 's goal was his 19th of the season .\nactresses are paid up to # 50,000 to do voiceover work for brands . coronation street has reportedly overturned ban on radio adverts . bosses were said to be unhappy with katy cavanagh 's work for bbc iplayer . cilla black , noel fielding , olivia colman and thierry henry have all done it .\npolice have released photos of 13 people they are trying to track down as they hunt for the fans who threw bottles at nrl referees during the good friday clash between the bulldogs and rabbitohs . a touch judge suffered a broken shoulder when he slipped at anz stadium in sydney as he tried to dodge bottles being thrown by angry canterbury fans . referees had penalised bulldogs captain james graham in the final minute of the game , which allowed south sydney to seal a 18-17 victory . canterbury coach des hasler has apologised on behalf of his club over the actions of some fans after objects were thrown .\ntutor colin turnbull , 69 , was caught having sex with rozina khanim , 39 . pair were found in a ` compromised position ' by a governor at the school . mr turnbull has worked at the # 13,000-a-year priory school in birmingham for nine years . school said to be packed with pupils and parents when they were walked in .\nthe number of firearm licence holders in new south wales has increased by more than 20 per cent in the last five years . currently , a total of 215,462 licences exist compared to the 177,675 owned in 2010 . tamworth , 403km north of sydney , was revealed to have the most number of firearms licences . detective superintendent mick plotecki said us 's popular national gun laws and pop culture was likely to be driving the increase .\nronnie o'sullivan was forced into borrowing a pair of shoes from a member of the crucible audience . the rocket raced into a 7-2 lead in his first match at this year 's betfred world championship in sheffield . o ' sullivan could now face a fine after breaching snooker 's strict dress code .\na massachusetts man was arrested after police found two homes full of bomb-making materials . joseph t. brennan jr. of norwell tried to hide from the cameras as he was arraigned from his hospital bed on monday , pleading not guilty to possession of an infernal device . this after authorities searched the residences following an incident on saturday night in which brennan accidentally blew up his car while smoking a cigarette . police discovered ` various bomb - making components ' in the car . the blast left the man with minor injuries and he was admitted to brigham and women 's hospital in boston .\nkimi raikkonen 's contract at ferrari expires at the end of the season . the finn has been urged to improve his performances if he wants to stay . raikkenson has finished fourth in the last two races in malaysia and china . ferrari team principal maurizio arrivabene says raikkken needs to push himself .\njiaojiao fell from a 150ft window in zheng du city , central china . rain canopies , laundry racks and wet grass broke her fall . her pelvis had broken into pieces and she had severe bruising and scratches . her mother , zheng jiayu , 31 , left jiaoj xiao at home on her own . she now can not afford the huge # 100,000 medical bill .\nbikram yoga involves 26 poses performed in a room heated to 40 °c -lrb- 105 °f -rrb- scientists at the university of wisconsin-la crosse found the practise can raise a person 's body temperature and heart rate to dangerous levels . a typical 90-minute session is performed in the room with 40 per cent humidity . the researchers advise that the standard 90 - minute class is reduced to just an hour to reduce the risk of heat stroke .\nkevin franklin put up christmas lights at council house in dunstable , bedfordshire . he wanted to use the time to raise awareness of autism and charities . but he kept the lights up after christmas , prompting anger from neighbours . he will now switch them on every evening in april for autism awareness month . the 53-year-old says he will keep them up ` out of principle ' until december 2 .\njoseph kent is released from jail , his lawyer says . the community activist 's arrest was broadcast live on cnn tuesday night . he is being held on a charge of curfew violation , the state says . he was arrested after a citywide curfew had started tuesday night , police say .\ned miliband will allow scotland to set a more generous benefits system than the rest of the uk . he will hand scottish mps the power to set higher state pension and more generous dole and disability payments . he is in a desperate attempt to reverse the exodus of his voters to the snp .\nwidnes beat warrington 30-10 in cheshire derby . game stopped for eight minutes after a flare was thrown from the stand housing visiting fans . wolves ' losing run is their worst since 2009 . widnes boosted by return of influential captain kevin brown from a three-match absence with a hamstring injury .\ncafe owner olly taylor has created a meal that contains 4,000 calories . the easter feast is served in half an easter egg and has 388g of sugar . the meal is available at black milk cereal cafe in manchester 's northern quarter . the cafe specialises in world cereals , milkshakes and cheesecake .\namerican woman kayonna cole posed with her pet tarantula and allowed it to bite her hand . footage shows exotic pet owner kayonna holding her female rose hair spider up to the camera as it digs its fangs into her skin . kayonna remains calm throughout the video , but later suffered a reaction to the spider 's venom .\neden hazard is one of the best players in the premier league . he has scored 17 goals and made nine assists this season . hazard joined chelsea from lille for # 32million in 2012 . he is set to make his 100th premier league appearance on sunday . hazard was named pfa young player of the year last season .\nbecky handly , 20 , discovered her father 's grisly crimes in a local newspaper . raymond handley , 62 , was jailed for 13-and-a-half years for sexual assault . daughter , who was kept from seeing him as a child , has disowned him . miss handley said her father deserves the death penalty rather than a prison term .\neight-month-old jack russell and poodle cross-breed banned from meeting pm . david cameron greeted voters in street as he left speech in cheltenham . but aides ordered that the dog be kept well away from the conservative party leader . owner sarah styler was taking silver for his morning walk when she spotted tv crews gathered outside church hall .\nthe body of leroy j. toppins was found saturday night in a pond at an abandoned stone quarry . the two-year-old was last seen friday night playing with his siblings in the front yard of his family 's home in washington court house , ohio . police do not believe the death was suspicious . the quarry had been abandoned for several years . more than 100 locals joined a search for the toddler that lasted all day saturday .\nformer blackwater security guard nicholas slatten was sentenced to life in prison for his role in the 2007 shooting that killed 14 iraqi civilians and wounded 17 others . paul slough , evan liberty and dustin heard were each sentenced to 30 years and one day in prison . u.s. district judge royce lamberth announced the sentences after a day-long hearing at which defense lawyers had argued for leniency .\ndrake was on stage with madonna when she kissed him . he seemed dazed after the kiss . the rapper later tweeted that he feels 100 about it . he performed `` madonna '' off his new mixtape . he was at the coachella music festival in california .\nofficials warn of flash floods and landslides . maysak is now a tropical storm , not a super typhoon . it 's expected to make landfall sunday morning on the southeastern coast of isabela province . authorities have barred outdoor activities like swimming , surfing , diving and boating in some locales .\nlevar jones , 36 , was shot in the stomach by a south carolina state trooper . he was unarmed and had his back to the officer when he was shot . the shooting has left him with psychological problems and unable to work . he said the horror of his own shooting was brought home by the death of walter scott . he wants non-lethal methods introduced for police and body cameras for officers . officer sean groubert , 31 , has been fired and charged with felony assault .\nfrank lampard spoke of his support for gay footballers in an interview on alan carr 's chatty man . the manchester city midfielder says that football is evolving for the better . lampard also revealed that he would love to see a gay footballer come out and be fully respected by the public .\nmanchester city director of football txiki begiristain wants pep guardiola to become their new manager in 2016 . begiristsain and guardiola enjoyed a successful relationship at barcelona . guardiola is facing his first champions league exit prior to the semi-final stages of his coaching career . bayern munich face a 3-1 first leg deficit against porto on tuesday .\noutspoken weight loss expert , steve miller , has devised a five-point plan . claims it will help tackle britain 's obesity crisis . says obesity wardens in the street , fat warning signs outside fast food restaurants and steve moving in with public role models who are overweight could save the country millions .\nkeaway lafonz ivy , 21 , died from a single gunshot wound to the chest while filming a music video in maryland wednesday . police say one of the people in his entourage fired a gun that was being used as a prop in the video . on friday , police arrested 21-year-old lafonzo iracks and charged him in connection to ivy 's slaying .\nsix names cut from west indies squad for first test against england . shai hope and carlos brathwaite included in 14-man squad . denesh ramdin will continue to skipper the side . devendra bishoo also handed recall to the squad . three-match series starts in antigua on monday .\nsupreme court chief justice john roberts reported for jury duty in rockville , maryland on wednesday - and was not selected . the 60-year-old was called to serve on a case involving a car crash and had to answer a couple of questions about his relatives . roberts sat incognito with the other called jurors and answered questions about the case .\ntwo deputies involved in fatal attempt to arrest eric harris have been reassigned . sheriff stanley glanz says he is `` very concerned '' for their safety and that of their families . reserve deputy robert bates is charged with second-degree manslaughter in harris ' death . glanz has apologized to harris ' family .\nnorth korean leader kim jong un was to visit moscow next month . the visit was to coincide with world war ii anniversary celebrations . russia says it invited about 30 world leaders to the celebrations . kim 's non-visit comes a day after south korean intelligence agents told lawmakers that kim is ruling with an iron fist .\nnew zealand 's prime minister john key is accused of sexual harassment . a waitress complained about him repeatedly pulling her ponytail at an auckland cafe . key publicly apologized to the waitress , amanda bailey , after she complained in a blog post . key says he apologized when it was clear she had taken offense .\ndr omar saadi al-atraqchi cut a hole in shampoo bottles to hide iphone inside . he then slid the device under the partition of shower cubicles to film men . the 42-year-old admitted four counts of voyeurism and was fined # 500 . he faces being struck off the medical register after being found with footage .\nindonesia 's attorney-general has claimed that bali nine duo andrew chan and myuran sukumaran will be put to death . the convicted australian drug dealers learned about the ruling after an appeal against their death row sentence was allowed to proceed in jakarta 's state administrative court on monday . the court decided against allowing the pair 's lawyers to challenge indonesian president joko widodo 's decision to deny the two australians clemency . lawyers for the men now plan to challenge the constitutional court to outline the president 's obligations in clemencies .\naviva premiership season ends on may 16 . leicester tigers are in the play-off positions . richard cockerill believes the race will go to the wire . the tigers face saracens at allianz park on saturday . the 22-game premiership campaign concludes on may 15 .\nthe new wi-fi calling feature is designed to facilitate calls and texts when users have no mobile phone signal . it will be available in 150 london tube stations where wi-fi connections are currently available . iphone users on ee will find their calls and text automatically connect through the internet when they have no service signal .\nseven-week-old efan james was found face down and unresponsive in his bed . he was sharing a bed with his mother hannah james at the time . coroner mark layton said current advice on ` co-sleeping ' is ` confusing ' nhs guidelines say safest place for a baby to sleep is in their own cot .\ncarla zampatti 's ss15-16 collection was presented at sydney 's opera house . the show marked the designer 's 50th year in fashion . stars including delta goodrem , shanina shaik , terry biviano and kate waterhouse were on the front row .\n` flash playboy ' danny lambo has bought his girlfriend a # 10,000 easter present . he paid for a luxury bath to be fitted in the home of natasha flynn . the bath runs pure chocolate milk - with melted chocolate containing 1.3 million calories . the bespoke gift costs # 1,000 each time to fill - and is now available to buy .\nnorth carolina man larry upright , 81 , died this week . his family asked friends and family to send flowers for the funeral , but also not to vote for hillary clinton in 2016 . ` we did it solely to do something nice and honorable for our dad , ' said his daughter jill mclain .\nfloyd mayweather and manny pacquiao are set to fight on may 2 . the fight is expected to be the richest in boxing history . mayweather has won all but one of his fights by knockout . pacquioa has won the last five fights by stoppage .\nbondi 's icebergs club pool drained for ten pieces presentation . unusual setting used as part of mercedes-benz fashion week australia . models walked through the concrete pool and along the break wall . the unisex collection is designed to be worn in 20 different ways .\nthird episode of bbc one 's the billion dollar chicken shop aired yesterday . showed the creative team behind kfc 's rebranding exercise . food stylist dagmar used hairdryers and tweezers to prepare food . viewers unleashed barrage of negative comments on twitter after show . kfc said all of the food in adverts is made using the same ingredients .\nfamily : jamal al-labani was killed in a mortar strike in aden . he was on his way back from mosque prayers when he was hit . he is believed to be the first u.s. citizen killed in the current violence in yemen . yemeni-americans are trapped in the conflict , but have n't gotten enough help , an advocacy group says .\nthe royal commission in queensland heard from alleged victims who suffered at the hands of nuns and priests who ran the neerkol orphanage near rockhampton . claims ranged from being raped by a broom handle to being gang raped to being forced to drink their own urine . a woman who was sent to the orphanage in 1961 at the age of 10 said she was gang raped by employees and then had a child at 14 . a retired nurse said she suffered repeated emotional , physical and sexual mistreatment at the orphanages . the commission will hear from 13 former residents of neerkl .\nswimmers were oblivious to the giant shark as it chased a fish in the shallows off destin , florida . a group of men on a penthouse balcony shouted at them to get out of the water . hammerheads are largely harmless to humans , but the swimmers were willing to stick around to prove it .\nmichael allen will join edinburgh at the end of the season on a two-year deal . the 24-year-old can play either at wing or centre for ulster . allen admits he is excited to move from belfast to the scottish capital . the former methodist college belfast pupil has never lived outside of ireland .\ndenmark captain and brondby defender daniel agger is to be investigated by the country 's fa . agger allegedly elbowed fc copenhagen 's mattias jorgensen in a hotly-contested derby on monday . the incident in the goalless draw was not seen by match officials .\nleanna norris , 25 , of auburn , maine , plied two-year-old loh grenada with benedryl to make her sleep before covering her mouth and nose with duct tape and a blanket . the body was found in the front seat of her car in stetson , maine . assistant attorney general deb cashman said norris committed the murder to stop her ex-boyfriend , the father of her child , dating other women .\nnathaniel clyne is out of contract at southampton next summer . manchester united are interested in signing england right back . ronald koeman accepts it will be difficult to keep hold of clyne . the southampton boss wants clyne 's future sorted before the end of the season .\n5 years after the deepwater horizon spill , we are still experiencing the effects of the oil spill . the gulf of mexico supplies 40 % of the u.s. seafood supply and is a key fishing region . researchers are studying how gulf crabs respond to oil and dispersant .\nmercedes driver lewis hamilton won the chinese grand prix on sunday . the briton is now 13 points clear of his team-mate nico rosberg in the drivers ' championship . rosberg finished second with ferrari 's sebastian vettel third . hamilton led from pole position but rosberg was quicker in second .\ncaribbean island named best island in world by tripadvisor 's travellers ' choice awards . it was followed by maui in hawaii and roatan in honduras . santorini in greece was named the best island of europe . jersey was named sixth best island and top island in uk and channel islands .\nthe therapy was developed by scientists at rockefeller university in new york . it uses a new antibody to attack the virus that is needed to infect . patients treated with the therapy saw a 300-fold reduction in their viral load . scientists believe the therapy could lead to a new vaccine to prevent hiv infection .\ngolfbidder.co.uk has teamed up with sportsmail for a special prize . one lucky reader will win a bundle of callaway golf clubs and accessories worth more than # 1,300 . the exclusive prize bundle includes a callaway xr driver , callaway 3 wood , callaways xr hybrid and a set of callaways irons . click here to be in with a chance of winning this special prize .\nmary day claimed # 16,500 of income support and disability allowance for four years . but she had # 27,000 in savings and went on three trips to indian resort of goa . she was caught after an anonymous tip-off to benefits officers . day pleaded guilty and has repaid the money , but avoided jail .\nthe protein world adverts have caused a huge backlash on social media . the posters feature a bikini-clad model called renee somerfield . a change.org petition calling for the adverts to be pulled has already attracted more than 50,000 signatures . tfl has confirmed that the posters are being removed from the london underground .\nduchess of cambridge is due to give birth on april 25th at st mary 's hospital . prince william has started his new job as a pilot for east anglian air ambulance . he will take two weeks paternity leave when his wife goes into labour . the duchess of cambridge will largely be based at kensington palace .\ndarren jones was due to take part in a live tv debate on decision made . the 28-year-old started swaying on his feet in front of worried audience members . he then collapsed in front presenter ellie pitt and his opponents . mr jones was escorted out of the building by an ambulance .\napple is in talks with florence and the machine to give apple limited streaming rights to a track from their album set to be released in june , according to a new report . apple has also approached taylor swift and others about partnerships , the report said . apple bought audio equipment and music streaming company beats for about $ 3 billion in may 2014 , hoping to catch up in fast-growing music streaming industry .\nander herrera has scored twice in eight matches for manchester united . the 25-year-old has been a regular in louis van gaal 's starting xi . herrera says he wants to stay at old trafford for years to come . the spaniard scored his first goal for united against aston villa on saturday .\na small piece of glass was discovered in a beech nut-nutrition baby food jar by a consumer , the food safety and inspection service said . the company is recalling 1,920 pounds of the product . the type of baby food being recalled is ` stage 2 beech-nut classics sweet potato & chicken , ' which is sold in 4-ounce glass jars .\nsheree and sophie morgan allowed their bank accounts to be used in a ` vile ' plot . the sisters agreed to let their accounts be used to accept stolen money . the victims were conned out of over # 36,000 over the telephone by a fraudster posing as a policeman . the morgan sisters allowed # 17,500 to be put into their bank account after the con . sheree also recruited ex-boyfriend daniel webster , 23 , and her mother justine davies , 44 , to use their accounts for the illicit transfers . all admitted money laundering but escaped jail at burnley crown court . justine was handed a one year community order .\nlipscomb police chief warren carey was trying to arrest mayor lance mcdade when the fight broke out on friday , according to a city clerk . carey was later spotted ` hobbling ' into his office with an injured leg before he was transported to the hospital . mcdade is currently in jail for resisting arrest and assaulting a police officer , city officials said .\nnfl legend deion sanders calls out son deion jr. on twitter . he says he has a trust fund , condo and clothing line . junior is a wide receiver at southern methodist university . sanders jr. retweeted his father 's comments . the son has gone on record with his love for `` hood doughnuts ''\njoel wilkinson was diagnosed with duchenne muscular dystrophy six months ago . the condition affects around one in 3,500 boys and causes muscle weakness . it means he will eventually need a wheelchair and has a life expectancy of just 20 . his sister phoebe , five , adores her brother and makes sure he is thoroughly looked after . she helps him put on his shoes , fasten up his coat and even helps fetch him his cereals in the morning .\nseven rare artifacts handed over to honolulu museum of art . they were found to have been smuggled into the u.s. by art dealer subhash kapoor . he was arrested in 2011 and is awaiting trial in india . officials say he created false provenances for the antiquities .\nnigerian town of damasak was recently freed from boko haram . officials and residents found hundreds of corpses buried in shallow graves . the victims included men , women and children murdered by boko haram , officials say . the bodies were buried in 20 clearly marked mass graves .\nvideo posted on youtube shows a porsche cayman flying out of control as it speeds from a green light on prince edward island in canada . the sports car swerves wildly before smashing into the concrete median . a wheel even comes off before the car finally comes to a halt .\nvets are urging the public to get their dogs checked out for ticks . ticks can spread potentially fatal diseases - such as lyme disease - to humans . warning comes after survey found half of dog owners did not know ticks can transmit deadly diseases to both humans and other dogs . 54 per cent of owners also confessed they did not known that lyme disease , a potentially fatal illness caught from tick bites , affects their pets as well as themselves .\nserge gnabry has not featured for the first team since march last year . the 19-year-old midfielder has been sidelined with a serious knee injury . gnaby played 90 minutes for arsenal under 21s against reading on monday . the germany under-21 international says he is ` feeling good '\na staggering aed 100,000 -lrb- # 18,188 -rrb- per night is required to rent the st. regis abu dhabi 's signature suite . the three-bedroom room is suspended 200m above the ground and offers breathtaking views of the arabian gulf . the in-room spa features a private steam room , sauna , jacuzzi , two treatment beds and an exercise room .\neric carter , 21 , and stephanie mccassin , 24 , of manchester , new hampshire , were arrested on warrants thursday . the child 's grandmother and primary caretaker , mary macdonald , reported finding the child in the tub , with the parents passed out on dec. 4 . macdonald told police that she is the child 's primary caretaking because of her son 's , carter 's , past drug problems .\nguatemala is home to a deeply rooted patriarchal society . the country ranks third in the killings of women worldwide . nearly 10 out of every 100,000 women are killed in guatemala . the violence is a legacy of the 36-year-old civil war . the political will to address violence against women is slow to materialize .\naaron lennon opened the scoring for everton in the 41st minute . jonjo shelvey equalised for swansea with a 69th-minute penalty . seamus coleman handled the ball in the box and michael oliver awarded the spot-kick . wayne routledge had a goal disallowed for offside in the first half .\nroyal marine bobby burnett beat his girlfriend and banned her from wearing revealing clothes in a two-year-long campaign of terror . he forced samantha chudley to stop wearing make-up because he wanted to make her less attractive to other men . the 30-year , who has been in custody since leaving the commando training centre , admitted aggravated harassment and making threats to kill . judge phillip wassall jailed him for two years and two months .\npolice say the woman and child were stranded in their vehicle in high water around 9:30 a.m. friday on a rural highway in lee county , kentucky . around 11:30 am , the car was swept away and rescue workers lost sight of them . authorities in louisville , kentucky , made more than 100 water rescues early friday as a severe storm 's persistent downpour flooded roads . residents on two floors of an apartment building in okolona , kentucky , . were evacuated by the fire department .\nshowbags cost anywhere from $ 10 to $ 30 and are among the mounting prices parents are paying for their annual trip to the easter show . official website of sydney royal easter show lists the retail value of show bag contents . at least one of the bags cost more than it would to buy the items outright .\nviolet price , 80 , had been missing from her home in moustier village since last week . her son - a businessman who lives in the area - was unable to reach her by phone after she attended a dinner party . a 32-year-old man has now been arrested and charged with murder . he told police where to find the body parts in two different areas .\nby 2030 up to 170 million hectares -lrb- 420 million acres -rrb- of forest - equivalent to the combined size of germany , france , spain and portugal - could be lost in just 11 hotspots . research by wildlife charity the wwf identified 11 ` deforestation fronts ' where 80 per cent of projected global forest losses by 2030 could occur . the fronts are the amazon , the atlantic forest and gran chaco , and the cerrado in south america . they are also home to indigenous communities that depend on forests for their livelihoods and endangered species such as orangutans and tigers . but they are being lost to expanding agriculture , including livestock farming , palm oil plantations and soy production , as well as small\njordan spieth returned to golf just days after winning the masters . the 21-year-old will play in the rbc heritage classic this week . he equaled tiger woods ' tournament birdie record at augusta national . spieth is the youngest player to win a major at such a young age .\nfootage shows the piglet balancing on its front trotters while foraging for food . the piglet was born with its back legs missing and has mastered the art of balancing on two feet . the heartwarming clip has been viewed more than 100,000 times on youtube .\nmitchell keenan , 32 , caught frostbite after living in a tent during winter . he was evicted from his home in skelmersdale , west lancashire , last year . his sister discovered his blackened toes and rushed him to hospital . they were so badly diseased that they could not be saved and had to be amputated .\nskopelos is a greek island that was used as the filming location for mamma mia ! the island is a hilly , pine-forested paradise with a relaxed vibe . it has one of the most scenic ports in greece and is home to dozens of chapels .\n18-year-old ryan heritage posted obnoxious message on trowbridge police 's page . he said : ` oi yo check if there 's a warrant for my arrest , if so good luck !!! ' police chased him on foot before finally grabbing him in his home town . he was charged with theft and burglary and failing to answer bail on fraud charges .\nsix people were killed in a helicopter crash in semenyih , malaysia . among the victims were a former ambassador to the united states and a prime minister 's staff member . the prime minister orders an investigation . the helicopter 's flight recorder has been found in good condition , state media reports .\nresearch for trade magazine the grocer found just 32 % of uk consumers have heard of campylobacter germs . many unaware of key hygiene measures to protect themselves . more than 70 % of britons rightly identified chicken as main source of food poisoning . but only 55 % of londoners and 51 % of under-25s mentioned chicken as the main source .\nrory mcilroy believes jeff knox reads the augusta putting surfaces better than anyone he has ever seen . knox played with mcilory when the northern irishman was first man out in the third round last year . knox answered the call from tiger woods to play a practice round on friday .\ndundee university scientist adrian quarterman is working on a laser . it will convert sun beams into energy using semi-conductors . if it works , it could be used to power homes in scotland . but he says it will not be as powerful as the lasers in star wars .\nalan davey claims broadcasting classical music has become more challenging . he was asked about changes to general classical music knowledge over 30 years . radio 3 is the least listened-to of the bbc 's main stations . last year mr davey 's predecessor roger wright dismissed ` dumbing down ' claims .\na 14-year-old british boy is arrested on terror-related charges . he is accused of encouraging an attack on an australian parade honoring the war dead . the teen also urged the beheading of `` someone in australia , '' authorities say . the boy was communicating with suspects in operation rising , police in australia say .\ntimothy eli thompson was born premature in march without any nasal passages or sinus cavities . his mother brandi mcglathery said facebook removed a photo of her son a pro-life group tried to post to promote eli 's story . the story was shared 30,000 times in six hours and the ban was lifted after complaints .\nlongest ever listening time to bbc radio has dropped to its lowest level ever . average listener spent just ten hours tuning in to bbc in last three months of 2014 . this was 14 per cent down on a decade earlier , when listeners clocked up 11.6 hours . director general tony hall highlighted the fall to bbc trust meeting .\nqpr winger matt phillips now has seven assists in 2015 . he is second behind barcelona star lionel messi in europe 's top five leagues . phillips set up two goals for chris ramsey 's side in 3-3 draw with aston villa . wolfsburg midfielder kevin de bruyne has 17 assists in the bundesliga this season .\nunited beat manchester city 4-2 in the premier league on sunday . louis van gaal has changed his team 's style since taking over last season . marouane fellaini , ander herrera and ashley young have all improved . van gaal has also given michael carrick a chance to shine .\ncabinet secretary sir jeremy heywood ordered inquiry into claims . alleged memo shows snp leader nicola sturgeon wants david cameron to win . sturgeon claimed she was victim of whitehall ` dirty tricks ' in row over memo . row follows allegation she told french ambassador sylvie bermann she would prefer a tory general election victory .\nshannah kennedy and lyndall mitchell have been life coaches for more than three decades . they are now teaching their masterclass of wellness to ceos and executives across australia . skills such as dealing with stress , being aware of trains of thought , and accumulative mindfulness are being taught to professionals in the banking , business and retail sector . the pair 's workshop is aptly named the masterclass of wellness : the boardroom retreat .\ndr. george nagobads , 93 , was allegedly mugged by a teenager on sunday afternoon at the crystal lake cemetery in minneapolis while laying flowers on his wife velta 's grave . he was released from the hospital on tuesday with 18 stitches in his head . nagobad was team doctor for five u.s. men 's olympic hockey squads , including the ` miracle on ice ' team that won in the 1980 's .\nrichard hammond has ruled out returning to top gear , becoming final presenter to leave show . hammond took to twitter to announce he would not ` quit my mates ' jeremy clarkson and james may . show 's former executive producer andy wilman has also quit the bbc . mr wilman sensationally quit the corporation yesterday , fuelling speculation . he has now launched scathing attack on ` meddling ' bbc executives in editorial .\n20-year-old liam stewart was set to make his senior great britain ice hockey debut at the world championships . but he has been ruled out with a shoulder injury . the forward was replaced in the squad by belfast giants ' craig peacock . rod stewart 's son plays for spokane chiefs in the western hockey league .\nchristine carriage , 67 , was given a six-month suspended sentence at norwich crown court . police found 1,337 items of stolen clothing , shoes and handbags in her home . officers found cash , drug paraphernalia and at least an eighth of a kilo of cocaine .\nadvisers to president tomislav nikolic described being ` thrown around the cabin ' when the plane began tumbling through the air . plane landed safely back in belgrade , but nikolic was forced to cancel his official visit to meet pope francis in the vatican . investigation determined that the co-pilot , bojan zoric , . had spilled coffee on the instrument board ` due to ongoing turbulence '\ngermany 's prosecutor 's office says andreas lubitz was suicidal at one time . he underwent psychotherapy before getting his pilot 's license , the office says . lubitz passed his annual pilot recertification medical examination in summer 2014 , a source says . the germanwings co-pilot is believed to have deliberately crashed the plane into the alps .\na 38-year-old man jumped into brush creek in kansas city , missouri , after being stopped by police . he may face charges in connection to a hit-and-run crash . police officers armed with bb guns followed the man into the water and got him in a choke hold . the suspect was taken to hospital with injuries to his arm and leg .\neshima ohashi bridge is the third largest of its kind in the world . it spans a mile across lake nakaumi , linking the cities of matsue and sakaiminato . the two-lane concrete road bridge stretches 1.7 km or just over 1 mile long .\nthe ` pie-egg-ra ' dish contains one and a half cadbury 's creme eggs . it is served with chips and costs # 2.75 at mr eaters fish and chips in preston . mr clarkson says customers have taken to dipping chips into the creme egg ` yolk '\nthe capital , kathmandu , is in the grip of a major earthquake . cnn 's mark morgenstein says there 's no way to get out of the city . he says temporary shelters have been put up , but very few -- 16 -- by the government . morgenstein : `` it looks like a city where buildings have been abandoned ''\nmore than 100 people arrested during the fracas in baltimore this week were released . baltimore 's mayor says she is considering lifting the curfew early . president obama says there 's `` no excuse '' for the violence in baltimore . baltimore residents are demanding answers about the death of freddie gray .\na lawsuit filed by former gossip girl actress kelly rutherford attempting to have a judge order her kids to return to the u.s. from their father 's custody in france has been dismissed once and for all . rutherford claims her children were illegally deported to france when a california court awarded custody to her ex-husband daniel giersch , 40 . the case was dismissed with a court order stating that it did not have the jurisdiction to force the kids to come back to the united states . rutherford left giersh in 2009 while she was pregnant with their second child after the german businessman 's visa was revoked .\nmauricio pochettino will return to st mary 's for the first time since he left . the argentine spent 16 months as southampton manager before leaving for tottenham . pochettinos has been known for bringing through young players . harry kane has been in sensational form under the former saints boss .\nengland finished day four of the first test against west indies on 98-2 . gary ballance scored 122 not out and jos buttler made 59 off 56 balls . england set west indies a target of 438 to win in antigua on thursday night . chris jordan took the wicket of darren bravo to give england hope .\nnfl star jj watt , 26 , released a video on monday showing him performing a standing box jump . the standing boxjump is a popular crossfit workout move . watt , 6-foot-5 and 289lb , recorded more than 20 sacks and forced four fumbles for the houston texans last season . he has signed an endorsement deal with reebok .\nmen build ` she sheds ' at the bottom of the garden to be alone in peace . women are demanding their own ` she shed ' as they find life more stressful . they are commissioning sheds in a range of styles from beach huts to gypsy caravans .\nmalegaon , in the western state of maharashtra , has banned the sale and consumption of beef . authorities have asked residents to take a ` mugshot ' of their cattle and submit it to the police . along with the photograph , the residents have to give information about their animal 's ` unique features '\nincredible pictures show a lone lioness bringing down a towering giraffe all by herself . the dramatic scenes were witnessed by researcher brent stapelkamp in hwange national park , zimbabwe . the lioness refused to let the giraffe escape despite the danger she was in .\nlucknow police to use drones to control crowds at violent protests . the drones have been tested in controlled conditions , police say . the miniature aircraft will be fitted with a camera and pepper spray . views on the new measure are mixed , with some concerned about freedom of speech .\nryan giggs could be one of the best managers in the world after doing his apprenticeship under louis van gaal , says paul scholes . scholes believes outgoing borussia dortmund manager jurgen klopp would be a welcome addition to the premier league . the former manchester united midfielder believes pep guardiola will head to etihad stadium once his contract at bayern munich expires . schole believes manuel pellegrini will not replace guardiola at manchester city .\narctic foxes fight to the death in battle to claim a lone vixen in iceland . the animals tumbled down a snowy mountainside and crashed onto a beach . wildlife photographer einar gudmann caught the violent encounter on camera . he had been sleeping in his warm shelter when he was woken by howling .\nthe russian rouble is in trouble , and russians are staying at home . this means more people are visiting goa , india 's flop-in-the-sun state . the beaches are more relaxed and the restaurants and bars quieter . goa has 11 hours of sunshine a day at this time of year .\ngold and silver bars were being transferred onto hms ulster queen in 1942 . they were to be paid to u.s. as payment for arms shipped to russia during war . case slipped and fell into clyde during delicate operation and was never recovered . incident only revealed thanks to secret diary kept by engineer on the ship . his daughter has now revealed the story in a new book about arctic convoy .\nnelson oliveira has been on loan at swansea from benfica . the 23-year-old is set to make his second premier league start against leicester . bafetimbi gomis is out injured for between three and four weeks . oliveira admits he has had to be patient waiting for his chance .\nceremony held to mark 70th anniversary of liberation of bergen-belsen concentration camp . british soldiers liberated the nazi camp in northern germany on april 15 , 1945 . more than 72,000 camp inmates and prisoners of war died at the nazi concentration camp including diarist anne frank and her older sister margot . hundreds of people sobbed as they laid flowers and flags as memorials at the site .\namerican airlines has introduced new ` indie ' music playlists . the xx , haim , phantogram and hozier are among the artists featured . the change comes after customer feedback about the airline 's previous music . the new music is played during boarding and disembarking .\nthe four-bedroom house was listed with just a $ 1 reserve . it was put on the market for just one dollar , despite its million-dollar price-tag . the house was sold for $ 125,000 by its former owners . donald and jenny gibbs said the deal was too good to pass up . house-prices across new zealand are on the rise , with the average in auckland around $ 766,000 .\nthe incident happened near the buffet at the m resort spa and casino in henderson , nevada . witness describe hearing a large boom and then seeing a man lying on the ground with a pool of blood surrounding his salt-and-pepper hair . police say one adult who heard the gunshot and fell while running away was taken to the hospital with minor injuries .\nat least six people have been killed in attacks against foreigners in south africa . the attacks started after a labor dispute between citizens and foreign workers . the nation has about 2 million documented and undocumented immigrants . president jacob zuma says immigrants contribute to the nation 's economy and bring skills .\nwest ham co-owner david sullivan has admitted his side 's last 12 games have been ` exceedingly disappointing ' sam allardyce has told sullivan not to judge his side on 2015 's results . the hammers have won 11 points in the premier league so far this season .\nsecurity guard wayne heneker shot and killed a masked gunman . the incident took place almost a year ago at a local tavern in queensland . mr heneker says he was ambushed by shameem rahman . he says he made the decision to shoot at his attacker in a bid to save his own life . seconds after he shot his attacker , mr heneker discovered the gunman was former colleague shameemrahman .\nbarcelona beat psg 2-0 in champions league quarter-final second leg . andres iniesta provided neymar with his first goal of the night . the spaniard had failed to register a single assist or goal from 19 la liga appearances this season . iniesta has responded to critics by claiming he ` never went away '\n`` the blob '' is a huge area of unusually warm water in the pacific . it 's been causing problems for salmon fishermen in washington and california . the heat has caused rising air in air , which can lead to more thunderstorms . the blob also is affecting life on land , with low snowpack and wildfires .\nrobin esser has worked in national newspapers for 60 years and has written a memoir about his experiences . his best stories are from his days as editor of the william hickey gossip column in the daily express . the peak of esser 's 60-year career came when he was editor of sunday express .\nleigh griffiths scored a hat-trick in celtic 's 3-0 win over dundee united . the 24-year-old has scored 14 goals in his last 17 games for the bhoys . griffiths was on loan at hibernian from wolves in january last year .\nllit verma is said to have launched into furious assault on shiva , 11 . items were discovered in boy 's bag at dwarika prasad school in railamau village . alleged beating was so severe that shiva complained of a severe stomach ache . he was declared dead on arrival at fatehpur hospital in india .\ntottenham travel to burnley in the premier league on sunday . spurs defender ben davies will face team-mate sam vokes at turf moor . vokes and davies were part of the wales team which beat israel 3-0 . spurs have won just one of their last four premier league games .\nin the 1960s and 70s , adverts were regularly placed in national newspapers and magazines . the men in the ads have something of the don draper from hit series mad men about them ... albeit with a decade added on . there seems to be a large association between alcohol , sport and attractiveness with many of the ads featuring their main poses .\njonas gutierrez was left out of newcastle 's squad for sunday 's defeat by spurs . john carver says he and gutierrez had a training-ground bust-up last week . the pair have shaken hands and moved on from the incident . newcastle united travel to swansea city on saturday in the premier league .\ncesc fabregas captained spain in their 2-0 defeat by holland . the chelsea midfielder has struggled in the second half of the season . he has just four assists in 15 games for club and country in 2015 . fabreg as set to break thierry henry 's premier league record of 20 .\nin 2014 , 16 nepalis were killed in an avalanche on mount everest . the april 18 accident was the single deadliest incident to ever occur on mount mount everest , experts say . this year 's climbing season has been shortened by a week . the route through the khumbu icefall has been changed to make it safer .\ndaniel p. finney , 39 , of iowa , started out weighing 563lbs and is now down to 563.6 lbs . he is documenting his weight loss journey for the des moines register . he has lost 20lbs in a month . daniel is working with a therapist , a physical therapist , and a nutritionist to help him lose weight .\nbob greene : don mclean 's `` american pie '' is 44 years old , a timeless allegory . he says it 's a blend of modern poetry , folk ballad , beer-hall chant , high-art rock . he said mclean wrote it after buddy holly , ritchie valens and j.p. `` the big bopper '' richardson died . greene : mclean has guaranteed that the memory of those great musicians lives forever .\nthief ricky woolaston posed as a maintenance engineer to steal . he would wear uniform bearing the university of birmingham logo . he broke into students ' homes and stole laptops and mobile phones . but he was caught when he left behind his old police charge sheet . officers found it contained his name and address from a previous offence . he has now been sentenced to four years in prison at birmingham crown court .\nmother-to-be , whose name is injaz , was cloned from ovarian cells of a slaughtered camel in 2009 . she was born from the cells of the animal 's surrogate mother . injazi was six years old this week and is said to have conceived naturally .\nfour peanut kernels can improve gut health and ward off bugs like e.coli . university of maryland scientists found flour made from peanut kernel stimulates the growth of friendly bacteria . but peanut skin had opposite effect , promoting growth of harmful e.coli and salmonella bacteria .\njayden wingler of phoenix , arizona , was interviewed by fox news earlier this week about a theme park accident which left him with severe burns on his legs . while on camera , the youngster eloquently recalled what happened with arm actions and wide-eyed facial expressions to match his emotions . the youngster was injured at phoenix 's castles n ' coasters amusement park on march 27 .\nfive officers were called to a reported break-in in hagerstown , maryland . they found a black man staggering around outside the house . he was tased and pronounced dead at a local hospital . police have asked washington county sheriff 's office to investigate . the man has been identified as darrell lawrence brown , 31 , of upper marlboro , maryland , they said . all five officers involved are white and have been reassigned to administrative duty .\nleeds rhinos beat st helens 41-16 at the aj bell stadium on friday night . ash handley scored a hat-trick of tries in a comfortable win for the rhinos . the win takes leeds six points clear at the top of super league .\nkaren gaynor pruned the tree after complaint from her neighbour . court heard how council officials had told her she could trim the tree . but they physically refused to show her how much she could cut . magistrates took just 15 minutes to find the 53-year-old not guilty . she was locked in a police cell for six hours and put on bail for seven months .\nceltic are set to face inverness in the scottish cup semi-final on april 18 . the match will be played at hampden park before the first trains arrive . celtic have complained to the sfa over ticket prices for the match . the parkhead club have set prices at # 23 for the north and south stands .\ndave king has still to obtain sfa clearance for a seat in the boardroom . details of how the club proposes to stabilise the finances have yet to come . championship promotion play-offs threaten more landmines than somme . former rangers chairman walter smith hopes that the club can move on from its off-field dramas .\ntwo immigrants and three south africans are killed in attacks . the violence comes after residents accuse immigrants of taking their jobs . an aid group says about 8,500 people fled to refugee centers or police stations . in 2008 , scores were killed in anti-immigrant attacks in johannesburg .\nparty 's deputy leader harriet harman said grandparents would be allowed to take up to four unpaid weeks off per year in order to help with childcare . she said the policy would require a change in the law and would help millions of working families . but the proposed extension of workplace rights to millions more staff is likely to meet with a backlash from some business leaders .\nthailand 's king bhumibol adulyadej approves lifting of martial law . new security order grants sweeping powers to ruling military junta . critics say it marks country 's `` deepening descent into dictatorship '' military rulers insist measures are needed to maintain stability .\njamie carragher says yaya toure ducked out of the way of jason puncheon 's free-kick . the manchester city midfielder was part of a five-man wall at selhurst park . puncheon scored the winner to double crystal palace 's lead on monday .\ncharlotte crosby has lost over two and a half stone in the last year . she has been criticised for being too thin by fans on twitter and instagram . her geordie shore co-stars have also lost weight over the last 12 months . dr marilyn glenville says there is too much pressure on women to lose weight .\ntimothy norris - jones , 59 , had previously attacked his mother on two occasions . left her with bruises on face and a cut on her right wrist that needed stitches . was arrested after victim 's carer returned home and called the police . judge noel lucas branded the attack ` horrific ' and said : ' i hope you are thoroughly ashamed of yourself ' norris-jones was handed a restraining order banning him from spending any time alone with his mother for the rest of her life .\npsychologist darryl dewar has surrendered his registration . a woman claimed he told her she had ` nice t ** s ' and asked her to massage him during an appointment in october 2012 . she also claimed he called her a ` honey ' and a ` horny little thing ' the woman said he patted her head and told her to sing for him . mr dewar initially denied any of the events took place during his consultation . he has now been reprimanded and banned from re-registering as a psychologist .\nformer somerset seamer agrees deal to coach delhi daredevils . alfonso thomas is still recovering from a broken ankle . he is not yet fit for selection for somerset 's first lv = county championship fixture at home to durham . thomas is free to take up the short-term coaching appointment with delhi until april 16 .\nlesley conman and kerry green 's daughters were targeted by an online pervert . ms conman 's daughter abbie , 12 , was sent sexualised messages by a 17-year-old boy . ms green 's daughter emily was threatened with explicit pictures on facebook . humberside police refused to investigate as no offence had been committed . ms conman challenged the man herself , pretending to be abbie .\npsg play barcelona in the champions league semi-final first leg on tuesday night . zlatan ibrahimovic is past caring what other people think of him . he will walk down the tunnel convinced in his own mind that messi , neymar and luis suarez will be in awe of him .\nliam dawe was shaken as a four week old and suffered serious health complications . the 21-year-old died at derriford hospital in plymouth , devon , in march last year . he developed cerebral palsy after the assault and died from ` intra-abdominal sepsis ' police are considering manslaughter charges after he died two decades later .\nrichard attenborough 's possessions will be sold at auction house bonhams . lord attenboro made his big-screen debut in the 1942 film in which we serve . the lots include a treasure trove of unseen photographs , iconic props , scripts , posters and sketches . one of the most prized items is the cane used by hammond in jurassic park .\nman raped his daughter repeatedly from when she was just 10 years old . he impregnated her when she became a teenager and ` poisoned ' her . he was jailed for life at derby crown court after jurors heard how he ` took his daughter 's life ' through sexual abuse .\nshaun bryan was the intended target of the shooting in march 2011 . thusha kamaleswaran was paralysed in the crossfire of the gangland clash . bryan has now been jailed for a separate crime in which he subjected two women to a ` ruthless attack ' in their home .\njessica howard , 23 , was raped by clive howard , 57 , in norwich last may . she has now denounced ` night stalker ' howard for his string of assaults on six women . said he had ` humiliated ' her and ruined precious relationships with those closest to her . howard was jailed for a minimum of ten years and three months after admitting seven rapes , one attempted rape and three kidnappings .\nfiorentina moved into fourth place in serie a with 2-0 win over sampdoria . mohamed salah scored his second goal of the season in the win . miralem pjanic 's goal gave as roma a 1-0 home win over napoli . ac milan notched their first away win in over five months .\njailed paedophile ronald jebson died of kidney failure almost a fortnight ago . his final wish was for his death to be secret and victims ' families only found out after journalists told them 11 days after he died . in 2000 he confessed his part in the deaths of gary hanlon , 12 , and susan blatchford , 11 , thirty years earlier . the murder of the pair in 1970 became known as the babes in the wood case because their bodies were dumped in a copse on the fringes of epping forest .\nuefa have announced the draw for the europa league semi-finals . holders sevilla will face fiorentina in the last four . napoli will take on dnipro dnipsar for a place in the final . the final will take place in warsaw on may 27 .\njames webster , 35 , used hidden camera to film up women 's skirts . he targeted women as they bent over chest freezers in lidl in maidenhead . webster was caught after a fellow shopper spotted him moving bag . he admitted outraging public decency and was warned he could face jail . but he was spared jail and given a three year community order .\nlillian bustle , from new jersey , said in a ted talk that ` fat ' is just another word - and using it does n't have to be an insult . she said she calls herself ` short ' , because she is 5 ' 3 '' , and ` wife ' , because her husband is married .\noshun café in london 's soho is the latest single-item menu eaterie to open . the acai berry bowl cafe will serve four types of berry bowls for # 6 . the acaí berry is a rich purple fruit indigenous to the amazon rainforest .\nbarcelona beat paris saint-germain 3-0 in their champions league tie on wednesday . luis suarez scored twice to give barcelona a 3-1 lead in paris . neymar was barcelona 's most eye-catching forward in the first half . psg 's unbeaten run at the parc de princes ended after defeat .\nanthony mann , 78 , was spared jail for killing his wife janet , 78 . he stabbed her to death after she begged him to ` bring her suffering to an end ' mann was given a two year suspended sentence at leamington justice centre . he pleaded guilty to manslaughter by reason of diminished responsibility .\nsimon mitchell , 44 , stole from donna 's dream house , a charity for terminally ill children . he claimed to have close celebrity contacts to gain the trust of the organisation . but he was meant to be raising the profile of the charity following an arson attack in 2011 . he pleaded guilty to two counts of theft at preston crown court .\ncardboard gnome appeared on the cover of the beatles ' sgt pepper 's album . it was signed by all four band members and was given to a photography assistant . the gnome was sold at auction in dallas , texas , for # 29,000 . the album cover was the brainchild of artists peter blake and jann haworth .\nby last night , a total of 150 business leaders have signed the letter . they have warned against a ` change in course ' and backing the tories . among the new signatories is simon woodroffe , the founder of yo ! sushi . he was once a prominent labour supporter but has now turned his back .\ndonna husseys son freddie was killed when trailer came loose from land rover . toddler crushed against wall in bedminster , bristol , in january last year . mrs hussey was helpless as trailer mounted pavement and crushed him to death . she has been targeted by online trolls who blame her for her son 's death . tony davies , 38 , spared jail after admitting causing death by careless driving . but freddie 's parents have blasted davies ' punishment as a ` joke ' and ` disgusting '\nthe 42nd annual daytime emmy awards were held on sunday . tyra banks hosted the show for the first time since her show returned to tv last year . matt lauer received plenty of thanks during the two-hour broadcast . betty white was honoured with a lifetime achievement award .\na husband has been charged with more than 100 domestic violence-related offences . the offences include rape , ` solicit to murder ' and assault against his wife . a police spokesperson confirmed that each of the 102 offences had all been directed towards the same woman over the last 18 years . officers were first called to a carrington circuit residence in february where they found the 51-year-old woman with a fractured leg and bruising after she jumped off a balcony .\nmohammed alam , sayed juied and sadek miah carried out 21 raids . the trio targeted homes in west london , hertfordshire and surrey . they took cars , cash , jewellery , electricals and paintings worth # 1million . officers said the gang treated burglary ` like a job , a profession ' they were jailed for a total of 17 years at kingston crown court . alam was given five years , juied six and miah seven .\namit yadav , 20 , was driving his honda civic up to 25 miles over the speed limit . he lost control and smashed into an oncoming renault cleo in august 2013 . his two passengers - brothers haider , 20 and taimur kayani , 17 - were killed . thc acid in his blood indicated yadav had been smoking cannabis only a few hours before the crash , and cannabis was found in his glove compartment .\nthis year 's promposals are expected to cost an average of $ 324 , according to a survey from visa . the average american high schooler could spend over $ 300 just asking his or her date to the yearly dance . some students have even rented plane banners to pop the prom question - at a starting cost of $ 1,000 in the new york area . this year , canadians plan to spend $ 508 overall on prom of which $ 151 will be on promposal .\nwill allen , 36 , was a cornerback in the nfl from 2001 to 2012 . he played for the new york giants and the miami dolphins . the securities and exchange commission announced the charges monday . allen and his business partner susan daub are accused of running a ponzi scheme . they allegedly promised high returns to investors from funding loans to cash-strapped pro athletes .\nnew bra from tutti rouge comes in 28d to 38hh cup sizes . ashley james , who is a size e , models the bold collection . brand says it offers more cleavage without compromising support . jessica is a world exclusive with removable ` tutti 's cookies '\ncynthia lennon was married to john lennon for six years . she was there when he rose to fame with the beatles . she died wednesday at her home in mallorca , spain . she is survived by her son , julian . `` i 've had the most amazing life , a wonderful life , '' she said .\nalex stock featured in rolling stone 's discredited a rape on campus . was painted as callous social climber who discouraged rape victim from speaking out . said magazine should be held accountable for not disciplining reporter . sabrina rubin erdely 's reporting has been roundly discredited . columbia journalism school to release review of botched story sunday night .\nadidas has partnered with spotify to create an app that tracks your speed and matches music to suit . called adidas go , the songs are additionally selected based on the runner 's musical interests and listening history . once installed the app uses the phone 's accelerometer to track the user 's stride . it then searches for songs in the spotify library with matching beats per minute .\nmyopia rates among young people have doubled or tripled in east asia . researchers say the key to reducing myopia is sunlight . but getting kids outside is difficult in asian cultures . some schools are experimenting with `` bright light '' classrooms . the aim is to increase exposure to light and prevent myopia .\nwayne rooney was interviewed by ant and dec 's ` little ' counterparts on saturday night takeaway . the england captain enjoyed a kick-around with neil overend and hayden reid . the full interview will be aired on itv at 7pm on saturday . rooney admits he gets annoyed when fans chant his name in the street .\npaul downton has left his role as managing director of england and wales cricket board . nasser hussain believes the sacking of alastair cook as one-day captain was a slow and protracted affair . english cricket needs to learn to embrace the maverick .\nshezoy bleary , 22 , allegedly attacked 31-year-old chris copeland and two women with a switchblade in the early morning hours outside a chelsea nightclub after an argument escalated into violence around 4am . copeland , a former player for the new york knicks , was slashed in the elbow and abdomen and underwent surgery to repair the wounds on wednesday . his wife , katrine saltara , 28 , was also stabbed during the early-morning altercation after they left popular new york club 1 oak . bleary was seen leaving new york city 's 10th police precinct on his way to court just as copeland was undergoing surgery for his injuries on wednesday morning .\ngemma has expanded her range for evans with seven new curve-flattering dresses . the 34-year-old star showcased the collection at manchester store . she says she started the collection to show curvy women how to embrace their curves . ` you know big is beautiful , ' she tells femail .\na magnitude-7 .8 quake near kathmandu flattened homes , buildings and temples . the death toll is expected to rise as the full extent of the damage is assessed . at least 17 people were reported killed on mount everest . the quake was the strongest in the region in more than 80 years .\nburnley striker danny ings is out of contract in the summer . manchester united are keen on signing the 22-year-old . liverpool were prepared to exploit a loophole to guarantee a transfer . but louis van gaal is hoping to trump his rivals to sign ings . ings has scored nine goals in his first season in the premier league .\npatrick bamford has scored 19 goals in all competitions for middlesbrough this season . the 21-year-old has been on loan at derby , mk dons and chelsea . chelsea are now in talks with bamford over a new deal . the striker is expected to go out on loan again at the end of the season . bamford is hoping to emulate tottenham striker harry kane .\nbayern munich host porto in the champions league quarter-final first leg on wednesday . bayern have several star players out injured including arjen robben , david alaba , franck ribery and bastian schweinsteiger . pep guardiola has praised his former barcelona team-mate julen lopetegui for his brand of football .\nislamic state of iraq and syria has been terrorizing the world for months . frida ghitis : the group is clearly about religion , but it is also about power . she says isis is like other radical islamic groups , such as the taliban . ghitis says isis has changed the nature of terror .\nautopsy will reveal how williams ' dementia triggered paranoid tendencies . pathologist dr richard shepherd says actor 's insomnia and anxiety could also have been connected to the condition . he says williams ' online activity in the hours before his death suggested he knew ` there was something else wrong with him ' the day before he hanged himself , williams stuffed his watch collection into a sock and took it to a friend for safekeeping . williams hanged himself in august 2014 , a death which sent shockwaves through the celebrity world .\nkenyatta leal is the first graduate of the last mile , the world 's only prison-based tech incubator . he was one of 15 prisoners selected from about 200 to undergo six months of intensive business training with silicon valley entrepreneurs . the aim is for each to develop a business idea to embark on after their release .\nmuhammad naviede , 60 , died instantly in a plane crash in buckinghamshire . he sent a text to a relative shortly before the crash saying : ` i 'm in a planes out of control and it 's going down ' his piper tomahawk aircraft plummeted into a field near padbury in august . mr naviedes was jailed in 1995 for nine years for a # 45million fraud . his daughter raquelle gracie came fifth in the 2007 series of the x factor with girl band hope .\npolice in paramus , new jersey , responded to an animal that was headbutting a door in the wealthy community around 5pm saturday . the goat was captured in the middle of a roadway by three policemen around 6pm . it was handed over to animal control and was not injured .\nwith simple and sensible tricks , you can make your flowers last longer . serenata flowers have given seven unlikely tips on how to prolong the life of your blooms . from spraying them in hairspray to keeping them far away from fruit and electricals , we 've gathered a handy list of seven unlikely tricks .\njoan ashton , 81 , has been a resident of aneurin bevan court for eight months . her son steve found the ` terrible ' serving of baked potato and corned beef in a fridge in his mother 's room . he is now campaigning for more to be done to improve food standards .\nformer detective said money was diverted away from protecting children . offences , which included car crime , were considered crucial for satisfying a target culture introduced by the last labour government . same targets also linked to performance-related pay for top officers at south yorkshire police . it meant young girls suffered heinous abuse at the hands of sex gangs in sheffield and rotherham .\nthomas tuchel will replace jurgen klopp at borussia dortmund in july . klopp announced on wednesday he was leaving the club at the end of the season . tuchel has been manager of mainz for four years . the 41-year-old was linked with newcastle united in january .\njavier hernandez has been on loan at real madrid from manchester united . the 26-year-old has scored three goals in his last two games . real have a first option to buy the striker from friday . but carlo ancelotti says he will take stock of hernandez 's situation at the end of the season .\ntequin nayani spent six years as spokesman for the glazer family before they took over in 2005 . nayani 's book , ` the glazer gatekeeper ' , challenges popular perception about the us bosses . he claims malcolm glazer had little to do with the takeover , leaving it to his sons . nayni reveals that the glazers were huge fans of ferguson and never considered sacking him .\niraqi forces regain full control of baiji refinery , coalition says . peshmerga forces clear 84 square kilometers of isis-occupied territory in iraq . kurdistan region security council : at least 35 isis terrorists were killed during the offensive . iraq is working to fortify the facility 's defenses , the coalition says in a statement .\nronnie o'sullivan is forever sports ' may cover star . the world no 2 admits his mind can wander while waiting for his opponent to finish at the table . the 39-year-old says he does n't care if people think he 's ` bonkers ' or not .\nmario valencia was walking along street in marana , northwest of tucson . he was carrying a loaded rifle and pointed it at another officer in another car . officer in other car warned suspect he was loaded and told him to ` stand off ' but in apparent defiance of advice , officer michael rapiejko overtakes car . seconds later , his vehicle mounts curb and smashes into valencia 's body . valencia is sent flying into air , while car crashes through concrete wall . he remains in serious condition in hospital , but police have defended actions .\nluis suarez joined barcelona from liverpool for # 75million in january . uruguayan striker admits he was nervous at the prospect of playing alongside neymar at the nou camp . neymar kneeed suarez in the groin during a barcelona training session . neymars side-footed shot was caught on camera by barcelona fans .\nreal madrid manager carlo ancelotti wants the yellow card shown to cristiano ronaldo rescinded . ronaldo appeared to be unfairly cautioned by referee mario melero lopez after he was chopped down by defender antonio amaya inside the box . the decision means ronaldo is suspended for the game against eibar in la liga on saturday .\nandrew steele , 40 , has pleaded not guilty by reason of mental disease in the shooting deaths last august of his wife , 39-year-old ashlee steele , and her 38-year , old sister , kacee tollefsbol . dr doug tucker testified that a rambling note steele wrote about suicide and sexual relations with his wife and sister-in-law is delusional and shows steele 's brain was deteriorating because of als . steele , a former dane county deputy , was diagnosed with the progressive neurodegenerative disease last june . the defense claims he blacked out during the killings and that he was not responsible for them . the prosecution disagrees .\nrishi khanal , 27 , was trapped for 82 hours in the rubble of a building . he was rescued by a french search and rescue team . khanal is recovering from surgery and is too weak to talk about his ordeal . a 4-month-old baby was rescued 22 hours after the quake struck .\nandy murray beat kevin anderson in the fourth round of the miami open . kim sears was spotted working on her wedding tan in key biscayne , florida . she and andy will marry at dunblane cathedral on april 11 . thousands are expected to line dunblan high street on the day .\nraheem sterling has been pictured smoking a shisha pipe . the liverpool forward was also filmed apparently inhaling nitrous oxide - known as ` hippy crack ' sterling is expected to meet brendan rodgers on thursday . the england international will be reminded of his professional responsibilities . liverpool will not be fined for the incident .\njuan mata has been awarded the player of the month award for march . mata scored twice as manchester united beat liverpool and tottenham . the spain international has been excluded from the spain squad since their group exit from the 2014 world cup in brazil . louis van gaal 's side return to premier league action against aston villa on saturday .\nchild rapist arman nejad was able to live streets away from his victim . he dragged her into his house and raped her as she walked to youth club . she went to police in 2010 but case was mysteriously dropped . three years later she asked why it was shelved and detectives arrested him . greater manchester police admitted ` unacceptable delays and failures '\nthe party was held at an abandoned industrial area on mcpherson street in botany , sydney 's east . police were forced to use capsicum spray on a number of the attendees . one officer had to have a piece of glass removed from his head after having a bottle thrown at him . a 26-year-old woman was arrested after she allegedly assaulted an officer .\na pew research report shows americans are ok with people having other priorities . in the u.s. , almost 42 million adults have been married more than once . in norway , 82 % of couples have their first child out oflock . in scandinavia , it 's clear marriage is dying .\nrobin van persie made his first appearance for manchester united under 21s . the holland international scored twice in the 4-1 win over fulham . van persie has been sidelined with an ankle injury since february . louis van gaal 's side are top of the under 21 premier league . the red devils travel to west bromwich albion on saturday .\nexperts say red squirrels have returned to windermere after 16 years . native reds have been wiped out in england and wales since 1952 . numbers have been dwindling thanks to the squirrel pox virus carried by greys . but now , red squirrel 's have been spotted in the picturesque lake district .\nwilliam smith died four months after his mother alison overton lost her battle with cancer . teenager would wear her bandana and spray her perfume around the house after she died . he hanged himself in august last year , just four months later . inquest heard he had been ` settling back in well ' at school following his mother 's death .\nalarmed by rash of explosions and injuries caused when amateurs make hash oil , lawmakers in colorado and washington are considering spelling out what 's allowed . the proposals came after an increase in home fires and blasts linked to homemade hash oil . in colorado , at least 30 people were injured last year in 32 butane explosions involving hash oil -- nearly three times the number reported throughout 2013 .\nthe 5,300-ton hms talent limped back to port with a huge dent and will be out of action for several months . royal navy top brass are investigating the incident . defence officials refused to disclose exact details of the crash . but they were adamant that hms talent struck ` floating ice ' rather than a russian sub .\nraghunandan yandamuri , 29 , of king of prussia , pennsylvania , was convicted of murdering a baby and her grandmother in 2012 . he was sentenced to death in october and has appealed the decision . yandamuri says he 's so dissatisfied with his attorneys he 'd rather be executed now than continue seeking a new trial with them . he accused the attorneys of not responding to his calls or letters .\naer lingus flight ei 660 from dublin to vienna had to return to dublin . the flight was forced to land back at the same airport at 9.20 am . 120 passengers were accommodated on alternative aircraft . the aircraft is undergoing an inspection to determine the cause . it was the second incident of the day at the airport .\nben gibson is dreaming of a return to the premier league for his boyhood club middlesbrough . the 22-year-old defender is hoping to help his uncle steve lead them to promotion . boro face norwich city in the championship on friday night . gibson was sacked as manager of the club in the champions league group stage .\nbanned from every pub in birmingham for being drunk and disorderly . offenders were placed on the 1904 blacklist after four convictions . list was sent to landlords who were not allowed to sell them alcohol . offences included drink-driving a steam engine and riding a horse while drunk .\nonce down-at-heel city has become one of europe 's hippest destinations . the centre pompidou malaga is the first of several popup versions of the famous parisian gallery planned outside france . there are also museums , botanic gardens and a moorish fortress .\nfootage shows how one of the men emerged from his black bmw with no shirt on . he then tried to punch the driver of a white bmw through his car window . distressed onlookers tried to intervene in the violent clash . driver of the white bmw then accelerated and hit the other man . he briefly reversed before ramming into a white mercedes and white prius . the 25-year-old driver of the bmw was taken to hospital as a precaution . he was then arrested on suspicion of actual bodily harm after the incident .\na new zealand family have transformed a truck into a castle . the house is a home for justin , jola and their baby son piko . it features a huge kitchen , oven , lounge area and a hammock . the bedroom is made from cut-outs from old musical songbooks . it also has a composting toilet , washing machine , gas fireplace and a roof bathtub .\nbubba watson shows off incredible trick shot in china . american hits baseball-style shot with a driver . watson finished t-38 at the masters and t-29 at shenzhen international . the 36-year-old is one of the favourites to win his third masters title .\ntwo drivers were driving two supercars through an underpass in beijing . green lamborghini and red ferrari were both wrecked in the crash . both drivers have been charged with dangerous driving and detained . chinese internet users have speculated that the pair were ` drag racing ' the cars are worth a combined total of # 1.3 million .\ntiger woods is preparing for the masters 2015 at augusta national . the former world no1 has returned to action after a break from golf . woods was joined on the course by his children and long-term girlfriend lindsey vonn . the first practice session on monday had been woods ' first public appearance for 60 days .\nmilos raonic and nick kyrgios will make their queen 's club debuts . raonic lost to roger federer in last year 's wimbledon semi-final . kyrgien beat two-time champion rafael nadal in the fourth round . the aegon championships begin on june 15 .\ned miliband has confirmed he will press on with his controversial rent controls plans . but experts have warned that the plans will backfire and slash investment . labour leader said it would give millions of ` forgotten ' renters a fairer deal . but the generation rent campaign group said his plans were ` riddled with loopholes '\nsteven gerrard and frank lampard to be honoured by the pfa on sunday . the pair will leave the premier league at the end of the season . gerrard will join la galaxy , while lampard will join new york city fc . the duo have won 19 major trophies between them .\nnonsuch high school for girls in cheam , surrey , sacked peter gale in september . headteacher was fired due to ` serious breaches ' in safeguarding procedures . school counts singer katie melua amongst its alumnae . mr gale moved to the school after working as the deputy headteacher at rosebery school in epsom .\nuniversity of cologne scientist led research proposing a new theory . it suggests temperatures at earth 's equator were -40 °c -lrb- -40 °f -rrb- 2.4 billion years ago . the reasons why the whole planet was frozen are not understood . but it could have implications for finding life on frozen moons like europa . it may have been that the entire earth was subjected to a ` deep freeze ' , with the oceans turning into ice 1,000 ft -lrb- 300 metres -rrb- thick .\nnewcastle were beaten 1-0 by sunderland in the tyne-wear derby . jermain defoe 's stunning volley secured a vital win for sunderland . newcastle boss john carver was left embarrassed by his side 's performance . the magpies were second best in every department during the game .\njonathan trott last played test cricket for england in november 2013 . he withdrew from the ashes with a stress-related illness . trott was making his first test appearance since that tour . he was dismissed by jerome taylor in the first over of the innings . england slumped to 1-1 after just five balls in their first innings .\nkaren catherall , 45 , was murdered by darren jeffreys , 47 , in september last year . she had been drinking with him before returning to her home in gwernaffield . police have revealed she made a 999 call hours before she was killed . but call handlers at bt did not connect the call to the police or send help . her family are calling on bt to review their procedures and answer questions .\nmanchester city captain says his mum stopped him moving to old trafford . sir alex ferguson wanted to sign kompany from anderlecht when he was 17 . kompan says his mother insisted he finish his a-levels before moving . the belgian international eventually moved to the premier league in 2008 .\nmichelle knight spoke at the cleveland rape crisis center 's faces of change luncheon on wednesday . she revealed that she does have a boyfriend . knight was one of three women held captive by ariel castro for almost 10 years . she was freed on may 6 , 2013 . the luncheon raised a record $ 254,000 for the center , which counsels rape survivors .\na bold red fox spots a deer bone on a frozen lake in japan and begins to fight both a flock of crows and an eagle for the tasty lunch . the fox proudly holds the bone tight in its jaws as an eagle descends to challenge the animals over possession of the lunch .\nmanchester city lost 2-1 at crystal palace in the premier league . glenn murray and jason puncheon scored for the eagles . yaya toure grabbed a late equaliser for the visitors . manuel pellegrini 's side are now four points behind chelsea . city had recorded seven wins in a row against palace .\ncalifornia gov. jerry brown ordered a 25 percent overall cutback in water use by cities and towns in the golden state on wednesday . the crackdown comes as california and its nearly 40 million residents move toward a fourth summer of drought with no relief in sight . state reservoirs have a year 's worth of water , and with record low snowfall over the winter there wo n't be much to replenish them . wells in some parts of the state are going dry as groundwater levels fall . affluent southern california communities with lots of landscaping on automatic timers were some of the worst offenders , topping 300 gallons of water per person a day compared with 70 gallons for some san francisco bay area communities .\nalexis sanchez says he is ` very proud ' to have joined arsenal . the chilean forward has been nominated for pfa player of the year award . sanchez has scored 22 goals in all competitions since joining from barcelona . he has singled out santi cazorla as a ` spectacular player '\nrangers board have held their first meeting with mike ashley since assuming control . interim chairman paul murray and director john gilligan held talks with ashley . ashley owns an 8.92 per cent stake in rangers . the newcastle united owner has secured an 8-92 stake in the scottish club .\nevan summerfield from devon died from meningitis just 12 hours after laughing for the very first time . the youngster had woken from a nap with a rash stretching from his head to his belly-button . he was rushed to derriford hospital in plymouth but doctors could n't save him . his death has devastated his parents shannon summerfield , 17 , and kris adams , 19 .\nmarcus and markieff morris are being investigated for allegedly assaulting their former mentor in arizona . police say the 25-year-old twins and three others assaulted erik hood at the nina mason pulliam recreation & sports complex in phoenix on saturday , january 24 . hood told police he sent a text telling the twins ' mother , thomasine morris , he 'd ` always be there for her ' and that another friend , julius kane , 25 , saw the message and concluded their relationship was sexual in nature . the morris twins have denied assaulting hood but markief did admit being at the game because he sponsors one of the teams with marcus .\nrenault 16 was the world 's first ever hatchback unveiled in april 1965 . it was designed to help french farmers transport their sheep to market . now it accounts for two thirds of all new cars sold in britain . seven of the top ten sellers last year are classed as hatchbacks .\nluke rockhold takes on lyoto machida in new jersey on saturday . the middleweights will be fighting for the ufc 's middleweight title . rockhold is bidding for his fourth consecutive victory . machida is confident he can upset rockhold and earn himself a title shot .\nrangers promise to probe claims mike ashley has grabbed control of club 's badges . reports emerged on thursday suggesting newcastle owner was now the official owner of the light blues trademarks . sports direct tycoon had been given security over the icons and logos as part of the # 5million loan handed to the previous gers board in january .\nscientists in finland say eye-spots on butterfly wings are a form of mimicry . they say the patterns mimic the eyes of larger and more threatening species . the researchers tested the theory by showing great tits pictures of owl butterflies that had been digitally altered , and watching their reaction . images of owl eyes caused the birds to be startled , flee and in some cases give off alarm calls . but images of owls without eyes did not produce the same reaction .\njermain defoe scored the winner for sunderland against newcastle on sunday . defoe 's stunning volley was enough to secure a 1-0 win for the black cats . the 32-year-old says he is glad to be back in the premier league after leaving mls .\nprince andrew was inspired to launch key to freedom after visiting girls ' refuge in india . inspired by women 's interlink foundation 's work during diamond jubilee visit . he donated # 10,000 seed capital to fund the first bales of silk . now the silk is sold online and on the british high street by topshop . proceeds paid back to the women as a salary .\npremier league clubs have turned down a # 135m deal from guinness to replace barclays as title sponsor . the premier league want as much as # 60m a year from a mega title backer . gary neville was desperate to get away from stamford bridge for nicky butt 's wife 's birthday party . surrey boss richard thompson will push for a free-to-air highlights deal for the domestic t20 blast this summer .\nian guffick asked pupils at mitton manor primary school to make changes . 31-year-old also altered a number of pupil 's exam answers himself . probe by local education authority found he had done the same . department for education annulled all sats exam results for the entire school . guffik has been banned from classroom for at least two years .\ndan klice , 57 , was officiating at a competition at ramapo college in mahwah , new jersey . police say that he saw the errant javelin headed towards him and tried to dodge it - but tripped over in the process . his fall left his left heel exposed , which was hit by the soaring projectile .\nthere has been a lot of hype surrounding the april lunar eclipse as the moon is set to turn blood red this easter weekend . but in the lead up to the rare event tomorrow , the sydney observatory has been expressing their concerns over the bad weather forecast for the big night . so much so , they 're plans to regularly update keen spectators with phase process images have been thwarted due to cloudy conditions . the eclipse is the third in a series of four blood moons , with the final one expected on september 28 . the next two eclipses are forecast to happen are on april 4 and september 28 , 2015 .\nmarca say that james rodriguez is ` worth his weight in gold ' cristiano ronaldo 's appeal against yellow card will be heard on friday . roberto mancini 's targets for inter milan include yaya toure , filipe luis and lucas leiva . alvaro morata says he is not interested in a return to former club real madrid .\nmanchester city will not compromise on quality in their search for homegrown players . manuel pellegrini watched city 's academy in their fa youth cup final . the premier league champions need eight homegrown players for their first-team squad next season . frank lampard , scott sinclair and micah richards will all leave while richard wright is expected to follow .\nukip convert mark reckless faces an uphill battle to keep his seat . he is on course to lose his 2,920 majority in rochester and strood . reckless defected to ukip to trigger a by-election in november . the revelation comes after a poll showed nigel farage trailing tories .\nchelsea are weighing up a move for west ham striker enner valencia . jose mourinho earmarked the ecuadorian in january as he chased juan cuadrado and douglas costa from shakhtar . chelsea have offered patrick bamford a new contract but he will go out on loan .\nthe city of wellington hosted its inaugural cubadupa festival last weekend . the colourful party shut down streets and spanned several blocks on cuba street . the festival was the first of its kind in several years and drew in thousands of locals and tourists . more than 100 different performances were scheduled over the weekend .\ntracey neville will manage england at the netball world cup in australia . the 38-year-old is phil neville 's twin and sister to gary neville . she has been appointed as england 's head coach for the tournament . neville believes she is a natural leader like her brothers .\napril 14 is equal pay day ; women earn 77 cents for every dollar men earn . julian zelizer : hillary clinton should announce she would take a 23 % pay cut to close the gap . he says clinton is trying to portray herself as a populist fighter for the middle class . zelizer says clinton should use her status to highlight the offensive gender wage gap .\nrivals ryanair and aer lingus have reignited their twitter feud . ryanair posted a cheeky photo in dublin airport 's terminal 2 . aer lingus responded by posting a photo of where they fly out . the two airlines have been involved in a twitter spat before .\natletico madrid take on real madrid in their la liga derby on tuesday night . carlo ancelotti 's side must accommodate cristiano ronaldo , gareth bale and karim benzema in a 4-3-3 . diego simeone 's side have won the last six meetings between the two sides .\nborussia dortmund are likely to miss out on champions league next season . mats hummels has admitted he is considering his future at the club . the germany defender has been linked with a move to manchester united . hummela has two years left on his contract with the bundesliga club .\nthe headless body of a seven-pound-five-ounce infant was found in a trash heap in farmingdale , new jersey , on nov. 11 , 2014 . the baby , who was named 'em ma grace ' by a local church , was discovered by a recommunity recycling facility employee . now , more than five months later , authorities have released the sketch along with photos of evidence as they continue to investigate the child 's death .\nmariel hemingway , 53 , is the granddaughter of the famous writer ernest hemingways . she has written two books about her troubled childhood . out came the sun and invisible girl are aimed at adults . mariel 's family was plagued by mental illness , addiction and suicide . her father jack was an alcoholic and her mother byra was a drug addict . her sister margaux was a model and actress who died of an overdose in 1996 .\npatrick lyttle was allegedly struck by his brother barry in kings cross in sydney 's inner-city on january 3 . barry lyttle , 33 , has pleaded guilty to causing grievous bodily harm . he will now be sentenced in sydney 's local court , where the maximum jail term is two years . patrick was rushed to hospital and spent six days in a coma . he has since made a ` fantastic recovery ' and is calling for charges to be dropped .\nbig boy the buffalo escaped his pen in round rock , texas on friday morning . police were called to the scene and used their patrol vehicles to herd the animal back to his farm . despite the detour the buffalo made it home safely free of injury . his owner , 79-year-old joe don kotrla-chipps , said big boy has got into bad habits recently and has taken to jumping over his fence .\nsusan farmer , 37 , from eddy , texas , was told by doctors to lose half her body weight . she was told she would die unless she dropped more than half her weight . but her mother continued to buy her fatty foods . despite knowing she has an eating problem , susan is seen piling junk food into her tolley .\nderek lowe , 38 , and tina lowe , 33 , died after being hit by an amtrak train . the couple were hit shortly before 10am on sunday in durham , north carolina . the train was headed from charlotte to new york city when the accident occurred . authorities say none of the 166 passengers on the train were injured .\nally mccoist deserves a chance to prove himself at a stable club , says walter smith . the ibrox legend worked closely with mccoists and coach kenny mcdowall . mccoism was axed as rangers manager amid speculation surrounding his future . smith insists that both men have something left to offer in football .\nhistoric steam boat is on the market for more than $ 1.2 million . originally named ena , the historic steam yacht was designed in 1900 and built the following year . it is said to be one of only three that remains in the world today . the boat first undertook war service as hmas sleuth in world war i before it sank years later in 1981 near hobart . the edwardian style yacht is available for inspection by appointment only and will be up for auction on tuesday , may 19 .\nsunderland host crystal palace in the premier league on saturday . alan pardew says his side are in ` great form ' and should be looked at in that light . pardews was the first newcastle boss to suffer four successive defeats to sunderland . palace beat manchester city 2-1 on monday night .\nuk children 's cookbook guru annabel karmel has slammed pete evans ' controversial bone broth recipe in his book . she says it is dangerous and goes against everything nutritionists and child health experts recommend . ` babies need milk - it needs to be a formula or breast milk because it has the nutrients they need , ' she said .\naritz aduriz scores 90th minute equaliser for athletic bilbao . rodrigo de paul had given valencia the lead at san mames stadium . valencia reduced to 10 men after nicolas otamendi was sent off . espanyol extend villarreal 's winless streak to six games with 3-0 win . getafe move 10 points clear of the bottom three with 1-0 victory at elche .\nsigma alpha epsilon fraternity at clemson university in south carolina has been put on probation for two years . the group held a christmas theme party that flared up racial tensions on campus . the ` cripmas ' party , held last december , had white students throwing stereotypical gang symbols while dressed in red and blue bandanas .\nhillary clinton launches video announcing her 2016 presidential bid . includes a number of ` everyday americans ' who are directly involved with the democrat party . julie stauch , sean bagniewski and vidhya reddy all appear . bagniewski , who lost in 2013 , was a campaigner for clinton in 2007 . he is said to be in talks with martin o'malley 's people and may support him . stauch is a former state senate campaign manager for wendy davis .\nfirst daughter reveals that her curls simply straightened out over time . the 35-year-old also discusses her marriage and motherhood in the latest issue of elle . chelsea 's hair was once a big deal , but she says it 's now ' a little bit wavy '\nandy murray is in munich for the bmw open . the scot 's coach amelie mauresmo is expecting a baby in august . murray will be coached by jonas bjorkman until the us open . murray and mauresmo parted company with ivan lendl last year .\nnew world wealth has compiled a list of the top 10 cities for multi-millionaires . the percentage of multi - millionaires globally has grown by 71 per cent in the past 10 years . ho chi minh city has seen a 400 per cent rise in multi-m millionaires . hong kong has the highest number of millionaires with 15,400 . new york city follows with 14,300 and london and moscow are not far behind .\none male found hiding under a bed is being treated as a suspect , sources say . a medic says most of the victims had been shot in the back of the head . 147 people were killed in the attack , including 142 students and three security officers . kenyan police have arrested five suspects in connection with the attack .\nukip leader nigel farage admits to having a pint most lunchtimes . he said it was a ` reasonable proposition ' to charge people who end up in hospital more than once after drinking . he also revealed he is finding the election campaign ` knackering ' polls suggest support for ukip is on the slide as the party struggles .\nst etienne want to sign cardiff full-back kevin theophile-catherine on a permanent deal . theophile catherine signed for cardiff from stade rennais for # 2.1 million . the 25-year-old has been on loan at st etienne this season .\nnavy 's x-47b drone plugged its in-flight refuelling probe into the hose of an omega air kc-707 tanker off the coast of maryland . the salty dog 502 vehicle is one of two unmanned carrier air vehicle demonstrators -lrb- ucas-d -rrb- on the x - 47b program .\nmark wood will play three test matches against west indies . durham paceman is not the shape or size of your traditional fast bowler . wood has been called up by england after impressing for lions . the 25-year-old has been called up after impressing in south africa .\namir khan posted the pictures to the image sharing app from behind the wheel . the boxer could face a police probe after posting pictures on snapchat while driving his car . the 28-year-old was driving in fremont , california , close to san francisco . police are yet to say if they will be looking into the snaps and if an offence took place .\nengland captain alastair cook completed a century on the second morning of england 's opening tour match in the west indies . cook resumed on 95 and reached three figures with minimal fuss before retiring out . ian bell arrived at the crease , with batting time more important to the tourists than attempting to force a result in this two-day fixture .\nthe seesaw was built by kyle toth , who runs his own custom woodworking business in temecula , california . it measures 45ft in length and according to kyle , sends its occupiers into the air at a height of around 25ft . kyle said the tree was about 65ft long so he cut it to make it even on both sides and the seesaw is born .\nrotherham striker matt derbyshire put steve evans ' side in the lead after four minutes . fulham 's ross mccormack equalised for the visitors in the 67th minute . fulam boss kit symons admits his side were second best and need to rebuild .\njuventus progressed to the coppa italia final after beating fiorentina 3-1 on aggregate . alessandro matri , roberto pereyra and leonardo bonucci scored for the old lady . alvaro morata was sent off for a clumsy challenge on alessandro diamanti .\nbarcelona will make a # 50m bid for juventus midfielder paul pogba . the catalan club plan to let him stay in italy for a year on loan . chelsea are barca 's only realistic transfer rivals for the frenchman . lionel messi has recovered from a foot problem to start for barca .\nliverpool face aston villa in the fa cup semi-final on sunday . the reds are currently fourth in the premier league , four points behind manchester city . simon mignolet insists he can not choose between winning the fa cup and a top four finish . the belgium international has been in fine form since returning to the team .\ngreg dyke was given a parmigiani watch as a gift at the world cup . the watch was one of 65 given out in goodie bags totalling more than # 1million . dyke initially refused to return the watch , having promised to donate it to the fa 's official charity partner , breast cancer care . but fifa 's ethics committee has confirmed receipt of the item and has now closed proceedings on the matter .\nboeing is showing off its roomier overhead luggage bins . designed for future aircraft which will be used by delta air lines and alaska airlines . the ` space bins ' can hold 50 per cent more carry-on luggage than existing compartments on the current fleet of 737s . boeing is promising faster boarding and turnaround times at the gate with the larger overhead bins . so far two airlines - delta and alaska - have ordered the new bins .\nlast weekend 's raid in london 's jewelry district feels like it has been taken from a movie like `` ocean 11 '' the heist was organized in a way not seen in london for more than 40 years . roy ramm , a former scotland yard detective , says burglaries and robberies are often committed by working-class people .\nfootball league board member jim rodwell is leaving notts county . there will be an election for a league one representative . league one clubs have been informed that there are two nominations . former manchester united director maurice watkins is now chairman of barnsley . watkins is a sports lawyer and his firm represents qpr over their considerable ffp troubles . qpr are facing fines of up to # 50million for multiple breaches of financial fair play regulations .\ntonny vilhena is keen to leave feyenoord this summer . southampton boss ronald koeman made enquiries for the winger in january . the saints are also monitoring his team-mate jordy clasie . koeman is also looking to make eljero elia 's loan move from werder bremen permanent .\nalaska airlines flight 448 took off on monday from seattle to los angeles . the pilot turned back to seattle 14 minutes into the flight when he heard screaming and banging from beneath the aircraft . the baggage handler had fallen asleep in the cargo hold before take-off . he was not in danger of freezing or running out of oxygen , according to airline .\nif you 're having trouble sleeping it could be down to the interior design of your bedroom . a new infographic from london furniture company made.com shows scientifically proven tactics you can use to change the layout of your room . sleep experts recommended you arrange your room symmetrically , install heavy curtains and keep pets out .\npete evans ' baby cookbook has been dumped by publishers pan macmillan . the book was due to be released last month but was delayed . the publisher pulled the book over concerns about a recipe for baby formula made from liver and bone broth . the cookbook is set to be self-published at the end of this month . the paelo way co-authors have spoken out in defence of pete evan 's decision to release the book independently .\nnicola sturgeon said the ` direction of travel ' was towards independence . but she refused to rule out a second referendum on breaking up the union . david cameron warned of the ` frightening ' prospect of snp holding labour to ransom . he urged ukip and lib dem voters to lend their support to the tories .\nchinese officials say they are cracking down on stripteases at funerals . exotic dancers are hired to perform at wakes to attract more mourners , xinhua reports . photos obtained by cnn show mourners of all ages watching the performances . the ministry of culture says striptes undermine the cultural value of entertainment business .\nmodel has 21,500 soldiers and 10,000 horses and was built in the 1970s . it depicts the key moments of the battle which allowed the duke of wellington to defeat napoleon 's forces . the model was in a poor condition before being restored ahead of the 200th anniversary of the conflict . it will be on display at the royal green jackets museum in winchester .\ngerman chancellor has been spending easter on the island of ischia , near naples . she and her husband , chemistry professor joachim sauer , have been there for a decade . the couple traditionally spend their holiday at the five-star miramare spa hotel .\ngrant allen of harlow , essex , travelled first class around the world with girlfriend . the pair stayed at top hotels on at least eight holidays costing # 30,000 . allen , 38 , bought holiday home on costa del sol , spain , using criminally gained money . also splurged # 8,700 on a holiday to florida in 2009 when he took his girlfriend and children to disney world . allen jailed for six years for mortgage fraud and money laundering .\nsteven nelms penned a moving essay celebrating his wife and everything she does for their family as a stay-at-home mother . in the essay nelm says he ` ca n't afford ' his wife to be a stay at home mother , and then breaks down the monetary value of all that she provides . ' i would have to make over $ 100k to even begin to be able to cover my living expenses as well as employ my wife as a stay-at-home mom ! ' he writes . nelmi estimates that the childcare his wife provides is worth $ 36,660 a year , the annual-salary for a full-time nanny .\nscientists at texas tech university say older people are more susceptible to emotions when making decisions over their retirement . more than 50 per cent of pensioners panicked and sold investments during 2007 and 2008 global financial crisis . research shows those who did follow that path and sold at lowest point eight years ago with a pension of # 100,000 would only have # 63,000 today .\nwolfsburg playmaker kevin de bruyne has been linked with a move to bayern munich . franck ribery and arjen robben 's contracts run out in 2017 . de bruyne is top of the bundesliga assist charts with 16 this season . but ribery says the belgian is the wrong type of player for bayern .\nrangers say they still own the club 's famous badge and trademarks . mike ashley 's sports direct have registered the trademarks in their name . rangers insist the club are the rightful owners of the trademarks . the club will return the rights to sports direct when a # 5million loan is repaid .\nuniversity of illinois scientists have created the first 3d simulation of merging black holes in a disk . it shows what happens when two supermassive black holes collide . material swirls around the objects in a quasar and jets fire out from the poles in the merger . shown here are gravitational waves produced . it comes after two black holes were found to be seven years from merging .\nmaria sharapova beaten in three sets by angelique kerber of germany . the top seed lost her world no 2 ranking after the defeat . madison brengle of the united states beat petra kvitova 6-3 , 7-6 -lrb- 2 -rrb- caroline wozniacki beat lucie safarova to reach quarter finals .\na deadly tornado hit illinois on thursday and killed his wife geraldine . sadly , owner clem schultz 's beloved wife geraldines died in the blast . schultz thought his dog missy suffered the same fate as his partner but after missy was spotted by a coned worker , police called schultz and reported the sighting . missy ran 2.5 miles from her schultz and his grandson tyler rowan before they were able to catch up with her .\nmany big brands are shrinking their products . cadbury 's fingers will contain two fewer chocolate fingers from now on . they join creme eggs , pg tips teabags and john west tuna . it 's seemingly part of a strategy across the retail industry . but it 's not better for your pocket if manufacturers do n't pass on cost saving .\nthe trophy room at sandringham used to feature stuffed rhino heads . now every last piece of hunting memorabilia has been removed from public display . all 62 items -- including an indian tiger , a leopard , skins and tusks -- have been placed in storage .\nsenator thad cochran 's personal assistant fred pagan has been charged with trafficking drugs from china . police seized 181.5 grams of meth from his home on thursday . pagan , 49 , has worked for cochran since he was 16 years old . he is accused of buying the substances to exchange for sexual favors .\nwallace , 67 , said that clarkson has ' a lovely voice ' but that she ` could stay off the deep dish pizza for a while ' the fox news anchor 's comments were made on the nationally-syndicated mike gallagher show on friday . now , wallace has apologized for his ` offensive ' remarks , saying that he should have spoken of clarkson 's ` remarkable talent ' , not her weight . the same day , clarkson revealed that she has had to deal with criticism about her weight since she appeared on the first season of american idol in 2002 .\nvideo shows galaxy s6 edge bending and shattering under 110lbs -lrb- 50kg -rrb- of pressure . third-party warranty firm squaretrade released the video and has since been criticised by samsung . the south korean firm has now responded with its own video demonstrating a three-point bend test on both its galaxy s5 and s6 models .\nelle macpherson , 51 , carries ph balance urine tester kit in her handbag . uses it to check her ph value to check state of alkaline . says she believes most ailments come from having an acidic body . has been labeled ` the body ' since the 1980s .\npaul mcgowan has been given a curfew after assaulting a police officer . dundee boss paul hartley says he will not risk playing the rogue . hartley fears mcgowan could break his curfew and end up in prison . the final-day derby at tannadice is the only game he can play in .\njustus howell , 17 , was shot twice in the back by police in zion , illinois . officers had been responding to reports of an argument at 2pm on saturday . the high school senior was pronounced dead at the scene . his mother , latoya howell , said he wanted to be a surgeon .\nskin laundry is a new york city-based clinic that offers a laser facial for $ 100 . the clinic 's light and laser procedure is designed to tighten skin and improve complexion . clients must sign an eight-page waiver that includes wording that prepares for the possible death of the client .\nmarcus yensen , 95 and madelyn yensen , . 94 , of salt lake city , died within hours of each other earlier this month . the couple had been married for 74 years . madelyn died after suffering a seizure when she was called over to her husband 's bedside and was holding his hand . the traumatic attack was the last time they saw each other .\nlionel messi wants celtic to play in the champions league next season . the barcelona star has played at celtic park three times in europe . messi wants to experience the ` best atmosphere in europe ' again . celtic lost 2-1 on aggregate to maribor in the play-off round in august .\nliu guijuan , an opera singer in china , posted pictures of headdress on weibo . it was made from the feathers of 80 kingfishers , which are protected in china . she said she bought the rare headpiece more than a decade ago for # 10,775 . but she was quickly criticised for her indifference towards animal welfare .\n80 heads of good and outstanding autonomous schools write to mail . they say there is clear evidence that academy-style freedoms are benefiting children . but they say labour and some senior lib dems appear to be threatening to reimpose state controls . letter , signed by the heads , was backed yesterday by david cameron .\ntourists urged to boycott ` high risk ' resorts linked to human rights abuses . ethical maldives alliance has colour-coded over 100 hotels . hotels are coded as ` low risk , ' ` highrisk , or ` under consideration ' alleges that the hotels are linked to corruption or political oppression . conrad maldives rangali island is one to avoid .\na 51-year-old woman has been charged with assault after a confrontation with her african neighbours . the woman , who lives in perth , is accused of racially abusing her neighbours . footage of the incident shows her brandishing a crowbar and verbally abusing the men . the couple say their children have asked if they are ` really monkeys ' the woman has denied she was the victim and insists she was injured in the encounter .\ndavid beckham 's son romeo completed the three-mile mini-marathon on sunday . the 12-year-old raised # 6,000 for charity by running the race in kensington . the beckham family were there to cheer on romeo as he completed the race .\nprime minister reveals battle is raging behind the scenes to replace him . boris johnson has ` suddenly realised ' he is not his competition . home secretary theresa may and chancellor george osborne also in the frame . mr cameron also admits membership of bullingdon club is ` cripplingly embarrassing '\nthe man , known only as jason , from vancouver , uploaded the clip to youtube . it shows him explaining how he will pop the grape-sized growth on his wrist . his sister in law then hammers the needle deeper into the cyst . sharp cries of pain are heard from jason with each hit .\nbelinda , 56 , from essex , was looking ` worn out ' and wanted a facelift to fix jowls . she travelled to turkey for the procedure , where it was cheaper than uk equivalent . but the botched operation left her with ` horrendous ' scars around her ears . she is to appear on tlc 's extreme beauty disasters to warn of dangers of surgery abroad .\ned miliband accused of plunging campaign to a ` new low ' by ` weaponising dead migrants ' labour leader suggested david cameron bore personal responsibility for drownings of refugees in the mediterranean . senior conservatives claimed mr miliband was effectively ` accusing the prime minister of murder ' in a ` desperate and negative ' attempt to score political points .\ndamon muller was diagnosed with juvenile dermatomyositis -lrb- jdm -rrb- in november . it is a rare autoimmune disease that can only be treated with high doses of steroids and a chemotherapy-type drug . the disease has robbed damon of the ability to run , ride his bike and play outside freely in the sun . he has almost doubled in size due to swelling and bloating since he was diagnosed .\nbring your own cup for $ 1.49 . 7-eleven is hosting the first bring-your-own-cup slurpee day . the promotion is not to be confused with free slurpees day . it 's to kick off peak slurée season .\nstuart dallas opened the scoring for brentford with a deflected effort in the 24th minute . dallas doubled the bees ' lead with a header in the 58th minute after a neat move . ross mccormack halved the deficit with a penalty in the 67th minute at craven cottage . alan judge scored a stunning free-kick in the 90th minute to make it 4-1 .\npaul armstrong , of sunderland , flew to cyprus with four friends in 2013 . the 26-year-old was due to start new job as an it project manager . but he was stopped at the airport with a stun gun , baton and knuckle duster . armstrong pleaded guilty to possession of a firearm and two offensive weapons .\nfaith myers , 14 , from nebraska , was filmed by her mother as she woke in bed still ` high ' from the procedure 's anesthesia . footage shows her being quizzed about what she would like to eat , with the thought of a shake clearly filling her with dread .\nphotographer simon brann thorpe 's project is called `` toy soldiers '' thorpe used the desert of western sahara as a backdrop for his images . the soldiers are with the polisario front , an independence movement . thorpe hopes his images will raise questions on how images of war will be consumed in the future .\ncarlos manuel perez jr , 28 , was shot dead by a trainee corrections officer . he was in a fight with andrew jay arevalo , 24 , at high desert state prison in nevada . a lawsuit claims guards staged a ` gladiator-like ' fight between the two inmates . it claims the trainee officer then fired four shots at the pair , killing perez .\nmanchester united beat rivals manchester city 4-2 in the manchester derby . ashley young , marouane fellaini , juan mata and chris smalling scored for louis van gaal 's side . sergio aguero and raheem sterling scored for city . neville says united are getting closer to being ` the real deal '\nraheem sterling has been pictured smoking a shisha pipe on social media . brendan rodgers will remind sterling of his responsibilities . liverpool beat newcastle 2-0 at anfield on monday night . sterling scored the opener in the first half and set up joe allen . the 20-year-old faces a club investigation and potential disciplinary action .\nronnie o'sullivan beat craig steadman 10-3 on tuesday . the 39-year-old had trouble with his shoes during the session . o'sullivan could have faced a fine for breach of dress code . the five-time world champion will face matthew stevens in the second round .\nmohammed emwazi was obsessed with al-shabaab and constantly spoke about it . he planned to join the terror group in africa before going to syria , source says . but he changed his mind after two of his friends were killed in somalia . emwazia became convinced al - shabaab had been infiltrated by western spies . he fled to syria in 2012 and joined isis , which has been responsible for beheading hostages .\nkentucky sen. rand paul announced he 's running for president . randa jones : paul has tried to sell himself as a different type of republican . jones : his record makes it very clear that his views are outdated . jones says the american people deserve better than paul . the kentucky senator has questioned the civil rights act .\nwest brom chairman jeremy peace is open to selling the club for # 150million . peace has fielded enquiries from consortia in america , china and australia . tony pulis is adamant peace will sell the club to someone who will invest heavily . peace wants to ensure his legacy is maintained .\ndanielle jones and boyfriend darrel got married in berkshire on good friday . the take that star stopped by the couple 's wedding reception . he sung the band 's song ' a million love songs ' as a wedding gift . bridesmaids had contacted singer three months ago to ask him to perform .\nhamdi ulukaya , the founder and ceo of chobani , has settled a lawsuit filed by his ex-wife , who laid claim to half the $ 2 billion greek yogurt empire . his american-born ex , ayse giray , sued him in 2012 on claims her family lent him $ 500,000 that helped make his dreams a reality . on april 10 , after years of wrangling and a pronouncement by giray 's camp that the parties were no where near an agreement , ulukay settled for an unknown sum .\nmonty python 's `` montypython and the holy grail '' premiered 40 years ago thursday . the movie was a box-office hit , making $ 5 million -- more than 10 times its budget . python 's most consistent movie is `` life of brian , '' a satire on organized religion .\nmarc macrae was election agent for snp 's westminster leader angus robertson . he was diagnosed with prostate cancer in 2013 and has not worked since . he said party showed compassion for lockerbie bomber but ostracised him . mr robertson has not even contacted him to ask how treatment has gone , he claimed . he is now backing tory candidate douglas ross , a local councillor , to oust mr robertson in moray .\nvideo was posted on youtube showing yvonne camargo hitting a young boy in the face with an ipad-like tablet . camargo , 39 , of victorville , california , was arrested on suspicion of willful cruelty to a child . it is unknown what her relationship to the child is .\npaul ceglia is on the run after cutting off his electronic ankle bracelet . his father told a court they believe facebook and the prosecutors were conspiring against him . cegia 's lawyer robert ross fogg has requested details relating to a contract with cegalia during an 18-month stretch beginning in 2003 . the order ignores zuckerberg 's request to wait until cegulia is caught before handing over the documents .\nleaders from micronations will be at microcon 2015 in los angeles this weekend . molossia , westarctica , vikesland and broslavia are just some of the countries represented . microcon is the first north american gathering of micronation leaders .\nroberto martinez is backing ross barkley to become an even more influential player for everton and england . the 21-year-old has had an indifferent campaign for the toffees . but martinez believes his two substitute appearances for england against lithuania and italy over the past week have shown that the midfielder is ready to kick on again .\njason lee , 38 , is accused of raping an irish student in the hamptons . he invited her and her friends to his rented $ 33,000-a-month mansion . lee forced himself on the 20-year-old and told her to ` shut the f *** up ' he has denied first-degree rape , sexual misconduct and third-degree assault . he could face 25 years in jail if convicted . lee walked hand in hand with his wife alicia into new york suffolk county court on wednesday . the victim was staying with her brother for a night out before flying home to ireland .\nmedical incident doctor was sent to worcestershire royal hospital . staff were forced to treat patients in the corridor , it has emerged . it came as the west midlands ambulance service demanded action . worcester 's acute hospitals nhs trust admitted circumstances were ` less than ideal '\nfour british sailors have been charged with sexual assault in canada . craig stoner , darren smalley , joshua finbow and simon radford each charged with one count of sexual assault . alleged incident took place at military base in shearwater , near halifax , nova scotia .\na lamborghini crashes at the exotic driving experience at walt disney world . the lamborghinis ' passenger dies at the scene , the florida highway patrol says . the driver of the lamborghins is hospitalized with minor injuries . the exotic driving experience bills itself as a chance to drive your dream car .\ndrew hollinshead , 21 , stopped to help a pensioner who fell on pavement . he pulled into the first space available in a disabled bay in bournemouth . but a traffic warden slapped him with a # 70 ticket for parking in the bay . mr hollins head said he was punished for trying to do something good .\njames tomkins dislocated his shoulder in the gym last month . the defender has undergone successful surgery and hopes to return to action . tomkins hopes to play a couple of games before the end of the season . the west ham defender knows his campaign may be over .\nsteve esmond and his wife , dr theresa devine , and their two teenage sons fell seriously ill during their stay at the sirenusa condominium resort on the island of st. john . sean , 16 , and ryan , 14 , were in critical condition . the family were airlifted to separate hospitals in philadelphia suffering major respiratory trauma . the boys are in ` rough shape ' and their father remains unable to move or talk .\nfifa and uefa are opposed to a new set of regulations in greece . the greek government wants to crack down on violence at sports events . the governing bodies have strict rules aimed at protecting member federations ' independence . greece 's football federation could be suspended from international competition over government interference .\nbarcelona have 11 games left to play in la liga this season . lionel messi , neymar jnr and luis suarez are seven goals short of reaching 100 for the season . thierry henry , samuel eto'o and messi scored 38 goals in the 2008-09 season . the henry/eto ` o/messi forward line won the 2009 european cup .\nactress sarah harding will appear in at least four episodes of coronation street . denise van outen is the latest big name to sign for eastenders . patsy kensit made a huge success in emmerdale . dan dyer and michelle collins have also made soap appearances .\n`` star wars : rogue one '' plot details were revealed at a fan festival . the movie is a `` spinoff '' of the first `` star wars '' movie . it will star felicity jones as a rebel soldier . the film is scheduled to hit theaters december 16 , 2016 .\nshayna hubers is accused of shooting her boyfriend ryan poston six times at their home in october 2012 . audrey bolte , who won miss ohio 2012 , told the court she was looking forward to seeing poston at a bar but he failed to arrive . jurors were shown a videotaped police interview with hubers , in which the woman , then 21 , said poston was ` vain ' and she gave him the ` nose job he wanted ' hubers claims she shot him in self-defense and her cellmate testified that the 24-year-old ` cackled ' with glee after the shooting .\nleonie granger , 25 , targeted playboy mehmet hassan at london casino . she befriended the poker player , who showered her with gifts and cash . but after going back to his flat with him one night she made excuses . left door unlocked so her boyfriend and accomplice could get inside . they tied up father of three and kicked him to death as they ransacked his home . granger was found guilty of manslaughter by a majority at old bailey today . co-defendants kyrron jackson , 28 , and nicholas chandler , 29 , were found guilty and jailed for life with a minimum term of 36 years .\nexclusive pictures show dr fredric brandt the year he graduated from frank h morrell high , irvington , new jersey . they were taken at the age of 18 , when he was , in his own words , just ` a jewish kid from newark , ' and before he had transformed himself into the figure lampooned on netflix show ` unbreakable kimmy schmidt ' the dermatologist and cosmetic surgeon to the stars was found hanged in his miami home on wednesday . he had been left ` devastated ' by recent rumors comparing him to the grotesque character of dr franff in tina fey 's netflix show .\nted cruz and ben carson want the clinton foundation to return every dollar its received from foreign governments since it launched more than a decade ago . the bum rush came about after a report cast a new shadow over the charity 's fundraising practices while hillary clinton served as the united state 's chief diplomat . a reuters investigation that revealed the bill , hillary and chelsea clinton foundation had misreported millions of dollars in donations from foreign nations led the global charity to announce that it would refile more than five years of tax documents . ` it 's the clinton way : raking in millions from foreign governments behind closed doors while making promises about transparency that they never intended to keep , ' former business executive carly fiorina wrote on facebook . '\ndashcam footage taken in september of 2013 shows dontrell stephens being followed by a police officer . the then-20-year-old was shot by palm beach county sheriff 's office deputy adam lin . stephens was paralyzed from the waist down after the shooting . video of the shooting was released as part of a lawsuit filed against the sheriff 's office .\neden hazard scored the only goal of the game in the first-half at stamford bridge . oscar provided an assist for the belgian 's goal . jose mourinho 's side extended their lead at the top of the premier league . manchester united 's wayne rooney was blunted by his midfield role .\njordan henderson played as a wing back for liverpool against arsenal . the england captain gave the ball away 23 times in the game . john o'shea only sprinted 11.9 metres in sunderland 's 1-0 win over newcastle . sean dyche has kept an unchanged side for the 16th time this season . loic remy scored chelsea 's winner against stoke city on saturday .\nunicef : the initial shipment of 16 tons of medical supplies has landed in yemen 's capital . the supplies are meant to help 80,000 innocents caught up in the havoc of yemen 's conflict . the world health organization says at least 643 people have been killed in the country since march 19 .\nbroccoli chemical sulforaphane blocks inflammation and damage to cartilage . in its natural form it is too unstable to turn into a medicine . but uk drug company evgen pharma has developed a stable synthetic version . a single dose of the drug , known as sulforadex or sfx-01 , is the equivalent of eating 5.5 lb of broccoli in one day .\npeter moores insists he could work with michael vaughan if he becomes england 's new director of cricket . former england captain vaughan has emerged as the leading candidate to replace paul downton . moores is sad to see the departure of downt on the england job . moore says he will carry on doing his job as england coach .\nharry redknapp joined bt sport presenter jake humphrey for live broadcast of arsenal vs liverpool . redkn app was in fine form as pundit for saturday 's premier league encounter at the emirates . ian wright and steve mcmanaman were quick to defend former tottenham boss redknapps .\none in 15 bull rides in the us ends in injury of some sort . but that does n't stop hundreds of child riders from taking the hot seat each year . lance lara , 10 , from fort worth , texas , was crowned world champion in his age group last year .\nthe video was created by the make it fair project , which is promoting gender equality . it was created with an all-female team to highlight the disproportionate presence of men in hollywood and other industries . the women sing that it 's ` only fair that men should have it all '\nmyer to hold 75 per cent of designer label sale from wednesday 22nd . marks down current season stock by up to 75 per cent . australian labels will be on sale including alex perry , toni maticevski , lisa ho and balmain . move is a bid to keep up with international retailers .\njamie robbins stole # 1,600 from select 'n' save in birmingham in january 2014 . the 35-year-old handed himself into police a year later saying he preferred life in jail . he was jailed for four-and-a-half years after pleading guilty to robbery .\nsonia sharrock 's stud farm in maitland , nsw was one of the worst affected areas by the storm . she watched in horror as her horses were trapped in the rising flood waters . her brother-in-law steve spowart spent five hours helping to rescue the animals . he dived down into the freezing water to cut the barbed wire and free the horses . the animals ' owner praised her ` absolutely amazing ' brother - in-law for his incredible feat .\nfisticuffs took place at fat tuesdays bar opening inside resorts world casino in queens , new york . two women allegedly got into an argument in the long line for drinks . security guards and police officer were injured in the brawl . three men were arrested in the aftermath of the fight .\nsean donohoe , 30 , from wilnecote , tamworth , plundered the elderly woman 's accounts . he spent tens of thousands of pounds on trips to the snowdome and in shops such as argos and hmv . he persuaded his victim to change her will so he could reap the benefits . the builder has now been jailed for 21 months after admitting charges of fraud and theft .\nup to 21 million acres of jungle will be torn down to make way for rubber plantations in the next decade alone . endangered gibbons , leopards and elephants in south east asia at risk , study says . the tyre industry consumes 70 per cent of all natural rubber grown .\nleicester city defeated west ham united 2-1 at the king power stadium on saturday . esteban cambiasso gave leicester the lead in the 12th minute with a stunning effort . cheikhou kouyate equalised for west ham with a header in the 32nd minute . andy king scored a late winner for leicester city to keep their premier league hopes alive .\nnorth west arrived in paris with her parents on tuesday . she wore a cute white knitted top with denim shorts and boots . the family of three had arrived in the city after nori was baptised in jerusalem . kim , kanye and khloe visited armenian church st james cathedral .\nchelsea and manchester city are interested in signing brazilian nathan . the attacking midfielder is in contract dispute with his club atletico paranaense . nathan would join fellow brazilians willian , ramires , filipe luis and oscar at stamford bridge . the 19-year-old would likely be loaned out to the club .\njuventus lost 2-1 to torino in the serie a derby on sunday . andrea pirlo scored a stunning free-kick for juve in the first-half . matteo darmian and fabio quagliarella scored for the home side . juve are 14 points clear at the top of the league table .\nbrown spoke for the first time about his daughter bobbi kristina in los angeles on saturday night . he appeared close to tears as he referenced his daughter 's ongoing battle for her life . the former husband of whitney houston looked tired and grief stricken at times during his performance . it was his first public appearance since bobbikristina fell into a coma .\ndriver maxine fohounhedo , 30 , was charged in december with kidnapping and rape . he was accused of raping a 22-year-old passenger he picked up after she ordered an uberx ride the month before . fohoungo 's attorney claims the woman made a pass at his client when he first picked her up and then they ` went back to his place ' he made a nine-minute recording as he drove the woman home because ` he had a gut feeling he needed to protect himself ' fohaungo was released from cook county jail on monday night .\nann malsbury , 22 , of coventry , battered lee judson , 21 , with a saucepan . the chef 's ex-boyfriend had gone round to her home to collect his belongings . but malsbery jumped on his back and wrapped ipod lead around his neck . she then armed herself with a large carving knife and stabbed at him . malsburys was charged with attempting to inflict grievous bodily harm . but she was cleared of this after her plea of guilty to an alternative offence of affray .\na passenger filmed the driver on a bus in auckland , new zealand . in the footage the driver can be seen flicking through pages of the newspaper while the bus is in motion . the video was sent to bus company ritchies coachlines along with a complaint . boss andrew ritchie said he was embarrassed by the ` idiot ' driver 's actions .\nchris ramsey is currently in charge of queens park rangers until the end of the season . the 52-year-old has been given a temporary deal until the summer . ramsey says he is happy to stay at the club for as long as they want him . director of football les ferdinand would like ramsey to get the job on a permanent basis .\ntaronga zoo 's asian elephants were served a 728kg pumpkin on friday . it was the biggest pumpkin to ever grace a sydney royal easter show . the prize-winning pumpkins were presented to the elephants on friday morning . taronga 's elephants are served a medley of different food items .\ndouglas gregory had popped out for his daily newspaper when he was hit by car . the 92-year-old ex-spitfire pilot suffered a serious head injury and was flown to hospital by air ambulance , but died two weeks later . he was awarded the distinguished flying cross for his gallantry in 69 combat missions over nazi-occupied europe . mr gregory flew beaufighters and mosquitoes before testing spitfires and hurricanes .\nmuslim women 's rights advocate and outspoken critic of islam ayaan hirsi ali has championed the u.s. as the best country in the world to live as a woman and as a black person . hirsiali , 45 , emigrated to america in 2006 after facing death threats in the netherlands , where she had been a member of parliament and a target for extremists . she describes herself as a liberal and has accused her fellow liberals of failing to have a proper sense of perspective about life in the u. , s. and for not being more critical of islam .\nashy bines is the face of the popular fitness program ashy bine bikini body challenge . she is being chased by the tax office over debts due almost 12 months ago . the debts include income and tax , a fine and $ 295,955 worth of interest . court documents show the taxoffice launched action in november . it has since lodged an application to liquidate abbbc pty ltd - the company behind ms bines ' bikini body challenge program .\n90210 star tori spelling was at benihana 's japanese restaurant in encino , california for easter brunch when she tripped and fell onto a hot grill . she shouted out in pain from a large burn on the back of her right arm . tori was eventually taken to the grossman burn center at the west hills hospital for treatment . it was determined that she needed skin grafts .\nkinessa johnson , from yelm , washington state , works for the veterans empowered to protect african wildlife -lrb- vepaw -rrb- she is training park rangers to catch and detain the wildlife killers . the organisation was founded by an ex-marine and is made up of former soldiers who signed up post-9 / 11 .\narjen robben has missed bayern munich 's last three games with an abdominal injury . the holland international has said he has felt ` physically disabled ' during his spell on the sidelines . robben is close to returning to full fitness and plans to return for cup match against borussia dortmund .\nmore than 70 teenagers brawl outside a party in brisbane 's south . the violent conflict was captured by queensland police helicopter . police were called to disperse over 200 teenagers just before 10pm . four people have been arrested over the incident , including a 20-year-old man . the brawl took place at the serbian community centre in willawong .\ngerman woman was in taxi which was stuck in traffic shortly after arriving at charles de gaulle airport on wednesday afternoon . three thieves are said to have ` appeared from nowhere ' and smashed a rear window of the car , making off with the bag . heist took place in the landy tunnel , which is just under a mile long and notorious for smash-and-grabs .\ncruz implied during a conversation with daily mail online on saturday that if he ascended to the highest elected office he would n't make his attorney general enforce federal laws pertaining to marijuana in states that have approved sales and consumption of the drug . the position stands in contrast to the views of at least three of his gop competitors , who last week said that while they believe in states ' rights to self-determination , they 'd lay the hammer down on colorado and washington for flouting federal law . cruz 's stance on the issue presents a problem for the politician who has said the ` most dangerous ' aspect of president barack obama 's tenure ` has been lawlessness , the unwillingness of the president to follow federal law\nfloyd mayweather and manny pacquiao will clash in las vegas on may 2 . the fight is expected to generate a huge revenue of around $ 400m . kenny bayless and tony weeks are the frontrunners to referee the bout . mayweather recently revealed he is within three pounds of the welterweight limit already .\nst mary 's hospital , london , has not accepted new patients in more than a week . eight patients found to be carrying carbapenemase-producing enterobacteriaceae . antibiotic-resistant bacteria can cause potentially fatal infections . duchess of cambridge hopes to have her baby at the private lindo wing .\nlorna mccarthy was stabbed 13 times by her husband barry mccarthy . the couple had separated four months earlier after an argument . mrs mccarthy sent a series of messages to friends and family in hours before death . she urged her daughter to call the police if she did not hear from her . but she never received a call and mccarthy stabbed her in the heart . he handed himself into police , telling them he had killed his wife . mccarthy , 51 , was found guilty of murder at norwich crown court .\nceltic boss ronny deila is under pressure to qualify for champions league . uefa have increased champions league money by 16million pounds . deila says qualification is not just about the money . the norwegian wants to lead celtic to a fourth successive title . celtic face st mirren in the scottish premiership on saturday .\ncara lee-fanus was rushed to hospital but died from a head injury the next day . doctors discovered bruises all over her body and burn marks on her head . her mother , kirsty lee , 25 , and her ex boyfriend alistair wayne bowen , 35 , appeared in court . pair were jointly charged with causing or allowing the death of a child .\nshannen hussein lives on a 30-acre farm in rockbank , north-west of melbourne . she has spent her life hand-raising animals of all shapes and sizes . the 21-year-old has one of the largest collections of pets in australia . she shares all her animal 's wild adventures on social media . her pets are often captured behaving like humans . from her lamb winter who loves to jump on the bed to her bearded dragon who can understand the english language .\ndoctors told patients they needed to hold objects in their hands to gauge sensitivity . but instead dr habeeb latheef allegedly placed his penis in their grip . the married gp is accused of carrying out the assaults over a four year period . he denies three charges of sexual assault at taunton crown court .\nnew york-based team have developed an alarm that will only turn off if you physically get out of bed and scan a bar code . the i 'm up alarm can be set to go off the night before and will then only turnoff by scanning a qr code on a mug or magnet that can be kept in another room . the app uses a quick response code , or qr code , which is a form of barcode that the cameras of mobile phones are able to detect .\nabby swinfield , 18 , was rushed to hospital in the early hours of march 30 . she was put into a coma , but died a week later in sutton coldfield . it is believed she took the illegal class b drug mephedrone . police have arrested a 20-year-old girl on suspicion of supplying drugs . miss swinfields cousin claims her drink was spiked at the party .\nlittle girl was playing with silverback at omaha 's henry doorley zoo when he decided to play . he launched himself at her , and the glass , with such force it cracked . family fled to safety as the gorilla hit the pane of glass with such strength . incident was captured on camera and has been viewed more than 126,000 times .\nthousands of women whose breast cancer has become resistant to standard treatment could benefit from a new drug combination , claim researchers . it targets cancer cells that evade conventional drugs and cause tumours to re-grow . researchers from manchester university working with drug development company evgen pharma , have developed a new combination of drugs . they are testing the drug sulforadex in the most common type of breast cancer , affecting 70 per cent of patients .\nashley shupe says her son has been bullied for more than a year . kaiden , eight , was diagnosed with depression in october 2013 . but she says school did not properly protect him from the bullies . he has tried to choke himself , throw himself from a height , and stop eating .\nthe james webb space telescope is expected to launch in october 2018 . the telescope will be 100 times more potent than hubble and weigh 6.4 tons . it will be able to see back to 200 million years after the big bang . nasa describes the telescope as a ` powerful time machine ' with infrared vision .\nmargaret gretton , 46 , has been barred indefinitely from the profession . referred to the applicant as a member of the terror group and talked of ` bombs and blowing up the school ' in an asian accent . disciplinary panel ruled she ` exhibited clear intolerance on the grounds of race , as well as disability '\ngloriavale is a new zealand christian community with a population of around 500 . the community is under increasing scrutiny following abuse allegations . ex-members have come forward to tell stories of sexual abuse , violence and bullying . one former member , miracle , said abuse victims were often blamed for their situations . miracle escaped gloriavale with her family around six years ago .\njack wilshere has been out of action since november with an ankle injury . the england midfielder played 90 minutes for arsenal 's under 21 side in their 4-1 win over stoke city on tuesday night . wilsheres is targeting the fa cup semi-final with reading and the premier league clash with manchester united .\nporsche 911 carrera crushed by builder 's lorry in nottingham . both vehicles were pulled to the side of the road to move out of traffic queues . cyclist had been injured in a separate collision on nearby road . witness said : ` the bloke looked absolutely distraught . it was obviously his pride and joy '\nfrancis coquelin has defended olivier giroud after criticism from thierry henry . henry said arsenal need a ` top quality striker ' to win the premier league next season . coquelin believes arsenal ` can win titles ' with giroud in attack . arsenal drew 0-0 with chelsea at the emirates on sunday .\nrandy boehning , 52 , has been a republican in the north dakota house of representatives since 2002 . on april 2 , he voted against an anti-discrimination bill . a 21-year-old gay man in bismarck recognized boehned as a grindr user and took his story to the local press . on monday , the public official came out and admitted to using the gay hook-up app . boehning claims he was outed as part of a smear campaign by a fellow republican .\nthe list is dominated by european nations , particularly those in scandinavia . it measures a country 's population by factors contributing to its citizens ' contentment . britons are happier now than they were two years ago , but still rank at 21st place . the top 10 on the list is also dominated by nations from scandinavia , such as sweden . unsurprisingly the world 's least happy countries are places ravaged by war and poverty . syria , burundi and togo take their place at the bottom of the 158-nation strong list .\njan bearman lost her daughter shelley in 2011 . she decided to get a tattoo in memory of her daughter shell , who died of complications from diabetes . jan said that she was surprised at how painless the tattoo was . she has had a new tattoo inked on her shoulder every birthday for three years .\na newly born white tiger fell in to a pool of water at a zoo in japan . his brothers had to pull him out and rescue him from the water . the quadruplets were born on january 25 and almost three months old . they were let out into their glass cages for the first time at tobu zoo .\nkevin de bruyne is wanted by a host of clubs but no deal has been agreed . the midfielder has been linked with manchester city and bayern munich . de bruyne 's agent patrick de koster says no deal is in place for him to leave wolfsburg . the belgian is one of the hottest prospects in european football .\nludovic obraniak is currently on loan at caykur rizespor from werder bremen . he was substituted after just 30 minutes against fenerbahce on saturday . the 30-year-old was taken to hospital for tests but is not in any immediate danger .\nmadison small , 18 , from ashburn , virginia , left school early on monday and , after she woke up in the night with a severe headache , she was rushed to hospital . she passed away on tuesday morning . on friday , the loudoun county health department confirmed she died of meningococcal meningitis , which causes membranes covering the brain and spinal cord to swell . it is the school system 's first confirmed case in two years .\nformer head of general electric jack welch has called for an end to the college hierarchy . said it 's time to cut out expensive and needless middle management . warned that this increase in middle management is driving up the cost of higher education . said that it 's failing to give students value for the amount of money they are forced to shell out .\na memo has revealed that robert bates , 73 , was given special treatment when he was admitted into the deputy program . documents suggested the department also violated training policies when they employed bates . he has been charged with second-degree manslaughter in relation to the death of eric harris during a botched sting on april 2 .\nthe only way is essex star lydia bright met ed miliband as part of ` useyourvoice ' campaign encouraging young people to vote . she said he ` definitely ' topped her list of political leaders in a game of ` snog , marry or avoid ' comes after a group of female fans left westminster watchers baffled after taking to twitter in droves to reveal their love for the labour leader .\neloise parry , known as ella , ` burned up from the inside ' after taking the drug . the 21-year-old took the substance known as dinitrophenol , or dnp . she began feeling unwell at around lunchtime and drove to hospital . doctors discovered she was in grave danger as there is no antidote . her mother fiona has now issued a stark warning about buying diet pills online .\namazing illusion is the work of german body-painting artist joerg duesterwald . he spent hours painting his model so she would blend in with surroundings . the stunning set of pictures was taken in a forest in langenfeld , germany , yesterday . mr dueserwald has been painting for more than 20 years .\nsophie wilson , 17 , performed cpr on bradley parkes , 16 . she and a friend found him hanging from a tree in the woods . the 16-year-old was taken to birmingham children 's hospital in a coma . his mother tiffany , 35 , revealed he had made a ` miracle ' recovery .\nunited sit above manchester city in the premier league table for the first time since november 23 , 2013 . the red devils and city have played the same number of games this season . united have only sat above city twice in the post-ferguson era . city now trail united by a point , following monday 's 2-1 defeat at palace .\nsupermodel ashley graham , 27 , says she 's been stripping down to her skivvies since she was 14 . the nebraska native is the first plus size model to appear in sports illustrated 's swimsuit issue . she recently launched her own collection of intimates with canadian company , addition elle , and she stars in the ad campaign for lane bryant .\nap mccoy will ride his last two races at sandown park on saturday . the 40-year-old jockey has won 20 champion jockey trophies in his career . mccoy insists he will never return to professional racing after sunday 's farewell . steve redgrave famously returned to success despite retiring and vowing never to return to action .\nphilip garrod , 43 , was caught by a speed camera doing 105mph on his powerful suzuki motorbike . he pleaded guilty and was fined # 650 with six points for speeding . but he then began weaving a web of lies to try and avoid a driving ban . garrod filled in a ` patient clinical record ' for the bogus call to back up his false story .\na perth bookkeeper was fired after calling her boss ' a complete d *** ' in a text message . louise nesbitt was employed at perth mining exploration company dragon mountain gold . she sent the text to her boss meant for her daughter 's boyfriend . ms nesbitt was fired five days after the incident , with her employer saying it was due to ` gross misconduct '\ndikembe mutombo elected to naismith memorial basketball hall of fame . mutombo was an eight-times nba all-star and four-times defensive player of the year . the congolese centre was famous for swatting away shots and wagging his finger at opponents .\nbayern munich lost 3-1 against porto in the champions league on wednesday . pep guardiola remains manchester city 's first choice to replace manuel pellegrini . the bayern boss has a year remaining on his contract in germany . but a quarter-final champions league exit could help persuade his employers to let him go this summer .\nrichie benaud was australia 's first test captain and took 248 wickets in 63 tests . he was also a successful cricket commentator for australia and wrote a news of the world column . benaud will be remembered for his dry wit and knowledge of the game . he died at the age of 84 after a battle with skin cancer .\nchris greenwood and his family stayed at camping la chappelle in france . the site is on the mediterranean coast and is a popular family site . it has multiple swimming pools , a kids club , swings and a bakery . the greenwoods enjoyed several trips to the pleasant argeles beach .\nlabour 's plans to change rules allowing wealthy foreigners to lower tax bills . ed miliband initially suggested he would ` abolish ' non-domicile status . but he is effectively proposing a time limit of between two and five years . it 's claimed the announcement has already had a negative impact on the capital 's property market .\nmemories pizza in indiana closed today after being abused online and over the phone . owner kevin o'connor said he has temporarily shut the restaurant 's doors . comes after his daughter said they would refuse to serve a gay wedding . the pizzeria has been in operation for nine years .\nchad pregracke founded living lands & waters in 1998 . his nonprofit has collected 8.4 million pounds of trash from u.s. waterways . he was named cnn hero of the year in 2013 . pregracke wants to clean up the nation 's rivers one piece of detritus at a time .\ngareth bale could miss real madrid 's game with rayo vallecano . the welshman injured his left foot during a training session on tuesday . real madrid face their second la liga game in four days on wednesday . carlo ancelotti 's side beat granada 9-1 on sunday .\nchelsea bun is the perfect accompaniment to a creamy latte . flat whites are best accompanied by a blueberry muffin . plain black coffee is best drunk with a glazed ring doughnut . espresso is best paired with chocolate truffles or a mini raspberry coulis .\nsnp leader nicola sturgeon has left her boxy jackets and severe suits in the past . she proved her new style credentials with a stunning appearance yesterday morning . the 44-year-old looked particularly glamorous on her way to bbc 's andrew marr show . she wore a fuchsia column dress that flattered her slimmed-down physique .\na man was allegedly bashed by a family with glass bottles and windscreen wipers at a mcdonald 's drive-through after he waved at them thinking they were his friends . colin mcinerney , 28 , claims he was beaten and had his head stomped on by a man , two teenagers and a boy aged only about 10 on friday night . the man 's 22-year-old girlfriend , rachael sheppard , said he had just gestured at the family by waving with his little pinky as people do in darwin .\nraheem sterling is attracting interest from a number of big clubs . liverpool boss brendan rodgers has insisted that the club will not sell sterling this summer . sterling has rejected a contract worth # 100,000-a-week at anfield . click here for more liverpool transfer news .\nformer nfl player aaron hernandez is being processed at a maximum-security prison . he will be moved to the souza-baranowski correctional center in shirley . the prison is one of the most high-tech jails in the united states with no history of breakouts . legal advocates for inmates describe souza as sterile and violent at once .\napple watch is officially going on sale today - but none of its stores will have them in stock . instead , consumers willing to shell out between # 299 to # 13,500 - for the gold edition - have to pre-order the watches online and wait for their arrival until june .\nlib dem leader promises to ` spread the burden ' of deficit reduction . plans include cuts to welfare and whitehall budgets . but he scaled back plans for a mansion tax amid concern it could cost the party support in affluent parts of london . car tax would rise by # 25-a-year . # 7billion raised from a crackdown on tax avoidance . # 12 billion in public spending reductions and a # 3 billion cut from welfare .\ntottenham striker harry kane is up for the pfa player and young player of the year awards . the spurs forward has scored 20 premier league goals this season . kane is nominated against eden hazard and alexis sanchez . the video features some of kane 's best goals and celebrations .\nthe company will unveil the battery at an event on april 30 in california . it will be a ` home battery ' and a ` very large utility scale battery ' tesla already offers battery packs for its solarcity project . but founder elon musk thinks they ` suck ' , according to a letter sent to investors .\nfirst models of ford 's new supercar have been shipped to china . the gt will be launched across europe next year at a price of # 260,000 . to mark the launch , the company has created a light sculpture in milan . the installation walked through the steps of the car 's conception .\nnew york state senator jeffrey klein has apologized to susan del percio . tweet showed a search for ` hot ' pictures of the republican strategist . the democratic state senator said that a staffer sent the tweet . del percio , who worked with rudy giuliani , said that the post was a ` silly mistake '\nmel greig is undergoing ivf treatment . she posted a blog post on her website titled ` are we embarrassed of ivf ? ' she also uploaded photographs of injecting herself for the first time . the radio host married her fiancé steven pollack at byron bay in november . the couple 's efforts to have a baby have been thwarted because she suffers from endometriosis . she hit the headlines in december 2012 for her involvement in an infamous royal prank call .\nkejonuma leisure land , in tohoku , japan , attracted 200,000 visitors per year . the theme park , which included an amusement park , campsite and driving range , closed its doors in 2000 . urban explorer florian seidel visited the site in 2014 to document the park 's ongoing dereliction . according to japanese folklore , the park was built next to the site of the ` pond of the ghost woman ' and is said to be jinxed .\ndavid and victoria beckham want to install air-con in five rooms at # 31.5 m mansion . but neighbour is furious over plans to ` affect historic character of victorian house ' royal borough of kensington and chelsea council has approved plans . couple bought the grand property in holland park for # 31 million in cash in 2013 .\nsean dyche says danny ings must keep on smiling to score goals . burnley striker has not scored in seven appearances . dyche has urged ings to enjoy playing more and find the net . ashley barnes says he has forgotten about nemanja matic incident .\nsportsmail 's boxing correspondent jeff powell was at the mgm grand on tuesday . floyd mayweather and manny pacquiao are set to fight on saturday . the pair made public appearances on the las vegas strip on tuesday night . powell reflects on the pair 's arrivals and looks forward to the rest of the week .\na car carrying a family of four plunged into los angeles harbor on thursday . the car ran off the road alongside a working dock at the port of los angeles , landing upside down in about 30 feet of water . the boy 's parents swam to the surface , but the children were stuck in vehicle . they were n't breathing when rescuers brought them up . the teen died at the hospital several hours later . the eight-year-old boy died friday afternoon .\nmanny pacquiao was on a conference call about his fight with floyd mayweather jnr . the filipino could only answer one question due to technical issues . pacquio 's promoter blamed the cancellation on the number of people calling in . mayweather is due to address the media on wednesday .\nus environmental protection agency said it is contacting people including employees at sirenusa resort in st. john to determine how many others might have been exposed to the pesticide . the esmond family had rented a second-floor condominium at sirenus late last month . sean , 16 , and ryan , 14 , were in critical condition .\nbarbara anne beam , 82 , died in january after sitting in the same chair in her south carolina home for six months . the coroner 's office found she died from a blood clot in her lung and ruled that her death was homicide by neglect . prosecutors are now deciding whether to charge her caretakers .\nlawmakers raised alarms about security after doug hughes , 61 , flew his small gyrocopter through protected washington airspace for 30 miles to the u.s. capitol . hughes is ` lucky to be alive ' and ` should have been blown out of the air , ' rep. jason chaffetz , r-utah , chairman of the house oversight committee , said . security tracked hughes as he approached the capitol last week after taking off from gettysburg , pennsylvania . a ` judgment call ' was made not to shoot hughes down , chaffetz said .\ngreg gibbins , 28 , was stabbed in the chest outside a pizza shop on the central coast , nsw on sunday night . he was treated at the scene by paramedics before he went into cardiac arrest but later died . police have charged a 20-year-old man with murder . it is believed mr gibbins had helped a woman when she was being harassed earlier in the night . a friend , 25 , who tried to help fatally injured mr gibbins is in hospital .\nprosecutors and defense will make closing arguments tuesday . aaron hernandez is on trial for the shooting death of semi-pro player odin lloyd . the former nfl star has pleaded not guilty in lloyd 's death . hernandez 's fiancee testifies she did n't know what was in a box he told her to dispose of .\npolice arrested a 35-year-old man on suspicion of conspiracy to murder abdul hadi arwani . the father of six was found dead in his car in wembley on april 7 . a jamaican businessman has already appeared in court charged with his murder . burnell mitchell , 61 , the brother of boney m 's lead singer , was arrested this week .\na guest house inspired by jrr tolkien 's fantasy books is on sale in montana . the shire of montana gives guests the chance to live like bilbo baggins . the 1,000 square feet underground house costs $ 295 -lrb- # 200 -rrb- a night for two . the 20-acre property near trout lake has decorative hobbit homes , fairy doors and a tree stump-shaped troll house .\narsene wenger said last week that premier league rules must favour the best . but the arsenal boss has signed a number of poor players in his 18 years at the club . arsene wenger is a disciple of adam smith and these are the basic principles of a free market . there is nothing in greg dyke 's proposals to stop mesut ozil , alexis sanchez and santi cazorla playing for arsenal .\n10 doctors sent letter to columbia university urging the school to remove tv celebrity doctor mehmet oz from his faculty position . they said he is a ` charlatan ' who promotes ` quack treatments ' dr oz , 54 , is the vice chairman and professor of surgery at columbia 's college of physicians and surgeons .\nresearchers at the swiss federal institute of technology in lausanne created ` ghosts ' in the laboratory by tricking the brains of test subjects . the scientists say the experiment that what some people believe to be a ghostly presence is just a trick of the brain . by having signals mixed up in their brains , volunteers were made to feel that a creepy ` presence ' was behind them . the researchers say the study mimics the sensations of some patients with mental disorders or under extreme circumstances .\na number of pages , written in arabic , have reportedly been found on the social media site targeting refugees fleeing war and poverty . they are said to be advertising ` reliable ' and ` comfortable ' travel to europe on overcrowded vessels for around $ 1,000 per person . facebook has reportedly said it has removed the pages .\nsir james dyson has invested # 10 million in u.s.-based battery experts sakti3 . the 67-year-old entrepreneur is supporting the company as it attempts to double the battery life of our phones . according to a recent poll , nine out of ten people feel stressed if their phone battery run out .\nlesbos was notorious sexual playground for straight men , bbc documentary will reveal . in ancient times , the word ` lesbian ' meant a woman performing an intimate sex act on a man . lesbos had a reputation for producing very beautiful women , the show will reveal .\ngrealish is third premier league starlet to be caught apparently using nitrous oxide . the 19-year-old inspired aston villa to their fa cup semi-final win over liverpool on sunday . grealish has been photographed inhaling from a white balloon . the selfie was taken in a hotel room about six months ago .\nwilliam ` frankie ' dugan , 29 , and 32-year-old valerie ojo allegedly performed sex acts on two children aged five and six in oklahoma . police are now searching for more victims . dugan and ojo were each charged with five counts of child sexual abuse .\ngoogle has released an update to its android software allowing owners to unlock their phone with their voice . known as trusted voice , it can unlock a phone simply by hearing its owner say ` ok , google ' the feature has not been officially announced by google , but has begun to appear on some android handsets .\nisis fighters enter palestinian refugee camp in damascus today . move marks terrorist group 's deepest foray into syrian capital . militants entered yarmouk camp from nearby hajar aswad neighborhood . follows heavy clashes on syrian side between rebels and government forces . jordan closed its only functioning border crossing with the country .\nisis fighters have nearly surrounded the capital of western anbar province . the advance is widely seen as an isis 's attempt at an counteroffensive . more than 2,000 families have fled the iraqi city of ramadi . hundreds of u.s. troops have been training iraqi forces at a military base . shiite paramilitary groups and further iraqi army reinforcements are expected to arrive in the coming days .\nralph lauren 's charity fashion targets breast cancer has launched its new campaign . stars plus-size models from sizes 10 to 20 in campaign for first time ever . campaign showcases clothes from high street giants including marks & spencer 's and debenhams . abbey clancy , alice dellal , foxes and lily donaldson also star in campaign .\njudge jeffrey sutton wrote the only recent appellate court decision to uphold state bans on same-sex marriage . he is considered a conservative jurist with a keen interest in states ' rights . his opinion goes up against an avalanche of judicial rulings striking down such bans . the u.s. supreme court will take up the case on tuesday .\nengland will play fiji in the world cup curtain-raiser on september 18 . stuart lancaster 's side will play 48 matches spread across 44 days of action . england assistant coach andy farrell says rugby union is going to be the sport of the year with the world world cup coming up .\nformer national security chief zhou yongkang is accused of corruption and leaking of state secrets . he is likely to be found guilty , and could be executed . mao zedong 's widow went on trial for treason with the rest of ` gang of four ' in 1981 .\na century ago , u.s. dreamers decided to drain the swamp in florida . after a century of development , half the everglades is dead and the other half is on life support . most of the drinking water in south florida comes from the aquifers beneath the ever glades .\ntim sherwood was appointed as aston villa manager on valentine 's day . villa have won five of their first 10 games under the former tottenham boss . the midlands club face bournemouth in the fa cup final on sunday . sportsmail looks at five reasons for sherwood 's success .\ndiego costa is likely to be fit to face arsenal in the premier league . the spain international limped off just 11 minutes into his return from injury in chelsea 's 2-1 win over stoke city on saturday . costa has been told he will miss just over two weeks following his latest hamstring setback .\nprince andrew 's daughter was spotted in new york on wednesday . she looked casually chic in a charcoal leather-trim coat and nike hoodie . the 25-year-old cousin of princes william and harry is currently working in new yorkers . she celebrated her 25th birthday last month at st james 's palace .\nliverpool lost 1-0 to aston villa in the fa cup semi-final at wembley . jack grealish was fantastic but fabian delph was the best player on the pitch . tim sherwood has done a brilliant job with villa . of the three promoted teams fighting for their lives at the bottom , leicester look the most likely to stay up .\nwisconsin sex offender joshua van haften accused of trying to join isis . the 34-year-old allegedly tried to cross the turkey-syria border . he was arrested at o'hare international airport in chicago on wednesday . he has been charged with attempting to provide material support to a foreign terrorist organization . van haften was convicted of battery and sexual assault in the past .\nolive fowler , 70 , was caught by police at jfk airport on april 12 after taking a caribbean airlines flight from her hometown in guyana , south america , to new york . authorities said they spotted her ` sweating profusely ' and ` avoiding eye contact with officers ' so they decided to pull her aside to conduct a search . after patting her down in a private room , investigators reportedly felt a ` dense hard material ' under her clothes . fowler was found to be wearing one pair of black underwear and one white girdle with white powder packed into the garments . the packages tested positive for cocaine .\nwu rongrong and four other women 's rights activists were detained for `` creating disturbances '' in china . they were planning to protest on international women 's day against sexual harassment in china , says liu . liu : the timing of the detentions of the women 's activists is ironic .\nsimon mignolet insists liverpool are not feeling pressure of trying to give steven gerrard a dream send-off . gerrard will leave anfield at the end of the season . liverpool beat blackburn rovers 1-0 in the fa cup quarter-final on wednesday . reds face aston villa in the semi-final next sunday .\nthe altamura man is the oldest neanderthal to have his dna extracted . he fell into a cave 150,000 years ago . scientists believe he died in the cave . they hope to sequence his dna to find out more about the evolution of all hominids . . the cave is in southern italy .\nanthony stokes ' family said in 2013 that an atlanta hospital rejected him for heart transplant surgery . the hospital said in a letter that stokes had a `` history of non-compliance '' the teen carjacked someone , burglarized a home , shot at an elderly woman and led police on a chase . stokes died after his car hit a pole , police say .\nthe sainsbury 's app is in development and will be trialled in wandsworth . as customers scan their household items , a live pricing tool will show their list with current store prices . these prices will update automatically if an item goes on sale . the app is an extension of sainsburys ' current scan-and-go scheme .\nsir frank kitson , 88 , is accused in the case of patrick eugene heenan . mr heenans , 47 , was killed by loyalists in 1973 in belfast . his widow is suing the ministry of defence and the general . sir frank said he was confused as to why he was being named . he was not even serving in northern ireland at the time of the murder .\nclassic steam engines took to the tracks of the north yorkshire moors railway today . the three-day spring steam gala saw crowds flock to witness the annual event . train enthusiasts will be able to make the most of the beautiful moors scenery on board seven preserved engines .\nleighton baines is a big music lover and regularly attends gigs . the everton defender is friends with rocker miles kane and arctic monkeys ' front-man alex turner . baines has given his thoughts on six mainstream tracks in an interview with match of the day magazine . the england international is yet to listen to ed sheeran or avicii 's music .\nbarcelona face paris saint-germain on april 15 in the champions league . neymar feels it will be a real footballing ` spectacle ' the brazil international is expecting more fireworks following barca 's win over manchester city in the last 16 of the competition .\npolice in mckinney , texas , say jordan sharifi , 17 , confessed to giving a gun and ammunition to 14-year-old raymond howell , jr. . on thursday , raymond was found in a ditch from a self-inflicted gunshot wound . sharifi discovered raymond 's body in a rain culvert after the boy 's mother called to ask him if he 'd seen her son . he initially denied seeing a weapon but later admitted that he had given the boy the gun and had tried to hide it when he found it beneath his body . the two teenagers became friends after sharifi moved in with one of raymond 's neighbors .\nhannah moore , of broxburn in west lothian , had suffered stretchmarks after having twins . the 20-year-old posted images in a bid to boost her confidence . she wrote : ` nobody should be judged by their size because everyone is beautiful ' but her account was immediately shut down due to ` nudity and violence ' instagram has admitted the incident was ' a technical mistake '\nthe total lunar eclipse will be visible in north america , asia and australia . it will turn the moon a burnt reddish orange , but nasa says it is harmless . the eclipse is the third in a series of four blood moons , with the final one expected on september 28 . the strange celestial sight , which will be seen in the us , was predicted in the bible and could hint at a world-changing event , such as the return of christ .\ncricket legend richie benaud has died aged 84 . he was diagnosed with skin cancer in 2013 and began treatment last year . he said he believed the cancers were caused by playing cricket in the sun without a hat or sunscreen . benaud said he had never worn head gear as a young player because he had been influence by legendary all rounder keith miller . he advised australians to cover their heads when playing in the sunshine . benaud had been out walking with his beloved wife daphne every morning in the hope he could return to work . he had been suffering from serious injuries from a car crash in october 2013 .\nlacey mccarty , six-year-old phillip mccarty and five-month-old christopher swist died allegedly at the hands of their mother jessica mccarty . christopher swists was the father of the youngest child and had nicknames for all of the children . he coached the two oldest in little league baseball . mccarty was arrested on march 20 and faces three counts of first-degree murder for the incident .\ndelroy facey and moses swaibu deny conspiracy to commit bribery . the pair are accused of being involved in a plot to fix lower league matches . the 34-year-old former bolton striker is standing trial at birmingham crown court . he is alleged to have acted as a middleman for two men convicted of match-fixing .\nthieves broke into vault of hatton garden safe deposit ltd. over easter weekend . police say there was no sign of forced entry to the building . the vault is in the heart of london 's jewelry district . police are still trying to identify the owners of the safe deposit boxes .\na hilarious new hashtag has popped up on social media site instagram exposing some of the ` awful ' things parents do to their children . # a ** holeparent has almost 4000 posts from parents all over world , admitting through their uploaded pictures to cleaning , feeding , and entertaining their children to their immense dissatisfaction . ' i would n't let her have a knife , ' explained one parent alongside a picture of their daughter sobbing in a highchair . ` because i was throwing a ball in old navy and she carried -lsb- it -rsb- out , ' wrote another , next to an image of their child crying .\ngerman discount chain aldi has a bigger market share than waitrose . aldi sales grew by 17 % between january and march compared to same time last year . this compares to 3 % growth for waitrose , lifting its share of the market . total market share of ` big four ' fell below 73 % - the lowest for a decade .\ninter milan have opened talks with manchester city about a deal for stevan jovetic . the serie a club have proposed an initial loan deal for the montenegro forward . city are unwilling to let joveic leave on a temporary basis . roberto mancini is also interested in a deal to sign yaya toure .\nliverpool need to strengthen their squad to compete for the champions league next season . brendan rodgers is likely to lose mario balotelli and rickie lambert . danny ings , james milner and petr cech are among the targets for the reds . liverpool have been frustrated in their pursuit of norberto neto from fiorentina .\nbrendan rodgers wants memphis depay to join liverpool this summer . the reds have been given permission by psv eindhoven to hold talks with the holland international . manchester united remain favourites to land the 21-year-old . rodgers says liverpool will not compromise their ambitions for champions league football .\ngays in the military is a photo essay documenting the stories of homosexual soldiers in the military . photographer vincent cianni , 63 , spent three years traveling the u.s. photographing and interviewing gay veterans and servicemen to share their stories of suppression , sadness and silence . the project was published by daylight books in may 2014 .\njust nine of 50 dartmouth students who said they followed presidential politics enough to comment said they would vote for hillary clinton . many of the students said they have little knowledge of her history before she led the state department . one student called clinton ` grizzled ' from a life in politics and said that ` just because she 's a woman does n't mean she should be president ' another said clinton ` does n't look like that fantastic a candidate ' new hampshire is the only ivy league school in an early presidential primary state .\nradiance pads promise to remove eyeliner and mascara . they also retexturise and brighten skin . they are infused with exfoliating glycolic and fruit acids . they offer all the benefits of a professional facial in a simple swipe . lauren libbert puts some of these latest new-generation wipes to the test .\nkit harington appeared on late night with seth myers to promote hbo show . the 28-year-old londoner said belfast is ` wonderful for two or three days ' he said he has spent five years filming in the city and poked fun at tourism board . tourism bosses say game of thrones is a ` key asset ' for northern ireland .\ngypsy groups want the definition of them as ` swindlers ' removed from the spanish dictionary . protest letters were delivered to members of spain 's royal language academy . the gypsy secretariat foundation are leading the campaign . they are hoping to use it to raise awareness of discrimination against gypsies .\nglobal consulting firm henley and partners created a visa restrictions index , which ranks countries globally . the index analyses countries ability to travel visa-free . finland , germany , sweden , the uk and the us are in first position , with 174 countries visa - free . afghanistan , iraq , pakistan and somalia are ranked at the lowest spots for visa-less travel .\njohn r. lind admitted on thursday to tainting pat maahs ' drink with his semen . the 34-year-old worked at beisswenger 's hardware store in new brighton , minnesota . he masturbated over her desk multiple times while she was away .\njessica knight suffers from pica , a rare medical disorder . it causes her to have an appetite for non-nutritious substances . she has eaten carpet underlay , padding in an armchair and sand . her parents have given her a purse full of sponge to eat it in . doctors say they are unable to treat her until she is six years old .\npapyrus found in oxyrhynchus , egypt , contains a medical ` recipe ' for treating a hangover . it recommends stringing leaves of a shrub called alexandrian chamaedaphne together . the plant was used as a cure for hangovers 1,900 years ago . the treatment was one of 24 new medical texts that are the latest to be translated .\nfive month old sonit awal was asleep upstairs in the family home when the quake struck . he was saved from death by a cupboard that fell over him . his parents and older sister desperately tried to free the little boy from the wreckage , working nonstop through the night with friends and neighbours . mother rasmila awal has spoken of her ` overwhelming joy ' that her baby is alive .\nrobert durst , 71 , pleaded not guilty to two state gun charges in louisiana in a case that would delay his extradition to la to face murder charges . durst is charged in los angeles with murder in the death of longtime friend susan berman , 55 , who was shot in the head in 2000 . he was arrested in new orleans last month on the eve of the finale of a six-part hbo documentary called ` the jinx ' about durst .\njuvenile swan nicknamed asbaby has been pecking punters on the river cam in cambridge over the easter weekend . he is said to have inherited his bad temper from his grandfather , and his father , asboy . mr asbo , the swan believed to be his grandfather . was moved to a location 60 miles away in 2012 by river authorities after repeatedly attacking rowers .\nian murray believes hibs have the easier run-in in the championship . rangers and hibs are level on points but hibs play a game less in the final month . rangers have two games to play against title winners hearts and hibs . dumbarton boss murray believes rangers will struggle to maintain their pace .\naston villa face liverpool in the fa cup semi-final on sunday . tim sherwood was quizzed about his letter to young fan charlie pye . pye applied for the villa hotseat after paul lambert was sacked . sherwood revealed his ` win bonus ' to the assembled media on friday .\ntoshiba 's humanoid robot , known as aiko chihira , is set to start work at the information desk of a department store in tokyo . the robot will only speak japanese - but she is also capable of sign language . chih kira blinks , bows and moves its mouth and lips smoothly while speaking .\nformer england captain michael vaughan , alec stewart and andrew strauss are in the running to become the next ecb managing director . paul downton was sacked as managing director of england cricket on monday . all three former england captains are well-respected figures within the game .\nmartin o'malley told reporters in iowa that inevitability is not unbreakable . he said clinton is an `` eminently qualified candidate '' but the democratic party is full of `` good leaders '' clinton was considered inevitable to win the nomination in 2008 but ended up losing to barack obama .\nintel ceo brian krzanich showed off the technology at a developers forum in china . he was able to control four spiderbots with a smart wristband . the robots were powered by curie , a computer the size of a button . curie is based on intel 's first purpose-built system-on-chip -lrb- soc -rrb- for wearable devices .\nground-breaking tv documentary follows three children and their families . sophie ryan-palmer , 12 , fabian bates , nine , and chloe balloqui , three , are patients at great ormond street hospital , london . they become the first children in the world to go through a pioneering treatment called immunotherapy .\ncyclist died at the scene after collision near lambeth bridge at 9.30 am . witnesses said the front wheel of her bike was ` completely squashed ' under lorry . incident was the fifth death of a cyclist in london this year - all involving lorries . cycle campaigners have organised a ` vigil and die-in ' at the site .\nstaff at manchester united 's megastore are sweating over their futures . on july 31 nike 's agreement with the club will expire . some claim they are being kept in the dark over whether they will be re-employed . a united source told sportsmail : ` all the staff are all worried sick about it '\nzeta beta tau students from university of florida and emory university accused of disrespecting disabled veterans . they allegedly spat on them , shouted verbal abuse and urinated on the american flag . the incident happened during the warrior beach retreat in panama city on april 17 . around 60 veterans from both iraq and afghanistan attended with their families . three members of the university offlorida chapter have been expelled .\na 3.6 m tall steel figure cut out of 5mm steel plate is the idea of bogan shire council . the council is hoping to erect the statue in nyngan , in western new south wales . the ` big bogan ' statue could prove as popular as the big banana which is a tourist attraction in coffs harbour .\nafrican elephant has taken a particular liking to the pool at etali safari lodge . the cheeky elephant has been nicknamed troublesome by staff . he has been a regular visitor to the resort 's splash pools for four years . the elephant has thwarted attempts to deter him from emptying the pools .\nnew 2.0 tfsi s line quattro has lively acceleration that takes it from rest to 62 mph in just 6.1 seconds . price as driven : # 54,180 . mini test . audi tt roadster 2 . 0 tfsi s line quattro -lrb- 230ps -rrb- .\na helicopter video shows deputies kicking and hitting a man as he flees from them . a sheriff 's office official says criminal investigations have begun into deputies and the suspect . ten deputies involved in the case have been put on paid administrative leave , he says . the fbi says it will investigate whether civil rights were violated .\nandrew chan and myuran sukumaran are awaiting death by firing squad . they are members of the `` bali nine '' who were caught in a failed heroin smuggling plot . a court in jakarta has rejected their bid to challenge president joko widodo 's refusal to grant clemency .\npresident barack obama impersonated house of cards 's frank underwood by dipping into a southern drawl . the president has admitted to watching the netflix show , though he says that life in washington is not as dramatic as portrayed by kevin spacey and others . the april fools ' joke was filmed as part of the west wing week youtube series , which chronicled the presidents ' week .\njeremy trentelman built a cardboard castle for his children in his front yard in ogden , utah . the 36-year-old florist received a letter from city code enforcement saying that the castle was ` waste material or junk ' the family will leave the castle up for 14 days , the maximum allowed before a fine .\nfootball league awards celebrate 10th anniversary with team . gareth bale , angel rangel , wes morgan , adam lallana , glenn murray , rickie lambert , peter whittingham and eddie howe all feature . team includes seven current premier league players and three outfielders .\nborussia dortmund defeated hoffenheim 3-2 in the german cup quarter-final . neven subotic gave dortmund the lead in the 19th minute against hoffenheimer . kevin volland and roberto firmino scored for hoffenhea in the first half . pierre-emerick aubameyang equalised for dortmund with a header . sebastian kehl scored a stunning volley in extra time to give dortmund the win .\nparis saint-germain have opened primary discussions with paul pogba over a possible move from juventus . sevilla are weighing up a move for manchester city winger jesus navas . yaya toure remains inter milan 's main transfer target for the summer . everton have interest from clubs in midfielder mohamed besic . stoke have made an enquiry about dnipro flyer yevhen konoplyanka .\nsaracens no 8 billy vunipola has been shortlisted for the european player of the year award . toulon flanker steffon armitage and clermont full back nick abendanon have also been named . leinster captain jamie heaslip and clermont no 8 fritz lee are also on the shortlist .\nstudy was carried out by goldsmiths university in london and ohio state university . more than 13,000 twins aged nine to 16 took part in the research . researchers found that 40 to 50 per cent of the differences in children 's motivation to learn could be explained by their genetic inheritance from their parents .\nafter nine years , the new horizons spacecraft is just three months away from its historic encounter with pluto . and now the spacecraft has taken its first colour image , revealing the dwarf planet and its moon charon . taken from a distance of 71 million miles -lrb- 115 million km -rrb- , the blurry image does n't reveal a huge amount of detail - but it is a sign of things to come . as the spacecraft gets closer and closer , the images will continue to improve until it flies by on 14 july - humanity 's first ever visit to pluto . new horizons was launched on 19 january 2006 at a speed of 36,373 mph -lrb- 58,536 km/h -rrb- - the fastest spacecraft ever\ncave photographer john spies captured the sheer magnificence of the vast , yet intricate , underground wonderland . tham khoun ex caves , commonly known as xe bang fai river caves , feature imposing stalagmitemade of mineral deposits . visitors are able to kayak through the waters , or explore adjacent chambers on foot .\njulie merner , 39 , has been admitted to hospital 13 times in the last six years . mother-of-three suffers severe liver cirrhosis , which has left her jaundiced . she has vowed to quit drinking and has n't touched a drop since january . taxpayers pay up # 3.5 billion a year to treat alcohol-related problems .\non november 30 , 2014 , two young boys were playing on maroubra beach when they uncovered the body of a baby girl buried under 30 centimetres of sand . now locals filomena d'alessandro and bill green have claimed the infant 's body in order to provide her with a fitting farewell . the couple , who were married last year and have three children between them , have been trying to claim the baby since january . they have named her lily grace and will hold a service for her on wednesday .\nruslan bazarov , 28 , was overtaken by a truck on the st petersburg ring road . the truck driver drove past him without stopping and knocked him to the ground . bazarovsky suffered pelvic injuries and a broken leg in the incident . video of the incident has gone viral on the internet and prompted calls for safer cycling .\nout-of-date sun lotions may separate and not spread evenly , say experts . this means you may not be completely covered with vital uv filters . many experts recommend that we wear sunscreen every day all year round . but now the weather is heating up , damaging uva and uvb rays will be stronger .\nthe england cricket team 's involvement with multi-billion-pound fraudster allen stanford has been defended by west indies cricket legend sir curtly ambrose . ambrose accompanied stanford when he flew to the lord 's nursery ground in 2008 to launch his five-year deal with england . the deal ended with stanford 's arrest and subsequent 110-year jail sentence .\ntheia , a 1-year-old bully breed mix , was hit by a car and then struck in the head with a hammer and buried . the dog was discovered at a nearby farm with a dislocated jaw , leg injuries and a caved-in sinus cavity . theia is scheduled to go into surgery in a few weeks time after raising money through crowdfunding .\n14 native spanish-speaking players will feature in manchester derby . eight of united 's first-team squad and six from city are from spain . nine english-speakers are expected to be in both sides ' respective 18-man squads . unless tyler blackett makes a comeback for united there wo n't be any local lads in the two xis . sir alex ferguson was disgusted that city 's youth academy was more profitable on arrival at united .\nmassachusetts couple mimi and joe lemay 's son jacob was n't always a boy . the five-year-old was born mia , the second of three sisters . but from a very early age , jacob began rejecting his gender . the couple decided to let him assume the identity of a boy at home .\nscientists found system of priming the body 's immune system to recognise , attack and kill off cancerous cells in lung , skin and bowel tumours . early trials ` profoundly retarded ' tumour growth in mice . survival rates were boosted by more than 50 per cent . scientists are now recruiting patients with skin cancer for the first clinical trial on humans .\nhalf of brits say a sleepless night is the most stressful thing they experience . not being able to sleep , losing your keys and being stuck in traffic also top the list . other common incidents include running out of toilet paper and losing an important document . 2,005 adults in the uk were questioned on what common events make them feel stressed .\njespier blomqvist has been back in manchester to coach youngsters . the 41-year-old helped coach youngsters from the manchester united foundation 's street red project . the midfielder was a key cog in sir alex ferguson 's treble-winning machine in 1998-99 . blomquistist played 67 minutes in the champions league final win over bayern munich in barcelona .\na 75-year-old man has been bitten by a crocodile at a golf course in queensland . the man was playing golf at the palmer sea reef golf course at port douglas . he was bitten on the leg and suffered puncture wounds to his left calf . the victim was treated at the scene before being taken to hospital in a stable condition . clive palmer , who owns the course , tweeted his well wishes to the man .\nsheriff mbye , also 18 , died in hospital after receiving multiple stab wounds . was stabbed outside kfc in northfield , birmingham on friday afternoon . officers found a 19-year-old man who had also suffered stab wounds in barber shop . victim was then dropped off at hospital in a white audi which sped off . police have now arrested a second 18-yearold on suspicion of murder .\nthere is often a negative stigma attached with being a female who chooses to live alone , especially in sydney 's affluent eastern suburbs . a new study has shown that of these women , the majority have university degrees , reputable careers and healthy social lives . the study conducted by the australian institute of family studies shows that a quarter of australians have opted for solo living . 70 percent of the women are more likely to have a university degree than the men .\nthere are plenty of options on airbnb for those looking to step back in time . the rentals range from 1950s cottage to 1980s seaside home . the interiors of the properties are designed with a variety of tastes . from the atomic age to the brit-pop '90s , these rentals cater for all tastes .\nmelbourne high school students have been drinking treated sewage water from a bubbler on campus for more than a year . the principal of st peter 's college admitted that ` class a ' recycled water had been inadvertently connected to an outdoor drinking fountain . the bubbler had been dispensing recycled water for 16 months -- from december 17 2013 until april 1 2015 . an investigation has been launched by the department of health and human services to assess the extent of the possible health impact .\nunison member jane smith said staff are treated like ` slave labour ' in nhs . she said one nurse had worked 11 consecutive long day shifts , totalling 78 hours a week . unison has called for more research into the effects of long shifts on workers ' health . comes as royal college of nursing warns of staffing shortages .\n61 per cent of us adults admit they do n't extend invitations to friends and family because of their ` home shame ' general mess , dated carpets and kitchens , unfinished diy projects and the small size of their property rank highest on the list of embarrassments . martha stewart 's home topped the list . of celebrity homes that participants most like to see .\nkarim benzema limped out of real madrid 's training session on friday . the frenchman picked up a knee injury in real 's 0-0 draw at atletico madrid . carlo ancelotti has confirmed that benzema will miss saturday 's la liga game . the french striker should be fit for the return game against atletico on wednesday .\nresearchers at duke university studied 1,000 years of global warming records . they found natural variability in surface temperatures can account for increases and dips in warming rates . but they say these ` climate wiggles ' could also cause the planet to warm faster than anticipated . the study compared its results to the most severe emissions scenarios outlined by the intergovernmental panel on climate change -lrb- ipcc -rrb- it found a middle-of-the-road warming scenario is more likely , at least for now .\nlabour faces an unprecedented wipeout , according to detailed constituency surveys . jim murphy , scottish leader , and douglas alexander , chief election strategist , could lose seats . survey suggests labour could lose all 41 seats it won in 2010 . the nationalists are also on course to wipe out the liberal democrats in scotland .\nqpr manager chris ramsey is the only black manager in the premier league . ramsey believes that covert racism still exists in football boardrooms . he supports john barnes 's assertion that black managers find it difficult to get another job after being sacked . ramsey thinks that the rooney rule could help raise awareness of the issue .\nagnieszka radwanska was beaten 7-6 -lrb- 8/6 -rrb- 6-4 by sara errani . world no 9 follows ana ivanovic out of the porsche tennis grand prix . the fifth seed was beaten by caroline garcia on tuesday . errani will now face kazakhstan 's zarina diyas in the second round .\nnina moric , 38 , posted photographs of heavy bruising on her arms . italian media reported that ms moric tried to take her own life . she was found by her mother in the luxury apartment she shares with her boyfriend . ms morics told her fans she was recovering at home after being treated in hospital . she said she was ` shocked ' by the suicide claims .\nlogie baird first demonstrated a working tv system in 1926 . the baird televisor was the first receiver sold in britain . around 1,000 were made by english company plessey and cost about # 26 . it is being auctioned off as part of a speciality telecommunications sale .\nmanuel garza jr. was given the death sentence after killing san antonio police officer john ` rocky ' riojas in february 2001 . he is the sixth convicted murderer to be put to death in texas this year . garza was given a lethal injection of pentobarbital .\nmadison small , 18 , was rushed to hospital after she woke up in the night with a severe headache on monday . she died on tuesday morning . the virginia medical examiner 's office is investigating her death but no diagnosis has been given . hundreds of friends and family gathered for a candle-lit vigil on tuesday night . her father said she had seemed healthy over the weekend .\njohn hancock called his sister bianca ` the fat ' and ` fatty ' in emails tendered in court . the emails were tendered as the daughter of mining magnate gina rinehart was reduced to tears after being forced to sign a deed against her interests . bianca rine hart and her brother john hancock are fighting their mother over their trust fund . the siblings want to access to records of mining profits , and accused their mother of defrauding them of billions of dollars .\ncareer actress carey mulligan said more needs to be done to raise awareness . her grandmother margaret booth suffers from the disease . the former teacher has struggled to recognise her in at least five years . miss mulligan revealed her grandmother was suffering from the illness in 2013 . she is now a patron of the alzheimer 's society .\nchelsea are believed to have made a bid for fc tokyo forward yoshinori muto . jose mourinho admits that chelsea consider sponsorship interests when buying new players . the blues agreed a # 200million sponsorship deal with japanese tyre manufacturers yokohama rubber in february . muto would be the first japanese player to sign for chelsea if he completes a move to stamford bridge this summer .\nthe duchess of cambridge made the revelation at a party in march . she was celebrating the 105th birthday of the goring hotel in london . kate stayed in the hotel the night before her wedding to william in 2011 . prince william had left pregnant kate and son george in london while he undertook a week-long tour of the far east .\nlatasha gosling , 27 , and her two daughters , janyaa , 4 , and jenika , 8 , and her son landen , 7 , were discovered early wednesday . the suspect in the case was found just hours later dead , and while police would not say how he died they did say that it was not a homicide . he also had a six-month-old baby with him who was unharmed .\ntories launch poster campaign showing sturgeon manipulating a puppet labour leader . tory chairman grant shapps says : ` only way miliband might crawl through gates of no10 is if he 's carried there by the snp ' campaign comes as sturgeon uses article to claim she can help ` lead the uk ' snp leader reveals party 's manifesto will include pledges in policy areas which do n't even directly affect scotland .\njimmy anderson became england 's leading wicket-taker in test match cricket . anderson took 384 wickets to overtake sir ian botham 's record of 383 . the fast bowler took the wicket of denesh ramdin in his 21st over in antigua . botham was watching the test from the commentary box for sky sports .\nlindsay jo rimer went missing from hebden bridge , west yorkshire , in november 1994 . her body was found in rochdale canal five months later , weighed down with a 20lb rock . her sister kate has spoken out for the first time as police launch new bid to find killer . she says family 's struggle since her death has been a ` life sentence ' for them .\njustus howell , 17 , was shot twice in the back by police in zion , illinois . police say he had just stolen a gun from tramond peet , 18 , who was trying to sell it . peet told police he was tryingto sell the gun to howell but he did n't pay . he said howell then grabbed it and pointed it at him , prompting police to open fire . howell was hit by two bullets , one which penetrated his heart and spleen .\nhealth experts compare ancient nights out to modern drinking spots . ancient civilisations such as the romans , greeks and egyptians had to deal with drunken behaviour . dr mark bellis is giving a talk at a conference in las vegas this week . he says we can learn from history 's successes and failures .\non wednesday virgin australia launched complimentary food on all flights across the australian domestic network . the latest introduction of free food will be part of a package that will also include free checked baggage on all domestic flights . virgin australia continues to offer complimentary tea , coffee , juice and water on all . flights .\nniamh geaney , 26 , from dublin , launched social experiment on facebook . she and two male friends dubbed it twin strangers project . they were inundated with submissions from all over the world . niamh found her match in karen branigan , 29 , an ireland native . pair met in real life and took eerily twin-like photos together .\nbayern munich host borussia dortmund in the bundesliga on saturday . the two sides have a history of fierce rivalry , but this time it is different . dortmund are 10th in the table , while bayern are 10 points clear at the top . the result will confirm bayern as champions for a third successive season .\npolished foliage makes for a great contrast with brightly coloured flowers . they are easy to grow , but picky about soil . if your soil does n't suit , plant in containers in ericaceous compost . st ewe is britain 's most popular camellia variety .\nkelvin day is three shots off the lead at shell houston open . day has entered qualifying for the tournament in houston . the surrey-born 27-year-old is playing his first pga tour event . he is playing alongside paul casey and justin rose . day is in with a chance of making the masters after the heritage .\njordan henderson had 14 months remaining on his current contract . the midfielder is expected to sign a new deal worth around # 100,000-a-week . henderson 's new deal will run until the summer of 2020 . the 24-year-old could replace steven gerrard as liverpool captain .\nair passengers face up to three days of disruption as french air traffic controllers strike . passengers travelling abroad by ferry or eurotunnel face queues . new passport checks are also set to cause chaos at britain 's ports . easyjet , ryanair and flybe among airlines forced to cancel dozens of flights .\nchristopher flower , 84 , accidentally set himself on fire while driving in rochester . he was driving along chili avenue on march 9 when he dropped a cigarette in shirt . flames spread across his clothing , engulfing his entire torso . good samaritans pulled over and tried to extinguish blaze with snow . flowers was rushed to hospital with severe burns to his upper body . but on sunday , hospital officials announced he has died from his injuries .\nbricks fell from the top of a building in cleveland on monday afternoon crushing a car below . cleveland fire officials say bricks along the top . of the former national city bank building collapsed and showered down onto the street and sidewalk just after 4 p.m. monday . no one was injured . the building and minivan were unoccupied at the time of the collapse , and no injuries were reported .\nswiss scientists say three quarters of extreme hot weather and 18 per cent of heavy precipitation is being driven by global warming . they warn that as climate change pushes global temperatures higher over the coming decades , humans will become responsible for 40 per cent . of extreme rainfall events . scientists claim it is the rarest and most destructive events that seem to be the most responsive to human influence .\njames anderson will play his 100th test match against the west indies on monday . the england quick needs just three wickets to equal sir ian botham 's england record haul of 383 . anderson was known as pro killer during his days with burnley , reveals former team-mate and now club chairman michael brown .\nfirst aid dental kits allow people to repair caps and crowns at home . more people are buying the kits as they ca n't afford nhs dental treatment . one in five people admitted they would carry out diy dentistry . experts say anecdotal evidence suggests diy dentism is on the rise .\ncharlotte dujardin and valegro win second consecutive reem acra fei world cup dressage title . dujardsin and her horse valegro narrowly miss out on world record in las vegas . youngster bertram allen wins bronze at age of 19 in showjumper event at the weekend .\nlionard property on the lombardy side of lake garda , italy , has a large swimming pool and deck overlooking the water . hameau du temple in the south of france is the perfect provencal family summer home . a stately italian villa , built around a 15th century watch tower , is on the market for $ 12 million -lrb- # 8.6 million -rrb-\nus scientists have reviewed 4,200 studies involving weight loss plans . they found only a few had solid evidence to back up their claims . others produce no better results than people dieting on their own . and some may actually be harmful to health . but a handful - including weight watchers , the atkins diet , jenny craig and nutrisystem - do appear to be effective , according to long-term studies .\nlen mccluskey boasted that the trade union movement ` owns ' the labour party . he said : ` the labour party is our party . we built it , to serve us ' and ` these are our policies ' comes just 24 hours after alex salmond bragged he would write labour 's budget .\nrachel bowman-cryer and her wife laurel held a commitment ceremony in june 2013 at sweet cakes by melissa in portland , oregon . bakery owner melissa klein and her husband aaron refused to make the cake because they disapprove of gay marriage for religious reasons . the couple said they had received death threats and were worried about losing their two foster children after the case received widespread attention . the kleins were able to raise more than $ 100,000 from anonymous donors on a fundraising page before it was shut down for violating gofundme 's terms of service .\nvideo shows skydiver 's helmet camera falling to earth after 10,000 ft free fall . remarkably , camera remains intact as it spins out of control in dizzying fall . footage was taken during routine skydive in everöd , sweden .\nrebecca hannibal has pleaded guilty to supplying georgina bartter with ` purple speaker ' ecstasy pills . the 19-year-old died after taking ` one and a half pills ' at the harbourlife dance festival in november last year . ms hannibal , of cammeray , will appear in court on june 10 for sentencing . police allege the pills were purchased from matthew forti , 19 , who has been charged with supplying a prohibited drug .\nharis vuckic joined rangers on a season-long loan deal in august . the 22-year-old has scored six goals in 10 games for ibrox . vucko has denied he is planning to leave newcastle in the summer . he has one year left on his contract at st james ' park .\ncctv footage captures moment nurhayada sofia fell to her death . the six-year-old was out shopping with her mother and sister . she was dragged by an escalator at a shopping centre in pudu , malaysia . she suffered horrific head injuries and died on impact at the scene .\nimage appears on google maps near the city of shahpur in pakistan . it shows a large android shape urinating on an apple logo . the image appears on both the desktop and mobile version of maps . but it disappears when the map is switch to satellite view . google has terminated the android figure involved in this incident . it is not an official google feature and the image is believed to have been added using google 's map maker .\nher majesty the queen attended canada house reception in trafalgar square . she was joined by prince philip and princess alexandra at the event . the queen wore a special diamond-encrusted white gold sweetheart brooch . the event was held in honour of the three canadian regiments . the regiments are on a european pilgrimage to mark centenary of 2nd battle of ypres .\nshetland pony battered to death with breeze block in middle of night . charlene bishop , 17 months , went to feed her pony taffee on wednesday . found the shetland lying on the floor and dying from horrific head injuries . left side of pony 's skull was completely caved in and concrete embedded in her brain .\nfacial surgeon ninian peckitt struck patient in the face ` like a boxer ' the 63-year-old was attempting to fix a broken cheekbone at ipswich hospital . he hit patient up to ten times while colleague held his head . prof peckitt claimed he ` digitally manipulated ' the patient 's face . but medical practitioners tribunal service panel found his fitness to practice was impaired .\nformer ss sergeant oskar groening was put on a 24-hour shift guarding the ramp where jews were processed . he is being tried on 300,000 counts of accessory to murder related to a period between may and july 1944 when 425,000 jews from hungary were brought to the auschwitz-birkenau complex . survivors from auschwitz describe their arrival as chaotic , with nazi guards yelling orders , dogs barking and families being ripped apart .\nroyal caribbean 's legend of the seas reported 135 passengers took ill before it docked in san diego on tuesday . the celebrity infinity reported 106 people who had fallen ill with norovirus . crews immediately got to work scrubbing down and sanitizing both ships . norovirus can live on surfaces for weeks , meaning other passengers could also be infected .\nseven million episodes from seasons one to four were illegally downloaded . overall illegal downloading of show is up 45 per cent year-on-year . brazil accounted for almost one million of them , followed by france . the walking dead , breaking bad and vikings also in top five . game of thrones returns to sky atlantic on sunday night .\na business called edward 's snow den has appeared in the us president '' s headquarters . it is thought that edward snowden was living in a secret location in russia . but it seems he 've actually set up shop in the middle of the white house . mr seely created the fake listing to demonstrate a flaw in google maps .\ncarphone warehouse 's mobile network launches in may and will offer free roaming in 22 countries , including the us , australia and across europe . the firm 's boss told mailonline the aim is to offer features that customers want , including 12-month contracts and affordable 4g handsets . the id network will use three 's existing infrastructure to offer networks and plans .\nmick schumacher junior will make his formula 4 debut in germany this weekend . the 16-year-old is part of the dutch van amersfoort racing team . schumachers finished second in the world , european and german kart championships last season .\nle'veon bell was charged with marijuana possession last august . the pittsburgh steelers star will miss the first three games of the season . bell will also be fined a game cheque . the 23-year-old plans to appeal the decision . former steeler legarrette blount was also charged with the drug .\nbelgian teenager obbi oulare scored as club brugge beat anderlecht . manchester united , everton , sunderland , burnley , dortmund and leverkusen were in belgium to watch the top of the table clash . sportsmail understands 19-year-old oular was the reason the scouts from england and germany were in attendance .\nmoeen ali was injured during england 's world cup campaign . he was left out of the squad for the tour of the west indies due to injury . moeen is hoping to be fit to play for worcestershire against yorkshire . adil rashid and james tredwell are the current spin options in the squad .\nsteven and sarah nick allegedly built up huge arsenal in secret basement bunker . police found a 50-caliber machine gun , sniper rifle and 17,000 rounds of ammunition . many of the 30 weapons were legally owned , but couple accused of stealing money . couple accused of plundering mrs nick 's 67-year-old mother 's savings .\nbobby brown visited his daughter bobbi kristina at the dekalb medical center in decatur , georgia , on monday . the 22-year-old was recently moved from emory university hospital - where she had been treated since being found unresponsive on january 31 . her maternal grandmother cissy houston said on monday that her granddaughter ` is no longer in a medically induced coma ' but is not awake nor expected to ever fully recover .\nchristopher dodd , 24 , and fay purdham , 27 , grew up together as boys . miss purdam , who was born kevin , began her transition to become a woman at the age of 23 . the pair lost touch after christopher moved away from the area where they both lived . they reunited at mr dodd 's 21st birthday party and are now planning their wedding .\ncolombian-born manuela arbelaez removed the wrong price tag during thursday 's show . she revealed the true price of the hyundai sonata se before andrea had finished guessing . the 26-year-old model said it was the ` biggest mistake ever in game show history ' and the first of her six-year career .\ntracey woodford 's body was found at a flat in pontypridd , south wales on friday . christopher nathan may , 50 , is accused of killing her and is charged with murder . he appeared in court today and was remanded in custody by magistrates .\nphil blackwood , 32 , sentenced to two-and-a-half years with hard labour . he posted mocked-up image of buddha wearing dj headphones on facebook . the tongue-in-cheek advert provoked outrage among devout buddhists . human rights campaigners claim he has been ` abandoned ' by the foreign office . mr blackwood has dual new zealand and british nationality .\nfishing guide carol gleeson watched as the crocodile ate a one metre long lizard . the three-metre reptile was caught at the mary river in northern territory . it was the 58th crocodile removed from top end waters this year . a 4.38 metre croc was caught last month after it had been eating dogs and threatening locals in a daly river community .\nthree men and one teenager arrested after police swooped on hotel room . they were building a flat-pack wooden cabinet for a ` trojan horse ' one of them was to hide inside and switch real cash for fake notes . the gang , posing as wealthy italians , were arrested in manchester . luigi arcuri , 73 , nikolic giuliano , 37 , and antonino ballistreri , 45 , were each sentenced to two years and eight months in prison . a 17-year-old boy , who can not be named for legal reasons , was given 16 months .\ntv wine expert oz clarke puts the new oak bottle to the test . it claims to ` oak age ' wine in hours rather than years . oak bottle promises to impart an authentic aged flavour . the product retails at # 50 and is brainchild of joel paglione .\none snap poll has miss sturgeon deemed well ahead of labour leader . mr miliband trails david cameron and nigel farage in average of four polls . overall , mr cameron also emerged with clear lead on ` most capable ' pm . tories rush out poster depicting ed miliband in nicola sturgeon 's pocket .\nnick cannon is writing a tell-all book about his marriage to mariah carey . he has already signed the deal with simon and schuster . the couple have a prenup that would pay nick $ 10million but nick wanted more . when mariah refused he decided to get his payday through a book deal . ` mariah was willing to give nick $ 10 million but he said ` hell no ' and demanded $ 30 , ' a family friend tells the daily mail exclusively . nick is being very vengeful , dating other women in public including nicole murphy , michael strahan 's ex .\nthe fast food giant has caused fury after installing metal studs outside its branch in leeds city centre . critics say they are there to stop people sleeping rough and have started a petition . mcdonald 's says they were installed two years ago in an attempt to stop anti-social behaviour , not target the homeless .\nflight 448 , bound for los angeles , returned to seattle after pilot heard banging . upon landing , a ramp agent was discovered inside the front cargo hold . the agent told authorities he had fallen asleep , alaska airlines says . the plane was only in the air for 14 minutes , alaska says .\nshe said she and bill were ` unabashedly giddy ' when they heard their daughter chelsea was pregnant in 2014 . but they were far more organized and prepared for the birth of baby charlotte , she revealed in a new chapter of her memoir , hard choices . she said she saw tears in bill 's eyes after the birth last year . the former secretary of state said that the birth has made her realize that there is so much more work to do . she is expected to announce her presidential run on friday .\nann price was the owner of ann 's snack bar in atlanta . she started the restaurant back in 1971 . in 2007 , the wall street journal named her signature ` ghetto burger , ' a double cheeseburger with bacon , grilled onions , ketchup , mustard and chili , the best in america .\nnovak djokovic eased into the third round of the monte carlo masters . the world number one beat albert ramos-vinolas 6-1 6-4 . david ferrer is also through after his opponent victor estrella burgos retired with a shoulder injury . jo-wilfried tsonga beat jan-lennard struff 6-3 6-2 .\nthe man was tasered at pearson international airport in ontario . he was trying to enter a restricted area but refused to abide by security protocol . the man , believed to be mentally disturbed , was then brought to the ground . police said the man was told he would not be allowed to board a turkish airlines flight .\nseven baby foxes were found abandoned in a cardboard box in a car park . they were taken in by the pocono wildlife rehabilitation and educational center . the center is spending more than $ 1,000 looking after the foxes . the pack will be returned back to the wild in july .\ncharity bite-back claims up to one in five chinese restaurants sell the soup . trading standards officers raided restaurant the royal china club in london . restaurant boasted of selling shark fin soup and another dish made from teeth . loophole allows people to bring 20kg of fins into the country .\nisis militants have taken control of yarmouk , the largest palestinian refugee camp in syria . the camp has been besieged by syrian forces for more than two years . an estimated 18,000 refugees are trapped inside yarmouk , stuck between isis and regime forces .\naston villa are interested in signing swindon midfielder massimo luongo . tim sherwood sent luongo to swind on loan during his time at tottenham . the 22-year-old has decided to play in the barclays premier league next season . luongo was player of the tournament during australia 's successful asian cup in january .\njames and joanessa clawson ` set up gofundme page asking for $ 3,000 ' they claimed their three-year-old daughter had a heart condition and needed the money to pay for surgery . the couple 's mother patti ann baldassarre posed as a nurse to back up the story . a teacher asked police to check on the girl and found she was fine . mrs clawson is charged with felony conspiracy while her husband faces an additional charge of misdemeanor obstruction of a law enforcement officer .\nthe five-month-old bornean orangutan was born to eve and elijah at hogle zoo in salt lake city , utah . eve died just a few weeks after giving birth to tuah . tuah 's sister acara has been training her to be a mother .\nsudheer khamitkar , 42 , shot his 38-year-old wife and their two sons arnav khamitkar , 10 and arush khamit kar , 6 , before turning the gun on himself at their tulsa home on wednesday . the bodies were found on wednesday as officers conducted a welfare check requested by the mother 's employer after she failed to show up for work or call in sick for two days . police are still searching for a motive .\nrussian president vladimir putin answers questions during annual q&a session . putin : sanctions are `` about the need to constrain our development '' putin : iran is not a threat to israel at all . the annual event is a chance for russians to question their leader . .\nitalian police stopped a luxury yacht with a crew of three syrian men . the yacht was carrying 23 children and was flying a turkish flag . it is thought the crew were smuggling illegal cargo worth # 536,000 to organisers . the migrants were paid $ 8,500 each for the journey from north africa .\nclare balding has admitted she was on tv too much following her success presenting the london olympics . the broadcaster has vowed to do less after presenting everything from the bbc 's rugby league coverage to crufts . balding said that it was ` exhausting ' to be constantly asked about being gay .\ndentist dr sameer patel warns of hidden ingredients in ` healthy ' foods . some breakfast cereals contain as many as three teaspoons of sugar . coffee and tea are notorious for staining in between teeth . white bread can contribute to dental decay , because it contains simple sugars .\nvictor sena blood-dzraku will be served with the divorce summons via a private facebook message . it will be repeated once a week for three consecutive weeks or until ` acknowledged ' by his wife ellanora baidoo . the couple married in 2009 in a civil ceremony .\ndwarf planet ceres is one of the most active in the solar system . scientists believe it may have an ocean and possibly an atmosphere . latest images show the dwarf planet 's surface from a distance of 28,000 miles -lrb- 45,000 km -rrb- the images reveal two mysterious bright flashes on the surface . they show that they have different thermal properties to the rest of ceres .\nkurdi sanchez , 25 , was a student teacher at marshall elementary school in eureka , kansas . she was arrested monday on charges including electronic solicitation , unlawful sexual relations , solicitation of unlawful sexual relations and three counts of promoting obscenity to a minor . prosecutors allege her victims were aged between 15 and 17 , and that the alleged incidents occurred over five months in 2014 . sanchez is believed to be a mother-of-three . she left her position in december following a ` situation '\nzeus , a german shepherd , was honored in a grand procession in connecticut on wednesday . the 11-year-old retired k-9 officer took his last ride in a squad car during the tribute . zeus worked with the ridgefield police department for eight years as a k - 9 officer . he was put down because of a severe degenerative hip disorder and declining health .\ndr christopher valentine , 52 , was sacked from sexual health clinic in 2007 . he was hauled before the general medical council nine years ago . but he was not struck off and went to work at an nhs service for drug addicts . but the married doctor has been caught again after a nurse saw images of a semi-naked man on his ipod touch during a night out .\ndaniel sturridge was left out of liverpool 's squad for newcastle united . the striker picked up a knock against blackburn rovers last week . brendan rodgers said sturridge would be monitored ahead of the semi-final . liverpool face aston villa at wembley on sunday in the fa cup .\nspanish royal family spent easter on the island of mallorca . king felipe , queen letizia and their daughters princess sofia and princess leonor attended the service . the family are on the balearic island for the annual holiday at marivent palace .\naj francis sent application to work for taxi firm during off-season . the 24-year-old dolphins defensive tackle is a regular user of the app . he said : ` it would be a cool way to get some extra cash ' francis is set to make $ 510,000 next season according to nfl website .\nan undergraduate student at duke university has admitted to hanging a noose in a tree and is no longer on campus . the student was identified with information provided by other students and will be subject to duke 's student conduct process . the school is not identifying the student in question , citing federal education laws protecting student privacy .\nuk columnist has praised australian pm tony abbott for stopping asylum seeker boats . she has suggested the uk follow australia 's approach and ` threaten them with violence ' the sun columnist has been slammed on social media . a campaign has been launched to have her removed from the paper . her comments came as 900 people were drowned in a sunken fishing boat .\npaul gregory , of bedford , applied for a blue badge saying he could only walk 200 metres . but he was a keen walker and member of a mountaineering club . bedford borough council staff read an article about his exploits . it said he had been attacked by cows on a 191-mile hike in cumbria . he pleaded guilty to dishonestly obtaining a blue and was fined # 795 .\nnew york city 's landmarks law was signed in 1965 and upheld by supreme court in 1978 . it was created to protect historic places and prevent them being demolished . new exhibition , saving place , looks at the destruction of iconic buildings that led to the law . it highlights the 1963 demolition of pennsylvania station to make way for madison square garden .\nsean jefferson , 45 , and elizabeth jowitt , 37 , decorated their flat with items . tributes included wreaths , lanterns , memorial slates and homemade toys . items were taken from graves of babies and a grandmother who fought cancer . couple admitted handling stolen goods at york magistrates ' court . given 47-week curfew and restraining order banning them from cemeteries .\nthe blues defeated shakhtar donetsk 3-2 to win the uefa youth league . dominic solanke and izzy brown scored twice in the victory in nyon . chelsea 's under 19 side scored 36 goals in 10 matches during the tournament . the blues will play manchester city in the fa youth cup final next week .\nwatford captain troy deeney has scored 20 goals in the championship this season . the hornets are currently third in the table , one point behind leaders bournemouth . deeney has been named sky bet championship player of the month for march . the birmingham-born striker is hoping to lead watford to the premier league .\nlawyers have warned that differences in defamation law in northern ireland mean controversial us expose hbo 's ` going clear ' might not be broadcast by sky atlantic . the alex gibney-directed film alleges abusive practices at the religion 's us headquarters . it was due to premiere in the uk earlier this month to coincide with its american release . but the fact that northern ireland is not subject to the 2013 defamation act means sky is set to postpone or cancel the show entirely .\naverage australian sheds the equivalent of a 50 gram packet of chips every week in dry skin . this is feeding an army of dust mites into our couches and beds . dust mites are the number one cause of allergies in australian homes . they live for three to four months and feed off animal and human dead skin . an average bed can have approximately 10,000 dust mite living in it at one time .\nbas van velzen was a competition winner who won the chance to meet the liverpool stars . balotelli , fabio borini , rickie lambert and lazar markovic watched on as the dutchman showcased his dead-ball skills . the youtube star unveiled balotlli 's famous slogan .\nmarouane fellaini shared a glass of bubbly with his twin brother mansour . the pair were the subject of a mix-up involving chelsea boss jose mourinho . mourinho revealed he prepared his chelsea players to deal with fellaini all week . but the belgian was told by a hotel doorman that he was not playing . fellain i did play at stamford bridge earlier this month , but was dealt with in midfield by kurt zouma . the red devils welcome west brom to old trafford on saturday .\nstoke city host west ham united at upton park on saturday -lrb- 3pm -rrb- enner valencia will be available for west ham after toe injury . marc wilson available for stoke despite broken hand . jon walters also in contention to play for mark hughes ' side . west ham have won only one of their last nine premier league games .\ntottenham are considering a new 65,000-seat stadium for the nfl . the new stadium could have a retractable grass pitch . the nfl is said to be within five years of having a permanent franchise in london . tottenham 's new stadium is due to be completed for the 2018-19 season .\na seller on ebay has claimed that he has former new england patriots player aaron hernandez 's jailhouse identification card . the listing , posted friday , showed a laminated badge featuring a photo of hernandez , 25 , and identifying information , including his height , weight and birth date . hernandez is currently in prison during his trial for the the june 2013 shooting death of odin lloyd , who was dating his fiancée 's sister .\nsue sharp bought the leg of lamb from asda in midlothian , scotland . the packaging claims it was born , reared and slaughtered in the uk . but a stamp on the meat says it came from new zealand . asda has apologised and said the mistake was an ` isolated incident ' but mrs sharp , 57 , says she is ` baffled ' and is warning others .\nhyalinobatrachium dianae has translucent skin on its underside . this means that the animal 's heart , liver and gastrointestinal tract are visible . the frog was found in the mountains of eastern costa rica . it has a distinctive call and is distinguishable by its black and white eyes .\nchelsea beat qpr 1-0 at loftus road on sunday . cesc fabregas scored the winner with two minutes to go . the spaniard wore a protective mask after breaking his nose last week . the mask was made by an orthopedic centre in milan . fabrega travelled to milan on tuesday to have the mask fitted . the 27-year-old played on for the entire 90 minutes against stoke .\n` another november ' is a photo series by british photographer laura stevens . the 38-year-old asked friends and women she met to pose for the project . she said it was a therapeutic way to deal with her own grief after break-up . the series shows women in their own homes in paris .\nthe four-foot red and orange corn snake was found in the bathroom of michelle woods ' new home . the 44-year-old mother-of-two was told by her daughter elisha mann that ` something was moving ' in the bath . she believes it may belong to the property 's previous tenant .\na florida judge says the `` lurid details '' of alleged abuse were unnecessary . the judge says he will throw out a motion by two alleged victims to join a lawsuit . the lawsuit accuses prince andrew and a prominent u.s. lawyer of having sex with minors . buckingham palace has denied the allegations .\ntravel site , wanderbat , has ranked the top 22 airlines in the world . qatar airways was named the most reliable airline thanks to its punctuality . followed closely by emirates and china eastern , the top three airlines . british airways ranked eighth , the only uk airline to make the list .\nreal madrid goalkeeper iker casillas handed a young fan his no 1 shirt at half-time . the supporter was struck by a ball during the 9-1 win over granada . casillas alerted stewards and medical staff to the incident . real madrid eased to a 9-2 win over relegation candidates granada at the bernabeu .\nman said to have shot himself around 2:15 pm friday afternoon . was standing in smoking area behind the despicable me minion mayhem ride . nobody else was injured in the shooting at universal studios in hollywood . park bans all weapons from its grounds and searches guests before entry .\nformer australia captain and commentator richie benaud has died aged 84 . he passed away peacefully in his sleep surrounded by his wife daphne and family . benaud had been receiving radiation treatment for skin cancer since november . he was admitted to a sydney hospice on thursday . benaud was a veteran of 63 test matches and was instrumental in the formation of world series cricket in the 1970s .\nrains and thunderstorms hit the mid-united states on tuesday . roads around st louis , missouri , were flooded with rainwater . one town recorded more than two inches of rain in half an hour . the storms also hit indiana and knocked down trees and power lines .\nfashion retailers are now offering their own make-up ranges . claire coleman put some of the biggest fashion beauty brands to the test . topshop beauty has a rainbow of nail polishes and lip colours . next 's make me beautiful is moisturising with tonnes of pigment .\ncarlos bacca put sevilla in front from the penalty spot after five minutes . zenit hit back through salomon rondon and hulk in the second half . kevin gameiro saved goalkeeper beto 's blushes with a late equaliser . the result sees sevilla progress to the last four of the europa league .\nmodel karlie kloss is teaming up with the flatiron school in new york to offer 20 girls free tuition to a computer coding course this summer . the 22-year-old is donating $ 20,000 of her own money for the classes , which cost $ 2,000 per student . karlie attended the software engineering course last year .\neric cantona believes javier pastore is the best player in the world . former manchester united striker was speaking at the laureus world sports awards in shanghai . cantona also suggested spain won the world cup because of barcelona . cristiano ronaldo was crowned the best players in the world in january . lionel messi has scored 45 goals for barcelona this season .\nkardashian family arrived in jerusalem on monday morning for north 's baptism . kim posted pictures on instagram showing her inside the historic st james cathedral in jerusalem 's old city . the 12th century church is believed to be the location of jesus christ 's crucifixion . kanye and north were escorted out of the church by a priest .\namy wilkinson claimed housing benefits and council tax benefit . she was living in a home owned by her mother and her partner . she admitted two charges of dishonestly making false representations . she has been ordered to pay back a total of # 17,604 that she claimed . her grandfather tommy docherty was manager of manchester united .\nrichie benaud has passed away at the age of 84 . he was diagnosed with skin cancer in 2012 . benaud was a cricketing legend who captained australia during the 1950 's . he spoke with an unrivalled blend of insight , authority and wit . sportsmail recalls 10 of his finest moments from his broadcasting career .\nkyle walker picked up an injury against burnley earlier this month . the tottenham defender was feared to have broken his foot . scans showed the england international had not broken his right foot . but walker faces another month out of action with the injury . the defender could be fit for the last day of the season against everton .\nthere are plenty of beautiful spring destinations around the globe . take in the sights of washington 's cherry blossom trees and the smithsonian . enjoy the breathtaking blooms of belgium 's hallerbos forest and the belgian bluebells . take a stroll through the keukenhof gardens in lisse , the netherlands .\npippa middleton and nico jackson enjoyed romantic supper at margaux . pair were seen kissing as they walked down the street . miss middleton , 31 , wore tailored cream blazer and denim jeans . mr jackson , 36 , was seen giving her famous derrière a pat .\nkentucky lost 71-64 to wisconsin in saturday night 's ncaa semi-final game . the wildcats were kicked out of the tournament after being the only undefeated team in the history of college basketball . the badgers will now face off against duke in monday 's final - the school 's first final since 1941 . a crowd of more than a thousand university of kentucky fans gathered near the school 's lexington campus saturday night to vent the loss . police in riot gear arrested 31 people on charges of public intoxication and disorderly conduct .\nthe pair were caught on camera at langham creek high school , in houston on tuesday . the mother , who has not been identified , was reportedly angry with the girl because she had allegedly been bullying her daughter . the video , which was posted online , but has now been taken down , shows the mother - wearing jeans and black top - attacking the student along with another girl - presumably her daughter .\nfan can fly from glasgow to london on private jet with al pacino . package includes three nights in a five-star hotel and ticket to show . package is part of a three-city speaking tour in uk and ireland . event travel declined to say whether anyone has paid for a spot on the private jet .\nlouis jordan , 37 , went missing on january 23 after sailing out to do some fishing in conway , south carolina . he was found by a german ship on thursday 200 miles off the north carolina coast . he survived by drinking rain water and eating raw fish and flour fried in oil . he said he did n't know if he 'd ever return to sea and had dreamed of eating barbecue and organic ice cream . he has been released from hospital and is back with his parents .\ngiorgio chiellini committed a deliberate handball in the first minute of juve 's champions league quarter-final second-leg against monaco . the italy international was shown a yellow card for his antics . juventus won the tie on aggregate after a 0-0 draw at the stade louis ii .\ntop seed kei nishikori beat teymuraz gabashvili 6-3 6-4 on tuesday . the japanese star is defending his barcelona open title . fernando verdasco lost to russian qualifier andrey rublev . rafael nadal will play nicolas almagro in the second round .\nbob schieffer , 78 , announced his retirement from cbs news on tuesday at a journalism school named for him . ` it 's been a great adventure , ' schieffer said at the college . ` you know , i 'm one of the luckiest people in the world because as a little boy , as a young reporter , i always wanted to be a journalist , ' he said . schieffe joined cbs news in 1969 and has been the network 's chief washington correspondent since 1992 . he began at the political affairs show ` face the nation ' in 1991 , asking direct questions to politicians in a texas twang .\ncatherine grove , 28 , disappeared from fayetteville , arkansas , in july 2013 , only to show up at the church of wells in wells , texas . her parents said they believed she had been brainwashed by the church . grove returned to the church earlier this month , but then left again six days later . she has now announced in a video that she is set to marry a church elder . the church of well has been accused of sexual abuse , kidnapping and human trafficking , but has strongly denied any wrongdoing .\nblue bell ice cream announced friday that it has suspended operations at an oklahoma production facility that officials had previously connected to a foodborne illness linked to the deaths of three people . last month , the company and health officials said a 3-ounce cup of ice cream contaminated with listeriosis was traced to a plant in broken arrow , oklahoma . ten products recalled earlier in march were from a production line at a plant the company 's headquarters in brenham , texas .\njenson button believes mclaren have their rivals in their sights ahead of chinese grand prix . mclaren and new power-unit supplier honda made significant progress in malaysia . button and fernando alonso retired during the race at the sepang circuit . the british driver believes the team are now ` moving in the right direction '\ntraveling the world can cost a lot of money , but there are ways to do it for free . house-sitting is one of the easiest ways to trim costs on a trip abroad . cruise ship workers can see the world , but should be prepared for long periods at sea and long work hours . volunteers can travel and learn while helping others .\na woman in louisville , kentucky , was forced to give birth to her son on the interstate 65 north on thursday . the roads were closed to allow president obama 's motorcade to travel from the airport to downtown louisville . a nurse who was also stuck in traffic helped the mother through the delivery . the mother and her baby boy were taken to hospital and both are in good health .\nnovak djokovic beat andy murray 7-6 4-6 6-0 in the miami open final . the serb claimed his fifth miami open title with a straight sets win over the scot . murray has lost ten out of eleven matches against the world no 1 .\nmanchester city have lost four of their last 15 matches . vincent kompany injured himself in the manchester derby . manuel pellegrini says he is not concerned by mounting pressure . pep guardiola and jurgen klopp have been linked with city . city travel to west ham united on sunday .\nian joll , squadron leader , crashed-landed his plane in holland in 1940 . ten minutes later his mother received a telegram saying he was missing presumed dead . but he had survived the crash and trekked miles along a beach to reach england . he dropped in on his parents to say hello before heading back to base . sq ldr joll 's medals are now being sold at auction and his background revealed .\nemmanuel adebayor 's last start for tottenham came against aston villa in november . the 31-year-old has scored just two goals in the premier league this season . he has been linked with a move to real madrid or chelsea . adebyor 's contract expires in june 2016 and he is on the club 's wage bill .\ntennis star andy murray will marry kim sears in dunblane on saturday . visitscotland survey found that scotland is the most popular wedding destination in the uk . a quarter of all marriages in scotland involved couples from outside of the country . the country 's wedding tourism industry brought in # 80 million last year alone .\nnorth korean leader kim jong un is continuing to rule with an iron fist , a lawmaker says . he has ordered the execution of about 15 senior officials so far this year , he says . the lawmaker says he was given the information by the south korean national intelligence service . cnn can not independently confirm the executions .\nkenne worthen , 27 , allegedly started flirting with the sixth grader at longview elementary school in phoenix last august and the relationship turned sexual in january . he allegedly kept in contact with the girl on an ipod app , google hangouts , where she labeled his profile with a fake name , ` jesse smith ' he allegedly told her he was worried she would tell his wife or the police . he ` asked her mother if she could stay behind after school and had sexual contact with her on april 10 ' the girl 's father said he was ` overwhelmed ' with anger at the teacher and praised his daughter 's fellow students for telling staff . worten has been\nferme de montagne is located in the french resort of les gets in the portes du soleil area . staff spend a mandatory week working and gaining experience at the dorchester in mayfair . hotel proprietors suzanne dixon-hudson and her architect husband henry are in london ` on business '\nbrandy savelle and tony gervasi have had caesar as a pet for two years . he wandered off from their home in ispheming , michigan , at the weekend . the family followed his tracks and found blood in the grass . a day later a state conservation officer showed up at the couple 's door . he said he shot the pig because he felt threatened and believed it was feral . the state is defending the officer , saying he was just doing his job .\nduchess of cambridge has been hailed as a feminist icon . actress patsy kensit said she was her ` regal inspiration ' the duchess has been criticised for her demure dress sense . margaret atwood said she is an ` uneventful dresser ' and ` drab '\npeachtree city police chief william mccollom dialed 911 to report accidentally shooting his ex-wife margaret in their suburban atlanta home early new year 's day . margaret mccollum was left paralyzed below the waist . investigators found no evidence that mccollom was trying to hurt margaret . he was indicted on wednesday on a misdemeanor reckless-conduct charge .\nsmitra srivastava , 37 , currently holds the record for having the longest hair in india . her hair now stands at 7ft -lrb- 2.1 m -rrb- , more than three inches longer than the average basketball player . she said she plans to attempt a record for the guinness book of records .\nchelsea beat manchester united 1-0 on saturday night . didier drogba hosted a charity ball at london 's swanky dorchester hotel . the ivorian striker 's foundation has raised # 400,000 for his homeland . the money will be used to open a medical clinic in abidjan .\n50,000 britons have signed up to a scheme offering discount starter homes . david cameron reiterates pledge to offer properties to 200,000 young first-time buyers . project is part of a dramatic extension of the help to buy scheme . it doubles the number of new starter homes in england from 100,000 to 200 , .000 .\nwhite student , who has not been identified , wrote on whiteboard . she listed ` reasons why usc wifi blows ' on board at university in columbia . reasons included ` incompetent ' professors , ` ratchets ' and parking . but at the top of the list was the word ` n ***** s ' , captured by a fellow student . she was identified by other students and condemned for the slur . now , university of south carolina president harris pastides has suspended her .\nalan pardew called manuel pellegrini a ` f *** ing old c ** t ' during premier league encounter between newcastle and man city in january 2014 . pardews was warned by the fa and wrote to pellegrini to apologise . crystal palace boss has taken steps to change his behaviour .\ntoulon beat wasps 32-18 in the european rugby champions cup quarter-final . toulon will play leinster in the last four on april 19 . t francois laporte 's side are bidding for a third consecutive european title . carl hayman admits toul on ` have a lot of work to do ' to win .\ntripadvisor names providenciales as the world 's top island . the turks and caicos island moves up from no. 2 to no. 1 . ambergris caye drops out of the top 10 for the first time in two years .\nraheem sterling has put off contract talks with liverpool until the summer . the 20-year-old has rejected an offer of # 100,000-a-week to stay at the club . harry redknapp says sterling should focus on his football rather than his contract . the former qpr boss insists sterling is not ready to move to real madrid .\nstephanie flanders hosted miliband 's first dinner party in march 2004 . she was then economics editor of bbc2 's newsnight . miliband was chief economics adviser to the chancellor , gordon brown . he met his future wife justine thornton at the dinner party . she said she was ` furious ' when she found out he was ` secretly ' dating her .\nchris ordered some computer equipment be delivered from griffith university at nathan in brisbane 's south to a parcel locker at sunnybank . the delivery was sent almost 2000kms away to chullora in new south wales , after it was picked up in nathan , queensland . the package finally made it to sunnybank on thursday , april 23 , at 10:02 am . chris said australia post had not contacted him to apologise for the delay .\nmanuel pellegrini is favourite to be sacked as manchester city manager . but gary neville says he should stay at the club to turn things around . the former manchester united defender has been critical of city 's form . city are currently fourth in the premier league table .\ntim sherwood and chris ramsey forged a close friendship at tottenham . the pair sat together in the staff canteen during training sessions . sherwood is now at aston villa and ramsey is at qpr . the trio are credited with helping some of the brightest young talents at spurs .\nsunderland are in the premier league relegation battle . jermain defoe posted a photo on instagram showing him playing basketball . the black cats are without a game this weekend . sunderland are only three points above the drop zone . burnley are currently top of the premier league .\nnew law would make it illegal for welfare recipients to buy alcohol , tobacco and pornography with their debit cards . psychics , movie theatres , massage parlors and theme parks will also be banned from receiving state aid . republican gov. sam brownback is expected to sign the bill , which would also require recipients to hold down jobs or enroll in job training programs .\ned miliband has dismissed claims he would be held to ransom by the snp as pm . insists snp mps would not be able to dictate policy even if he fails to win majority . comes after nicola sturgeon said labour could only govern with snp support . she demanded an end to government cuts and big hikes in minimum wage . but mr miliband rejected claims the snp would be ` calling the shots ' if labour did not have a majority .\nbasketball fan malenda meacham , 45 , has become a celebrity in her own right for her enthusiastic air bongo-playing skills . it 's been a longtime tradition for the conga to play during memphis grizzlies games with cartoon bongos appearing on the giant court tv screen .\nthe bahrain grand prix was the first f1 grand prix in the middle east . it was held in 2004 but was cancelled in 2011 due to political protests . sportsmail looks back at some of the best images from the race . the first race was won by michael schumacher in 2004 .\nodin lloyd was killed in june 2013 . his mother , sister , uncle and cousin speak at his funeral . aaron hernandez was convicted of first degree murder and sentenced to life in prison . lloyd played football for the boston bandits . he was 27-years-old .\nhow to be a young billionaire follows three young british adults . robyn exton , josh buckley and julia onken . roby exton is the founder of dattch a lesbian dating app . josh buckley made his first million at 18 with games app minomonsters . julia onkin is a child prodigy who sold a business for six figure sum .\nprime minister said he was a west ham fan , despite supporting aston villa . cameron made the gaffe during a speech on ethnic minorities in south london . the tory leader has since apologised , blaming a bout of ` brain fade ' cameron attended his first aston villa game as a 13-year-old .\nlabour deputy leader harriet harman and tory chancellor george osborne both went to the same private school . ms harman has repeatedly accused the tories of being ` completely out of touch ' but mr osborne said that as they both went . to st paul 's school in london , ` the posh boy attack always sounds a bit thin ' on live television .\nkenyan authorities say al-shabaab militant mohamed mohamud once taught at a religious school in garissa . mohamu is suspected of being the `` mastermind '' behind the deadly attack on a nearby university . the principal of the school says mohamould was a quiet man who was `` normal ''\ndavid cameron and boris johnson visited advantage children 's day nursery . they were supposed to be highlighting tory plans to double free childcare . but the pair were left stumped by a jigsaw teaching toddlers about the seasons . after being put right by a four-year-old , the pair had more fun finger painting .\nsan francisco-based tech company has 2,000 employees in indiana . salesforce ceo marc benioff is now trying to relocate employees who are ` uncomfortable ' with the new religious freedom restoration act . the law was brought in by indiana governor mike pence but has sparked boycotts of the state . critics say it would allow legalized discrimination against lesbians and gays .\nseven minute video shows isis thugs destroying ancient relics in iraq 's unesco world heritage city of hatra . militants are filmed smashing shrines and statues in the 2,000-year old city while firing ak-47 rifles at relics . the fanatics claim ancient relics are ` false idols ' which promote idolatry that violates their fundamentalist interpretation of islamic law .\ngay activist and writer larry kramer , 79 , says he believes what 's written in his history book is true though he is selling it as fiction to avoid legal troubles . in volume one of his two part book ` the american people , ' kramer says that abraham lincoln was gay and his killer john wilkes booth was actually lincoln 's spurned gay lover . kramer says it took him 40 years to write his 800 page book that spans from pre-historic america all the way to the present day .\nmemphis-based national guard described some protesters as ` enemy forces ' during protests in ferguson , missouri , last year . officers were told by superiors to change references to ` enemy ' to ` criminal elements ' instead . guardsmen were first activated in august after riots and looting broke out amid peaceful demonstrations over police brutality . guardsman were seen rolling through the streets of the suburb in tanks wearing combat gear and carrying assault rifles .\nsuperyacht owners are keeping sales and charter brokerages busy . they are requesting everything from food to entertainment to guests . one client had a week 's worth of fruit and vegetables flown from france . another wanted to have a party on a deserted island for 80 friends and family . some owners have built classrooms on board their sailing voyages .\nsenior constable neale mcshane is set to retire from his job in birdsville , in far south-west queensland . the 59-year-old has spent 40 years as an officer in three different states , but nothing compares to patrolling birsdville . temperatures in the region can reach over 50 degrees , giving rise to a number of desert rescues that mcshanes must execute every year .\ngavin tobeck of lacey , washington suffered from a broken cheekbone , jaw and nose bridge , and needed sections of a rib to repair his eye sockets after the attack by their dog smash on april 1 . he also lost five baby teeth and three permanent tooth buds . the boy was hospitalized for six days but was released late on tuesday . the family had adopted the pit bull from a neighbor on march 16 and said there were no previous signs of aggression from the dog . smash is scheduled to be euthanized by thurston county animal service on saturday at the tobecks ' request .\ndiego simeone and carlo ancelotti were both runners-up at the ballon d'or . ancelottis reportedly told sime one that life in madrid would be easier if atletico were n't around . real madrid host atletico madrid in the la liga derby on sunday .\ncharlie sumner ran on to the pitch during reading 's fa cup quarter-final . the 20-year-old did four front flips and somersaults on the pitch . he was tackled by stewards and footage of his antics went viral . sumner is now facing a potential three-year ban for the stunt . the order would stop him going to all of reading 's future home and away matches .\namanda goff is a former journalist who works as an escort . she revealed her identity as samantha x on national television last year . ms goff said she received ' a torrent of abuse ' from other mothers . she said she felt physically sick in the weeks following her revelation . the mother-of-two said she is not ashamed of her decision to go public . she has written a book about her experience , hooked : secrets of a high-class escort .\nthe win means bristol city are now seven points behind preston . the robins can still clinch promotion with a win at bradford on tuesday . swindon beat peterborough 3-0 on tuesday night to stay in the championship . aaron wilbraham scored the only goal of the game in the 63rd minute . jermaine beckford scored a consolation for the hosts .\nphilippe coutinho has starred for liverpool since joining in 2013 . the brazil playmaker was sold to the reds for just # 8.5 m. coutinho was underused by inter milan and left the club in 2013 . the midfielder has been nominated for the pfa player of the year award .\ndilkhayot kasimov is the fourth man indicted in connection with a plot to join isis . three others were previously arrested and charged with providing support to a foreign terrorist organization . authorities say the men planned to travel to turkey to join the terror group . they have pleaded not guilty .\nsen. ted cruz , r-texas , is campaigning in iowa for the first time as a presidential candidate . cruz is hoping to attract the support of iowa 's evangelical base . cruz has built a brand as a stalwart conservative willing to buck gop leadership on fiscal issues .\nscientists discovered the new species of monkey in remote tibet , china . the white-cheeked macaque has a rounded penis compared to other species . it earned its name due to the pale whiskers on its chin and face . videos have also revealed that it has a distinctive alarm call .\nruth davison is director of policy and external affairs at national housing federation . she is leading critic of tory plans to extend ` right to buy ' scheme to housing association tenants . but she is a labour party member in islington , london , and owns # 1million house .\nlondon-born street artist plastic jesus erected seven ` no kardashian parking anytime ' signs around los angeles this week . the signs are currently on display in front of the kim , khloe and kourtney kardashian-owned clothing store dash . he says the idea came to him while driving down melrose avenue a few weeks ago , when a kardashian was spotted shopping on the street .\ntuti yusupova died earlier this week at the age of 135 . friends of the pensioner claim she was born on july 1 , 1880 . officials in uzbekistan have released her passport proving her age . they want the guinness book of records to document her age as well .\nambra battilana , 22 , told police harvey weinstein asked her for a kiss and then groped her during a ` business meeting ' at his tribeca office in manhattan on friday night . the next day she snapped a picture of her matinee ticket to a preview showing of finding neverland , which weinstein is producing , at the lunt-fontanne theater and posted it on her instagram . a movie industry source said weinstein gave battilanna the $ 227 sixth-row-center-seat ticket and told her he would be backstage during the show .\npele was speaking at the launch of 10ten talent 's art , life , football exhibition . jack wilshere and glenn hoddle are clients of the art agency . the arsenal midfielder was given the ` honour to interview the legendary pele ' pele has acknowledged that last year 's world cup was a ` disaster ' for brazil .\njohn terry was at the heart of chelsea 's solid defensive display against arsenal . the blues drew 0-0 with the gunners at the emirates on sunday . jose mourinho praised his captain 's performance , saying it was his best under him . jamie carragher said terry is the best defender to play in the premier league era .\nauschwitz-birkenau state museum has had more than 250,000 visitors this year . visitors are now advised to book ahead to avoid congestion inside the former nazi concentration camp . january saw the 70th anniversary of the camp 's liberation , a possible reason for the surge in interest .\nstephanie scott was allegedly murdered on easter sunday in nsw . the 26-year-old was due to be married to her fiance aaron leeson woolley on saturday . her hometown canowindra paid tribute to the much-loved teacher with a hot-air balloon display . hundreds gathered on sunday morning to mark the tragic death of the bride-to-be . more than a dozen hot - air balloons took to the skies as hundreds of yellow helium balloons were released in the town .\nann rule 's two sons accused of defrauding her of $ 125,000 . andrew rule , 54 , allegedly used the money to go to gambling and strip clubs . michael rule , 51 , allegedly forged his mother 's signature on her checks . the pair receive a monthly allowance of $ 25,000 combined with their two sisters . ann rule is known for many of her crime books including the stranger beside me based on serial killer ted bundy .\nlast year , staff at eight schools refused to teach pupils who threw chairs , brought fireworks in and threatened to slit other children 's throats . a deputy headteacher fell and fractured her arm while trying to restrain a six-year-old boy with autism . nasuwt union said indiscipline is a ` significant problem ' , with teachers sworn at , kicked and punched .\npakistani aid sent to nepal as part of relief package for earthquake survivors . nepalese doctors say they were shocked to find packets of ` beef masala ' the majority-hindu country treats cows as sacred and there is a blanket ban on slaughtering the animal .\ncambridge-educated sean heslop has been suspended from his job . the 47-year-old was questioned by police over allegations of abuse of trust . he has been accused of having an affair with a former pupil . the woman , now 18 , became pregnant at the end of last year . she has posted a picture of a scan of her unborn child on social media . mr heslops split from his wife celine last year after nine years of marriage .\nroy hodgson 's england squad had originally been set to leave northern italy on tuesday night but their flight home was delayed . the plane landed in manchester to allow the northern-based players and staff to disembark . england 's 1-1 draw with italy was their first in euro 2016 qualifying . andros townsend was england 's hero on tuesday with a late equaliser . ryan mason , harry kane and kyle walker also touched down at luton airport on wednesday afternoon .\nthe cps has dropped nine cases against journalists for paying public officials . director of public prosecutions alison saunders forced into humiliating climbdown . decision sparked an ugly blame game as architects of # 20million ` witch hunt ' turned against each other . prosecutors and police pointed finger at the leveson inquiry and mps .\ncooper the labrador and his pal daisy visited a mcdonald 's drive-thru for an ice cream with katie gallegos from clackamas county , oregon , on monday . while daisy takes a few ladylike licks , cooper gobbles the rest of the cone up in one bite . to date the video of cooper 's ice cream outing has been watched more than seven million times .\ndavid de gea has been heavily linked with a move to real madrid . the spanish keeper has impressed for louis van gaal 's side this season . de gea is a long-term replacement for iker casillas at old trafford . phil neville believes keeping de ge a at the club would be the biggest signing .\ndownton abbey star violet , countess of grantham may be coming back in new american show the gilded age . made by the us network nbc , the gillion age will be set among the high society families of new york in the late 19th century . lord fellowes said that plans for the series had yet to be finalised .\nbecky james has been sidelined for a whole year with a back injury . the british cyclist is desperate to get back on to the track . james has supported boyfriend george north during wales ' six nations campaign . the 26-year-old is hoping to return to regular training in the coming weeks .\nmaría jose carrascosa was released from a new jersey jail on friday after spending nearly 9 years behind bars for refusing to return her daughter to the united states . carrasc rosa , a 49-year-old native of spain , was released after her daughter and estranged husband wrote letters to the court urging a judge to set her free . carrasosa moved her daughter , then 5 , to spain when the girl 's father , peter innes , was granted custody of the child . carrasa was convicted in 2009 of willful interference with child custody , which resulted in the prison sentence .\nsan antonio spurs beat los angeles clippers 100-73 in game 3 on friday . kawhi leonard scored 32 points as the spurs take 2-1 lead in first-round series . rockets move to within one win of a place in next round with 130-128 win in dallas . washington wizards beat toronto raptors 106-99 to go 3-0 up in first round series .\njordan henderson has signed a new five-year contract with liverpool . the midfielder could be handed the captain 's armband when steven gerrard leaves at the end of the season . henderson was nearly sold to fulham in 2012 but rejected the offer . the 24-year-old is convinced he can win silverware at anfield .\nstars told to stop taking selfies at this year 's cannes film festival . director thierry fremaux said they are ` ridiculous and grotesque ' and slow event down . he admitted that he could not ban the pictures altogether , but urged celebrities to resist the temptation .\nvictoria beckham and rita ora love navy and black . the duchess of cambridge is a fan of the colour combination . femail has pulled together the simple but effective styling tips you can employ . the a-listers have tried-and-tested techniques when it comes to getting dressed . they all follow simple styling hacks to flatter their figure .\nreal madrid drew 0-0 with atletico madrid in the champions league . mario mandzukic appeared to be punched and bitten by daniel carvajal . the croatian striker was also left with a cut above his eye . paul scholes has criticised mandzuks for over reacting .\nfive-day old hippo was thrown into the air after straying into firing line of adult male , which was tussling with rival . the calf 's mother watched in horror as the hippo is dragged along the surface of water in isimangaliso wetland park , in eastern south africa .\ntwo step-children of kim howe ` have hired lawyers to look into lawsuit ' they are said to be considering suing former olympic athlete for wrongful death . mrs howe , 69 , died in crash with reality tv star bruce jenner in february . she was driving a white lexus , which jenner rear-ended on pacific coast highway . close friends say she had ` virtually no relationship ' with her step-kids .\nbbc to air two-hour documentary following canalboat along kennet and avon canal . all aboard ! the canal trip will air on may 5 as part of bbc four goes slow series . all footage is shot from a single camera on the front of the boat .\nhillary clinton 's presidential campaign will center on boosting economic security for the middle class . the former senator and secretary of state will launch her campaign on sunday with an online video . president barack obama all but endorsed her saying ' i think she would be an excellent president ' clinton also intends to sell herself as being able to work with congress , businesses and world leaders .\nmustafa kamal has resigned from his position as icc president . kamal accused india of influencing the outcome of a world cup match . the bangladeshi criticised the umpires in the quarter-final . kamal said he spoke as a fan , and not the president .\nstarting wages for full - and part-time employees at company-owned restaurants will increase to a dollar over the minimum wage . the increase will be instituted starting july 1 . mcdonald 's usa owns about 10 percent of the more than 14,300 mcdonald 's restaurants across the country .\nchelsea manager jose mourinho played a front three against arsenal . the blues boss started without a striker in the first half . oscar was substituted at half-time after being taken to hospital with concussion . eden hazard , willian and oscar have fantasy about their play . but mourinho wants function , and the master simply wants results .\nreality star ` mama ' june shannon and her estranged husband mike ` sugar bear ' thompson have filed a missing persons report for billy thompson . billy thompson was last seen on saturday at sugar bear 's home in mcintyre , georgia , where mama june 's daughter jessica was preparing to go to prom . since then billy has n't been seen and he is n't returning any phone calls or texts . the family have filed the report with the local police department and are especially worried because billy has been struggling to find work and recently suffered a difficult split from the mother of his children .\naustralian comedian dave hughes has refused to apologise for calling radio broadcaster derryn hinch a ` w ** ker ' on national television . hughes and hinch appeared on monday night 's q&a panel discussing depression and alcohol . the episode came after a video surfaced of tony abbott skolling a beer in a sydney pub on the weekend .\nitalian model ambra battilana , 22 , told police weinstein groped her during a ` business meeting ' at his tribeca film center office in manhattan on march 27 . she claimed the hollywood producer asked if her breasts were real before touching them and putting his hand up her skirt . manhattan district attorney 's office investigated the italian model 's claim , but has decided not to prosecute weinstein .\nengland and wales cricket board have fired paul downton . downt on was sacked after england 's humiliating world cup showing . michael vaughan has been tipped to replace downton as director of england cricket . andrew strauss is another possible candidate for the new role . d downton was sacked following england 's ashes whitewash in 2013 .\ntripadvisor 's most active user has written more than 66,000 reviews in five years . american expat brad reynolds critiques every hotel , restaurant and landmark he visits on holiday and in his current home of hong kong . the 38-year-old has posted reviews from 394 cities and 46 countries , with a map on his tripadvisor profile claiming he has travelled more than 600,000 miles .\noriol romeu and martin keown go head-to-head in sportsmail 's match zone . chelsea midfielder romeu is currently on loan at bundesliga side stuttgart . the pair predict the scores for the weekend 's premier league and fa cup matches .\nbeatrice tollman made her most recent donation of # 20,000 to the tories earlier this month . but she has previously been charged with conspiracy to evade millions of dollars in tax . on the same day in 2008 her husband stanley tollman pleaded guilty to tax evasion .\nolympic champion alistair brownlee tripped during run leg of race . brownlee recovered to win world triathlon series in cape town . 27-year-old missed first three events of season due to ankle injury . vicky holland won women 's race in capetown on saturday .\na new type of virus has been found that infects bacteria living deep underground . the virus actively causes one of its own genes to mutate . this allows it to develop new ways of coping with the environment . scientists found similar viruses in bacteria living on the ocean floor . the findings suggest life could be far more diverse than previously thought . it is thought there may even be more biomass living inside the earth than on its surface .\nemergency services were called to the parmelia hotel in perth at about 1am . a 22-year-old man jumped from the 10th floor and landed in the shallow end of the pool on the second level . guests heard a disturbance between a man and a woman , who were visiting the city from a us naval ship . police say the pair were both heavily intoxicated when an argument escalated . the man has been taken to royal perth hospital with non-life threatening injuries .\nhotel industry insider turned author jacob tomsky shares his tales from working in two top hotels in new orleans and new york city . he reveals the most common items people take from hotels , including toiletries and towels . despite common misconceptions , it is possible to pocket a plush robe - without incurring any charges .\npremier league and fa cup semi-finals take place this weekend . manchester city face west ham united at the etihad on saturday . chelsea host manchester united in the fa cup final on sunday . arsenal face reading in the final of the fa cups at the emirates stadium .\nxiao gao , 11 , from fujian province , has not spoken a word in five days . he drank the water after a classmate who ` does not get on with ' gave him it . the girl said she only added perfume and chalk dust to the water . she has now been excluded from the school . medical experts are at a loss to explain his sudden inability to talk .\nhakeem kuta , 17 , was on life support and passed away saturday morning after succumbing injuries from the fall that happened on thursday night . police were responding to complaints of a group of teens smoking marijuana and loitering in the lobby of the building in mott haven , bronx . kuta and five others ran when officers arrived but were pinned in by a dividing wall . he jumped over a three-foot high wall before falling six stories from the roof .\njuventus beat monaco 1-0 in champions league quarter-final first leg on tuesday night . massimiliano allegri 's side had an average age of 30years 64 days . gianluigi buffon , giorgio chiellini , patrice evra , andrea pirlo and carlos tevez all started . inter milan fielded the oldest ever starting line-up in champions cup back in 2012 .\nadele and steven worgan 's pekingese dogs marley and mitzy disappeared from their front garden in doncaster , south yorkshire . neighbours believe they have caught the alleged thief on cctv . the couple are now offering a # 1,000 reward for their safe return .\nadam deacon allegedly sent abusive tweets to kidulthood writer noel clarke 's account . the 32-year-old babylon actor also sent death threat to film 's director , court told . he was sectioned under mental health act after being charged with possession of machete . deacon , of bethnal green , east london , denies harassment without violence .\nhip hop mogul lucious lyon from the hit show empire lives in the chicago area . the 20,000 square foot mansion is listed at $ 13 million and has been on the market since 2013 . it took five years to build the house , which sits by two lakes in eight acres of manicured gardens .\nloud all-night parties busted stripper training school hiding inside pharaoh 's palace , a $ 2million mansion next door to an exclusive gated community in tampa . the egyptian-themed mansion promises a ` perfect private location ' on seven secluded acres on the gulf coast on its website . an august 2014 adult-themed party dubbed ` midsummer night wet dream ' got the mansion its first noise complaint .\nthe fireball was captured on camera on sunday by the united kingdom meteor observing network -lrb- ukmon -rrb- in portadown , county armagh . footage shows it glowing brightly as it races northwards towards the irish sea . ukmon said pieces from the meteorite would have crashed to earth and could potentially be worth thousands of pounds .\nrobert gentile , 78 , appeared in federal court in hartford , connecticut , on friday and was charged with selling a firearm to an undercover agent . his attorney , ryan mcguigan , said that though his client was arrested on a gun charge , he believes the arrest was a ruse to pressure gentile to speak about the 1990 art heist . the fbi has been questioning him for years because they . think he knows the whereabouts of the gardner paintings , mcguigan said . the gardner heist took place on the rainy night of march 18 , . 1990 , when two men posing as police officers arrived at the museum 's front door . the next morning the guards were found duct-taped to chairs in\nfloyd mayweather snr has refused to respond to criticism from manny pacquiao 's trainer freddie roach . roach has blasted mayweather snl calling him a ` terrible cornerman ' ahead of the may 2 mega-fight . mayweather snn insists that roach ` can say what he wants ' ahead of the fight .\nnew jab is being given to people living in the west african countries . scientists hope that immunisation is possible with just one injection . based on an animal virus and a portion of the protein covering the ebola virus . when administered , it induces an immune response against the virus .\nprotein world diet supplements is facing backlash over its billboard campaign . ad features a toned model posing with the slogan ` are you beach body ready ? ' campaigners launched scathing attack on the protein supplement company . more than 50,000 people sign a petition to have them removed .\nexperts were able to take control of a so-called telerobot during surgery . they exploited a simple programming trick to change the speed of the robot and change its orientation . this made it impossible for the machines to carry out a procedure as directed . researchers at the university of washington studied the telerobot raven ii . they found that robots designed for surgery could be ` easily ' hacked in to . this is because they are operated over public networks . this allowed the researchers to access them and stop them working .\nrussia cancels trip to moscow for kim jong un 's first official international trip . kim may not be feeling completely secure in his position , says frida ghitis . north korea has been mostly out of the news in recent months , she says . ghitis : if kim is feeling insecure at home , he may be trying to boost internal support .\nchelsea midfielder cesc fabregas will wear a special protective face mask for chelsea after breaking his nose last weekend . the mask , branded with fabreg as 's initial and squad number ` c4 ' , was made by the ortholabsport . the specialist produced masks for fernando torres , petr cech and demba ba previously . fabrega could be ready to play against queens park rangers on sunday .\nvictim n , now 21 , was just 11 when she was abused by the paedophile singer . she was lured to his beach house in vung tau , vietnam , by his lover ` b ' he raped her and her friend 'd ' who was ` sold ' to him by her aunt . n now suffers from depression and nightmares about the abuse .\nsteven sloan , michael niccum and eugene dight were on an aluminium rowboat when the encounter occurred off the west coast of anderson island , washington . the group believe that the sound of the rope being pulled along the side of the boat is what attracted the orcas . the video maker captures a killer whale swimming underneath the aluminium boat in washington .\nman rescues five horses from flood water in nsw hunter region . steve spowart paddled out on his surfboard to save the horses . the horses ' owner sonia sharrock helped him lead the animals to safety . three people died and four houses were washed away in dungog . the town received the most rainfall it had in 100 years on tuesday .\nsteps to durdle door beach on dorset 's jurassic coast washed away in 2012 . landowner james weld has now paid # 15,000 to rebuild the steps . he claims natural england ` shirked ' its duty to reinstate the steps for three years .\nnavinder singh sarao , 36 , accused of making # 26million from parents ' home . his family 's semi-detached house in suburban west london is closer to an internet server used by one of the major financial exchanges . his thousands of high-frequency trades could be processed faster than those from dealers in central london . sarao was dubbed the ` hound of hounslow ' after it emerged he lived at home with his parents . he allegedly made # 26.7 million in just four years of dealing from their home .\nformer corrections officer chad hurst was on a flight from denver to salt lake city on sunday when he spoke to a young man about his foul language . the young man then sucker punched hurst in the stomach . hurst then calmly proceeded to grab the young man by the shoulder , bring him to the ground , put his hands behind his back and get on top of him until police arrived . the man was charged with assault and public intoxication .\nthis week 's installment of `` a catholic reads the bible '' covers the book of genesis , chapters 1-11 . the author finds the first two chapters have everything to do with the earth and man 's place in it . she also learns that eve is the first person named in the bible .\ndavid cameron is set to announce an extra 600,000 free childcare spaces . the new 30 hours a week entitlement will cost just under # 350 million . mr cameron will say the conservative party wants to reward hard work . the prime minister will also announce a reduction in tax relief on pension contributions for people earning more than # 150,000 .\nthe general in charge of the u.s. army recruiting command has warned that america 's growing obesity epidemic ` is becoming a national security issue ' major general allen batschelet says that 10 percent of young men and women who sign up to join the army are currently refused because they are too heavy . batschelet warns that current trends mean as many as half of young americans will be so grossly overweight by the end of the decade that the military will be unable to recruit enough qualified soldiers . of the 195,000 young men . and women that signed up to fight for our country in 2014 , only 72,000 qualified .\npope francis urged the international community not to ` look the other way ' he spoke to tourists and catholic pilgrims in st peter 's square . the pope , 78 , has been increasingly vocal about the fate of christians . he has called for ` tangible help ' from communities all over the world .\nconrad clitheroe , 54 , gary cooper , 45 , and neil munro , 45 were arrested in february . they were stopped by police for writing down aircraft registration numbers . despite being told they would not be detained , the three were put in prison . today , the supreme court in abu dhabi dropped charges of espionage . families of the three men confirmed they would finally be able to return home .\ndavid cameron will today warn english voters snp 's new powers could impact their lives . tory government would create new principle to ensure decisions by holyrood do not have an ` unforeseen detrimental effect ' for people south of the border . mr cameron will call the idea the ` carlisle principle '\ngareth blanks , 31 , was attacked as he walked home from the shops in truro , cornwall . he was approached by a group of three men and one woman who taunted him . one of the males punched and kicked mr blanks 20 times in the head and body . he is now recovering at home but his family say it will take him a long time to recover .\ntavon watson was doing 100mph when he slammed his lamborghini gallardo into a guardrail , killing 35-year-old race track employee gary terry . investigators say that evidence suggests terry tried to grab the wheel and ` counter steer ' the out-of-control vehicle in the moments before the deadly wreck . watson , 24 , was hospitalized with serious injuries but has since been discharged . the day out at the track was a present from watson 's wife and he posted a picture of himself next to a red ferrari on the tarmac just hours before the fatal collision .\npaul bettany 's vision is finally revealed in a new poster . the actor will play the android in the `` avengers : age of ultron '' sequel . he joins a cast of other superheroes . the new `` daredevil '' video also shows off charlie cox 's suit .\nmarie surprenant , from atlanta , georgia , was eight-months-old when she was admitted to hospital with 14 fractures , numerous bruises and a spinal cord injury . she was abused by her biological mother and her boyfriend . she wrote a heartfelt letter to her social workers and detectives thanking them for investigating her case and placing her in a happy home .\nglenn murray has scored a goal on average every 91 minutes this season . harry kane and diego costa are locked on 19 goals . papiss cisse and olivier giroud rank fourth and fifth respectively . murray has four goals for crystal palace in 364 minutes this term . manchester city face murray 's palace on easter monday .\nquinn patrick was on a fishing trip with his dad at snow lake , indiana . the pair caught a bowfin , videoed lying lifeless on a concrete dock . crouching over the fish , quinn deliberates whether to put it back in the water . suddenly the bowfin propels itself from the ground and slaps the youngster straight in the face with its large tail .\nthe head of the drug enforcement administration , michele leonhart , is expected to resign soon , an obama administration official said tuesday . she has faced mounting pressure from congress , where some questioned her competence in the wake of a scathing government watchdog report detailing allegations that agents attended sex parties with prostitutes . lawmakers have been pushing for leonhart 's ouster since her disastrous appearance before the house oversight committee last week .\nkevin pietersen scored 170 for surrey against mccu oxford . former england star andrew flintoff fears pietersen is ` running out of time ' to resurrect his england career . pietersen has been surplus to requirements since being sacked 14 months ago . flintoff sees a bright future for ` probably the premier tournament ' in this country .\narsenal face aston villa in the fa cup final at wembley on may 30 . emirates airlines have signed a three-year deal to sponsor the competition . the deal will see the fa rebranded the fa cup as the emirates fa cup . the fa are also expected to announce a deal with budweiser . the previous agreement was worth # 9m annually .\njose aldo and conor mcgregor take centre stage at ufc fight night : mendes vs lamas in fairfax , virginia . no 1 ranked chad mendes and no 4 ranked ricardo lamas meet in the main event . the bout could potentially determine the next challenger to the featherweight title .\na photo editor for a baltimore newspaper says he was beaten by police at a protest over the death of freddie gray . j.m. giordano , who works at the city paper , says baltimore police ` swarmed over ' him and hit him repeatedly . a video posted to the newspaper 's website sunday shows at least two police officers in riot gear hitting and kicking giordanos . giordsano says he suffered minor injuries to his arm but that they will not stop him from continuing to photograph the gray protests .\n978 people rescued in mediterranean sea , italian coast guard says . most migrants recorded this year come from west africa , somalia and syria . at least 480 migrants have died crossing mediterranean since beginning of year , imo says . in first three months of 2015 , italy registered more than 10,000 migrants arriving .\nbill parker , 34 , thought a rock hit him in the face while mowing his lawn in gulfport , mississippi last sunday . a scan revealed it was a three-and-a-half-inch metal fence wire . dr timothy haffey , who removed the wire , said that it miraculously dodged all of parker 's important nerves and arteries . the metal wire was sent to a pathology lab and parker is taking antibiotics to prevent infection .\nkristen jarvis , 34 , has left the white house after seven years as michelle 's top aide . she 's moving on to become the ford foundation president darren walker 's chief of staff . jarvis says she mostly kept up with fitness-loving michelle , but drew the line at d.c. workout craze solidcore .\nroad trip from san francisco to los angeles takes three weeks . highlights include the iconic golden gate bridge and alcatraz . route 1 is a scenic route through some of california 's most beautiful scenery . the road coils up and down cliffs and crosses cavernous gorges .\njoss whedon is accused of stealing the idea for `` the cabin in the woods '' from his 2006 novel . the author of the novel is suing for copyright infringement and wants $ 10 million in damages . whedon produced and co-wrote the script for cabin with director drew goddard .\ntheodosia aresti , 71 , moved into new-build flat in london five years ago . but a blocked pipe unleashed a ` tsunami of sewage ' into her flat . the pensioner 's bath and toilet began overflowing with raw sewage . she phoned maintenance but they were unable to come and fix it . the sewage also soaked into her carpet and caused her wardrobe to collapse .\nronda rousey appeared with fast and furious 7 co-star the rock at wrestlemania 31 . she took down co-owner stephanie mcmahon and triple h. rousey wants to return to wwe but has a packed schedule . ufc champion is preparing for her next fight against bethe correia .\nsky sports want to show hearts v rangers championship clash 24 hours after the spl final on may 2 . the scottish game is engaged in a faustian pact . sky and bt sports pay # 16million a year for live coverage of scottish football . compared with the # 5billion paid to english clubs for premiership football , the sums are trifling .\na study by the niels bohr institute in copenhagen found that large amounts of ice were not just at the martian poles , but likely towards the equator . if all ice were to be spread across the surface of mars , the entire planet would be covered in more than 3.3 ft -lrb- one metre -rrb- this is because a thick layer of dust on mars covers the glaciers , so they appear as the surface . but radar measurements show that there are glaciers composed of frozen water underneath the dust . as the ice has not evaporated into space , the dust must be protecting it .\ned miliband made his first appearance on the campaign trail in over 72 hours . labour leader was out campaigning in bristol this morning - his first public appearance since saturday . he decided to take the weekend off to spend time with his family - but his political rivals wasted no opportunity to drum up support . david cameron , nick clegg , nigel farage and nicola sturgeon were prominent on the trail .\nfirst ever drawing of the beatles ' yellow submarine is set to fetch # 10,000 . the unique psychedelic cartoon depicts the eponymous submarine from 1968 film . rare celluloid painting was used as a master version from which artists created all other images of the wacky vessel .\nsam allardyce gave fourth official robert madley a piece of his mind during west ham 's 2-0 defeat to manchester city . the hammers boss was incensed that eliaquim mangala was not penalised for a foul against stewart downing . referee anthony taylor took no action as the ball ran out of play .\ndavid adam pate , 25 , stabbed ricky james 39 times in november 2013 . told his mother he enjoyed killing the black man and blamed james for it . tried to drag james 's body away from the scene but was too drunk . took a mugshot of himself with a split tongue and a 974 tattoo on his neck . sentenced to life in prison without the chance of parole on thursday .\nroman abramovich has bought tel aviv 's varsano hotel for # 17.1 m . the chelsea owner is expected to convert the 19th century building into his israeli home . the hotel complex is listed as a preserved building covering 1,500 square metres . abramovich is worth more than $ 9billion -lrb- # 6.1 bn -rrb- and has splashed out on a luxury israeli home .\nlos angeles-based sarah stage gave birth to son james hunter last tuesday . the 30-year-old posted a picture of her trim and toned post-baby body on sunday , just four days after giving birth . the image shows the model in a black thong bra and bikini briefs . sarah revealed that she gained 28lbs during her pregnancy .\nthe $ 39.99 -lrb- # 26 -rrb- nanoheat wireless heated mug is fitted with a rchargeable battery . it can maintain the temperature of hot drinks at between 68 °c and 71 °c -lrb- 155 and 160 °f -rrb- for up to 45 minutes . the mug weighs a little over one pound -lrb- 454g -rrb- and can be used up to seven times before it needs to be recharged . a built-in timer automatically turns off the mug if its not used for 30 minutes , to conserve energy .\nrussian authorities have cancelled the release of child 44 . the hollywood blockbuster tells the story of a serial killer who targets children . russia 's culture ministry said the film distorted history . it said the movie would air as the country celebrates its victory over nazi germany . the film , starring tom hardy , vincent cassel and gary oldman , was due to premiere in russia today .\nmary cowan , 92 , died in november last year and left # 2million to charity . she asked that a large slice of her estate should be given to george watson 's college in edinburgh where she taught . the school is where famous faces such as sir chris hoy and rugby legend gavin hastings were taught . ms cowan also asked that falkirk high school be given a share of her . estate to set up a fund in memory of her mother .\n1-year-old malaja was shot in the head in kent , washington , thursday afternoon . she was in a car seat in the back of a silver chevrolet impala with her parents in front . police say a black car pulled alongside and the driver and passenger opened fire . the baby was in ` very critical condition ' friday , a day after the shooting .\njason denayer is set to spend next season on loan at celtic . manchester city want the 19-year-old to spend a season in the championship . celtic striker john guidetti faces disciplinary action after singing an allegedly ` offensive ' song about the demise of rivals rangers . virgil van dijk could also leave celtic this summer .\nmichele leonhart is facing sexual harassment and misconduct allegations from former agents . the white house declined today to praise her . leonhart has run the agency since 2007 and was expected to resign soon . a congressional committee will investigate the claims . the committee 's members issued a statement after leonhart 's appearance saying she had ` lost the confidence ' of the committee .\nchef ally lees of alfie bird 's in birmingham created the three-foot omelette . the dish contains 12,000 calories and is 16 times the recommended daily protein intake for a man . it took an hour to cook the beastly dish in a giant paella pan .\npolice arrested more than 20 people at an overnight dance party in sydney . a 22-year-old man was found with almost 450 mdma pills . he was charged with supply prohibited drug and appeared in court on sunday . a 23-year old peakhurst man was also taken into custody after he was allegedly located with 124 mdma tablets and a wad of cash . a further 16 people were charged with possession of mdma tablets . around 6000 people attended the all-night rave which ran from 10pm saturday until 6am sunday .\nfantasy café in hangzhou , zhejiang province , has installed eight air purifiers . a label is put on every table to alert customers about the 11p surcharge . the café is one of the first in china to start charging an ` air-purifying fee '\nchelsea came from behind to beat leicester city 3-1 at the king power stadium . didier drogba and john terry scored the goals for jose mourinho 's side . marc albrighton had given leicester the lead after a lethargic first-half . but chelsea fought back and levelled through drogbas and terry . ramires scored a stunning goal with a shot that flew in at 60mph .\nkalon kallai travelled across canada on a green rocking chair . he travelled from borden , ontario to comox , british columbia . the journey took the traveller nine days to complete and 4500km of land . mr kalla said that he shared many laughs with his dad during the journey .\ngareth bale is a huge doubt for real madrid 's champions league quarter-final second leg match against atletico madrid with a calf injury . welsh forward lasted just a few minutes before limping off during real 's 3-1 home victory over malaga on saturday . los blancos are also without croatian midfielder luka modric , who suffered a knee ligament strain against malaga and is expected to be unavailable for six weeks .\nqpr host chelsea at loftus road in the west london derby on sunday . chris ramsey believes sunday 's game is more crucial to qpr than it is to chelsea . jose mourinho 's blues are top of the premier league , while qpr are fighting to avoid dropping out of the division .\nnato says joint warrior exercises are not a deliberate response to russia 's behavior . 13,000 personnel from 14 countries operating more than 50 ships and submarines . cnn was invited to spend a day aboard one of the vessels taking part . russia has taken an interest in the exercises .\ngopro founder nick woodman was awarded 4.5 million restricted stock units - valued at $ 284.5 million at the end of the year . he is set to be named america 's highest-paid ceo of 2014 on the annual bloomberg pay index . chenerie energy 's houston-based chief executive charif souki was valued at # 281million .\ncolby ramos-francis was born with a small , heart-shaped growth over his eyelid . but it quickly developed into a large benign tumour that continued to expand . his parents claim nhs doctors were unable to treat the growth or offer surgery . they were forced to beg for help abroad thanks to the little baby face foundation . colby has now had the tumour removed free-of-charge thanks to charity .\ngloria rancic 's memoir going off script is out on september 25 . the 40-year-old e! star has detailed her tumultuous relationship with jerry o'connell . she claims he cheated on her with geri halliwell from the spice girls . jerry married rebecca romijn in 2007 .\nlauren hill was diagnosed with diffuse intrinsic pontine glioma in december 2013 . she was told she would not live past december and doctors told her she had less than two years left . but she defied doctors and played four games for mount st. joseph university in cincinnati and raised more than $ 1.5 million for research into the cancer . she died in hospital on friday morning , aged just 19 .\npanasonic 's sokaze-ki q fan is on sale in japan for # 220 . it uses fluid dynamics to take air in at the rear of the device . air is then moved through specially designed channels before being blasted from the front via a turbofan . alternatively , the q has a ' 1/f fluctuation ' function that reduces the force of the air flow , and sends ` natural wind ' that mimics outside breeze .\nfootage shows best friends carmarie and kanya sat buckled into the device at the indy speedway park on panama city beach , florida , over the weekend . at the start they seem pretty calm but when the carriage tilts back and fires 300ft-high panic sets in and they let out manic screams . both appear to pass out several times due to the extreme force , with their eyes glazing over and rolling back .\nmaya angelou was honored by the us postal service in a star-studded ceremony on tuesday . first lady michelle obama and oprah winfrey were just two of the big names in attendance for the unveiling . the stamp features a picture of angelou 's face and one of her many memorable quotes . the problem however , is that the featured quote came from another author . joan walsh anglund wrote in her 1967 book a cup of sun ; ' a bird does n't sing because he has an answer , he sings because it has a song '\naston villa are four points above the bottom three with five games left . manager tim sherwood believes his side have enough to stay up . villa face manchester city on saturday in the premier league . sherwood could have striker gabriel agbonlahor back from a hamstring injury .\nparis saint-germain host barcelona in champions league quarter-final first leg . zlatan ibrahimovic and marco verratti suspended for ligue 1 outfit . david luiz also out for the french champions . barca 's dani alves is suspended for the game .\njarret stoll was arrested at a las vegas resort , cnn affiliate ksnv reports . he was charged with possession of controlled substances , including cocaine and ecstasy . the l.a. kings say they are `` concerned '' and are conducting an internal investigation .\ned miliband 's party has jumped to 35 per cent , up one point from last month . tories meanwhile remain stuck on 33 per cent according to pollsters ipsos mori . but mr miliband 's poll ratings remain dire , with just a third of the public seeing him as a ` capable leader '\nuniversity of waterloo scientists have created a 3d master map of the universe spanning nearly two billion light years . the map spans nearly twobillion light years from side to side . it will help astrophysicists understand how matter is distributed in the universe and provide key insights into dark matter .\nsusan monica was found guilty of murdering two handymen on her pig farm over a one-year span . prosecutors said stephen delicino , 59 , was killed in 2012 and robert haney , 56 , died in 2013 . the jury took just an hour to convict monica of murder . she was sentenced to a minimum of 50 years in prison and a possible parole after 50 years .\na teacher at foster high school in richmond , texas is facing disciplinary proceedings for allegedly giving his students anti-muslim propaganda during class . officials with the lamar consolidated independent school district say the eight-page handout was n't approved by administrators . the handout , entitled islam/radical islam -lrb- did you know -rrb- , made unsubstantiated claims like : '38 percent of muslims believe people that leave the faith should be executed ' and that : ` there are an estimated 190-300 million ` radical islam ' followers '\npizza delivery driver bryan santana is accused of killing his former roommate shelby fazio and her dog last october . prosecutors said he ` delights ' in the pain he allegedly caused her . he is also charged with attempted murder for allegedly attacking their third roommate with a knife and killing fazio 's dog . in court documents , santana admitted to strangling and stabbing fazia to death , and then having sex with her corpse .\npbs show `` finding your roots '' featured ben affleck 's great-great-great grandfather . ben affrell said he asked producers to remove reference to benjamin cole , a slave owner . frida ghitis : who in their right mind would want to be tarnished by an ancestor 's sins ? she says pbs did the right thing by leaving cole 's name out of the show .\nfredric brandt , a plastic surgeon , was found dead in his new york city home on easter sunday . friends claim the doctor was offended by a character on tina fey 's new tv show that bore uncanny similarities to him - despite initial claims he ` laughed it off ' the unbreakable kimmy schmidt , starring martin short , was released on netflix on march 6 . friends say brandt was suffering from depression and had started injecting himself with fillers .\npregnant and breastfeeding mothers who drink organic milk may be putting their child 's health at risk , scientists claim . they say it contains a third less iodine than normal milk . this could affect infant brain growth and intelligence later in life , they say . but organic milk industry issued swift rebuttal saying research was out of date .\nwhitney fetters allegedly exchanged 20 nude images and videos with the boy , and sent him sexually suggestive text messages . she also invited him over to her house to get high and have sex . the 28-year-old spanish teacher was fired after other students told staff that the boy had photos of her . she has been charged with soliciting sex with a minor and possession of marijuana .\nbayern munich manager pep guardiola split his trousers during 6-1 win over porto . he joked : ` i 'll have to buy new ones for the next match ' other stars guilty of wearing tight-fitting suits include russell brand , dermot o'leary and olly murs .\njockey blake shinn bared all at the hyland race colours plate in canterbury , australia . shinn 's elastic in his pants gave way as he attempted to ride miss royale to victory . the 27-year-old was forced to ride more than 200 metres to the finish line with his pants down .\njoe root scored 182 runs in england 's first innings in grenada . the yorkshire batsman was denied the chance of a double century . root was run out by james anderson after anderson failed to run his bat into the ground . the 24-year-old threw down his helmet and gloves after the incident .\ntwins drowned after their mother tried to fend off a bee and let go of their stroller . alexis keslar was walking with her twin sons , silas and eli keslar , along a canal . the stroller rolled away from her into the canal , with the boys belted in the seat . keslar went into the canal and tried to rescue her sons , authorities said .\nkaka knelt in the centre circle after ac milan 's champions league win in 2007 . he was wearing a vest that read ' i belong to jesus ' the brazilian was not mocked or ridiculed for the message . daniel sturridge and javier hernandez also express their beliefs .\nyougov study found that nigel is twice as likely as the general population to vote ukip . the figure went up from 16 to 31 per cent among men named nigel , the poll found . three names most likely to vote tory were charlotte , fiona and pauline . those least likely to were sharon , samantha and clare without an i.\npolice were called to a kfc restaurant in northfield , birmingham , at 5pm yesterday . when officers arrived they found a 19-year-old with stab wounds in a barber shop . sheriff mbye died in hospital two hours later after suffering multiple stab wounds . a teenager has been arrested on suspicion of murder and remains in police custody .\nkate upton claims terry richardson released footage of her dancing in a bikini without her permission . the one-minute-long video was uploaded to youtube two years ago . kate says the film was not meant to be for public consumption . richardson is known for his racy - often pornographic - photo shoots . he has also faced sexual assault allegations .\ninquest hears apprentice electrician nathan brown , 19 , died after accident . he was working with his father david , an experienced electrician . nathan was told to climb up a ladder to test lights in factory roof . but he apparently touched a set of exposed electrical bars powering a crane . the shock caused him to fall 12ft head first onto the roof of a toilet block . he later died from his injuries in hospital in rochdale , greater manchester .\nopen garden has built an egg-shaped gadget called greenstone . it acts as a beacon to help messages move around off-the-grid networks . it takes advantage of a feature that launched in apple 's ios 7 called multipeer connectivity framework -lrb- mcf -rrb- this creates a network in which phones become nodes , and data is passed between nodes . greenstone is currently under development and only works at 20ft -lrb- 6 metres -rrb-\ndiego costa was sold to chelsea but replaced by mario mandzukic . sergio aguero was replaced by radamel falcao at atletico madrid . diego ribas became arda turan and david de gea became thibaut courtois . atletico have used third-party ownership lenience in spain to their advantage . koke is their brightest homegrown talent and he lined up in midfield on tuesday against real madrid .\ndetective ian cyrus was caught on camera stealing cash from a brooklyn deli . he has been suspended without pay and his supervisor has been placed on desk duty . five nypd detectives were at the store in brooklyn , new york arresting workers for selling illegal cigarettes . store manager ali abdullah said he saw one of the detectives finding the rent money box under the counter , and grabbing a handful of it .\nmassimiliano allegri 's side face as monaco in the champions league . juventus boss expects a ` boring ' match on tuesday night . andrea pirlo has returned to training after a calf injury . juventus beat borussia dortmund 5-1 on aggregate in the last 16 .\ntortoise seen trying to climb on to the back of a female 's shell . but the male tortoise loses its balance and falls to the ground . the female tortoise then leaves him on his back in the mud . the amusing moment was caught on camera at kiev zoo . photographer vadym shevchenko said the tortoise seemed determined .\ndanielle davis says she looked to her faith when she was faced with the prospect of losing her husband brian in 2011 . brian was in a near fatal motorcycle crash just seven months after they were married . doctors told her they would have chosen to pull the plug had they been in her position . but she refused to give up on brian and took him into her full time care . weeks later , miraculously , brian spoke . ` i 'm trying , ' he told her .\nmemphis city council has agreed to move the two planes to a nearby site . elvis bought the lisa marie and hound dog ii in 1975 for $ 250,000 and $ 900,000 respectively . the planes have been at graceland since the 1980s and are now part of a new museum about the dead singer .\n`` i was sickened by what i saw , '' north charleston police chief says . officer michael slager is charged with first-degree murder in the shooting death of walter scott . slager , 33 , is also `` terminated '' from the force , north charleston mayor says . the video shows scott running away , with his back to the officer .\nmanchester united were beaten 1-0 by chelsea at old trafford . louis van gaal 's side are still in the hunt for the premier league title . but van gaal is starting to assert himself at the club after a stuttering start . van gaal needs to win more trophies than sir alex ferguson . united need to sign mats hummels from borussia dortmund .\njapan 's prime minister shinzo abe missed a great opportunity to dispel tensions , says shigeru ishiba . ishiba : abe has been disappointing on japan 's wartime history . he says abe has not embraced responsibility for japan 's actions in asia . ishibashi : abe 's stance on history is harmful to japan 's international image .\nkate t. parker 's series strong is the new pretty is a collection of photos of her daughters ella , nine , and alice , six . the mother-of-two was inspired to create the series after pouring over photos she snapped of her girls playing sports and enjoying their childhoods .\njack black the friendly jackdaw has become so well-loved in penryn , cornwall , that one fan has set up a facebook page for him . the page has more than 450 members who share their pictures , videos and stories about jack . jack was hand-reared by a vet as a chick after being discovered with no feathers , before being released into the wild .\na gunman walks into a building on the campus of wayne community college in north carolina . he shoots the school 's print shop operator , killing him , authorities say . the school was placed on lockdown , and the gunman remains at large . the victim , ron lane , was a longtime employee at the school .\nprosecutor javier de luca dismisses allegations that president cristina fernandez de kirchner tried to cover up iran 's involvement in a 1994 bombing . the original prosecutor who brought the allegations was found dead in january . his death sparked outrage and conspiracy theories aplenty .\nmanny pacquiao and floyd mayweather will fight in las vegas on may 2 . pay-per-view viewers will have to pay up to $ 100 -lrb- # 67.48 -rrb- for the fight . mayweather has commissioned a mouthguard with $ 100 bills . andre ward is set to make his overdue ring comeback in california .\nriki hughes , 31 , volunteered as club secretary at tidworth town football club . but he stole # 17,000 from the team , which was getting its property free . he spent the money on a stag holiday to las vegas and camping equipment . hughes was jailed for 16 months at salisbury crown court .\nm manny pacquiao is set to fight floyd mayweather on may 2 . the filipino boxer shared a video of his early morning jog on wednesday . mayweather also shared a clip of his training session on his instagram account . the pair will meet at the mgm grand in las vegas on may 1 .\nsteve mcclaren has been linked with a move to newcastle united . the former england boss insists his sole focus is on promotion . john carver is the current incumbent in the newcastle hotseat . mcclaren admits there was interest in him from the north east club in january .\nchloe valentine , 4 , died of massive head injuries in january 2012 . she was forced to ride a motorbike three times her weight for days on end by her drug addicted mother and her partner . her mother ashlee polkinghorne and her then partner pleaded guilty to chloe 's manslaughter through criminal neglect . in an emotional statement outside the adelaide inquest on thursday , chloe 's grandmother belinda valentine welcomed coroner mark johns ' ruling that families sa was broken and fundamentally flawed .\nkenyan special forces took at least seven hours to respond to the massacre . elite troops were called in from nairobi to garissa , 225miles from the capital . but soldiers did not arrive until the afternoon , local media claims . government representatives have defended the long response time .\nstudy by researchers in germany , canada and the u.s. asked 6,100 people questions . men were asked if they would kill a young hitler to prevent wwii . women were asked whether they would do something harmful in the short term . men more likely than women to kill to save lives in the long term , study found .\nroma gang accused of selling a newborn to a childless couple for # 6,500 and a car . four men and women appeared in a marseille court today , accused of human trafficking . they deny charges against them , saying the babies were ' a gift '\nthe uk-wide conspiracy offered cheap erectile dysfunction pills . it was a ` sophisticated and carefully planned ' scam , the judge said . the gang made up to # 60,000 a week selling unlicensed and counterfeit drugs . proceeds were laundered through more than 100 bank accounts . neil gilbert , 42 , was jailed for six years at the old bailey .\nfrench tv network tv5monde is gradually regaining control of its channels and social media outlets . it suffered what the network 's director called an `` extremely powerful cyberattack '' on a mobile site , which was still active , the network said it was `` hacked by an islamist group ''\nrspca has no more legal actions left under hunting act after case collapsed . case against william bryer , joint master of cattistock hunt , dorset , dropped . rspca spent # 22.5 million pursuing animal welfare prosecutions last year . last october report recommended abandoning policy and leaving job to cps .\necuadorian airline tame , tourism ministry and ministry of transport and public works staged the stunt . the group of 40 tourists were tricked into thinking they were visiting golfito , a port town . but in fact they were exploring activities in the amazon rainforest . the stunt sparked outrage from costa rica , who complained to the authorities . ecuador has since issued an apology and accepted the government 's apology .\ngrieving iraqis gather to pray over the bodies . a total of 47 bodies have been exhumed from two of the 11 mass graves . up to 1,700 bodies may be recovered , an iraqi government official says . isis claimed to have executed that many soldiers captured in june outside camp speicher .\nnorthern ireland beat finland 2-1 at windsor park on sunday evening . the west stand at the national football stadium suffered damage overnight on monday . the irish fa are hoping the damage will not affect the team 's euro 2016 qualifier against romania on june 13 . windsor park is currently undergoing major redevelopment .\nderry mathews will fight ismael barroso for the interim wba world title . the liverpool ace was set to fight cuban wba champion richar abril . abrils pulled out of their april 18 date due to illness . a bril has been elevated to ` champion in recess '\nlionsgate 's ` hunger games ' and ` step up ' films to be part of dubai theme park . motiongate dubai will open in october 2016 , and will include 27 rides and attractions . the final instalment of the hunger games franchise is set to be released in november .\nchildren who watch films where characters drink alcohol are more likely to binge drink . scientists quizzed more than 5,000 british teenagers about their drinking habits . those who had watched the most films which featured characters drinking alcohol were 20 per cent more likely . to have tried alcohol .\nsaturday night live star cecily strong made some pretty funny jokes at the white house correspondents dinner . she poked fun at the president , the media and the republican hopefuls . the comedian also poked fun of michelle obama , saying she was the ` most important person in the room '\nnursing school will be opened in isis-held capital raqqa , activists say . applicants must be 25 years old , pass entry exam and speak english . they will also have to work for isis for two years after graduating . english language checks for all nurses are still not being enforced in britain . nhs has introduced rules but only applies to foreign nurses from eu countries .\nreal housewives of beverly hills star was arrested on thursday morning at 1:30 am at the polo lounge in the beverly hills hotel . she was reportedly refused service by a bartender and became angry saying ` do n't you know who i am ? ' the 50-year-old then went to a bathroom and refused to come out . police were called and she ` cursed at officers ' and ` passively resisted arrest '\nlebron james posted an emotional farewell letter to lauren hill via twitter on friday , just hours after the teenager passed away from terminal brain cancer . he praised the 19-year-old for the ` leadership ' , ` courage ' and ` strength ' she had shown while suffering from diffuse intrinsic pontine glioma -lrb- dipg -rrb- the letter has since been retweeted tens of thousands of times . lauren was diagnosed with the rare brain cancer in december 2013 and doctors told her she had less than two years left . she played college basketball for mount st. joseph university in cincinnati and raised more than $ 1.5 million for research into the cancer .\nnigel farage 's party trailing in 10 key constituencies , new poll shows . ukip now 18 points behind tories and 7 points behind labour in 11 seats . but ukip leader insists he is looking forward to the rest of the campaign . admits he made ` mistakes ' by trying to do too much during campaign . nick clegg accuses farage of being an ` odious victor meldrew ' character .\nwigan sacked malky mackay on monday after a 2-0 defeat to derby county . gary caldwell was appointed as the new manager on tuesday . the 32-year-old is the football league 's youngest manager . wigan are currently in the championship relegation zone . chairman david sharpe is confident he has made the right call .\nrachel lehnardt , 35 , had been a life-long mormon and had never touched a drop of alcohol before her divorce from husband james last year . but she turned to drink after he was discharged from the military with ptsd and she began drinking , her lawyer said . she was arrested last saturday after she allegedly threw a party for her daughter and her friends at their georgia home and let them drink alcohol and smoke marijuana . she then allegedly had sex with an 18-year-old man in the bathroom and brought out sex toys and used them on herself in front of the teenagers , her lawyers said . the next day she woke up to find her daughter 's 16-year old boyfriend raping\nceltic beat dundee 2-1 at den 's park on wednesday night . gary mackay-steven and virgil van dijk scored in the second half . celtic are now eight points clear of aberdeen with five games to play . jim mcalister scored a late consolation for the hosts .\nman accused of posting ` blasphemous ' status on facebook last july . he told police he received image over whatsapp , but later admitted to it . the 41-year-old could face seven years in jail and a fine of up to # 186,000 . he is said to have posted the status after watching news about iraq war .\nthousands of fish have died at a commercial fish farm in southern china . the lake in huizhou city in guangdong province had become polluted . more than 100 tonnes of dead fish were found floating in the water . workers have been working to clear the lake and save the few remaining live fish .\nmichelle obama , 44 , and her mother , marian robinson , 76 , dined at lupa in new york 's greenwich village on saturday . the pair enjoyed a five-course italian meal at the small eatery . owner and restaurant mogul mario batali was seen leaving the restaurant on his moped .\nchristopher may will appear at pontypridd magistrates ' court tomorrow . he has been charged in connection with the murder of tracey woodford , 47 . her family have paid tribute to her as ` very kind-hearted ' and ` selfless ' body was discovered with ` massive injuries ' at a flat in ponty pridd , wales . she is believed to have been attacked in woodland in ponties on tuesday . police said she was taken back to property of a man she left pub with .\nlast month 's average temperature soared to 56.4 °f -lrb- 13.6 °c -rrb- it was the hottest march on record , averaging 1.5 °f above 20th century average . data was released today by the national oceanic and atmospheric administration . it follows earlier announcements that 2014 was theottest year in modern history .\naustralian rugby union pass new rule to allow players with 60 caps to continue international careers . players with over 60 caps playing overseas will be eligible . players will be selected if they commit to playing super rugby in australia for the following two seasons . matt giteau and drew mitchell , who both play for toulon , would immediately qualify to play at the world cup later this year .\njudith chalmers and her husband travelled to macau to discover the city . located at the southern tip of china , macau has 26 casinos . the city is a fascinating melting pot of portuguese and chinese culture . the macau tower has the world 's highest bungee jump .\nraheem sterling has turned down a new # 100,000-a-week contract with liverpool . the 20-year-old has been linked with a move to arsenal in recent weeks . brendan rodgers insists sterling will still be at anfield next season . liverpool lost 4-1 at arsenal in the premier league on saturday .\nswiss researchers measured the temperature of ` hot jupiter ' hd 189733b . they found the temperature reaches up to 3,000 °c in the atmosphere . and wind speeds are in excess of 620 miles per hour . the findings were made using a novel technique relying on sodium signals . this is a signal that indicates how hot a planet is in its atmosphere . the research was carried out by scientists from the universities of geneva and bern in switzerland . it suggests we may soon have the opportunity to examine other distant worlds beyond the solar system in unprecedented detail .\nmarilyn mosby , 35 , is baltimore city state 's attorney . she is the youngest chief prosecutor of any major city in the united states . she will decide whether criminal charges should be filed against baltimore police officers in freddie gray 's death . mosby 's family is a former police officer .\nleaj jarvis price , 24 , was allegedly shot dead by husband eric heath price , 25 . she ran into doctor 's office in jemison , alabama , on monday screaming ` call the police ' price then returned to nearby home and staged a standoff with police . he was taken to hospital with a self-inflicted gunshot wound to his head . he has since been charged with the murder of mrs price , who was a nursing student . couple had been in a long-running custody battle over their son , who is in school at the time of the shooting .\nformer us open champion jim furyk won his first pga tour title since 2010 . furyk beat kevin kisner on the second play-off hole at hilton head . the 44-year-old hit a final round 63 to finish 18-under in regulation play .\nnovak djokovic beat rafael nadal 6-3 , 6 - 3 to reach the monte carlo masters final . world no 1 is bidding to win his third masters title in a row . djok serbian will play sixth seed tomas berdych in sunday 's final .\nthe first of two theme parks built at the disneyland resort in anaheim , california , opened on july 17 , 1955 . the total cost for creating disneyland was $ 17million . guests spend 83 times the amount they did in 1955 , totalling $ 196 . three babies have been born in the parks , the first being born near the plaza inn in 1979 .\nproducer naughty boy has been working on zayn 's solo music . he posted a clip of a track entitled i wo n't mind , but has since taken it down . the clip angered zayn and his former bandmate louis tomlinson . naughtyboy has worked with rihanna , cheryl cole and emeli sande .\nkaren davis was caught on camera flashing her breasts on google maps . the 38-year-old mother from port pirie handed herself into police voluntarily . she was charged with disorderly behaviour and given an oral swab test . south australian law professor rick sarre said the swab was unnecessary . ms davis hit back at the controversy caused by her actions , claiming that ` flat-tittie chicks ' are not confident enough with their own bodies .\nmore than 70 animals have been seized from a filthy mobile home belonging to an animal hoarder banned from keeping pets . police raided the house of john koepke , in wittmann , arizona and found 54 dogs and 18 cats living in disgusting , cramped conditions . one of the cats was found nursing a set of three young chihuahua puppies in a box .\nburnell mitchell arrested on suspicion of conspiracy to murder . 61-year-old also arrested on suspicion of preparing and instigating terrorism . his sister is liz mitchell , lead singer of 1970s band boney m. syrian-born 48-year old abdul hadi arwani was found dead in his car . a 36-year old man has been charged with his shooting . a woman , aged 53 , has been arrested on terrorism offences .\nno girls rescued from boko haram camps identified as among missing chibok girls , official says . nigerian troops rescued 200 girls and 93 women tuesday in the sambisa forest . nigerian military spokesman says none has spoken to their families yet . boko haram kidnapped 200 schoolgirls in april 2014 from the village of chibok .\nrick yoes , 57 , has been cited for nearly two decades of code violations for his unruly lawn in grand prairie , texas . yoes was recently confronted with six outstanding fines totaling $ 1,700 for the violations . he turned himself in this weekend and spent two nights in jail before a friend paid his fine . yoe 's daughter says he took off all his vacation days at work to serve 17 days in jail rather than pay the fine .\nangelique kerber beat madison keys in three sets in the family circle cup final . kerber won six of the last seven games to win 6-2 , 4-6 , 7-5 . this was kerber 's fourth wta title and first since linz in 2013 .\nderby beat blackpool 4-0 at the ipro stadium on tuesday night . craig bryson , tom ince and darren bent scored for steve mcclaren 's side . blackpool 's defeat confirmed they would take the championship wooden spoon . the win keeps derby in the play-offs and keeps their promotion push going .\nannegret raunigk , from berlin , already has 13 children . she is in the 21st week of her pregnancy and will give birth in september . the 65-year-old 's story will be featured in a tv documentary . she previously made headlines in germany when she had her daughter .\n27-year-old demetric nelson still had his victim 's keys in his pocket when he was arrested tuesday , several hours after the kidnapping attempt , authorities said . nelson broke into a 53-year . woman 's home and demanded money , police said . he then told her to give him a ride to a manning avenue home . nelson could n't drive the car because of the manual transmission , however , and the woman used the emergency trunk latch to escape , authorities say .\nl luokun , eight , was diagnosed with hiv at the age of five and made an outcast . he was forced to play alone in his village and locals would avoid him . his grandparents sided with locals who signed a petition to banish him . he has now been admitted to a specialist school in linfen , southern china . the red ribbon school is the only school in china equipped to look after and educate hiv-positive children . officials are reportedly planning to educate villagers who banished kun kun through a campaign .\n` ultimate safari ' series is part of natural world safaris ' 10th anniversary . takes in 21 destinations across africa , asia , the indian subcontinent and latin america . four different areas : primates , bears , big cats and marine life . each safari can be split into separate legs or completed in one journey . accommodation ranges from pure luxury to basic cabins .\nsalcombe , devon , has been named britain 's most expensive seaside resort . average cost of property in the seaside town is # 671,759 . this is more than the average cost of home in oxford , bath and edinburgh . the average value of a waterfront property in salcombe tops # 2million .\nnatasha willard appeared to get the flu days before christmas . she was diagnosed with encephalitis , an inflammation of the brain . the 17-year-old can barely move her limbs and can barely talk . her family are trying to teach her to walk and talk again .\nfaculty at the ivy league school have written an op-ed for usa today . they said dr mehmet oz 's talk show tactics have ` sullied their reputation ' but they also applauded his work at the university , saying he has an unblemished record as a doctor . the op-eds comes after 10 doctors urged columbia to sever all ties with oz . those doctors accused him of being a ` charlatan ' who promotes ` quack treatments ' on his syndicated talk show - accusations dr oz has vehemently fought .\nkeith curle played for 10 clubs during his playing career , including manchester city . the 51-year-old is one of only four former england players to currently manage in the football league . curle claims to have caught the management bug after playing for wolves under colin lee and john ward .\nceltic lost 3-2 to inverness in scottish cup semi-final on friday . josh meekings was given a red card for handball but no penalty was given . ronny deila has called for more transparency from referees in scotland . the celtic manager said referees should speak to the media after matches .\nkentucky senator rand paul has come under fire for his aggressive questioning of female reporters . he was accused of being sexist after a spat with today host savannah guthrie on wednesday . he also came under fire after telling a male reporter that he needs to ` have more patience ' with him . paul said he 's been ` universally short-tempered and testy with both male and female reporters ' the freshman lawmaker announced his presidential bid on tuesday in louisville .\nalfie , a seven-year-old yorkshire terrier , was dumped by thieves 120 miles from home . he was found by rspca inspector stephanie law in gerrards cross , buckinghamshire . he had been missing for 12 days after being stolen with his owner 's other dog .\ndeclan fitzpatrick has been forced to retire from rugby on medical grounds . the ulster prop has suffered multiple concussions in recent seasons . the 31-year-old has won seven caps for ireland and 98 ulster appearances . fitzpatrick said he was ` delighted ' to have represented his country .\nceara lynch , 28 , says she got started in the industry by accident when she realized how much money she could make from selling her used underwear online . her first pair sold for $ 70 . ceara has been working as a ` humiliatrix ' since she was 17 .\njulie walters , 49 , jailed for two and a half years after posing as trusted official . she posed as council warden and church official to bluff her way into sheltered housing complexes . she was caught by police after she was spotted on cctv loitering in communal hall . an 80-year-old man and an 81-year - old woman were fleeced in two separate attacks .\nthis year traditional easter eggs have undergone a dramatic makeover . from yeast-flavoured chocolate to an egg made from 300g of cheddar . femail takes a look at the most bonkers eggs in britain . fortnum & mason 's chotch egg is the world 's first gourmet chocolate scotch egg .\nmajor steve thompson with the alabama department of public safety 's marine patrol division said on sunday that one person was found dead on saturday . authorities also said crews still are searching for five people missing in the water following the dauphin island regatta on saturday - which included more than 100 sailboats and as many as 200 people . not all of the missing people were participating in the 57th annual regatta , according to authorities , and names of the deceased and missing were not released on sunday . coast guard capt. duke walker told al.com that ten vessels were capsized or incapacitated during the storm with three of those with the regatta .\nboy , who can not be named , had 13 teeth taken out two years ago . details emerged at a family court hearing in reading , berkshire . judge eleanor owens ruled that the boy must stay in the care of his local authority . she said parents ' high sugar diet had caused tooth decay .\nwatford host middlesbrough in the championship on monday night . boro are top of the table and have just four weeks to play . seven points separate eight teams with six matches to play in the division . bournemouth are second and norwich are third , a point behind .\npooch mavis was reportedly attacked and consumed by an alligator at arlington park in mobile , alabama . the alligator was reportedly close to the park 's boat launch at the time of the attack . the dog 's owner had brought her to the lake for a fishing trip .\nfire destroyed 90 condos on westhampton beach on wednesday afternoon . smoke poured toward the ocean and could be seen from three miles away . 12 fire crews were deployed to control the flames but could not get inside . it is not known what started the blaze , which was so intense it melted the paint off nearby buildings .\ndr des spence warns of ` untested and unscientific ' apps that cause stress . popular apps include myfitnesspal and apple 's health app . he says they are designed to make people worry about their health . but expert says there is no evidence they cause harm .\nkevin pietersen was making his first lv = county championship appearance since june 2013 . surrey batsman was dismissed for 19 in cardiff on his championship return . pietersen is hoping to be selected for england 's ashes tour of australia . kumar sangakkara scored a century on his surrey debut batting at no 3 .\nthe science was explained in a video by dr raychelle burks from the university of nebraska-lincoln for the american chemical society . she reveals that stress can inhibit the immune system and even lead to weaker bones . limited periods of stress are good , as they release the hormone cortisol . but too much will lower your immune system , and make your bones fragile .\ndavid norris attacked his wife dionne in a graveyard near gravesend , kent . the 51-year-old pounced on her as she lay flowers at his grandmother 's grave . he stabbed her repeatedly , screaming ` go to sleep with your mum ! ' she begged him to think of their children but he only stopped when she ` played dead ' norris was jailed for 20 years after being found guilty of attempted murder .\ndoctors refused to treat wounded members of isis in northern iraqi desert . isis jihadis are understood to have been fighting local groups in hammam al-alil . when the doctors refused on the grounds they do not support the terror group 's activities , the men were brutally murdered . news comes as jihadis reportedly executed 60 sunni tribal fighters in iraq 's anbar province .\nsarah vine says she would be perfect for the vacant role on top gear . she says she loves cars and has owned a number of them over the years . vine says the bbc need to look further than just men for the role . she believes women love cars just as much as men .\nnorwich midfielder alexander tettey headed home an own goal after just eight minutes . middlesbrough took the lead through albert adomah in the ninth minute . boro boss aitor karanka said his side deserve to be in the premier league . the win moves boro top of the championship , two points ahead of second-placed norwich .\nal qaeda in the arabian peninsula leader was among five killed in an airstrike , group says . ibrahim al-rubaish was a religious scholar and combat commander , group 's media wing says . he was once held by the u.s. at its detention facility in guantanamo bay , cuba .\na four-door sedan veered off the road in arizona on wednesday . the car fell 100ft and landed upside down on top of the driver , 16 . she was trapped under the car for more than four hours . the driver suffered only minor injuries and was in stable condition . two other passengers , aged 16 and 17 , were also taken to hospital .\narizona police officer michael rapiejko was involved in a lawsuit in october 2005 . luis colon claimed that rapiejko pointed a gun at him and threatened to shoot him . he also claimed that the officer choked him and ordered him to get back into his car . the city settled with colon for $ 20,000 , but he had to dismiss all other claims . this as rapie jko is under fire for using possible excessive force when he mowed down an armed suspect in his police vehicle . video of the february 19 incident emerged earlier this week , and shows rapie jko running into suspect mario valencia .\nkevin davies tweeted a picture of his cut right hand after chainsawing . the preston north end striker has suffered two injuries in less than two months . davies injured his left hand during preston 's fa cup fifth round replay defeat to manchester united on february 16 . the 38-year-old has found the net just once in his 38 appearances for the club this season .\nulster have signed new zealand international charles piutau . the 23-year-old will join on a two-year deal from july 2016 . piutu has won 14 caps for the all blacks and made his test debut in 2012 . the centre can play full back , wing or centre for ulster .\nmoney was collected from students at the university of surrey . currency was submerged in agar - a substance that allows bacteria to grow . it was then monitored for three to four days and washed . students found thousands of bacteria colonies living on their money . most of the bacteria found on the coins studied was harmless . but mrsa and food poisoning bacteria have been found on money .\nsir alex ferguson spent 26-and-a-half years in the manchester united hotseat . the scot won 38 trophies - including 13 premier league titles and two champions league successes . ferguson revealed he had to modify his sleeping pattern to ensure he still had the same energy for the consuming role at united as he did when he first started . the 73-year-old announced his retirement at the end of the 2012-13 season aged 71 .\njames mccarthy opened the scoring for everton after just five minutes at goodison park . john stones doubled the visitors ' lead before half time with a superb header . kevin mirallas scored his side 's third after united had appealed for offside against romelu lukaku . the result was louis van gaal 's biggest defeat as united manager .\njuan arango was furious after tijuana lost 4-3 to monterrey . he went up to jesus zavala and bit him on the shoulder . arango has apologised for the incident after the game . the league 's disciplinary commission could still punish him .\nprimatologists in the democratic republic of congo have captured the first ever picture of the bouvier 's red colobus monkey . the monkey was thought to have died out more than 50 years ago . the discovery proves that the primate - which was first discovered in 1887 and is only known from three specimens - is not extinct .\nvladimir putin said russia has key interests in common with the united states . he said the two countries need to work together to make the world economy more democratic , measured and balanced . putin appeared to soften his anti-american rhetoric after being highly critical of the u.s. in the past . relations between moscow and washington have soured over the conflict in russia 's neighbor ukraine .\nformer pittsburgh elementary school teacher geraldine alcorn , 29 , has waived a preliminary hearing on a felony charge that she interfered with the girl 's legal custody . allegedly encrypted her phone number on the girl 's math homework , exchanged thousands of text messages with her and even talked of adopting and running away with the little girl . alleged to have ` deep love ' for the girl but not sexual feelings . alcorn resigned last month and was forced to stay away from the girl .\nhundreds of trees in puglia , southern italy , infected with deadly bacteria . xylella fastidiosa causes plants to shrivel , leaving them incapable of bearing fruit . it contributed to a 35 percent drop in the region 's olive oil production last year . the bacteria 's spread has alarmed the eu and france has announced a boycott .\nfloyd mayweather is set to fight manny pacquiao in las vegas next week . pacqu xiao-mao was on jimmy kimmel live on monday . mayweather was joined by mariah carey at his gym . carey has long been a fan of mayweather having attended his fight against shane mosley in 2010 .\noscar hernandez jr , 24 , said he was ` awed ' by aaron hernandez 's fame and ` grateful to be noticed ' when he paid him $ 15,000 for three guns . hernandez , 25 , was found guilty of first-degree murder in the 2013 shooting death of semi-professional football player odin lloyd . oscar hernandez was never called to testify against aaron hernandez during his trial .\nben stokes and marlon samuels had a heated exchange on day one . samuel claimed england players ` do n't learn ' when they talk to him . the west indies batsman said stokes was ` battling himself ' samuels is 94 not out after west indies toiled to 188 for five .\nabout a third of americans use some form of alternative medicine . homeopathic medicine is a $ 2.9 billion business . the fda is holding a hearing on homeopathic remedies . the hearing is an opportunity for experts to help the fda decide how it should regulate these products .\nukip leader said ` millions ' of refugees could arrive on boats in europe . said they should be intercepted and turned back now . he urged david cameron to resist pressure for britain to take in refugees . up to 30,000 migrants , including 2,500 children , could be killed this year .\nsecond spectacular blast from calbuco volcano in southern chile has covered nearby towns and villages in a thick layer of ash . the first eruption in over four decades yesterday sent vast clouds of dust more than six miles into the air . another unexpected eruption in the los lagos region today heightened fears of local waters becoming contaminated . the ash covered cars and houses in cities as far as 18 miles away from the source of the eruption .\nmost rev justin welby spoke at canterbury cathedral today . he said the 148 mainly christian victims of thursday 's mass-murders were ` witnesses , unwilling , unjustly , wickedly , and they are martyrs in both senses of the word ' pope francis made similar statements during easter sunday mass at st peter 's square in the vatican .\nchannel 7 let hugh g. rection 's name appear on screen during one of australia 's biggest charity telethons . the royal children 's hospital 's good friday appeal managed to rake in over $ 17.1 million that will be put towards vital research and facilities . twitter users were quick to identify the blunder .\ndavid lynch will not direct the revival of `` twin peaks '' the film director tweeted that the show 's third season will continue without him . the network , showtime , released a statement saying they were `` saddened '' by lynch 's decision . the cult 1990s tv show was set to return in 2016 .\nanglican archbishop of brisbane phillip aspinall has called for queensland 's controversial ` gay panic ' homicide defence to be scrapped . he said he supported father paul kelly 's calls for the homosexual advance defence to be removed from queensland common law . the defence means a murder charge may be reduced to manslaughter if the defendant establishes their victim ` came on ' to them , and the killing was in self-defence .\nchinese police release five female activists who were detained last month . the women will be under police surveillance for a year . the united states had urged china to free them . `` free the five '' became a twitter hashtag . . the international community harshly criticized keeping the women in custody .\njoelison fernandes da silva , 28 , developed gigantism as a child . his rapidly soaring height forced him to drop out of school due to bullying . he then refused to leave the family house for years . but true happiness eventually found him in the form of evem medeiros , a 5ft 21-year-old woman he met online .\naustralian aaron finch has been ruled out of the rest of the ipl with a hamstring injury . the world cup winner is set to return to yorkshire to play for them again this summer . finch had to retire hurt after a quick single for mumbai indians in their indian premier league match against rajasthan royals . mumbai captain rohit sharma said finch 's injury ` looked bad '\nslovenian archaeologist has discovered more than 80 ancient mayan cities in mexico . ivan šprajc 's team has found the lost city of lagunita in the yucatan peninsula . the region has gone unexplored because it 's so inaccessible , says š prajc .\na new survey reveals a dramatic fall in support for the green party . only 15 per cent of people at university now say they plan to vote green . this is down from 28 per cent in february when support peaked at 28 per % . the proportion of students who dislike natalie bennett has doubled .\nengland beat the west indies by six wickets in the second test . alastair cook scored a century as england won the series 2-1 . cook has shown he is in charge of this england team . james anderson 's performance was one of the greatest i have seen .\nmarine le pen 's father jean-marie le pen defended having described nazi gas chambers as a ` detail of history ' he said he had ` never regretted ' making similar statements in the past . his daughter and current leader of the party marine le pen immediately distanced herself from the comments saying she ` deeply disagrees ' with her ` deliberately provocative ' father .\nleeds united assistant manager steve thompson has been suspended by the club . thompson 's contract expires at the end of the season and he has been told he will not be offered a new deal . manager neil redfearn is considering his future at elland road .\namber rachdi from troutdale , oregon , weighed 46st -lrb- 657lbs -rrb- at her heaviest . the 24-year-old was warned she would die by the age of 30 . she has since lost 20st and tips the scales at 26st -lrb- 630lbs -rrb-\nhayley carney is preparing to move to the uk to marry a bride she has never met . the american wants to fulfil a ` lifelong dream ' of becoming a british citizen . she will undergo surgery to complete her gender transition before moving to live with her fiancee in plymouth , devon , later this year .\nheather mack , 19 , could spend 15 years in jail for the murder of her mother . she is accused of killing socialite sheila von wiese-mack in bali hotel . mack is caring for baby stella schaefer in a crowded cell in kerobokan prison . justice and human rights minister yasona laoly visited her today . he offered mack the chance to place the baby with a family to care for the child .\npictures of disgusting passengers posted to instagram account passenger shaming . photos show people sleeping on walls , in seats and even in the aisle . others include a plastic bag filled with urine and dirty nappies . photos also show children vandalising the plane with stickers . former flight attendant shawn kathleen started the account to highlight bad habits .\ntaya kyle has given an interview to abc 's robin roberts about her life since her husband 's death . she told roberts she had to do everything she could to keep from falling apart in front of her children when she told them their father had been killed . chris kyle was gunned down by fellow war veteran eddie ray routh at a shooting range in rough creek , texas , on february 2 , 2013 . in february of 2015 he was found guilty of capital murder and given a life sentence without parole .\ntommy thompson and girlfriend alison antekeier admitted contempt of court . the 62-year-old had been on the run from authorities for more than a year . he will not have to testify about gold haul he found on historic ship . the ss central america sank off the carolina coast in 1857 laden with 21 tons of gold . around 400 people drowned in the 19th-century shipwreck .\nsurveillance footage shows 40-year-old todd phillips being struck at full speed as he flags down one of his drivers during sunday 's inaugural indy grand prix of louisiana . as the dale coyne racing team chief mechanic is hit on the leg by the back end of the vehicle he flips forwards and performs a somersault before co-workers rush over to check he 's okay . amazingly phillips of franklin , wisconsin , only sustained minor injuries to his leg which required six stitches .\niconic mark 1 plane was among the first built in march 1940 . spitfire p9374 was hit by a single bullet from a german dornier bomber . it was being piloted by flying officer peter cazenove over dunkirk . he brought the plane down on the wet sands at calais , france . plane became consumed by the sandy beach and remained there for 40 years . it is now up for sale through london auctioneers christie 's . proceeds will be donated to the raf benevolent fund and panthera .\ngibraltar could be the new home of britain 's nuclear submarines . move could cost # 3billion and take 10 years to complete , it was reported . snp want to eject trident from scotland , but both the conservatives and labour have committed to retaining the base on the clyde .\nmark selby is defending his title at the betfred world championship . the 31-year-old from leicester beat ronnie o'sullivan in last year 's final . selby beat kurt maflin 6-3 in their first-round tussle on saturday .\nnigel short said women were not suited to playing chess because it required logical thinking . he said women should accept they were ` hard-wired very differently ' mr short was the first english player to play a world chess championship match . less than two per cent of grandmasters are female .\narsenal face reading in the fa cup semi-final at wembley . alex oxlade-chamberlain is struggling to recover from a groin injury . the england midfielder could miss the rest of the season . jack wilshere will be in arsenal 's squad for the match .\ncharlie adam scored a stunning 66-yard goal against chelsea on saturday . the stoke midfielder has been the talk of football this easter weekend . adam scored similar effort for blackpool reserves against accrington stanley in 2009 . the scot picked the ball up inside his own half before shooting from the halfway line .\nthe harry potter books have sold more than 450 million copies . but researchers from lancaster university found its success may lie in the use of words used - rather than the texts as a whole . by scanning the brains of people reading passages from the collection , researchers discovered ` arousing words ' affected parts associated with emotion . the emotional potential of words is rated in terms of valence and arousal ratings . valence refers to how positive or negative a word is , while arousal refers to its ` physiological intensity '\nlife paint was created by volvo and a swedish start-up . it contains powder-fine reflective particles designed to react to a car 's headlights , alerting drivers to the presence of cyclists in the dark . the paint is invisible by daylight but reflects light in the same direction as the light source to illuminate objects it has been sprayed on . a trial began in london bike shops on 2 april to gauge public interest and 2,000 cans were given away free as word of the popular product spread . the spray has proved so popular that the trial cans up for grabs at certain cycling shops in london were snapped up in days . some of these are now on sale on ebay for # 45 -lrb- $ 66\nworld 's third largest cruise liner sailed past its sister ship as it left southampton docks this afternoon . the anthem of the seas has 16 decks and can carry almost 5,000 passengers . the explorer of the seas has 15 decks and a capacity of more than 3,000 people . both cruise liners will be based in southampton and will sail around europe this summer . the ship 's , which is owned by royal caribbean , will then move to new york harbour .\na new york detective has been suspended after being accused of stealing $ 3,000 . surveillance video appears to show det. ian cyrus stashing cash in a bag . the detectives had arrested two employees for selling loose cigarettes . cyrus is under investigation by the internal affairs bureau .\nlaura everley , 36 , had experienced bloating , lower back pain and constipation over a three-month period . she also frequently needed to urinate , but put it down to irritable bowel syndrome and endometriosis . one evening , she saw a post on facebook describing all her symptoms . she realised she had them all and went to see her doctor . tests revealed she had an aggressive ovarian tumour and the disease had spread . she underwent a hysterectomy to remove her womb and her ovaries . she is now undergoing chemotherapy and doctors are confident she can beat the disease .\nmohammad ali akhtar was attacked at premier stores in flixton , manchester . the hooded thief stormed into the store brandishing a large kitchen knife . he wrestled with the shopkeeper before being stabbed in the ear and hand . the thief managed to get to his feet and flee empty-handed . mr akhtar said he thought he was going to die during the 40-second assault .\ntola ore , 32 , fitted a keyboard video mouse to her computer in palmers green . the device allowed fraudsters to remotely access the computer to transfer cash . the gang attempted to deposit # 1,274,000 into 12 different bank accounts . ore admitted one count of fraud at the old bailey as she was about to stand trial . she is eight-months pregnant and only took part because the gang threatened her daughter who was aged two .\nlee mcculloch was sent off for rangers against hearts on sunday . rangers won 2-1 to move into second place in the scottish championship . caretaker boss stuart mccall says he is beginning to trust his players . he says he believes he can steer rangers up to the premiership .\nattackers detonated a car bomb outside somalia 's education ministry . five gunmen then stormed the building , shooting people inside , officials say . the islamist militant group al-shabaab is responsible for the attack , group spokesman says . four somali soldiers and eight civilians were killed in the attack .\ndaniel boykin , 33 , was sentenced to six months prison for unlawful photography , aggravated burglary , wiretapping , unlawful telephone recording and two computer crimes . he was found with 92 videos of the victim - 29 taken from the airport bathroom - and 1,527 photographs . boykin admitted to repeatedly filming the woman inside a bathroom at nashville international airport . he also broke into her home five times . boykins was fired from the tsa in may 2014 .\nreal madrid have rescinded cristiano ronaldo 's red card . iker casillas , toni kroos , james rodriguez and gareth bale are all out . jese is to start his first game in 389 days in bale 's absence . goal-line technology is confirmed for the coppa italia final . juventus are on course to win a treble .\nimages show soldiers of the french second foreign parachute regiment in action . taken during an airborne operation at the ` salvador pass ' at the border between libya and niger . france began setting up a command base in northern niger at the end of last year .\nniamh geaney found her ` twin stranger ' in karen branigan , 29 . the 26-year-old student from dublin launched a social media campaign . the aim of the experiment was to find their closest lookalike . miss geaney and karen have been chatting on facebook ` constantly '\npauline mckee , 90 , won $ 1.85 from the ` miss kitty ' game at isle hotel casino in waterloo , iowa . the state supreme court ruled her win was caused by a software error . the court ruled that the casino did not have to pay mckee because the game 's rules stated that the maximum award was $ 10,000 and that bonus awards were not allowed .\na photo of a ` drunken ' young woman was posted on soho nightclub 's facebook page on april 3 . the photo was posted a week after luke lazarus was sentenced for raping an 18-year-old at the venue . the club 's management removed the photo after a backlash on twitter . luke lazarus , 23 , was convicted of raping the girl at soho on may 12 , 2013 . he was sentenced to at least three years in jail on march 27 . the privileged son of andrew lazarus , the owner of sohc , was the victim of a ten minute assault .\nart gallery uncovered new evidence in its attempt to keep # 1million painting . tate britain chiefs believe chance discovery will bolster claim . beaching a boat , brighton was looted by nazis during second world war . 1946 document seeks permission for transfer of artworks from budapest to zurich .\nlewis hamilton and nico rosberg were fastest in second practice . but a mistake from hamilton gifted rosberg first place in bahrain . sebastian vettel finished fourth , with kimi raikkonen in third . mclaren 's fernando alonso was 12th in his mclaren . jenson button had a day to forget , finishing 19th in fp2 .\njordan almgren was stabbed in the neck in his home in discovery bay , california . william schultz , 18 , was arrested sunday afternoon , hours after the attack . the day before the stabbing , deputies had also been called to the home on a request for a psychological evaluation of schultz .\npolice chief says deadly force was justified in marana , arizona , incident . video shows officer driving into an armed suspect with a rifle . the suspect survived and was hospitalized before being criminally charged . the footage has stirred debate about what type of force police should have used .\nian poulter posts picture of himself with needles in his neck . the golfer has used the alternative medicine technique to aid his recovery . poulner finished tied sixth at the us masters . europe ryder cup captain darren clarke says poulters final round was the best he 's ever seen him play .\nukrainian superstar wladimir klitschko takes on bryant jennings on saturday . klitschka won olympic gold in atlanta in 1996 , instantly catapulting him into a hero in his home country over night . the 39-year-old will make his return to us soil for the first time in seven years at madison square garden in new york .\nhuman rights lawyer , 37 , married actor george clooney last september . she has been pictured in a range of designer outfits since the wedding . the star has spent # 66,900 on clothes since her lavish wedding . she wears designer labels such as prada and stella mccartney .\nlaura robson is nearing a return to the tennis court . the 21-year-old shared a picture on instagram of her at tortuga festival . robson has been suffering from a left wrist problem . she is targeting the french open in may . robton 's last appearance was in the 2014 australian open .\nolly barkley has signed a new contract at london welsh . the 33-year-old has previously played for bath , gloucester and racing metro . barkley won 23 england caps , the last of which was in 2008 . welsh are set to return to the championship next season .\nduke and duchess of cambridge have been seen out on shopping trips this week . kate recycled a bright pink coat by british brand mulberry , which is now sold out . prince william was spotted in peter jones buying # 800 of men 's clothing . click here to see more royal baby news .\nformer director of public prosecutions lord macdonald says he was not informed of the existence of the case in 2007 . he says local cps lawyers decided fresh evidence against janner was not worth pursuing through the courts . janner , 86 , escaped prosecution for eight years until cps said he is unfit to stand trial due to alzheimer 's .\ndanny willett will be the first debutant to win the masters since fuzzy zoeller in 1979 . the 27-year-old yorkshireman finished joint 12th at the wgc-cadillac championship . willett insists he is preparing to emerge victorious in the first major of 2015 .\nnewcastle owner mike ashley bought a 9.8 per cent stake in rangers . he loaned the club # 5million and sat on the board as a director . rangers have been fined # 5,500 by the scottish football association . the club admitted breaching ` dual ownership ' rules by allowing ashley into ibrox .\nlabour leader ed miliband has rushed to scotland to shore up his hope of becoming prime minister . but a damning poll shows almost half of scots are ready to back the snp . 49 per cent of people plan to vote for the snp , with just 25 per cent backing labour . there has been a surge in support for the party since the independence referendum .\nluka modric has sprained a ligament in his right knee . the midfielder could miss the rest of the season . gareth bale is also out injured after picking up a calf injury . real madrid beat malaga 3-1 on saturday . carlo ancelotti 's side face atletico madrid in the champions league .\njavier hernandez scored winner against atletico madrid on wednesday . manchester united and real madrid agreed a deal last season worth # 15m . hernandez will return to manchester united at the end of the season . west ham , swansea and southampton are all interested in the mexican . cristiano ronaldo is considering la galaxy and lafc as possible destinations .\nellen weirich has opened le femme finishing school in new jersey . offers training to those undergoing sex change operations or cross-dressers . offering lessons on how to walk , talk and dress like a lady . also gives clients a complete male-to-female makeover .\ntel aviv university and unispectral technologies are behind the system . they say it works by analysing a materials ` hyperspectral signature ' the signature is its unique chemical fingerprint . it could help a range of industries such as food and drink , healthcare and the defence sector .\nswastika and word ` scum ' sprayed on conservative offices in aberdeen . a ` q ' was also added to the blue front door , some people say stands for quisling . it comes six months after buildings and polling stations were defaced . police scotland is investigating .\nbooker prize award-winner has revised the theatrical adaptation of her tudor novels . the title of her second book bring up the bodies has been ditched in favour of ` wolf hall ii ' the play will open at the winter garden theatre in times square tomorrow .\nsbs journalist scott mcintyre took to social media to tweet ` inappropriate ' comments on the day of the centenary services . mcintyre referred to the anzac 's landing on the gallipoli peninsula in turkey . the sbs journalist accused the australian diggers of committing war crimes . the tweets were met with disgust by twitter users who began the hashtag #sackscottmcintyre .\nan ocean photographer has captured the unique moment ocean foam hits the sand . lloyd meudell started taking images of the sea with a gopro after being an avid surfer his entire life . the 40-year-old takes most of his shots on kiama beach spanning to gerrigong beach on the south coast of nsw .\nmanchester united face manchester city at old trafford on sunday . robin van persie has declared himself fit for the derby after missing six games . van persie suffered an ankle injury in united 's 2-1 defeat at swansea . the 31-year-old has scored 10 goals in 24 premier league games .\nteenager , played by pete davidson , was testifying in court . he was accused of raping his teacher , played by cecily strong , 32 . he told court the affair lasted five ` glorious weeks ' for extra credit . the youngster even fist bumps the judge at the end of the clip . twitter users slammed the sketch , calling it ` gross ' and a ` new low ' for show .\nyoutube user joe penna solved 1,296 rubik 's cubes 961 times to create the video . the animated video features a robot building a spaceship and finding love . penna was assisted by animator jeff schweikart and took between three-to-four days to complete the project .\nin the april issue of paper magazine , kanye wrote an essay about his ` world dream ' the 37-year-old rapper also discussed his love for his daughter north and his desire to help younger artists . he also discussed the fashion industry , saying that he finds it ` fun ' to be famous and that he does n't ` want to be a professional '\ngareth huw davies visits gran canaria for a taste of the island 's style . the island is said to have the best climate in the world . the three-mile-long las canteras beach is a must for sun worshippers . old las palma is a unesco world heritage site for its architecture .\nnew aldi store in avlaston , derbyshire , officially opened its doors at 8am . company gave away golden tickets to the first 100 people through the door . more than 200 people were found queueing outside the store . former derby county player craig ramage cut the ribbon at the event .\nnurulnus nazarbayev won 97 per cent of the vote in the presidential election . he said it would have been ` undemocratic ' to make his victory more modest . the 74-year-old former steel worker has ruled the oil-producing nation since 1989 .\nbarcelona beat paris saint-germain 3-0 at the nou camp on wednesday night . neymar opened the scoring for the catalan side in the 18th minute . luis suarez doubled barcelona 's lead in the 67th minute with a stunning finish . suarez scored his second goal of the game in the 79th minute to make it 3-1 to barcelona .\nbritish-born afzal khan is accused of conning customers and financial firms . he allegedly obtained loans for cars that he never delivered . khan , known to his clients as ` bobby ' , opened the emporio motor group in 2013 . he has now been placed on the fbi 's 10 most wanted ` white collar criminals ' list . federal agents fear he may have fled the country and have offered a $ 20,000 reward .\nchelsea beat manchester united 1-0 at stamford bridge on saturday . eden hazard scored the only goal of the game to move chelsea within two wins of being crowned champions . jose mourinho has warned his players they still have work to do . the blues have just two more games to win the premier league title .\nmanchester united face chelsea at stamford bridge on saturday . louis van gaal 's side are currently seventh in the premier league . wayne rooney may have to drop back into midfield against chelsea . michael carrick and daley blind are two of four players ruled out . phil jones and marcos rojo are also out for the red devils .\napple is investing in chinese solar power and preserving american forests that make environmentally friendly paper . the tech giant announced a new focus on using paper from trees harvested under environmentally sound conditions . apple pledged an unspecified amount of money for a virginia-based nonprofit , the conservation fund , to purchase two large tracts of timberland on the east coast .\nmichael olsen , 52 , from dartford , kent , was pursued by pcs mark bird and robert wilson . he had abandoned his car in the middle of the road after ploughing into a traffic island . when they confronted him he turned round and pulled a gun to pc wilson 's head . pc bird lunged at olsen to save him but as he did he was shot in the hand . olsen denied knowing the gun was real but was found guilty at inner london crown court .\n` clerical worker ' diane blankenship , 45 , charged with unlawful sexual activity and lewd battery . allegedly had sex with 14-year-old boy in backseat of her car in december . later had sex at 17-year , old student 's house before school .\nfloyd mayweather vs manny pacquiao is set to take place in las vegas on saturday . the wbc have launched a limited-edition jewellery range to mark the bout . fans will be able to buy one of the 1,000 18ct gold pacquio or mayweather commemorative rings among a whole range of other items .\npromise tamang has transformed herself into the disney character maleficent in a new video . she uses contouring to achieve the bone structure of the film 's character . the mother-of-six has previously transformed herself as elsa from frozen and princess jasmine from aladdin .\nnewly released footage shows atlanta hawks star thabo sefolosha being wrestled to the ground by six nypd cops outside a nightclub in chelsea , new york . moments later , the video shows his teammate pero antić being led away from the scene in handcuffs . both were arrested for trying to prevent police from setting up a crime scene . it happened on the same night that pacers star chris copeland and his wife were stabbed in an altercation outside the 1 oak club in chelsea .\nderby drew 2-2 with watford in their premier league clash on friday night . steve mcclaren 's side are six points off the top two after their latest setback . matej vydra gave derby the lead before darren bent equalised for the hornets . tom ince and johnny russell scored to put derby 2-1 up before odion ighalo equalised .\nemma walker became obsessed with achieving the ` perfect body ' within months her weight had plummeted to five-and-a-half stone . the 15-year-old was admitted to hospital twice and faced counselling . she is now a healthier eight stone and wants to help others . her mother kim waddington has revealed shocking photos of her daughter 's frail five-stone frame .\niona costello , 51 , and daughter emily , 9 , were last seen on march 30 . their car was found in a parking garage on 42nd street in manhattan . iona 's stepson , george costello jr , 45 , was staying nearby at the time . he has a long history of drug arrests and is currently in jail in florida on apparently unrelated charges . he was arrested for a ` domestic dispute ' when he returned to florida . iona 's mother , diana malcomson , said he was a ` mixed-up kid ' her brother-in-law is also facing a criminal case .\nu.s. national defense reserve fleet was established in 1945 to provide back-up for national emergencies . at its peak in 1950 , the fleet consisted of 2,280 ships moored across the united states . today , just over 120 ships remain , posing a risk to the environment in the bays where they are moored . the ships , jokily known as the ` mothball fleet ' , is so rarely used that many of the ships are falling apart .\nnasa scientists in california have revealed new images of the dwarf planet ceres . they reveal new views of the two brightest spots in a crater . however , scientists are still not able to explain what they are . several theories currently exist for what they might be , with the favoured being salt flats or ice - both reflecting sunlight . but dr marc rayman , dawn 's mission director and chief engineer , said it 's ` too early to say what they 're ' dawn will begin its first science orbit around ceres on 23 april .\na series of mysterious cardboard signs have appeared in milford , surrey . written in black marker pen the messages include ` please forgive me ' and ` we need to talk ' the signs have sparked speculation as to the identity of the author . do you know who wrote the mysterious cardboard sign ? email flora.drury@mailonline.co.uk .\nsunderland host newcastle in the premier league on sunday . dick advocaat will welcome back lee cattermole after missing the defeat to west ham united . cattermole was the only man told he will definitely start against newcastle . the midfielder has missed a significant proportion of the campaign through injury .\nitalian bio-designers mhox have unveiled project to 3d print organic tissues . they say they could replace and even enhance the vision of a normal eye . the project would combine biological tissue with microscopic wireless technology . it could be available by 2027 and could replace the eyes of people with disease .\nxherdan shaqiri joined inter milan from bayern munich in january . the swiss international has been dropped to the bench in recent matches . reports suggest that inter are looking to offload the attacking midfielder . but roberto mancini insists shaqiri will not be leaving the club .\ncallum wilson was brought down by lewis buxton but was not awarded a penalty . bournemouth were held to a 2-2 draw by sheffield wednesday at dean court . eddie howe was frustrated that his side were not awarded their 16th penalty of the season . owls boss stuart gray revealed buxton believes he got a touch to the ball when tackling wilson .\njulian zelizer : boston marathon runners will run with lingering memories of 2013 blasts . he says with time and healing , the city has moved on , and that is a blessing . he notes that the trial of dzhokhar tsarnaev proved the u.s. judicial system works . zelizer says police officers are not adequately trained for weapons that they have now .\nyour hands give clues to what is sometimes called ` brain sex ' -- the way your brain reflects your gender . according to popular mythology , men tend to be more obsessed by things such as cars and obscure facts . women , on the other hand , are said to be better at empathy and understanding what another person is feeling or needs .\nfirefighters rescued three girls and a boy , ages 9 to 13 , from their philadelphia home sunday . police say their mother locked them in the basement for 15 hours without food or bathroom . the woman , a single mother who reportedly works at the philadelphia international airport , is now facing four counts of endangering the welfare of a child . a family friend said the mother locked her kids in the cellar because one of them stole money .\nendangered bears are dying at a rate of two a day on illegal bile farms . more than 700 asiatic black bears have been butchered in vietnam in past year . paws , meat and gall bladders are sold to china for use in traditional medicine . in halong bay , 30 of 49 captive bears have died in the last three months . government has ordered 19 bears to be taken to sanctuary in tam dao .\nbristol city won promotion to the championship on tuesday night . the robins beat bradford city 6-0 at valley parade . they are 10 points clear of preston north end in league one . aden flint has been a key player for steve cotterill 's side this season . the defender was named sky bet league player of the month for march .\nmesut ozil says he is playing his best football since joining arsenal . the german star was off the pace at the start of the season . ozil was a key player in germany 's world cup win . the 26-year-old says he has come to terms with the premier league .\ndelonte martistee , 22 , and ryan calhoun , 23 , have been suspended from troy university in alabama . the two were arrested this week after police uncovered cellphone footage of the two of them assaulting an unconscious girl at the spinnaker beach club in panama city , florida last month . the video allegedly shows hundreds of people gathered around the girl as the men violate her while she lays on a beach chair . the unidentified victim believes she was drugged before the incident .\nrobert streeter and robert hoehn set out to discover clever people in the 1930s . their book , published in the uk , has been republished and is full of tricky questions . here we offer you a selection of its tortuous tests to discover if you are a genius .\nnew study by consumer reports in the us has found 60 per cent of packaged prawns tested were found to contain traces of harmful bacteria . scientists found traces of e.coli , mrsa , salmonella and vibrio - a major cause of food poisoning . majority of shrimp sold in the uk come from farms in india , indonesia and thailand .\nindonesia 's attorney-general h.m. prasetyo has praised the firing squad that executed bali nine pair andrew chan and myuran sukumaran . mr prastyo said that ` all shots were done perfectly ' at the execution . he dismissed australia 's withdrawal of its ambassador as a ` momentary reaction ' to the executions . prime minister tony abbott announced australia will withdraw its ambassador to indonesia in an unprecedented diplomatic response .\nrochelle holmes ballooned to 20st 5lbs after eating four takeaways a week and smoking 20 cigarettes a day . she was told she was at risk of suffering a stroke at just 23 and could die before 25 . the 26-year-old from county durham spent # 30 a week on takeaways and never learned to cook . she lost 8st after changing her diet and exercising and is now a size 12 .\nbeatrice is attending the condé nast international luxury conference . the royal arrived in florence yesterday for the first day of the event . she posed with designer tory burch this morning and met karl lagerfeld . last night she enjoyed a lavish party at the palazzo corsini .\nmotorists were stuck in a major traffic jam on the m25 in kent . a stretch of the road was closed so an air ambulance could land to rescue a motorcyclist . but during the hour-long delay motorists started kicking a ball about . police tweeted warning motorists to remain inside their vehicles .\nnadine crooks , 33 , from smethwick , west midlands , was told she was infertile . she stopped taking contraceptives after birth of her fourth child . doctors said she had polycystic ovary syndrome and would never conceive again . she fell pregnant for a fifth time last november . nadine is expecting two boys and a girl due in july .\nus basketball star thabo sefolosha blamed six officers from the new york police department for breaking his leg . the atlanta hawks player made the statement through his club 's twitter account , saying that his injury had left him in ` great pain ' and ` was caused by the police ' sefo and teammate pero antić were arrested for allegedly preventing police from setting up a crime scene . the arrests happened as police were trying to investigate the stabbing of indiana pacers star chris copeland .\nlabour , ukip and the green party have added their support to the campaign . previously , only the liberal democrats had promised to add the lessons to the curriculum . shadow health secretary andy burnham said the issue was ` close to his heart ' the mail on sunday is campaigning to make sure all schools teach basic first-aid techniques .\nkenyans are debating what to do to combat al-shabaab . the number of people killed in the garissa attack is plaguing kenyans with self-doubt . kenya 's incursion into somalia has made the group more diffuse , experts say .\nrickie lambert should have joined aston villa in january . he has been given a poor run of form by brendan rodgers . lambert has scored for his boyhood club liverpool in the premier league and the champions league . he should be picked ahead of mario balotelli . balotlli was useless against aston villa on saturday . lambert should be given more football .\nmum sent out invitations to her son 's first birthday party . she lists very specific requests for the boy , including some large and expensive gifts . the email was shared on reddit , sparking an online backlash . one user said : ` this child is going to be a spoiled f ****** nightmare as an adult '\nliverpool-born natasha jonas has announced her retirement from boxing . the 30-year-old was the first female boxer to represent great britain in an olympic games . jonas took on eventual gold medallist katie taylor in the first round of the women 's lightweight competition at london 2012 .\nphiladelphia office of transportation has launched a campaign to get pedestrians off their phones . a video shows characters in ` safety suits ' talking to residents about the dangers of phone use . campaigners say that 37 people died from being hit by cars last year in the city . some have criticized the campaign for focusing too much on pedestrians and blaming them for getting hit by drivers .\nfreddie gray , 27 , died sunday after he ` had his spine 80 percent severed at his neck ' following his arrest by four bicycle officers for violation . baltimore mayor stephanie rawlings-blake vowed to ensure the city held ` the right people accountable ' after his early-morning death . gray 's stepfather , richard shipley , confirmed the death of his stepson .\nthe quota system was abolished today after 30 years . this allows dairy farmers to produce as much milk as they like . move is expected to drive a spike in production , particularly in ireland , germany and the netherlands . price war over cost of milk is likely to break out , bringing down the price for consumers .\njay z launched a string of tweets on sunday defending his music streaming service tidal . he said that ` actions will speak louder than words ' as he continues to fine tune the service . the rapper and businessman said that there is a ` smear campaign ' against tidal by big companies . tidal charges users $ 19.99 a month for its premium music streaming . service . it aims to take on rivals such as spotify , pandora and apple 's itunes .\nceltic were held to a 1-1 draw by inverness in the scottish premiership on saturday . leigh griffiths opened the scoring for celtic after just 135 seconds . edward ofere equalised for invernesses from close range a minute later . the two sides will meet in the semi-final of the scottish cup on sunday .\ngreen brain project is a collaboration between researchers from the universities of sheffield and sussex . their final aim is to build a robot that thinks , senses and acts just like the tiny insects . so far , scientist have only managed to clone the part of the bee 's brain which allows it to see .\nwill stack , 22 , a u.s. army national guardsman , was pulled over by cop in lexington county , south carolina . he says he used empty median lane to access left turn lane , which was full . says he did everything the cop said , including speaking politely and turning music down . but moments later , he was stopped for ` improper use of the median ' mr stack , who is african-american , says : ' i did it out of habit ' video was filmed minutes after the traffic stop and posted on facebook . it has since been viewed 1.7 million times and received mixed reaction .\npictures show a young bear being chained to a tree and attacked by dogs as part of a baiting competition . controversial contest held in the forests of the diamond-rich sakha republic , eastern russia . the dogs have to bark as loudly as they can with their cajoling scored out of 100 points .\njames marshall 's father noel marshall married tippi hedren . the couple lived with a pride of lions in their los angeles home . they wanted to raise awareness for inhumane treatment of cats in captivity . the family of six lived alongside the pack for six years before filming . 70 members of the cast and crew were injured during production . the film will be re-released 34 years after it debuted in 1981 .\ntrain travelling between lichfield trent valley and longbridge was stopped . passenger christopher talbot said he found excrement in a newspaper on the floor . london midland said cctv images of the culprit would be passed onto police for investigation . service was cancelled at birmingham new street so carriage could be cleaned .\nbournemouth travel to reading in the championship on wednesday . eddie howe 's side are currently top of the table . middlesbrough are fourth in the table and have four games to play . aitor karanka is targeting wins from all of his side 's remaining fixtures .\ncarl thompson , 32 , from dover , kent , has ballooned to 65 stone . the former factory worker has always had weight issues . but after the death of his mother in 2012 he turned to food as a comfort . he has put on 30 stone in just three years and is now bed-bound . he spends # 200 a week on takeaways and online food shopping .\nsydney father shows how to put his baby to sleep in under a minute . nathan dailo uses a piece of white tissue paper to stroke his son seth 's face . the three-month-old boy is then seen drifting off in just 42 seconds . the video has received almost 26,000 views since being uploaded two weeks ago .\nthe turin shroud went on display to the public for the first time in five years . more than one million people have already booked their slots to see the piece of linen . the 14 foot-long linen has the faded image of a boarded man . it is believed to have been used to wrap jesus ' body in the 13th century .\nalan turing wrote notes at bletchley park code-breaking headquarters in 1942 . they paved the way for computer science and are believed to be only extensive turing manuscript known to exist . notebook was among the papers he left in his will to friend and fellow mathematician robin gandy .\nfraser ross is embroiled in a $ 1million legal dispute over his behaviour . the multi-millionaire founded the kitson fashion brand in aberdeen . he is accused of swearing at staff at the kits on branch in los angeles airport . kitson is popular with celebrities including victoria beckham and lady gaga .\nformer nfl star aaron hernandez and boston bombing suspect dzhokhar tsarnaev are on trial . sen. rand paul announced his presidential bid in louisville , kentucky . chicago voters will head to the polls in a runoff for mayor . in ferguson , missouri , the shadow of michael brown will loom large over the city 's elections .\nal qaeda offers 20 kilograms of gold to anyone who kills or captures houthi leader . al qaeda in the arabian peninsula is one of several factions fighting to control yemen . the houthi rebels are shia and widely believed to be supported by iran . at least 540 people have died as a result of the fighting , the united nations says .\nsunderland midfielder adam johnson has been charged with child sex charges . the 27-year-old has not been suspended by the club despite the charges . johnson could face up to 14 years in prison if found guilty . the midfielder is set to feature against stoke on saturday .\nchristian migrants say they formed a ` human chain ' to stop attack . they claim muslim men tried to throw them overboard after argument about religion . 12 christians from ghana and nigeria were allegedly thrown into sea . 15 men were arrested on suspicion of ` multiple aggravated murder motivated by religious hate '\n19 kids and counting stars jessa and ben seewald are expecting their first child on november 1 . the couple are known for their health-conscious lifestyle . jessa has revealed that she is trying to make healthy choices during her second trimester . the baby will be the sixth grandchild for jessa 's parents jim and michelle .\njamyra gallmon , 21 , has been charged with first-degree murder while armed for allegedly killing david messerschmitt , 30 , on february 9 . her roommate - and alleged girlfriend - dominique johnson was arrested on wednesday and is accused of being an accomplice . according to a police affidavit filed in court on thursday , she stole just $ 40 and the victim 's metro smartrip card . the lawyer was found with multiple stab wounds to the back , groin and abdomen along with one wound which pierced his heart and another which hit his spinal cord .\nthe majority of the world 's volcanoes are found deep underwater . scientists have now been able to record one of these eruptions . they used hydrophones to record the sound they produced and analysed it . the bubbling lava erupting from hades produced a distinctive acoustic signature . hades produced large lava bubbles that were released slowly , while prometheus gave off explosive releases of tiny gas bubbles . this could allow scientists to monitor undersea volcanoes far more effectively than they have before .\nblue origin is among a handful of companies planning to offer commercial spaceflight services . the new shepard system will take astronauts to space on suborbital journeys . it will launch from blue . origin 's west texas facility near van horn , texas . the capsule will fly dozens of times unmanned before the test flights include pilots .\nthe disturbing scene was filmed by sylvia freedman on tuesday . she was on holiday at avoca beach in the central coast , about 95kms north of sydney . the beach was covered in a grotesque , yellow , jelly like substance . it stretched out more than 15 metres from the top of the beach pathway to beyond the water 's edge . ` whenever the wind blew , the foam just felt like you were in a snow globe , ' ms freedman said . it comes as the worst storm in a decade continues to batter the state .\ncivil unions between people of the same sex will soon be recognized in chile . president michelle bachelet enacted a new law on monday . it will give legal weight to cohabiting relationships between two people of same sex . the law is intended to end discrimination faced by common-law couples .\nprince harry has declared ` selfies are bad ' during his visit to canberra . he was greeted by an enthusiastic crowd at the australian war memorial . the prince is in australia to report for official military duty . he is expected to train on helicopter simulators and join bush patrols .\nvera maresova , 50 , confessed to killing five women and one man at hospital . she was initially arrested over the death of a 70-year-old woman last august . but she has now admitted killing five more people between 2010 and 2014 . dubbed ` nurse death ' by local media , maresovas injected potassium straight into blood stream . this caused her victims to suffer heart failure and eventually death .\ncanadian expat lisa webb moved to france in 2009 . she was nervous about sending her vegetable-phobic daughter to school . but she was shocked to see rôti de boeuf and cordon bleu de dinde on the menu . the three-year-old ate everything but vegetables .\nseveral wrecks shut down highways during the morning commute in colorado on friday . no serious injuries were reported in the crashes on u.s. highway 36 between boulder and denver , but tow-truck drivers were kept busy hauling away damaged cars . in aurora , near denver , one person died after being thrown from an oldsmobile bravada that lost control and rolled on an icy stretch of interstate 225 .\nan fbi agent claimed that a saudi family had ties to the hijackers . the family left their florida home two weeks before the 9/11 attacks . the fbi said the report was ` unsubstantiated ' and ` poorly written ' the review commission has not delved into the claims . some observers have speculated that saudi arabia helped back osama bin laden . former florida senator bob graham said there has been a consistent effort to cover up saudi involvement in the attacks .\nfootage captured at spring garden station in philadelphia on tuesday . shows youngsters viciously attacking victims just seconds before train pulls in . they then pull them to the ground , punch them and repeatedly stamp on their heads . witnesses tried to intervene , but could n't break up the group . brawl even spilled onto tracks , with one person falling onto the line .\ndallas , texas , father antonio valente learned that his facebook photos were being used on a fake account . the profile used his pictures but the name ` johnson michael lynn ' and claimed he was from ohio . the scammer told the woman he wanted to marry her . after a few weeks of friendly conversations with heinrich , the man said he wanted . to marry the woman and move to austria . heinrich wired him $ 4,000 .\nsen. rand paul , a libertarian-leaning kentucky senator , launched his presidential bid on tuesday in louisville . on wednesday he sparred with today host savannah guthrie about his past foreign policy positions . guthrie rattled off a list of issues where she said the senator had flipped and flopped -- iran , aid to israel and defense spending -- and paul cut her off . ` why do n't we let me explain instead of talking over me , ok ? ' he griped . ` no , no , no . no , no , no , . no , no , you 've editorialized . listen , you have editorialized '\nhawaii 's legislature passes a bill raising the minimum legal age to buy tobacco to 21 . gov. david ige 's signature would make it law in hawaii as of january 1 , 2016 . forty-six u.s. states permit the sale of tobacco to anyone 18 or older .\nelephant was relaxing by a pool of water with its family in kruger national park in south africa . the buffalo bull wandered too close to the elephant and began drinking from its pool . the frustrated creature tried to squirt the bull with water from its trunk , but missed .\ncharles collins , 28 , jumped onto subway tracks to rescue alfred mcnamee , 80 . the elderly man had slipped and fell onto electrified rails at 15th st station in philadelphia . collins was filmed on surveillance footage and praised for his bravery . but he insisted that he was acting on ` instinct ' and is ` not a hero '\ned miliband to announce plans for first-time buyers to pay no stamp duty . labour claims its tax break would save nine in ten first - time buyers # 5,000 . party says it would be paid for by tackling tax avoidance by landlords . labour says it will oversee construction of a million homes by 2020 .\nthe nfl has its first full-time female game official . sarah thomas , who has worked exhibition games , will be a line judge for the 2015 season . the 41-year-old was in the league 's officiating development program in 2013-14 and worked some team minicamps last year . she 's already broken ground in the officiating field as the first woman to work college games in 2007 .\nthe casket of lauren hill has been moved into the arena where she made her first basket in a college game just five months ago . the 19-year-old defied doctors ' expectations after she was diagnosed with a rare form of inoperable brain cancer just after her 18th birthday . she was told she would not live past december but died four months later this month after playing with her college team at mount st joseph university in cincinnati .\nlifestyle guru gwyneth paltrow is selling a sun proof t-shirt in her goop shop . the swim tee by land 's end provides upf 50 sun protection . to save packing space , sunshine hats have designed a two-in-one product .\n` you can just see someone on the shoulder of this monster ' : three surfers attempted to scale a huge wave at manly 's deadman 's point . a staggering 312mm of rain fell in 24 hours in dungog , in the hunter region of new south wales , where three elderly people were found dead . four houses were washed away in the town while a horse was rescued from drowning by a woman in a tin boat .\nwilliam and kate are yet to give birth to their first child . the couple are still waiting for the news of their first baby girl . the birth of a girl would be a significant moment in the british monarchy . a girl would fill a void in the royal bloodline . the monarchy needs a strong female presence , writes andrew hammond .\na daredevil risked life and limb to be named world 's most talented . alassan gobitaca is a swedish guinness world record holder . he jumped over a sports car travelling at him at 60mph . the clip features on interactive tv show world ` s mosttalented .\nlouis van gaal praised michael carrick and wayne rooney last week . the manchester united boss said they are two of his most bright players . van gaal is frustrated by a lack of football intelligence at united . ander herrera and phil jones are among those who are not bright .\ngertrude weaver , 116 , passed away on monday in camden , arkansas . she became world 's oldest person on wednesday following death of 117-year-old misao okawa in japan . jeralean talley , 115 , of detroit , is now the world 's oldest person . weaver asked president barack obama to attend her birthday party on the fourth of july .\nthe towie star is the face of fake tan brand , sunkissed . she has called on her younger sister lydia to join her in the campaign . the sisters , who show off their toned legs in the new shoot , said it was ` really lovely working together '\nwarrington wolves host castleford tigers in first utility super league on easter monday . reigning man of steel daryl clark is set to lead the line for warrington . the hooker left the tigers at the end of last season but still follows their fortunes and hopes they do well .\nthe queen has dropped out of the top 300 richest people in britain for the first time . she placed 302nd on the sunday times rich list with a wealth of # 340m . her assets have been dwarfed by hundreds of financiers and businessmen . britain 's super-rich are now more than twice as rich as they were in 2009 .\nsoftware extracts relevant colour information from images or artworks found online . plot above is based on 94,526 images for the years 1800-2000 . the graph shows a clear trend toward more blue paintings toward the end of the 20th century . all colours increasing except for orange .\nwill hatton has been travelling the globe since he was 18 . the 26-year-old has visited nearly 50 countries over the last seven years . he has recorded his adventures in his blog the broke backpacker . mr hatton picks up odd jobs wherever he travels . he spends only $ 100 a week on all of his expenses .\nthe native australian marsupial once occupied more than 70 per cent of the australian mainland . now it 's disappeared from around 80 per cent . there are only small populations remaining in queensland , the northern territory and western australia . the save the bilby fund have developed a captive breeding program .\nhillary clinton has more than 3.6 million twitter followers , but only 44 per cent of them are actually active users . at least 15 per cent -- more than 544,000 -- of her followers are completely fake . just 4 per cent of president barack obama 's twitter followers are considered fake . michelle obama 's audience is 25 per cent fake , along with 21 per cent for vice president joe biden . clinton 's facebook fans are also significantly inflated , with more than 46,000 of them listing ` baghdad ' as their hometown .\nkate brower was assigned to cover the obama white house . she became intrigued by the workings of the mansion after watching downton abbey . the staff all live out in washington and commute in . the hours are long and those on duty can not go home until the president retires and goes to bed .\nbarry hawkins beat matthew selt 10-9 in the first round of the world snooker championship . hawkins led 9-4 before selt launched a comeback to win five frames in a row . hawkins will play either mark allen or ryan day in the second round . former champion neil robertson beat jamie jones 10-2 .\nholland beat spain 2-0 in a friendly in amsterdam on tuesday . spain lost 5-1 to holland at the group stage of the 2014 world cup . but gerard pique insists the national team 's state of health is good . spain are second in qualifying for euro 2016 and host slovakia in september .\n16 states in the u.s. have seen cases of bird flu since mid-december . the cdc says the risk of human infection is low . the virus does not spread through people eating chickens or eggs . the usda is working on a potential vaccine for the birds .\nsam burgess will start at blindside flanker for bath against toulouse on friday night . burgess began his union career in the centre but is set to finish the season as a back rower . the former rugby league superstar spent time with stuart lancaster 's england squad during the six nations . burgess was recently linked with a move to the nrl with manly .\nreplica of 18th century french navy frigate l'hermione , set sail on its maiden voyage to the united states off the coast of fouras , southwestern france . the ship will head for yorktown , virginia , where lafayette and his forces played a critical part in a decisive battle against the british . the real version carried france 's marquis de lafayette to help american colonists in their war of independence . lafayette crossed the atlantic on the original hermione in 1780 to tell his friend george washington , commander of the american insurgents against british imperial rule .\nboris johnson said more jobs were being created was ` one of the absolute moral triumphs ' of the government . the london mayor is standing to be a tory mp in a west london constituency . comments will be seen as an attempt to position himself as a future party leader .\nnew generation of suncreams promise to protect against the damage from infra-red a rays . others say they protect the skin from the inside . here , dr bav shergill , a consultant dermatologist , gives his verdict . and we rate them ... .\nthe office of the schools adjudicator criticised the oratory school in london for engaging in ` social selection ' the state-funded school was ordered to revise its admissions policy last year . watchdog said it was biased against working-class and non-catholic children . but high court judge branded the decision by the watchdog ` flawed ' and ` unreasonable '\nraheem sterling has rejected a new # 100,000-a-week deal with liverpool . pedro would command wages of # 90,000 a week at anfield . the 27-year-old is set to consider his camp nou future at the end of the season .\nmanchester united goalkeeper anders lindegaard is enjoying a spot of sunshine with his wife misse beqiri . the danish international tied the knot with the swedish model last year in a romantic beach wedding in mauritius . lindegaards has struggled for minutes since arriving at old trafford in 2010 .\nresearchers from the technical university of braunschweig in germany have shown that passive smoking affects plants too . they found peppermint plants can take up high concentrations of nicotine from contaminated soil and plumes of smoke . the finding may explain why some spices , herbal teas and medicinal plants have high concentrations . of nicotine in them , despite none being allowed in insecticides .\nsesame street favourite and surgeon general vivek murthy appear in campaign video . in it , elmo asks why everybody does not get a shot . dr murthy explains that getting vaccinated is crucial to keep children safe and healthy . comes amid debate over whether vaccines should be compulsory in the u.s.\nsarah wilson 's image was used to illustrate a story on orthorexia nervosa . the condition is defined by an obsession for eating ` healthily ' wilson complained to mamamia and they agreed to remove her image . the i quit sugar author was pictured alongside paleo chef pete evans . she also appeared alongside controversial wellness blogger belle gibson . wilson has a long-running feud with mamamia founder mia freedman .\ndele alli signed for tottenham for # 5million in january . the 19-year-old has been loaned back to mk dons . alli was crowned the football league young player of the year on sunday . the midfielder is excited to play under mauricio pochettino .\nbowen , 36 , sold more than four million copies of a street cat named bob . he has also churned out multiple spin offs -- earning # 500,000 in just three years . despite this he continued to have his rent paid for by housing benefit . since 2012 the taxpayer has forked out # 15,500 for bowen to live in flat .\nmodel renee somerfield has responded to the backlash against her new weight loss advert . the yellow protein world ad features a bikini-clad renee next to text reading ` are you beach body ready ? ' the sight of the 24-year-old 's curves towering above train platforms caused a stir among some feminists and body image campaigners .\nian brady , 77 , has revealed he is a ukip supporter and thinks dimbleby is an ` establishment dumpling ' he wrote the letters from his bed at ashworth psychiatric hospital in merseyside . brady was jailed for life in 1966 after torturing and killing five children with myra hindley . the victims were lured to their deaths , sexually tortured then buried on saddleworth moor .\ngareth bale joined real madrid for # 86million from tottenham hotspur in 2013 . the welshman has been linked with a move to manchester united this summer . but zinedine zidane says real madrid will not sell bale this summer . the frenchman says bale was a big part of real 's success last season .\nbruce jenner , 65 , told diane sawyer on friday that he identifies as a woman . he told sawyer that he has been cross-dressing for more than 40 years . he married his college sweetheart chrystie crownover in 1972 . the couple had a son burt and a daughter cassandra . chrystie was the first to learn about bruce 's gender confusion and has kept his secret for 43 years .\ncleveland cavaliers beat boston celtics 113-100 to take 1-0 lead in best of seven series . kyrie irving scored 30 points in his playoff debut for the cavs . lebron james added 20 points in first home game since may 2010 . los angeles clippers beat san antonio spurs 107-92 in game 1 . memphis grizzlies beat portland trail blazers 100-86 in game 2 .\ncontract sent out to all new pupils at turnham primary school in london . it includes a demand not to use ` transphobic language ' in the playground . children must also promise not to be homophobic and racist . but parents say it is ` bonkers ' as children are not even aware of the issue .\nkatie price still regularly checks kieran 's phone . she makes him tell her whenever she is going out . kieran cheated on katie with two of her best friends last year . katie decided to forgive her husband for cheating . relationship expert tracey cox says it can be hard to move on .\nroman abramovich has never spoken in public since buying chelsea . marina granovskaia is the club 's transfer and contract negotiator . she is confirmed to speak at a leaders conference at stamford bridge . granovskaia sold defender david luiz for a remarkable # 50million .\nnew zealand 's lydia ko finished the first round at the ana inspiration at 1-under 71 . the 17-year-old equalled former world no 1 annika sorenstam 's record of 29 under par rounds in a row . sorenstam set the lpga tour mark in 2004 .\njessica kemp from eustis says teachers at seminole county elementary threatened to remove her son logan from class . she claims they said the oils smell and are a distraction to youngsters around him . the 32-year-old says she applies the liquid to his head and neck as it helps him keep calm and focused .\ntania rahman , 27 , was asked to run a stand at st george 's day event . but when she asked to be counted in she was told her stall was not ` english-themed ' salisbury city council has now apologised for the ` poorly worded ' email .\nmcdowell carded a final round of 73 on sunday to finish six over par . former us open champion is now a combined 24 over for the year 's first major . mcdowell : ` it would be sacrilege not to play here no matter how much it frustrates you ' the welshman admits he has to work on his speed putting .\nnational union of teachers expected to call for a vote on industrial action this weekend . the ballot of its 300,000 members would take place after the election . last time teachers went on strike was in july , when 21 per cent of schools were forced to close .\ncoronation street star samia ghadie and boyfriend sylvain longchambon visited new york . the couple paid their respects to those lost on 9/11 during their four-day trip . samia also enjoyed a bateaux new york cruise of the hudson .\nbones were found fused to the walls of a cave in lamalunga , near altamura , in southern italy . dna extracted from the bones suggests they belong to an adult male . he fell into the cave 128,000 to 187,000 years ago and probably starved to death .\npeter thurston , 80 , builds caravan boat to take his mind off recent divorce . he spends his days on river swale in kent and enjoys views of the countryside . he spent # 4,000 building the vessel and it has a shower , toilet , double bed and two tables .\nphilippe coutinho is becoming liverpool 's go-to guy , says jamie carragher . coutinho starred for liverpool in their 2-0 win against newcastle united on monday night . liverpool sold star striker luis suarez to barcelona for # 75million during the summer .\nlionel messi scored with the last kick of the game to make it 400 goals for barcelona . luis suarez opened the scoring after just 56 seconds with a first-time strike . dani parejo missed a penalty for valencia in the ninth minute . messi scored his 400th goal in 471 games for barcelona in the 2-0 win .\nmuslim brotherhood leader mohamed badie is sentenced to death by hanging . he and 13 other members of the group are also sentenced to life in prison . the sentences will be appealed . the defendants were arrested in a crackdown on supporters of former president mohamed morsy . they were accused of plotting terrorist attacks against state facilities .\nthe droops coffee pods will cost around # 4 for a pack of 20 and the machine will cost # 80 . it is the brainchild of singaporean designer eason chow . he says he was inspired by sugar-coated sweets dispensed from gumball machines .\nstudy of 1,500 teachers found 30 per cent have suffered online abuse by parents . this type of bullying is on the rise accounting for 40 per cent of all reported online insults this year compared to just 27 per cent last year . one teacher said they had been sworn at by a parent online over a pe lesson , while a female dance teacher said she had been called a ` paedophile '\nofficials say a right wing group has published names , numbers and addresses of senior and former officials with several government agencies . the group , or possibly individual , released the info of employees of the cia , fbi and dhs on the site pastebin.com . the post claims to reveal the information of fbi director james comey and dhs director charles johnson , in addition to previous directors . the department of homeland security confirmed the leak but would not elaborate on who was affected or how many addresses had been leaked .\nnew dossier could conceal the name of a second person , it is alleged . 1986 file mentioned in investigation into alleged government cover up . home office has refused to comment on the dossier . up to 30 people have now reportedly told police they were abused by lord janner . more have come forward since it was announced he will not be charged with child sex offences .\ntornado sirens blare in kansas as several storms bring reports of twisters . a tornado is reported near goddard , but moves to the northeast . the national weather service says a tornado may have touched down in potosi , missouri . more storms are expected in the midwest , mississippi river valley , tennessee river valley .\nbarcelona beat celta vigo 1-0 in el clasico at the balaidos stadium . jeremy mathieu headed home in the 73rd minute to give barcelona the lead . celta 's fabian orellana was sent off for a challenge on sergio busquets . lionel messi missed the game through injury and neymar was also absent .\nrain disrupted practice rounds ahead of the masters on tuesday . temperatures are expected to reach 90f on the first day of play . a cold front coming over georgia is likely to bring more stormy weather and strong winds . the tournament begins on thursday april 9 . tiger woods is bidding to complete a career grand slam at augusta national .\na woman from south carolina is suing harlem tattoo parlor black ink for a chest piece that left her disfigured and in pain . the harlem tattoo shop 's owner and artists star in their own reality show , black ink crew , which has had three seasons . asabi barner says she trusted the artists , but came away with a tattoo that remains painful a year later .\nfamily on new york 's long island tried to keep their snowman alive for as long as possible , but it melted this weekend in 70-degree temperatures . mike fregoe and his family built the snowman in january , when it grew to be more than 9-feet tall . but since the beginning of april , the snow man began shrinking and the family started a facebook page asking for ` snownations ' to keep it alive .\ndr xiao-ping zhai says she has helped one thousand women conceive using chinese medicine . the clinic in harley street , london , is one of the most expensive in the uk . she uses acupuncture and a bespoke combination of herbs to help conceive . one of her patients , jane parker , had her son rupert at 41 .\na snowboarder in japan was filmed while enjoying the slopes in the country 's chiisagata district . the man was using a selfie stick to film himself in action , but was unaware of a nearby chairlift . the empty chairlift appears out of nowhere and clatters the snowboarders over the head .\n71 per cent of voters say they are choosing politicians and have no need to know about their spouses or offspring . only a quarter say it is important to know about leaders ' domestic lives . party leaders have made their wives more prominent in this election campaign than ever before .\nviolent solomon khoorban attacked two women in london nightclubs . he raped a 16-year-old and then raped a 32-year old at knifepoint in 2003 . the former gunner , now 33 , went undetected for 12 years before being caught . he was based at woolwich barracks at the time and was 21 at thetime . judge sheelagh canavan jailed him for 16 years at snaresbrooke crown court . she described him as a ` violent sexual predator ' who ruined his victims ' lives .\nkong meng xiong , 21 , of st.paul , minnesota has been arrested after he allegedly tried to force his 15-year-old girlfriend to be his traditional hmong bride . the girl told police that she and xiong had been ` dating ' in january and first had sex when she was just 14-years-old . in 2009 xion g was tried in juvenile court or sexually assaulting a 13-year old girl when he was 15 .\ngoverne was close to being put down after his leg was amputated at the joint . he struggled for self confidence and his wings were damaged . a south african tech company stepped in to design him a new leg . the 3d printed leg was designed in the shape and size of a goose leg .\ngay marriage is legal in indiana and arkansas , but they passed `` religious freedom '' bills . julian zelizer : the bills were passed by states with no previous record of public support for social equality . he says businesses with no record of support for same-sex marriage now face backlash . zelizer says businesses must show they reject discrimination to retain brand loyalty .\nbruce jenner 's highly-anticipated interview with diane sawyer is set to air on abc on friday night . his second wife linda thompson tweeted a message of support and pride for her former husband ahead of the special . the former beauty queen and actress was married to the olympic gold medalist from 1981 to 1986 . she compared his expected revelations about his personal journey to the magnitude of what he accomplished as an athlete .\nleah o'brien , 33 , died when her car was hit by a vehicle carrying two students on their way to the prom . the mother-of-two leaves behind two daughters , kori and rachel , 10 . the driver of the dodge charger that killed the beloved teacher was 19-year-old ramiro pedemonte . pedemonter was arraigned friday on charges including homicide , reckless driving , and serious injury by motor vehicle . o ' brien 's fiancé , alton hines , said he was waiting for his bride-to-be at her home when he received a call from her father saying she had been in a car accident .\nman utd boss louis van gaal has agreed to a 12-day pre-season tour of america . united have turned down offers from asia and australia . van gaal was furious after last summer 's mammoth tour of the united states . the dutchman believes his side will hit the ground running this time . united will play in the international champions cup .\nengland captain alastair cook has had a sabbatical at home . cook will lead england in three tests against west indies in the caribbean . the batsman will hope to regain the ashes from australia this summer . cook has struggled for form since being sacked as world cup captain .\nprime minister will be absent from tonight 's televised showdown . mr miliband accused pm of ` ducking ' chance to defend his record in government . the labour leader said : ` the british people expect you to turn up to the job interview ' mr cameron has pledged to find # 7billion to pay for tax cuts for lower and middle earners .\nmichael easy , 29 , from southampton , hampshire , sparked a police manhunt in 2013 . he went on the run after attacking a woman at a party and was jailed for 15 months . while on therun , he posted photos of himself in a platinum wig and dame edna-style glasses . he is now facing four months in jail after breaching a restraining order and assaulting two prison officers .\nholly barber , 25 , woke up feeling unwell and with chest and neck pains . she chalked it up to heavy drinking a few days before and thought she had a bad hangover . but when she started coughing up blood she knew it was something serious . she was rushed to hospital and diagnosed with pulmonary embolisms . blood clots were blocking the main artery of her lungs , killing the tissue . she had been treated with medication but was diagnosed with another blockage a year later . doctors found a melon-sized blockage in her right lung and she was told she was days from death .\nmercedes-benz fashion week australia came to a close on thursday night in sydney . femail take a look back at the trends emerging from the shows . the beautiful designs we ca n't wait to hang in our wardrobes . the bizarre beauty looks we wo n't be trying in real life . the best and worst trends we saw .\nnathan sellers went on divorce court with his ex , lia palmquist . he accused her of sleeping with every member of the wu-tang clan . palmquist admitted to partying with the guys from the wu , but denied that she did anything sexual with them . sellers was n't buying it and told the judge : ` she gave wu some tang '\nmore than two dozen babies born to nepalese surrogates are being airlifted out of nepal in wake of saturday 's devastating earthquake . several premature babies - and some wounded people - were ferried to israel on a small aircraft belonging to israel 's emergency rescue services . five more infants landed safely in tel aviv with their israeli families . israel said it planned to airlift 25 babies recently born to surrogate mothers out of the country this week . but other reports have said that 33 youngsters will be rescued in total .\nsan francisco police chief greg suhr has asked a police oversight committee to approve firing the officers . he called the texts ` despicable ' and says those who sent them ` clearly fall below the minimum standards required to be a police officer ' the offensive texts targeting blacks , mexicans , filipinos and gay men , which make repeated use of racist and homophobic slurs , were sent between 2011 and 2012 . the messages were discovered by federal authorities investigating former sergeant ian furminger , who was convicted of corruption and sentenced to 41 months in prison .\na 17-year-old driver held her license for one day before she lost control of her car . the mitsubishi lancer crashed into a wheelie bin before smashing into a brick wall . the driver and a passenger were taken to hospital in a serious condition . three other passengers were taken in a stable condition . police have established a crime scene at anderson road in glenning valley .\ntatyana chernova tested positive for banned substance in 2009 . but the russian was allowed to keep her world title . jessica ennis-hill has written to the iaaf to ask why . ennis hill won gold at the 2011 world championships in south korea .\ndame barbara hakin is the national director of commissioning operations for nhs england . she was accused of gagging a whistleblower who tried to warn about the impact of targets on ordinary patients . she is now facing the threat of a new inquiry into claims she put patient safety at risk in a drive to meet targets .\ndozens of canberra based department of foreign affairs and trade workers were told their jobs would be lost in a cruel april fools ' day prank . the workers were given an ` announcement ' on a big tv screen that their workplace was being closed and moved to melbourne . dfat has since reprimanded the staff member responsible for the stunt .\njamar nicholson , 15 , and his friends were hanging out in an alleyway in south l.a. before school on february 10 when two police officers approached the boys with their guns drawn . one of the teenagers was holding a toy gun that the officers thought was real and it prompted the officers to fire . nicholson was shot in the back by officer miguel gutierrez and is in pain but he says he and his friend feel lucky to be alive .\nmanny pacquiao and floyd mayweather will fight on saturday night in las vegas . the filipino boxer is the underdog going into the richest fight of all time against mayweather . pacqu xiao-manny is the reigning welterweight world champion . mayweather is selling t-shirts with the philippines flag in the background .\narsenal beat chelsea 1-0 at the emirates stadium on sunday afternoon . oscar was lucky to escape a penalty after being clattered by hector bellerin . cesc fabregas was booked for simulation after appearing to kick his leg out at santi cazorla . gary cahill was also booked for handling after the ball hit his arm .\njodie barden , 28 , has been forced to plan both daughters ' funerals . ella , eight , and chloe , one , have cockayne syndrome which causes premature ageing , an underdeveloped nervous system and a small head . they usually do n't live to see their teenage years and usually die from pneumonia . the condition is inherited and mrs barden and her husband carry the mutated gene .\nsingle mother amy murray was arrested during a screening of fifty shades of grey . she was led from the cinema in handcuffs after drunkenly assaulting a fellow film-goer . murray , 23 , of brightlingsea , essex , had been watching the film with friends . they became annoyed at her for laughing at the sex scenes . an argument broke out and murray hit jessica deadman , 23 . she admitted charges of assault and being drunk and disorderly .\nshow creator david chase explains why he shot `` sopranos '' finale . he did n't reveal whether series protagonist tony soprano lives or dies . chase 's details are a master class on how to build tension in a seemingly nondescript situation . the end is deliberately uncertain and existential , chase said .\nmail undercover reporters met the data partnership in the philippines . company has a 60-seater call centre and calls hundreds of thousands in britain . they admitted ignoring official no-call list meant to protect the vulnerable . they said they could never be honest with people about consequences of passing on personal information . various firms offered to sell personal information to the mail 's undercover team .\nwest coast railways has had services suspended after near collision . company owns the train used in the harry potter films and offers steam excursions . network rail ban means chartered services can not run until may 15 . the nationwide ban is the first since privatisation . reports say collision between steam train and high speed train was missed by a minute .\na 2.5 metre bronze whaler came into the shore at papamoa beach , new zealand . onlookers took photographs and videos of the fish as it swam around . the shark soon had enough of all the attention and swam back out to sea .\nthe unsettling video was uploaded to youtube last week . it shows a hairless creature biting through a steel cage . the video has sparked heated debates over the species of the beast . some claim it is a mythical ` water monster ' and others that it 's a diseased malaysian bear . the footage was apparently captured in shenzhen reservoir in china 's sand bay .\nicefin was deployed -lrb- and retrieved -rrb- the vehicle through a 12-inch diameter hole through 20 meters of ice and another 500 meters of water to the sea floor . video captured by icefin shows eerie footage of an active seafloor 500 meters under the ross ice shelf .\nreal madrid face atletico madrid in the champions league quarter-final second leg on wednesday night . the two sides have met eight times since last season 's champions league final . real have not won a game against atletico since that final in lisbon . diego simeone 's side have won four of the last eight meetings . real 's most humiliating defeat came at the vicente calderon on february 7 .\njodi arias was found guilty of first-degree murder in may 2013 . she was sentenced to life in prison monday for the 2008 murder of her ex-boyfriend travis alexander . arias expressed remorse for her actions before the sentence was handed down . travis alexander 's sisters gave their victim impact statements .\nduring his appearance in the los angeles courtroom , the death row records co-founder complained to judge ronald coen and said he could walk . knight , a 49-year-old diabetic with a blood clot , fell and hit his head at a previous bail hearing . his lawyer matt fletcher said authorities put knight in the chair and chained him down as part of a ` ploy ' to ` humiliate ' his client .\nlightning struck the plane on a flight from reykjavik , iceland , to denver on tuesday . the boeing 757 continued its 3,700-mile journey but passengers and crew were unaware of the strike until after landing . the plane landed safely and no one was injured . the lightning strike caused a gaping hole at the nose of the plane .\ngable tostee was jailed for 10 months for dangerous driving charges . the 29-year-old was four times over the legal limit when he incited a high speed police chase across state borders . tostees was on bail for the alleged murder of new zealand woman warriena tagpuno wright . ms wright fell to her death from the 14th floor of his surfers paradise apartment in august last year . tstee was granted bail in november last year and was eligible for parole on august 1 .\nmarland yarde scored the crucial try in the 70th minute at the stoop . the 22-year-old wing won the last of his seven england caps as a replacement last autumn . charlie walker opened the scoring for harlequins before gloucester scored three tries in the final quarter . gloucester moved 18-11 ahead with half an hour remaining before a late try from dan robson .\nharley renshaw was diagnosed with neuroblastoma last year . he had cancer in his kidney , neck , lungs and bones . but his ninja turtle mask helped him feel stronger during treatment . he has now been given the all clear by doctors after battling the disease .\nmaria malone-guerbaa , 41 , from london , used nothing but paints . mother-of-two said she did n't use any prosthetics or special effects . she simply googled pictures of bunnies and replicated the image on her face . the final result took three hours to achieve .\nthe dolphins were found on a beach in hokota , 60 miles northeast of tokyo . volunteers and residents worked nonestop to save the creatures . but the rescue operation was called off as darkness fell . only three of the 149 dolphins were saved , while the rest are ` dead or dying ' scientists say they are not sure how the dolphins ended up on the beach .\nleicester were bottom of the premier league on christmas day . nigel pearson 's side have won three games in a row and are seven points off safety . the foxes face fellow relegation battlers burnley on saturday . qpr and burnley have also shown fantastic spirit in their fight for survival .\ntheresa d'souza says she was groped on a train as a child . she says sexual harassment is pervasive in india and is hard to overcome . she urges women to talk about their experiences and shift the culture . d'souza : women need to find courage to speak up and find allies to help clear barriers .\nthe @barbiestyle instagram account was created by barbie 's vice president of design . the account has more than 730,000 followers . the doll 's designers and photographers travel to each location that barbie visits , including london , paris , and new york for fashion week .\nfloyd mayweather will fight manny pacquiao on may 2 . the american believes he is a better fighter than muhammad ali . ali lost his world titles to leon spinks in 1978 after just seven fights . mayweather also criticised ali 's ` rope-a-dope ' tactics .\narsenal face reading in the fa cup semi-final at wembley on saturday . the gunners won the fa cup last season and are favourites to defend their trophy . per mertesacker believes arsenal have become a stronger team since winning the trophy . the german says they must not allow themselves to become complacent against reading .\nchelsea 's eden hazard is the hot favourite to win the pfa player of the year award . harry kane has scored 29 goals in all competitions this season . alexis sanchez , philippe coutinho and david de gea also nominated . four of the six players on the shortlist are also up for young player of year .\nnsw state emergency service warn public of scam calling for donations . the public have been alerted to the heartless scheme via an important notice issued on the nsw ses facebook page . the service have received more than 6500 requests for help since the storms began on monday .\nan australian kangaroo has been spotted hopping through a field in west germany . police in rhein erft , received a bizarre phone call explaining that a large kangoo was spotted ` happily ' hopping through the field . they initially dismissed the call as a prank and found out that it was serious . the owners later came forward and it is believed that the animal 's fencing was damaged due to severe storms .\nchancellor said he wanted a 1980s-style property ` revolution ' he pledged to double the number of people buying their first home . since 2010 there have been 1.2 million first-time purchases . mr osborne wants at least 2.4 million more over the next five years .\nnaughty nicola painting depicts snp leader as dominatrix in red dress and suspenders . image said to grace the wall of sturgeon 's suburban glasgow home . it is believed to have been given to her as a birthday gift by husband peter murrell . murrell is credited with transforming sturgeon from surly apparatchik to national stateswoman .\nmark west , 32 , admitted to having sex with the girl in his office at spring high school in texas in 2012 . he was married with a child and no longer works as a teacher . judge said he enjoyed the attention of young girls . he will serve four months in jail and eight years probation .\nstephanie hannon , director of product management for civic innovation and social impact at google , has been hired as hillary clinton 's chief technology officer . hannon previously worked on gmail and google maps , and also spent some time at facebook . she will supervise a sprawling effort to develop websites , mobile apps and other vehicles for pushing the former secretary of state 's brand through the 2016 elections .\nuriel miranda , 38 , and his 2-year-old daughter yaretsi miranda died at the scene . eight-year old yordi miranda was battling cancer . the car , which was carrying 12 , crashed when a blown tire caused the 2006 ford expedition to overturn saturday in martin county , on central florida 's atlantic coast . authorities said uriel and the toddler were not wearing seatbelts .\nsix leeds players withdrew from saturday 's match against charlton . mirco antenucci , giuseppe bellusci , dario del fabro and marco silvestri were among those to declare themselves unfit . neil redfearn 's side lost 2-1 at the valley . former leeds captain trevor cherry has called for the players to be sacked .\njames holmes is accused of killing 12 people in a movie theater shooting . he has pleaded not guilty by reason of insanity . jurors will be asked to consider evidence that appears to show he planned his attack . the prosecution has said it will seek the death penalty . the trial is expected to last months .\nresearchers from university of arizona found the bombardier beetle mimics a machine gun by mixing chemicals in an internal ` reaction chamber ' in its stomach . when threatened , the bug can then repeatedly fire streams of foul-smelling liquid from its rear , complete with ` gun smoke ' it can even precisely aim the nozzle at the attacker . the behaviour has been caught on camera by wendy moore and her colleagues . the research , including video footage , also reveals the beetle 's firing apparatus in never-before-seen detail .\nthe funeral mass for cardinal francis george was held thursday in chicago . george was remembered as a man of deep faith , intellect and compassion . he was known as a vigorous defender of roman catholic orthodoxy . george died friday , april 17 at age 78 after a long battle with cancer . he retired last fall before announcing his treatment for kidney cancer had failed . he will be buried thursday in his family 's plot at all saints cemetery in nearby des plaines .\nlib dems are on single digits in national polls after five years in coalition . nick clegg says there are a range of reasons why people have left party . he says they include protest voters and public sector workers . but he says none of them are to do with his policy making decisions .\nrafael may have played his last game for manchester united . the brazilian right-back cracked three ribs in an u21 game . rafael is surplus to requirements and will be sold in the summer . united have handed trials to mk dons teenagers luke tingey and kyran wiltshire .\nsen. rand paul says the u.s. is not doing enough to counter extremism . he says the majority of our partners do not have credible special operations forces . paul : we are spreading foreign military assistance too thin , while failing to make necessary long-term commitments . he calls on congress to develop a dedicated program that builds out special operations in key nations .\ncasey levi filmed the . moment he tried to get his son sam to eat a california . roll with a $ 10 prize up for grabs . he stipulated that there must be no ` gagging or making any faces ' footage shows the youngster stepping up to the challenge but backing down after a minute 's hesitation and running off ` to be sick '\nburnley face tottenham in the premier league on sunday . michael duff is the second oldest outfield player in the league . the 37-year-old has played in eight different divisions . he was told his career was over at 29 after a serious knee injury . duff is only survivor of burnley 's promotion and relegation sides .\nrapper dusan bako punched his pregnant girlfriend in the stomach . the attack caused her to lose their unborn baby . bako , 18 , flew into a rage after he tried to call the teenager 's phone . he put his arm around the back of the girl 's neck and punched her . bake was jailed for four years , eight months at manchester crown court .\nkevin streelman beat camilo villegas in a play-off to win the par-3 contest . nicklaus recorded his first ever hole-in-one at augusta national . no player has ever won par-three and masters in same year . tiger woods played in the contest for the first time in 11 years .\nandres iniesta made his barca debut during the 2002-03 season . louis van gaal was manager at barcelona when iniesta was made debut . the spain international is grateful to van gaal for giving him his first team debut . iniesta also praised his time at barcelona 's champions league winning side in 2009 .\ntrotters have released a new range of baby clothes . prince george was seen wearing the brand on tour in new zealand . the range includes boy 's t-shirts and romper suits . there are even pink or blue rabbit booties . the duchess of cambridge is said to have purchased two items .\nronny deila has confirmed hearts captain danny wilson is a summer transfer target for celtic . the defender is out of contract at the end of the season but hearts are in no rush to sell . celtic are battling to keep hold of virgil van dijk and jason denayer .\ndinner at puckett 's boat house in franklin , tennessee , was unusual . toni elliot , 53 , thought she had hurt a tooth when she bit into oyster . but when she spat out the mouthful she was chewing she discovered a pearl in the palm of her hand . forty-nine precious stones followed .\ngloucester face edinburgh in the challenge cup final on may 1 . jonny may was dropped from england 's six nations squad . the winger is hoping to win his first european trophy since 2006 . gloucester beat exeter 30-19 in their last-four tie at kingsholm .\norphaned chimp was found cowering in a tiny wooden box cowered from traffickers . the illegal animal traders had kept the terrified three-year-old in the box for two weeks . they were stopped at a check point trying to cross into sierra leone from guinea . the men had been trying to find a buyer on the lucrative black market .\nfashion designer max azria 's three-acre holmby hills home is spread across three acres . the home features a floor-to-ceiling waterfall chandelier made up of 150,000 crystals . there are 17 bedrooms to choose from and 60 rooms to explore , and that 's not even counting the guesthouse and 6,000 sq ft movie theater . the house was built in 1939 by architect paul williams , who built homes for old hollywood stars such as frank sinatra and lucille ball .\narsenal are on a 15-game winning run since losing to southampton on new year 's day . arsene wenger 's side are now 13 points behind chelsea in the premier league . arsenal have won the fa cup and are favourites to win the league again . but they have failed to win a major trophy since the invincibles in 2003 .\nblackburn rovers face liverpool in the fa cup sixth-round replay . jordan rhodes has scored 17 goals for blackburn this season . gary bowyer has challenged rhodes to become an ewood park hero . the championship side are the underdogs in the replay . blackburn rejected a # 12million bid from hull city for rhodes .\nunai emery has guided sevilla to fifth in la liga this season . the 43-year-old is one of the most animated coaches in la la. . sevilla travel to the nou camp to face leaders barcelona on saturday . vicente iborra says emery 's side are on an ` upward trend '\nfarrend rawson played 90 minutes in the millers ' 1-0 win against brighton . but he was not involved in rotherham 's 2-0 defeat at middlesbrough . the defender 's youth loan from derby was extended until the end of the season . the case will now be heard by a disciplinary panel .\nwladimir klitschko is closing in on joe louis ' record number of successful title defences . the ukrainian will face bryant jennings on april 25 in new york . klitsch ko is keen to face deontay wilder in a unification fight . the 29-year-old believes boxing is enjoying a revival .\ndaniela d'addario , 35 , was reported missing by family members on monday . her body was found in the boot of her car on wednesday night in bermagui , nsw . a 27-year-old man , believed to be her boyfriend , has been charged with her murder . he was arrested in the bermagua area on thursday after fleeing into bushland . he has been extradited to the act and will face court on friday . the couple had been in a ` very tumultuous relationship ' for about four months .\nsurveillance video shows a sound transit link light rail carriage going along a straight trackway in south seattle , when a white sedan veers left into its path . the car is rapidly rammed back until the train eventually reaches a standstill as a street light gets sent flying . despite the crunch , the driver of the car miraculously escapes uninjured .\na delaware family of four fell ill at a luxury villa in st. john last week . epa says there was a presence of methyl bromide in the unit where the family was staying . exposure to methyl brome can result in serious health effects , the epa says .\nharry kane lined up against etienne capoue , nabil bentaleb , eric dier , roberto soldado , danny rose and christian eriksen in a crossbar challenge . the tottenham striker missed all three attempts from 40 yards . spurs are preparing to host aston villa on saturday at white hart lane .\nsome patients are being given hangover tablets and yakult yogurt drinks . critics branded the prescriptions as ` ludicrous ' at time of financial crisis . nhs handed out 404,500 prescriptions for suncream at a cost of # 13million in 2014 . 4.7 million prescriptions for indigestion pills cost # 29million , damning analysis found .\nmother-of-13 annegret raunigk is due to give birth to four babies in weeks . the german primary school teacher will be the oldest woman to have quadruplets . she is in her 21st week of pregnancy after being artificially inseminated .\nthree more cases of ` twin strangers ' have been revealed in the uk . niamh geaney , 26 , and karen branigan , 29 , found their doppelgängers in ireland . a journalist in london also found hers in birmingham , and two university students in london . and two retired men in essex also came face-to-face with their dopplegänger . all this comes after miss geaney and miss branigan 's story blew up across the media .\npolice in germany are ` closely monitoring developments ' in the hatton garden case . they are keen to find out if any dna was recovered from the scene of the easter weekend raid and if it matches forensic samples found in a tunnel used in the raid . thieves targeted 294 security vaults during a break-in at the volksbank in steglitz , berlin , in january 2013 .\nnewcastle host swansea in the premier league on saturday . the magpies have lost their last six league games in a row . daryl janmaat has likened the match to playing in the world cup semi-final . newcastle sit seven points clear of relegation with five games remaining .\nophelia conant , 19 months , managed to crawl backwards out of her cot . but she was left hanging mid air by her neck after getting trapped between the horizontal handrail and the end of the bed . her mother louise conant was watching the incident unfold on a baby monitor . phillip dickens , who supplied the beds , was today fined # 50,000 .\nchristopher scarver says he killed jeffrey dahmer because of his creepy sense of humor . dahmer would leave fake limbs covered with ketchup around the prison , scarver said . scarver was sentenced to two life terms for killing dahmer and another man in 1994 . dahmers ' former prison minister says dahmer made jokes about his cannibalistic past .\na young woman from the sunshine coast found a mildly venomous snake in her shopping trolley . the woman was shopping at coles in caboolture , north of brisbane . she pushed the trolley up an escalator before realising the snake was there . snake catcher richie gilbert was called to remove the snake and release it back into the bushland just kilometres away .\nscientists in colorado have found evidence for a new solar season cycle . every two years ` bands ' of magnetic field move to the surface of the sun . this combines with the existing 11-year solar cycle , causing mega storms . these storms can be even more dangerous to earth than others .\npm said he had been ` overcome by something ' during a campaign speech in london . but he then named west ham instead of the west midlands giants . he claimed he became a villa fan after watching the team beat bayern munich in the european cup final as a child . but mr cameron could not say what year the match took place or who scored the winner . labour said the gaffe exposed the prime minister as a ` phoney '\nat least 4,500 people have been killed in the nepal earthquake . tanka maya sitoula was trapped for 36 hours in her kathmandu apartment . she was rescued by an indian rescue team , apparently protected by a beam . the mother-of-four says she was confident she would survive .\ntomasz lazar photographed polish exile families who were deported to siberia in the 1940s . many of them were children when they were taken from their homes and forced to live in siberia . lazar says the families were traumatized by their experiences and wanted to share their stories .\nresearchers from columbia university in new york say fear of spiders is a survival trait written into our dna . the instinct could date back to early human evolution in africa , where spiders with very strong venom existed millions of years ago . study leader joshua new , of columbia university , said : ` humans were at perennial , unpredictable and significant risk of encountering highly venomous spiders in their ancestral environments '\nrolling stone article about alleged gang rape at university of virginia is being investigated . david frum : can uva , phi kappa psi or any of the other fraternities sue for defamation ? he says the law of defamation must be balanced against the freedom of speech protected by first amendment . frum says the fraternity 's members likely would argue that they have suffered no individual injury .\nchildren were playing in a parked minivan at the arcadia palms apartment complex in las vegas . one of the children accidentally started a fire in the vehicle . two children managed to escape unharmed and quickly requested help . the other two children became trapped and were found dead inside . police say it appears the 6pm fire was unintentional and accidental .\nfrench champions are being linked with a move for barcelona star dani alves . gregory van der wiel says he 's not interested in leaving paris saint-germain . the full back had a recent spat with manager laurent blanc . van der wiell says he is ` genuinely happy ' at the club .\na man was photographed at coachella wearing a t-shirt with the words ` eat sleep rape repeat ' on it . the shirt is thought to be a play on fatboy slim 's song eat sleep rave repeat . the image was shared by jemayel khawaja , the managing editor of vice 's music and culture channel thump . some commenters on twitter suggested that the shirt was meant to say ` rage ' instead of ` rape '\nreal madrid beat malaga 3-1 at the bernabeu on saturday afternoon . sergio ramos opened the scoring for carlo ancelotti 's side in the 24th minute . james rodriguez doubled real 's lead in the 69th minute after cristiano ronaldo missed a penalty . juanmi pulled one back for the visitors in the 71st minute . real madrid close gap on barcelona to two points at the top of la liga .\nchelsea have signed a partnership with fitness technology company technogym . the club has kitted out their cobham training ground with new equipment . eden hazard and nemanja matic among those pictured working out at cobham . chelsea have seven games remaining ahead of manchester united 's visit .\nreal madrid 's international stars were reunited at real 's valdebebas training ground . cristiano ronaldo and gareth bale were pictured training with the first-team . the pair were reunited after portugal 's 2-1 win against serbia on sunday evening . real madrid host granada in sunday 's la liga clash at the bernabeu .\nvillarreal 's mateo musacchio broke his ankle in sunday 's 1-1 draw at getafe . santi cazorla tweeted support for the defender . the arsenal midfielder played with musacchi at villarreal before joining arsenal . villarreal captain bruno soriano is also out until may with a knee injury .\nlinda hogan purchased the 23.63-acre property for $ 3.5 million a year after she divorced the wwe hall of famer in 2009 . the estate encompasses a hilltop near the 16th and 17th tees at the gated wood ranch golf & country club community . built in 2005 , the tuscan-style mansion has five bedrooms and 5.5 baths .\nmanchester city host manchester united in the premier league on sunday . city have won the last four matches between the two sides , including three at old trafford . louis van gaal 's side are four points behind city in the title race . manuel pellegrini is under pressure at city and a defeat would be unthinkable .\nclare else 's husband andrew was stabbed to death by ephraim norman in april last year . the 52-year-old was attacked as he got off a bus close to his home in croydon . norman , 24 , had stopped taking medication for his paranoid schizophrenia . mrs else says she is too scared to leave home ` in case she gets a knife in the back '\njuanette cullum , 48 , allegedly stole almost $ 15,000 worth of items . police found 19 kindle tablets , seven ipads , two laptops and a ` large amount ' of toiletries in her brooklyn home . cullum admitted stealing from american airline planes for the last three years .\ntumblr blog comes to the rescue with hundreds of interesting facts to kickstart a chat . the cartoons have all been designed for when you find yourself in the middle of an awkward pause . the blog has now been turned into a book called conversation sparks : trivia worth talking about . it is for sale on amazon .\npictures of sarkozy arriving at a specialist financial court in paris . he is facing charges over the funding of his failed 2012 bid to retain presidency . it comes after he was heralded as the politician to save france from socialism . on sunday , his party made massive electoral gains against the socialists . he still thinks he can become president again in 2017 .\nmary doyle keefe posed for norman rockwell 's `` rosie the riveter '' she was a 19-year-old telephone operator . the image became a symbol of women working on the home front during world war ii . keefe died this week at her home in simsbury , connecticut .\nmany clouds won the crabbie 's grand national at aintree on saturday . the 38-year-old jockey leighton aspell won the race last year on pineau de re . many clouds was a third winner of the race for owner trevor hemmings .\nformer england captain michael vaughan is the hot favourite to be appointed as director of england cricket . paul downton was sacked by the ecb on wednesday after a dismal world cup . kevin pietersen believes vaughan is right man to lead england cricket . the batsman believes vaughan will ` change the brand of cricket currently being played ' in england .\nhilary wilson suffered an amniotic fluid embolism during her son 's birth . the 41-year-old suffered a cardiac arrest during a caesarean section . she ` died ' for 11 minutes and was technically dead for four days . she woke up four days later with no memory of being pregnant or having a baby . she only realised she had a son when someone showed her a picture of felix wearing a baby grow that her other children had worn when they were born . the mother-of-three is now recovering at home with her family in shropshire .\nzimbabwe are set to play test cricket in pakistan for the first time in six years . the short one-day international series is likely to take place in lahore and karachi . no tourists have played in pakistan since the terrorist attack on sri lanka 's team bus in lahores in march 2009 .\nfbi director james comey wrote an opinion piece in the washington post . he claimed poland played a role in nazi germany 's genocide of six million jews . us ambassador stephen mull met with polish deputy foreign affairs minister . he apologised for the comments and said ` nazi germany alone bears responsibility '\nthe manchester derby will take place on sunday at old trafford . the english referee has sent off three players from united and city this season . but he has only shown two red cards to united players , both to luke shaw . vincent kompany was sent off during belgium 's 1-0 defeat of israel . the city captain is now suspended for the match against wales in june .\nzayden was just 10 months old when he was brutally murdered in a random attack when a stranger broke into their bendigo home . the culprit was 19-year-old harley hicks who bashed baby zayden more than 30 times with a homemade baton during a senseless and unprovoked robbery . the happy baby with a beautiful smile suffered a crushed skull , broken collar bone and a broken rib . his mother casey veal says she remains wracked with guilt . ` my son was murdered so he could get a hit of ice . that 's it , ' she said .\ngoogle 's waze uses gps navigation and crowdsourcing to alert users to traffic jams , accidents , stalled cars . john sutter : waze 's `` traffic cop '' feature can pinpoint the location of police officers in the field . sutter says waze poses an enormous risk to deputies and police officers .\nchelsea could play sydney fc at the anz stadium on june 2 . jose mourinho 's side are in talks with the sydney club over a post-season friendly . chelsea will follow tottenham 's lead and play a friendly down under in june . the blues are expected to fly out on the wednesday after the premier league season ends .\nthe family of eric harris has slammed robert bates ' decision to take a month-long vacation to the bahamas while out on bond . bates , 73 , appeared in tulsa district court on tuesday and pleaded not guilty to second-degree manslaughter in the death of harris . he shot harris , 44 , after he ran past him during an undercover gun-sale operation in tulsa on april 2 . the reserve deputy claims he mistakenly pulled out his gun instead of his taser and shot dead the man .\na doctor says severe pain during your period can be a sign of something worse . dr lara briden says endometriosis is a condition where bits of the uterus lining grow in other places outside of the womb . she says most ` normal ' period pain can be fixed with ibuprofen or an anti-inflammatory . but severe pain can lead to vomiting , back or leg pain and bleeding between periods .\ncatalina viejo , 31 , paints miniature pictures from candid paparazzi shots . has worked her magic on stars including kim kardashian , katy perry , miley cyrus , rihanna and beyoncé . in total , she has completed 42 tiny pictures , which are the size of a postage stamp and cost around $ 90 -lrb- # 60 -rrb-\nsam burgess scored a try in bath 's five-try win over london irish . leroy houston , jonathan joseph , matt banahan and semesa rokoduguni also crossed for the west country outfit . fly half george ford kicked three penalties for bath . london irish loosehead tom court scored a late consolation try for the visitors .\nufc featherweight chad mendes defeated ricardo lamas by technical knockout in the third minute of the first round . mendes retains his no 1 ranking after the win in virginia . al iaquinta beat jorge masvidal by a split decision in the co-main even .\ngame of thrones has some of the most powerful female characters on television . lena headey has hinted that scheming cersei lannister may survive the season . emilia clarke says women in the show accept their femininity and take strength from it . despite the death count , kit harington who plays jon snow has survived into series five .\ninter milan were held to a 1-1 draw by parma at the san siro on saturday . roberto mancini has cancelled his players ' day off and ordered them into training . the first team trained at 8:30 a.m. local time on sunday . mancino was furious with his side 's attitude after the draw .\nformer england wicketkeeper batsman alec stewart has expressed his interest in becoming the new director of england cricket . the ecb managing director paul downton was sacked on wednesday . michael vaughan is the early bookies ' favourite for the post . stewart played in a record 133 tests for england and is currently director of cricket at surrey .\nspring-breaker was in the water in florida when a manatee floated past her . the terrified girl screamed out and begged for help to escape the harmless sea cow . manatees are plant-eating creatures that can grow up to 13ft and have a top speed of just 5mph .\naueel manyang has been reunited with her mother , akon guode , after surviving a car crash this week . the five-year-old was moved from the intensive care unit at the royal children 's hospital on friday . her mother crashed her 4wd into a lake at wyndham vale in melbourne 's outer west on wednesday . her siblings - one-year old bol and four-year - old twins madit and anger - died . aluel believes her siblings were taken by a crocodile because the giant reptiles are associated with water .\nharry and charlie davies-carr , now aged 11 and nine , starred in the video . it was filmed for the brothers ' godfather who lives in america . the clip has since amassed more than 816million views on youtube . the boys have given an interview to children 's tv programme newsround .\nthe married mother of three and her husband were returning home to california after vacationing in hawaii when they were kicked off the flight . elizabeth sedway , 51 , posted an emotional video on her facebook page monday showing her family being kicked off a packed plane . alaska airlines later apologized to the family for mishandling the situation .\nelizabeth dawes , 39 , was wrongly told she had grade three breast cancer in 2013 . doctors at new cross hospital , wolverhampton , suggested a double mastectomy . she underwent major surgery to remove a ` cancerous ' tumour from her right breast . but four days later she was told staff had confused her notes with those of other patients , and she 'd never had the disease .\npaul casey has returned to the world 's top 50 after leaving the european tour . the englishman has not played in the ryder cup since 2008 . casey is playing in his first masters since 2012 . the 37-year-old wants to be part of the european team for hazeltine .\ndoug hughes , 61 , flew through restricted airspace carrying 535 letters . he landed on the west lawn of the capitol . hughes , a us postal service mail carrier , described his flight . he said : ' i had expected to be intercepted on the way ' hughes faces up to four years in prison on charges of unlawfully operating an unregistered aircraft and violating national defense airspace .\nliverpool 's raheem sterling has rejected a new contract worth # 100,000-a-week . sterling was named liverpool 's young player of the year last season . but the england international has scored just six premier league goals . brendan rodgers insists sterling will not be sold in the summer transfer window .\ncolouring in is a new global trend . scottish illustrator johanna basford has sold more than 1.4 million copies . her book secret garden has been translated into 22 languages . the follow-up , enchanted forest , is expected to do just as well .\nalan pardew is not interested in raiding former club newcastle for tim krul . crystal palace manager is happy with current no 1 julian speroni . pardews says he has had no contact with newcastle or krul over a transfer . the 53-year-old made the shock decision to leave newcastle in january .\nmanny pacquiao and floyd mayweather will fight on may 2 . ronda rousey has visited pacqu xiao 's training camp in los angeles . the ufc women 's bantamweight champion said she was ` truly honoured to meet such a humble and genuine person '\njustin whittington , 23 , was arrested on friday in bakersfield , california , and charged with child cruelty . his charge was changed from ` cruelty ' to ` endangerment ' and his bail dropped from $ 1 million to $ 20,000 . on sunday he posted a message on facebook asking for his pregnant wife and son to be ` left out of this ' he claims his pregnant mother-in-law was chasing his son around the store beforehand .\neu investigating us search engine for five years following complaints it abuses its dominance in the continent . now asking companies who previously filed confidential complaints against google for permission to publish them . if found to have been behaving unfairly , google could be fined ten per cent of its annual revenues .\nsam burgess has played mainly at centre for bath since joining from south sydney rabbitohs . the former rugby league star has struggled to make an impact in the midfield since converting to union . bath lost 18-15 to leinster in the champions cup quarter-final on saturday . bath face newcastle at kingston park on friday night .\ntony mccoy announced his retirement in february . the northern irishman has enjoyed a farewell tour up and down the country . mccoy said he was honoured by the adulation he received . the 20-times champion jockey said he owes it to his family to go out at the top .\nboko haram militants released first images since pledging allegiance to isis . images show jihadis posing in front of black and white flag with assault rifles . they carry all the logos and artwork typically seen in official isis releases . comes as nigerian soldiers invade islamist 's final stronghold in country .\nkezzia french , 46 , thought she had laid six-month-old andrea to rest in 1999 . but police had in fact removed virtually all her vital organs . the little girl died after being flung at a wall by her father , meyrick fowler . he was convicted of manslaughter and jailed for four years . ms french will hold a second funeral for her daughter tomorrow in ipswich , suffolk .\nroyal superfans have begun arriving at the lindo wing ahead of the birth . margaret tyler , 71 , is an avid collector of royal memorabilia . john loughery , 60 , has been at every major royal event of the last 10 years . the duchess of cambridge is due to give birth on the 25th april . experts say royal watchers could be in for a long wait as second babies tend to come late .\nmanchester united host manchester city in the premier league on sunday . manchester city captain vincent kompany is doubtful for the derby . manchester united have lost their last four league games against city . sergio aguero has scored four goals in his last three premier league matches against manchester united .\nitalian military : the boat was intercepted some 90 kilometers from the libyan port of misrata . the boat , named airone , was carrying three sicilians and four tunisians . the captain said there were about 10 other ships in the area when it was seized .\nemails released by oregon show cylvia hayes , the fiancee of former governor john kitzhaber , played a very active role in his scandalous administration . hayes routinely attended meetings , was copied on emails among senior staff and requested information or clerical assistance from state employees . hayes has filed a lawsuit seeking to block the release of her personal emails .\njohn lewis still selling leftover christmas stock three months after christmas . department store has slashed prices on almost 200 products in an attempt to flog christmas trees , festive ornaments and decorations . comes after the major high street outlet reportedly spent # 7million on its tear-jerking 2014 christmas advert campaign featuring monty the penguin .\nbritain face france in the davis cup quarter final on july 17-19 . andy murray has won three titles at the queen 's club . jo wilfried tsonga is back to form after overcoming an arm problem . tickets go on sale on may 27 and the match is sure to sell out quickly .\nparma are rooted to the bottom of serie a after losing 1-0 to juventus on saturday . the club were declared bankrupt last month and have not paid their players all season . the decision means that parma have been left with 12 points from 30 games . the sanction adds to the three they were penalised earlier in the season .\nkevin franklin , 58 , siphoned off the # 400,001 fortune over an eight-year period . he married his new wife in the italian alps while his 80-year-old victim was forced to borrow money from his children because he could not afford any milk . he was jailed for four-and-a-half years at warwick crown court yesterday after admitting fraud and deception .\nalan rogers , 73 , smashed the skull of fred hatch , 76 , in their communal garden . rogers then calmly called the police and said : ' i have just killed one of my neighbours and i have hit his head with a hammer ' rogers pleaded guilty to manslaughter at cardiff crown court today . he told police he had killed fred because he was involved in modern ` witchcraft '\nshamima begums and amira abase , 15 , and kadiza sultana , 16 , fled uk for syria . the trio crossed turkish-syrian border last february and are now living in raqqa . they are believed to be training with the al-khansa brigade , an all-women militia . the group has been accused of doling out savage beatings and spying on citizens . it has declared children as young as nine should be married and women should obey men -- who are their masters .\ndwelling values rose by 5.8 per cent in sydney over the last quarter . it 's a record growth and the strongest increase since april in 2009 . the median house price across the combined capital cities is now $ 530,000 . sydney is the only city to surpass the figure with a median of $ 690,000 , followed by canberra at $ 530k .\njonathan trott could be given chance to open for england in caribbean tour . test captain alastair cook feels batsman is ready for international return . trott was england 's rock at no 3 for four years before early return from ashes . the 33-year-old has been impressive in addressing personal demons .\nfood policy action 's john sutter : a decade ago , sustainable food was fringe . sutter says the `` meatrix '' cartoon helped spark a movement against factory farming . he says the biggest meatpackers and their trade groups spent $ 4.3 million on lobbyists in 2014 . satter : we need to ask members of congress to promote sustainable farming .\nadele sarno , 85 , has lived in her two-bedroom apartment in manhattan 's little italy neighborhood for more than 50 years . her landlord is the italian american museum which is dedicated to the legacy of italian-americans and is situated below her home . they sent her a letter five years ago seeking to increase rent to $ 3,500 . the grandmother tried to go through the courts to see if the city 's rent regulation laws could help , but it was determined that her apartment was n't covered .\nbobby moore 's famous hug with pele in 1970 is often held up as the peak of sportsmanship . newcastle keeper tim krul congratulated jermain defoe on his goal at half-time . sportsmail 's jamie carragher has lambasted krul for his actions .\nformer athlete bruce jenner , now 65 , won olympic gold in the men 's decathlon in 1976 . he has since undergone numerous cosmetic procedures , including nose jobs and face lifts . in an interview with diane sawyer , he said he was already looking to transition from a man to a woman .\nfa to allow anyone to register as an intermediary acting on behalf of a player . agents ' fees will be limited to three per cent and no monies earned for negotiating deals for players under the age of 18 . mel stein , chairman of the association of football agents , thinks the new regulations will ` create anarchy '\nsonia pereiro-mendez claims men were promoted ahead of her at goldman sachs . she says she was ` mocked ' and subjected to ` gratuitous derogatory ' comments . she recorded managers at the global investment firm ` without their knowledge ' mrs pereiro , who has a second child , is suing for sex and maternity discrimination .\njonathan trott has endured a nightmare return to test cricket . the batsman fell cheaply in both innings in the first test in antigua . trott is having regular skype sessions with sports psychiatrist steve peters . peters has worked with the england football team and liverpool . hampshire chairman rod bransgrove wants to see an ashes test match at his beloved ageas bowl ground .\nphotographer linden gledhill from staffordshire uses a modified microscope and a camera to capture the detail of the butterfly 's wing pattern . his photographs show the pretty insects ' scale-covered wings . some look like exotic bird feathers , while others resemble autumnal leaves that change colour at the outer edges . the brighter colours are created thanks to the scattering of light by the scales , which are layered in different patterns on top of each other .\neconomy 's economic strategy won praise from international monetary fund . imf chief christine lagarde praised george osborne 's ` wonderful job ' of handling economy . david cameron said the conservatives had overseen a ` jobs miracle ' britain created more jobs in last five years than rest of eu put together .\nthe wasps no 8 had his ban over-turned on appeal on friday night . nathan hughes was initially suspended for three matches after his knee collided with george north 's head as he scored for northampton . hughes was shown a red card for the offence , but that dismissal has now been officially rescinded .\nthe mean girls actress has been living in london for the past year . lindsay said that she feels ` at home ' in the uk and has no plans to return to the us . she said she finds the uk press more ` politically based ' than the us press .\nthe video was taken in the forecourt of the sunoco gas station in philadelphia . five people , including two children , storm out of a minivan and attack the 51-year-old . they stamp on his head and continue punching him as he lies motionless . the encounter is believed to have been caused by a 10-year old boy telling his mother the homeless man hit him .\namerican pollster nate silver predicts a hung parliament after may 7 . he correctly predicted the winner in 49 of 50 us states in 2008 . mr silver said both labour and the tories will struggle to get enough support together for a majority government . paddy power said ed miliband is now more likely than david cameron to be prime minister .\njacob fairbank has been ruled out for a lengthy period of time . the huddersfield forward broke his ankle and damaged ligaments . fairbank was on loan at halifax from hudderfield giants . the 25-year-old was injured in halifax 's victory over hunslet .\nhayley okines , 17 , from bexhill , east sussex , died last night . she suffered from rare disease progeria which ages body at eight times normal rate . progeria patients normally die from heart attacks or strokes at an average age of 13 . but hayley defied odds to live four more years and published autobiography .\nlorraine kelly has dropped two dress sizes by attending zumba classes . the 55-year-old has been attending classes up to four times a week . zumba is a dance fitness programme combining latin and international music . kelly said she has more confidence than she has ever felt in her fifties .\ntony toutouni , 42 , has amassed 750,000 followers on the photo-sharing site . he is threatening to take the crown of king of instagram from his friend dan bilzerian . the playboy is usually seen next to stacks of cash and bikini-clad models . he admits ` it 's not that hard to get any girl you want '\nanalysis of what brits were searching for during last night 's tv debate . it reveals viewers wanted to know why david cameron was a no-show . the contest saw labour 's ed miliband , snp 's nicola sturgeon , ukip 's nigel farage , green 's natalie bennett and plaid cymru 's leanne wood . mr cameron was 66 miles from the action at home in oxfordshire .\nvalencia defender jose luis gaya is real madrid 's first choice left-back . chelsea and manchester city are both interested in signing the 19-year-old . the blues are willing to pay the # 13million buyout clause for the spaniard . city are interested in gaya as a replacement for aleksandar kolarov .\nbayern munich defeated porto 6-1 on tuesday night in the champions league . the result saw the visitors lose 7-4 on aggregate . porto fans mobbed the team bus as they arrived back in portugal . the squad were given a heroes reception by their fans .\nnew dr. seuss book has 1 million pre-orders , publisher says . `` what pet should i get ? '' debuts july 28 . it features the spirited siblings from the beloved classic . theodor geisel 's widow , audrey geisel , found the manuscript and illustrations in 1991 .\nreal madrid beat atletico madrid 3-2 on wednesday night . sergio ramos was deployed in midfield to cover the absence of luka modric . the defender is one of those players who could play in every position . ramos is real madrid 's carles puyol , who scored in last year 's champions league final .\nliverpool 's john stones was on barcelona 's transfer list last summer . the catalan club were desperate for defensive reinforcements . jeremy mathieu and thomas vermaelen were signed but stones was wanted . the 20-year-old signed a new # 30,000-a-week five-year deal at everton .\nthe clintons spent part of their trip staying with sugar barons alfy and pepe fanjul at casa de campo , a private dominican resort they own . the news outlet listin diario reported on january 2 that fanjuls discussed hillary 's presidential ambitions during the visit . casa de campo is a luxurious retreat for the world 's super wealthy elites , and both sen. bob menendez and bill and hillary clinton have holidayed there . the senator is accused of accepting money and trips from wealthy donor dr salomon melgen in exchange for the influence of his office . melgen flew menendez on a private jet to stay at his casade campo villa multiple\nthe data was gathered using google trends to analyse std searches . in the uk , chlamydia was the most searched for term , while herpes was the second most popular in the us . norway was the hotspot for searches for herpes , followed by montenegro . russians seemed to be most concerned about gonorrhea , while people in finland were the biggest group searching for information about chlam lydia . in albania which had the highest searches per capita for hiv/aids , ukraine was the highest for hiv , and italy had the most searches for sexual dysfunction .\nthe queen has knighted prince philip as a knight of the order of australia . the investiture ceremony was held at windsor castle on wednesday . the queen presented the duke with the insignia of his australian knighthood by his wife . the 93-year-old was presented with the award despite criticism of australian prime minister tony abbott . mr abbott announced the duke 's knighthood on australia day in january .\ncarlos tevez is yet to make a decision on his future . the juventus striker has been linked with a move back to boca juniors . tevez has said he wants to end his career at his boyhood club . the 31-year-old has another year on his current deal at juventus .\njournalist andrei lunev was reporting on fighting in shyrokyne , east ukraine . he stepped on a landmine tripwire while inspecting the ruins of the village . mr lunev suffered serious head and lower extremities wounds and was taken to hospital . incident took place in wake of heavy fighting between rebels and government forces .\ndavid beckham 's 40th birthday is on saturday , 2 may . he is expected to fly out to morocco for a glamorous bash with his celebrity friends and family . it is thought he will be staying at the five-star luxury amanjena resort , just outside marrakech . tom cruise , guy ritchie , gordon ramsay and best friend dave gardner are set to attend the event .\nisis militants destroyed christian graves with sledgehammers and carved crosses in the iraqi city of mosul . the images were posted on social media , including the shomoukh al-islam jihadi forum , under the title leveling graves and erasing pagan symbols . the group released a statement with the images that attempted to justify the mass desecration .\nkevone charleston is suspected of 32 commercial robberies dating to november 2013 , fbi says . he was shot and wounded by fbi agents and task force officers , but his injuries are not life threatening , sheriff 's deputy says . two fbi agents were injured in a crash and the suspect was shot before being captured .\nthomas muller scored the fourth goal of bayern munich 's 6-1 win . the world cup winner became the highest-scoring german in the champions league . muller led the celebrations with supporters behind the goal . bayern beat porto 6-2 on aggregate to reach the last four .\nprime minister benjamin netanyahu calls the framework deal a historic mistake . he calls for `` clear and unambiguous iranian recognition of israel 's right to exist '' the deal would `` threaten the very survival of the state of israel , '' he says . netanyahu has been perhaps the most vocal critic of nuclear talks with iran .\njodie taylor opened the scoring after just a minute of play . fran kirby created the first goal and scored the second . shanshan wang pulled a goal back for china in the 16th minute . england 's world cup campaign begins against france on june 9 . ellen white won her 50th cap for england women .\n`` all-new x-men '' no. 40 reveals bobby drake , aka iceman , is gay . the character is best known for his appearances in many of the `` x-men 's '' films . the `` x '' series of comics have long been progressive in terms of diversity . the issue was leaked on tuesday .\nthe plan was revealed in an email sent out to youtube partners . it will offer consumers the choice to pay for an ` ads-free ' version of youtube . youtube will pay creators 55 % of the total net revenues from subscription fees . the service is expected to go live this year .\njenna marotta of new york city says she has dermatillomania - a compulsive skin-picking disorder . the 27-year-old writer says she used to pick at her pores for hours on end . she would use tweezers to remove ingrown hairs and clogged pores .\nmodel and environmental scientist laura wells has designed a new swimwear line . the eco-friendly collection is made entirely of 100 per cent recycled material . the collection is inspired by the ocean and features coral reef inspired designs . the model has already fronted campaigns for myer , berlei and asos .\nraheem sterling scored the opener for liverpool at anfield . joe allen made the game safe in the second half . liverpool are now four points behind manchester city in the premier league . brendan rodgers said his side are ` looking for other teams to slip up ' newcastle boss john carver was unhappy with the sending off of moussa sissoko .\npatricia wilnecker , 81 , fell in love with lamorna cove in cornwall in 1948 . she eventually moved nearby and also wrote a book about the area . but she has been told she is no longer welcome there by owner roy stevenson . he accused her of deliberately hitting his son daniel , 36 , during a stand-off . but the 81-year-old has denied hitting him and says the ban has devastated her .\ndanielle busby gave birth to olivia marie , ava lane , hazel grace , parker kate and riley paige on april 7 . they are all doing well and are getting stronger every day . the mother said the experience was ` phenomenal ' and that she is still in shock . the girls are now gearing up for their first breastmilk feeding .\nali maffucci , 28 , lost 11 kg -lrb- almost two stone -rrb- in three months through replacing pasta , bread and rice with spirazlied vegetables . she dropped from a size 14/16 to a size 8/10 and is now working on toning .\njerry moon , 72 , was cremated by mistake at dahl mcvicker funeral home . his family only discovered the blunder when they opened the casket . they found the body of robert petitclerc , 97 , wrapped in a plastic bag . mr moon had paid $ 4,655 to be buried in a family plot in chehalis , washington . the family is now seeking unspecified damages for emotional distress .\nmass doggy wedding saw more than 40 pooches tie the knot in beijing on sunday . the collective ceremony was billed the first of its kind to be held in china . it was organised by a new social media app designed for pets . canine couples arrived in bmw convertibles and a stretch hummer limousine .\njenna louise driscoll lashed out at a photographer outside court . the 25-year-old hit him over the head with a plastic bottle . she was charged with three counts of bestiality and drug trafficking . police found the videos of ms driscolls allegedly having sex with a dog while investigating text messages on her mobile phone for allegedly dealing cannabis . she pleaded guilty before magistrate bronwyn springer for failing to previously appear in court and was fined $ 250 .\nmarisa curlen , 20 , was a sophomore at james madison university in virginia . she was found unresponsive in her room at the sorority house in harrisonburg at around 7.30 am friday . police were awaiting the results of an autopsy to determine the exact cause of death , but they said there was no evidence to suggest foul play . curlen became the third member of rye high school 's 2013 graduating class to die in less than a year .\njune whitfield will make a guest appearance in the bbc soap next week . the 89-year-old will play sister ruth , a nun who offers advice to kat moon . whitfield is best known for her role as the eccentric grandmother in absolutely fabulous . she said it was an ` absolute delight ' to work with jessie wallace on the soap .\ntottenham host aston villa at white hart lane on saturday . tim sherwood has got to keep his emotions in check . the villa boss is a passionate man but he ca n't afford to let things get personal . sherwood was in charge of the youth set-up for years at villa .\ngov. mike pence extends a public health emergency in indiana . there are 135 confirmed cases of hiv , and six preliminary cases of the virus . the outbreak has been linked to injection drug use , primarily of the prescription opioid opana . the emergency order was first issued last month and set to expire friday .\nben affleck finally admitted the name of the slave ancestor he had censored from his past . the oscar-winning actor posted on social media that a ` benjamin cole ' of georgia , an ancestor on his mother 's side , was the relative dropped from the pbs show . the admission came the day after he apologized for lobbying for the removal of the truth about his family past from finding your roots .\npreston north end held to a 2-2 draw by gillingham . mk dons close the gap on second-placed preston to three points . swindon remain in the automatic promotion hunt with 4-2 win at rochdale . crewe move out of the bottom four with 1-1 draw at peterborough . crawley are back in the relegation zone after being thumped 5-0 by walsall .\nu.s.-iranian relationship is not symmetrical , says peter bergen . he says the u.s. is alienating some of its closest allies because of the iran deal . bergen : iran is picking up new ones and bolstering relations with old ones . he adds that the u. , s. should use diplomacy as a way to constrain iran 's nuclear program .\nbrian nicol , 32 , dived into a pool at a luxury holiday villa in the costa del sol . he was staying with friends in nueva andalucia , but failed to resurface . his friends dragged him out of the water and tried to save him but he died . police say early evidence suggests his death was a tragic accident .\nalfie underwent a general anaesthetic for an mri scan at the animal health trust clinic in newmarket , suffolk . owner lynne edwards , 64 , only realised something was wrong when he started to refuse food and found puss oozing from his back . she then took him to a local vet , where staff clipped his fur and exposed the severe burns in his back .\nsky sports pundit gary neville says yaya toure 's defensive lapses are costing manchester city . neville predicts changes at the etihad and says city need to get rid of ` weeds in the garden ' city lost 4-2 to manchester united in the derby on sunday .\njaclyn methuen and ryan ranellone agreed to move to astoria , queens , on last night 's episode of married at first sight . the newlyweds shared a bedroom on the first day of their new home . the 30-year-old star revealed that she is finally ready to physically consummate their marriage .\nyoung japanese women are using ribbons to boost their cleavage . idea inspired by popular ` anime ' character hestia from is it wrong to pick up girls in a dungeon . the character has a blue ribbon tied around her torso and upper arms . the trend has been copied by ordinary women and those who practice cosplay .\nthe jury of seven women and five men deliberated for more than 35 hours . they convicted aaron hernandez of first-degree murder in the death of odin lloyd . hernandez was sentenced to life in prison without the possibility of parole . `` it 's amazing a lot of the information we learned today , '' a female juror says .\nartist frank mckeever from florida has created these amazing posters . they show how we could colonise various worlds in the solar system . included are humans skiing on a moon of uranus and living in cities on mars . others show life on europa and near saturn - and a destroyed earth . mr mckevers hopes the posters encourage us to expand our presence into the solarsystem .\nnew york photographer justin bettman built an elaborate indoor set on a brooklyn sidewalk for a man to propose to his girlfriend on valentine 's day . jose luis proposed to hisgirlfriend on a set designed and built by bettman . the set was built on the edge of the water in williamsburg , brooklyn , the very spot where luis and his girlfriend had their first date . luis ' girlfriend thought they had been cast in a photo shoot before luis got down on one knee and popped the question .\nskegness is one of the most popular places to own a holiday home , new figures show . it joins st ives and windermere in the top ten league of towns for holiday property . billy butlin located his first holiday park at skegness in 1936 and it still attracts 400,000 visitors a year .\nthe egg is so big that it took jan hansen three days to put together . it is made from layers of belgian chocolate which covers an iron frame . the creation had to be completed using a step ladder . mr hansen hopes to raise # 1,000 from the sale of the egg for st barnabas hospice .\nfootage shows the seven-day-old foal nuzzling sunny bayne 's shoulder before pushing her to the ground and lying on top of her belly . the young rider from kentucky ca n't stop smiling at the animal 's silly antics . to date the clip of bayne has received thousands of hits online .\nremains of a 915-year-old mummy found by street cleaners in trujillo , peru . cleaners initially feared they had stumbled across a murder victim . the mummy was found wrapped in rope and dumped inside a box . it is thought to have been stolen from an archaeological site in the city of chan chan .\nleeds rhinos beat salford red devils 28-18 at the willows . jamie peacock scored a try double in leeds ' 20th successive win . niall evalds scored two tries for the red devils . ash handley , rob burrow and zak hardaker also crossed for leeds .\nhistoric dharahara tower in kathmandu has been reduced to a pile of red brick dust . rescuers say those taking pictures are not ` understanding the tragedy ' it is unclear how many people were killed in the tower in the quake-hit city . but it is believed to have been filled with tourists .\njoanna goodall forged signatures of customers and colleagues for cash refunds . the 30-year-old then took the money from the till at a premier inn in newcastle . cctv showed goodall taking money from till and she admitted the thefts . she was given a nine-month suspended sentence and ordered to pay back just # 1 under the proceeds of crime act .\nryanair has banned passengers from bringing their own booze on board flights . the dublin-based airline has informed passengers travelling on the notorious flight from glasgow prestwick airport to the spanish island . passengers who are caught trying to sneak alcohol into the cabin risk being kicked off the flight .\ndeputy prime minister met by protesters in surbiton , south-west london . he was heckled by students chanting : ` nick clegg lied to me , he said uni would be free ' mr clegg ignored the protesters as he stuck to his message . he said only the lib dems can be trusted to balance budget without hitting the poor .\nphillip buchanon was drafted by the oakland raiders in 2002 . he said his mother demanded he pay her one million dollars as the cost ` for raising him for the last 18 years ' after he was drafted . buchanon said he followed the ` unwritten nfl new money millionaire ' rule and instead bought his mother a brand new big house . but he soon realized that gift would come with its own problems . instead of selling her old house , like he advised , buchanon 's mother rented it to his aunt . this left buchanon paying for mortgage and maintenance payments for both houses for seven years . he eventually became fed up and told his mother he would stop paying for her new house 's upkeep\nman forced to resign from role as women 's officer for the tasmanian university union . james ritchie was voted into the job with a clear majority over a female candidate more than three weeks ago . public pressure and an online petition opposed the decision to employ a male for the job .\na new reddit thread is offering some fascinating insights into the strange lives of men who have purchased mail-order brides . the discussion focuses on brides from russia and the philippines and has so far garnered more than 10,000 comments . users were asked to spill the beans on what ` surprised ' them the most when they started living with their spouses .\ndina amos-larkin was attending sports festival in salou , spain when she fell from hotel balcony . the 21-year-old law student was in medically-induced coma for two weeks and was told of injuries a week ago . she told simon wright of the sunday mirror that authorities initially said the fall was a suicide bid . a gofundme page has since been set up to raise # 20,000 to get her home .\nthe federal government is set to invest $ 4.1 million in a tv drama . the telemovie will be shown in countries such as syria , iraq and afghanistan . it will reportedly have a story-line which involves the australian navy and asylum seekers drowning at sea . the drama will be broadcast in countries like afghanistan and syria . it is hoped the show will deter asylum seekers from entering australia by boat .\ndirector of public prosecutions alison saunders says she is not afraid of legal challenge . she says she will not quit because ` making the right decision is not a resigning issue ' labour peer was investigated over allegations of historic child sex abuse . but now he is too ill to stand trial because he can not understand charges . victims and leading politicians have accused her of ` damaging public confidence ' in the justice system .\nthe incident happened at 10pm on sunday at harts range police station . the station is located about 240km northeast of alice springs in the northern territory . the 42-year-old man allegedly threw a wheel spanner at a night security patrol car before recklessly driving his dark blue ford falcon ute at full speed towards the police station . fortunately the station , which was vacant at the time , was vacant . the culprit managed to escape in the smashed-up car but would n't have got far without working headlights , a front number plate or a front bumper bar .\nprison officer thomas jordan driver , 25 , was arrested on thursday . he and fellow klan members planned to kill a black inmate after his release in retaliation for a fight , officials said . klans men thomas jordan . driver , david elliot moran , 47 , and charles thomas newcomb , 42 , each face one state . count of conspiracy to commit murder . the fbi was alerted to the murder plot by a confidential informant inside the klan , according to an arrest affidavit .\nyoungsters blindfolded and asked to pick out their mother from a group of six women just by touch and scent . the video was created by pandora to celebrate mother 's day and the special bond between mother and child . it has so far been viewed 2.8 million times .\nzoe elizabeth sugg has amassed a huge teen following on social media . jamie oliver 's company says influential stars should be more aware . investigation found that vlogs popular with children are being hijacked . 30-second adverts for junk food and online gambling sites appear .\nup to 150 women gathered in brisbane on saturday to protest wicked campers slogans . the slogans include ` in every princess , there 's a little sl * t who wants to try it just once ' and ` flash your t ** s at the driver ' the slogans were removed from the company 's vans in 2014 after over 120,000 people signed a petition to have them removed . wicked pickets , a community action group , have started painting over the slogans .\ntwo people were killed when a manhattan apartment building exploded . investigators are now focusing on whether a gas line was improperly tapped . the owner of the building could now face criminal charges , it has emerged . nicholas figueroa and moises locon were killed in the blast last week . in august utility workers discovered the gas line to the restaurant had been illegally tapped , it was claimed .\nliverpool fan stephen dodd took photo of asif bodi and abubakar bhula . he posted it online , calling the men a ` disgrace ' for praying at anfield . police investigated the incident , but have now passed on the case to the club . club authorities say they will ` take appropriate action ' against the supporter .\nbritish boxer amir khan showed off his party trick during training . khan flipped the empty bottle up and unleashed a flurry of punches . the 28-year-old is currently training for his upcoming fight against chris algieri . khan will fight algier in new york on may 29 .\na ramp agent was on a team loading luggage on an alaska airlines flight . he fell asleep in the cargo hold , the airline says . the pilot reported hearing banging from the cargo . the plane was only in the air for 14 minutes . the man was treated at a hospital and released .\na hilarious note left in a chip shop window has gone viral on twitter . in it the unnamed owner laments the fact that he has to go youth hosteling . he writes that he would rather be here with beer and tv . the note was posted around a month ago but was circulated this week .\nvictim stephanie scott was last seen on easter sunday . her body was discovered in cocoparra national park on friday evening . police were led to the site by the family of her accused killer . vincent standford , 24 , has been charged with ms scott 's murder . on saturday , a memorial was held to honour the late bride-to-be . the leeton school teacher was due to marry fiance aaron leeson-woolley on saturday . her father robert scott spoke at the service .\nmanchester city face a battle to finish in the top four this season . manuel pellegrini should be given more time to turn around the club 's fortunes , says stuart pearce . pearce blames the fading influence of yaya toure for city 's poor form . city lost 2-0 to manchester united in the premier league on sunday .\nsuper league title sponsors first utility have announced a new format for the player of the month award . fans will be asked to vote for their choice on the facebook page , www.facebook.com/firstutilitysuperleague . the two players who garner the most votes will be considered by a judging panel .\nfloyd mayweather faces manny pacquiao in las vegas on may 2 . mayweather posted a picture on his shots account of his private jet . the wba and wbc welterweight world champion is known as ` money ' muhammad ali wants pacqu xiao to win the fight , according to his daughter .\ntwo teenagers were allegedly abused by saudi airport officials . they were returning from an off-season pilgrimage at jeddah airport in march . the incident sparked unauthorized protests at the saudi embassy in tehran . iran has banned its citizens from travelling to saudi arabia 's holy sites . comes amid escalating tensions between the two regional powers .\ndr john parker tested negative for the deadly ebola virus after returning from west africa . the humanitarian doctor was taken to westmead hospital on saturday morning after falling ill . the doctor had been working at an australian-run ebola treatment clinic in sierra leone since november last year . nsw health has confirmed dr parker does not have ebola and that no further testing for the virus is required at this stage .\nus department of education fined corinthian colleges $ 30million for falsifying job data and altering grades and attendance records . the closures include heald college campuses in california , hawaii and oregon . everest and wyotech schools in california , . arizona and new york will also close . corinthian was one of the country 's largest for-profit educational institutions . it collapsed last summer amid a cash shortage and fraud allegations .\nphotographs taken today in micheldever woods , hampshire , show the flowers in full bloom weeks earlier than expected . but the fine weather by much of the country is set to be replaced by april showers this weekend . parts of northern scotland could even see daytime temperatures drop to 10c by monday and there is a chance of snow on higher ground .\nhighthere.com was launched in new york , california and colorado in june . it was only available in states that have legalised cannabis but has now gone global . the app is designed to let users meet one another online to form relationships without being judged for their habit or views . it deletes the accounts of people who post photos of the drug in their profile picture and takes down images of marijuana in their picture section . founder and ceo of high there ! todd mitchem said that the app does n't encourage the sale of marijuana but is simply a social network for people who consider it part of their lifestyle .\nan npr report on baltimore violence focused on racial tensions . peter bergen : the claim is a toxic feature of media coverage of mass metropolitan violence . he says asian-owned businesses have been targeted , but not out of racial animus . bergen says asian and black merchants are working to bridge differences . issues .\nfacebook app genes for good is available for free in the us . it was set up by biostatisticians from the university of michigan . users can submit spit samples to tie their survey results to their genes . the app also provides detailed information about how a person 's health changes over time .\nstephen howells , 39 , and his 25-year-old girlfriend nicole vaisey , from hermon , new york , were charged last summer with sexually exploiting the amish girls . they each face kidnapping and federal child exploitation charges after police say they abducted the girls , then seven and 12 , from their family 's farm roadside vegetable stand on august 13 . the girls were shackled to a bed and sexually abused before they were released 24 hours later and drove home . a day after the girls were abducted , they were left at jeffrey and pamela stinson 's home 20 miles from their farm . the couple then returned the girls to their home .\njoseph o'riordan stabbed his wife amanda , 47 , nine times with a kitchen knife . he had become suspicious of her movements and hired private detective . he discovered she was having an affair with married postman nick gunn . o'riordan , 76 , was found guilty of attempted murder at brighton crown court . judge shani barnes jailed him for 20 years , half behind bars and rest on licence .\ntottenham striker harry kane named pfa young player of the year 2015 . kane has scored 30 goals in all competitions for tottenham this season . the 21-year-old also scored on his senior england debut . kane was also named in the pfa premier league team of the year .\nmanchester city host manchester united in the derby on sunday . city have won the last four derbies , the last time that happened was 60 years ago . united have never lost five straight matches to their local rivals . ashley young wants to end city 's dominance this weekend .\nfloyd mayweather vs manny pacquiao is set to be the biggest fight in history . sky sports pundits jamie redknapp and thierry henry face off in the studio . the pair goad each other in a mock head-to-head ahead of the fight .\nmcdonald 's expects the new ` artisan grilled chicken ' to be in its more than 14,300 u.s. stores by the end of next week . it says the biggest change is the removal of sodium phosphates , which it said was used to keep the chicken moist , in favor of vegetable starch . the new recipe also does not use maltodextrin , which mcdonald 's said is generally used as a sugar to increase browning or as a carrier for seasoning .\nnba star kevin love dislocated his left shoulder on sunday . love was injured in the first quarter of the cavaliers ' 101-93 victory that completed a four-game sweep . photos appeared to show that love was dragged by the arm by boston celtics center kelly olynyk during the first quarter resulting in an injury . ' i thought it was a bush-league play ' : love said after the game while wearing a sling . love said he intends on returning to the playoffs this season and wants the nba to review the play .\nrobin thomas , of jonesboro , arkansas , posted a ` girlfriend wanted ' advertisement on his truck . the father-of-three decided to put the sign on his vehicle after failing to find love online . thomas has three kids , aged six to 11 , who he said think the sign is ` cute '\nmichelle keegan is named the sexiest woman in the world by british men 's magazine fhm . the 27-year-old actress is best known for her roles on `` ordinary lies '' and `` coronation street '' she is followed by kendall jenner , jennifer lawrence , kate upton and caroline flack .\nsellers are wildly over-valuing their houses by around # 74,000 . buyers must now increasingly treat asking prices as a starting point . online estate agent emoov said many sellers still believed they were selling at the market 's peak . study found britons selling properties refuse to admit the housing market has cooled .\njosh meekings will play in the william hill scottish cup final . sfa panel did not even consider his handball , it has been revealed . meeking was banned for one game after denying celtic a goal . the defender stopped a leigh griffiths header during his side 's 3-2 win .\nmaajid nawaz asked for two private sessions at a strip club in east london . the married father-of-one calls himself an advocate of women 's rights . he is a convicted former extremist and head of anti-extremism charity . nawaz denies touching the dancer ` appropriately ' and says he is a feminist .\ncaleb benn , a californian high school student , has developed a $ 4.99 -lrb- # 3.24 -rrb- app for ios devices using instagram 's application program interface . called ` uploader for instagram ' , it allows users to upload photos to instagram directly from their computer rather than using only their smartphone . an engineer from instagram allegedly sent benn an email last week , claiming the app violated the company 's terms of service . facebook has strict restrictions against using its private api .\nsnp leader caught boasting : ` i 'm writing labour 's budget ' in secret footage . he also joked that he would ` check his top pocket ' in reference to a tory poster . comes after labour slapped down scottish leader jim murphy . he claimed he would write the party 's budget north of the border .\nnew nba awards will be handed out this summer . players can vote in the end-of-season awards for the first time . lebron james says he would pick himself for mvp if he could . james scored 21 points with nine rebounds and eight assists in win over bucks . cleveland cavaliers have secured the central division title .\njapanese airline all nippon airways is set to unveil its latest livery . boeing 787 dreamliner has been decorated to look like r2-d2 . the cockpit and front half of the white fuselage are painted with blue panels . the words ` star wars ' , in the movie 's distinctive font , adorn the body .\ngrupo oas has struggled with cash flow problems following corruption scandal . natal 's dunas arena is being sold by owner grupo oas , with the company also trying to sell the 50 percent share it owns of the fonte nova arena in salvador . the fontenova hosted six games in the 2014 world cup and the dunas arena four .\ndyche claims another manager told him to ` move with the times ' burnley boss says he has been shocked by amount of simulation . burnley are second from bottom with just six games remaining . dyche wants retrospective punishment extended to cover blatant acts of simulation .\nhealth minister jillian skinner has slammed chef pete evans for promoting fluoride-free water . she says he is putting people 's health at risk with his extreme views on diet and lifestyle . evans has also been under fire for endorsing the paleo diet . he has responded to the concerns , saying he would like to discuss the benefits of water fluoridation . evans and his family do n't drink tap water .\nlamb named big ben was born at melton mowbray , leicestershire , farm . mother jean morris , seven , had a three-hour labour and gave birth to 20lb lamb . ben is twice the weight of all his brothers and sisters born before him .\ndaniel sturridge trained on thursday ahead of liverpool 's trip to arsenal . arsenal forward danny welbeck will face a fitness test on the knee injury he picked up during international duty with england . alex oxlade-chamberlain remains unavailable for the gunners . martin skrtel and steven gerrard begin three-match suspensions . dejan lovren favourite to replace the former in defence .\ndangelo connor , from brooklyn , filmed himself messing around with a stun gun . he first electrocuted a coke can , then a metal bracelet he was holding . after the bracelet passed through his hand and into him , he collapsed . the video has gone viral , being viewed more than 17million times .\nracing metro face saracens in european champions cup quarter-final . johnny sexton wants to win a medal with racing metro this season . irish fly-half has won 11 knock-out games in continental rugby . sexton intends to return to dublin in the summer after two years in france .\nthe luxurious flat in ennismore gardens , london is based in the same building as the former home of screen goddess ava gardner . the five bedroom home offers 3,054 sq. ft. of high-end accommodation with two reception rooms , five bathrooms , a study and kitchen/breakfast room . it is based on the same street as the home where gardner lived from 1968 - after her three failed marriages , to mickey rooney , artie shaw and frank sinatra .\nbreathalyser spots chemical signals in exhaled air linked to tumour development . by looking for distinctive ` breath prints ' researchers were also able to distinguish between patients at high and low risk of developing the disease . israeli researchers say the system is accurate and cheap .\nchilean pickpockets are the most effective thieves operating in central london , according to undercover police teams . gangs of up to six follow wealthy shoppers in the west end before stealing their cash and belongings . metropolitan police stopped two chilean women wearing burkas after they had been spotted targeting rich arab tourists .\nproject fi switches between wi-fi and cellular networks to curb data use and keep phone bills low . service will work only on the company 's nexus 6 phones and only in the us . google is selling the basic phone service for $ 20 a month and will only charge customers for the amount of cellular data that they use each month . each gigabyte of data will cost $ 10 a month .\nben stiller announced penelope cruz will appear in `` zoolander 2 '' cruz will play `` little penny '' stiller shared a photo of cruz as a child . the sequel is scheduled for release in february 2016 . stiller is also slated to produce the sequel to `` dodgeball ''\nchris roberts was yanked off his plane after it landed in syracuse , new york . fbi agents confiscated his laptop and thumb drives . roberts , who works for security intelligence company one world labs , was questioned for four hours . he was coming to town to speak at an aerospace conference about vulnerabilities in airplane systems .\nthe big fight between manny pacquiao and floyd mayweather wo n't `` save '' boxing . peter bergen : boxing is n't fading away because we 've finally awoken to its brutality . he says the sport is being overtaken by mixed martial arts . bergen says we are drawn to prizefights less to revel in what 's dark and nasty in human nature .\nfrench trainer freddy head has compared his 2,000 guineas hope ride like the wind to last year 's fifth-placed runner charm spirit . ride like the wind won just one of his four starts last season . head says ride likethe wind is ` on the same sort of level ' as charm spirit was at this time last year .\nkevan carr has completed 16,300 miles around the globe over 621 days . the 35-year-old set off from haytor on dartmoor in july 2013 . he has completed on average one and a quarter marathons a day . mr carr is set to complete his epic trip tomorrow - beating the previous record by 24 hours . he will become the fastest man to ever run around the world .\nhole appeared in earl street , northampton , without warning this afternoon . motorists had to swerve out of the way of the giant hole , which is eight foot wide . it came just hours after a pavement in fulham collapsed , swallowing a pedestrian . eyewitness said the road ` gave way really slowly ' as people watched on .\natletico madrid face real madrid in the champions league quarter-final . fernando torres has hailed manager diego simeone for his recent success . atletico have not lost to real in six matches since the 2014 champions league final . sime one has led atletico to three la liga titles and two copa del rey titles .\nnigel farage has abandoned hopes of winning dozens of seats at the general election . ukip has reduced the number of constituencies where it is concentrating resources . party strategist said ` something extraordinary ' would now need to happen for it to win in places outside its target list . ukip will today unveil its manifesto in thurrock , essex .\nh hannah overton , 37 , was convicted of murdering her four-year-old foster son andrew burd in 2007 . she was released from prison shortly before christmas but prosecutors said they would try her again . in september , a texas appeals court overturned her conviction , citing ineffective counsel . the district attorney has now dropped all charges against overton . the mother and her five children celebrated the news with her husband larry and her daughter .\nrosemary spent a week in the caribbean island of grenada . the island is known for its zesty spices and self-sufficiency . the only food it imports is milk . even the governor grows her own vegetables . rosemary stayed at mount cinnamon resort . the resort is on grand anse beach , near the charming town of st george .\nbasketballer abby bishop took in her two-day-old niece zala in august 2013 . now zala is 20 months old and follows bishop as she travels the world playing for professional teams . bishop will go with zala to the u.s. this may when she starts playing for the seattle storm in the wnba . she said zala loves travelling and acting as team mascot .\nalexis douglas was mauled by a pitbull while playing at her sister 's friend 's house in melbourne in january . the five-year-old required 50 stitches to her face and still requires treatment for the next three years , which her mother monique says will cost nearly $ 10,000 . she was infuriated on thursday when dog owner edward powell was handed a $ 1500 fine and no convictions , as he had put down his pitbull soon after the incident .\nnorth charleston police chief says he was `` sickened '' by the video of the shooting . protesters call for the mayor to step down . officer michael slager is charged with murder in the shooting death of walter scott . scott , who was unarmed , was shot five times by slager .\nsupermarket under fire for failing to notify customers of credit card fees . australian securities and investments commission took action against aldi last year . it did not disclose a 0.5 percent surcharge on transactions made using tap and go contactless payment systems in any of its stores . some stores still do not have signs at entrances and signs at the registers warning of the surcharge are in tiny print .\npeter bergen : the fight against isis is getting less attention than the deterioration of al qaeda . he says al qaeda confirmed that two leaders were killed in cia drone strikes in january . bergen says the deaths of the two men continue the decimation of alqaeda 's bench of leaders .\nariana mason , 21 , was allegedly attacked by police officer shawn izzo at the mirage . cctv footage shows him dragging her across floor and putting her in chokehold . she needed 26 stitches after her face was ` rammed into glass table-top ' two of her teeth were also broken , she says in civil rights lawsuit .\nthe moschino collection for spring/summer 2015 was a hit on social media . jeremy scott sent human barbie dolls down the catwalk . olivia phillips , 30 , decided to try out the look in real life . she took to the streets of dubai dressed as the iconic doll .\nzhou qunfei , 45 , is worth # 4.9 billion after her company lens technology went public . her company supplies protective window glass used in apple devices . qunfei was born into extreme poverty in a village in rural china . she left home as a teenager to work in a glass-processing factory . she would send her salary home to her father , who was nearly blinded . her mother died when she was five years old , and her father was also made blind following an industrial accident .\ncraig hicks is charged in the deaths of three muslim college students in chapel hill , north carolina . a judge rules that hicks ' case is `` death penalty qualified , '' cnn affiliates report . hicks , who was the victims ' neighbor , turned himself in to police the night of the killings .\nresearch on infants ' brains by doctors from oxford university has found that young babies are more sensitive to pain than adults . it overturns the medical consensus that newborns have a high pain threshold . the research overturns the consensus that very young babies do not feel pain and do not need painkillers , even for invasive procedures .\nholland beat spain 2-0 in amsterdam on tuesday night . stefan de vrij and davy klaassen scored in the first half . spain midfielder andres iniesta was booed by the home fans . holland boss guus hiddink branded the home supporters a ` disgrace '\nafghan women 's rights activists risk their lives to fight for their rights , says amnesty international . rights group says afghan government has done little to protect them . amnesty report calls for authorities to address the number of attacks on women 's activists . report examines persecution of activists by taliban and tribal warlords , and government officials .\nlongwood university freshman anjelica ` aj ' hadsell was last seen on march 2 . police are searching a pond near carrsville , virginia , for her cell phone . residents reported seeing a white van for the company wesley hadsell works for driving suspiciously around the pond . wesley hadselling was arrested on march 21 after being interrogated by police for more than 15 hours and has admitted to breaking into his daughter 's home . he said he found her jacket in his couch rolled up behind the cushion . police have not ruled out foul play in the disappearance of the 18-year-old .\namanda knox and then boyfriend raffaele sollecito were cleared of murder . they served four years in prison for the 2007 murder of meredith kercher . knox said she would lobby on behalf of other innocent people . she said she was ` relieved and grateful ' that the court had found her innocent . she could be in line for millions in compensation for time wrongly spent in prison .\nnepali pranksters were filming a hidden camera series in jawalakhel . the magnitude-7 .8 earthquake struck saturday morning . the team kept the camera rolling as they moved through the crowded streets . they found homes destroyed and survivors pulling survivors out from piles of rubble .\nrafa benitez 's napoli will face dnipro dnipropetrovsk in the last four . fiorentina will face holders sevilla over two legs . the europa league semi-final ties will be played on may 7 and 14 .\ntristan da cunha is the most isolated human settlement on earth . the island is home to just under 270 people , mostly descendants of dutch , american and italian sailors . the uk overseas territory is holding an international competition to improve its infrastructure . the winner will be announced in june 2016 and will receive grants to fund the project .\nred cross worker photographed girl , 4 , in jordanian refugee camp . she mistook aid worker 's camera for a weapon and raised arms to surrender . photographer rene schulthoff did n't realise how scared she was until editing photos . he said : ' i was shocked by her reaction , the fear and seeing her crying ' follows iconic image of four-year-old adi hudea who surrendered to camera . she was pictured in syrian camp after her father was killed in 2012 .\nkristina karo is suing mila kunis for $ 5,000 for ` theft ' karo claims she was seven when kunis stole her pet hen ` doggie ' the ukrainian woman claims the theft traumatised her and forced her to see a therapist . kunis responded to the lawsuit with a tongue-in-cheek video . she said she will counter-sue for injuries sustained while watching karo 's music video .\njudy murray has revealed that she ca n't wait for her son to have children . she said she was n't sure when her son would have children but knows he wants them . judy also said that she taught her son some basic dance moves . andy and kim married at dunblane cathedral with a service led by the rev colin renwick .\nreality tv star noelle reno is former fiancee of businessman scot young . he fell 60ft from his marylebone home last year after row with her . ms reno has now broken her silence , four months to the day since his death . she confirms she had split up with her partner of five years before he fell . in a move bound to spark further controversy she also labels his death a ` suicide '\na 24-year-old man is believed to have shot dead his father and tried to shoot his pilot colleague before turning the gun on himself . tim mcnaughton 's body was discovered alongside his father greg mcnaughson ' 's near a shooting range at a farm in the caves , near rockhampton in central queensland . in february 2012 , tim was issued with a ` shooter ' firearm licence by the northern territory police . a third man , lindsay hart , escaped being killed after being shot in his bicep by running into the bushland as bullets flew past him .\ncourt papers were filed by two students expelled from the university at albany after trevor duffy , 19 , of the bronx died in november . his death came after a night of heavy drinking during a party held by zeta beta tau members at an off-campus home . duffy died at an albany hospital november 17 , two days after drinking large amounts of alcohol with other frat pledges .\nfamily in texas were shocked to find 30 birds in their front room . video maker states that the birds came in through the chimney . he initially thought they were bats before realising they were sparrows . despite the infestation , the family remain very calm throughout the video .\nyoungster 's mother left the buggy in the lobby of their building on merrimac drive , langley park . but when she went to retrieve the stroller the following morning , it had reportedly disappeared . police have released cctv footage which shows a person pushing the empty chair in a parking lot .\nfloyd mayweather faces manny pacquiao in las vegas on may 2 . the bout is billed as ` the fight of the century ' and is worth at least $ 180million . former undefeated world super-middleweight champion joe calzaghe backs mayweather . calzag he says pacquio will be more relaxed after being beaten .\nchef raymond blanc lives in le manoir aux quat ` saisons in oxfordshire . the 15th century manor house boasts stunning grounds and michelin-starred restaurant . the chef also runs an in-house cooking school in the grounds . lucy verasamy visited the cooking school to learn about healthy eating .\njoao teixeira suffered a broken leg during brighton 's goalless draw with huddersfield . the 22-year-old was taken off on a stretcher during the match at the amex stadium . brighton boss chris hughton has described the injury as a ` real blow ' teixeira has been on loan at brighton from liverpool since august .\na new study reveals australians are the most secretive shoppers . one in five admit to doing online shopping in bed at night . 86 per cent admit to shopping online for items they 're too embarrassed to buy in store . three-quarters of australians spend up to $ 300 per month online .\njay z uses twitter to refute talk that his music streaming service is underwhelming . the rapper/entrepreneur launched the service last month . he 's been criticized for not doing enough to compete with spotify . a parody twitter account was created to offer some `` facts '' of its own .\nqpr host aston villa in the premier league on tuesday night . tim sherwood has branded his stars ` icing on the cake players ' qpr will be without striker eduardo vargas for the rest of the season . vargas has been ruled out for 10 to 12 weeks with a knee ligament injury .\nanika stanford is assisting police with the murder case of her son vincent stanford . she visited leeton police station on thursday morning and was taken back to the home she shares with her son and another son . vincent stanford , 24 , has been charged with the easter sunday murder of ms scott . ms scott was buried in an emotional funeral on wednesday . she disappeared the weekend before her wedding to fiance aaron leeson-woolley .\nfour royal navy sailors charged with gang rape of a young woman at a party in canada . joshua finbow , 23 , craig stoner , 24 , simon radford , 31 , and darren smalley , 35 , were arrested six days later . the men were taking part in a royal navy ice-hockey team tour of nova scotia . alleged victim , who is a civilian , was taken to hospital and examined by sexual assault nurses .\nlewis hamilton is richest sportsman in britain with a fortune of # 88million . but manchester united captain wayne rooney has overtaken jenson button to be in second place on the 2015 sunday times sport rich list . the list was released just hours after hamilton was pictured on the rome set for the filming of comedy sequel zoolander 2 .\npresident barack obama will not use the term ` genocide ' to describe the mass murder of armenians by ottoman turks in 1915 . obama promised to use the word as a candidate but has not followed through . kim kardashian and the pope have called for the world to recognize the killings as a genocide . the white house said it will send an administration official to armenia this week to mark the 100th anniversary of the massacre .\nthe unidentified woman was allegedly kidnapped thursday in a parking lot in loveland , colorado , police there said in a news release . in a phone call to 911 , she told the dispatcher that she 'd been forced into her car by an armed man and locked in her trunk . the woman told the 911 dispatcher that the man had ` got out ' of the car .\ndavid silva suffered a facial injury in manchester city 's 2-0 win over west ham . the spaniard was caught in the face by cheikhou kouyate 's elbow . he was taken to hospital as a precaution but later posted on social media to ease fans ' worries . the club announced on monday that tests showed no fracture .\nss city of cairo was sunk in 1942 by a german u-boat . it was carrying 100 tons of silver from india to england . the ship went undiscovered until 2011 . a sub found the city of egypt split into two parts . it took seven decades to recover the silver coins .\nnicola sturgeon said for the first time she would regard an ` out ' vote in the tories ' proposed poll on eu membership as justification to reopen the question of breaking up the uk . she also revealed that she intends to be in london on may 8 - the day after the general election - to personally lead the snp 's negotiating team in the event of another hung parliament . miss sturgeon said she - not her predecessor alex salmond - would take charge of any talks , even though she is not running for a westminster seat and he is . the first minister said she had been ` surprised ' by the support of people in england and wales who who want to keep the uk together . the scottish\nbelle gibson has been accused of faking her cancer battle . victoria police said they are still investigating claims . the whole pantry founder has expressed concern for her safety . she said her son 's childcare details , her home address and floor plan had been posted online . ms gibson admitted in an interview last week that her terminal cancer may have been ` misdiagnosed ' she has wiped all her remaining photos from her instagram account .\npakistan have not played a test nation since the attack on sri lanka 's bus in march 2009 . zimbabwe are willing to tour pakistan for five one-day internationals . chairman shaharyar khan hopes the tour will go ahead next month . lahore would host three one - day internationals against zimbabwe .\ncarol bennett-chevereau from quebec , canada , filmed her pet moggy getting up to mischievous . he plunged headfirst into one bag and struggled to get free . he is seen desperately pedaling his back legs through the air with the rest of his body trapped .\nthe 53-second video was posted on youtube on sunday . it features footage of the unnamed woman recording an incident involving multiple officers in south gate on sunday . about 25 seconds into the clip , the woman who had been attempting to speak to some of the officers is approached by a tall man strapped with a riffle . following a brief struggle the man - later identified as a deputy u.s. marshal - grabs her cell phone and throws it to the ground .\natlanta-based writer alex gray , 27 , weighed 354lbs at his heaviest . he lost 160lbs in 20 months , and now weighs a slim 145lbs . he said he was inspired to lose weight after seeing a friend who had lost weight . he also started walking and eating lean rotisserie chicken .\nbayern munich defeated borussia dortmund 1-0 at the signal iduna park on saturday . robert lewandowski scored the only goal of the match on his return to his former club . the win sees pep guardiola 's side stretch their lead at the top of the bundesliga to 10 points .\nburger king has launched summer menu , with three new burgers and frozen drinks . pret a manger has started serving sit-down dinners with wine . the british sandwich chain 's new concept is called ` good evenings ' it runs from 6pm until 11pm every night , but only -lrb- for now -rrb- at its branch on the strand in london .\nrichard hutchinson , 40 , from thornaby-on-tees , north yorkshire , jailed for two years . he punched his former friend in the face so hard that he was left with a fractured skull and a bleed to the brain . the pair had a ` long-running ' feud after hutchinson borrowed the money but had not paid it all back . hutchinson threw punches at the victim the day before the attack and threatened to ` fill him in ' on the phone .\nclaudetteia love , a senior at carroll high in monroe , louisiana , was planning on going to the prom without a date and with a group of friends . but now she and her friends are staying away . principal patrick taylor told love that the decision was dress-code related and that she should n't take it personally . love 's mother said that she believes taylor is ` taking his values and throwing them ' on her daughter because she 's a lesbian .\namerican mohamed soltan was sentenced to life in prison on saturday . he and 36 others were found guilty of plotting unrest against the military-backed government that overthrew former egyptian president mohamed morsi in a 2013 coup . the defendants were found to have plotted unrest from their headquarters in a sprawling cairo protest camp . mohamed badie , the spiritual leader of the muslim brotherhood , and 13 other defendants were ordered to be executed . soltan , who grew up in missouri , michigan and ohio and graduated from ohio state in 2012 , has been on a hunger strike over his detention for more than 14 months .\nplans for a ` rainbow ' zebra crossing to support gay rights could be abandoned . experts have warned that painting the road different colours could have side-effects for people with alzheimer 's . the brightly coloured pedestrian crossing was due to be installed in totnes in devon - the first in europe .\ntwo masked men have robbed three banks in the pittsburgh area so far this year , most recently on april 10 . the men are seen on surveillance footage pointing their guns at bank employees ' heads and threatening to kidnap them . the fbi believes that the men may have had military or police training because of the way they handle their weapons .\nbelle gibson was awarded the magazine 's fun fearless female award in november last year . the whole pantry founder created a social media empire and the whole pantry movement on the story of her remarkable cancer survival . but she admitted this week that she never had cancer . cosmo editor bronwyn mccahon says she regrets that her magazine did n't more thoroughly investigate belle gibson before presenting her with the award . but mccahon said she wo n't be taken off the award , despite gibson 's admission of lying about her cancers .\nnatalie castelli-tyler , 30 , was killed in a one-car collision on february 21 . her daughter , elisa , 3 , was in the backseat at the time of the crash . police ruled the crash a tragic accident caused by poor road conditions . elisa has been plagued by nightmares and daytime visions about a white van , which her father believes may have something to do with the crash .\nkarstein erstad found the worms on the surface of the snow while skiing near bergen . he said they were alive and appeared to be wiggling through the snow . numerous reports have been coming in of worm rainfall in norway . the rare phenomenon has been reported across large swathes of the south of the country .\ntiger woods played in the annual par-3 contest for the first time since 2004 . he was joined by his children and girlfriend lindsey vonn for the tournament . woods said his goal for the event is to ` have fun , enjoy it and not win '\npatrick and marianne charles were without heating during a blackout . the couple , who had been married for 53 years , sat down in their conservatory . they had a glass of wine each and fired up the barbecue to heat up the room . the conservatory quickly filled with smoke and within minutes the couple were unconscious after choking on the fumes . they laid dead for 16 days before their son found them .\nat least 147 people were killed in the attack at garissa university college . the bodies of the al-shabaab attackers are still on the floor . investigators and red cross workers are removing the bodies of dead students . the gunmen told students they were being taught how to kill women , a student says .\nnox3 gene , found in inner ear , is crucial in determining how vulnerable a person is to hearing loss . scientists at the university of southern california identified it in dna of mice exposed to noise . it is the first published genome-wide association study on noise-induced hearing loss in mice .\nmargaret tyler , 71 , has collected royal memorabilia for 40 years . her collection now includes a # 1,200 wedgwood bust of prince charles . she has four rooms dedicated to different royal themes . the mother-of-four has no plans to stop collecting and calls it ' a labour of love '\nfinancial broker richard ilczyszyn was 46 when he died on flight . he was ` groaning ' and ` crying ' in the bathroom as plane prepared to land . but attendants allegedly left him there rather than seek medical help . on landing , they let off all other passengers before calling paramedics . his wife kelly is now filing a wrongful death suit against the airline .\nnigel farage says he was not ` firing on all cylinders ' during election campaign . but he insists he is now ` back on form ' and is receiving private treatment . he said he was suffering after a flare-up of an old spinal injury . the 51-year-old said he has cut his working day to 14 hours and may give up smoking .\na new york judge has authorized service of divorce papers on a husband via facebook . the law of service of process has evolved this way , says david perry . perry : `` traditional '' does n't necessarily mean `` good '' when it comes to serving papers . perry says online service may be a new frontier , but it 's not unheard of .\nbrett anthony o'connor has lost his appeal to ban the media from naming him during his trial . the former head of child safety at education queensland was charged with child sex offences in march . the 52-year-old has been free on bail since his arrest . he is accused of indecently assaulting two 12-year old boys at schools in sydney more than 25 years ago .\nthe u.n. security council votes in favor of an arms embargo on houthis . the resolution `` raises the cost '' for the houthis , britain 's ambassador to the u.s. says . the houthis are a minority group that has taken over large swaths of yemen .\nheavy drinking among americans rose 17.2 percent between 2005 and 2012 , study finds . the increases are driven largely by women 's drinking habits , researchers say . the study is the first to track adult drinking patterns at the county level . in 2012 , 8 percent of americans were considered heavy drinkers and 18 percent were binge drinkers .\nnapoli defeated wolfsburg 4-0 in the first leg of their europa league quarter-final . gonzalo higuain and marek hamsik scored the goals for the visitors . manolo gabbiadini made it four just moments after coming on as a second-half substitute . nicklas bendtner pulled a goal back for the hosts in the 80th minute .\nfor 40 years , physicists have argued that black holes suck in information . but now , one scientist says this may not be true . dejan stojkovic from the university at buffalo says information does n't just disappear . he says interactions between particles emitted by a black hole can reveal information about what lies within .\nimages show veronica bolina lying partially naked on the floor in front of officers and other prisoners in sao paulo , brazil . the 25-year-old had previously been arrested over an alleged attack on her 73-year , old neighbour . police claim she was attacked by prisoners when she was seen performing a sex act on herself in her cell .\nthomas driukas , 25 , charged with murdering five-month-old daughter . paramedics called to his home in birmingham in early hours of wednesday morning . infant taken to hospital with breathing difficulties but died later that day . mother , 22 , has been released on bail pending further enquiries . detectives arrested baby 's parents on suspicion of murder yesterday .\njulian lines was filmed edging towards the top of the cliff in scotland . the 42-year-old solo climber is seen grappling to find handholds and footholds . he said ` life 's problems evaporate ' when he is climbing in the cairngorms .\ngroom 's brother lost control of gun while firing celebratory round in riyadh , saudi arabia . horrified guests dived for cover as bullets ricocheted off walls and into crowd . firing guns in the air is a traditional way of celebrating special occasions in saudi arabia .\nparis-based tv5 monde was hacked by people claiming allegiance to isis . hackers completely cut transmission of 11 channels belonging to the network . also took over its websites and social media accounts for three hours this morning . channel 's director , yves bigot , said the attack was continuing this morning . he said the network has restored its signal but can only broadcast recorded programs , not live content .\n403 passengers delayed by over 33 hours on flight from las vegas to gatwick . virgin atlantic flight vs44 should have left mccarran airport at 4.30 pm . passengers were shunted back and forth from airport to tropicana las vegas hotel . eventually told there was a problem with the plane 's rudder and part needed in uk .\nthe number of hayfever sufferers in the uk is predicted to reach 20 million this summer , up a third from last year . five million people are expected to fall victim to the symptoms for the first time . by 2030 , dr jean emberlin predicts there will be 31.8 million sufferers as the situation will worsen .\nmore than 80,000 fans expected to attend world cup finals this week in las vegas . showjumping and dressage world champions will compete in four-day event . vegas is home to the finals for the sixth time since first hosting showjumping in 2000 . organizers are already planning a bid to bring the event back in 2019 .\ndereck chisora is being lined up for a summer comeback against british heavyweight rival david price . ` del boy ' has not boxed since he was stopped by switch-hitting tyson fury at london 's excel arena in november . chisoras promoter frank warren has confirmed that chisoris has been back in the gym for the past month .\nvan carrying 12 people from south carolina careened off interstate 85 near commerce , georgia , about 7am monday . the driver ` apparently fell asleep and allowed the vehicle to leave the roadway , at which time the vehicle struck a tree on the passenger side , ' police said . members of atlanta-based band khaotika and the huntsville , alabama-based wormreich were in the van . the three men who died were ejected from the vehicle , according to fox5 . the van 's driver was not injured .\nrail firms planning fare hikes of up to 87 per cent just ten days after election . comes despite main party leaders pledging to freeze prices for whole of next parliament . david cameron has written to first great western asking it to ` urgently review ' its plans to increase fares on the route through his witney constituency .\nhull are interested in signing leeds united midfielder alex mowatt . the 20-year-old has impressed in the championship this season . steve bruce is keen to bolster his squad with homegrown talent . mowatts has scored nine goals for leeds this season . the england u20 international scored against wolves on monday .\ntaxi driver returned bag passenger left in his car containing # 10,000 . mohammed nisar had been driving sole trader adrian quinn to walsall train station . mr quinn had been carrying the hefty sum of money after cashing a cheque from his inheritance following the death of his mother . he realised he had left the bag in the car just seconds after mr nisars dropped him at the station .\naston villa drew 3-3 with qpr at villa park on tuesday night . tim sherwood and chris ramsey may become a united force again in seasons to come . there was adrenaline , action , twists and turns as the two managers went head to head . sherwood tore his jacket off as he celebrated his team 's goal .\nalison , 43 , from gloucestershire , had breast augmentation surgery six years ago . but infection caused her breast to die and she was left with a deformed breast . she has now had 13 operations to fix the damage . she is now starring in tlc show extreme beauty disasters .\nclermont beat northampton 36-6 at the stade marcel-michelin . noa nakaitaci scored two tries for the french side . nick abendanon scored a superb break-away try for clermont . northampton are out of the champions cup after the defeat .\nchelsea host manchester united at stamford bridge on saturday night . jose mourinho believes his side are not weakened by injury problems . louis van gaal will be without marcos rojo , phil jones , michael carrick and daley blind . mourinho listed the players united have in their squad .\nalastair cook 's side take on the west indies in the first test on monday . the series is one of the most important for cook 's career . the england captain is desperate to avoid being distracted by the seismic changes going on all around him . kevin pietersen hit 170 off 149 balls for surrey against oxford mccu . james anderson will make his 100th test appearance .\nasif malik , 31 , his partner sara kiran , 29 , and their four children are missing . family , from slough , berkshire , were last seen on ferry to calais on april 8 . police say they left without mentioning any holiday or travel plans . family 's family say they are ` devastated ' and have issued desperate plea . mr malik was a member of banned group al-muhajiroun , it was reported .\nhenry louis gates is accused of scrubbing part of a segment in his pbs documentary series . ben affleck said he did n't want the show to include a slaveholding ancestor . frida ghitis : gates missed an opportunity to provide a window into the importance of slavery 's past . she says the fallout continues to deal with pbs and wnet 's internal review .\n68 of ed miliband 's mps employed staff on zero-hours contracts . party chiefs scrambled to shore up support after it emerged . labour councils have also issued 22,000 of the contracts . ed miliband has pledged to ban the controversial contracts . but he was accused of ` total hypocrisy ' on the issue . party leaders engineered letter signed by 100 workers and employers . but it emerged the signatories included a benefit fraudster , a boss who has used zero - hours workers , affluent students and a string of union and party activists .\njury selection for chancey luna 's murder trial has begun in oklahoma . the 17-year-old is accused of shooting dead australian baseball player chris lane . lane was jogging along a street in duncan , oklahoma in august 2013 . luna faces a maximum sentence of life in jail without the prospect of release . the trial is expected to last between seven and 10 days .\nrensselaer polytechnic institute in new york pushed back its planned screening of the controversial iraq war film which was set for last friday . it said it will still show the oscar-nominated movie but with an educational forum follow-up to allow students to discuss the film .\nmohamad saeed kodaimati , 24 , was arrested wednesday in rancho bernardo , san diego . he is accused of making false statements to the fbi about his involvement with syrian militants . saeed , who was born in syria and became a naturalized american citizen in 2008 at age 17 , allegedly bragged about working for a sharia court and expressed his support for isis . he allegedly claimed he had never fired his weapon at anyone and did not know any islamic state members .\neverton team-mate gareth barry has advised ross barkley against moving to manchester city . the 21-year-old has been linked with a move away from goodison park . barry believes it is too early for the youngster to decide on his future . the veteran midfielder spent four seasons at the etihad before joining everton .\njack johnson won world heavyweight title in 1908 . he was the first black man to hold sport 's greatest prize . johnson was a trailblazer and suffered discrimination , death threats and later persecution at the hands of the government . he lost his title to jess willard in 1915 .\nbhadreshkumar chetanbhai patel , 24 , is wanted for killing his wife palak bhadreskumar patel of hanover . patrons called police sunday night shortly after discovering no workers at the dunkin' donuts on arundel mills boulevard in hanover , maryland . police said the investigation revealed that patel 's husband , 24-year-old bhadreshkumar chetanbhai , hit her multiple times with an object and then fled .\nthe box truck collided with a car on interstate 93 southbound in the city 's dorchester neighborhood at about 6am . both drivers were taken to hospital with non-life-threatening injuries . officials did n't want to risk running trains under the over-hanging truck , so replacement shuttle buses were run for southbound passengers .\npolice say a drone carrying traces of a radioactive material was found on the roof of japan 's equivalent to the white house . the discovery came on the same day a japanese court approved a government plan to restart two reactors . prime minister shinzo abe 's push to restart the reactors is unpopular among many japanese .\nsalford red devils beat wigan warriors 24-18 in super league match . ben jones-bishop scored a superb solo try for salford in the second half . both sides ended the match with 12 men as tempers flared . weller hauraki and john bateman were sent off for trading punches .\nvalencia beat levante 3-0 in the la liga derby at the mestalla . paco alcacer , sofiane feghouli and alvaro negredo scored for valencia . the win lifts them to within a point of atletico madrid in third place .\nfrancis coquelin was sent on loan to charlton before christmas . arsene wenger did not expect hector bellerin to progress so quickly . bellerins scored his second goal for arsenal against liverpool . wenger also admitted beller in was lucky not to be sent off . the gunners are currently fourth in the premier league table .\ndavid moyes gave wayne rooney his professional debut as a 16-year-old at everton . moyes succeeded sir alex ferguson as manchester united manager in the summer of 2013 . the pair had a well-publicised falling out following rooney 's departure from everton in 2004 . the united boss says he fought hard to keep the england striker at old trafford .\nargentina says it will mount a legal challenge against british attempts to explore seas for oil . but it has ruled out another conflict with britain over the south atlantic islands . daniel filmus , argentina 's secretary of state for the islands , said military conflict ` belongs to the past '\nhousing secretary julian zelizer : u.s. is in midst of affordable housing crisis . he says 7.7 million low-income households live in substandard housing . hud is working with local partners across the country to do just that , he says . zelizer says nation is losing 10,000 units of public housing every year .\nburton albion were promoted to league one after beating morecambe . burton albion boss jimmy floyd hasselbaink wants to finish on top . hassel baink also paid tribute to his predecessor gary rowett . the brewers take on northampton on saturday .\nnbc chief foreign correspondent richard engel was kidnapped in syria in 2012 . he was held captive for five days and expected to be killed . but nbc has now revealed that his captors may have been sunni rebels . they had tried to convince him they were government-linked militia . nbc said it was most likely a sunni gang who were ` shifting allegiances '\nchristianne boudreau of calgary , canada lost her son damien clairmont to isis last year when he crossed the border into syria to join the extremist group . the 22-year-old was bullied in high school and turned to islam for solace in 2011 . ms boudroy is now helping other families of radicalized young men and women by working with them .\njohn truong agreed to babysit his sister 's boyfriend 's son , 2-year-old ronnie tran , on tuesday night . the next day , his sister alyssa chang allegedly abducted the boy with his mother and grandmother . the mother was bound with plastic ties and locked in a cupboard , but managed to escape and get help . truong was watching the boy when he saw an amber alert issued for him . chang was arrested on charges of kidnapping , assault and unlawful imprisonment .\ndefence secretary michael fallon says labour leader is ` so desperate ' for power . he claims miliband is willing to weaken uk defences to win snp support in backroom deal . comes as tories pledge # 100billion fleet of four new trident nuclear missile submarines . miliband says tories have ` descended into the gutter ' and david cameron ` should be ashamed '\njerry grayson flew in royal navy helicopters during the 1970s . he was responsible for saving 15 sailors during the fastnet yacht race . the 59-year-old set himself the task of tracking down every helicopter he flew . he travelled 23,000 miles to find them all around the uk . but one of the choppers has been converted into a posh camping facility . mr grayson , who now designs aerial stunts for films , is writing a book about his experiences .\nmaria sharapova and venus williams have both withdrawn from their countries ' respective fed cup ties this weekend . sharapov has been forced to pull out of russia 's semi-final against germany in sochi with a leg injury . williams has withdrawn from the usa team for the world group play-off against italy due to personal reasons .\nmanchester city lost 2-1 to crystal palace on monday night . manuel pellegrini guided city to their second premier league title in three seasons . the chilean is one of four managers to have won the league in the last five years . jose mourinho , carlo ancelotti , roberto mancini and roberto peralti all left their jobs by the following year .\nwayne rooney has been deployed up front for manchester united this season . the 29-year-old had been playing in midfield for the red devils . louis van gaal has now returned the england captain to his preferred position . united face manchester city in the manchester derby on sunday .\nkardashian beauty empire includes hairbrush and nail polish . shares beauty essentials on instagram . uses # 12 rose water mist and # 65 creme de la mer spf 30uid . kim also uses anastasia soare to groom her brows . set to launch kardashian kids collection next week .\nandros townsend was brought on in the 83rd minute for tottenham . paul merson had criticised townsend 's call-up to the england squad . townsend scored for england against italy on wednesday night . merson has had another dig at townsend after tottenham drew with burnley .\nchelsea manager rafa benitez was keen on signing andre schurrle . the german midfielder joined wolfsburg in january . benitez also tried to sign luiz gustavo and ivan perisic . napoli travel to wolfsburg for the first leg of the europa league quarter-final .\nneill buchel , 39 , was bludgeoned to death by elvis kwiatkowski and chas quye . the men were obsessed with the hit u.s. tv show jackass and filmed pranks . mr buchel was kicked , punched and bludgeoning to death on march 13 , last year . his body was cut into ten pieces and disposed of in a fishing lake . mr quye and kwiatowski were jailed for life at blackfriars crown court today .\nthe 15-year-old girl is named locally as leah price from nottingham . she was airlifted to hospital last night from blue dolphin camping site . it is believed she lost her footing on the cliffs in filey , north yorkshire . her father was said to have witnessed the incident and alerted the emergency services .\nceltic lost 2-1 to inverness in the scottish cup semi-final . invernesses defender josh meekings was sent off for a handball . chris sutton has called for more accountability for officials . the former celtic striker has branded additional official alan muir ` idiotic ' for failing to see a handballs by meeking . meekings is now fighting a ban from the scottish cup final .\nthieves targeted 294 security vaults during a break-in at the volksbank in steglitz , berlin , in january 2013 . the gang , who fled the bank with diamonds , gold and silver worth more than # 8.3 m , have never been found . it now appears that the berlin heist bore all the hallmarks of the easter weekend raid in london .\ncarmem dierks , 60 , was running a dodgy dental practice in west orange county , florida , according to authorities . she is facing charges of practicing unlicensed dentistry and operating an unregistered dental lab . authorities discovered hundreds of patient files , two dentist chairs , an x-ray machine and dental molds . officers also found two patients in the middle of treatment . they said that dierk had been treating them for eight years .\npeter kelly was stabbed in the chest beside the st croix river in wisconsin on tuesday night after he and a friend asked a group of rowdy fishermen to be quiet . the argument escalated and kelly was attacked and died at the scene . he was a volunteer high school wrestling coach and father of five .\ndion dublin makes debut as a co-host on bbc1 's homes under the hammer . former aston villa frontman joined hosts martin roberts and lucy alexander . dublin helped a brother and sister-in-law renovate a three bedroom house . the 45-year-old received plenty of plaudits from viewers via social media .\ntsa screeners were accused of groping attractive men at denver airport . a male tsa officer would spot an attractive man and alert a female tsa officer . the female would then tell the screening machine that a female passenger was walking through . that would trigger a machine to register an anomaly in the groin area .\nadrien broner and 50 cent were watching premier boxing champions on saturday night . danny garcia swift beat lamont peterson with a controversial majority decision . broner called garcia out on instagram and said he would fight him in september . the former world champion recently rejected a $ 40million contract offer from fledgling boxing promoter jay z .\ntiffanie didonato , from swansboro , north carolina , was born with diastrophic dysplasia , a rare form of dwarfism . she underwent numerous limb-lengthening surgeries as a child so she would grow to be 4 '10 tall , instead of her previous height of 3 ' 8 . the 34-year-old mom is now three months pregnant with her second child .\ntv star 's son jesse willesee was arrested for smoking weed at sydney town hall on monday . his girlfriend jasmine dinjar has posted provocative images of her promoting the use of cannabis on instagram . she has posed topless in underwear printed with marijuana leaves and with fingernails painted with the cannabis sign . jasmine lit up in celebration of jesse 's ongoing campaign to legalise marijuana .\ntwin 18-month-old boys eli and silas keslar died after falling into a canal in yuma , arizona on friday . their mother alexis keslar was walking with her sons along the canal bank when she was distracted by a bee and the stroller rolled away from her . she tried to rescue her sons but the canal banks are so steep that it was impossible to climb down them . the boys were pulled from the water one hour later and rushed to hospital where they were pronounced dead .\ntwo teens admitted they sexually assaulted audrie pott , 15 , at a party . they said she was unconscious and did not consent to their ` criminal acts ' also apologized for spreading false rumors that ` served to shame and humiliate her ' audrie hanged herself after images of the attack were shared . parents filed civil lawsuit against three teens and settled for $ 950,000 .\nnumber of middle-aged women with very long natural hair is on the rise . fiona steane , 50 , wanted to cut all her hair off when she was 15 but her mother refused and she 's had it long ever since . melanie brown , 60 , has 4ft long hair and vanessa thorpe , 40 , has 2ft 10in .\nfloyd mayweather jnr is preparing for his $ 300m mega-fight with manny pacquiao . his personal chef quiana jeffries has revealed his weaknesses . the boxer loves twizzlers and top ramen , but loves fried hot dogs . jeffries is struggling to find organic food in las vegas .\nengland under 20s will take part in toulon tournament this summer . gareth southgate 's squad finished fourth in the competition last year . aidy boothroyd will lead england this time around . liverpool winger jordon ibe could feature in the squad . the tournament runs from may 27 to june 7 .\nthe island of saint helena is 1,200 miles off the coast of west africa . it was discovered by portuguese explorer juan de nova in 1502 . the island is just 122 square kilometres in total and has just 4,200 inhabitants . early next year a # 218m airport will open and make the island more accessible . the only way to reach the island is via ship - the rms st. helena .\nedward snowden is being ` exploited ' under a deal he made with the russians . andrei soldatov said the former us spy was being ` secretive ' about his arrangements with the russian authorities . mr snowden may have been told not to speak out on russian surveillance but continue attacking america in order to save himself from jail in the us .\nraymond frolander , 18 , was jailed for 25 years for sexually abusing 11-year-old . he was beaten unconscious by the boy 's father after performing sex act on him . frolander was pictured in mugshot with black bruises and lacerations to face . photo was shared thousands of times online after it was released last july . on thursday , he pleaded no contest to lewd and lascivious molestation . as part of deal , frolander will be listed as sexual predator and on probation .\nmanchester city are keen to sign yacine brahimi and alex sandro . city also want wolfsburg 's kevin de bruyne . city sent scouts to watch porto in action against bayern munich . manuel pellegrini is under pressure to deliver success at city .\nmanny pacquiao is set to fight floyd mayweather in las vegas next saturday . the filipino has appeared in a hilarious commercial for foot locker . pacquio joked about the possibility of facing mayweather in november . foot locks have released a follow-up advert where pacquao is confused .\nbilliards player sets up domino train to pot four balls in a single shot . video footage shows a white ball being rolled down a positioned cue . it then bounces off one side of the red-clothed table and hits the first in a long line of dominoes .\nbenjamin mellor ripped open one of the 41 bales of cocaine after food ran out . the 35-year-old window cleaner was one of three brits arrested after naval officers stormed the yacht 200 miles off the south-west coast of ireland in september . he was jailed for eight years yesterday after admitting drug trafficking and importation . thomas britteon , 28 , also received eight years for the same charges while john powell , 70 , was sentenced for 10 .\nhillary clinton claimed wednesday that all of her grandparents ` came over ' from other countries , but in fact only one was born outside the us . buzzfeed found u.s. census records and selective service documents -- draft cards -- that establish that three of the former secretary of state 's grandparents were born in america . clinton 's camp quickly acknowledged the accurate rodham family history . but the insider insisted that mrs. clinton had simply believed what her family members had told her .\nmanchester united star ryan giggs phoned his brother rhodri to apologise for his eight-year affair with his wife . the two brothers are now reconciling in an attempt to rebuild their relationship . ryan gigg 's affair with natasha was first revealed in june 2011 . she went on to talk about it on celebrity big brother in january 2012 .\nthe kim kardashian : hollywood app has been downloaded 28 million times . it is the first of several celebrity gaming apps from the likes of kim kardashian and lindsay lohan . users have to build a celebrity empire similar to kim 's . the game is a quest-based adventure game .\neileen mason , 92 , was on her way home from lunch club in swindon , wiltshire . she and friend margaret seabrook , 75 , were approached by a would-be robber . the man tried to steal the contents of mrs seabraok 's scooter basket . but mrs mason shouted ` oh , no you do n't ' and slammed on the accelerator . the attacker was knocked to the ground and the pair sped off into the distance .\nmore than 160 melon-headed whales washed up on two beaches . the whales are a species of dolphin and were found 60 miles north of tokyo . officials are still investigating what caused the whales to become stranded . but they triggered rumours of an impending earthquake and tsunami . the fears appeared to be based on the appearance of 50 melon head whales six days before the devastating undersea earthquake in 2011 .\nhundreds of migrants have died trying to reach europe . many of them are pregnant women who were arrested as they tried to cross the mediterranean . libyan officials say they have no system in place to send them home . a funeral was held thursday for 24 of the migrants killed when their boat sank .\ntank from des moines won the 36th annual beautiful bulldog contest sunday at drake university . tank , who enjoys eating snow and watching turtles , will now serve as mascot of this year 's drake relays . the tongue-in-cheek beauty pageant , which featured 50 dogs , is the kickoff event for the drake relay track meet .\nstroke survivors often suffer damage to this area of their brain and struggle to recognise when family and friends are being sarcastic . researchers at john hopkins medical school in baltimore found that damage to the right sagittal stratum in the right hemisphere of the brain affects a person 's ability to detect sarcasm . they found that people with damage to that area of the . brain are unable to detect sarcastic comments .\ncharlotte briggs was told she can not attend lydgate junior school in sheffield . seven-year-old can see the school from her bedroom window but was refused place . mother lynne , 49 , says taking her daughter there and back would take four hours . sheffield city council said school charlotte attends has never been a feeder school . she was instead offered a place at shooters grove primary - more than two miles away .\nsofar gourian , popularly known as ` safinaz ' , was fined # 15,000 . she is expected to avoid jail time after paying # 10,000 bail . insulting the flag was made illegal by decree under president adly mansour .\nwest ham 's season tickets will cost as little as # 289 when they move to the olympic stadium . co-chairmen david gold and david sullivan will use enhanced tv revenue to pass savings to fans . the club will have the cheapest pricing strategy in the premier league .\nnfl star aaron hernandez was a troubled teenager in bristol , connecticut . he was captain of his high school football team and rated as the best football player in the state of connecticut in his senior year . hernandez was arrested for the murder of odin lloyd in june 2013 and will spend the rest of his life in prison . he has been accused of shooting a total of six men - killing three and severely wounding three other .\nderek murray , a university of alberta law student , was parked in edmonton , alberta , when he accidentally left his headlights on all day . when he returned to his car , he found a note from a stranger explaining how to use an extension cord and battery charger to start his car . derek snapped a photo of the note for facebook and it has since gone viral .\nmost of nepal 's most famous pagodas destroyed by earthquake . shiva temple pagoda and its twin , the narayan temple pagoda , destroyed in kathmandu . other famous temples , stupas and shrines in kathandu valley survived . no news yet on damage to other famous places of hindu and buddhist worship .\nmanuel pellegrini could be worried about his position at manchester city after losing against their fierce rivals . ricky hatton wants ` the old city back ' , while rock-god city lover noel gallagher says there is ` apathy ' towards the champions league among the fans . city need to stop pussy-footing around and drag the fans into the modern game .\nnicholas connors sang the national anthem ahead of the houston rockets and dallas mavericks nba playoffs game on tuesday night . he was joined by one of his favorite players , houston texans defensive lineman j.j. watt . when nicholas finished , the 26-year-old player ran across the court to congratulate him .\ntottenham defeated newcastle 3-1 in their premier league clash on sunday . nacer chadli , christian eriksen and harry kane scored for spurs . jack colback had given newcastle the lead in the 46th minute . the magpies have now lost six games in a row and are seven points off the relegation zone .\nkim woodward , 34 , is first woman to head savoy grill kitchen in 126 years . she follows in footsteps of a string of maître chefs since opening in 1889 . cheshire-born chef says she will continue ` masculine ' traditions of grill . she was a sous chef at the venue between 2010 and 2012 .\nnorth korean defector lee min-bok sends thousands of copies of ` the interview ' across the border from south to north korea in balloons . he is determined his people will see the movie in which the leader kim jong un is assassinated on screen . lee says he is launching balloons in the dead of night to avoid confrontation with north korea .\njordon ibe is set to sign a new long-term contract at liverpool . the 19-year-old has been out since damaging knee ligaments against besiktas . ibe has impressed since breaking into the first team this season . brendan rodgers says ibe looks ` absolutely sensational ' ahead of his return .\nnew : police arrest nine people in denver . new : a rally in new york is called for wednesday night . new ; new : about 500 people march in washington . new . three people were shot in ferguson , missouri , police say . . the protests are in support of baltimore protesters .\nextra stretch of coastline on shiretoko peninsula near town of rausu . land has risen as high as 50ft from the sea surface in some places . geologists believe emergence is a result of a landslide nearby . melting ice and snow caused a section of land to drop .\n` human remains ' found on farm near milngavie , stirlingshire , last night . police have arrested a 21-year-old man in connection with her death . officers sealed off high craigton farm near bearsden , north of glasgow . miss buckley 's handbag was found there by a member of the public . student , 24 , was last seen leaving sanctuary nightclub in glasgow on sunday .\nliverpool face a major rebuilding job this summer following another trophyless season . brendan rodgers could see up to 10 of his stars leave anfield . captain steven gerrard has already agreed to join mls side la galaxy . glen johnson is out of contract and set to go on a free transfer . kolo toure is also out of deal and considering whether to accept new deal . mario balotelli 's # 16million switch from ac milan has been a disaster .\nsean reardon , 30 , was pulled over for suspected drink driving in chico , california . he claims he was wrestled to the floor by two police officers and hit with a baton . video footage has emerged of the incident and shows him being hit with an object . reardon claims he suffered respiratory failure and was in icu for 4 days .\nanti- immigrant violence in south africa has killed several people in recent days . cnn speaks to immigrants living and working in south african cities . one says he is too afraid to go to work , fearing attacks . another blames south africa 's government for not providing jobs and education .\nvalbona yzeiraj was arrested on thursday and pleaded not guilty to charges of assault , unauthorized practice of a profession and reckless endangerment . authorities said the 45-year-old woman , from white plains , did injections in people 's mouths , performed root canals and on several occasions pulled patients ' teeth . she claimed to have dental training in her native albania but authorities said she had no license in the u.s.\ncanada 's montreal impact drew 1-1 with america in the concacaf champions league final first leg . ignacio piatti opened the scoring for montreal with a first-half strike . oribe peralta equalised for america in 89th minute with a header from rubens sambueza 's cross .\ntony mccoy is set to retire after a successful career . mccoy will race at sandown on saturday for the last time . mccoy has 4,357 winning memories to his name . eddie arcaro had 4,779 , including five kentucky derbys . mccoy is currently leading the jump jockeys championship .\ndisgusted passer-by snapped the man on his mobile phone . he was caught urinating in a field of vegetables in benington , lincolnshire . th clements & son , which owns the field , was alerted and sacked the worker . company said : ` he failed to follow company procedures '\nwalter scott and pierre fulton were heading to scott 's home on april 4 when he was pulled over for a broken tail light . scott , 50 , fled the scene and was shot dead by officer michael slager . fulton said he heard the crackle of a taser and shots fired but did not see scott get shot . slager has been charged with murder and fired from the police department . scott was laid to rest last weekend .\n`` star wars : episode vii -- the force awakens '' cast and director j.j. abrams spoke at an event . the trailer for the new film was shown to the audience . the cast was appreciative of the welcome . the new `` star wars '' is due out december 18 .\nwasps lost 32-18 to toulon in their european champions cup quarter-final . dai young has called for reform to the premiership salary cap . the comments came after his team lost 32 -18 to the french side . young said the salary cap is not working and english clubs ca n't compete .\nthe dramatic , up-close images , captured by a bornean student , show the incredible power of the tiny creature . the weaver ant is able to cleverly balance the centipede which is much larger and heavier but ultimately helpless in the insect 's grasp .\nmore australians are visiting bali than any other nationality . the number of australians visiting the island has risen 16.7 per cent from the same period last year . a proposed alcohol ban could deter australians from holidaying in bali . indonesia institute president ross taylor says it is unfortunate the fate of bali nine drug smugglers is probably third on the list of concerns about indonesia .\nmanchester city have lost too much ground to chelsea in the title race . manuel pellegrini 's side could be in fourth place before they next play . the chilean believes his side are now in a battle for the champions league places and not the title . city travel to crystal palace on monday in the premier league .\nmercedes , believed to have been operated as a minicab , was wedged between two buses . four-vehicle pile-up happened in goodge street , central london . two people were treated at the scene by paramedics . it forced the closure of the road near the junction with tottenham court road .\nravi beefah has plastered his # 35,000 audi a5 with slogans . he parked it outside the dealership in chelmsford , essex , in february . mr beefnah claims the car uses a litre of oil every time he fills it up . he is taking audi to court over their failure to fix the engine on his car . the 34-year-old says he parked his car there as warning to other drivers .\njulius caesar collapsed at the battle of thapsus in 46bc . historians have long believed this was result of an epileptic attack . but new research suggests that the roman general may in fact have been suffering from a series of mini-strokes . doctors at imperial college london came to the conclusion after taking a new look at caesar 's symptoms described in greek and roman documents .\nprince william will be taking six weeks of paternity leave . quentin letts says he made it through a week of his own paternity leave . ` for the next six weeks , and possibly beyond , the prince will be on domestic parade , ' says letts . ` they knew what no midwives looked like in a maternity ward , ' he adds .\na ` blob ' of warm water 2,000 miles across is sitting in the pacific ocean . since last june it has extended from alaska to mexico . it has been present since 2013 and has been causing fish to seek shelter elsewhere . and a new university of washington study says it could be responsible for droughts . california 's drought is one of the worst on record , while the east coast of the us has seen unusually cold temperatures .\nsteven mathieson stabbed luciana maurer , 23 , 44 times in unprovoked attack . father-of-two then called two more vice girls over to his family home and raped them . his young son was asleep in the room next door while he carried out the horrific crimes . mathies on , 38 , pleaded guilty to murder and rape at high court in glasgow today . father , who was high on cocaine , faces life in prison after admitting murder and raping .\nlee allan bonneau was beaten to death with a rock and a stick in august 2013 on a first nation reservation in saskatchewan , canada . a 10-year-old boy , later identified as l.t. , initially told police that a ` big person ' had killed lee . the boy later changed his story and said he was the one who killed the 6-year old . lee was found dead from severe head injuries four hours after he went missing in the care of his foster mother . a coroner 's jury in regina heard how the underage suspect ran to his friends after the attack on bonneau telling them he had witnessed a murder .\nchelsea host manchester united on saturday at stamford bridge . the premier league leaders are seven points clear of united . angel di maria is likely to start on the bench for louis van gaal 's side . juan mata could return to haunt his former club after being pushed out . wayne rooney will be hoping to prove he is the man to beat .\n18-month-old eli and silas keslar died after falling into a canal in yuma , arizona on friday morning . authorities have not yet officially identified the boys , but they were named over the weekend in a go fund me campaign page . the fund to cover memorial and medical costs for the boys has already raised over $ 10,000 . authorities do n't suspect foul play .\nbeatriz carrion-moore is accused of kicking a deputy in the groin and thigh . she was also allegedly offering him oral sex in exchange for a get out of jail free card . police were called to boonies bar in west palm beach on friday night .\nstudy found almost 30 million health records nationwide were involved in criminal theft , malicious hacking or other data breaches over four years . compromised information included patients ' names , home addresses , ages , illnesses , test results or social security numbers . most involved electronic data and theft , including stolen laptops and computer thumb drives .\nlady antebellum singer hillary scott 's tour bus catches fire on a texas freeway . all on board were evacuated safely , scott says . the fire destroyed everything in the bus 's back lounge except her bible . lady antebelum is set to perform at the academy of country music awards on sunday .\ngolden retriever martha was playing on the beach in leasowe in merseyside . she was caught in a strong current and swept out to sea by the tide . her owner tried to rescue her but was unable to reach her in time . rnli crew were called and managed to pull the dog on to the lifeboat . but they have warned owners not to attempt to rescue their pets at sea .\nqueens park rangers are currently in the premier league relegation zone . chris ramsey 's side face west ham , liverpool , manchester city , newcastle and leicester to close the season . ramsey believes three wins will be enough to keep his side in the top flight . qpr lost 1-0 at home to chelsea in their last game .\nthe transportation security administration released a report on employee screening . the report says full screening would not `` appreciably increase the overall system-wide protection '' the tsa and most airports could not afford 100 % employee screening , the report says . only two major airports in the u.s. require employees to be screened through metal detectors .\nsevere weather capsizes sailboats during a regatta in mobile bay , alabama . one person may have died , an official says . more than 100 sailboats took part in the dauphin island race . as many as 50 people were rescued from the water .\ncouple took son out of school without permission for five-day holiday to spain . they were originally fined # 120 for the unauthorised absence from sweyne park school . but after they appealed unsuccessfully against the fine , court bailiffs visited . they told the family they would be jailed for three months if they did not pay .\nreverend robert schuller died thursday at age 88 . schullers was the founder of `` hour of power '' and the crystal cathedral . he was diagnosed with esophageal cancer in august 2013 . schulker 's message was `` possibility thinking '' and `` brilliant marketing , '' professor says .\na small boat carrying about 50 migrants hit a reef and sank off the northern coast of haiti . at least 21 people were killed , and 12 were rescued . the boat was carrying migrants from le borgne to providenciales in the turks and caicos .\nhull city travel to swansea city in the premier league on saturday . mohamed diame will return from injury for the tigers . the # 3.5 m midfielder has been out for more than four months with a knee injury . hull are currently 15th in the table and face a tough run-in to the season .\nrandy linn is two years into his 20-year sentence for starting a fire that caused over $ 1million in damages to an ohio mosque . linn drove from his home in st. joe , indiana , to the islamic center of greater toledo in september 20112 , broke into the mosque , poured gasoline on a prayer rug and set it on fire . cherrefe kadri , president of the center , said she thought linn 's letter was sincere .\nthomas jordan driver , 25 , david elliot moran , 47 , and charles thomas newcomb , 42 , each faces one state count of conspiracy to commit murder . the three men - who worked at a florida prison - were arrested thursday . the state said the murder plot started after driver , an officer at the department of corrections reception and medical center in rural north florida , had a fight with the inmate . the fbi was initially alerted to the murder plan by a confidential informant inside the klan , according to an arrest affidavit .\ntessa cunningham puts a host of our favourite foods to the frozen test . from cakes to curries , freezing brings out more of their flavour and boosts the texture . freezing is a great way to make the most of the leftovers left over . freezers can be left for up to four hours before freezing .\naston villa are currently 16th in the premier league table , three points above the relegation zone . randy lerner is understood to be in talks with a prospective buyer . tim sherwood insists he is not concerned by talks of a takeover . the villa boss says he will build a squad in his image for next season . villa face manchester united on saturday at old trafford .\nmichael conlan has qualified for the rio 2016 olympic games . the belfast boxer beat josé vicente azocar in venezuela . conlan was close to pulling out of his bout in frustration at his qualification limbo . paddy barnes also won in venezuela , and will also go to rio .\nbritt mchenry , 28 , was suspended from espn after her attack on gina michelle . she told the mother-of-three : ` i 'm on tv and you 're in a f -- ing trailer , honey ' mchenry also used similar language to berate sarah sparkman , an arkansas lawyer . sparkman tweeted about how female sports reporters are sexualized . mchenry found the tweet and began berating her , calling her ` bitter '\nmexican state oil company pemex says 45 workers were injured in the blaze . two of them are in serious condition , the company says . the fire began in the platform 's dehydration and pumping area , pem ex says . authorities evacuated about 300 people from the platform .\nbournemouth move four points clear at top of championship . yann kermorgant opened the scoring with a wonderful 25-yard free-kick . callum wilson doubled bournemouth 's lead with a sublime finish in the 81st minute . cherries set a club record 106 goals in all competitions .\nrichie benaud died on wednesday at the age of 84 following a battle with skin cancer . australian prime minister tony abbott has offered benaud 's family a state funeral . benaud was the voice of cricket for generations , commentating in his native australia and for the bbc .\niphone 6 and iphone 6 plus can bend when placed in tight pockets . apple is rumoured to be planning on using stronger materials for the next generation phone . the 7000 series aluminium could feature in the iphone 6s and iphone6s plus . it 's the same metal used in apple watch sport edition and racing bikes . the material would make the next iphone 60 per cent harder than the iphone6 .\nisrael 's memorial day commemoration is for bereaved family members such as valerie braham . her husband , philippe braham , was one of 17 people killed in january 's terror attacks in paris . braham now lives for her young children . she tells them stories of their father to keep his memory alive and to keep herself strong .\nshanay walker died after being beaten by aunt kay-ann morris , jury told . the seven-year-old was found dead in her bed with 50 bruises across her body . morris , 23 , is on trial at nottingham crown court charged with her niece 's murder . court heard how she was subject to ` repeated acts of cruelty ' by morris . this included having food shoved in her mouth and being hit with a hairbrush .\n19-month-old sarina aziz was removed from a plane after becoming agitated . the family were flying from ben gurion airport in israel to luton . they were asked to leave by crew after the child refused to sit on their lap . the airline said that the action was justified because she was not ` following safety instructions '\ntoday hosts savannah guthrie and carson daly swapped gender roles to perform as danny and sandy from grease . al roker , willie geist and natalie morales donned white wigs for their performance of sia 's chandelier . the two teams were judged by tv star and model chrissy teigen , one of the hosts of spike tv 's new series lip sync battle .\nmercedes drivers lewis hamilton and nico rosberg will renew their rivalry in bahrain . the pair left shanghai after the chinese grand prix arguing over the rights and wrongs of how they raced . hamilton insists he will do his talking ` on the track ' ahead of sunday 's race .\nbaron the german shepard was filmed as he helped get the dishes done at home in california . footage shows the pup reaching up and grabbing rinsed goods between his teeth . he then gets back up on his back legs to collect his next load . baron was professionally trained at the hill country k9 school .\nmaraisia holcomb was held up at the fried chicken chain store in channelview , texas , on march 31 by a man with a handgun . he jumped the counter and forced her to empty the registers before making off with $ 400 from the till . she says she was given an ultimatum by her managers - replace what was taken or lose her job . she refused to pay back the money and was fired less than two days later . popeyes said she was fired for having too much money in the till and that it was n't the first time she had n't cleared the till properly .\nriley filmer , 14 , was told her shoes did not meet uniform standards at mcclelland college , melbourne . the year eight student was prevented from attending classes for the day . her mother anne parker said her daughter needed a more practical and comfortable shoe to meet her needs . the school 's policy states that girls are to wear ` black leather lace-up school shoes -lrb- not fashion heels -rrb- ' , which ms parker said riley 's shoes meet . the 14-year-old has not been allowed back into classes since monday .\nadam gadahn , a former little leaguer who grew up to become a spokesman for osama bin laden , was born in 1978 in oregon as adam pearlman . he converted to islam at the age of 17 . gadahn was the first american citizen to be charged with treason since the second world war . he was killed during a drone strikes by us forces in january .\nnypd detective patrick cherry apologizes for angry exchange with uber driver . the altercation was caught on video and landed him on modified assignment . cherry faces suspension , reassignment or loss of security clearance . police commissioner william bratton : `` no good cop can watch that without a wince ''\nwarner bros and dc entertainment attempted to set a world record for the largest gatherings of people dressed as dc comics superheroes within 24 hours . the april 18 event kicked off in queensland , australia , with a celebration at the movie world australia theme park . venues in 15 cities in the us , uk , france , spain , mexico , italy , brazil , taiwan and the philippines all participated .\ntaxi driver caught with # 10,000 worth of lsd in his luggage . smugglers hide drugs in hollowed-out disposable lighters . frost says he would ` would n't trust a nun with a crutch ' the customs officer also says it is better to look ` scruffily right ' than ` too smartly wrong '\naustin essig , 19 , jumped out of a third-floor window ` without hesitation ' after eating the marijuana-laced brownie on april 14 . his mother julieane jablonski , 38 , was arrested on wednesday for allegedly giving her son the edibles . essig took to facebook to describe the strange ` trip ' he experienced after eating it . he suffered non-life-threatening injuries .\n15 fortune 500 companies paid zero income taxes in 2014 , says a report out last week from the citizens for tax justice . most of those 15 were actually given federal tax rebates in the tens or even hundreds of millions . cbs , general electric and mattel all successfully manipulated the u.s. tax code to avoid paying taxes on their massive profits .\narkansas and indiana lawmakers passed changes to their state 's religious freedom laws yesterday , hoping to quell national outrage . critics say the laws , which were signed into law last week , legalize discrimination on the basis of sexual orientation . arkansas governor asa hutchinson rejected a previous version of the bill at the last minute on wednesday following public uproar and a personal plea from his son . ` now that this is behind us , let 's move forward together with a renewed commitment to the civility and respect that make this state great , ' indiana governor mike pence said after signing his state 's amended measure .\ncollege senior roman ehrhardt was secretly completing a project , in which he had to violate a societal norm . he brought a george foreman grill to class and proceeded to cook bacon for his sandwich - while sitting in the front row of his class . his classmate britt reynolds tweeted a photo of the stunt , which has been retweeted nearly 1,000 times .\nqueretaro beat club america 4-0 in the liga mx on saturday . ronaldinho came on as a substitute but scored twice in quick succession . tigres monterrey moved up to fourth in the clausura with a 3-0 win . christian suarez scored the only goal as atlas beat puebla 1-0 .\nsteve mcqueen 's aftershave contained a potent chemical known as hedione . scientists have revealed how this chemical activates the hypothalamus - an area of the brain responsible for triggering the release of sex hormones in women . hedione - derived from the greek word ` hedone ' , for fun , pleasure , lust - has a fresh jasmine-magnolia scent . christian dior fragrance , eau savage , was the first to use it in 1966 .\ncomfortably numb was developed by three first year students at rice university in houston . it numbs the skin prior to an injection by producing a rapid chemical reaction . the reaction cools the patient 's skin within 60 seconds , the team said . the device is single-use , rather than reusable , so it can be used by anyone . it costs around $ 2 -lrb- # 1.34 -rrb- to produce and is 3d printed in plastic and metal .\njames hook has n't given up on earning a wales recall . the gloucester fly-half has won 77 test caps for wales . hook says he is focusing on gloucester and not thinking about wales . the 29-year-old will hope to showcase his ability in the european challenge cup final against edinburgh on friday .\naston villa defender kevin toner has been watched by several clubs . norwich , leicester , newcastle and stoke are among those interested . toner , 18 , is currently captain of villa 's under-21 side . tim sherwood is keen to develop villa 's young talent .\nfirst lady ri sol-ju last seen in public in december 2014 . she was seen with husband kim jong-un at a football match . the match was part of celebrations for kim il-sung 's birthday . the birth of the country 's founding leader is on wednesday .\nu.s. navy aircraft carrier was sunk in 1951 during nuclear weapons testing . the uss independence survived a japanese torpedo strike and two atomic bomb blasts . researchers surveyed the wreck with an underwater drone last month . the ship sits upright with a slight list to starboard , noaa says .\njack cosgrove has agreed to join edinburgh on a two-year deal . the 20-year-old worcester warriors prop has been capped nine times for the dark blues under 20s side . cosgroves has penned a two year deal with alan solomons ' side .\nthe 26-year-old woman had just finished a mormon mission in mexico . elizabeth elena laguna salgado is from chiapas and moved to provo about a month ago to study english . she was last seen leaving a language school in provo , utah , april 16 . there is no evidence she was kidnapped , but she has n't made contact with anybody since she disappeared . a volunteer search is scheduled for saturday morning in provi .\nnigel farage has admitted ukip has ` slipped back a bit ' in the polls . ukip leader said he expects to recover momentum in the run-up to election . he said key campaign issues like eu membership are now ` back in play ' ukip support has dropped from 16.75 per cent in november to just 12.25 per cent today .\nthe experiment is being run by researchers at the japanese space agency -lrb- jaxa -rrb- small dishes will hold seedlings , and astronauts on the station will watch how they are able to grow inside the japanese kibo module . scientists will be examining whether a plant 's ability to work out which way it is growing - the gravity sensor - can form in the absence of gravity . results will show if the plants can sense changes in gravity , and adapt levels of calcium in their cells to compensate for it . if the study proves successful , it could help humans grow their own food in space , helping in the quest to colonise other planets . the results could help farmers on earth get a\nnine britons arrested as they tried to enter syria illegally . three men , two women and four children detained by turkish soldiers . youngest child is two and the eldest is 11 , it is believed . turkey a key staging ground for foreign fighters attempting to reach syria . more than a dozen britons , including three teenage schoolgirls , have made the journey .\nlucy is the oldest and most complete fossil of an early human ever found . discovered in 1974 , the 3.2 million-year-old skeleton stunned archaeologists . now , a new look at the ancient hominin 's skeleton suggests one of the bones may , in fact , belong to a baboon .\nwild animal spotted scurrying through battery park city at 6am . officers trailed it on foot and in patrol cars as it ran across roads . for two hours it evaded capture , with one witness describing hows cops were chasing it ` like a suspect ' they then managed to corner it at merchants river house on south end avenue and shot it with a tranquilizer dart . it was then put in a cage and taken away into the care of the aspca .\nisis was removed from the official list of future pacific hurricane names . the un 's world meteorological organization deemed the name inappropriate . isis is also used to describe the islamic state militant group . the wmo hurricane committee also backed mexico 's request to retire the name odile .\nanna james , 32 , has vowed to defy school 's ban on taking her children to maypole festival . mother-of-four said rituals are part of her ` religion , culture and heritage ' school blocked request under government crackdown on unauthorised absences . but mrs james said she would take consequences of any police action to take children . may 1 celebration is a centuries ' old tradition involving music and dancing .\nthorpe park resort has opened its first i 'm a celebrity themed maze . the new bush tucker trials invite both young and old ` non-celebrities ' to climb through ` pipe of peril ' and dark caves . boxer david haye , katie price and made in chelsea star binky felstead attended the opening .\nsuzanne crough died monday at home in laughlin , nevada , the coroner 's office says . she played youngest daughter tracy on the '70s musical sitcom `` the partridge family '' tracy played tambourine and percussion in the traveling `` partridge family 's band ''\nnetflix 's ` our planet ' is being produced by u.k.-based silverback films in collaboration with world wildlife fund . the eight-part series will take four years to make and is planned for a 2019 debut for netflix customers internationally . it will focus on the earth 's last wilderness areas and the animals living there .\nparis picnics offers made-to-order picnic baskets filled with wine , baguettes , cheese and crisps . customers can pick from one of the four picnic options on offer and order online . each picnic includes cutlery and a cotton blanket for sprawling on in the sunshine .\nangela maxwell , 67 , returned to work at coningsby community hall yesterday . she had been there just days before her husband richard scooped # 53million . mrs maxwell said she would not give up her five-hour shift at the lunch club . couple said they would buy a new minibus for local pensioners with the money .\nkay bennett , 33 , from swindon , has six facial tattoos . says she ca n't get a job because of them and is on benefits . she says she has applied for 40 jobs in the last year but has had no success . she is now hoping someone will pay for laser removal .\niain mackay , 40 , was on holiday in hua hin , 125 miles south of bangkok . he is believed to have got into a row with his thai girlfriend moments before his death . mr mackay also clashed with a man who was seen talking to his girlfriend . he was found bleeding profusely at a shop near to the bar where he had spotted her .\nfour rainbows were spotted in the new york area on tuesday . one woman snapped a photo and posted it on twitter . the image has received hundreds of retweets . the internet is abuzz with speculation about the phenomenon . the double rainbow in yosemite national park in 2010 has been viewed 40 million times .\nkansas gov. sam brownback signs a law banning a common second-term abortion procedure . the law is the first of its kind in the united states . opponents say it is dangerous and among the most restrictive abortion laws in the country . the measure allows for the procedure if `` necessary to protect the life or health of the mother ''\nthe new child support formula took effect on april 1 . matthew bird , from ashburton , new zealand , has three children . he said he was happy to give up his $ 70,000-a-year job for a meagre wage of $ 38,000 . he was previously expected to pay $ 1,300 a month in child support .\nchelsea beat queens park rangers 2-0 on sunday . thibaut courtois was exceptional in goal for the blues . the belgian has had a poor run of form in recent weeks . courto is has been criticised for his poor touch against hull and stoke . but the 22-year-old says he never doubted himself .\naustralia 's prime minister tony abbott announced a new policy on vaccinations . parents who refuse to vaccinate their children could lose up to $ 11,000 of welfare benefits a year . more than 39,000 children under the age of seven have not been vaccinated because of their parents ' objections .\nred sandstorm sweeps in on city of golmud in north west china . visibility reduced to as little as 30 metres in some areas of the city . the sandstorm is the fourth to hit the north-west of the country this year . china 's meteorlogical centre issued a blue alert for the latest sandstorms .\nsandra mathis , 52 , was charged with murder sunday after police say she stabbed her 48-year-old husband multiple times in the upper torso . the victim was found lying on the ground unresponsive with blood gushing from a wound in his neck . the couple were homeless and suffering from alcohol problems .\ndavid moore , 25 , went berserk with road rage after leaving his home . he was bumper-to-bumper with rafal cegielka , 45 , who was picking up his child . pair had both wound down their car windows to exchange words outside school . moore then jumped out of his car and punched mr cegelka through his open window . he then ripped away a fencing panel from a nearby garden and chased the victim 's vehicle with it as he tried to drive off . finally , he armed himself with the hockey stick from his home and shouted : ` i 'll f *** ing kill him ' in the street , before running after mr cegelia .\nscientists in california have revealed an interactive 3d map for vesta . it was created using images from the dawn spacecraft . the map lets you see features on the surface including craters , hills , mountains and even ` canyons ' you can also measure elevation changes on the asteroid and see different measurement data . and a ` gaming mode ' lets you fly around the largest asteroid in the solar system using your keyboard 's arrow keys . there 's also an option to 3d print an entire model of vesta .\nlance corporal joshua leakey received the victoria cross at windsor castle . he braved heavy taliban fire to rescue a wounded comrade in helmand . the 27-year-old is the second member of his family to receive the award . his cousin was given the honour 70 years ago . he is only the sixth living british soldier the queen has presented with medal .\nself-styled mirreyes -lrb- my kings -rrb- post pictures of luxury on social media . they are often the sons and daughters of mexican high society . the displays of wealth can lead to political and legal advantages . one mirrey , jorge alberto lópez amores , jumped off a cruise ship in 2014 .\nnaveed and rizwan hussain jailed for 12 months each for health and safety offences . three people were injured when the three-storey building collapsed in sheffield . a doctor 's wife and a student were trapped in the rubble and a workman was buried after a digger struck a load-bearing column . judge said it was ` by the grace of god or good fortune ' that no-one was killed .\nsarah hulbert , 59 , worked for bates president a. clayton spencer for a little longer than a month in the summer of 2012 . hulbert claims that spencer expected her to jog with her at 5:30 a.m. but that she could not because she had surgery on her right foot in the past . spencer allegedly fired hulberts on july 10 because she ` did not have pizzazz '\nreigning masters champion bubba watson admits he must ` improve as a man ' watson was voted most unpopular player on the pga tour by fellow professionals . the american got double the number of responses of second-place finisher patrick reed . watson is chasing a third green jacket at augusta national this week .\npictures offer the first glimpse into the melted reactors at the japanese plant after the 2011 nuclear disaster . more than 300,000 people had to be evacuated after three of fukushima 's six reactors blew up following the huge tsunami . the adaptable ` transformer ' robot stalled before it could complete its operation and had to been abandoned . a second robot mission scheduled for monday was postponed as engineers investigated the cause of the malfunction .\ngigi hadid has taken social media tips from kendall jenner . the 19-year-old model says she has learned how to deal with haters . she believes former victoria 's secret model karlie kloss is comfortable with her social media persona . kendall has been accused of bullying fellow models at new york fashion week .\n` with sadness and compassion ' rama the elephant was euthanized this week at the age of 31 . he sustained a leg injury while in captivity at oregon zoo in 1990 . his leg was injured after female elephants shoved him into a moat . rama used his trunk to create paintings , which reportedly earned over $ 100,000 in sales .\nnursing student charnelle hughes , 20 , was hit by a flying pint glass . the glass was thrown across a crowded pub during a heavy metal gig . she was struck on the side of the head by the empty glass . she has been left scarred , swollen and fearing she might lose her right eye . the culprit jordan goode , also aged 20 , has been given a suspended jail term .\ncity players were in training on wednesday ahead of west ham clash . sergio aguero took part in shooting practice against joe hart . yaya toure and samir nasri are reportedly two players who could leave the club . city lost 4-1 to manchester united in the derby on sunday .\nbmw group 's answer to google glass is designed to let drivers of its mini model see pop-up virtual displays for showing maps and other features . the goggles can project navigation information with arrows onto the roads , as well as showing speed limits and even point out local landmarks . an icon is shown on the smartphone-linked display when the wearer receives a text message and the message can be read out by the car . the glasses also give drivers x-ray-like vision , by letting users see external objects concealed by the vehicle . the augmented vision goggles will go on show at the auto shanghai show and generate ` screens ' showing information that only the wearer can see .\ned miliband sets out plans to scrap stamp duty for most first-time buyers . also wants to ban developers hoarding land which could be built on . move triggers drop in value of shares of construction firms . labour leader promises to prioritise new homes for local people . he also wants to curb rent rises and give local people priority .\nblackburn rovers beat leeds united 3-0 at elland road . tom cairney , jordan rhodes and jay spearing scored the goals . leeds midfielder rudi austin was sent off in the first half for elbowing ben marshall . blackburn will face liverpool in the fa cup quarter-final on wednesday .\nhull kr beat st helens 28-20 at langtree park . jamie shaul scored a long-distance try for the visitors . saints were beaten by hull kr in the derby on thursday . the win condemns st helen to a third straight defeat . jordan rankin kicked three penalties for the hosts .\nvirginia roberts is being sued by high profile us attorney alan dershowitz . he wants to have her thrown in jail for her claims that she was a ` sex slave ' mr ders howitz said that miss roberts would have to give evidence under oath . miss roberts has also been branded ` despicable ' by model agency owner jean luc brunel .\nperth glory fans who set off flares during the a-league match will face a five year ban . the club slumped to a 3-0 defeat to sydney fc at nib stadium on friday . a 13-year-old boy suffered burns to his leg after the flares were set off . two teenagers have been charged for allegedly setting off flares . the 16-year old boy has been charged with grievous bodily harm and use of signals and flares .\nirish star , 31 , appears to have lost his chest hair in new images . poldark fans take to twitter to express their outrage at the lack of hair . actor has previously admitted to using baby oil to keep his body looking perfect . he also admitted to not wearing mascara for the hit bbc series .\nla angels player josh hamilton filed for divorce from wife katie in february . comes after he admitted to an alcohol and drugs relapse . the couple have four daughters together and hamilton has custody of their daughters from a previous relationship . katie has denied she has ever been unfaithful and insists there was no ` big fight or blow up ' which caused their marriage to end .\nrory mcilroy releases video chronicling his golfing journey . world no 1 is preparing for the 2015 masters in augusta . mcilory is bidding to complete a career grand slam . the video features an interview with mcil rory as a youngster . mc ilroy admits there have been low points in his professional career .\nsnp leader nicola sturgeon says she will call the shots in the event of a hung parliament . she vows to use influence of dozens of mps to get her way for the next five years . but she is not even standing for election to the commons and will not be an mp . she says she would act to ` lock ' tories out of power and prop up a labour government .\nauthorities say more than 300 suspects have been arrested . the government condemns the attacks on foreigners . thousands have fled after mobs with machetes attacked immigrants in durban . the attacks in dur ban killed two immigrants and three south africans , including a 14-year-old boy .\nenglish bulldog named hazel is featured in a number of videos uploaded to youtube . the video shows her jumping onto a washing basket and forcing it to fall over . she then stands inside the basket and leans up against the side of it . suddenly the basket falls onto its side sending her and some clothes sprawling .\na suicide bomber blows himself up in front of a bank in jalalabad , an official says . the isis terrorist group claims responsibility for the attack . the taliban says the attack has nothing to do with them . the u.n. condemns the attack , which killed at least 33 people .\nthe prevention of terrorism act was passed in capital kuala lumpur yesterday . allows authorities to detain suspected terrorists for two years without charge or trial . also allows for authorities to apply for unlimited extensions after two years expire . bill effectively reintroduces prospect of indefinite detention without trial in malaysia .\njeremy clarkson has decided against hosting bbc 's have i got news for you . show 's producers say they expect him to return to show later in the year . it would have been his first appearance on bbc since he was sacked for hitting top gear producer oisin tymon .\nnigel winterburn says arsene wenger should be given two more years . jurgen klopp has been linked with a move to arsenal . the german will leave borussia dortmund at the end of the season . wenger has two years left on his contract at the emirates .\nabdulkadir zeyat , 45 , and wife antika , 43 , and their six children found dead . the family were discovered at their home in the village of alintepe . authorities believe the family died of food poisoning or a gas leak . the only survivor was the couple 's eldest son , kemal zey at 19 .\nradamel falcao says sergio aguero is his side 's biggest threat on sunday . manchester city host manchester united in the premier league on sunday . aguero has scored six times against united since joining city in 2011 . falcaos says he is happy at united despite playing a bit-part role .\nkatherine hadsell says police in norfolk , virginia , are not doing enough to find her daughter anjelica ` aj ' hadsell , 18 . the longwood university student was home for spring break when she vanished . police just this past week focused their search on a pond near carrsville after getting a new tip that her cell phone may be below its surface . wesley hadsell was arrested on march 21 after he allegedly broke into a home where he believes his daughter may have been taken . he has a lengthy felony criminal record including dropped rape and kidnapping charges .\npostal worker doug hughes , 61 , flew his gyro-copter 80 miles from gettysburg , pennsylvania to washington d.c. on wednesday . he landed on the west front lawn of the us capitol building without injuries . the flight was designed to raise awareness about campaign finance reform and government corruption . hughes claims he informed the secret service and capitol police of his potentially lethal stunt . house homeland security panel chairman michael mccaul revealed that capitol authorities had hughes , in their sights and were prepared to open fire .\nancient women had some fascinating methods for beautifying themselves . cleopatra bathed in donkey-milk baths and made her own cosmetics . mary queen of scots washed herself in white wine to boost complexion . the geishas of japan whitened their faces with rice flour .\ndesert fairy circles are large barren patches of earth in namibia . they are ringed by short grass dotting the scrub land like craters on the moon . scientists have been baffled by the markings for decades . now , researchers have compared their distribution to skin cells . they found the patterns are almost identical , with similar percentages of ` neighbours ' the researchers suspect the patterns might be similar because both skin cells and fairy circles were fighting for space .\nthird grade students in orange , new jersey , wrote letters to mumia abu-jamal . the killer was hospitalized after he collapsed in the bathroom of a prison last week . marilyn zuniga has apologised for allowing her class to write to him . she said the children wanted to write him because they were inspired by his quote . abu - jamal shot dead philadelphia police officer daniel faulkner in 1981 .\nkaren buckley was found dead on a farm north of glasgow yesterday . her body was discovered after a four-day police search at high craigton farm . her parents marian and john joined hundreds of mourners at a vigil today . a 21-year-old man has been arrested in connection with miss buckley 's death .\nfloyd mayweather will fight manny pacquiao at the mgm grand garden arena on saturday night . the mega-fight is expected to be the richest in boxing history . tecate have paid $ 5.6 million to become the official beer and lead ring mat sponsor of the bout .\nsusie clark , of evening shade , arkansas , found the pinto-bean-sized , teardrop-shaped gem on a 37.5-acre search field at crater of diamonds state park . clark named the pintosize diamond the hallelujah diamond , claiming that her prayer helped her find the gem . the 3.69-carat white diamond is the largest of 122 found in the park this year .\neloise parry ` burned up from the inside ' after taking the tablets , doctors say . the 21-year-old student died three hours after taking a lethal dose of dinitrophenol . she had taken the tablets for a ` weight-loss without dieting ' regime . her mother fiona parry , 51 , has issued a stark warning against diet pills .\nliu siying was a ` podium girl ' at the chinese grand prix in shanghai . she was pictured grimacing as lewis hamilton sprayed champagne at her face . campaigners have called for the british driver to apologise for his behaviour . but miss siying said she was n't offended by the incident and was n't annoyed . hamilton has also sprayed a hostess after winning the spanish grand prix .\nhillary clinton embraced the federal recognition of same-sex marriage today , saying through a spokesperson she believes it should be a ` constitutional right ' the former obama administration official endorsed gay marriage in 2013 after she left the state department . her shift in position comes just before the presentation later this month of oral arguments in several cases before the supreme court on the matter . clinton had brought attention to the issue with her campaign launch video on sunday that featured ` everyday ' americans preparing for something big - including a gay couple planning their wedding .\nterrill wayne newman , 68 , has legally changed his name to gatewood galbraith . he is vying to become the next kentucky governor . the pulaski county resident was known as terrill wayne newman until tuesday . he does n't expect to be elected but hopes the gesture will ` warm galbrait 's grave ' his predecessor died in 2012 from chronic emphysema .\nalex salmond has stepped up the pressure on ed miliband . former snp leader said he wo n't be able to avoid a deal with the snp . said labour leader was ` foolish ' to rule out a coalition in the event of hung parliament . said all parties would have to face up to the ` electorate 's judgment '\nthe new president will be sworn in on may 29 . muhammadu buhari tells cnn he plans to aggressively fight corruption . he says he 'll focus on curbing violence in the northeast part of nigeria . buhar is a sunni muslim from nigeria 's poorer north .\ntinie tempah arrived three hours late to an ` intimate gig ' in canterbury . he then played just two songs before telling the crowd : ` see you on tour ' venue club chemistry has accused the rapper of breaking his contract . ticket-holders were told they would not be let in if they arrived after 11pm .\n73-year-old woman suffered severe bruising to her legs and ribs . her vauxhall corsa collided with railings on the petrol forecourt of asda store in hulme , manchester . thief sneaked into her car and stole black garmin device from underneath passenger seat .\nbastian schweinsteiger suffered an ankle injury against dortmund . the germany captain missed the game with the problem . bayern munich face bayer leverkusen in the german cup on wednesday . tom starke has been ruled out for four weeks with an ankle ligament tear .\nchelsea boss jose mourinho insists jurgen klopp is not coming to stamford bridge . klopp has announced he will leave borussia dortmund at the end of the season . the german coach has been linked with several premier league jobs . arsenal defender per mertesacker has backed klopp to be a success in england .\ncnn 's ravi agrawal was in kathmandu when the earthquake struck on sunday . he says he and his family huddled under a concrete beam and prayed for safety . he found his parents alive and uninjured in their 30-year-old house .\ndrug developed by astra zeneca with original aim of treating tumour but shelved after poor results . scientists at yale university in connecticut have revealed how treatment restored memory in mice given alzheimer 's disease . drug worked by blocking process that breaks nerve connections used to store memory . researchers say study has led to the launch of human trials to test efficacy of drug in alzheimer 's patients .\nthe immerse virtual reality headset is available from firebox for # 29.95 -lrb- $ 45 -rrb- it works with any android and ios phone that can run virtual reality apps . it will play any 3d movie and has adjustable head straps and lenses . other features include 360 ° head tracking and an ` ultra-wide field of view '\nfurious 7 has raced to . the top of the domestic box office , picking up a massive $ 143.6 . million in its opening weekend . it has also established a new high-water mark for the month of april , blowing past the $ 95 million debut of captain america : the winter soldier . it now stands as the highest-grossing opening for any film in the fast and furious franchise .\nandy murray married his long-term girlfriend kim sears on saturday . the pair will wed in murray 's hometown of dunblane . murray posted a series of 'em ojis ' on twitter on his wedding day . the world no 3 is set to jet off to barcelona after the wedding .\nman city goalkeeper joe hart insists his side are still capable of winning the premier league title . chelsea are nine points clear of manchester city with eight games left to play . hart labelled juventus goalkeeper gianluigi buffon a ` legend of the game ' and a real inspiration to him .\ndavid beckham has been sporting some grey hairs in his beard . george lamb and jose mourinho are other stars to have gone grey . femail takes a look at more male celebrities who win gold for their silver style . top stylists share tips on how men can go grey gracefully .\njane bacon , 51 , from east grinstead , west sussex , booked ` final trip ' with husband . but doctors told her she needed an 18-week course of chemotherapy . she contacted budget airline to delay her trip after discovering treatment . but she was told she would have to pay # 176 to change her flights . easyjet has since apologised and said it will be refunding the additional cost . mrs bacon was diagnosed with breast cancer in 2012 and could die within months .\nalexis sanchez scored twice to send arsenal through to the fa cup final . arsenal fought back from a goal down to beat reading 2-1 in extra time . the second goal came via a howler from reading goalkeeper adam federici . arsenal 's aaron ramsey was relieved to reach the final .\nmelbourne-based designer kylie gulliver has launched a high-end leather label in la. . the 29-year-old 's elliott label is now the hit of hollywood . the brand has been endorsed by stars including drew barrymore , kourtney kardashian and cameron diaz . robin antin , founder of the pussycat dolls has joined with gullivers as partner to elliott label .\nphil smith , 25 , scaled a fence to try to get in his flat in cottingham , hull . but he fell and hit his head , fracturing his skull and suffering a bleed on the brain . he was placed in a medically induced coma at hull royal infirmary , but died five days later . his parents have paid tribute to their ` lovely son ' who had a ` natural talent with children '\nben stokes broke his wrist punching a locker after being dismissed last year . but he has forged a reputation as a fiery character in the england team . he clashed with marlon samuels during the second test against west indies . but stokes responded positively to the row after talking to england coach peter moores .\nandy murray says aljaz bedene 's move to britain is a great thing for tennis . british no 1 says james ward , kyle edmund and liam broady should use the move as motivation to get better as players . murray admits bedene threatens certain players position as he is on tour every week .\nutah father , alan lawrence , has been taking photos of his 18-month-old son , wil , who has down syndrome . the father created a photo series called ` wil can fly ' in which the toddler appears to be flying in many different scenes . lawrence said he hopes to photograph wil ` flying ' in other destinations to raise more awareness about down syndrome and help people overseas .\nengland ace joe hart has praised fellow goalkeeper gianluigi buffon . the 37-year-old won his 147th cap against england on tuesday night . hart said buffon was an inspiration to him as he continues to learn . the manchester city goalkeeper is 10 years younger than buffon .\nchristy mack was attacked in her las vegas home on august 8 , 2014 . she suffered 18 broken bones , a ruptured kidney and ruptured liver . she is still undergoing reparative dental work - while fighting to see mma fighter jonathan paul koppenhaver convicted of attempted murder . mack , 23 , claims koppanhaver , 33 , became abusive four months into their one-year relationship .\nhong kong 's top official tabled a controversial election proposal wednesday . pro-democracy legislators have vowed to veto the proposal . they say it would give hong kongers the right to vote for their next leader in 2017 . but candidates would have to be approved by a mostly pro-china committee .\nnigel farage wants to work with david cameron to prevent a labour government . he called on conservatives to vote tactically for him in seats they can not win . farage dropped his demand that the tories ditch mr cameron before any post election deal . he also revealed that he has already held informal discussions with tories about potential post-election arrangements .\nbizarre blunder happened at the bournemouth bay run yesterday . race marshal took a toilet break , missing 300 runners who should have been directed at a junction point . instead they continued past the unmanned marshall point and had to run for an extra three kilometres while the other 900 competitors followed the correct route .\nformer new england patriots player aaron hernandez was convicted april 15 of first-degree murder for killing odin lloyd in june 2013 . his mother , ursula ward , wants to look hernandez in the eye when he testifies during the wrongful death suit . she said : ' i always wished i was there to take those bullets for odin ' hernandez had already been paid more than $ 9.2 million of his $ 40million deal at the time of the murder .\nantarctica experienced its highest temperature on record last week . sensors at argentina 's esperanza base recorded a temperature of 17.5 °c -lrb- 63.5 °f -rrb- this is potentially a new record for the warmest temperature measured on the frozen continent . the new temperature record was measured on the northern tip of the antarctic peninsula where the ice shelf covering the sea has declined considerably in recent years .\na chinese television host is caught on camera cursing the late chairman mao zedong . bi fujian , who works for state-run cctv , was filmed at a dinner party singing a revolutionary song . he later apologized , saying his personal speech led to `` grave social consequences '' the video quickly divided china 's online community .\ncheltenham town have two games left to try and stay up in league two . gary johnson asked players to sign a pledge to give their all when he took over . cheltenham are 23rd in league 2 and trail hartlepool united by a point .\nfederal communications commission said the merger was n't in the public interest . move comes after fierce opposition from net neutrality activists and content providers like disney and 21st century fox . deal would have merged comcast 's 30million customers with time warner cable 's 11million . new company would have spun off or sold 3.9 million customers .\nalan pardew has said he is not looking to jump ship from crystal palace . the eagles boss believes he could do a better job than some of the other managers in the premier league . pardw 's side face manchester city at selhurst park on monday night .\nnigel benn has returned to the ring with ricky hatton in manchester . the former super middleweight champion landed punches on the hitman . benn is now a charity worker and lives in australia . hatton is now training benn 's son conor for the 2016 olympics in rio .\nthe map was created by combining individual 30 to 60 mile -lrb- 50 to 100km -rrb- wide strips of imagery from the mars express spacecraft . it comprises 1.4 million square miles -lrb- 2.3 million square km -rrb- of the surface . the new map allows astronomers to ` stand ' on planetary surfaces and could help explain how water and lava once flowed across mars .\npilgrims and visitors are being warned not to defecate along the trail . the signs have been erected in the municipality of lastres . the camino de santiago is a pilgrimage route to the holy city of santiago de compostela . angry residents have complained about pilgrims defecating outside their homes .\nleeds united host cardiff city at elland road on saturday afternoon . but the welsh club have sent back their allocation of 500 tickets . cardiff welcomed 2,200 leeds fans to cardiff in november . leeds have not confirmed whether decision was down to the club , council or police .\nany employee working in the regions where the watch is being launched will be eligible . this includes the us , uk , australia , canada , china , france , germany , hong kong and japan . the discount does not apply to the expensive edition model . prices for the sport model start at $ 349 in the us and # 299 in the uk . apple 's watch goes on display around the world on 10 april . people can pre-order it at 12.01 pacific time -lrb- 8am bst -rrb- on this day . it will then go on general sale on 24 april in the u.s , uk and australia .\njean-marie le pen , 87 , is honorary president of france 's far-right national front party . he angered his daughter marine , the leader of the party , with anti-semitic remarks . he said nazi gas chambers were ' a detail of history ' and called socialist pm ` immigrant ' but he has refused to step down from his position , saying it would be a ` crazy idea '\narsene wenger says arsenal will have to be perfect to challenge for the title . arsenal thrashed liverpool 4-1 at home on saturday with goals from hector bellerin , mesut ozil , alexis sanchez and olivier giroud . wenger insists that his team will be ready if chelsea slip up .\nbarcelona president says club have no plans to replace luis enrique . josep maria bartomeu says club are ` very happy ' with enrique 's performance . luis suarez and lionel messi scored as barcelona beat valencia 2-0 . barca are six points clear at the top of la liga . enrique only took charge of the club last summer .\nyazidis were kidnapped at gunpoint when militants attacked villages last summer . around 40,000 people were kidnapped and held captive by the islamic state . the nine-year-old girl was ` sexually abused by no fewer than ten men ' she is now receiving medical care in germany , aid workers say . comes after more than 200 yazidi women , children and elderly were released near kirkuk , northern iraq .\nformer top gear presenter was seen laughing with a traffic warden . he had left his green lamborghini parked on yellow lines in london . the warden recognized the 55-year-old and the pair chatted for a few minutes . clarkson was sensationally sacked from top gear by the bbc last month .\nbrendan cordina , 36 , drove for four days to find his grandfather 's medals . he had been searching for them for two years and was told they were lost forever . the medals belonged to captain jack slade , a flight lieutenant in world war ii . the museum refused to return them and said they were more important to the museum . mr cordina started a petition and received 15,000 signatures in under 24 hours .\npaula radcliffe admits she was close to pulling out of sunday 's london marathon . world record holder feared a degenerative injury to her foot would rule her out . but celebrity doctor hans-wilhelm muller-wohlfahrt has made sure she will race . the german doctor has worked with ronaldo , michael owen and usain bolt .\nuniversity of kentucky 's andrew harrison apologizes for `` poor choice of words '' harrison said he meant no disrespect to wisconsin 's frank kaminsky . kaminsky says he is `` over it '' and wishes harrison well in monday 's title game . kentucky lost the national championship game to duke on saturday .\nqpr boss chris ramsey believes tim sherwood will keep aston villa up . ramsey and sherwood worked together at tottenham for four years . the pair live 10 minutes apart and will share words before tuesday 's game . ramsey says if he was a betting man , he would bet on sherwood keeping villa up .\nfacebook 's riff app was launched on april fool 's day . it lets you film videos and upload them to facebook and the app . friends and strangers can then film relevant clips and attach them to the end of your video to create a collaborative project . videos can be filmed multiple times until the user is happy with the result .\nclinton 's iowa campaign recruited three young men to sit at a coffee shop with her tuesday morning . one of the men , austin bird , is a democratic party insider who interned for president obama in 2012 . he says he and two other young people were driven to the coffee shop by clinton 's iowa political director , troy price . price was executive director of the iowa democratic party until last month . the three men were asked to sit with clinton at a table in a coffee house in leclaire , iowa . the event was billed as a ` roundtable ' but was actually a ` strategy meeting ' for clinton 's campaign .\nschools struggling to cope with influx of children unable to speak english . teachers warned pupils across uk speak up to 300 languages but hardly any english . english-speaking children not getting ` fair share ' of attention from teachers . some teachers have to use google translate to make lesson plans .\nstephen king 's hit novel series the dark tower is on its way to big and small screens . the eight-book series was dropped by warner brothers in 2012 . but three years later , the writer has struck a deal with sony for a movie and tv version .\na video shows a white police officer shoot an unarmed black man . the officer , michael slager , was arrested on murder charges . peter bergen : we 've seen this movie before . he says north charleston officials handled the situation differently than those in ferguson . bergen says it remains to be seen whether slager will be convicted of murder .\nmike lane , 40 , was beaten by balaclava-clad protesters armed with iron bars . video of incident and dossier of evidence given to wiltshire police after assault . mr lane , who is joint master of the tedworth hunt , was kicked in the head .\nmartin keown believes patrick vieira would be a great manchester city manager if manuel pellegrini was sacked . the former arsenal captain was a class act on and off the pitch . he is intelligent , well-balanced and has a burning desire to win . vieira has worked with some of the best managers in the business .\nfulham were held to a draw at the valley by charlton athletic . ross mccormack gave fulham the lead after just eight minutes . johann gudmundsson equalised for the visitors in the first half . fulham are now eight points clear of fellow london rivals millwall . the result leaves fulham in the championship relegation zone .\nthe european space agency 's rosetta spacecraft has survived a hair-raising encounter with comet 67p . the probe ran into difficulties during a recent flyby on saturday . it had dipped to within nine miles -lrb- 14km -rrb- of the surface to take a closer look at the jets that are being ejected from its surface . but during the manoeuvre , rosetta lost sense of where it was due to the amount of dust and gas and was placed into ` safe mode ' this caused it to momentarily lose contact with earth . esa said it took until monday to get the spacecraft back into 'n ormal ' status .\nbrazilian designer vanessa moe showed her debut collection at mercedes benz fashion week australia . her minimalist collection was outshone by her distracting choice of headwear for the models . a selection of models charged down the runway in masks and headpieces that looked remarkably like sheets of plastic blowing against their faces . other pieces gave the illusion of water being thrown in the models ' faces .\nlewis ferguson 's fall from merrion square has been watched hundreds of thousands of times online . the 18-year-old was mucking out the stables as usual at paul nicholls ' yard on thursday morning with just a cut on the nose to show for the fall . ferguson was back riding out and said he was undeterred from getting back in the sadal .\niran will sign a final nuclear agreement only if sanctions are removed , rouhani says . supreme leader says he 's not certain the deal will become binding because it 's not final . `` everything lies in the details , '' ayatollah ali khamenei says , according to state media . six world powers and iran reached a preliminary deal last week .\nunruly passenger forced off plane minutes before take-off in hurghada , egypt . he allegedly threatened to kill other passengers and punched a bus door . thomas cook airlines flight tcx2515 was forced to return to its stand . an armed officer removed the man from the plane , causing a delay for travellers .\nthe curious canine kitchen in shoreditch , london , is first of its kind in britain . five-course drink-paired menu is served for one weekend only . menu devised by event organiser natty mason and chef emily stevenson . all proceeds from event will be donated to amazon cares charity .\nchelsea , manchester city or manchester united could bid for raheem sterling . real madrid may be prepared to sell gareth bale to a premier league club . liverpool have put a # 50million price tag on sterling if they opt to sell . arsenal and liverpool are both interested in signing palermo 's paulo dybala .\nfootage shows shell cases flying as police officer fatally shot lavall hall . the 25-year-old schizophrenic was shot five times on february 15 . miami gardens police said hall ` attacked ' them with a broom . but the video footage appears to show him trying to flee the officers . his family have now filed a wrongful death lawsuit in federal court . they claim the police used ` excessive force ' after he ran away .\nmailonline travel looks at the future of travel and accommodation . think : biometric scanning , sustainable hotels and personalised bookings . by 2030 , digital advancements will have made travel easier . and we may see the beginning of space travel by 2030 . but when will teleportation become a reality ?\nsamantha giufre , 19 , was dragged along the street behind a car on september 7 , 2014 . she was found abandoned in a gutter on myall road in casula , south west of sydney . she suffered multiple fractures to her skull and face , along with bleeding on her brain . ms giuf re said her life has been ` destroyed ' by the attack which has left her with permanent disabilities . one of her alleged attackers , 18-year-old basher hawchar , was supposed to front court on wednesday but instead sent legal representation .\nscientists at sheffield university have identified six different types of obese person . they hope the distinction will allow for tailor-made treatments . the scientists said clinicians and policy makers should not target obese people as a whole , rather treat them according to the ` type ' of obese people they are . the six categories include : ` heavy drinking males ' ` younger healthy females ' - also the youngest group . ` physically sick but happy elderly ' ` physicianically sick ' elderly . ` unhappy anxious middle-aged ' group . those with the poorest health : this group was found to be the most deprived , and had the highest prevalence of chronic health conditions .\nfootage shows 27-year-old jared henry of arkansas being knocked off his longboard to the ground while the doe spins on its stomach into a ditch . after coming to a standstill , henry rolls over on the tarmac and opens his mouth in apparent pain . the deer apparently broke its pelvis and died while henry recovered from the incident unscathed .\nevelin mezei , 12 , was spotted on cctv with an unknown man in stratford , london , last night . she was last seen by her mother in east london at around 10.30 pm , police said . but the hungarian national was traced this morning after being found safe and well .\nschoolgirl shannon hayes believes her pet hen has laid the world 's smallest egg . the 1.8 cm egg is smaller than a 5p coin and could be in the guinness book of records . the 12-year-old from capel iwan , carmarthenshire , keeps seven hens .\ndanny garcia is set to fight lamont peterson in a non-title fight on saturday . the light welterweight champion revealed he has six toes on the same foot . garcia says he will ` kick his butt ' against peterson in new york . the puerto rican-born fighter has a 29-0 record with 17 kos .\nclassicfm star john suchet 's wife bonnie died on april 15 aged 73 . she was diagnosed with dementia in february 2006 and died 10 years later . suchet has been extremely open about his wife 's diagnosis . he has written a book and become honorary president of dementia uk charity .\ndoctors are concerned about the sedentary lifestyle of the 78-year-old catholic leader . pope 's weight is thought to be aggravating his sciatica , a nerve condition which causes back pain . vatican medics told francis to cut his pasta intake to two servings a week and take a daily walk , like his predecessor pope benedict xvi did .\nthe south african model , 26 , is the face of max factor 's new campaign . she has been recreating the iconic look of silver screen legend marilyn monroe . the brand is celebrating its 80th anniversary this year . candice gave fans a sneak peek of her dramatic look back in january .\ntoronto man daniel williams , from toronto , filmed his office job with a gopro camera . the 90-second video shows him doing everything from photocopying to stuffing envelopes . he then edits the footage together to create a unique perspective of his day . the video has already attracted three million views on youtube .\nandros townsend scored england 's equaliser in their 1-1 draw with italy . paul merson criticised the tottenham winger 's call-up to the england squad . merson said in his sky sports column : ` if andros townsend can get in then it opens it up for anybody ' the arsenal legend has now admitted he was wrong to criticise the england call up for townsend .\nthe search for missing sydney woman jessica bialek is over . the 37-year-old returned to her home near sydney on thursday evening . she was last seen leaving her home in coogee about 8.30 am on wednesday . her husband sabino matera confirmed she was home with a post on his facebook page . police have confirmed ms bialeks is speaking with officers about her disappearance .\nin april 2010 , an oil well failed in the gulf of mexico , killing 11 workers . for 87 straight days , oil and methane gas spewed from the wellhead . scientists continue to study environmental impacts . bp says the gulf is recovering , but government says it 's too soon .\njody marson has been named as the prison guard who had an affair with kieran loveridge . the 30-year-old ironwoman competitor was suspended after other staff members claimed they had witness the alleged affair . loveridge was moved to goulburn supermax prison after he stomped on a fellow inmate 's head along with a 22-year old prisoner . the 21-yearold is serving 14 years for the manslaughter of thomas kelly .\nnasa has released footage taken by astronauts on spacewalks of the international space station . expedition 42 commander barry wilmore and flight engineer terry virts recorded three spacewalk on gropro cameras . the spacewalking were in preparation for the arrival of multibillion pound commercial spacecraft , which nasa hope will be in operation by 2017 .\ntracey cox offers advice on whether he loves you or will break your heart . she explains six behavioural traits that are danger signs . tracey says that if he does n't like himself then it will be difficult to form a happy relationship . she also reveals how to spot the dysfunctional people most likely to break your hearts .\nchelsea defeated manchester city 3-1 in the first leg of the fa youth cup final . tammy abraham opened the scoring for the west london side after just seven minutes . isaac buckley-ricketts equalised for the hosts before abraham restored chelsea 's lead . dominic solanke scored the third for the blues with just minutes to play .\nitalian media celebrated the cricket world cup with a spread of david warner . tracey neville has been appointed as england netball coach . roberto mancini 's inter milan are ninth in serie a. rickie lambert will not play for arsenal after his move to liverpool . kevin sinfield is facing a tough switch from league to union .\ntwo years ago , the boston marathon ended in terror . dzhokhar tsarnaev was convicted last week on 30 charges related to the bombings . the jury will begin deliberating his punishment next week . the tsarnaevs were not on the minds of most people in boston on wednesday .\nraheem sterling is earning less than half of mario balotelli at liverpool . the england winger 's agent has been accused of giving him bad advice . brendan rodgers has repeatedly insisted that sterling will sign a new deal . the club should be embarrassed by that offer to the young star .\nbeatrice ` dee dee ' spence , 24 , lost her leg in an intentional hit and run by precious richardson coleman , 29 , who believed spence was trying to steal her boyfriend , according to family members . coleman turned herself in to police saturday and is being held on $ 750,000 bail . spence 's mother , danika , left unattended food cooking on the stove , which triggered a housefire . spence 's uncle , 37 , was also struck by coleman 's suv and suffered minor injuries .\nkris commons gave celtic the lead after just eight minutes . leigh griffiths came off the bench to score a hat-trick in 19 minutes . celtic are now eight points clear at the top of the scottish premiership . ronny deila 's side face inverness in the scottish cup semi-final on sunday .\nmanchester city beat west ham 2-0 at the etihad stadium on sunday . david silva was caught in the face by cheikhou kouyate 's elbow . the spaniard was taken to hospital but tests have confirmed no fractures . city will now monitor the player this week to see if he can play .\nprosecutors in mexico are looking into possible criminal conduct in the case of a 14-year-old girl mistakenly sent to the u.s. to live with a woman who claimed to be her mother . alondra luna nunez was mistakenly flown to texas on april 16 after a judge in the western state of michoacan ruled in favor of a houston woman named dorotea garcia who believed she was her daughter . she was returned to her family in mexico on wednesday after dna testing in the united states showed she was not the long-missing daughter .\nfood network star filed for divorce on friday . tmz claims he is offering stephanie march just $ 5,000 a month . also claims prenup allows him to buy her out of $ 8million marital home for just $ 1million . also claimed she asked him about rumours he had been romantically involved with january jones in 2010 . he allegedly said no .\na group called the disciples of the new dawn has created a series of insulting campaign images , or memes , that claim women who have cesarean sections ` did n't really give birth ' the group is led by father patrick embry and claims women who undergo c-sections are ` lazy ' and ` negligent ' the memes have been shared nearly 80,000 times since they were posted on sunday .\nprince of wales and the duchess of cornwall are celebrating 10 years of marriage . they are pictured walking in the grounds of their scottish country home . the couple married in a quiet civil ceremony at the windsor guildhall in 2005 . since then , the duchess has become an integral part of the royal family .\nups driver tom ryan , 40 , was struck by a toyota while making deliveries on staten island . he was crushed against his own truck and one of his legs was ripped off . onlookers used a shirt as a tourniquet in a desperate attempt to stop the bleeding . the driver of the toyota told officers he swerved to avoid a pedestrian .\nromelu lukaku has joined forces with agent mino raiola . the appointment of raiola fuels speculation that lukaku could leave everton . roberto martinez is unconcerned by the striker 's switch of agents . the everton manager believes ross barkley will benefit from his difficult season .\nu.s. attorney ronald machen told house speaker john boehner that former irs official lois lerner could wrap herself in the constitution 's fifth amendment . machen 's letter came just one day before he resigned from his post as the top federal prosecutor in washington , d.c. lerner refused to testify voluntarily at a may 2013 hearing about the irs 's history of targeting conservative nonprofit groups . she had insisted on her innocence in an opening statement , but then refused to answer questions . the obama administration now says that since lerner only made ` general claims of innocence , ' she was within her rights to refuse to answer .\ncrown princess mary attended anzac day ceremony in copenhagen . the australian-born royal wore a dark ensemble for the event . she placed a wreath at a memorial . mary 's attendance came days after her comments in a televised interview about dealing with loneliness . she spoke of the grief she endured after losing her mother when she was 25 .\nchocolate easter treats on sale in australia this week . from giant eggs filled with pralines , to raw bunnies weighing three kilograms . australian families will consumer 124.3 million easter treats this year . the grounds of alexandria in sydney created a giant two-metre egg filled with cheesecake and passionfruit . pâtissier adriano zumbo is selling punk-inspired eggs for $ 60 each .\n74 passengers and seven crew members were on board asiana airlines flight . plane had set off from incheon international airport in seoul , south korea . it is believed to have missed the landing point on the runway at hiroshima airport . local media are reporting that the plane spun 180 degrees after impact .\nadam mc burney , who has been capped for the ireland under-20s , was not at his home in county antrim , northern ireland when it was targeted on easter sunday . shocked neighbours said he could have been killed if he was in the property . bullets tore through windows and ended up embedded in kitchen and bathroom walls . police are appealing for witnesses and said the incident had ` criminal elements '\nsgt. daniel knapp received combat medals after serving in afghanistan . he has been denied re-enlistment due to the service 's strict policy on body ink . knapp is considered a tier 1 marine , scoring in the top 10 percent in fitness , marksmanship , and job performance .\nkarim benzema posted a video of him singing along to tupac 's classic track ` check out time ' the real madrid forward is confident he can win the ballon d'or this season . benzema has scored 20 goals in all competitions for real madrid this season .\nroyal spent her holidays in osborne house on the isle of wight . a station was built at whippingham in 1875 to serve the royal residence . it is now a five-bedroom family home on the market for # 625,000 . the track has become a cycle path .\nring of truth finished third in dubai duty free full of surprises handicap . the queen 's horse was making her debut in the five furlong al basti equiworld maiden stakes . ring of truth was closing hard on winner harvard man at the line and was only touched off by short head .\nwigan warriors beat wakefield wildcats 40-22 in super league . joe burgess scored his first super league hat-trick . it was a ninth successive defeat for the wildcats . wigan moved above st helens into second place in the table . it is the warriors ' first away win of the season .\nraymond charles laing has been released from prison after three years behind bars . laing was jailed for two-and-a-half years for drink-driving , assault and dangerous driving causing injury in 2010 . he has been convicted 26 times for drink driving , and a further 31 times for driving while disqualified . laed sent a letter to the parole board last month saying he was a ` danger to the community '\nsenad lulic scores late winner as lazio beat napoli 1-0 in coppa italia semi-final . holders napoli knocked out of the competition after a poor display at the san paolo . lazio will face juventus in the final after the serie a leaders beat udinese 1-1 .\nit 's unclear how freddie gray suffered a severe spinal cord injury . he was arrested on a weapons charge april 12 in a high-crime area of baltimore . he `` gave up without the use of force , '' a police official says . six officers have been suspended in the wake of gray 's death .\nplayers could face sanctions for their unacceptable behaviour on the field . canterbury forwards james graham and david klemmer could face point penalties or a temporary game ban . the nrl head of football todd greenberg revealed that the match review committee would ` look very closely at ' their behaviour . it comes as the nrl announced they are determined to come down hard on a worrying trend of increasing dissent towards match officials . two other people are facing a life ban from the nrl after throwing bottles at match officials at anz stadium .\nsweden 's passport was named the most powerful in the world by goeuro . it allows visa-free entry into 174 countries - the same as finland , germany , the uk and the us . but it is also one of the most frequently sold travel documents on the black market .\njourdan dunn , 24 , was severely bullied at school . suffered from low self-esteem and was home-schooled for a while . was scouted at primark in hammersmith , at just 15 . now walks for victoria 's secret and is face of maybelline new york .\nan unidentified male shot himself in the u.s. capitol , police say . capitol police chief says there is `` no nexus to terrorism '' in this incident . the lockdown was lifted about 3:50 p.m. et . the male had a backpack and a rolling suitcase , authorities said .\naston villa star jack grealish has been offered a call-up by ireland . the 19-year-old has played for the republic of ireland 's youth teams . grealishes could play for ireland against england in june . but he could still switch allegiance to line up for the three lions afterwards .\naston villa could sign cordoba striker florin andone for as little as # 2.5 million . the romanian has scored six goals in 17 games for the struggling spanish side . cordoba are rooted to the bottom of la liga and need to raise funds .\nstudy suggests that the pained faces of rats may have a ` communicative function ' they may even use expressions to warn other rats of danger or ask for help . researchers based at different institutions in tokyo , noted that rats flatten their ears , narrow their eyes and puff up their cheeks when they are in pain .\nthomas hoey jr. , 43 , was sentenced to 12.5 years prison wednesday after refusing to help kimberly calo , 41 , who died from a lethal mix of cocaine and alcohol . hoey , who ran a lucrative banana importing business on long island , showed ` callousness and indifference ' during the party in january 2009 at midtown hotel the kitano . he stopped the other woman in the hotel room , nicole zobkiw , from 911 , and also prevented hotel security coming into the room as calo foamed at the mouth , bled from the nose , turned blue and died . hoey coerced zobkiw to lie about what happened to a grand\ngipsy group have won another legal battle to stay in their illegal camp . the 78 irish travellers had refused to budge despite facing three courts . they had been told to move out by the court of appeal last year . but they used a loophole to take their case to the supreme court . they claimed eviction ` violated ' human rights of 39 children living on site . locals in hardhorn , lancashire , accused them of trashing their village .\nthe festival will not return to australia in 2016 . organisers announced the news on thursday . it comes just one month after the festival made its way through the country . the festival was headlined by rapper drake and dj avicii . more than 230 people were arrested over drug-related offences . the decision was made due to low ticket sales and high operational costs . fans have taken to social media to express their disappointment .\npolice say nyia parler left her quadriplegic son , 21 , in a wooded park in philadelphia on monday morning and went to visit her boyfriend in maryland . the non-verbal man was found by a passerby in the woods on friday night with a bible and a blanket 10 feet from his wheelchair . parler , 41 , was arrested and charged with aggravated assault , simple assault and neglect of a care-dependent person .\nronald miscavige , 79 , had recently left the church of scientology and was followed by a father-son pair of detectives for 18 months . the church of scientologists allegedly paid the detectives $ 10,000 a week to track his every move and eavesdrop on his conversations . the claims come just weeks after the premiere of the hbo documentary going clear , which accused david miscaviges of systemic harassment , abuse and blackmail .\nvideo of rihanna at coachella appears to show her holding a suspicious substance and holding her nose . clip was posted on instagram and quickly deleted . rihanna later shared a clip of her holding the supposed tube in her hands . speculation has been rife as to what exactly is going on in the video .\nbastia lost 4-0 to paris st germain in the league cup final on saturday . zlatan ibrahimovic scored twice and edinson cavani netted a brace . french league president frederic thiriez did not shake players ' hands . bastia president pierre-marie geronimi has called for thiriez to resign .\npresident obama made a speech at everglades national park commemorating earth day . he said climate change ` can no longer be denied . it ca n't be edited out ' and action ` ca n't be delayed ' obama said the fallout from rising temperatures is ` not a problem for another generation ' at least , ` not anymore , ' he said . the president said the rising sea level in south florida and inward flow of salt water is evidence that climate change is already having a negative effect on communities .\njason mcdonald walked the thin rope line over a pool containing more than 50 alligators . the 34-year-old volunteers at the colorado gator farm and has been involved with alligators for over ten years . he said he thought this would be an interesting new way of interacting with the fearsome creatures .\nfreddo frog has shrunk from 15g to 12g and will now weigh just 12g . the miniature chocolate amphibians weighed a plump 20g two years ago . cadbury blamed the increased price of ingredients and rising packaging costs for the change . the company 's parent company 's profit before tax rose 46 per cent from $ 87 million to $ 127 million in 2013 . in february , cadbury announced plans to reduce the size of their family blocks by ` one row ' in a cost cutting deal .\nnew york mets closer jenrry mejia has been suspended for 80 games without pay . mejian tested positive for the banned substance stanozolol . the 25-year-old right hander will not be able to play again until at least july . mejia is on the disabled list with an inflamed elbow .\nzombie stars are thought to be leaving a ` mass grave ' of white dwarf stars near the centre of the milky way . but why there are so many of these stars here remains a mystery . they are left behind when a larger star runs out of fuel and collapses in on itself . the finding was made by scientists at haverford college in pennsylvania , us using nasa 's nustar telescope .\natletico madrid and real madrid drew 0-0 in their champions league clash . gareth bale missed a good chance to give real the lead early in the first half . cristiano ronaldo was confronted by a supporter at the end of the game . real madrid face atletico madrid in the champions league last 16 .\nprime minister has always claimed to be a fan of the premier league club . but he made the gaffe during an election campaign speech in croydon . he was outlining his vision for black and ethnic minority communities . cameron blamed the gaff on a ` brain fade ' and said he 'd rather support west ham .\nkaren sharpe , the mother of north charleston police officer michael slager , defended her son in an interview . said she can not believe that he would do anything like what he 's accused of . also revealed that his wife , who is eight months pregnant , is devastated . ms sharpe said she will never watch the video footage of the fatal shooting . this as she also expressed her sympathy for walter scott 's family , the man her son shot dead .\ndavid bowie played an alien in the cult classic film in 1976 . he has written new songs and arranged older music for a stage version of the show . the production will be called lazarus and will be on broadway later this year . bowie is not expected to perform in the production .\nroberto carlos picked his dream team for the 2014-15 champions league . the former real madrid defender won the competition three times in five seasons with los blancos . iker casillas , ronaldinho , clarence seedorf and zinedine zidane make the list .\nthe remo midfielder sported his new hairdo during his side 's brazilian cup clash with atletico pr on thursday night . the 35-year-old had hexagon panels shaved into his head to resemble a football . ratinho 's side secured a 1-1 draw on the night thanks to a 76th minute strike from igor joao .\nfinland 's navy detected underwater target yesterday and again this morning . border patrol boats fired depth charges the size of grenades at the object . finland has been increasingly worried about its powerful neighbour . comes just months after sweden suspected russia of sending vessel into waters close to stockholm . finland defence minister did not say whether russia was involved .\ndriver was trapped under the weight of the car after it crashed into a wall . his jeans were left on the underside of the red car after firefighters spent 25 minutes to free him . the man , believed to be in his 20s , suffered head and chest injuries . he was also left with suspected leg fractures , but remained conscious .\nrodney stover , 48 , was arraigned on thursday for rape , predatory sex assault and other charges for last saturday 's attack at a manhattan bar . stover lived in bellevue men 's shelter with a group of convicted pedophiles , rapists , and other sex-offenders . the shelter is located just one block from the k through 12 churchill school for learning-disabled children that has tuition of $ 27,000 per year . three of the residents in the shelter are convicted rapists and four of them were pedophiles with male and female victims as young as six .\nat least 17 climbers , including three americans , and many sherpas died as a result of the earthquake that has killed 2,500 people across the himalayas . some people managed to survive , but others are still trapped on the mountain waiting to be rescued . jon reiter , a contractor from kenwood , california , was attempting his third ascent to the summit when the avalanche hit . he described how he tended for the injured even after doctors told him there is little chance they will survive .\nsophia , 7 , is the daughter of a lesbian couple . she has made a video to explain to other children how they were created . the short film was created by the next family , an organisation that supports diverse families . it was created to help children from same-sex parent families understand .\nengland have pulled out of the home nations international under 16 tournament . sky allegedly withdrew their title sponsorship as well as reducing live coverage and wanting further changes to the format . bt sport are to broadcast the inaugural european games in baku in june . pele will enjoy a short stopover in london on thursday .\nwest ham are closing in on the signature of jamaican starlet deshane beckford . the 17-year-old forward from montego bay united has impressed on trial . beckford has been linked with a host of european clubs . west ham have revealed season tickets at the olympic stadium will cost as little as # 289 .\napril 27 is celebrated as freedom day in south africa . celebrates country 's first democratic elections in 1994 election which saw nelson mandela elected as president . people across the country and beyond took to twitter to celebrate this year 's event . google changed their doodle to honor the day .\nrobbie knievel , 52 , was speeding in an suv on tuesday evening when he rear-ended a honda , causing a chain-reaction crash involving two other cars . after the crash , knievel drove off but his car was found nearby and he was seen walking about a block away . officers noticed that he had a bloody lip and smelled of alcohol , but he refused to perform a breath test . he was booked into jail and made his initial appearance in justice court on wednesday .\nmanuel delisle allegedly threatened a family with a chainsaw in a fit of road rage after the family attempted to follow him to record his license plate because he cut them off . karine cyr recorded the confrontation on sunday as she was vacationing with her husband alexandre hermenier and their two children . the video was posted at 7pm on sunday night to facebook it has been shared over 30,000 times and has over 1 million views . delisle was arrested on monday following the release of the viral video .\nformer redgum frontman john schumann has slammed anti-islam protesters for using his song , i was only 19 , at a reclaim australia rally . the songwriter , who penned the 1983 anthem , said the song was about compassion , tolerance and inclusiveness . saturday 's rallies across the nation erupted into violence when the group 's supporters clashed with anti-racism groups .\nsabrina rubin erdely wrote a story for rolling stone about a university of virginia student named jackie who claimed to have been gang raped by seven men two years ago . the story sparked protests on campus and was later retracted by the magazine . a review of the story by the columbia journalism school will be released sunday night . erdeley is expected to apologize for the article .\nuniversity of sydney ran a 17-week diploma for year 11 students at scot 's college to skip their year 12 exams and ` buy ' their entry into the sandstone university . eight scot 's students gained ` direct entry ' to the university after completing the program in 2014 . 166 students completed the hsc . tuition , sporting and curricula fees for scot 's college reportedly top $ 30,000 . opposition leader luke foley is concerned over how this alternative would impact the h sc .\nwall street journal tweeted that intel was in talks to buy chipmaker altera . unnamed trader purchased 315,800 shares of altera just one minute after the tweet . the trader paid $ 36 a share and had a call option on the stock that was set to expire in a few weeks .\nliverpool lost 2-1 to aston villa in the fa cup semi-final at wembley . steven gerrard was denied a final trophy with a cup final appearance . the former england captain will leave the club at the end of the season . kolo toure said gerrard was ` sad ' but also felt sorry for liverpool fans .\nsuzi cinalli , from the vital touch , gives six tips to boost concentration . massaging your ` third eye ' can boost memory and dissolve tension . eating fish and keeping pumpkin seeds in your desk drawer can help . do yoga at lunchtime to help you stay sharp and focused .\nipswich town left back tyrone mings has seemingly paid off his mother 's debts in an act of generosity . the 22-year-old posted a text message conversation between him and his mother on his instagram account . his mother thanked him for wiping ` all my debt away for the first time ever in my life ' , adding that ` my worries have all gone '\na new study by pew charitable trusts has revealed the exact salary you need to qualify in each state . maryland 's middle class is the highest paid in the country , with an average income of $ 72,483 . mississippi 's middleclass is the lowest paid in america , with a $ 37,963 average .\nmigrant crisis in mediterranean has backstory of italy 's colonial past , says filippo tommaso . many refugees involved in recent disasters come from former colonies , he says . tomma : libya plays central role in current crisis as main departure point for italy . libya is example of long reach of italian imperialism , he writes .\nsleep apnoea is a condition often typified by heavy snoring in the elderly . people with it saw a mental decline more than a decade earlier than those with no sleep problems . us researchers ' results suggested that the onset of alzheimer 's might be accelerated among those with sleeping problems .\nleeds rhinos full back zak hardaker has been sent on an anger management course after a violent incident in february . hardaker was at the centre of a police assault probe into an attack on a 22-year-old man at student flats in leeds . the one-cap england international received a five-match ban and a fine for a homophobic comment made last year .\nsecurity researchers have discovered a way to intercept a person 's fingerprints on a samsung galaxy s5 running android 4.4 and older . when a fingerprint is scanned it is encrypted , but the flaw allows them to collect scans from the sensor before being encrypted . the flaw lies in older versions of the android operating system , up to and including android 4 , 4.5 and 5.0 . anyone running android 5.1 or above is not at risk and the security experts are advising people on older models to update as soon as possible . samsung told mailonline ` it takes consumer privacy and data security very seriously ' and is currently investigating fireeye 's claims .\nwinston reid signed a six-and-a-half year deal with west ham united last month . the 26-year-old had been linked with arsenal and tottenham . reid believes west ham can achieve all of his ambitions at the club . the hammers are set to move to the olympic stadium in 2016/17 .\nmore than 1,700 students took the exam in a playground at a high school in yichuan , shaanxi province on saturday . the students at yichuans senior high school suggested and organised the outdoor exam themselves . the school said that sitting the exam outside could be a test of the students ' organizing capacity as they set up the exam themselves .\nsocial services minister scott morrison confirms the government is researching possible legislation changes . parents who choose not to vaccinate their children may soon be blocked from accessing welfare payments and childcare subsidies . parents are currently able to use a loophole to access family tax benefits . the hard-line approach to immunisation comes one month after the tragic death of 32-day - old perth baby riley hughes who died after contracting whooping cough .\nfifty years ago , german prosecutors tried 22 former nazi ss soldiers at auschwitz . oskar gröning is accused of complicity in the murder of 300,000 jews . on april 21 , on the opening day of his trial , he acknowledged his moral complicity . gröting 's conviction will remain incomplete without his acceptance of moral guilt , says peter bergen .\nphotographer uruma takezawa travelled to 103 countries on four continents . he spent 1,021 days on the road to capture the images . the results are now on display at new york 's foto-care gallery . the award-winning photographer has made a living documenting remote communities .\nkaitlyne granado , 24 , arrested for second time after another pupil accused her of having sex with him in her car on two consecutive nights in january . she was arrested last month after admitting kissing another 15-year-old and letting him touch her breasts . granado is a maths teacher at macarthur high school in irving , texas . she has been suspended from teaching and put on administrative leave .\nniall horan has been in georgia this week for the us masters . one direction fan ashleigh sokie was asked to wash the singer 's clothes . she then posted a picture of herself wearing the star 's polo shirt . the 20-year-old also posted pictures of his boxer shorts and chelsea kit . she also claimed to have taken his underwear as a trophy .\nthe average nfl player makes $ 3.2 million over the course of a career . despite earning millions , nearly 16percent of players are bankrupt within 12 years of retiring . bankruptcy remained the same no matter how long the players were in the league or how well they were paid . the rate of bankruptcy is 1.1 percent per year , the same as the rest of americans .\ncell phone footage shows a customer complaining about the quality of a milkshake she had just been served at a burger king in lake charles , louisiana . after four requests to speak to a manager , the customer finally got the employee 's attention . the exchange quickly descended into a heated argument and the member of staff starts to curse at the customer . ` baby , you 're about to get it , ' the employee is heard saying . ` just wait . you 're gon na get your s *** , ' the customer replied . burger king has since confirmed that it is aware fo the footage and in a statement to the blaze said that the disgruntled employe had been fired .\nbrendan rodgers has been fined for leaving a property to rot . the liverpool boss rented out the house in accrington for three years . he was found guilty of ignoring an improvement notice issued by hyndburn council . rodgers was ordered to pay # 400 and # 375 costs , with a # 40 surcharge .\nyaya toure , sergio aguero , martin demichelis and eliaquim mangala among those to wear gloves at old trafford . manchester city lost 4-1 to manchester united in the premier league on sunday afternoon . gary neville described toure as a ` weed ' in the city garden after the game .\nhillary clinton announced her presidential bid with a video featuring women . she 's betting that there is no better time for her to make history as the nation 's first woman president . the challenge for clinton is laying out a precise campaign vision that connects with all voters . but she could be helped by an improving climate for women in politics .\na reserve deputy in tulsa county is charged with second-degree manslaughter . robert bates is seen on video shooting eric courtney harris in the back . the shooting was an `` excusable homicide , '' his attorney says . harris ' family is demanding an independent investigation of what they call unjustified brutality .\nac milan drew 1-1 with sampdoria at the san siro on sunday night . roberto soriano opened the scoring for the visitors with a fine finish . nigel de jong equalised for milan with an audacious overhead kick . the dutch midfielder 's effort took a massive deflection off alfred duncan 's leg .\nsalzburg is one of the most popular locations in austria for film fans . the city is still popular with the original star , julie andrews . lady gaga paid tribute to the film at the oscars this year . the film was shot in salzburg and the city is one the film 's locations .\nthe tooth fairy left a message for a boy named evan on the u.s. subreddit australia . jacob hall asked redditors to make the recording for his son . he said his son , evan , believes the tooth fairy is from australia . jeff pyrotek from seymour , victoria , made the recording and uploaded it on soundcloud . mr hall said his seven-year-old son was ` totally overjoyed ' with the message .\nthe 28-year-old girls star wrote an essay for seventeen magazine . she said she tried to be ` regular ' in high school by changing her appearance . lena said she was a ` weirdo ' and that she was ` obsessed ' with her pet rabbit . she also said that she wants girls to be able to be themselves .\nchelsea face stoke city at stamford bridge on saturday evening . jose mourinho says he does n't care where chelsea win the premier league . blues boss says he wants to win the title at home against sunderland . eden hazard will start for chelsea against stoke despite being tired . diego costa has recovered from a hamstring injury but could not start .\neurope-wide survey of 19,000 people revealed the more a country paid to the unemployed or sick the more likely its residents were to want a job . in norway , which pays the highest benefits in europe , almost 80 % of people wanted a job , . by contrast in estonia , one of the least generous countries , only around 40 % did .\nboris johnson launches the tory campaign in london with a speech . he claims ed miliband wants to take the country back to the 1970s . the london mayor said the labour leader was ` hostile ' to home ownership . he also claimed ukip wanted to turn the clock back to 1950s . mr johnson was mobbed by fans at the launch in mill hill , north london .\nsteven carl day met up with his roommates at a bar in grand rapids , michigan on december 18 , 2013 to have drinks for mccombs ' birthday . day allegedly told the two that he had been molesting young girls and that he thought ` one of them was starting to like it ' mccomb told the court that when day admitted the confession to him and his roommate roger musick , musick strangled him to death . the two were later arrested and charged with tampering with evidence but the charges were later dropped .\ncar is a celebrated 1962 aston martin db4 series iii and will be worth three times its # 220,000 price if fully restored . but the restoration project will cost up to # 350,000 - meaning whoever buys it will have to pay at least # 570,000 to return it to its former glory . the british vehicle was supplied new in july 1961 to a robert drummond of london .\nkimi raikkonen set the fastest time in friday 's practice session . lewis hamilton and nico rosberg finished 16th and 23rd respectively . jenson button stalled his car during the session . mclaren 's fernando alonso was an encouraging seventh . the bahrain grand prix takes place on sunday at 6pm local time .\nnathalie croquet created a series of photos called spoof . she recreated the ads of famous designers and brands . nathalie had her hair and make-up professionally styled . the project took two months to create . she hopes the humour in the images will provide people with the opportunity for , ` laughter and reflection ' .\n`` arrested development '' executive producer says the show will return for a fifth season . brian grazer made the announcement on bill simmons ' podcast . the fourth season was streamed exclusively on netflix in 2013 . it is not yet known if the full cast will return .\njury convicted dzhokhar tsarnaev of 30 charges related to the 2013 boston marathon bombings . peter bergen : the trial has held boston and the region in thrall . he says the only issue to be decided is whether tsarnaev should be executed . bergen says tsarnaev is a loser and a nobody .\nfighters from 100 nations have joined militant groups such as al qaeda and islamic state . more than 20,000 foreign fighters have fled to syria and iraq , according to un report . report warned if is was defeated in war-torn region then barbarous foreign fighters could be scattered across the world .\nfelix the cat disappeared after his crate was damaged after a flight from abu dhabi to new york . his crate was travelling in an airline-approved carrier but it was damaged . the two-year-old grey tabby 's crate was apparently damaged while being transferred from the plane . he was found at jfk airport after being on the loose for more than two weeks .\nstefan johansen picked up two awards at celtic 's player of the year awards . the norwegian midfielder shared the award with scott brown but stood alone as the choice of the supporters . johansen joined celtic in january last year and has impressed in his first campaign . the 24-year-old is looking forward to clinching the scottish premiership title .\nstoke 's bojan krkic has been keeping up-to-date with the premier league . the former ac milan and roma forward is recovering in barcelona . bojan has picked his team of the season , with david de gea , ryan shawcross , alexis sanchez , steven nzonzi and santi cazorla among the players he has selected .\nmarina lyons took her dog rosie to the pdsa petaid hospital in hull . the lhasa apso had surgery to remove her spleen due to a suspected tumour . when she returned home with the dog , she noticed bruising on its back . she asked the vet about it , who told her it was from the operation . not satisfied , she took the dog for a second opinion , when the burns were discovered .\nspanish papers focus on atletico madrid 's 0-0 draw with real madrid . marca praise jan oblak 's display , while as say real could have settled the tie in the first half ... ` but oblk said no ' barcelona prepare for their champions league tie with psg . arturo vidal scored the only goal as juventus beat monaco 1-0 .\ngertrude weaver , 116 , of camden , arkansas , became the world 's oldest person on wednesday following the death of 117-year-old misao okawa in japan . weaver attributes her longevity to treating others well and exercising three times a week in her wheelchair . she wants president barack obama to attend her 117th birthday party on the fourth of july . weaver was born on july 4 , 1898 and worked as a domestic helper before retiring .\nfelipe massa believes he has silenced his critics following storming start to the new formula one season . williams driver says he is performing as good as he was in 2008 , a season he challenged for the title . massa finished 5th at the shanghai grand prix last week and currently sits 4th in the standings .\nimages show wide divide between aspirations set out for girls and boys . female beautician 's outfits while males are offered doctor 's uniforms . products intended for infants are equally polarised . babygros for girls read : ' i hate my thighs ' while boys say : ` i 'm super ' campaign group let toys be toys is petitioning retailers to end practice .\na professor says he will fail his entire class at texas a&m galveston . irwin horwitz said in an email to students that they were a disgrace . he said he had reached a breaking point . university officials have not yet responded to cnn 's request for comment .\nmanchester united were poor in midfield against everton on sunday . louis van gaal needs to sign a new midfielder to replace michael carrick . borussia dortmund 's ilkay gundogan and sven bender fit the bill . henrikh mkhitaryan is a playmaker who can score goals too . united also need a centre half and another striker .\na new staff report by republicans on the house ways and means committee says the irs diverted millions from taxpayer services and other areas to pay for president barack obama 's health law . many of those people had to wait on hold for more than 30 minutes , irs commissioner john koskinen said wednesday . the agency 's budget has been cut by $ 1.2 billion since 2010 .\nstuart mccall 's rangers are currently second in the scottish championship . but the ibrox side could be forced to play two extra games to reclaim their premiership return . mccall is relaxed about the prospect of finishing third . the gers face dumbarton in the league on saturday .\nformer liverpool team-mates john barnes and jamie redknapp rap on sky 's upcoming series of a league of their own . the pair perform a rendition of the sugarhill gang classic rapper 's delight . barnes and redkn app played together at liverpool between 1991 and 1997 .\nstudy of 1,302 german couples found men do just two hours of housework a day while working , which increases to 3.9 after they retire . but it is still far less than the amount carried out by their stay-at-home wives . women who did not work did an average of 6.8 hours before their husband 's retired .\nbrittany cherokee dawn bell of bartlesville , oklahoma , charged with child neglect . her three-month-old daughter was found dead with roach bites on her legs and head . bell said she had fallen asleep while watching a movie with her twins . while she slept , baby alice somehow suffocated on the floor nearby . bell has other children but they are not in her care .\nal qaeda-linked networks have altered tactics since the fugitive stole intelligence files from gchq and the us national security agency . extremist websites have also moved to protect their digital communications by releasing encryption programmes for followers . henry jackson society security think-tank compiled evidence of harm done to intelligence agencies across the world after snowden leaked 1.7 million classified documents .\nlane smith , 26 , died in july 2014 after hitting his head in an accident . his girlfriend , sierra sharry , was eight months pregnant when he died . she asked photographer kayli henley if she could make their family portrait complete with a ghostly filter . the image shows sharry holding her six-month-old son taos with her boyfriend standing behind them . it has been shared thousands of times online .\nin eight weeks lily james has worn more than # 300,000 worth of frocks . she 's promoted disney 's new blockbuster cinderella in glitziest names in fashion . from # 3,000 jimmy choo shoes to a # 35,000 gown and a # 40,000 necklace .\nthree mps put themselves at the mercy of a personal trainer for men 's health magazine . each was given strict orders to eat more healthily and do more exercise . health minister dan poulter 's weight fell from 105kg to 102.5 kg , losing two inches off his 35in waist . labour mp gavin shuker embarked on an intense weight loss regime .\nchase lacasse was apprehended by real state police in new hampshire after allegedly walking up to an ice cream stand in full uniform with a handgun on his belt . the 19-year-old was arrested and charged with felony impersonation of police . he had posted on social media that he wanted to join the police and often posed dressed up as an officer .\njessica ainscough was diagnosed with cancer in 2008 when she was 22 . she refused chemotherapy and radiation , choosing to fight the cancer with a controversial treatment known as gerson therapy . the method involves a vegan diet and coffee enemas and does not have scientific support . ms ainscoug was planning to marry her partner tallon pamenter this year . she died in late february after a seven-year-long battle with cancer . mr pamenters has written an emotional letter to her followers .\nchelsea will take part in the international champions cup this summer . manchester united will also take part as part of the tournament . barcelona , porto , paris saint-germain , fiorentina , new york red bulls , san jose earthquakes and la galaxy are also set to feature . the tournament will be played between july 11 and august 5 .\none in five nsw parents admit to sedating their children before a long road trip . the antihistamine phenergan is commonly used to treat allergies but contains a sedative called promethazine which can cause breathing problems in young children . medical community claim the sedative phenergin should not be used on children younger than two years old as side effects like respiratory depression can be fatal . a national driving survey analysed the travel habits of 3700 australian families .\nthe uae state has become a party destination for celebrities . lily allen performed at dubai 's first party in the park . karl lagerfeld showed his chanel cruise collection in dubai . sarah jessica parker launched her shoe collection in the mall of the emirates . there is even an underground fashion scene emerging in the city 's industrial area .\nander herrera netted two goals against aston villa on sunday . the 25-year-old has established himself in louis van gaal 's first team plans . herrera has scored seven goals in the premier league this season . he was linked with a move to manchester united on deadline day .\nthe fbi is investigating a possible isis-inspired terrorist threat in the u.s. , officials say . the investigation originated from intercepted chatter and other intelligence information . it 's not clear whether the threat is real or aspirational . no arrests have been made . the exact nature of the threat could n't be learned .\nbarcelona face psg in the champions league on wednesday night . luis enrique and laurent blanc were part of the team that won the spanish super cup under bobby robson in 1996 . the barcelona xi that won that trophy is now breeding managers . luis suarez , lionel messi , sergio aguero and neymar are all now managers . barcelona boss luis enrique also has former team-mate sergi barjuan .\nchildren are being auditioned at school for britain 's got talent . teachers say youngsters have been playing truant to find stardom . for the first time producers have held auditions at dozens of secondary schools and colleges around the uk for the new series . the move has helped reduce unauthorised absence levels in some schools .\nthe inflatable , nicknamed ba di doll , has appeared at wanda plaza commercial complex in eastern china 's nanjing city . the attraction features a ball pit , slide and climbing area , which can be accessed via the doll 's right foot . cartoon images are displayed inside the legs to teach children about sex .\ntodd larson said he parked his collectible dodge challenger worth $ 30,000 in the driveway of his taylorsville , utah home on march 25 . moments later an ice chunk crashed onto his car at 1.53 am . he said the faa did an investigation and found an a1 aircraft that matched within two minutes of the time the incident happened and when the plane was flying above his home . mr larson said the hole in his windshield is about 12.5 inches in length and that the size of the piece of ice that went through was the size . of a cinder block .\njohn chapple has traveled the world capturing landscapes using a film camera . he has captured grassy fields in england , major us cities , and sandy beaches in australia . chapple , originally from north devon , first worked as a news and show business photographer before he got into landscape photography .\nholy week commemorates the final days of jesus christ . thousands have taken part in mesmerising parades across five continents . in spain , penitents have marched through streets in hooded cloaks . others have performed alarming religious self-flagellation in the philippines .\nyves van de ven , 37 , uploaded photos to social media to poke fun at tourist pictures . he asked users to help improve his picture by connecting his finger with the top of the eiffel tower . since then over 100 photoshopped pictures have sprung up .\nthe current crop of male leads are rocking a ` pretty but gritty ' look . shows such as poldark , vikings , outlander and game of thrones are all about the unkempt hunk . leading the way is ` poldark and handsome ' aidan turner . kit harington plays jon snow in the hbo fantasy series .\nresearch found risk of dying from oral , oesophageal or lung cancer is at least as bad as for cigarettes . cigar use is on the rise in the us , where study was carried out , while cigarette smoking declines . cigars consumption more than doubled from 2000-2011 -- in contrast with a 33 per cent fall for cigarettes .\nat least 182 people have been killed and hundreds more wounded in yemen , a u.n. spokesman says . the saudi-led coalition has destroyed air defense systems of the houthis , a source says . saudi foreign minister saud al-faisal says the saudis are `` not warmongers , '' but `` we are ready ''\ndriver allegedly attacked by man who was inside home at time of crash . car crashed through fence and into the front bedroom of the breakwater house . four-month-old girl airlifted to royal children 's hospital in melbourne . her parents , who are in their 20s and were in the room at the time , are in geelong hospital with minor injuries . police say driver failed to negotiate a roundabout just after 8.30 pm on sunday .\nturkish archaeologists discovered a stone chest in a 1,350-year-old church that appeared to contain a piece of jesus ' cross . archaeologist : `` we have found a holy thing in a chest . it is a pieceof a cross '' the latest episode of the `` true cross '' is symbolic of the pitfalls in the hunt for jesus relics .\nmarissa holcomb was fired from popeyes after $ 400 was robbed from her till . the mother-of-three was held at gunpoint on march 31 . popeyes said it was against policy to have so much cash in the till . holcomb refused to pay it back and was fired less than two days later . popeye have now offered her her job back . she is five months pregnant with her fourth child .\ninvestigators called into royal oldham after deaths of four babies and two mothers . also looked into north manchester general after deaths of three babies and one mother . lisa parkisson , 35 , died at oldham royal 48 hours after giving birth in april . thomas beaty died at the same hospital in june after doctors pushed him back into the womb during birth .\nindian military sending helicopters , medical personnel to nepal . red cross opens a blood bank in kathmandu . google india launches a person finder website for those missing . more than 1,800 people have been killed in the quake . to help with rescue efforts . .\namy hughes , 26 , decided to take on the incredible challenge of running 53 marathons in 53 days . she ran to raise money for a friend 's daughter who was diagnosed with a brain tumour . the sports therapist also ran into a new love after she got close to long-term friend dave keighley . dave was part of her support crew and cycled alongside amy for 26 miles every day .\nsudan , 43 , is the last northern white rhino left in the wild . he is guarded by a team of rangers in the kenyan reserve of ol pojeta . they risk their lives every day to keep him safe from poachers . they have even cut off his horn to deter poachers - but they fear it wo n't be enough .\nrolling stone article claimed student was raped by seven men . but the story was roundly discredited after it was published . now , independent review of the story has found ` basic failures ' in reporting . but rolling stone bosses are not expected to sack sabrina rubin erdely .\nfootage shows the s300 rocket barely managing to take off before plummeting back down to earth . seconds later , a huge explosion can be heard and a massive plume of smoke is seen . the footage was filmed at a military base in an unknown part of russia .\ncremated bone found in landford , essex , is thought to date to 5,600 bc . it is thought the bone is the earliest ever identified in britain . the bone was placed into a pit and then backfilled with soil . three radiocarbon dates have confirmed the remains are around 7,614 years old and fall within the late mesolithic , between 6,000 bc and 4,000 bc . the find is significant because it sheds light on early human society in mesolithic britain , when people were largely nomadic hunter gatherers before the arrival of farming .\nbarcelona beat celta vigo 1-0 in la liga on sunday evening . jeremy mathieu scored the only goal of the game in the 73rd minute . fabian orellana was shown a straight red card for throwing a lump of grass at sergio busquets .\nviktoria charkley was watching the lion king for the first time when she saw the sad scene . her father barles charkly captured her crestfallen reaction on camera . the video has so far garnered more than four million views on facebook .\neaster is a great time to take the kids out for a day out this weekend . enjoy the world 's largest easter egg hunt at traquair castle in scotland . learn how to be a court jester at stirling castle with a special workshop for kids . look for alice in wonderland at belsay hall in northumberland .\n` east bay rats motorcycle club ' was written on the 50-foot whale . the body washed up on pacifica state beach in california last week . it is unknown how the whale died but it does n't appear to have any broken bones or signs of blunt force trauma .\nclarence david moore , 66 , was 23 when he escaped from a north carolina prison in june 1972 . moore has been on the run from the law for more than four decades . he called the franklin county sheriff 's office in kentucky and admitted to being a fugitive . moore suffers from several medical conditions and can not walk , but because he has no social security card of any form of id , he has been unable to receive medical treatment .\nbruce jenner , 65 , started hormone therapy and electrolysis in the mid-1980s to make his features look more feminine . he stopped the process after meeting kris kardashian in late 1990 . he also had breast reduction surgery before the couple married in 1991 . he says he was inspired by the life story of transgender tennis player renee richards .\nmonaco face juventus in champions league quarter-final second leg on wednesday . leonardo jardim 's side lost 1-0 to juventus in first leg in turin last week . dimitar berbatov believes monaco can overturn the deficit and reach the semi-final . bulgarian striker insists a place in the last four is within their reach .\nmany schools give priority to families who regularly attend services . but a group of vicars say it can lead to discrimination against the poor . they say affluent parents cheat the system by going to church . church of england labelled their arguments ` doctrinaire ' .\nnigel farage will say boatloads of people from north africa could provide cover for jihadis . he will warn that if eu agrees to give refuge to migrants from north . africa , it could lead to millions being given passports that allow them to move to britain . comments in debate at the european parliament in strasbourg in wake of more than 1,000 migrants drowning in mediterranean .\ncarlos boente , 33 , was serving time at hmp birmingham for similar offences . after getting her number from a cellmate , he asked her to change his facebook password . then bombarded the 19-year-old woman with thousands of texts and calls . told her sob stories about his life saying he had no family and nobody visited him . he then sent three men to the home of the woman 's aunt and uncle . boente was found guilty of conspiracy to burgle , harassment and phone possession . he was jailed for five years at birmingham crown court last week .\nlib dem leader said there was a ` very real danger ' of a ` blukip ' alliance between tories and ukip . he said it is now just as likely as a coalition between snp and labour in a hung parliament . comes after nigel farage said he wants to work with cameron to prevent labour . ukip leader called on tories to vote tactically for him in seats where they can not win .\nthe 56-year-old singer performed her first stand-up routine on the tonight show starring jimmy fallon on thursday . she told jokes about dating a 26-year old man and her collection of andy warhol paintings . the routine was lambasted by critics who said it was ` awkward ' and ` sad '\ncesar azpilicueta is counting down the games until chelsea win the premier league title . the spanish defender believes chelsea have shown their strength by staying top of the table since ` day one ' chelsea sit six points clear of nearest rivals manchester city with a game in hand . the blues face stoke city at stamford bridge on saturday at 3pm .\niran and six world powers agree to continue nuclear negotiations . deal paves way for a much broader deal by end of june , says fathi . iranians are over the moon , she says . they believe the lifting of international sanctions is no longer illusive . it would resuscitate the country 's ailing economy and improve their lives .\nsen. harry reid 's brother larry reid was arrested for dui about 12:40 p.m. monday on u.s. highway 95 near the edge of boulder city city limits . mr. reid was also charged with battery of a police officer , driving across a median , resisting arrest , not wearing a seat belt and possession of a gun while under the influence of alcohol . the nevada senator 's office released a statement confirming that larry reid is the democrat 's brother , saying only that it is ' a private matter '\ndr fredric brandt , 65 , was found dead at his miami mansion on sunday . miami herald columnist lesley abravanel told daily mail online exclusively that sources close to dr brandt said he had hanged himself . abravanel said brandt was ` devastated ' recently over rumors comparing him to a character on the netflix show , unbreakable kimmy schmidt . dr franff only appears in one episode , titled ` kimmy goes to doctor ! ' of the first season .\nemma jackson , 28 , moved into quiet cul-de-sac in hull just over a year ago . but within a week of moving in , her dream home turned into a nightmare . mark ray , 56 , had a penchant for watching tv with the volume turned up . unable to sleep because of the racket , ms jackson asked him to turn it down . but she was met with a barrage of abuse that culminated in violent threats . mr ray , who is unemployed , also stalked ms jackson and her family .\ndouble falsehood written in 1728 by theatre impresario lewis theobald . was thought to be a shakespeare forgery until new study revealed it was written by the bard himself . researchers analysed the language of 33 plays by the shakespearean master . found that shakespeare 's work is more complex than previously thought .\nsinbad the ginger tabby cat sneaked into a shipping container in egypt . he then made a 17-day journey from alexandria to moreton-on-lugg . staff at mediterranean linens in hereford heard meows coming from the container . the rspca was called out and found the exhausted and ravenous kitten . he has now gone into quarantine in bristol for four months .\nelijah cook was born profoundly deaf in his left ear and only able to hear 75 decibels in his right . parents ahavah and jason cook were worried he may be born deaf . but doctors fitted him with hearing aids as soon as possible . last month , he was able to properly hear his mother 's voice for the first time .\ntodd kincannon , 33 , has been arrested and charged with criminal domestic violence following an incident involving his wife last month . an arrest warrant alleges that kinc cannon 's wife , ashely griffith , told deputies that he grabbed her arm during a march 26 argument in their car . griffith told police kinc cannon threatened to kill her , himself and her family during the incident . kincannons claims he ` accidentally overdosed ' on the prescription drug benzonatate -- which he says he was taking to deal with an upper respiratory infection .\naston villa face liverpool in sunday 's fa cup semi-final . tim sherwood has confirmed shay given will start for villa . given will turn 39 on sunday , a day before the game at wembley . the 38-year-old has played in all four of villa 's fa cup matches this season .\na rarely-seen napoleonic fort , off the coast of tenby , will now be accessible via footbridge for the first time . the welsh fort , which defended britain from french invasion , will be joined to the mainland thanks to a 328ft footbridge across the sea . currently , the fort on st catherine 's island can only be reached by crossing a beach during low tide , which happens for only six hours per day .\nlawmakers removed protection for gay people who use ride-sharing services . republican sen. jason smalley rewrote the bill to give drivers the option to discriminate . uber and lyft already have policies in place that prohibit discrimination against customers based on sexual orientation or gender identity .\negyptian woman , 65 , has been dressing as a man for 43 years . sissa abu dahou is a widow and mother of two . she says she dressed as a male to avoid oppression in the conservative muslim state . she has been crowned one of egypt 's ideal mothers .\npaddy morrall noticed the full-length christ on a snapped scaffolding board in inverness , scotland , on wednesday . the son of god appeared wearing a robe after the joiner and colleagues left the piece of wood out in the rain for several hours . it comes two days after a shop assistant spotted the image of christ on an easter bun .\nmanchester united have made an official approach for memphis depay . psv eindhoven confirm the red devils have made a move for the holland international . united boss louis van gaal is keen to make depay one of his first signings this summer . the 21-year-old has scored 20 goals in 26 league games for the dutch giants . depay worked under van gaal during holland 's successful 2014 world cup campaign .\nstuart mccall 's side bounced back from their defeat against queen of the south with a 4-0 win over raith rovers . rangers travel to livingston on wednesday night in the scottish championship . mccall has warned his players they must improve in the push for promotion .\neden hazard was named pfa player of the year at a glittering ceremony . the chelsea midfielder has scored 18 goals in all competitions this season . hazard has won the award every season since 2009 with lille or chelsea . the 24-year-old has already won the capital one cup with chelsea .\nzane gbangbola died at home in chertsey , surrey , after being poisoned by gas . for months , authorities ruled out fears that fumes had come from landfill site . instead , they insisted carbon monoxide from a faulty pump hired by his family had caused his death . but damning new evidence proves authorities knew for 14 months that hydrogen cyanide gas capable of killing zane had leaked into the family 's home . the mail on sunday can reveal the damning evidence that proves the authorities have known for 14 . months that the gas had leaked . the leaked official records reveal for the first time that no traces of carbon mon co had been detected at the home . a specialist in landfill gases said\nmike brown could miss the rest of the season after concussion . the full back was knocked out in the rbs 6 nations match against italy . brown has continued to suffer from headaches nine weeks after the injury . the 29-year-old has taken no part in training or team meetings . brown is expected to be fit for england 's world cup warm-up matches .\npaul tudor jones ii , founder of tudor investment corporation , bought the casa apava estate in palm beach last week . the mediterranean-style home was built in 1918 and has seven bedrooms and 18 bathrooms . it also has a tennis court , movie theater , swimming pool and gym . the hefty purchase came days after jones gave a ted talk in canada in which he warned that increasing inequality could spark a revolution . jones , 60 , has an estimated net worth of $ 4.6 billion .\ndirect line is running a competition called #everydayfix . they asked groups to design products to deal with common problems . these include forgetting to lock the door , which one company hopes to solve with their forget me lock prototype . another group designed nipper - the world 's smallest mobile phone charger . and one team designed an app that lets you receive messages when your phone dies . you can vote on which one is your favourite - and the winner will be made into an actual product , funded through a kickstarter campaign . the products were designed as part of the direct line everyday fix design makeathon .\nkevin pietersen scored 170 runs in surrey 's three-day match against oxford . the 34-year-old is being urged to make it difficult for the england selectors . alec stewart and nasser hussain have both had their say on pietersen 's chances of a return to the test arena . hussain insists england 's selectors need to clarify with a ` very public decision ' once and for all whether the controversial south africa-born batsman has any prospects of playing for his adopted country again .\nkenny miller fears rangers ' promotion bid could be derailed by their poor form . rangers slumped to a 3-0 defeat at queen of the south on thursday night . the ibrox side had recently secured victories over hearts and hibernian . miller says gers ' lack of consistency could wreck their premiership return .\nburnley manager sean dyche has been linked with a move to derby . dyche says he is ` enjoying the challenge ' at turf moor . the clarets are currently second from bottom in the premier league . dychy has been tipped to replace steve mcclaren at derby .\nmonaco host juventus in the champions league quarter-finals . leonardo jardim says his side 's progress shows you do n't need to buy big . jardin has been forced to nurture young players at the stade louis ii . the french club are third in ligue 1 and are bidding for a semi-final place .\noregon lawmaker proposed legislation monday creating uniform standards for hand dryers in public restrooms . the measure would require all new or replacement dryers to operate at a noise level no louder than 84 decibels . according to the federal centers for disease control and prevention , that is about as loud as a school cafeteria .\nvictoria 's secret caused backlash when it unveiled campaign slogan . more than 27,000 people signed a change.com petition . new campaign from curvy kate recreates that notorious image . the d + label says its image is 'em powering ' it coincides with shortlist of star in a bra contest .\nian bell has signed a three-year contract extension with warwickshire . the 32-year-old has won five trophies with warwickshire , including the county championship in 2004 and 2012 . bell has played 105 test matches and 161 one-day internationals for england .\nsunderland host newcastle in the premier league on sunday . the magpies are currently 18th in the table , 10 points above the relegation zone . papiss cisse is newcastle 's top scorer this season with 11 goals . the senegal striker is currently serving a seven-game ban .\nnicola sturgeon is most dangerous woman in britain , says writer . in 2001 she dressed according to the angela merkel school of leadership . she had lost her waist along with her sanity , topped and tailed with a krankies haircut . today she has shed pounds , bleached her hair , squeezed her feet into kurt geiger heels .\nrichard curry , 71 , was told he had malignant melanoma in his septum . he was warned he would have to have his nose removed to stop the cancer spreading . but he could be fitted with a prosthetic and had metal implants inserted . the implants were then fitted to his cheekbones and nasal cavity . mr curry now wears a prosthetics nose attached to his face using magnets .\nranette afonso , 42 , will marry marko conte , 30 , this october after they fell in love . the pair met after marko crashed into her parked car in august 2013 . ranette was married at the time , but had been growing apart from her husband . the couple began dating shortly after her marriage ended . on their third date , marko surprised ranette by asking her to marry him .\na man charged with planning the 2008 mumbai terror attacks is released on bail . zaki-ur-rehman lakhvi was charged in pakistan in 2009 . he is a top leader of the terrorist group lashkar-e-taiba . india says pakistan has a dual policy on dealing with terrorists .\ndandel hall jr , 10 , was walking down the street in centre point , alabama . a man was chased by an aggressive dog and a third person shot at it . stray bullets hit danel in the stomach and a second man in the buttocks . danel was rushed to hospital where he underwent emergency surgery to save his life .\nchelsea 's technical director michael emenalo travelled to spain to watch atletico madrid midfielder koke . jose mourinho is reportedly planning a summer swoop for the 23-year-old . the blues boss could offer second-choice left-back filipe luis to his former club as a makeweight for the deal .\npaula radcliffe , 41 , is set to run her final london marathon this weekend . the mother-of-two has won the race three times and set a world record . she has never won an olympic medal and has often been let down by her body . femail looks back on her career as she prepares to run the marathon .\nthe federal court this week banned rebels bikie gang president alex vella from australia . vella was banned after the government cancelled his visa while he was overseas in his native malta last year . the decision strands vella in malta , leaving behind in australia 24 close family members including a wife , sons and an elderly mother . vlla , 61 , has painted himself as a nelson mandela-like figure and sold stubby holders and t-shirts to fund his legal battle . the court ordered vella , who is regularly described as a millionaire businessman , to pay all court costs .\nkatie donovan and dalton prager met on facebook . they were both suffering from cystic fibrosis . they decided to meet in person , but doctors said it was dangerous . katie and dalton eventually had a lung transplant . they are now happily married . . the couple is raising money for cystic fibrosis research .\ngabrielle yinka saunders , 32 , used company credit cards to pay for her wedding . she also stole # 5,000 for a luxury honeymoon in the seychelles . she was arrested at heathrow when she returned from the honeymoon . but she was spared jail because she had been convicted of fraud twice . she stole # 35,000 from her previous employer pricewaterhousecoopers .\ndetective sergeant stephen phillips , 46 , and police constables christopher evans , 37 , and michael stokes , 34 are all facing charges of ` theft by a serving police officer ' cardiff crown court heard that the three officers from south wales police were all arrested as a result of an investigation being carried out by the force 's professional standards department .\nmandi l. walkley , 39 , and jacob m. austin , 52 , were kayaking along washington 's dungeness spit . but a sudden storm with 35mph winds overturned their boats . walkly , austin and william d. kelley , 50 , were stranded in the water for two hours . they were rescued by the coast guard but both died after being taken to hospital . kelley remains hospitalized but his condition has improved from critical to serious .\ntim bresnan last played in whites for england during the ashes whitewash in 2013/14 . yorkshire won the lv = county championship last season . bresan says he wants to make a case for an england test recall with yorkshire . the right-arm quick reached 400 first-class wickets on wednesday .\na man set a bouncer on fire in a bar after he was kicked out . the man was kicked from neely 's grog house in port st lucie , miami . he returned minutes later with a cup of gasoline and threw it on the bouncer . the bouncer chased the man and tackled him before he set him on fire .\nmanchester city fans were ejected from old trafford for allegedly mocking the munich air disaster during sunday 's 4-2 derby defeat by manchester united . stewards threw out the group who were said to be attempting to taunt home supporters by making airplane wings in a sick reference to the 1958 tragedy . police praised the ` overwhelming majority ' of supporters at the clash after just eight arrests were made .\nterry martin , 48 , shot his girlfriend laurice hampton , 48 . the couple had known each other since childhood , according to police . martin was pronounced dead from a gunshot wound to the head . hampton was taken by ambulance to john peter smith hospital but died a few hours later .\na man caught on camera allegedly hitting his three-year-old toddler in the face at a supermarket was arrested on friday . justin whittington , 23 , of bakersfield , california was taken into custody on suspicion of child endangerment . the relationship between the toddler and whittingon has not yet been revealed by police but the owner of vest market harry dindral said the man was the boy 's father and said that he 's seen them in the store together before .\nbalestrino dates back to the 11th century a.d. and is based 40 miles south east of genoa . the ancient tuscan settlement is shrouded in mystery with its origin and history unknown . residents were forced to flee their homes in the town more than 60 years ago due to seismic instability .\nrev. sharpton preached at charity missionary baptist church in north charleston , south carolina , on sunday morning . elected officials and police from north charleston were in attendance and south carolina senator marlon kimpson was also there to hear sharpton speak . the civil rights leader is also expected to attend a vigil near the scene of the scott shooting on sunday afternoon .\nmichael hanline , 69 , was convicted of murder for the fatal shooting of truck driver jt mcgarry in 1980 , and on wednesday a judge dismissed the charges against him . on the day of his release last november , the moment he ate his first burger after being in prison for decades was captured on video . in a video posted on april 20 by the california innocence project , he is seen at the counter of a carl 's jr asking for a hamburger ` they show on tv with the bacon on it ' after taking his first bite , he said : ` my oh my , that 's what meat tastes like huh ? ' hanline is the longest-serving wrongfully imprisoned inmate in california\na fracking tanker carrying fracking wastewater exploded at a facility in greeley , colorado , on friday , after being struck by lightning in a storm . the fire began when lightning struck a water storage tank , launching it into the air . the water contained traces of hydrocarbons and petroleum as a result of hydraulic fracturing , which ignited . the tanker was near an injection well where fracking wastewater is pumped into the ground . no one was injured , but the facility has likely been destroyed .\nutrecht have 12 players on the pitch at one stage during 1-1 draw with ajax . edouard duplan had no idea he had been substituted midway through the first-half . the referee blew on 24 minutes amid confusion utrecht had an extra man on the field . duplan protested but suddenly seemed to realise substitute tommy oar was now on the play .\ngareth bale wants to stay at real madrid beyond the end of this season . manchester united are keen on signing the # 86million player despite strong interest . real madrid also want to sign manchester united goalkeeper david de gea . bale is out of real 's champions league quarter-final second leg against atletico madrid .\nwork on anfield 's main stand continues ahead of liverpool 's clash with newcastle . steel foundations for the new stand are now taller than the existing structure . the new main stand will be able to seat 21,000 spectators and will be open in time for the 2016-17 season .\ntwo jaguar cubs were unveiled to the public at leningrad zoo in saint petersburg . the month-old cubs , born march 11 , were captured on video sitting before press and public . the two young cats have both reached an ideal weight of 3kg and their teeth have already started to grow .\nlabour peer sent a ` thank you ' christmas card to a detective after learning he would escape child sex abuse charges . officer said he was appalled by the labour peer 's note after his superiors forced him to drop his inquiries into janner '` s alleged sex abuse . note thanked him for how he had dealt with the issue , and even invited him and his wife to dinner at parliament . detectives have carried out four child sex inquiries into the 86-year-old since 1991 . but attempts to bring him to justice were repeatedly blocked . director of public prosecutions alison saunders ruled that the 86 , year - old peer should not face prosecution because of his dementia .\nwashington reporter jeff dubois was stung by hundreds of bees during his live broadcast of a semi-trailer crash on interstate 5 on friday morning . the truck had just merged onto the highway when it tipped on its side dumping its load of 448 hives . the driver , a 36-year-old man from idaho , was not hurt . the company that owns the insects sent beekeepers to recover as many as possible before the firefighters drowned them with foam .\ngroup of armed robbers used pink umbrellas to hide themselves as they raided 13 shops in the west midlands . they stole # 145,000 from convenience stores , electrical shops and supermarkets , before stealing cars and cigarettes . the gang also threatened shop workers with hammers , knives and screwdrivers , before punching one employee in the face . the group have now been jailed for more than 27 years after pleading guilty to conspiracy to rob .\nresearchers from the university of patras took thermal infrared photographs of 41 volunteers ' faces , before and after drinking four glasses of wine . they then used artificial neural networks to compare the sober and drunken images pixel-by-pixel . they found the temperature of the forehead and the nose is the best indication of a person 's drunken state . the algorithm was built to recognise intoxication with 90 % accuracy . it could be used by police to spot intoxicated people who start trouble at football matches , for example .\nvolcano calbuco , in southern chile , has erupted forcing 1,500 residents to flee their homes . the volcano last erupted in 1972 , and was not under observation before it erupted today . it is believed to be among chile 's three most dangerous volcanoes . the eruption was seen up to 100 miles away in neighbouring argentina . local authorities have set up a 12.5-mile exclusion zone around the volcano .\ndougie freedman has impressed since replacing stuart pearce in february . the former manchester united midfielder is set to sign a new two-year deal . freedman is on the verge of agreeing a new deal to remain at nottingham forest . the club 's owners are pleased with the job freedman 's done at the city ground .\ninstitute for fiscal studies says voters are ` in the dark ' about spending cuts . it says none of the major parties have given ` anything like full details ' tories accused of giving ` no detail ' about deficit reduction plan . labour has left the door open to borrowing an extra # 26billion-a-year .\nfor the love of cars is back on channel 4 with a new series . presenter philip glenister and car designer ant anstead present the show . the pair restore classic cars to their former glory . the finished products are then auctioned off at the end of every programme .\nnew analysis of finnish education suggests pupil aptitude has declined since country embraced fashionable teaching methods . progressive experts have long pushed for uk to emulate finnish system . but research by centre for policy studies says finland only did well before . findings will add weight to arguments by michael gove that return to traditional teacher-led lessons is the way to raise standards in schools .\nnew york police department officers shot dead a suspect as he fled from the scene of a crime wednesday night . the suspect , 30 , was shot dead after he turned around to do so again . officers say they did recover a weapon from thescene . no officers were hurt during the incident .\njason denayer made his belgium debut against israel on tuesday night . the 19-year-old is currently on loan at manchester city from celtic . celtic boss ronny deila wants to keep denayer at the club next season . hearts captain danny wilson is also among deila 's defensive targets .\ndiafra sakho has been ruled out for the rest of the season with a thigh injury . the west ham striker came off after 58 minutes of saturday 's 1-1 draw against stoke with a thigh strain . the senegal international has scored 12 goals this season .\nairline visual identity 1945-1975 is a 436-page book featuring dozens of adverts . the book was written by matthias huhne and features adverts for the biggest airlines of the day . pan am , british overseas airways corp -lrb- boac -rrb- and continental were the biggest names . many of the adverts featured beautiful women and natural beauty spots .\ncaretakers of abraham lincoln 's tomb are on the defensive over an unflattering critique in national geographic magazine . the timing of a ceremony wednesday in springfield to mark his death is awkward because illinois faces a financial crisis . gov. bruce rauner has proposed eliminating the state historic preservation agency that manages sites including the tomb as it currently exists . he would roll the agency into another department . what 's more , the popular tourist site was pilloried in this month 's issue of national geographic as having ` all the historical character of an office lobby '\nsouthampton face hull city on saturday in the premier league . ronald koeman 's side are seventh in the table on 53 points . koeman wants his side to win games and make europe . the saints have failed to score in five of their last nine league matches . sadio mane could be recalled to the side to face hull .\ncharlene fritz was on an expedition to snow hill island , antarctic peninsula . she was surprised when a baby elephant seal came out of the water for a cuddle . the seal pup is thought to have been no more than two months old . ms fritz struggled to sit upright under the 200lbs weight of the seal pup .\ntori hester , 25 , was diving in cabo pulmo , mexico , when the huge school of trevally fish began circling above her . husband jeff , 26 , was on hand to capture the incredible moment using his underwater camera . ' i was awe-struck . i had never seen anything like that before in my life , ' he said .\nboxer david haye was stopped at dubai international airport on arrival . he was accused of fraud after writing a cheque as payment for a new property . haye , 34 , was reportedly held in a police cell and released the same day . he has been unable to leave dubai and missed a mixed martial arts event . he said the ` bounced ' cheque was down to an administrative error .\nbrendan rodgers is looking for his first piece of silverware at liverpool . he believes cup glory would help his players develop a winning mentality . liverpool face aston villa in the fa cup semi-final on sunday . rodgers has an indifferent record against villa since arriving at liverpool .\nbayern munich host porto in the champions league on tuesday . pep guardiola 's side lost 3-1 away at porto last week . bayern are 12 points clear at the top of the bundesliga . the german champions are also in the german cup semi-final . guardiola has revealed that ` only the treble is enough ' for his team .\nadam galloway left his # 499 nikon d5200 camera on the seat on a flight to prague . he found it for sale on ebay with just 35 minutes left on the auction . the seller begged him not to report him and said he would lose his job . police raided his home and found the camera and he was arrested . fernando miguel andrade viseu pleaded guilty to theft and drug offences .\nmore than a third of nhs trusts are considering rationing some types of surgery . several have admitted they may impose ` eligibility ' rules for obese patients . the criteria for accepting patients for operations would be based on their body mass index . procedures affected include varicose vein treatment , hip and knee replacement , and breast reduction surgery .\nsherrell dillion has been given a place in the top model of colour final . but the single mother-of-two says she is currently homeless . she says she has nowhere to live following a mice infestation . sherrell starred on benefits street alongside white dee .\nfifi m. maacaron , 36 , is a pharmacist and natural skincare expert . she has created over 100 products that can be concocted in your kitchen . her book , natural beauty alchemy , contains over 100 ingredients . uses full-fat cream cheese in a face mask to quench the skin .\nfarmer captures moment duckling grooms a lamb 's woollen coat . duck begins pecking at the lamb 's head and neck as if grooming its coat . the lamb appears to be enjoying the attention before dropping to the ground . owner said the pecking is a ` heartwarming sign of trust and friendship '\nmaglev train breaks world record with speed of 603 kilometers per hour . japan railway train covered 1.8 kilometers in 10 seconds . china has the world 's fastest maglev train , at 431 kilometers perhour . japan railways is testing maglev for a planned route between tokyo and nagoya .\ngps in alderney , guernsey , have been suspended over four deaths . dr rory lyons was suspended by the medical practitioners tribunal service . his private surgery was raided by police following ` suspicious deaths ' karen cosheril , 52 , died of pneumonia and colin cosherill , 63 , died in may .\nkevin pietersen will start batting for surrey on monday . the batsman has not played in the lv = county championship since 2013 . pietersen has been thrown an apparent lifeline by incoming ecb chairman colin graves . alastair cook was coy on pietersen 's chances of a recall . peter moores said he ` is n't on the radar ' .\nsam reese , 22 , appeared on channel 4 's first dates show . he asked his date to split the bill with him rather than pick up the tab himself . the male model received death threats over his behaviour on the show . sam insisted that the show was ` edited ' to make him look ` bad '\nlois lilienstein , co-star of `` sharon , lois & bram 's elephant show '' dies at 78 . her son says she died peacefully from a rare form of cancer . the canadian preschool show ran on nickelodeon from 1984 to 1995 . lilien stein was born in chicago in 1936 .\nfive customers reported ` thermal incidents ' in the holden colorado . the models said to be affected were made in thailand between september 2013 and january 2015 . holden issued a stop delivery notice to car dealers and urged owners of the colorado - suv or ute - to have their cars checked out immediately . this latest safety issue makes holden the most recalled car brand in 2015 , with five recalls in only four months .\nnumber of gps from abroad is up by 11 per cent in a decade . foreigners now account for almost one family doctor in five . senior doctors say number will rise further over next few years . nhs needs to hire 8,000 more doctors over the next five years .\njack rivera captured the collision on his dashcam as he drove along the interstate 35e in texas last wednesday . footage shows the driver of a black suv , identified as 49-year-old laura michelle mayeaux , coming off at the 397 exit and veering over to the wrong side of the lane . she then steers head-on into a truck which rolls over on its side with debris flying everywhere . police said she was found ` inebriated ' and ` melling of alcohol ' by medics who pulled her from her crushed chevrolet suburban .\nsudan the northern white rhino is the last male of his species . he is guarded by a team of armed rangers day and night . but poachers are targeting him to sell his horn for up to # 47,000 a kilo . rhino horn is used in traditional chinese medicine but is useless .\nsamantha cameron has made her first solo appearance of the general election . she swooped into rochester and strood , the seat held by mark reckless . david cameron has said he wants to kick mr reckless 's ` fat arse ' out of the commons . mrs cameron joined tory candidate kelly tolhurst for a visit to abbey court school in rainham , kent .\na geologist from curtin university in australia has travelled to nepal to study how the indian and eurasian plates are moving together . he said the changes will occur in 50 to 200 million years . this is because the pacific ocean is narrowing at a few centimetres per year , which will ultimately cause america to collide with eurasia . but other continents are also moving towards each other . and using new techniques , researchers can now start examining the changes due to take place over the next tens of millions of years like never before .\nindia is the second largest global cotton grower , after china . record cotton production in 2014 pushed down prices , hurting farmers . vidarbha in eastern india is known as the epicenter of the suicide crisis . government data shows 11,772 farmers committed suicide in 2013 across india .\njulie schenecker , 54 , was convicted last may of shooting her son beau , 13 , and daughter calyx , 16 , in their upscale tampa bay , florida home in january 2011 . now in an exclusive jailhouse interview , she has claimed she pulled the trigger to ` save ' her children , despite previously admitting to authorities that she had shot them for being ` mouthy ' she claimed her son was being sexually abused - but would not say by whom - and that calyx had told her she was suffering from mental illness . but police disputed the claims , saying she had admitted to killing the children for being ` mouthy ' last year , the court also saw pages from her\ntottenham hotspur defeated arsenal 3-1 in the 1991 fa cup semi-final . paul gascoigne scored a 35-yard free-kick that has gone down as one of the all-time great goals at wembley . the goal came five minutes into the match at wembley on april 14 , 1991 .\na 17-year-old girl arrested after her severely malnourished four-month-old daughter was hospitalized will not face criminal charges . the unidentified teenager is a victim and was released on monday from juvenile detention into the custody of county child protective services . police in north las vegas are continuing to probe what they have described as a three-generation case of child abuse involving the girl 's mother , kellie cherie phillips , 38 . the discovery of the couple 's three-year old daughter dead in the back seat of a broken-down car in the garage of a home on wood thrush place . lachaux , an ex-convict , was arrested april 7 and phillips was\nmaura pally , acting ceo of the clinton foundation , apologized . said the charity made mistakes in how it disclosed its donors . said it had ` mistakenly combined ' government grants and donations . also said donations from businessman who was selling his company to russia could not be disclosed under canadian law . comes as hillary clinton opens her presidential campaign . government watchdog said the charity seemed like a ` slush fund ' for the clintons .\nharry redknapp says tottenham have not made any progress this season . former qpr boss says mauricio pochettino has been rescued by the kids . redkn app also criticised the club 's recruitment policy . roberto soldado , erik lamela and paulinho have all struggled .\na red mazda left the road and smashed into the front of a house . the car hit the property with such force it became stuck in the wall . no-one was seriously injured in the crash in crossgates , leeds . police said the occupants of the house had a lucky escape .\nmaundy thursday service will be held today instead of tomorrow . all saints church in wolverhampton will hold weekly drop-in sessions . prostitutes were left disappointed when services were cancelled on christmas day and new year 's day because they both fell on a thursday .\nyale university researchers have revealed subtle differences in sentence structure across the us . click on a location marker in the map below to hear common phrases for each state . in new york , for instance , there 's a tendency to use the word ` so ' for drama . some people in san jose think nothing of saying ` did n't nobody help him ' , while florida residents can be heard using the phrase , ' i ai n't never had no trouble with none of 'em '\naustralian man died suddenly on wednesday after suffering a suspected heart attack . the 50-year-old collapsed just after ordering breakfast at the rooftop restaurant in the tourist town of kuta . he was unable to be revived , but a doctor at the scene said that it was likely he died of a heart attack . it 's believed that he was from seymour in victoria and was holidaying at the bali resort .\njurgen klopp announced he would be leaving borussia dortmund at the end of the season . the german manager has been at the club for seven seasons . he has won two bundesliga titles , the german cup and reached the champions league final . klopp was emotional during the press conference on wednesday .\nmother took 11-year-old daughter to pink concert in december 2013 . father claimed his ex-wife ` abused her parental discretion ' by taking their daughter to the concert . judge lawrence jones rejected the father 's complaint in a 37-page decision . jones said pink 's works can be suggestive , but they are preteen-appropriate . he also quoted lyrics from pink 's songs ` the great escape ' and ` perfect ' as examples of messages for adolescents . the judge also wrote a commentary on the increasing use of judges as referees for warring divorced parents . the parents have joint custody . the girl is now 12 .\nashley pegram , a mother-of-three , went on a date with edward primo bonilla on april 3 after they met online . she was last seen at a gas station in berkeley county , south carolina , at 1am on april 4 . bonilla told her he had kicked her out of his car when she got too drunk . he has now been charged with obstructing justice . pegram 's family said her three children are devastated by her disappearance .\nfloyd mayweather vs manny pacquiao is the biggest fight of the century . the fight will be the biggest financially and most significant this century . it is one of the most anticipated events of the 20th century . joe frazier v muhammad ali was the second ` fight of the century ' in 1971 . the greatest was stripped of his world heavyweight title after refusing to fight in vietnam .\ntwo moving candle-lit vigils held to remember the 900 migrants who died when their boat capsized en route to europe from libya this weekend . people lay candles by the sea in valetta , malta , while an equally emotional memorial service was taking place in rome 's verano cemetery . it came as three other people - including a tiny child - died when a rickety wooden boat ran aground on the greek island of rhodes . the deadliest migrant tragedy on the mediterranean so far took this year 's death toll on the waters to a staggering 1,800 .\na little girl named anya brodie asked michelle obama her age and when obama told her she was 51-years-old the little girl just could n't believe it . the girl yelled in amazement , ` you look too young ! ' a flattered obama asked brodie to repeat her effortless compliment back into the microphone .\nkenyan police commando unit waited hours for transport to garissa , a commando source says . al-shabaab terrorists slaughtered 147 people at a university in garissa on april 2 . kenya 's police chief denies commando team caused any delay in response to the attack .\nengland 's first test against west indies ended in a draw . jimmy anderson took four wickets on day two in antigua . anderson is three wickets away from breaking sir ian botham 's england record . ben stokes was england 's first man to be dismissed on day 2 . jos buttler was dismissed for a duck despite facing 22 deliveries .\nrotherham fielded derby defender farrend rawson in their 1-0 win over brighton . the millers were sanctioned by the football league for fielding an ineligible player . the club will find out their fate at the earliest opportunity on thursday . manager steve evans expects a decision to be made by the weekend .\nthe video was taken at whipsnade zoo in bedfordshire . it shows six elephants walking in single file , with one elephant flanked by a baby . as it reaches the grass , the baby elephant uses its trunk to pick something up . it then breaks the chain between the last two elephants and forces itself into the line .\nstephanie fragoso was stopped in las vegas by a nevada highway patrol trooper . she was issued a $ 200 ticket for putting on lip balm while at a red light . the ticket caused fragoso to receive points against her driving record . the crackdown is part of a campaign for the state to have zero driving fatalities in 2015 .\nukip candidate kim rose accused of ` treating ' voters with sausage rolls . electoral commission rules food and entertainment can not be used to influence votes . mr rose is running for nigel farage 's party in southampton itchen . he branded police involvement as ` absolutely ridiculous ' and ` ridiculous ' today he was seen handing out sausage rolls to members of the public .\nrunnymede , surrey , is the historic site where king john sealed the magna carta . dozens of anarchists have set up a shanty town just yards from the site . they are linked to the occupy london movement that caused chaos in london when they set up camp outside st paul 's cathedral in 2011 .\nsleepy shoppers are banned from taking off their shoes to sleep in ikea beds and sofas . the swedish furniture store has banned the practice in all of its stores in china . one shopper said : ` yes it may affect customers ... but it should n't be too much of a problem '\nbrian williams lied in his reporting to make himself look good at least 11 times , it has been reported . nbc 's nightly news anchor was suspended for six months after lying about being on a military helicopter hit by a rocket-propelled grenade in iraq . investigation also found he lied about seeing a body floating through new orleans during hurricane katrina . williams has been banned from speaking publicly about the investigation .\nthe duchess of cornwall has launched her own honey . it is produced in late spring by the bees in her wiltshire garden . just 250 jars are being produced , at # 20 each , with all proceeds going to charity . sales of high-end versions are up by 45 per cent at selfridges .\nnorthampton face saracens in the premiership on saturday . saints have been in poor form after recent defeats to clermont and exeter . tom wood says saracen have ` smelt blood ' in recent weeks . harlequins winger ugo monye is hanging up his boots at the end of the season .\nfootage has emerged of drunken group of yobs on a flight from glasgow to alicante . witnesses said group drank heavily and abused fellow passengers and airline staff . one man was escorted from the plane after it landed in spain and banned from flying back . the men were heading for a stag party in spanish resort of benidorm .\nshrinking space on planes is putting our health and safety in danger . consumer advisory group says government does n't stipulate minimum space . tests conducted by faa use planes with a 31 inch pitch , a standard which on some airlines has decreased . many economy seats on united airlines have 30 inches of room .\nfinder.com.au money and real estate expert michelle hutchison says there are easy ways to improve the look and feel of your home . she says changing the door handles , painting the walls and de-cluttering the wardrobes can add thousands to your sale . ` tidying up and organising your storage spaces will always add value to any home , ' she said .\nchelsea host arsenal in premier league on sunday . cesc fabregas will be making his first return to the emirates since leaving in 2011 . the spaniard is expected to wear a protective mask when he travels to north london . fabrega joined arsenal as a teenager before joining barcelona .\np-22 was found in crawl space under house in los feliz , la. . workers discovered him at noon on monday - and he has refused to move . animal welfare workers have tried everything from poking him with a prod to firing tennis balls and bean bags at him . p-22 is best-known for being pictured in front of the hollywood sign in 2013 .\nclip shows 100 metre-wide black ring of smoke floating over clear skies in kazakhstan . it was filmed on saturday in shortandy village , 40 miles north of the capital astana . the video captures the cloud hovering in the sky for 15 minutes before vanishing . youtube users have suggested the cloud was caused by an alien spacecraft .\nformer manchester united defender paul parker 's passport was listed on ebay for # 5,000 . the item was listed earlier in march and bidding ended on tuesday . parker played for manchester united between 1991 and 1996 . he also made 19 appearances for england . the seller of the passport said he was open to offers .\ntottenham will travel to malaysia for a post-season friendly in may . spurs will play a malaysia xi in the aia cup before taking on sydney fc . harry kane could miss under 21 european championship . mauricio pochettino fears for kane 's fitness ahead of next season . kane captained england in 0-0 draw with burnley on sunday .\ncarwyn scott-howell plunged 160ft to his death in flaine , france , while skiing . state prosecutor pierre yves michau said death was ` tragic accident ' with no one to blame . carwyn 's family were expected to bring his body home this weekend .\nthe average briton enjoys 884 cups of tea each year , a survey has found . yougov poll of more than 2,000 britons revealed that we consume an average of 17 cups oftea each week . those aged 55 and over typically enjoy 21 cups of tea a week .\nthere is an insufficient supply of whooping cough vaccine in australia , according to queensland health . the adult whooping coughing vaccine will not be available in australia until july . it comes less than a month after the death of 32-day-old riley hughes who died after contracting whooping . his parents catherine and greg are now leading a campaign , urging adults to vaccinate themselves and their children to prevent more infant deaths from the terrible disease .\nformer midnight oil lead singer , former politician and passionate environmental activist peter garrett is listing his home in randwick in sydney 's affluent eastern suburbs . the 62-year-old has lived at the thoughtfully restored home for almost five years with his wife dora and three daughters , emily , grace and may . the property has been exquisitely renovated and ` achieving a beautifully balanced blend of period charm and contemporary touches , ' according to belle property randwick . the three bedroom terrace is set over two levels with a beautiful balcony off the master bedroom , looking out onto the street . the garretts live just a short distance from 101 acres of greenery at\nnigel farage attacked the high cost of health service treatment for foreigners with hiv in thursday 's general election debate . ukip leader was accused of ` dangerous scaremongering ' but latest official figures show more than half of those newly diagnosed with hiv were born overseas .\ncara newton , 32 , from fleet , hampshire , was diagnosed with ewing 's sarcoma in 2009 . she had to undergo several rounds of chemotherapy which doctors said would destroy her fertility . after ivf failed , the couple feared they would never become parents . but 10 months later they were astounded to discover mrs newton had become pregnant naturally with baby sebastian , who was born last april .\ntim howard insists europa league is not to blame for everton 's poor season . everton could finish in the bottom half of the premier league for the first time since 2006 . the merseyside outfit played 10 games in europe this season before being knocked out by dynamo kiev . aaron lennon scored for everton but jonjo shelvey equalised for swansea .\nafrican lion cub kibulu was abandoned by his mother at nsw zoo . he was taken to zambi wildlife retreat in western sydney . he has slept in director donna wilson 's bed since he arrived as a three-week-old cub . kibulus is one of 23 lions in donna 's care at the sanctuary . zambi is a sanctuary for retired , old , injured and homeless animals .\namir khan has announced he will fight chris algieri at welterweight on may 30 . the bolton fighter had been linked with bouts against adrien broner and keith thurman . khan hopes to fight in algieri 's home city of new york next month . the 28-year-old has previously said he wants to fight floyd mayweather or manny pacquiao .\nallied troops landed at anzac cove in gallipoli on 25 april 1915 . the campaign was one of the most ill-conceived in world war i. almost 400,000 allied soldiers were killed in the disastrous campaign . thousands have gathered at gallipoli to mark the centenary .\nthe 41-year-old woman was beaten and robbed on a chicago train on monday . deshawn isabelle , 15 , allegedly punched the woman in the head from behind and dragged her to the ground by pulling on her hair . he then sexually assaulted her and stole $ 2,000 in cash , prosecutors said . the teen 's mother recognized his face in surveillance photos released by the cta following the brutal attack . he was charged as an adult with aggravated sexual assault and robbery .\nhannah campbell was blown up in iraq in 2007 after mortar bomb hit building . shrapnel damaged her womb and left her with a broken leg and eye . doctors told her she would never conceive again but she gave birth to lexi-river . but when lexi was ten days old , miss campbell suffered excruciating stomach pain . she was rushed to hospital and diagnosed with a mystery condition . she has since split from long-term partner anthony mcmorrow . miss campbell is now having tests to see if she has a rare stomach to ulcer .\ncarbon capture and storage -lrb- ccs -rrb- is a way to cut greenhouse house emissions . it involves capturing carbon released by burning fossil fuels . ccs can be stored in porous rock layers in areas such as depleted oil and gas reservoirs . but there are concerns over storing such huge amounts of carbon underground . a report suggests that carbon dioxide produced by burning fossil fuels could be captured and used to produce the fizz in cola .\nserafim todorov beat floyd mayweather in the featherweight division at the 1996 olympic games in atlanta . the 45-year-old now lives in a remote town in bulgaria and lives on a # 370-a-month hand out from the bulgarian government . mayweather is preparing for one of the biggest fights in boxing history against manny pacquiao in las vegas on may 2 .\nla-sonya mitchell-clark of youngstown , ohio , found out her birth mother was francine simmons on facebook . the ohio department of heath released birth records for people born between january 1 , 1964 , and september 18 , 1996 , last month . mitchell - clark found out that her mother worked at the same call-center operation company as her .\nlhc is the largest particle accelerator in the world . it is the result of decades of research at cern in switzerland . it will recreate conditions after the big bang . scientists hope it will reveal new information about the universe . . the lhc generates up to 600 million particles per second .\nciudad real airport was built in 2009 at a cost of more than $ 1billion . but it was closed three years later when its parent company fell into financial difficulties . judge in charge of its administration ruled that it should be sold off . there has been no takers and there is now no minimum asking price .\nthe photos were taken on the frontline of fighting in the countryside outside the rebel-held city of aleppo . they show the prisoner wearing an orange jumpsuit being forced to his knees before being shot . isis released the disturbing photographs on the same day as they bizarrely attempted to portray everyday life under the terror group 's control as happy and carefree .\nluke shaw was substituted at half time against arsenal in the fa cup . louis van gaal told the # 28million defender he was not fit enough to play . shaw has not played since and was withdrawn from the england squad . the left back is struggling to come to terms with his new life at old trafford . he has turned to united 's psychologist to declutter his mind .\nmanchester united loan star radamel falcao has scored only four goals this season . the colombian is expected to leave old trafford in the summer . juventus have ruled out a move for the 29-year-old striker . serie a champions are interested in paulo dybala and edinson cavani .\na fight broke out on a rubber dinghy carrying more than 100 african migrants from libya to sicily . witnesses say 12 men ` professing the christian faith ' were thrown to their deaths . 15 muslim men have now been arrested on suspicion of ` multiple aggravated murder motivated by religious hate '\na u.s. navy helicopter was flying over the persian gulf when it came within 50 yards of an iranian observation aircraft , a u.s. official says . the incident troubled u.n. officials because it could have triggered a serious incident , the official says , and because iranian forces have been conducting operations in the region in a professional manner .\nreading fan charlie sumner staged a one-man pitch invasion at the stadium . the 20-year-old ran onto the pitch during their fa cup quarter final replay . he did four front flips on the pitch , landing on his back each time . sumner is now facing a potential three-year ban for carrying out the stunt .\na 124-pound mother of four eats 13 pounds of steak in 20 minutes . molly schuyler beats four other teams of two at big texan steak ranch in amarillo , texas . she also breaks her own record of two 72-ounce steaks and sides .\nconsumers could soon have to pay goods and services tax -lrb- gst -rrb- on their movie and music downloads . treasurer joe hockey said the states had agreed to work toward applying the 10 per cent gst to movies and music downloaded from streaming services such as netflix and apple . the changes may also affect consumers buying any products for less than $ 1,000 online from overseas , thus affecting companies such as google , microsoft , amazon and ebay .\nflorent malouda has named his #one2eleven side for sky sports ' fantasy football club . the former chelsea winger has picked players from chelsea , guingamp and the france national team . malouda picked petr cech to start in between the sticks for his fantasy xi .\nduchess of cambridge 's uncle gary goldsmith took to twitter to express his anger . he said cyclist who ran over his dog cheech left him ` left for dead ' mr goldsmith posted a picture of the man he claims was responsible on his twitter feed . he has vowed to make it his ` personal mission ' to find the man . cheech is being treated by bruce fogle , father of tv presenter ben .\nbath face leinster in champions cup quarter-final on saturday . george ford , dave attwood , jonathan joseph and anthony watson all return to the scene of the 19-9 defeat by ireland last month . bath coach mike ford believes their experience will be beneficial .\nfca investigation found ` serious failings ' in the way clydesdale handled complaints . staff deleted records and tampered with evidence to make it look like customer was never sold ppi . politicians called for a police investigation into the wrong-doing . clydesdal has so far set aside just over # 1billion to compensate customers .\nthe agreement between iran and the west aims to prevent tehran making a nuclear weapon in exchange for phased sanction relief . president hassan rouhani has pledged to abide by the commitments of the deal . he said : ` the world must know that we do not intend to cheat ' the deal promises to end years of crippling sanctions against iran .\nbaltimore police hand over files on freddie gray 's death to prosecutors . no reports will be made public , police commissioner says . the mayor says she does n't want to `` seek justice for optics '' the gray family 's attorney says the family understands the process and was warned to be patient .\nmaureen mcdonnell was found guilty of accepting more than $ 165,000 in gifts and loans from former star scientific inc. . ceo jonnie williams . her attorneys argued monday in a 101-page court filing that mrs mcdonnell 's public corruption conviction should be overturned because it was based on an overly broad definition of bribery . she and her husband , former gov. bob mcdonnell , were convicted in a joint trial in september . bob was sentenced in february to two years in prison and his wife to one year and one day , but they remain free while they pursue separate appeals .\nmanchester city are chasing valenciennes defender dayot upamecano . the 16-year-old almost joined manchester united in the january transfer window . man city face aston villa at the etihad stadium on saturday . monaco , inter milan and paris st germain had also expressed interest .\nmonaco vice-president vadim vasilyev claims manchester united are yet to decide whether they will sign radamel falcao on a permanent deal in the summer . colombia striker falcaos joined united on a one-year loan deal in september . the striker has failed to shine during his time at old trafford .\na federal judge has ordered the irs to hand over a list of the 298 tea party organizations that it targeted when they applied for nonprofit tax-exempt status . the decision means right-wing groups are a step closer to being allowed to pursue a class-action lawsuit against the irs . the agency has admitted playing political favorites with the tax code beginning in 2010 , when it began applying extra scrutiny to groups with red-flag words like ` patriots ' or ` tea party ' in their names . while those organizations ' applications were held up for years , liberal groups sailed through the process .\nhaim kaplan captured the hilarious moment a group of baboons robbed a supply truck of its snacks . the 40-second-video was recorded by haim kaplan at the ngorongoro conservation area in tanzania . the driver is forced to retreat as one makes a lunge at him and another jumps into the back of the truck .\ndc entertainment , warner bros. and mattel announce a partnership to launch dc super hero girls . the initiative will include online content , toys , books and tv specials . the first elements will roll out in the fall . some critics say it 's another way of keeping girls separate .\nthe italian-inspired mansion in the mountains of vail , colorado has gone on sale for $ 29.5 million . it was built in 2008 using materials from the homeowner 's trips to italy . the estate has eight bedrooms and seven bathrooms , as well as a pool , gym , indoor basketball court and home theater . it also has a 1.5-mile driveway , which took two years and a team of engineers to build .\nsculpture of world 's smallest woman disappeared during photo shoot . jonty hurwitz is an entrepreneur who co-founded wonga , a $ 500 million finance site . his nano-scale sculptures are made from a mysterious resin , `` a big scientific secret ''\ngary cahill has won four cups with chelsea since joining the club in 2012 . the defender is yet to win the premier league with the blues . chelsea host manchester united in the league on saturday . cahill believes chelsea learnt some lessons from last season 's title disappointment .\nandreas lubitz crashed germanwings flight 9525 , killing all on board . david perry : his case raises larger issues about people with mental illness and stigma . he says we need to understand mental illness as an illness and not a personal failing . perry : we need policies in place that encourage more openness without the severe repercussions .\nrelationship expert susan pease gadoua says traditional weddings set people up for failure . she says a renewable marriage contract would work better for many couples . a starter marriage is a short-term contract for couples to ` try on ' the institution to see if it fits .\naustralian families have a ` million and one ' things to do in the morning . a study of 2.3 million parents has pinpointed 7.35 am as the most hectic , frenzied time of day in australian households . breakfast is the top priority for parents , with an average of 140 hours spent making breakfast each year . aussie kids eat nut spreads 6.7 times a week .\nbeing underweight in mid-life could increase your risk of dementia , claim researchers . underweight people are a third more likely to be diagnosed with diseases such as alzheimer 's than those of a healthy weight . obese people appear to be protected against dementia , with a risk around 30 per cent lower than those .\nthe 79th masters gets underway at augusta national on thursday morning . tiger woods returns to action for the first time since february . rory mcilroy will be hoping to complete career grand slam . bubba watson is the defending champion . rorymcilroy and tiger woods will be among those in action .\naustralian prime minister tony abbott thrilled players at a sydney australian rules football club function by skolling a beer . mr abbott was asked to have a drink by university of technology sydney bats coach simon carradous . it appeared to take the prime minister about six seconds to down the schooner , as players cheered and chanted ` skol ' and ` tony '\ncomedian dom joly jumped from a yacht in the volvo ocean race . the 47-year-old joined the six-strong fleet for the sixth leg of the race . he was trained in diving by olympic medallist tom daley for tv show splash !\nteenage daughter of assassinated russian opposition leader dina nemtsova , 13 , has made her debut in a photoshoot with fashion label yulia prohorova white zoloto . appeared alongside her mother and nemtsov 's partner , ekaterina odintsova . mother hopes new career will help her overcome death of her father who was shot dead near kremlin in february .\nmi5 has issued an alert over the threat posed by rogue workers in britain 's nuclear , transport and public services . concerns raised after suicide pilot andreas lubitz killed 150 people in alps plane crash disaster . mi5 is now giving advice on the risk posed by thousands of employees working in sensitive areas .\nmary schuyler won the 72-ounce steak dinner challenge at the big texan steak ranch restaurant in amarillo , texas on sunday . the 120-pound mother-of-four finished the meal in just 20 minutes , beating the previous record of four minutes and 48 seconds . schuylers competitors were allowed to split their dinners , but none came close to winning .\nphiladelphia-based artist and journalist alison nastasi has collated a collection of intimate portraits featuring well-known artists with their furry friends . featuring the likes of henri matisse , salvador dali , georgia o'keefe and many others , the book allows an intimate insight into the private lives of many great artists .\nwales beat israel 3-0 to reach their highest-ever ranking of 22 in the fifa world rankings . gareth bale scored twice as chris coleman 's side won their euro 2016 qualifier . england have climbed three places to 14 after beating lithuania and italy . brazil have risen to no 5 in the world , switching places with holland .\nstephanie scott 's funeral will be held next wednesday in her home town of canowindra . the parish priest officiating at the ceremony is bracing himself for a hugely emotional occasion . reverend jonno williams is the parish priest of the anglican-uniting church at canowindra . he knows the family well and is expecting it to be a tough day for everyone . ms scott went missing on easter sunday and her burned body was found last friday .\nbali nine ringleaders andrew chan and myuran sukumaran will find out if their last-ditch legal appeal against their death row sentence will be allowed to proceed on monday . a jakarta court is due to decide whether the pair 's lawyers can challenge indonesian president joko widodo ' 's decision to deny the two australians clemency . the unusual appeal in the state administrative court is likely the pair 's last legal avenue to save them from the firing squad . the court in february rejected their legal challenge for clemencies , determining the decrees by president widodo were not within its jurisdiction . if it overturns this decision on monday , lawyers will then argue mr joko\nchelsea beat manchester united 2-1 at stamford bridge on saturday evening . eden hazard opened the scoring for chelsea with a low shot past david de gea . the blues are now just two points behind manchester united in the premier league table . jose mourinho 's side will win the title if they beat arsenal next week .\ntesco chairman john allan says david cameron 's promise of in-out referendum is wrong . he claims the tory leader 's decision to promise it before knowing what powers can be clawed back from brussels means the ` cart is very firmly before the horse ' he suggests large firms like the supermarket giant could move their head offices from london to other sites in europe ` relatively painlessly '\ncarla suarez navarro beat andrea petkovic 6-3 , 6 - 3 in the miami open semi-final . the 12th seed will play either serena williams or simona halep in saturday 's final . it 's the eighth time that suarez navaro has reached a wta final .\nqueen 's staff at windsor castle have voted for industrial action in pay dispute . union says wardens are asked to carry out extra duties for free including giving tours . public and commercial services union says workers earn as little as # 14,700 a year . union claims queen and royal family should not ` abuse the -lrb- workers ' -rrb- goodwill by not properly rewarding them '\nastronomers detected the complex organic molecules in a disc of gas around an infant star 455 light years away where planets are likely to be forming . discovery is a boost for finding alien organisms and suggests the conditions that spawned life on earth are not unique to our solar system .\nphylise davis-bowens , who attended bethune-cookman university in daytona beach , florida , in 2009 , is suing her former college . she claims she was not allowed to try out for the 14 karat gold dancers because of her weight . the 42-year-old woman said she lost 16lb in a month to tryout for the dance troupe but was still denied an audition . she went on to lose 60lb in around a year .\nnumber of allergy sufferers is soaring and almost half live in daily fear of suffering a potentially fatal reaction . yet many britons are unaware of the seriousness of the condition , says study by charity allergy uk . poll of more than 2,000 adults reveals that over two thirds would not know how to help if they saw someone suffering an allergic reaction .\njurors find dzhokhar tsarnaev guilty of all 30 counts in the boston marathon bombing case . the jury will now decide whether he will face the death penalty . the start date of the penalty phase has not yet been set . the defense argued that tsarnaev 's older brother , tamerlan , was the instigator .\neducation minister smriti irani was visiting a fabindia outlet in the tourist resort state of goa . she discovered a surveillance camera pointed at the changing room , police say . four employees of the store have been arrested , but the manager is still at large .\nintruder ` immediately ' apprehended by uniformed division of secret service . unnamed person is in custody in washington dc and charges are pending . it is not known what the package contained or why it was climbed . latest in a string of security breaches to hit the us capital .\nharry kane tops ea sports ' performance index after weekend 's premier league action . tottenham striker scored his 30th goal of the season in 3-1 win at newcastle . kane is also nominated for the pfa young player of the year award . christian eriksen is second in the rankings after scoring vs newcastle . chelsea 's eden hazard completes the top three after scoring against manchester united .\nnasuwt officials say the ` hospital waiting-room-style ' signs are needed . rising numbers of staff are subjected to swearing and physical attacks . some 82 per cent of 3,500 nasu wt members polled were verbally abused by pupils in the last 12 months .\nvictoria police are searching for the man who robbed a service station dressed as a woman . the armed robbery took place in watervale on monday night . the man approached a female shop assistant with a fake machine gun . he demanded the money from the till and made his exit from the store .\nnew york city researchers studied neolithic ornaments to understand how farming spread . they found that northern europeans rejected the practice of farming . this was despite farming being spreading throughout the rest of europe . their findings show a bump in the road in the adoption of farming , which enabled groups of people to move away from foraging and hunting as a means for survival . the findings may also force a complete rethink about how agriculture first arrived in britain . scientists recently discovered that stone-age hunter gatherers in england were trading with continental wheat farmers 8,000 years ago - long before agriculture came to britain .\nthe 16-year-old ordered the deadly toxin off the ` dark web ' in manchester . he was unaware his online requests were being tracked by counter-terrorism officers . the teenager pleaded guilty to trying to buy the toxin at manchester youth court . but he claimed he was attempting to buy poison because he wanted to commit suicide . he has been spared jail and given a 12 month referral order .\nchristopher swain swam in the gowanus canal in brooklyn on wednesday . the 1.8-mile waterway has been designated as especially polluted by the epa . swain gargled hydrogen peroxide to fight against any bacteria in the water . he quit two-thirds of a mile into the swim because of bad weather . the activist said the water tasted ` like mud , poop , ground-up grass , detergent and gasoline '\nformer saturday night live cast member gary kroeger announced tuesday that he is running for congress in iowa . kroeger said he will run in the 2016 democratic primary for iowa 's 1st district . the 57-year-old iowa native says he wants to focus on progressive policies , such as investing in education and protecting the environment .\niran has sent two warships to the waters off yemen amid conflict . alborz destroyer and bushehr support vessel sailed from bandar abbas to gulf of aden . military bosses claim move is designed to protect iranian shipping from piracy . comes as saudi arabia continues to lead bombing campaign to oust houthi movement . washington has accelerated moves to supply weapons to the saudi coalition .\nrichie benaud was the voice of cricket for generations . he played in 64 tests and captained australia to world dominance in the 1950s . benaud began broadcasting for the bbc while still a player in 1963 . he was forced to retire from the commentary box in 2013 .\nscuba girls margo sanchez and stephanie adamson have been taking selfies with marine animals for the past decade . they mount a gopro camera to the end of their selfie stick and take pictures with everything from turtles to sting rays . the pair have travelled to papua new guinea , the maldives and virgin islands for their incredible underwater photos .\nmayor of hartlepool stephen akers-belcher was given paid leave to attend a funeral . but he was pictured on board hms warrior instead , 323 miles away . akers belcher claims he was sacked for whistle blowing . but newcastle city council said the allegations were investigated by the council and police but no further action was taken .\nzapping brain with mild electric current can boost creativity by nearly eight per cent , say researchers at the university of north carolina . they tested their theory using a 10-hertz current run through electrodes attached to the scalp on 20 volunteers . the current was used to stimulate the brain 's natural alpha wave oscillations . these oscillations - or the lack of them - are linked with depression .\namanda holden , 44 , is on the cover of good housekeeping 's june 2015 issue . she talks about her traumatic childbirth experiences and therapy . reveals she has found peace with not having another child . revealed she has been getting collagen treatments to maintain her youthful appearance . her sister deborah is currently caught in the chaos of the nepal earthquake .\nruben blundell , 6 , helped deliver his little brother theo , who was four days overdue . his mother michelle madden , 30 , went into labour in the middle of the night . left with no time to get to the hospital , the family had to deliver the baby at home . ruben assisted in the birth by fetching towels and even telling his mother to breathe .\nlisa williams hit taxi driver david coleman three times with hammer during street fight . she found her brother and victim brawling in the street and went to confront him . williams , 49 , jailed for 30 months after being found guilty of maliciously wounding mr coleman . court heard the two families had been ` neighbours at war ' since 2007 .\nukip deputy chairman suzanne evans says she would step in if farage quits . but she played down his medical problems , saying : ` his health is fine ' mr farage is suffering from a recurring spinal injury and is on medication . he has also pledged to be ` gone within 10 minutes ' if he fails to win in thanet south .\ndenise and glen higgs , from braunton , devon , had all but lost hope that they would ever be able to conceive . glen was made infertile after testicular cancer treatment at the age of 20 . doctors created eight embryos using his frozen sperm and the couple had a daughter mazy , born three years ago . the couple tried again using the same batch and denise gave birth to twins carter and carson last week .\nthe ` very blokey joke book ' by jake harris was displayed in the high street brand 's menswear department . it contains a quip about a man watching his wife being beaten up by friends . shocked twitter users branded the joke ` horrific ' and ` staggeringly offensive ' river island has apologised for the offence caused .\nbronze sculpture of yu the great 's wife has been in place for ten years . it depicts the founder of china 's first xia dynasty meeting his wife . officials in wuhan , central china , say tourists have damaged the sculpture . they say tourists keep touching the hand , fox 's back , and wife 's breast .\njamie jewitt , 24 , and henry rogers , 22 , both admit their self-esteem was at rock bottom . jamie weighed 15st before his 15th birthday and was so self-conscious he barely posed for photos . henry , from ealing , reached 18st at his heaviest and went on a strict diet . after shedding the pounds , he landed a job at abercrombie & fitch and now models .\ncrystal palace beat sunderland 4-0 at the stadium of light on saturday afternoon . glenn murray opened the scoring for alan pardew 's side in the 48th minute . yannick bolasie scored a hat-trick in the second half to seal the win . connor wickham scored a late consolation for the black cats .\nthis year has seen a surge in transgender visibility . president obama used the term in a state of the union address . transgender actress laverne cox was cast in a new cbs drama . bruce jenner , who has undergone a gender transition , is on the cover of vanity fair .\nmartin odegaard could have become real madrid 's youngest ever player . the 16-year-old was named among the substitutes for the la liga win . real beat almeria 3-0 at the bernabeu on wednesday night . the norweigan international joined the champions league winners in january for an initial # 2million fee .\nkylie leuluai is facing another six weeks on the sidelines . the leeds prop has been told he needs shoulder surgery . the 37-year-old has not played since the super league leaders ' only defeat at warrington a month ago . coach brian mcdermott says his injury has now been properly diagnosed .\n25-year-old man left brain damaged as a baby after blunder by doctors . he was born at luton and dunstable hospital in september 1989 . maternity staff failed to administer vitamin k injection shortly after birth . vitamin k helps blood clot and prevent internal bleeding . he now requires 24-hour care and will do for the rest of his life .\neva chapin , 34 , from west linn , oregon , was booked into jail . she left a string of offensive post-it notes on the door of the family home . the qualified nurse referred to the residents as ` n ***** ' but wrote : ' i am not racist ' chapin was arrested on tuesday and charged with two counts of intimidation and harassment .\nminister of state for external affairs v.k. singh is spearheading the rescue exercise . the former army chief is currently staying in djibouti for over a week . he tweeted last night in response to a channel quoting him saying that he found the evacuation assignment less exciting than his recent visit to pakistan high commission . opposition demands an apology from singh .\noscar hübinette shreds through the snow on the tolbachik volcano on the kamchatka peninsula in russia . adventure photographer fredrik schenholm looked on in amazement as oscar flew down the icy slopes . the volcano erupted in november 2012 , spewing lava down the mountainside .\ndallas county grand jury declines to indict officers in fatal shooting of schizophrenic man . jason harrison , 39 , was shot five times after his mother called police for help getting him to the hospital . officers john rogers and andrew hutchins wo n't face criminal prosecution . harrison 's family is still suing the officers for wrongful death .\nchester , a six-year-old pit bull mix , was found as a stray and had been living in shelters in new york state since 2010 . he was housed at the north fork animal welfare league on long island . a picture of him with a sign around his neck asking ` why does n't anybody want me ? ' was shared on facebook and received 6,000 shares . he has now been adopted by a family with two sons from new york .\nkaren buckley , 24 , was last seen leaving a glasgow nightclub on sunday morning . she told friends she was going to the loo but failed to return and did not take her coat . cctv footage shows her talking to a man outside the sanctuary club . police have traced the man she was seen with and he is ` helping police with inquiries ' her parents have flown to scotland to help with the search for the student .\nvictor agbafe is a student at cape fear academy in wilmington , north carolina . the 17-year-old got into 14 schools in all . he hopes to become a neurosurgeon one day . harold ekeh of long island was also accepted into all eight ivy league schools .\nbrenna happy cloud of salem , oregon , found herself locked out of her facebook account last week . she was prevented from continuing to use her unusual name on the social media platform . for five days she received the same message every time she attempted to logged in . facebook 's helpdesk eventually contacted happy cloud and asked for proof of identity and even a copy of her social security card .\nsouth carolina teenager was told to remove make-up for her id photo . chase culpepper , 17 , was born male but identifies as female . she regularly wears makeup and androgynous or women 's clothing . after a legal battle , the state dmv has agreed to change its policy . agency employees will also get training on how to handle transgender customers . culpeppers said : ` my clothing and makeup reflect who i am ' .\nman utd came from behind to beat manchester city 4-2 on sunday . daley blind says wayne rooney 's team talk inspired the win . the dutchman insists united must focus on the end of the season . united face chelsea in their next premier league match on saturday .\nactor aidan turner , 31 , has been seen topless scything in poldark . but experts say the scene tarnished the image of the ancient art . they say he should have kept his shirt on to protect himself from sun . scything expert chris riley says he 's more like rocker iggy pop . female fans take to twitter to complain about the actor 's lack of shirt .\narsene wenger 's young gunners take on stoke city at the emirates stadium on tuesday night . jack wilshere , mikel arteta and abou diaby are set to feature for arsenal under 21s . teenage winger serge gnabry is also set to take part alongside a talented crop of youngsters , including dan crowley .\nthree planets orbit star hd 7924 at a distance closer than mercury orbits the sun . they complete their orbits in just 5 , 15 and 24 days . discovery shows the type of planetary system that astronomers expect to find around many nearby stars in the coming years . the automated planet finder -lrb- apf -rrb- consists of a 2.4-metre automated telescope and enclosure . it uses a high-resolution spectrograph to measure starlight in a rainbow of colours .\niona costello , 51 , and daughter emily , are in good health , police said . the pair were found at 3am by nypd officers in upper west side . they were visiting manhattan when they went missing on march 30 . iona 's husband died in 2012 from a heart attack . she is believed to have been ` under a lot of stress ' because of a legal battle with four of his five adult children from previous marriages .\nthe usa women 's soccer team have unveiled their new kits for the world cup hosted by canada in june . the strips , produced by sportswear giants nike , have caused a bit of stir across the pond , because of the decision to go with a black and white colour scheme . striker alex morgan hailed nike 's design as innovative .\nphiladelphia beat new york city fc 2-1 in stoppage time to win first mls game of the season . david villa scores for nyc but could n't prevent a defeat . lloyd sam scores in the 90th minute to rescue a 2-2 draw for the red bulls at dc united . sanna nyassi scores the only goal as san jose beat mls-leading vancouver . giles barnes scores as houston dynamo beat montreal impact 3-0 .\ntns survey shows the snp has almost doubled its lead over labour in a month . 52 per cent now backing ms sturgeon with only 24 per cent of scots planning to vote for mr miliband . the snp surge since the independence referendum puts labour on course to lose dozens of seats .\narsenal beat reading 2-1 in the fa cup semi-final at wembley on saturday . arsenal forward alexis sanchez scored the winning goal for the gunners . gary lineker , alan shearer , jason roberts and ian wright fronted the bbc 's coverage at wembley .\nnigel farage has revealed his preparation technique for tonight 's election debate . he said he wanted to ` keep his mind as clear as possible ' before the two-hour live tv showdown . but he admitted that he would break his drink ban at 6pm before heading into the studio for the showdown against britain 's six other political party leaders .\nchina says it has seized 43.3 tons of illegal narcotics in six-month anti-drug campaign . authorities also handled 115,000 drug-related crimes and 606,000 cases of drug use . nine police officers died and another 657 were wounded in the mission , with 76 severely wounded .\nat least 15 people were injured in the explosion at the fresno county sheriff 's gun range . the explosion happened on a pacific gas & electric co. pipe carrying natural gas . it happened while an equipment operator and a group of county jail inmates were expanding a road alongside highway 99 , according to authorities . the flames shot well over 100 feet into the air , witnesses said .\nufc star ronda rousey attended fast & furious 7 premiere in hollywood . rousey 's mma skills are used to full effect in the latest film . the ufc bantamweight champion is set to fight bethe correia in ufc 190 . rousey will also star in new peter berg action film mile 22 .\nus army staf sgt julian mcdonald welcomed 4-year-old layka into his columbus , ohio home after fighting to adopt her for two years . layka was on her eighth overseas military tour with sgt. mcdonald in 2012 when she was shot four times at point blank range by an enemy fighter armed with an ak-47 . her comrades rushed her back for emergency surgery during which she had her leg amputated as the cost for saving them .\nlianna barrientos , 39 , married ten men in eleven years - and married six of them in one year alone . her first marriage took place in 1999 , with most recent being in 2010 . barriento was nabbed by authorities after saying her 2010 marriage - the tenth time she tied the knot - was actually her first . according to reports , all of barrients ' marriages took place on new york state .\ntsa got to keep $ 675,000 in spare change dropped by travellers at airport security last year . over the past five years , airline passengers have left behind more than $ 2.7 million . according to federal law , if no one comes back to claim the money the tsa are allowed to keep it .\nlisa mcelroy , 50 , a drexel university professor , is accused of sending a link to a pornographic website to her students . she also appeared on the tv game show who wants to be a milionaire in 2010 . mcelory , who teaches legal writing , got tripped up on the $ 12,500 level after flying through the first few questions . she answered wrong and walked away with around $ 5,000 . the married mother-of-two has been placed on administrative leave .\nresearchers say we are increasingly using outdoor space for barbecue or hot tubs . only a handful of traditional flowers still grow in english country gardens . average one usually contains a mere four species -- daffodils , crocuses , roses and tulips . almost 40 per cent of people spend more time sunbathing and having barbecues .\ncelebrities took to instagram to share pictures of their easter celebrations . kim kardashian posted picture of herself making easter baskets . myleene klass ' daughters went on bunny-themed egg hunt . frankie bridge staged easter egg hunt for her 15-month-old son parker .\neben kaneshiro , 35 , was arrested last week and charged with three counts of first-degree sodomy and three counts . of first degree sexual abuse involving a boy under the age of 12 . authorities believe kaneshiro hanged himself in his cell at deschutes county adult jail . new breed jiu-jitsu , the portland martial arts gym that kanesh hiro owned , is now closed .\nshiraz nawaz , 36 , was on his way to his local takeaway when he heard buzzing . he turned around and saw thick black smoke billowing from the manhole in shirley , solihull . the smoke was followed by a huge blast of flame which shot out 15-foot of the ground . mr nawaz said he felt lucky to be alive after the 15-ft flames shot out of the man hole . despite his shock , he was able to grab his phone in time to film the terrifying incident .\nst john 's college and anthony bethell are locked in a battle over a hedge in warwickshire . retired architect , 74 , wants to restore the 180-yard hedge between his home and college . but he claims st john 's has refused to agree with him on where exactly it should be planted . he has now taken the college to court and the case is expected to cost # 150,000 .\na third of men admit they have never picked up a bucket or chamois leather . three-quarters of women never wash their own car , according to a study . rise of hand car washes and 4x4 and off-road vehicles are too large to clean .\ngrey hair lovers are posting images on social media under the hashtag #grannyhair . instagram is awash with images of grey haired models and women . the trend can be tracked back to jean paul gaultier 's catwalk show at paris fashion week . lady gaga and nicole richie have also experimented with the grey hair look .\ntottenham face newcastle at st james ' park on sunday afternoon . the magpies are staging a mass protest against the current regime . a number of supporters plan to boycott the televised game . mauricio pochettino is unsure whether a planned boycott by newcastle fans will prove a help or hindrance to his side .\ngavin thorman ran drugs empire from hmp altcourse in liverpool . father-of-four boasted in welsh he would make ` millions ' when he got out . drugs worth # 200,000 , luxury cars , guns and even a boat seized by police . thorman was jailed for 12 years after admitting conspiracy to supply cocaine and cannabis .\nreal madrid 's 16-year-old wonderkid martin odegaard was refused a rating by spanish newspaper as . the norway international was dropped previously by manager zinedine zidane . odegaards was substituted after 65 minutes against tudelano with the club 's second team a goal down .\nformer jockey ap mccoy was presented with a lifetime achievement award at the bt sport industry awards in battersea on thursday . arsenal midfielder jack wilshere , southampton duo nathaniel clyne and ryan bertrand were also in attendance . rebecca adlington , sam warburton and david weir were also present .\nliz smith is spilling secrets that she never printed over the course of her 70 year career . the 92-year-old gossip writer says barry diller asked her in 1992 if she thought he should come out . she claims she told him that he needed a big story or scandal to push him in business and that he ` worships ' his wife diane von furstenberg . smith also reveals that barbara walters lost interest in her when her column at the new york post was cut . she also says that elizabeth taylor and elaine stritch were her closest friends . smith has been married to her partner iris love since 2001 .\nwalter the flying fox bat , from sydney , has been grounded by arthritis . the 22-year-old has found an unusual cure for his pain by sipping on a mug of tea . he picked up his bizarre taste after sneaking a slurp out of his owner 's cup of tetley 's tea . the other 25 bats in his aviary have also began drinking the beverage . the beverage has been nicknamed ' a hug in a cup '\nannegret raunigk , 65 , from spandau , berlin , is expecting quadruplets in weeks . she is set to become the world 's oldest woman to give birth to quads . her youngest daughter leila , 10 , told her she wanted a brother or sister .\njulian van herck ballooned to 23st after marrying stefan in 1993 . she used food as an 'em otional crutch ' after suffering post-natal depression . would sneak downstairs at night and gorge on calorie-laden treats . feared life was falling apart and husband would leave her . a health scare in 2012 prompted her to lose weight . had weight loss surgery and now weighs 11st .\nangelique kerber came from a set down to win the stuttgart grand prix . the german beat caroline wozniacki 3-6 , 6-1 , 7-5 in the final . it was kerber 's second title of the season and her first on home soil .\nwarrington wolves thrashed wakefield wildcats 80-0 on saturday . coach james webster said he does not have enough players . the wildcats are rooted to the foot of the table after eight consecutive defeats . the rout saw a hat-trick of tries by richie myler and a 28-point haul for stefan ratchford .\nfloyd mayweather takes on manny pacquiao in las vegas next saturday . live video streaming apps such as periscope and meerkat allow users to broadcast live video to their social media accounts for free . this could mean broadcasters miss out on millions of viewers as they pay for the rights to broadcast the mega-fight . hbo issued take down notices after game of thrones was streamed online .\njoshua quincy burns , formerly of brighton , was sentenced to three years ' probation with the first served in livingston county jail for second-degree child abuse . his daughter naomi suffered several injuries , including seizures , hypothermia , hypotension , bradycardia , apnea and retinal hemorrhages . joshua and his wife , brenda , say he is innocent and that he grabbed their daughter 's face when she slipped from his lap as he ended a phone call with his wife in march 2014 . he claims he was trying to save her from hitting her head on a coffee table in their home . brenda burns has refused to allow social workers and michigan 's department of human services to see naomi .\nthe cnn crew took a boatload of refugees back to yemen from djibouti . the boat was used as a shelter for families caught in the fighting . cnn crew was told they would be in aden by the next morning . but they were forced to return to port after shelling began .\ndamon clay was left with burns covering 70 per cent of his body after two other teens attacked him with a pot of boiling rice while he was sleeping . he is now in a medically induced coma in critical condition . officers have arrested 19-year-old quintavious barber and 18-year , malik morton for aggravated assault and cruelty to a child . relatives of the scalded victim said the two men accused him of stealing a playstation 3 .\n73 fans have been sentenced to death over a stadium riot in egypt in 2012 . the riot erupted when supporters of al-masry and al-ahly clashed after an egyptian league match . an appeals court ordered the retrial of 73 defendants last year after rejecting a lower court 's verdict . eleven of the fans were again sentenced to the death penalty at today 's hearing . their verdicts have been referred to egypt 's supreme court , the grand mufti .\natletico madrid host real madrid in champions league quarter-final second leg on wednesday night . luka modric , gareth bale and karim benzema are all injured . carlo ancelotti could start isco , jese and javier hernandez in their absence . the italian insists his side can cope without the trio .\nchelsea defeated shakhtar donetsk 3-2 to win the uefa youth league final . izzy brown scored two goals as the blues claimed their first european title . brown opened the scoring with a seventh-minute strike before dominic solanke doubled the lead . the blues defeated atletico madrid and roma in the semi-finals .\nukip leader protested they were ' a remarkable audience even by bbc 's standards ' outburst came less than half an hour into the event at westminster 's central hall . mr farage 's comments about pressure on housing due to immigration greeted with mutters from those watching . he was heckled by members of the audience before david dimbleby intervened .\njohn axford has been placed on the family medical emergency list by the colorado rockies . his son jameson was bitten twice by a rattlesnake last month in arizona . the 2-year-old had surgery last monday - opening day for the rockies - on his right foot to remove necrotic tissue . jameson will board an emergency medical flight on monday to denver for more treatment .\namir khan was joined by his wife faryal makhdoom khan and daughter lamysa . the family enjoyed a day at six flags discovery kingdom in california . khan posed with a rare but dangerous white tiger and giraffes . the boxer announced he will fight chris algieri on may 30 .\n` remediation costs ' wiped out 61 per cent of banks ' profits between 2011 and 2014 , according to accountants kpmg . bill driven by payment protection insurance scandal , with banks setting aside # 4.7 billion last year to compensate customers . another # 2.3 billion earmarked by banks including barclays , royal bank of scotland and hsbc to pay fines for rigging foreign exchange markets .\nargentine forward paolo dybala says he could be playing his final games for palermo . arsenal and juventus have already approached the club with bids . the 21-year-old has scored 13 serie a goals this season . dybla has also been linked with liverpool and barcelona .\nreal madrid defeated rayo vallecano 2-0 in la liga on wednesday night . cristiano ronaldo scored the 300th goal of his real madrid career . the portugal forward joined the 300 club in just 288 appearances . ronaldo scored in the 68th minute to move madrid within four points of barcelona .\na 70-year-old man has been bitten by a crocodile while playing golf in queensland . the man was bitten on the leg on monday afternoon at the palmer sea reef golf course , owned by clive palmer . he was treated at the scene before being taken to mossman district hospital in a stable condition . the victim , john lahiff , has spoken out from his hospital bed at cairns base hospital , swearing he will return to the green again . he believes he accidentally stood on a sunbaking crocodile on the 11th hole .\nmother-of-one jennifer drew has saved # 17,000 over three years by using coupons . she spends an hour a day searching for deals and coupons on the internet . mrs drew , 31 , has accumulated so many products they fill her garage . she estimates she saves # 70 each week on food and once bought # 140 for 29p .\nmanchester united will return to the usa for a pre-season tour . louis van gaal was unhappy with the amount of travelling last year . united will play club america , san jose earthquakes , barcelona and psg . the club will play in the international champions ' cup . united 's shirt sponsors chevrolet are keen for the club to visit the far east .\nthe new collagen-laced brew was created by japanese liquor company suntory . it boasts a five per cent alcohol content level and claims to have two grams of collagen per can . collagen is a protein found in skin that provides structure , firmness and texture .\nmigrant deaths in the mediterranean this year have increased by a factor of 30 compared to the same time last year . almost all the deaths have occurred in the perilous central mediterranean crossing from libya to italy . eu critics have called for tougher action to deter asylum seekers from making the risky journey .\nluke shambrook , 11 , was camping in fraser national park , central victoria . he was last seen leaving candlebark campground at 9.30 am on good friday . a widespread search is being carried out by search and rescue teams . police say conditions are favourable for his survival overnight . but he may not even know that he 's lost , police said . he has limited speech and his family says he is probably confused .\nabdirahman sheik mohamud is a naturalized u.s. citizen . he is accused of traveling to syria for training . he allegedly wanted to return home and kill americans , particularly u.s. soldiers . he pleaded not guilty friday to federal charges of providing material support to terrorists .\ntories will unveil party 's first ` manifesto for england ' tomorrow - with william hague to launch it . will pledge to introduce system of ` english votes for english laws ' - giving english mps veto over legislation applying only to their constituents . hague expected to warn england risks being ` held to ransom ' by snp .\nkim hill was sexually abused for years by her step-father derek osborne from the age of four . the 31-year-old was forced to dress up in mother 's lingerie and watch porn films at age of eight . she was too scared to approach anybody about the abuse and bottled up the memories . but when her partner rob , 34 , asked her if she had been abused she confessed . he encouraged her to approach the police and derek osborne was jailed for 20 years .\nthe 9-day trip crossed 15 states and the district of columbia . nearly 3,400 miles were covered with 99 percent in fully automated mode . the team collected nearly three terabytes of data . the drive was used by delphi engineers to research and collect information that will help further advance active safety technology .\npoet 's house is a new hotel in genteel ely , cambridgeshire . it 's a three-minute walk from the cathedral and offers terrific value . there are 21 rooms , all with copper standalone baths . the hotel is as much a sex and the city retreat as a hideaway .\npolish-based blogger filmed the moment she fed the jaguar . goska spent some time volunteering at criadouro onça pintada in brazil . she mixed with a number of exotic animals while there . among them was one-year-old rescued jaguars perseu and ciro .\nmichael carrick has been unappreciated in this country . the manchester united midfielder keeps the game simple . england 's midfield against italy was a different game . carrick 's passing tore england apart at the world cup . the 34-year-old has had to deal with ` keane syndrome '\npham quang lanh was struck by an iron bar on a building site in malaysia . he had a metal plate inserted over his skull to repair the wound . but the botched operation caused his head to become swollen with an infection . fearing he could n't afford any further medical treatment , he hoped headaches would subside . but family noticed a dozen maggots crawling under the skin and took him to hospital . doctors say the infestation saved his life by eating infected tissue .\ntottenham are determined to keep hugo lloris at white hart lane . but manchester united are interested in signing the france no 1 . tottenham chairman daniel levy is known to drive a hard bargain . he is the man behind real madrid 's # 85million move for gareth bale .\nresearchers from harvard university studied ancient human remains . they found hunter gatherers living in spain up to 8,500 years ago still had dark skin . it was not until 7,800 years ago that two genes that provide lighter skin appeared . as farmers bred with the dark skinned hunter g atherers , one of these genes became prevalent in the european population and european 's skin colour began to lighten .\nduckie 's dance from `` the breakfast club '' is still popular . actor jon cryer reprised the scene on `` the late late show '' tuesday . he danced to otis redding 's `` try a little tenderness '' with host james corden .\na woman has filmed herself applying make up to a monkey . the two-minute clip has sparked debate online between those who think it is cruel and those who say it is cute . the monkey 's owner teresa bullock captured the clip at her house in ohio on the birthday of her 18-year-old macaque monkey named angel .\njack wilshere has returned from injury to captain arsenal 's u21 side against reading . the midfielder took to social media to thank fans for their support . wilsheres has n't featured for arsenal since november . the 23-year-old will be hoping to feature in the fa cup semi-final .\nnypd detective patrick cherry was filmed screaming at an uber driver in the west village . the three-minute video has been viewed more than three million times on youtube . cherry has been stripped of his badge and gun and will be placed on administrative duty . he appeared on nbc 4 new york on friday night to ` sincerely apologize '\nofficials say 106 passengers and six crew members aboard the celebrity infinity cruise ship were sickened by the gastrointestinal illness norovirus . the centers for disease control and prevention -lrb- cdc -rrb- said in a monday news release there were 2117 total passengers on the ship and 964 total crew members . the agency said the main symptoms for those affected were diarrhea and throwing up .\nbayern munich host borussia dortmund in der klassiker this weekend . dortmund are only five points from the top six after beating hannover . jurgen klopp 's side are currently 10th in the bundesliga table . the german champions are just 31 points behind bayern munich .\npresident barack obama and cuban counterpart raul castro meet for an hour . it 's the first time the two nations ' top leaders have sat down for substantive talks in more than 50 years . obama says the meeting was `` candid and fruitful '' but has n't yet decided whether to remove cuba 's designation as a state sponsor of terror .\nresearchers at joint base lewis-mcchord looked at military records of 3.9 million personnel who served after 9/11 . found no direct link between deployment to a war zone and elevated suicide rates . service members with a dishonorable discharge were about twice as likely to commit suicide as those who had an honorable separation .\nthe british national , of polish origin , was arrested on saturday . he was arrested as part of operation against the dhkp-c militant group . members of banned leftist group took senior turkish prosecutor hostage . mehmet selim kiraz was shot in the head during the stand-off last week . both the prosecutor and the hostage takers were killed after a police shoot-out .\nlord neuberger said judges should be ` sensitive ' to their ` subconscious bias ' he said judges and courtrooms should allow women to wear traditional dress . he said they should ` show , and be seen to show ' respect towards different customs . lord neubergers made comments in an address to the criminal justice alliance .\namjad yaaqub , 16 , said he stumbled on the barbaric scene shortly after the terrorists beat him unconscious when they burst into his family home at the camp in the syrian capital damascus . he said the isis fighters were looking for his brother , who is a member of the palestinian rebel group who ran and defended the camp for several years . his story was revealed as refugees in yarmouk spoke of the daily atrocities they have witnessed since isis seized control of 90 per cent of the camp .\nanna creek station in south australia is the world 's largest cattle station . it covers 23,000 square kilometres and includes original stock and equipment . the 11 cattle farms cover over 100,000 square kilometres and are being sold by the family business s. kidman and co. . the stations currently have 155,000 branded cattle with 30,000 more calves on the way .\njay dasilva and his brothers cole and rio are chelsea 's promising youngsters . the left back is earmarked for first team football at stamford bridge . the trio were taken from luton town 's academy in 2012 . chelsea have been buoyed by jose mourinho 's insistence on promoting .\nsiem de jong played 72 minutes for newcastle 's under-21s on tuesday . the dutchman has only made one league start this season . de jong has been out for eight months with a collapsed lung . the 26-year-old hopes to be involved in newcastle 's premier league clash with swansea on saturday .\nwomen have been barred from attending most sports events involving men since 1979 . but a top iranian sports official says the ban will be lifted for some events . it is n't clear exactly which games women will be able to attend . the iranian government has come under pressure from international sports officials .\ndeanna robinson , of quinlan , texas , was 38 weeks pregnant when she says she was struck at least three times at her parents ' home . she said deputies and state workers from child protective services were present to remove her 18-month-old son because of allegations of abuse or neglect . robinson spent six days in jail after being charged with resisting arrest , interfering with child custody and assaulting an officer . six days later her son , levi , was born .\nechidna was spotted paddling out to sea off rye beach , a popular surfing and fishing spot on victoria 's mornington peninsula . the prickly australian mammal was filmed paddling in the turquoise waters . echidnas are ` proficient ' swimmers and like fresh water .\npound fell to near 1.46 against the us dollar , its lowest level since june 2010 - just after the last election when no party secured a majority . different polls have variously put the tories and labour narrowly ahead , with david cameron and ed miliband both facing the prospect of having to rely on smaller parties to form a government .\nminnesota reporter ashley roberts was surprised on-air by her boyfriend , justin mccray , on wednesday . the pair were discussing the cost of engagement rings during a segment on the this morning show . ashley 's co-workers helped arrange for her boyfriend to come out and propose .\nbettie jo , from houston , texas , weighed 47 stone -lrb- 660lb -rrb- and was housebound . she was dependent on husband josh to tend to her every need . josh admitted he did n't support her with her weight loss . he feared if she became slimmer , she would n't need him anymore . bettie jo now weighs 35st 8lbs -lrb- 500lbs -rrb- thanks to surgery .\nthe ulusaba game reserve is in south africa 's sabi sands . it is sir richard branson 's private reserve . alexander kutner came face to face with three rhinos . he also documented the roar of a bush lion . kutner also photographed the yawn of a hippo .\nrik mayall died suddenly aged 56 last june , probate records show . he suffered serious head injuries and nearly died in a quad-bike accident . but he had no will - which could mean complications for his wife and children . his estate could be liable for tax of tens of thousands of pounds .\npankaj saw , 29 , fell three storeys from a macquarie park balcony to his death on thursday . he was on the phone to his wife back in india at the time of the tragic fall . mr saw was in australia on a long-stay work visa , and had been working on and off in sydney in recent years . he died at the scene from serious head and internal injuries .\nander herrera joined manchester united for # 29million last summer . the 25-year-old says he wears his forename and surname on the back of his shirt for superstitious reasons . herrera reached the copa del rey and the europa league finals in his debut season at bilbao in 2011-12 .\ndelmarva power says it did not cut off power to the family of eight who died of accidental carbon monoxide poisoning . spokesman matt likovich says the utility discovered a stolen electric meter had been illegally connected to the rental home where the family was living since november . the utility says the meter was disconnected for safety reasons on march 25 . rodney todd and his two sons and five daughters then used a generator for power . they were last seen alive on march 28 .\nanna foord , 30 , convinced investors to buy low grade gems overvalued by up to 2,000 per cent . she was part of a gang of fraudsters who lived lavish lifestyles by selling coloured diamonds in the # 1.5 m ` boiler room ' scam . but they were arrested and foord was convicted of conspiracy to defraud and money laundering today .\nthe rapper and actor has closed a deal to join the cast of `` suicide squad '' the movie is warner bros. ' all-star action movie featuring dc entertainment super-villains . details for common 's role have not been revealed . the movie already boasts actors jared leto , will smith and margot robbie .\npaul smith will face andre ward in oakland , california on june 20 . the fight will not be for ward 's wba super-middleweight world title . the unbeaten californian has not fought since november 2013 . ward has not lost since beating edwin rodriguez on points in november 2013 .\nsurvey by british medical association found 94 % of gps against opening every day . two-thirds not willing to join into larger groups to ensure one surgery in an area is open on saturdays and sundays . government has tried to encourage gps to offer out-of-hours appointments .\nmessi posted a photo on instagram of his wife having her stomach kissed by their son . the barcelona star has already had his first son , thiago , born in 2012 . messi has his son 's handprints tattooed on his calf . the couple are reported to have settled on the name benjamin .\nmanchester city have been limited to a net spend of # 49million in the last two transfer windows . the premier league champions were punished for breaching financial fairplay regulations . manuel pellegrini is hoping that the restrictions will be lifted at the end of the season . city have spent # 25m on wilfried bony and # 32m on eliaquim mangala .\nthe bill would codify congress ' role in processing a nuclear deal with iran . the white house had said as recently as yesterday that the president would ` absolutely ' veto as written . but the senate foreign relations committee voted 19-0 to give the white house some of , but not all of its asks . the bill would give congress the authority to approve a final deal with tehran . it now goes to the full senate , where it is could pass with a veto-proof majority of more than 66 lawmakers .\nmanny pacquiao faces floyd mayweather jnr in las vegas on may 2 . pacqu xiao-manny is preparing for his $ 300million fight with mayweather . a new film charts the boxer 's rise from humble beginnings to his boxing career . ` kid kulafu ' is named after a brand of wine pacqu qiao collected as a child .\nna chu was locked in the house by her grandmother in xiangtan , south china . she ran to the window but fell between the protective metal slats . neighbours rushed to help and used a piece of pipe to prop her up . others supported her feet before firemen arrived - half an hour later .\ntottenham face newcastle in the premier league on sunday . mauricio pochettino believes harry kane and ryan mason have not been able to show the same level of consistency since returning from england duty . kane has been nominated for both pfa player of the year and pfa young player of year .\nstuart mccall 's side face hearts at ibrox in the scottish championship on sunday . rangers have lost all three league visits to edinburgh this season . hearts beat rangers 2-0 at easter road in november , while hibernian have won 3-1 and 2-1 at govan .\nhollywood actor keanu reeves visited red bull headquarters in milton keynes . the 50-year-old grilled chief technical officer adrian newey . he also checked out pitstops and more at the factory with sky sports . reeves said his love of f1 comes from its similarity to film business .\nryan giroux is accused of shooting six people in phoenix , arizona . one man was killed and five others injured in the march 18 rampage . police launched a massive manhunt , locking down a school and college . giroux , 41 , pleaded not guilty to one count of first-degree murder .\naston villa beat liverpool 2-1 in the fa cup semi-final at wembley . shay given will keep his place in the side for the final against arsenal . brad guzan is under pressure for the no 1 jersey in the premier league . tim sherwood 's side travel to manchester city on saturday evening .\nformer satyam computers services chairman ramalinga raju is sentenced to seven years in jail . raju and nine others were convicted of cheating , criminal conspiracy and other charges . the case has been compared to the 2001 enron corp. scandal . satyam was india 's fourth-largest software services provider .\nisraelis stand in silence for two minutes as sirens wail across the country . commemorations began at sunset on wednesday and were to continue thursday . it is 70 years since the liberation of the nazi death camps . the theme of this year 's observances is ` the anguish of liberation and the return to life : 70 years since the end of world war ii '\nresearchers find a complete skeleton of a camel in a cellar in tulln , austria . the skeleton is thought to have been used by ottoman troops besieging vienna in 1683 . it is the first complete camel skeleton found in central europe under ottoman control . dna analysis confirms the remains are of a hybrid species of camel .\ntaylor swift 's mom , andrea swift , has cancer , the singer says . swift urges fans to make sure their parents get screened for potential health problems . #prayformamaswift is a trending hashtag on twitter . swift : `` i 'd like to keep the details of her condition and treatment plans private ''\nthe 13 letters were expected to bring in anywhere from $ 300,000 to $ 600,000 , but received no bids at a sotheby 's auction wednesday . the only person who raised a paddle - for $ 260,000 - was a s auction employee trying to jump start the bidding . the current owner of the signage is yankee hall of famer reggie jackson , who purchased the 10-feet-tall letters for an undisclosed amount after the stadium saw its final game in 2008 .\ngerman intelligence warned of risk of flying over ukraine in diplomatic cables . but the government failed to pass on the warning , local media reported . malaysia airlines flight mh17 was shot down over rebel-held territory in eastern ukraine on july 17 , and all 298 aboard were killed .\nelizabeth sedway says she was removed from a flight because she has cancer . alaska airlines says it was done with `` the customer 's well-being '' in mind . the airline has apologized to sedway and refunded her family 's tickets . sedway was in hawaii to celebrate her 14th wedding anniversary .\npatrick vieira is set to complete his uefa pro licence this summer . the former arsenal midfielder is preparing to be a football manager . vieira has been taking his coaching badges with the welsh football association . the frenchman is currently manchester city 's head of the elite development .\n` britain 's vainest man ' sam barton was egged on easter monday in sutton coldfield . 22-year-old has had # 55,000 of cosmetic surgery to look like joey essex . he believes culprits tracked him down using his facebook posts . he was pelted with eggs from a car and left with yolk and shell in his hair . barton has spent # 20,000 on treatment for his teeth and # 5,000 for botox .\nd dove has asked women to rate themselves as either ` beautiful ' or ` average ' in australia , 83 per cent of women rate themselves ` average looking ' around the world , just four per cent think they 're worthy of the glowing epithet . the statistics are highlighted in a new video by dove .\ngarnet was established in the 1860s by miners looking for gold and silver . it was devastated by fire in 1912 and abandoned a few years later . the town has been restored , but it remains deserted and is said to be haunted by former residents . the u.s. bureau of land management is offering free food , housing and a job to volunteers to help run the village .\nthe family took an impromptu trip to great falls park in virginia on sunday . sasha obama , 14 , was spotted listening to earbuds as she , sister malia and their parents ditched the white house . the trip came after the white house had sent reporters home for the day , sending the presidential press pool into a temporary tumult about where president barack obama and the first family had gone .\ncelebrity chef pete evans has been dropped as the celebrity ambassador for popular salad chain ` sumo salad ' this comes after his paleo cookbook for infants was delayed due to fatal health concerns . evans announced that his disputed baby cookbook ` bubba yum yum : the paleo way ' will become a self-published digital book to be released this month . sumo salad maintains that their decision was not due to evans ' paleo controversies .\nwiley bridgeman , 60 , and kwame ajamu , 57 , were awarded a collective $ 1.6 million from an ohio court on friday after spending decades in prison for wrongful murder convictions . the brothers served a collective 66 years in prison after being convicted of the murder of cleveland businessman harry franks in 1975 . they were exonerated last year after the prosecution 's star witness recanted his testimony . ricky jackson , 58 , was awarded more than $ 1million in compensation in march .\npaula dunican spent # 25 on the baby blue coat at her local branch in canterbury , kent . but when she took it home to try on , she noticed a dark stain ` seeping through ' from the lining . inside , a four inch-long gecko was flattened , its scales imprinted onto the fabric . asda apologised and offered her a refund and # 40 voucher .\nandros townsend scored in england 's 1-1 draw with italy on tuesday night . he hailed harry kane as the ` best finisher ' he has played with . townsend also poked fun at paul merson after the former midfielder said he ` should be nowhere near the england squad ' kane made his england debut as a substitute on friday against lithuania .\nhillary clinton was asked about the september 11 , 2012 terror attacks in benghazi , libya , by daily mail online on tuesday night . the former secretary of state said nothing , staring straight ahead and clapping . she was in washington , d.c. after wrapping up a two-day new hampshire campaign trip . four americans died in the attacks , including the us ambassador to libya .\non thursday , april 9 , 1865 , confederate gen. robert e. lee surrendered to union lt. gen. ulysses s. grant in appomattox , virginia . lee 's surrender marked the beginning of the end of the american civil war in 1865 . thursday 's commemoration in appoattox included a re-enactment of lee 's last clash with grant 's troops and of the confederate surrender in a virginia farmhouse .\nnicholas dematteis , 39 , demanded a free meal at bocca east in new york city on saturday afternoon . he allegedly lost his cool after waiting more than an hour for his omelette . the manager tried to calm him down , but demattteis spewed a homophobic slur at him and grabbed his neck , according to witnesses . he then slammed him against a bar and into an elderly woman , according to the witnesses . demateis was arrested and charged with assault following the incident .\nnick abendanon 's superb display for clermont has reignited england 's policy against picking players based abroad . the rfu and stuart lancaster are being urged to invoke the ` exceptional circumstances ' get-out clause . it is proving to be more hassle than it is worth . sam burgess 's rugby evolution continues on friday as he starts at blindside flanker for bath against newcastle .\ndavion navar henry only , 16 , had spent his entire life in foster care after his mother gave birth to him behind bars . he made a plea in 2013 for a family to ` love him forever ' at a st petersburg church . he was adopted by a minister in ohio but sent back into the system a few months later when he fought with one of the minister 's children . now he has been adopted by his old caseworker connie bell going and her family .\nreading fan charlie sumner staged a one-man pitch invasion at the stadium . the 20-year-old ran onto the pitch during their fa cup quarter final replay . he did four front flips on the pitch , landing on his back each time . sumner is now facing a potential three-year ban for carrying out the stunt .\nroseanne barr revealed earlier this week that she is going blind . she has macular degeneration and glaucoma , two eye diseases that get progressively worse over time . there is no cure for either disease , but there are treatments that may delay the progression .\ncocktail sausages with poison pellets inserted into them found on cuckoo trail . man out walking his dog found clutch of the deadly sausage on the trail in hailsham . sussex police warn dog owners to be aware when out walking their animals .\naudrey pekin , 19 , was allegedly raped twice on christmas eve . she was on holiday with her family in kuta , indonesia , when the alleged attack took place . she claims she was lured to a remote villa by a man she met on a night out . she says he locked the door and raped her before forcing her into a taxi . she tried to escape but was forced into the back of the cab and raped again . the alleged attacker , henry alafu , has since fled to his native nigeria . ms pekin has slammed indonesian police for letting alafu escape .\njulian zelizer says hillary clinton 's campaign has been criticized for unconventional launch . he says it was a marketing move to reframe who she is , what she stands for and how she intends to run . zelizer : clinton 's team may have begun to create an empathetic relationship with voters .\ndan fredinburg , 33 , was one of four americans confirmed to have died in nepal . he was travelling to the himalayas as part of the google adventures team . his girlfriend ashley arenson said he had a way of making people feel special . she revealed that he wanted to return to mount everest following the devastation of the avalanche last year - when 16 people were killed .\nnikki kelly was four months pregnant when she gave birth to son james . she had no idea she was expecting , and kept her size 8 figure throughout pregnancy . the 24-year-old gave birth on the bathroom floor in ` three pushes ' james is now three months old and the couple have put an offer on a house .\nlisa oldfield decided she had to make a change to tackle her weight . the tv presenter was motivated by her son 's unflattering portrait of her . the 40-year-old former channel 9 host said she barely recognised herself in the drawing . she said she was horrified to think her sons harry , 4 , and bert , 2 , saw her that way . oldfield , wife of radio host and former one nation politician david oldfield had liposuction .\nan advanced spacecraft flies up to an orbiting space station , taking with it cargo and supplies for the crew . one astronaut on the iss donned a uniform from the popular tv show . italian astronaut samantha cristoforetti wore the uniform on friday . together with nasa astronaut terry virts she captured the spacecraft . on board it had 4,000 lbs of supplies - including a coffee machine . it will remain at the iss for a month before returning to earth .\naustin carey , 23 , and jay rawe , 25 , were base jumping off pennine bridge in idaho when their parachutes tangled . mr carey 's foot got stuck on railings and the pair plummeted 500ft to the ground . they were left with broken vertebrae and mr carey was told he may never walk again . but a year on both have returned to the sport they love and mr carey has even retraced his steps to successfully jump from the bridge .\nmanny pacquiao will fight floyd mayweather in las vegas on may 2 . pacqu xiao-mao and mayweather have been training in la ahead of the bout . pacqiao met up with nba star jeremy lin and saved by the bell actor mario lopez .\n35 people killed and 125 injured after suicide bomb detonated in jalalabad . attacker detonated explosive-laden motorcycle near a bank in the city 's commercial district . group of civilians and military personnel were waiting to receive their monthly salaries . islamic state has since claimed responsibility for the attack , president ghani said .\nernest goult will stand trial for allegedly making a racist gesture . the 72-year-old is accused of making the gesture at a middlesbrough home game against blackburn in the championship in november . blackburn players markus olsson , rudy gestede and lee williamson are expected to give evidence at the trial .\nwoman was watching pittsburgh pirates take on chicago cubs at pnc park . was making her way back to her seat during second inning when she was hit . ball was hit behind by cubs ' starlin castro and careered into her head . incident caused 22-minute delay in game as emts treated the fan . she was then transported to hospital having reportedly regained consciousness .\ndonald graham , 62 , killed heiress janet brown , 45 , for her money in 2005 . he stole # 300,000 of her savings , her land rover and porsche , and took her horses . he was jailed for life with a minimum of 32 years for murder last year . prosecutors wanted to reclaim his ill-gotten gains , which they said totalled # 816,127.86 p . but newcastle crown court heard graham now has no available assets and so must pay back just back # 1 .\ndavion navar henry only , 16 , has been in foster care his entire life . he asked a church to help him find a forever parent . a video of his plea went viral . he was adopted by a woman who had been there for him since he was 7 .\nclaudetteia love , 17 , was told by principal patrick taylor she had to wear dress . she and friends would not go to carroll high school 's prom in monroe , louisiana . comments sparked an outpouring of support from across the country . now , principal taylor and school board president rodney mcfarland have reportedly told the student she can wear a tux to the prom after all .\nthe viva las vegas rockabilly weekend is a flashback to classic cars , vintage pinups , tiki drinks and tattoos . around 20,000 fans of the era gathered over the weekend for musical performances and car show off the strip at the orleans hotel and casino .\nnew research suggests pregnancy can help older women feel young again . researchers at hadassah medical school in jerusalem found pregnancy helps regenerate tissue and slow down the ageing process . they studied effects of liver transplants on pregnant and non-pregnant mice using a high-tech mri scanner .\nkaren wakefield appeared in bbc 's controversial documentary ` people like us ' she took daughter out of school for six days to go on holiday to turkey last year . mother-of-two refused to pay fines for taking her daughter abroad during term time . she said she does n't like being told when her daughter can go on holidays by teachers . mrs wakefield and husband paul dawson could face three months in jail .\nhigh-powered human rights lawyer amal clooney held a press conference in washington dc today calling for the release of imprisoned former president of maldives mohamed nasheed . the newlywed wife appeared before reporters at the national press club at 10am thursday . she is part of a high-profile international legal team representing ousted and jailed maldivian ex-president nasheed , who has been sentenced to 13 years in prison .\n18-year-old jackson byrnes was diagnosed with a stage four brain tumour three weeks ago . he was told the tumour was too deep and aggressive to be operated on . the casino teenager is just under $ 4,000 away from raising enough money to save his life . he must raise $ 80,000 by tuesday night in order to pay for his surgery .\nkevin de bruyne has attracted interest from manchester city , bayern munich and paris saint-germain . the wolfsburg midfielder 's agent patrick de koster admits he could receive 20 phone calls a day about the belgium international . de bruyne joined wolfsburg from chelsea for # 18m in january last year .\nbrady eaves , 18 , filmed biting the head off a live hamster at a party in florida . stepson of former mississippi governor candidate john arthur eaves jr. . eaves ' stepfather and mother have branded his actions ` disturbing ' and ` disappointing ' he has been withdrawn from the university of mississippi , where he was on a scholarship , and submitted for mental health tests . phi delta theta has openly condemned eaves and expelled him from the fraternity . the stunt could see him charged with felony animal cruelty .\nneymar was substituted in barcelona 's 2-2 la liga draw with sevilla on saturday . the brazil forward was clearly furious at being replaced by xavi with 20 minutes left . barcelona face paris saint-germain in the champions league on wednesday . luis enrique has played down neymar 's angry reaction to being substituted .\nproject elysium is being developed by australia-based paranormal games . it claims to create a ` personalised afterlife experience ' with loved ones who have passed . the app 's developers have yet to reveal exactly how the technology will work . but a twitter account shows someone being transformed into a 3d model .\nnewly launched app , honest , allows users to pose questions , remain anonymous and get feedback from fellow anonymous users . personal dilemmas range from relationship questions to questions about sexual dysfunction and secret crushes . one user asks : ` my long term girlfriend is bad in bed ... shall i tell her ? '\nchristopher starrs admitted defrauding bt openreach of # 28,000 over two years . but recorder stuart trimmer qc spared him jail as an ` act of mercy ' starrs , 50 , was allowed to go free from court with just a suspended sentence . but senior judge nicholas cooke qc has now said the sentence was ` unlawful ' and added starrs should have been sent to prison .\nyervand garginian , a 60-year-old bus driver from south croydon in melbourne , filmed himself cooking chicken on an open charcoal barbecue using a traditional ` khorovats ' recipe . his daughter elizabeth garginian posted the video to reddit and it has since been viewed more than five million times . in the video mr garginian dismisses the australian-style barbecue of cooking ` oily ' sausages .\n`` full house '' co-star john stamos announced the new series on `` jimmy kimmel live '' the show will feature candace cameron bure as the recently widowed mother of three boys . jodie sweetin and andrea barber will both return for the new show .\nkenneth morgan stancil iii is accused of fatally shooting 44-year-old ron lane , a print shop director at wayne community college . he said he killed lane because his former supervisor molested a relative . the 20-year old 's face and neck are covered in dark , self-administered tattoos , some with neo-nazi symbolism . he walked 30 miles to florida after his motorbike broke down , police said on wednesday . the woman did n't know he was armed with a knife and had almost $ 500 , police added . he was found sleeping on the beach on tuesday morning .\nlewis ferguson was flung from his horse at wincanton . the amateur jockey has just a cut on his nose to show for his ordeal . ferguson 's spectacular double somersault fall has been watched hundreds of thousands of times online . the 18-year-old was back riding out and is undeterred from getting back in the saddle .\nbournemouth are currently third in the championship . eddie howe 's side face sheffield wednesday and bolton in the next three weeks . the cherries are bidding to win promotion to the premier league . norwich city face middlesbrough on friday night . watford boss slavisa jokanovic is not looking beyond birmingham .\nbrendan rodgers says he is ` shocked ' by the level of online abuse aimed at mario balotelli . anti-discrimination body kick it out revealed on thursday that balotlli had been subjected to more than 4,000 racist messages on social media this season . liverpool team-mate daniel sturridge and arsenal striker danny welbeck have also each received more than a thousand discriminatory messages . stoke city boss mark hughes has called for a crackdown on racism and an end to online anonymity .\nsteph curry made 77 consecutive three-point attempts in a golden state practice session . the 27-year-old made 94 out of his 100 attempts during the drill . curry has led the warriors to the top of the western conference standings . the mvp candidate eclipsed his own nba record for most three-pointers in a season , which stood at 272 .\nwarning : graphic content . girl at lone hill middle school in san dimas , california , is being kept home . instagram users have posted threatening messages and pictures . one says : ` that smile ! i ca n't wait till its -lsb- sic -rsb- just blood and tears '\nbahar mustafa , 27 , is welfare and diversity officer at goldsmiths university . she posted picture of herself pretending to cry in front of ` no white men ' sign . also refers to a ban on ` cis ' or cisgender men , the opposite of transgender . she told white people and men ` not to come ' to a meeting she was organising . students have accused her of discrimination and racism .\nwyong roos rugby league player greg gibbins was stabbed with a knife on easter monday . he and a friend were at a hotel in toukley on the central coast , nsw . the 28-year-old went into cardiac arrest after the attack and later died . his friend , 25 , remains in a serious condition in hospital . police are appealing for witnesses to the incident . a 20-year old man was arrested nearby after the stabbing .\nparents should be aware of the impact of online hot or not videos . half of three to six-year-olds say they worry about being fat , with a fifth of girls under 11 confessing to have even tried diets . feeling unattractive and worthless can have a devastating impact on their chances of success .\nbaby goat has four forelegs and two hind legs . it was born 20 days ago at a farm in eastern china . farmer xiao qibin said the kid is growing quickly and is healthy . he said he will not take the kid to a vet to remove the extra legs .\nchris ball , 21 , took his own life on september 14 last year . he made the most heartbreaking final goodbye video to his family . he told them not to blame themselves and that there was nothing they could have done . his family have shared the video to raise awareness of depression . chris was sent home from hospital 11 days earlier because there were not enough beds . his mother kerrie keepa has lost her brother , two sisters , nephew and now her son , chris , to depression .\ntrade was taking place between east asia and the new world . this is according to a series of bronze artefacts found at cape espenberg , alaska . archaeologists discovered what they believe to be a bronze and leather buckle and a bronze whistle , dating to around a.d. 600 . bronze-working had not been developed at this time in alaska . instead , researchers believe the artefacts were created in china , korea or yakutia .\nmanchester city and arsenal are interested in signing joe gomez . the 17-year-old is valued at # 8m by charlton . city lost 3-1 to chelsea in the fa youth cup final first leg . the premier league side are looking for more young english players .\n32-year-old afghan admits his father was in charge of 65 taliban troops . claimed he only joined the terrorist group because he was worried about his safety . also claimed he had been tortured during four years in jail in kandahar . home secretary theresa may initially rejected his application for sanctuary . but her decision was overturned by immigration judges .\njimmy anderson took his 384th test wicket for england against the west indies . the 32-year-old broke sir ian botham 's record of 384 test wickets . botham and anderson are very different players but share one thing in common . both are stubborn and have a strong belief in their own abilities .\nlouise smith , 38 , was eating with child and a man in the crown and thistle pub near carlisle , cumbria . she planted the hairs and complained to staff but in reality did not have enough money to pay for # 21 dinner . cctv footage showed her standing over the girl and pulling two hairs from her head . smith denied fraud in february but failed to attend her trial so she was convicted in her absence .\nyan tai weighed just over seven stone when she began dating you pan . but two years on she has ballooned to over 14 stone 2lbs . her six-and-a-half-stone weight gain was all part of a plan to keep her by his side .\ncharly the police horse was patrolling venice beach with his minders on tuesday when he was vandalized . the tagger managed to spray charlie without the handlers seeing . the paint was cleaned off charly later on tuesday night without a problem . however the lapd has requested the public 's help in identifying the person responsible .\nbrazilians are protesting president dilma rousseff over a massive bribery scandal . protesters say she should be impeached for failing to halt the corruption at state-run oil company petrobras . rousseff 's approval rating plummeted to 13 % after the protests last month .\nfloyd mayweather takes on manny pacquiao in las vegas on may 2 . iyanna mayweather has been spending time in her father 's training camp . she says she is amazed by her dad 's work ethic in the gym . mayweather vs pacquao is being billed as the most lucrative bout in boxing history .\nnational union of teachers -lrb- nut -rrb- wants 45-minute lessons followed by 15-minute play time . resolution says children are not ready for ` formal sitting down ' before seven . also likely to say lunch and break times are being used for ` coaching and cramming ' motion calls on nut to support play in the curriculum at key stage 1 .\nrangers chairman dave king has been cleared by the court of session . king won 85 per cent of shareholder backing to return to the board . the south african-based businessman hopes the sfa will pass him as ` fit and proper ' in the final stage of approval .\nkayahan was diagnosed with cancer in 1990 . he competed in the eurovision song contest in 1990 , the year he released his first album . he died friday in a hospital in istanbul , five days after his 66th birthday . `` we are in grief over losing kayahan , '' turkey 's prime minister tweets .\njames may and richard hammond pictured outside clarkson 's flat . top gear executive producer andy wilman also present at meeting today . comes just hours before it was sensationally announced he had quit the bbc . mr wilman is now free to reunite with team on rival channel . there is widespread speculation that the men are working on new motoring series . may said bbc would be ` stupid ' to try a version of show with ' surrogate jeremy '\ndavid cameron made a visit to poole in dorset and sunny bristol . the prime minister was speaking in an almost empty science park on the city 's outskirts . he was appearing alongside george osborne , chancellor of the exchequer . mr cameron dutifully made his prepared speech , saying there was a ` moral ' case for the tories ' economic policies .\nlow cost of oil and supermarket price wars are helping to drive down prices . milk , bread , eggs , cheese and roasting chickens have seen the biggest fall . electrical goods have dropped 5.7 per cent in the last 12 months . high street prices have also fallen by 7.8 per cent as a result of the price wars .\ntampons absorb chemicals used on toilet paper , laundry detergents and shampoos . these chemicals glow under uv light , meaning they could shed light on misplumbed pathways . the technique was trialled by suspending tampons in 16 surface water outlets . the scientists found that nine of the tampons glowed , confirming the presence of optical brighteners - and therefore sewage pollution . by using this technique , they can trace the source of the sewage to certain households so that pipes dumping sewage into rivers can be redirected . experts think tampons could be a cheap solution to detecting pollutants in rivers .\nformer australia cricket captain and commentator richie benaud died last friday at the age of 84 . a small private funeral was held in sydney on wednesday for benaud . shane warne and ian chappell were among the guests at the service . benaud 's wife daphne benaud declined a state funeral offered by the australian pm .\ndoncaster rovers drew 0-0 with fleetwood town at the keepmoat stadium . the yorkshire side are rooted to the bottom of league one . the media team faced a tough challenge when they were faced with sticking up the match highlights on the club 's youtube channel .\nkevin mirallas opened the scoring for everton after 29 minutes . ross barkley missed a penalty for the visitors in the second half . ashley barnes was sent off for burnley on the stroke of half-time . everton 's on-loan winger aaron lennon was the man of the match .\na small group of 117 migrants have arrived in the port of augusta , sicily . they were picked up by a tugboat off the coast of libya . they are among nearly 10,000 migrants who have arrived on italian shores since the weekend . the migrants are mostly from sub-saharan africa . they will be taken to migrant camp in northern italy .\njulian zelizer : the u.s. leads the world in incarceration , not education . he says we are home to 25 % of the world 's prison population . zelizer says we must examine the way our criminal justice system works and take actions to change it .\na california parole board has granted parole to james schoenfeld , 63 , 39 years after he and two other men kidnapped 26 children and their bus driver . the kidnappers were inspired by the 1971 clint eastwood film dirty harry in which the antagonist kidnaps a school bus for ransom . schoenfield abducted the children and then kept them ` buried alive ' in an underground trailer while he and his co-conspirators negotiated a $ 5million ransom . the state board of parole hearings granted parole on the 20th time it considered the possibility of releasing the california man .\ntelevision presenter richard wilkins broke down as he retraced his grandfather 's footsteps in gallipoli . his grandfather george william thomson served in gallipsia as part of the new zealand medical corps . wilkins , 60 , made the pilgrimage to gallipoli on the eve of the centenary commemorations . he tells how having read excerpts from his `` papa 's '' war diary , lit ' a flame of interest ' to learn more of the world war one veteran .\nbodycam footage shows donald allen , 66 , pointing a loaded , 22-caliber pistol at officer brian barnett , 25 . barnett then shoots allen dead after he comes at him with the gun , making threatening statements as he does . the camera was malfunctioning and it was initially thought the video was lost . it was recovered but the audio was not .\nandrew hutchinson was reported to hospital trust for indecent behaviour . but bosses at john radcliffe hospital , oxford , chose not to investigate . in 2009 a student nurse reported hutchinson for taking inappropriate photographs . the hospital only reported the complaint after being told of more serious allegations . hutchinson was convicted of 23 separate sexual offences last month . he will be sentenced at oxford crown court on april 27 .\nmarc-andre ter stegen joined barcelona from borussia monchengladbach in may . the 22-year-old has failed to make his la liga debut for the catalan giants . ter stegan is keen to impress manager luis enrique in the champions league .\nreport said 766 violent anti-semitic acts were carried out around the world last year . arson , vandalism and direct threats against jews included in figure . in france , the number of anti-semitism attacks rose to 164 in 2014 compared with 141 in 2013 . britain registered 141 violent incidents against jews in 2014 , after 95 a year earlier .\nsinger adele adkins has earned # 5million in the last year . she has now amassed a fortune of # 50million , according to the sunday times . the mother-of-one has twice the wealth of her nearest rivals . ellie goulding is the nearest female competition , with # 13million . ed sheeran , sam smith and jamie cook are also in the top 10 .\nthree people were hospitalised after two planes collided on a runway . the crash occurred at moorabin airport , near melbourne , shortly before noon on saturday . it is believed one of the planes had issued a may-day warning and attempted to make an emergency landing . the other plane was idling on the runway when it smashed into the other plane .\naston villa drew 3-3 with qpr in the premier league on tuesday night . tim sherwood 's side went behind twice before christian benteke scored a hat-trick . the villa boss went from despair to ecstasy and back again . sportsmail brings you all the best images of sherwood on the villa touchline .\na memorial display at dusseldorf airport has revealed the first photograph of hero pilot patrick sondheimer . he tried to break down the cockpit door to stop killer pilot andreas lubitz from crashing the aircraft . lubitz , 27 , had been plotting the disaster online under the name skydevil .\nnauru guards have been suspended after posting anti-islamic messages on social media . seven of the men are former australian defence personnel . they were pictured with pauline hanson at a recent reclaim australia rally . the men are part of the 'em ergency response ' team stationed at the detention centre . transfield services said the men had breached a company policy that they display ` cultural sensitivity '\ncristiano ronaldo was presented with a special shirt by real madrid president florentino perez . the 30-year-old scored his 300th goal for the club against rayo vallecano on april 8 . ronaldo only trails raul and alfredo di stefano in the scoring charts .\nalabama officials concluded that the 88-year-old author is of sound mind and not an elder abuse victim . they launched two investigations into the circumstances surrounding the launch of go set a watchman . many feared outside influences were at play as lee , who lives in an nursing home in monroeville , alabama , had said for decades she wanted to kill a mockingbird to be her only published novel .\nandrew silicani , 23 , of cheyenne , wyoming , pleaded guilty on monday in federal court to four counts of using the mail in his unsuccessful plan to hire someone to carry out the murders . he faces up to 40 years at sentencing this summer . silicani was serving a five - to seven-year sentence at the state prison in rawlins for conspiracy to commit robbery and robbery resulting in bodily injury .\n26-year-old waitress amanda bailey has revealed she had her ponytail pulled by new zealand prime minister john key while she was at work . she took to an online blog to detail how mr key pulled her hair in the cafe on six occasions . ms bailey said she published the details of mr key 's behaviour as she ` expected more from him ' and wanted ` the public to be aware ' but mr key defended his pranks as ' a bit of banter ' and said he had already apologised for his actions .\nhannah wilson , 22 , was found dead in rural brown county , indiana , on friday morning after a night out . daniel messel , 49 , was arrested hours later and has been charged with her murder . her friends said she was last seen at kilroy 's sports bar in bloomington , where she had been partying with friends . they put her in a taxi and gave the driver her address . lauren spierer , 20 , vanished after leaving the same bar in 2011 .\njanet muller 's body was found in the boot of a burning car on march 13 . the 21-year-old was reported missing from mill view hospital in hove . cctv footage shows her in portslade on the night before her death . christopher jeffrey-shaw , 26 , has been charged with her murder . her family paid tribute to her ` bubbly ' personality in a heartfelt tribute .\nrory mcilroy is favourite to win the masters this week at augusta national . gary player believes mcilory will be an ` absolute superstar ' if he wins . the south african legend says tiger woods ' grand slam is the best golfing feat he has seen . mcil roy is only the sixth player to win all four majors at the age of 25 .\nzacariah denamur claims three quarters of all meals served in french bistros , brasseries and cafes are shipped in from a factory and microwaved . he compared chefs ' corner-cutting as being the culinary equivalent of a low-cost airline . last year france did not get a single entry in to the top ten of the world 's 50 best restaurant awards .\nbenteke scored a hat-trick against qpr in the premier league last week . the belgian striker has scored eight goals in six games for aston villa . tim sherwood 's style has rejuvenated the striker 's form for villa . benteke is relishing the prospect of an fa cup semi-final with liverpool .\njaap stam was sold to lazio by manchester united in 2001 . roy keane insists a footballer should ` always look after no 1 ' raheem sterling is within his rights to get the best possible deal he can for himself , according to keane . sterling 's agent aidy ward has a reputation for an aggressive strategy .\nalbert davison , 73 , made a fortune by landing a series of six-figure bets . when he died , aged 73 , he owned a seven-bedroom country estate in surrey . but before he died he and his second wife fought a bitter battle through the divorce courts for four years over his fortune . a judge found that mr davison had squandered millions of his winnings through ` wasteful expenditure ' and ` bad decision making ' but now his beautician ex-wife has appeared back in court , seeking to boost her slice to more than # 1million . she claims his death has freed up more of his cash by allowing him to avoid a huge tax bill .\ngraham thorpe signed a form supporting the right-wing party last year . but he now wants to find out more about their policies . sir ian botham and geoffrey boycott deny any association with ukip . peter alliss looked as if he was chewing gum at the masters .\ntoby huntington-whiteley stars in new summer advert for jacamo . the 25-year-old personal trainer is joined by cricketer freddie flintoff . the campaign is filmed in majorca and features toby in a tailored suit . freddie has been the face of the brand for four years .\nproperty developer christopher stefanoni says he was punished for proposing affordable housing projects in darien , connecticut . his son , 9 , was moved to a lower-level team in the little league . stefanoni was also banned from coaching in the league . town officials deny the allegations and say they are the victims of small-town vengeance . darien is 94 per cent white , with 620 hispanic residents and fewer than 100 blacks .\nstanford university scientists have developed a new antibody injection . it could ` wipe out cancer ' by rooting out and eradicating both primary tumours and distant metastases , they say . the research has been hailed a ` tour de force ' and could be used to train the body 's immune system to attack melanoma , pancreatic , breast and lung cancer . the lab-engineered antibodies could eradicate not only primary tumour , but also distant metastas that have spread through the body .\nformer ba'ath party leader izzat ibrahim al-douri killed in fighting . al-dour was deputy to saddam hussein and was on us list of 55 most-wanted iraqis . he was the king of clubs in the infamous pack of cards issued by us after invasion . al douri 's body was pictured on social media with teeth missing . car bomb killed three people outside u.s. consulate in erbil today .\nmorgan stanley said labour would be ` dragged to the left ' by snp . said it would result in even more money going north of the border . said labour would then be expected to abandon its pledge to manage the public finances carefully . comments mark another vote of confidence for chancellor george osborne .\nisraeli pm benjamin netanyahu says the deal does not roll back iran 's nuclear program . `` not a single centrifuge is destroyed , '' he says . `` that 's a very bad deal '' sen. dianne feinstein says netanyahu needs to `` contain himself '' sen.-elect lindsey graham says a new president would likely strike a better deal .\nblake lively gave birth to son james in january . she has been showcasing her trim figure in various fashion looks . but the actress says losing weight has n't been a priority . she says her secret is long walks , yoga and chocolate . she also revealed that she ` loves ' to eat chocolate .\nsouthampton face tottenham at st mary 's on saturday . mauricio pochettino left saints for spurs last year . ronald koeman has taken over and is leading the saints to top of the premier league . fans are planning to turn st mary 's orange to show their support .\ngap between pay rises for young and older staff has widened significantly in past five years . critics say employers are taking advantage of older workers by failing to train them . under-25s saw their wages rise more than eight times faster than the over-50s .\njames faulkner has signed a deal to join lancashire for the bulk of this summer . faulkners will replace compatriot peter siddle , who will play in the red rose 's first four lv = county championship matches before joining the australia squad . faulkner was named man of the match as his country beat new zealand to win the world cup last month .\nchild protection services seized rafi , 10 , and dvora , six , from a maryland park on sunday . the meitivs say their children were picked up by police for the second time in two months after being found wandering the street alone . the couple , both scientists , say they were left to panic for hours by cps workers after their children went missing . the children were reunited with their parents at 10:30 pm .\nrare pink croc hermes birkin bag goes on sale for # 140,000 . made-to-measure bag comes embellished with rubies . experts say it is a good investment and is worth more than a car . victoria beckham and kim kardashian are big fans of hermes .\non a catwalk in xi'an in china models strutted their stuff in gold underwear . it is thought the look is influenced by royal women in history . the shirt alone worn by the male model weighed in at 7lbs . the idea came after a chinese designer unveiled an extraordinary set of underwear made entirely of gold last year .\nsteve mcclaren has been linked with a move to newcastle at the end of the season . derby want sean dyche to replace mcclaren if he leaves this summer . dyche has impressed in the premier league with burnley this season . the clarets host tottenham on sunday in the league .\nelijah mccrae 's parents created a 30-item ` bucket list ' for their terminally ill son . the five-month-old died on monday evening after taking a turn for the worse . his parents jessica and andrew had hoped to take him to sydney 's aquarium and opera house . he was diagnosed with a fatal genetic disease that meant he would likely not live to see his second birthday .\nmanchester city 's micah richards is out of contract in the summer . the defender has been on loan at italian side fiorentina this season . but the 26-year-old wants to return to the premier league . richards has changed representation and is set to leave fiorentina .\npresident vladimir putin claims us helped chechen islamic insurgents wage war against russia . claims phone records show direct contact between north caucasus separatists and us secret services in early 2000s . putin said he raised issue with then-us president george w. bush , who promised to ` kick the ass ' of intelligence officers in question .\nleah williamson scored a penalty to give england a 2-2 draw against norway last saturday . but the match was replayed after a german referee made an on-field mistake . the match was played again on thursday night in belfast for an 18-second rematch . the arsenal ladies star scored the penalty in the second half to secure a place in this summer 's european championships finals in israel .\ntaylor alesana of fallbrook , california took her own life on april 2 after being bullied because she was transgender . the north county lgbtq resource center said the young woman did not have the support she needed from her school and adults . alesana had a popular youtube channel in which she discussed her struggles and the bullying she faced . she is the second transgender teen who sought services at the north countylgbtq resource center to die by suicide since march .\njonathan trott was dropped from england 's last ashes squad . the batsman has been in fine form for warwickshire and deserved his call-up . alastair cook feels trott is ready for the ` pressure cooker ' of international cricket . the pair are heavy favourites to open the batting together in west indies .\na restaurant critic and festival curator has slammed tasmania as a state full of ` dregs , bogans and third-generation morons ' leo schofield , 79 , claimed living in tasmania was the unhappiest time of his life . he moved to hobart to set up a baroque music festival in what he claims was an attempt to help tasmanians take advantage of its grand heritage . he decided to relocate back to new south wales after the tasmanian government cut the festivals funding by 25 per cent .\nmen are able to produce sperm throughout their lives , but quality declines with age . this increases the risk of epilepsy , autism and breast cancer in offspring . two-thirds of new uk fathers are now over 30 , and the researchers say older would-be fathers should be better informed about the risks of conditions that can occur in their offspring .\nflames up to 35ft high spread through 70 hectare heathland in dorset . firefighters spent six hours tackling flames at st catherine 's hill nature reserve . police have arrested two schoolboys , aged 14 and 15 , on suspicion of arson . fire investigators have confirmed the fire was started deliberately .\nsri lanka , with its shimmering sandy beaches , enthralling wildlife and relics of ancient civilisations , is high on lists of places to visit in 2015 . gareth huw davies enjoys the new stability on the teardrop-shaped island in the indian ocean .\nsam holtz , a 12-year-old sixth grader from lake zurich , illinois , beat out 11.5 million entries to win the annual espn tournament challenge . sam picked duke to win monday 's ncaa championship game , which they did by overcoming the favorite wisconsin badgers 68 - 63 . he should now be eligible for the $ 30,000 grand prize of a $ 20,000 best buy gift card and an all-inclusive trip to hawaii this november , but is too young .\nboxer manny pacquiao has released a new music video . the 36-year-old wrote and sang the song ` lalaban ako para sa filipino ' the tune translates as ' i will fight for the fillipino ' pacqu xiao will fight floyd mayweather jnr on may 2 .\nronen ziv 's unborn baby is due this week in kathmandu . he had tickets to travel to nepal for his child 's birth from a surrogate mother . nepal is a popular place for israeli couples to have surrogate children . companies that help arrange surrogate pregnancies estimate 25 couples are now in kathandu .\nroberto martinez believes sean dyche 's burnley side have fearlessness . everton boss says it is similar to that of his old wigan side . wigan avoided relegation from the premier league in 2010-11 . everton face burnley at goodison park on sunday .\nthe wonderland house in brighton has been designed by jacqueline martin , 37 . the house sleeps up to 24 people and is spread out over three floors . guests can stay in the wonderland house as alice , the queen of hearts or the mad hatter . the looking glass cottage is a smaller property with a different theme for each night .\nnigel farage unveiled ukip 's election manifesto this morning . deputy leader paul nuttall appeared in front of a photoshopped library . he was seen holding a vintage hard-back book called ` british rebels and reformers ' the vintage hardback is listed on amazon as a 48-page illustrated history book from 1942 . the bizarre row capped a day of confusion for ukip . immigration spokesman suzanne evans appeared to contradict her own border policies .\nrussian military inspectors have arrived at a huge nato war games exercise off the coast of scotland , it emerged yesterday . british officers were forced to accept the four-day inspection from the experts from moscow under a european arms control treaty . they are attending exercise joint warrior , designed to send a signal to the president in the face of continuing aggression .\nqueens park rangers defeated west bromwich albion 4-1 on saturday . eduardo vargas , charlie austin and bobby zamora scored for the hosts . victor anichebe headed in a consolation goal for tony pulis ' side . joey barton added a fourth for qpr in the final minutes of the game . youssouff mulumbu was sent off for west brom in the 84th minute . the result leaves chris ramsey 's side just two points above the relegation zone .\nworld no 5 caroline wozniacki watched a basketball game in indiana with nfl star j.j. watt . the duke blue devils were beaten 68-63 by the university of wisconsin badgers . wozniki had spent the day before the game with us president barack obama . the pair took part in the annual easter egg roll at the white house .\nlast year , mod gave a total of # 81.9 million in compensation to members of the armed forces for injury , death and property damage . a new watchdog is to be created to investigate the way bullying and abuse cases are dealt with in the armed forces . the case of cpl anne marie ellement , 30 , who was found hanged at bulford barracks , wilts , in 2011 prompted the commitment .\nnew : taliban spokesman denies responsibility . the suicide bomber detonates his explosives near a group of protesters in eastern afghanistan . an afghan lawmaker taking part in the protests is among the 64 people wounded , police say . no other organization has so far claimed responsibility for the attack . .\ntests carried out in combination with chemotherapy drugs . us scientists used low doses of the drug oxaliplatin . it has a unique ability to activate cancer-killing immune cells . each year in the uk around 41,000 men are diagnosed with prostate cancer . 11,000 die from the disease each year in britain .\nralph cramer , 70 , and his wife , lynn , 59 , were returning home from the creekside café in mount joy at about 9 p.m. on sunday . the couple 's 1923 model t ford convertible , which had been rebuilt , skidded off the roadway and flipped over . first responders arrived to find that the couple had died from multiple traumatic injuries suffered in the crash .\nfourteen people were hospitalized after the entire roof of a new jersey church came crashing down mid-song during an easter sunday service . around 75 people were inside the korean union united methodist church in rahway when the ceiling collapsed . thirteen people had minor injuries while one woman was sent to the trauma center at university hospital with a serious but non-life threatening head injury .\nnational assembly votes through amendment to a law on public health . mps highlight the irresponsibility of fashion websites encouraging women to keep their weight as low as possible . ` pro-anorexia ' sites will face a year in prison and a fine equivalent to just over # 7,000 .\nman and woman arrested over discovery of mass greyhound dog grave in queensland . the 71-year-old man and 64-year , woman were both charged with unlawfully possessing a firearm . the carcasses of more than 50 greyhounds were found at the bush site in coonarr , near bundaberg , on tuesday . a police search found a rifle and ammunition in a home in bundaberg on thursday .\nindonesia summons saudi ambassador after second indonesian maid executed . karni bt . medi tarsim , 37 , was beheaded without official warning . she was sentenced to death in march 2013 for killing her employer 's four-year-old child . indonesia says it has `` successfully freed '' 238 of its citizens from the death penalty .\nhuge hail storm pummelled sydney on anzac day , coating streets and backyards in sleet . marble-sized hailstones , some up to 2cm in diameter , pummeled multiple suburbs in the city 's east and west . seven buildings collapsed in western sydney after they were damaged by the storm , with fire and rescue crews still working to assess damage . a woman had to be rescued from her car after she became trapped in the rising waters at zetland in sydney 's inner-east .\nformer hull chairman glenn roeder has made a surprise return to football . roeder and adam pearson have been appointed to a new managerial committee at sheffield wednesday . the trio are charged with returning the owls to the premier league . the off-field team has been put in place by dejphon chansiri .\ndaily mail australia submitted an application to kfc for a job . the company 's human resources boss , robert phipps , said the test was designed to rank the thousands of applications . he said the questions were not anchored to a personality type , but rather different work styles . mr phipp 's estimated that only one third of applicants make it through to the interview process . mcdonald 's 23-question multiple choice quiz is far more complicated .\npillows are key to a good night 's sleep . we rest our weary heads on our pillows for more than 2,500 hours . synthetic fillings are the most popular type of pillows in the uk . but which is a pain in the neck and which is an ideal sleep pillow ?\ndeborah kane , from manchester , had her right eye removed three years ago . it was removed in a life-saving nine-hour operation to stop the cancer spreading to her brain . the 46-year-old believes her cancer developed from getting badly burned on holiday in lanzarote when she was 15 . she also bought cheap sunglasses without proper uv protection .\narsenal face liverpool on saturday in the premier league . alexis sanchez was courted by a number of top clubs last summer . but the chile forward chose to join the gunners instead . arsene wenger says he is happy sanchez chose arsenal . wenger also plays down talk of a move for raheem sterling .\none world trade center 's 102nd floor observatory opens next month . visitors will be able to watch a time lapse video of lower manhattan from the 1500s to the present day . the video will play during 47 seconds it will take visitors to reach the observatory . the panoramic images are displayed on three high-definition monitors on the sides of the elevators .\nmichael vaughan has emerged as the favourite to become director of england cricket . the former england captain has already held talks with new ecb chief executive tom harrison . andrew strauss and alec stewart are also in the frame for the role . the ecb sacked paul downton as managing director on wednesday .\naaron siler , 26 , was shot dead by police officer pablo torres on march 14 . torres is currently on leave pending the outcome of the investigation . a billboard featuring a photograph of torres and his dog has been erected in kenosham , wisconsin . siler 's family and friends have called the billboard ` disrespectful ' and are asking for it to be taken down .\na six-alarm blaze erupted at general electric 's appliance park in louisville , kentucky , friday morning . there were no known injuries at the facility . the fire broke out in a non-production building , where up to 50 people work during a normal day . the building reportedly collapsed at 8.30 am . production at the plant has ceased and workers have been evacuated . the cause of the fire is not yet known . residents were told to stay in a room with the fewest possible windows and shut off any ventilation from outside .\nchloe knapton , 21 , was attacked by a man in a traffic jam in holmfirth . he smashed down her car window with a bottle , causing glass to shatter . ms knapt on was left with deep wounds to her shoulder , neck , nose and mouth . she had surgery and is now ` unable to smile ' because of the stitches around her mouth .\ncarwyn scott-howell was on holiday in french resort of flaine with family . he got lost on the slopes and left the piste before walking through wooded area . police believe he fell down a 160ft cliff after trying to find his parents . search and rescue workers discovered his tracks in the snow leading to the cliff . his body was recovered by rescuers in a helicopter at around 7.30 pm .\ndorset man barry selby found the snack in a bag of tesco cheese and onion crisps . the 54-year-old said he was ` shocked ' to make the discovery . he has decided to keep the two inches tall by two-and-a-half inches wide snack .\nmanchester city have decided to listen to offers for yaya toure and samir nasri . premier league champions are also open to allowing samir nati to leave the etihad stadium . manuel pellegrini is under intense scrutiny following sunday 's 4-2 defeat by manchester united .\nbailey murrill , of denton , texas , was paralysed for 11 days . she had regained feeling and movement in her legs and decided to walk . her favorite nurse came on shift and was shocked when she saw her get up . the woman screamed and then hugged and rocked her young patient . the video was filmed by bailey 's mother becky murrill .\nstrong storms rumbled through the southern plains early on thursday , missing major population centers but offering a preview of bad weather that could hit chicago , detroit and other big cities in the midwest later in the day . the storm system stretches from texas up to the great lakes and down to north carolina . hail of up to 4 inches in diameter smashed buildings and cars and high winds tore off roofs and downed trees , as wild weather hit 12 states . meteorologists and emergency managers from the high plains to the appalachians are on alert following the year 's first widespread bout of severe weather .\nfootballing legends ronaldo and zinedine zidane took part in the 12th annual match against poverty . the match was held at the stade geoffroy-guichard in saint-etienne . former greats including clarence seedorf , fabian barthez , jay-jay okocha and gianluca zambrotta also played . pierre-emerick aubameyang scored a hat-trick as his side lost 9-7 .\ntwo people were rescued from their cars at zetland in sydney 's inner-east . the woman was spotted by a police rescue squad officer on his way to work . the incident was just one of many flash flooding rescues that emergency services had attended from 4pm . marble-sized hailstones pummelled multiple suburbs in sydney and the blue mountains . seven buildings collapsed in western sydney after suffering damage from the storm . two factories at huntingwood , in western nsw , have collapsed due to the weather .\narsenal drew 0-0 with chelsea at the emirates on sunday . olivier giroud believes the premier league is chelsea 's this season . striker giroud admits he gets annoyed with people commenting on his hair . the frenchman believes arsenal will continue to improve and challenge next season .\ncrystal palace manager alan pardew wants yannick bolasie to stay . the winger has been watched by liverpool and newcastle this season . pardews believes bolasies will learn from wilfried zaha 's mistakes . zaha made just four appearances for manchester united in two years .\nchipotle says it does not know when it will have enough pork to supply all of its stores with sustainably raised meat for its carnitas burritos . the fast-casual chain removed carnitas pork burrito from roughly a third of its locations in january , but still does n't have a stable supply of the meat . chipotle dropped one of its pork vendors earlier this year .\na video has been posted on facebook showing a girl sucking on a tube of pringles . the clip has been watched more than 3.5 million times in just a day . the worrying trend started sweeping social media over the weekend . it encourages teens to blow their lips up to epic proportions using bottles or shot glasses .\njoe sullivan will leave his role as facebook 's security chief to help uber . the 46-year-old has been tasked with defending the company 's safety . comes after a series of high-profile sexual assaults involving uber drivers . in new delhi , a driver was accused of raping a passenger in december . this week in denver , a passenger was allegedly asked to perform oral sex on her driver . lawsuits have been brought against uber in san francisco and los angeles .\nshots fired at u.s. census bureau , then at a popular restaurant in washington , d.c. . the shootings are connected , police chief says . the suspect fled after a domestic kidnapping , she says . an officer and the suspect were wounded , she adds .\ned miliband mobbed by screaming hen party on his battle bus in chester . labour leader was jokingly referred to as the stripper by the group . bride-to-be nicola braithwaite was allowed on the bus and emerged grinning . she said : ' i got a full on picture with him '\nfederal mp bob katter released a bizarre statement on his party 's website . he said the queensland government believed embattled mp billy gordon would quit after he was accused of domestic violence . mr katter , who is of lebanese descent , said he sympathised with mr gordon 's position . he has since defended the statement , saying he used the term black puppet in light of his personal experiences . mr gordon was forced to quit the queensland labor party last week .\njb holmes won the shell houston open after two play-off holes . johnson wagner saw a four-foot putt lip out on the second hole . jordan spieth was eliminated on the first hole of the play-offs . holmes had started the day six shots off the lead .\nbritish airways first officer mark vanhoenacker shares his passion for his job . the book is timely as germanwings flight 9525 was deliberately crashed . vanh koenacker is an american who learned to fly in britain . he admires the 747 like a sculptor might a perfect human torso .\ngianni paladini is keen on taking over at league one side bradford . former qpr chief has registered as director of bradford city holding company . paladinis has previously tried to buy birmingham city from carson yeung . bradford were beaten 6-0 at home by bristol city on tuesday .\nitaly has the highest number of unesco world heritage sites in the world . but many of the 50 sites are crumbling due to neglect and lack of public resources . italy could live off tourism , if well exploited , says symbola foundation . the country needs to change its mindset , says travel writer alessandra cevallos .\nyaya toure wants to meet with manchester city over his future . the midfielder 's agent dimitri seluk says he wants to talk to city . toure has two years left on his current contract at the etihad stadium . inter milan boss roberto mancini wants to be reunited with toure .\nformer bomb disposal expert steve tempest-mitchell , 56 , weighed 32st . he had been turned down for gastric bypass surgery two and a half years ago . but decided to go through with operation after struggling to control diabetes . father-of-three lost 16st and his stomach shrunk to size of a tennis ball .\nthe swan come dine with me ice cream & gelato maker is best for dinner parties . the sage smart scoop by heston blumenthal is a fantastic ice cream maker , but bulky and expensive . shake n make ice cream maker is best on budgets but for kids the giant plastic cone is perfect .\nremains of an extinct pygmy sperm whale that died seven million years ago have shed new light on the evolution of modern day whales . the remains , which were discovered in panama , indicate that the bone involved in sound generation and echolocation got smaller throughout the evolution . in contrast modern sperm whales are much larger than their extinct relatives . the find will help experts fill in gaps in the evolution of cetaceans .\ncanadian fair trade network hopes images will raise awareness of the plight of garment workers around the world . photographs feature clothing labels telling the tragic stories of factory workers from bangladesh , cambodia and sierra leone . each label says that the product is 100 per cent cotton - but adds that is not the whole story .\npsg face barcelona in the champions league quarter-final second leg on tuesday . luis suarez will be at the parc des princes with barcelona 's luis enrique . edinson cavani will be tasked with scoring in the tie for paris saint-germain . the uruguayan has been linked with a move away from the french club .\nfour-year-old tryster won the coral easter classic at lingfield . jockey william buick predicted a big future for the horse . godolphin dominated # 1.1 million all weather finals day . buick also rode pretend to victory in the unibet sprint championship stakes .\nethan czahor has launched ` clear ' which removes any posts that might cause you problems with your current or future employer . users can search for keywords such as ` gay ' , ` black ' or swear words and the program deletes any tweet that mentions them . mr czahsor was fired from his job as a chief technology officer for jeb bush in february . he was fired for making sexist and homophobic remarks on twitter .\nwwf : 70 percent of ocean 's overall economic value relies on its continued health . by 2050 , it is possible that the ocean could lose its coral reefs , says wwf 's john sutter . sutter : the loss of the ocean 's critical habitats and species would have a devastating ripple effect . he says the ocean is truly too big to fail .\nhassan rouhani : `` we can cooperate with the world '' he says iran kept its word to iranians in negotiating the framework deal . the deal includes reducing iran 's stockpile of low-enriched uranium . but iran will keep at least some centrifuges and no longer face international sanctions .\nhomeless people in the bay area are being handed free smartphones by tech companies . community technology alliance is giving away google handsets . they come loaded with apps that help the homeless find shelters , soup kitchens , and warn of severe weather . the phones are also designed to help people apply for jobs and find housing .\narsenal manager arsene wenger reveals his team selection process . wenger says he agonises over his starting line-up all week . the frenchman has taken charge of 1,056 matches since his appointment in 1996 . wenger has won three premier league titles and five fa cups .\ntrackside tv presntor adian rodley has gone viral in a hilarious video of him celebrating the outcome of the $ 2 million australian derby . rodley was managing the winning horse mongolian khan with new zealand jockey opie bosson . the race expert has since tweeted that he has no intention of watching the video .\nchelsea manning is serving a 35-year prison sentence for leaking classified documents . the former army intelligence analyst is now known as chelsea elizabeth manning . she is not allowed internet access in prison , but she can now tweet from prison . manning says she will be using a voice phone to dictate her tweets to a communications firm .\npriscilla presley will serve as a witness at the first wedding to be held at an all new chapel of love in las vegas . the 69-year-old collaborated with nbc 's today show to launch a contest for one elvis-obsessed couple to win the ` ultimate wedding ' the winning duo - announced next monday - will tie the knot at elvis presley 's graceland wedding chapel inside the westgate hotel on april 23 .\nsir john chilcot 's inquiry into the iraq war began in 2009 . it stopped taking evidence in 2011 , but will not report until 2016 , source said . publication was expected to be delayed until after the general election . but it has now been suggested the findings will not be published until 2016 .\narsenal face reading in the fa cup semi-final on saturday evening . gunners boss arsene wenger says something must be done to solve the fixture scheduling mess . arsenal will take on reading as chelsea take on manchester united at stamford bridge . wenger also branded rumours that he will be replaced by jurgen klopp as ` ridiculous '\nwarning : graphic content . nsw police have been left stunned after coming across a car covered in chili peppers . the car was parked on a busy street covered in hundreds of chili peppers . the incident occurred on bridge st in hornsby on the upper north shore of sydney . nsw traffic and highway patrol command shared the bizarre image on their facebook page .\nleia is an eight-month-old boxer from pennsylvania . she was filmed as she lay on the couch and latched on to a baby 's pacifier . footage shows her then sucking on it before closing her eyes and loudly snoring in her sleep .\nandrea yates , from clear lake , texas , drowned her five children in the bathtub in june 2001 . she had been suffering from postpartum psychosis and was diagnosed with postpartums depression . she was convicted of capital murder in 2002 but was found not guilty by reason of insanity . her husband , russell ` rusty ' yates , has since remarried and has a five-year-old son . he has slammed her murder trial as the ` cruelest thing he has ever witnessed '\njonathan trott admits he thought his england career was over after he reached ` breaking point ' in brisbane and was forced to quit the last ashes tour . trott is set to make his 50th test appearance against west indies on monday . england face west indies in the second test at the st kitts cricket ground .\nandy murray beat tomas berdych 6-4 , 6 - 4 in the miami open final . the scot will now face novak djokovic in sunday 's final . murray and berdych have a history of disagreements . the pair met in the australian open semi-final in january .\nmolalla log house in oregon was constructed in 1795 - ten years before lewis and clark reached the pacific ocean . historic building repairer gregg olson and architectural historian pam hayden have been analyzing the log cabin for seven years . they believe it could have been used by a small settlement of russians sent to the willamette valley as farmers to feed fur traders in alaska . the cabin 's intricate construction is not consistent with pioneer building methods , suggesting it was created by foreigners .\nambulance call outs in london peaked at more than 600 per hour . this is over three times as many as in an ordinary night . the busiest hour was between 2am and 3am when 638 calls were answered . staff were answering 10 calls every minute just after midnight . 55 people in the capital were taken to hospital .\nvilla beat liverpool 2-1 in the fa cup semi-final at wembley on sunday . jack grealish played a key role in both villa goals at wembley . the 19-year-old has been a villa fan since he was four-years-old . grealishes idol is man united legend george best .\nformer police officer detlef guenzel murdered wojciech stempniewicz . the 57-year-old chopped up the victim 's body and buried it in his garden . he was today sentenced to eight years and six months in prison . the men met on a website for cannibal fetishists in october 2013 .\nwriter frank miller is returning to his best-known story . `` the dark knight returns '' was published in 1986 . the third chapter will be released sometime in the fall . miller : `` batman remains my favorite comic book hero '' and `` this sequel is going to be daunting ''\nmahendra bavishi , 69 , is a joint director of hatton garden safe deposit ltd. . he said robbers almost certainly had some inside information . mr bavishi also told of his fury at police for ignoring an alert . he described the robbery as a ` tragedy ' for his family . the business had just started to make a small profit following years of losses .\nap mccoy lands his second win of the meeting on friday . mccoy rode don cossack to victory in the melling chase . the jockey is preparing for his final grand national on saturday . gordon elliott trains cause of causes , a gelding owned by mccoy 's boss jp mcmanus .\ngroup of five afghan men were found hiding in the back of a refrigerated lorry . police sniffer dogs were used to find them after officers opened the back doors . it is thought the men climbed into the lorry in belgium before crossing the channel and travelling across britain . the men were discovered a week after an illegal camp of migrants was cleared in calais .\nm manny pacquiao faces floyd mayweather at the mgm grand in las vegas on saturday night . the 36-year-old moved from the philippines to fight in the far east at the age of 14 . he has since become one of the biggest stars in the world and is set to take on mayweather in the fight of the century . pictures have emerged of pacqu xiao as a teenager training in a manila boxing gym .\nhelal abbas , 55 , lost his bid to become the mayor of tower hamlets in east london days after the claim appeared in an ethnic freesheet . the race was won by lutfur rahman , 50 , a controversial figure who has been accused in a separate high court case of rigging his re-election victory last year .\njennifer barnett worked at archway school in stroud , gloucestershire , for 17 years . the mother-of-four left teaching to have her fourth child aged 42 and continued to work as an artist . she died last september , 14 months after being diagnosed with mesothelioma . coroner recorded verdict of death as a result of industrial disease in inquest . her husband , nigel , is now taking legal action against gloucester 's county council . he says his wife had to cut sheets of asbestos while working on a farm in her 20s .\nresearchers have found that bird species are continuing to drop in fukushima . scientists analysed 57 species in the region and found that the majority of populations had diminished as a result of the nuclear accident . one breed in particular had plummeted from several hundred before the 2011 disaster to just a few dozen today . this is despite radiation levels in the area starting to fall . and comparing it to chernobyl could reveal what the future holds .\nkennth crowdder was arrested in melbourne , florida , on friday after being spotted running naked through a neighborhood claiming he was god . when police arrived on scene , he had put on jeans and a t-shirt and walked toward the officer in an aggressive manner as he called himself god . a police officer shocked him with a taser twice , but each time he pulled the probes out of his body and attempted to fight the officer . the officer then punched crowder in the face and he fought back , claiming he was thor and attempting to stab the officer with his own police badge . crowder was booked into brevard county jail complex and later posted bond to be released .\nreal madrid host atletico madrid in the champions league quarter-final first leg on tuesday . carlo ancelotti has hailed diego simeone as one of the best coaches in the world . the italian boss admits facing sime one of his rivals is both an ` honour ' and a ` problem ' gareth bale is available for selection after missing real 's 3-0 win against eibar .\npixie curtis , 3 , was the youngest attendee at toni maticevski 's spring/summer 2015-2016 mercedes benz fashion week australia show on tuesday . pr maven roxy jacenko and blogger hass murad also brought their children along to the event . designer camilla freeman-topper brought her daughter along to ten pieces show at bondi icebergs on thursday .\nmax maisel was last seen leaving his car in rochester , new york , on february 21 . his car was found abandoned on the shore of lake ontario two months later . his body was found by a fisherman 200 yards from a coast guard station . family paid tribute to ` sensitive , caring young man ' in statement .\nmarcus copeland , 44 , admitted one count of fraud and was told he faces jail . married father-of-two built six-bedroom eco house in cwm dyserth , north wales . he sourced specialist scottish stone and installed latest environmentally friendly technologies . but he admitted lying on mortgage forms to secure more than # 800,000 for property .\nchloe hyart was abducted from her playground in front of her mother isabelle . the nine-year-old was raped and murdered by zbigniew huminsk . her body was discovered in a migrant camp last week . hundreds attended the funeral of the schoolgirl at st peter 's church . huge screens had been erected outside the church for mourners to pay tribute .\nwarning : graphic images . kadeem brown , 25 , was killed when a taxi jumped a curb and hit him in the bronx , new york . little tierre clark , 5 , who was waiting at a bus stop with her mother , died at the scene . the driver , 44-year-old emilo garcia , has been stripped of his tlc license .\nfisher-price magnets were popular in the 1970s and 1980s . the magnets changed the colours that people would associate with letters . researchers from stanford university studied 400 synesthetes . they found that at least six per cent learnt ` many of their matches ' from the toy . among those born in the decade after the toy began to be manufactured , the proportion of synesthete with learned letter-colour pairings was closer to 15 per cent .\ninglethistle beat celtic 3-2 in the scottish cup semi-final on sunday . gary warren picked up his second yellow card of the game . the defender will miss the final after being suspended for dissent last year . warren has called for a change to the ` ridiculous ' rule .\na damning new report has named and shamed some of the worst clothing brands sold in australia . the 2015 australian fashion report assessed the labour rights management systems of 59 companies and 219 brands operating in australia . lowes , industrie , best & less and the just group - which includes just jeans , portmans and dotti - were identified as some ofthe worst performing companies by the report . amongst the best performers were etiko , audrey blue , cotton on , h&m and zara .\nliverpool face aston villa in the fa cup semi-final on sunday . steven gerrard is set to start at wembley for the first time since 2006 . the 34-year-old has been out for three games since seeing red against manchester united . gerrard is leaving liverpool at the end of the season to join la galaxy .\na 19-year-old girl was gang raped by a group of men in panama city , florida last month . the bay county sheriff 's office released a video clip showing the crowd that was present at the time . the video allegedly shows hundreds of people gathered around the girl as the men violate her while she lays on a beach chair . the victim believes she was drugged before the incident . delonte martistee , 22 , and ryan calhoun , 23 , were arrested last week for sexual assault and officially suspended from troy university . officials say they are still searching for two other suspects in the attack .\nkatrina maddox , 23 , gave birth to edward on the way to hospital in norfolk . she had her first son reuben in the same way two years ago on the a47 . baby edward was delivered by his father peter in the back of the ambulance .\nthe prime minister will say labour and the snp are ` really on the same side ' he will unveil analysis to show they want ` more borrowing , more debt and more taxes ' since miliband became labour leader , the snp has trooped through lobbies with his mps in 91.5 per cent of commons divisions .\nchelsea boss jose mourinho believes the ballon d'or should be scrapped . arsene wenger said he was ` totally against ' the award last year . real madrid 's cristiano ronaldo is the current holder of the trophy . lionel messi has previously won the compeition three times .\narsenal face reading in the fa cup semi-finals on saturday . frank mclintock made 403 appearances for the club between 1964 and 1973 . the scottish defender believes alexis sanchez is the only current player good enough to get into the great arsenal teams of yesteryear . mclintocks believes the club should be aiming higher than fourth place .\nluke rockhold was dominant in his ufc debut against lyoto machida . the former strikeforce fighter is now the no 1 contender for the title . rockhold wants a title shot and a shot at mma history in new york . jacare souza beat chris camozzi in the co-main event .\nliam linford oliver-christie caught with drugs in police raid in west london . officers uncovered haul with help of a sniffer dog at council flat in september 2013 . 29-year-old 's father is former olympic sprinter linford christie . oliver-christie was jailed for 15 months in august 2012 for ` turning a blind eye ' to drug dealing at his home .\nadam leheup , 34 , had denied forcing himself on the 25-year-old woman . he told the jury she ` freaked out ' when he tried to comfort her about saggy breasts . university of greenwich graduate was found not guilty of rape and sexual assault .\nsocieties with less access to food and water are more likely to believe in an all-powerful deity , according to new research . study uncovered a link between belief in god and other societal characteristics , such as a strong social hierarchy . scientists suggest that religious beliefs help people cope in inhospitable habitats .\nlast month , nasa captured a 17 miles -lrb- 27km -rrb- long iceberg being born in the west antarctica 's getz ice shelf . b-34 is the 34th iceberg from the ` b ' quadrant of antarctica to be tracked by the nic . it appears to have fractured and moved out into the amundsen sea . the amundson sea is thought to be the weakest ice sheet in the west antarctic .\nencounters with common dolphins off the west of scotland have more than doubled over a decade , according to experts . scientists propose that climate change may have caused the surge in numbers . common dolphins were once a rare sight in the hebrides , preferring warmer waters found further south . experts believe that global warming has led to pods moving north .\npetri kurti , 13 , murdered glynis bensley , 47 , in smethwick , west midlands . he jumped her and stamped on her face so hard it left a footprint on her cheek . he then fled to a nearby park and boasted about the savage attack . kurti was jailed for a minimum of 12 years today and will be on licence for life . co-defendant zoheb majid , 20 , was sentenced to 10 years for manslaughter .\npreppercon was held in salt lake city , utah , suburb of sandy on friday . hundreds of survivalists and ` preppers ' descended on the city for two-day expo . they were shown underground bunkers , tactical bicycles and solar flashlights . also met actors from amc hit show ` the walking dead ' and learned new ways to store food .\ndenise fedyszyn , 37 , weighed 20st 4lb and wore dress size 26 . she was told she was too fat to go on a swing ride with her children . she joined weightwaters and changed her diet and exercise regime . now weighs just over 10st and wears a size 10 . her friend lisa walters , 29 , has also lost 35lbs in two months .\nhannah and alex built a two-bedroom home on the back of a 1986 hino flatbed truck . the couple spent a year and a half building the home in nelson , new zealand . the home is powered mostly by solar panels and the couple live almost self-sufficiently .\npug rescue couple jasper and jasmine will be ` married ' in a charity event in may . the event will raise money for pug rescue and adoption victoria . the couple were surrendered to the organisation in 2013 with a variety of health problems . both were morbidly obese , struggling to breathe , and almost blind . after six months of rehabilitation , they were found a loving home . the wedding will be held at the st kilda beachfront in melbourne . more than 300 people and 60 pugs are expected to attend the wedding . the bridal party will also be dressed to impress at the extravagant event .\nitalian doctor sergio canavero has vowed to perform first head transplant . says he will carry out the procedure in china if he is banned from doing so in the eu or former soviet union . claims he will be able to attach the head to a donor body in less than an hour . says the country which hosts the operation will be a ` world leader ' like the us when it put a man on the moon .\nthe fda has ruled that a number of kind bars are not as kind on the body as they purport to be . investigators found that a ` number of flavors ' were labeled ` healthy ' but were in fact ` misbranded ' one kind bar flavor - not included in the fda investigation - contains more calories , fat and sodium than a snickers bar . kind has said that nuts are to blame for the imbalance .\nposter read : ` democracy is a system whereby man violates the right of allah ' posters were stuck on lampposts and bus stops across grangetown suburb . cardiff council have begun removing the posters , dubbed ` chilling ' and ` threatening '\nthe 24 hour crack cocaine market is located in the slums of rio de janeiro . crack cocaine users visit the open-air bazaars to buy rocks of the drug and smoke it in plain sight . as the country 's drugs crisis reaches epidemic levels , its markets pull in anyone looking to get high . some of whom once held jobs , had loving families and harbored dreams of a better existence - all lost to their addictions .\nsince europeans came to easter island , or rapa nui , in the 1700s , people have wondered how the vast carved stones were erected . now experts believe they have finally discovered how the rapanui people placed distinctive ` hats ' made of red stone on top of the figures ' heads , more than 700 years ago . they believe that the hats , or ` pukao ' , were rolled up ramps to reach the top of figures which measure up to 40ft -lrb- 12 metres -rrb- tall . an estimated 100 pukao have been discovered so far , either in place on the statues , or scattered nearby .\naaron badland , 24 , and wife jade , 29 , assaulted a brazilian hotel worker . they were too drunk to remember what they had done at premier inn at stansted airport . mr badland was wearing his army uniform during the drunken attack . the couple were spared jail after chelmsford magistrates ' court heard they were ` ashamed '\nx factor finalist ella , 19 , is face of the batiste 's 2015 ` ready for it ' campaign . the campaign images show the singer in a variety of hairstyles . this will be the star 's first brand collaboration with the uk 's number 1 dry shampoo brand .\nfour-year-old girl attacked by ` staffy-type ' dog in brighton , east sussex . girl suffered a single puncture wound to her upper lip following incident . police said dog was off lead with two similar dogs - two were black and one was white .\nshahnawaz , 40 , was returning home from a family function when he was attacked . his motorbike grazed a car and he was told to move his car . he was beaten with iron rods by five men , including his two sons . the children , aged 13 and nine , begged police to help their father . but no one came forward to help him . he died on arrival at the hospital .\nadriana alvarez , 22 , says she is barely getting by , despite having worked for mcdonald 's for five years . she says she can only afford to pay for her son manny 's milk with food stamps , medicaid , and a child care subsidy . alvarez is a leader with fight for $ 15 , an international movement to raise minimum wage laws and acquire the right to unionize . she said her pay used to be even lower before she and fellow employees of the fast food chain began to protest .\ntracy walters died after making flurry of calls to police about sex-obsessed husband . ian walters , 51 , denies murdering his wife in the crash near markfield . court told that two dogs and suitcases were thrown out of the pick-up truck . witness said he saw the driver of the truck ` make a conscious , deliberate ' decision to steer towards the hard shoulder .\nstacey eden stood up to a middle-aged woman who was abusing a muslim couple on a sydney train . the 23-year-old 's video went viral after being published by daily mail australia on thursday morning . a fake fundraising page has been set up requesting donations for ms eden .\nben cousins surrendered himself at fremantle police station on thursday morning . the former afl star was charged with reckless driving , failing to stop and refusing a breath test . cousins was supposed to appear in court to face reckless driving charges on wednesday morning but he failed to show up . his lawyer claimed the former west coast eagles captain had conflicting medical appointments . cousins smiled as he left fremantle magistrates court , despite the magistrate labelling him ' a risk to the public '\nmore than 45,000 people have signed petition calling for protein world to be pulled . campaign features model in a bikini with the question : ` are you beach body ready ? ' campaigners say the advert promotes an unhealthy body image . katie hopkins has slammed those who are calling for the ad to be removed as ` chubsters '\narsenal and chelsea both set to make their 100th premier league appearance . eden hazard and santi cazorla have both been hugely influential for their clubs this season . sportsmail 's reporters choose the player they most enjoy seeing in action . click here to follow arsenal vs chelsea live .\neritrean refugees told how they were forced to deny their faith or face death . haben , 19 , and his brother samuel , 14 , arrived in sicily a week ago . around 900 people died when their boat capsized during the same journey from libya . tens of thousands of migrants are fleeing libya as extremists take advantage of the political chaos engulfing the country .\npatrick lyttle was left in a coma after a fight with his brother barry . the brothers from belfast , ireland , were on a night out in sydney 's kings cross . barry pleaded guilty to causing grievous bodily harm and could face up to two years in jail . patrick has called for the charges to be dropped and for the family to return to ireland together . the court has released security footage of the violent altercation .\npollsters ipsos mori asked 98 candidates what they thought were the biggest issues . not one labour candidate listed government spending or the deficit . 35 per cent of tories mentioned the deficit , 5 % of lib dems and 9 % of snp . the top issue for all parties was the economy , mentioned by 85 per cent .\nboeing has filed patent for ` upright ' sleeping support system . the ` cuddle chair ' looks like a backpack and fastens to the back of the headrest . head cushion will have a ` face relief aperture , ' and chest cushion . patent insists that this system is far superior to neck pillows .\ngovernment 's drug regulator has approved remedy containing traditional chinese herb . phynova joint and muscle relief contains sigesbeckia , a herb traditionally used to treat aches and pains caused by arthritis . dr mike dixon says he is a ` fan ' of herbal medicines because they are ` safe '\njordan spieth carded a 66 to finish 36 holes at a 14-under 130 . spieth leads charley hoffman by five strokes , matching the largest halfway lead in masters history . at the age of 21 and playing in his second masters , spieth looks in complete control .\ndell ` super dell ' schanze , 45 , was sentenced to one year of probation on friday after pleading guilty to two misdemeanor counts . his admission of guilt follows a plea deal that fell through on thursday after he refused to admit to the 2011 crime . schanz was scheduled to go to trial on april 20 and would have faced a maximum of one year in federal prison and more than $ 100,000 in fines if convicted . the charges , filed in october 2014 , came after a federal investigation into a video that surfaced online in 2013 . it appeared to show a paraglider near utah lake kicking a soaring owl and boasting about it .\nserie a side inter milan are keen to sign manchester city midfielder yaya toure . inter general director marco fassone fears city 's asking price and toure 's wages could be too much . the italian giants are also working on new deals for mauro icardi and mateo kovacic .\nmustafa kamal resigned from the international cricket council president role . kamal was unhappy with umpire decisions in bangladesh 's world cup defeat to india . kamal 's resignation was accepted at the icc 's quarterly meeting on thursday . no replacement will be appointed for the remaining weeks of kamal 's term .\ngreystone park psychiatric center was built in 1876 to house hundreds of mentally ill patients . it became known for its reputation for high numbers of suicides and rapes . the asylum was once home to more than 7,500 patients , reaching its peak in 1953 . it closed in 2003 and has been left to decay , with walls and ceilings falling apart . new jersey has awarded a $ 34 million contract to tear down the 675,000-square-foot building . but preservationists are fighting to save it and claim it should be turned into a museum .\nnicola sturgeon said she will prop up ed miliband even if he loses election . the snp leader said she would try to ` lock ' david cameron out of downing street . she said offer stood ` regardless of who is the biggest party ' in the house of commons .\ngeorge davon kennedy of dekalb , georgia , a student at middle tennessee state university , was taken in tuesday night as police believe he is one of the men caught on video raping a woman in panama city . he now joins two other men who were arrested late last week . authorities previously arrested a pair of students from alabama 's troy university who were allegedly seen in the video .\ntwo days before assault on producer , clarkson told by doctor he might have cancer . top gear presenter , 55 , said being given warning was most stressful day . he said he had now been given the all-clear , but it was ` beyond-belief stressful ' clarkson was sacked by bbc after an ` unprovoked physical and verbal ' attack .\nresearchers from texas a&m school of public health found that hospitalizations from car crashes dropped 7 percent between 2003 and 20010 in the 45 states with texting bans . arizona , texas , montana , missouri , and oklahoma are the only five states in america that do not have texting at the wheel bans for all drivers . the study also found that older drivers were more likely to make a texting and driving mistake than a younger driver .\nsouthampton defeated hull city 2-0 in the premier league on saturday . james ward-prowse came on at half-time to score a penalty for the home side . graziano pelle doubled the lead with his first league goal since december . the italian striker was booked for a clash with hull 's alex bruce in the first half .\nreanne evans lost 10-8 to ken doherty in qualifying for the betfred world championship . doherty led the calls for evans to be handed another chance on the main tour . world snooker chairman barry hearn has ruled out awarding a season-long tour wild card to evans .\nmost reverend justin welby called on christians to use non-violent means of resistance . said they should ` resist without violence the persecution they suffer ' comes after attack in kenya killed 150 people and islamic state militants killed dozens . dr welby said the killing of christians over the past year had been a ` wicked ' development .\ndancer shoccara marcus returned to her childhood home after her father was diagnosed with cancer in 2011 . she has been working on a photo series called choreographing my past for more than a year . the project shows how she copes with her family remembering her as the child she used to be while refusing to accept her for the woman she has become . she said the project helped her to cope with the transition through dance and helped her heal .\nemir spahic was substituted in the 90th minute of bayer leverkusen 's dfb-pokal quarter-final defeat by bayern munich . the bosnian defender became involved in a clash with stadium staff after the game . footage shows him throwing his hands into the faces of stewards before appearing to aim a headbutt at one . spahics could face a lengthy ban if action is taken against him .\na state trooper stops nelly 's bus because it does n't have proper stickers . he finds methamphetamine , marijuana and drug paraphernalia on the bus , authorities say . nelly is charged with felony possession of drugs , simple possession of marijuana . he was taken to the putnam county jail along with another passenger .\ncortez berry was serving time at the burruss correctional training center in forsyth , georgia , for his role in a 2011 carjacking and robbery . the disturbing image was uploaded to facebook friday using a cellphone that had been sneaked into the jail . it shows the 18-year-old berry hunched down with a swollen eye in front of two shirtless young men , one of whom is holding the leash . ' i was like oh my god ! what happened ? how 'd it happen ? it 's a terrifying picture to see , ' berry 's mother , demetria harris , said last week .\nu.s. citizen adam gadahn was killed in january , the white house says . he was known as an al qaeda mouthpiece , speaking against the u.s. , in videos . gadahn , 36 , was among the fbi 's `` most wanted terrorists ''\n` bandwagons of the far right ' are encircling an ` increasingly hapless conservative leadership ' nick clegg said nigel farage 's ` mask is slipping ' to reveal a man uncomfortable talking about people who are not white . he condemned david cameron 's appeal to ukip supporters to ` come home ' the lib dem leader admitted his ` rubbishness ' in the kitchen after it emerged his wife and sons had been secretly running a food blog .\nbayern munich face porto in the champions league quarter-final on wednesday night . philipp lahm spoke to owen hargreaves about his career so far . the german midfielder praised his manager pep guardiola . lahm has won six bundesliga titles and the world cup with germany .\ndiane priestley was struggling to breathe and was starting to turn blue . her husband david called 999 three times and had to wait an hour for an ambulance . investigation found she should have been given a response priority of eight minutes . instead , a longer 30 minute response time was assigned and she died . north east ambulance service admitted delay was initially due to call-handler error .\n` shameless liar ' andrew o'clee , 36 , wed michelle agbulos in 2008 . but he later married again in 2013 and forged divorce documents . he hid his second family from his first wife michelle , 39 , for four years . but she discovered his deception when she saw a video of him on facebook . he was jailed for eight months after admitting bigamy at chichester crown court . but second wife philippa , 30 , has vowed to stay with him .\nshocking images were taken in isis-held territory in the province of homs in syria . they show two men being savagely executed by up to four jihadis . group of executioners hug the blindfolded couple and tell them they were forgiven . seconds later they pummel them to death with hundreds of fist-sized rocks .\nfootage shows the skater confidently sailing down a concrete slope in santa monica , los angeles , before he loses balance and falls headfirst . he then scrapes along the ground on his stomach . luckily there was no one in the skaters path and he was the only one injured .\ntwo window cleaners were stuck on a platform at shanghai skyscraper in high winds . the platform was repeatedly slammed into the side of the building by the wind . the incident took place at the 91st floor of shanghai world financial centre . luckily , the two workers only suffered minor injuries and were not seriously hurt .\nthe incident occurred near hebrew university in jerusalem . police say a 37-year-old arab motorist struck two people standing at a bus stop . one victim died at the hospital ; a 20-year old woman remains in serious condition . a magistrate court has issued a gag order on details of the incident .\nshane ferguson joined rangers on loan from newcastle in january . but the northern ireland international was out injured with a knee injury . ferguson has now returned to training with the ibrox side . stuart mccall is confident the winger can play a role in promotion push . mccall joked he would give newcastle # 500,000 if they won promotion .\niman hashi and her sister siham are a somali-american singing duo . the sisters are working on their debut album . they are also working with the u.n. high commissioner for refugees . they have also started their own socially conscious fashion brand . they hope to release their first single in the next few months .\nfederal government will give shoshana hebshi $ 40,000 as compensation for being humiliated on the 10th anniversary of the 9/11 terrorist attacks . armed agents forced her from a plane at detroit metropolitan airport , made her undress during a search and held her for hours . frontier airlines , the transportation security administration and wayne county airport authority were named in the federal lawsuit . hebshi , who has a jewish mother and saudi arabian father , has said she was ethnically profiled based on her dark complexion .\na woman was killed instantly on wednesday after she drove her suv around an active crossing gate and collided with an amtrak train in mississippi . the collision happened about 3pm on norfolk southern railway tracks near downtown meridian . the 57-year-old woman 's name has not been released .\nthe west indies and england paid respects to the late richie benaud before the start of play in antigua . anderson was presented with a silver cap to mark his 100th test for england . west indies batsman chris gayle has chosen to play in the ipl over test cricket .\nfive teenagers arrested in melbourne 's south-east on saturday morning . they were allegedly plotting an islamic state-inspired terror attack . prime minister tony abbott has urged people to continue with their anzac day plans . he said security would be ramped up on the day . two teenagers remain in custody following raids in melbourne . police were tipped off about an imminent attack on anzac day ceremonies .\nrobert durst has been absolved of state gun charges in louisiana . the ruling clears the way for federal proceedings on similar charges in new orleans . he will now face federal charges , which lawyers believe he can win . he was arrested at a hotel in new york in march a day before the finale of his hbo docu-series the jinx .\ntwo-bedroom home at 36 kent street , newtown in sydney 's inner west sold for $ 1.42 million on wednesday . the unique home was first put on the market for at least $ 1 million , but failed to sell in an initial auction in mid-march . the property was originally built in the 1870s as the servant 's quarters to a victorian villa next door . it was last bought by mr shipton 's partner catherine barber in 1989 for $ 130,000 . assange has sought political asylum in the ecuadorian embassy in london since june 2012 .\ntony degrafreed , 50 , of indianapolis , indiana , has been charged with murder for allegedly beating to death wife rebecca degrafrees , 47 , at their home on july 20 , 2014 . he was convicted of murder in 1995 and sentenced to 30 years in prison , but served less than half of that sentence . in january 1994 , he was arrested and charged with the murder of his estranged wife along with two counts of attempted murder and illegal possession of a handgun .\nkiller of daniel morcombe could get out of prison early due to a email to queensland 's top judge from a child protection worker . brett peter cowan was convicted for the murder of 13-year-old schoolboy daniel morcomb in 2014 . cowan received a life sentence for murdering , indecently dealing and dumping the sunshine coast teenager 's body in 2003 . his lawyers will file an application to have chief justice tim carmody disqualified from hearing his appeal .\nharry kane won his first england cap against italy last week . the tottenham striker is eligible to play for gareth southgate 's young lions . kenny dalglish says kane should not play for the under-21s this summer . the former liverpool boss says kane is ready to be a permanent member of roy hodgson 's full squad .\nimages of 15-year-old girl with shocking new face have gone viral . the teenager from henan province in central china has 400,000 followers . she has undergone major surgery on her jaw , chin and eyes . plastic surgery is increasingly popular in china , particularly in women . the girl reportedly had the procedures to win over an ex boyfriend .\nlaura robson is training in tampa ahead of next month 's french open . the former british no 1 has not played since the 2014 australian open . robson has been recovering from an injured wrist . the 21-year-old shared a picture of her in an ice bath on facebook .\nronda blaylock was just 14-years-old in 1980 when she was found stabbed to death and brutally assaulted . this after she and a friend had taken a ride home from a man after school in rural hall , north carolina . the man who gave her a ride that day was never found . but police believe he still lives in the area and they are close to getting him .\na delaware father and his two sons are in critical condition . the family was staying at a resort in st. john , the u.s. virgin islands . the epa says a pesticide may have caused the illnesses . the use of the pesticide is restricted in the united states because of its acute toxicity .\numpires ejected a total of five players from both teams after the fight in the seventh inning of thursday 's game at chicago 's u.s. cellular field , illinois . a heated exchange between royals starter yordano ventura and white sox outfielder adam eaton sparked the brawl .\n18 packages containing 46lbs of cocaine were found in a suitcase at nice airport . the bag had the name of a tourist on it but did not belong to him . officials are satisfied the bag did not contain the drugs . the drugs were found after a flight arrived from the dominican republic .\nclarkson has agreed to keep quiet about his sacking from bbc . he has agreed so top gear live shows can go ahead ` in good spirit ' the global tour of the motoring show looked like it may face the axe . it followed clarkson 's hotel fracas with a producer over a steak dinner .\na website has leaked pictures of real madrid 's new kit for next season . the home kit will feature three grey stripes and a yellow trim . the away kit will have yellow trim and a greyed-out badge . the pink touches from this season 's shirts will also be dropped .\nthe 13-year-old boy gave out $ 100 notes at claggett middle school in medina , ohio . he then went to a friend 's house and showered adults with cash , police said . the group of friends then reportedly went on a shopping spree .\nformer manchester united midfielder paul scholes has told raheem sterling to stay at liverpool and continue his development . scholes says sterling is a good player but does not score enough goals . sterling said he was not ready to sign a new # 100,000-a-week deal at liverpool .\nprince william and prince harry once tried to get their personal chef to cook them pizza by forging a note to him . former royal chef darren mcgrady said that as children the brothers swapped the instructions from their nanny for their own . he said that their ` juvenile handwriting gave their identity away ' - and that they ended up with roast chicken anyway .\nroxanne jones : koch 's ban of box on job applications is a big step forward . jones : 70 million adults have arrest or conviction records that undermine their ability to be considered for jobs . jones says criminal justice policies disproportionately impact african-americans . she says obama administration should embrace fair-chance hiring of people with records .\nswansea city face everton in the premier league on saturday . southampton host hull city in the afternoon , while sunderland host crystal palace . qpr host chelsea in the early kick-off on sunday , before manchester united host manchester city at 4pm . liverpool host newcastle united in the evening kick - off on monday .\nmanchester city are four points clear of liverpool in the premier league . but if city come fifth they will be in trouble for the rest of the season . manuel pellegrini and txiki begiristain must find a replacement for yaya toure . the powers that be are waiting for pep guardiola to leave bayern munich .\nmaren sanchez , 16 , was stabbed to death at jonathan law high school in milford , connecticut , on april 25 , 2014 . a classmate , christopher plaskon , has been charged with murder . on saturday , hundreds of people gathered to remember sanchez with a road race , fried food and live music . sanchez was due to attend the prom with her new boyfriend last year .\nbarcelona beat almeria 4-0 on wednesday evening . luis enrique 's side travel to seville on saturday . real madrid beat rayo vallecano 2-0 to move four points behind barca . lionel messi and luis suarez scored the best of the goals .\nprince harry 's ex cressida bonas , 26 , is new ambassador for mulberry . shows off her modelling skills in new imagery released by the brand . poses in an old courthouse in clerkenwell , london , wearing the brand 's ss15 collection .\nxie shisheng was just 16 years old when he was imprisoned by the mill owner . he was hit with a hammer , never fed properly and beaten daily . xie , now 34 , was found in a small dark room by authorities earlier this week . he said he was forced to force feed him horrible things and was beaten .\nshops offering everything for # 1 or less have become a magnet for wealthier shoppers who have also flocked to aldi and lidl . almost half of all people who have visited discounters are middle class and among the country 's highest earners . 57 per cent of adults claim to use a discount store like poundland every week .\nswansea city host hull city at the liberty stadium -lrb- saturday , 3pm -rrb- jefferson montero could miss out for swansea with muscle strain . hull 's tom huddlestone suspended and nikica jelavic and robert snodgrass still out . mohamed diame and james chester set to return for hull . gaston ramirez fit to play despite concerns over injury . hull have won just one of their last 14 premier league away matches .\ncorinthian colleges inc. will shut down all of its remaining 28 campuses . julian zelizer : corinthian is one of the worst of the `` predator colleges '' he says we ca n't afford to continue funding for-profit colleges , which get 86 % of their funding from federal student loan money . zelizer says the remaining for-profits should be closed . and their debts should be forgiven .\nnigel farage said foreign nationals with hiv should not be treated on nhs . ukip source revealed party had planned for him to mention number of foreign patients suffering from tuberculosis . but when it was discovered that antiretroviral drugs were more expensive , a decision was taken to use that example instead .\nryan bertrand was the fifth left back to be called up to roy hodgson 's england squad last month . the southampton left-back has impressed for the saints since joining on loan from chelsea . bertrand believes he deserves to be higher up the england pecking order .\nonline activity is the alternative to traditional mainstream media in authoritarian countries , says peter bergen . he says the lack of access to traditional print and broadcast media is driving force leading disaffected voices to post online . bergen : jailing journalists is one thing , but watching them being killed and doing little or nothing about it is another .\npatrick bamford has scored 19 goals for middlesbrough this season . the striker is on loan from chelsea and is the championship 's player of the year . bamford hopes to become chelsea 's answer to harry kane next season . he says he wants to fight for his place at stamford bridge .\nprince harry is due to arrive in australia next monday for a four-week military exchange . the royal will spend time with the australian defence force in darwin , perth and sydney . he will also spend time at the australian war memorial in canberra . the four-weeks will be his final tour of duty before retiring from the armed services .\nibrahim ahmad , a senior at la center high in washington state will miss his prom because of a suspension he received for this bomb-themed promposal . ' i kno it 's a little late , but i 'm kinda ... the bomb ! rilea , will u be my date to prom ? ' the sign read . school superintendent mark mansell says ahmad 's actions were inexcusable and that he deserved punishment for disrupting the learning environment .\nclaudio giardiello ` killed his lawyer lorenzo alberto claris appiani , 37 , and his co-defendant before shooting dead judge fernando ciampi , 46 . he is said to have first killed his lawyer before going on rampage at milan court . a fourth victim , understood to have been a witness , had no visible injuries and died of a heart attack . several others suffered serious injuries in the attack , including giardieso 's former colleagues and accountant .\na video of jesse o'brien taking his morning pills has gone viral . the six-year-old has to take 45 pills to treat cystic fibrosis . his mother heidi , 37 , posted the video to encourage him to take his pills . the video has had more than one million hits in just a week .\norgasmic meditation , shortened to om , marries sex with mindfulness . aim is to teach couples how to enable women to orgasm more deeply . there are currently over 10,000 practitioners worldwide and 2,000 in the uk alone . director of us company onetaste has brought the sessions to the uk .\nyulia tarbath , 33 , from surrey , moved to bali with husband paul in 2009 . she followed a raw vegan diet and exercised twice a day during pregnancy . she ate 30 pieces of fruit every day , including eight mangoes and ten bananas . mother-of-one gained less than a stone in weight during her first pregnancy .\nwinger bryan habana scored the decisive try in extra-time for toulon . leinster 's sean o'brien scored the only try of the game in injury time . leigh halfpenny kicked 20 points from six penalties and a conversion . toulan face clermont auvergne in the champions cup final at twickenham on saturday .\ndarlene feliciano , 27 , was hiking off-limits trail in oahu , hawaii , friday afternoon when she slipped and fell . she was found unresponsive about 500 feet below a hole in the trail known locally as the puka . the manager at a honolulu walmart was airlifted from the area but was pronounced dead . her 29-year-old companion had to be rescued from the trail but did not suffer any injuries .\nana ivanovic , caroline wozniacki , sabine lisicki , and angelique kerber attended the porsche grand prix tennis opening ceremony in stuttgart . maria sharapova is the defending champion and is top seed at the clay court tournament . world no 1 serena williams was the highest profile absentee .\nnico rosberg felt he had given lewis hamilton a psychological advantage after his outburst at the chinese gp . the german complained about his mercedes team-mate 's slow driving . hamilton won the race and is now 17 points ahead of rosberg . rosberg admits he would not do anything differently under the circumstances .\nstock market returns have averaged 16 per cent a year under the tories . this compares to just under 9 per cent under labour and just over 9 per % under coalition . analysis by hargreaves lansdown shows investors fare better under conservatives . figures are a further boost for david cameron and george osborne ahead of election .\njennifer houle was last seen on a bridge in minneapolis early on friday morning . her body was found in the mississippi river on wednesday , five days after she vanished . she died of freshwater drowning , the medical examiner 's office said . police have not said whether she fell or jumped from the bridge .\nreports claim that bobby brown , 46 , has filed for guardianship over daughter bobbi kristina 's estate . the 22-year-old was found unconscious on january 31 . bobby , shocked fans on saturday by revealing that ` bobbi is awake , ' during a dallas concert last saturday . on monday , the former new edition hitmaker released an official statement about his child writing : ` bobbs is improving ' but bobbi 's grandmother cissy houston said that she is not awake and that she has ` global and irreversible brain damage '\nresearchers are developing a computer that can collate meteorological information and then produce forecasts as if they were written by a human . it uses a process known as ` natural language generation ' -lrb- nlg -rrb- these computer-generated weather updates are being tested by scientists at heriot-watt university and university college london . if the project is successful , a prototype system will be tested by generating local weather reports on the bbc 's website .\npaul will launch his campaign tuesday morning in louisville , kentucky with the populist slogan ` defeat the washington machine . unleash the american dream ' an aide to a member of the republican leadership in the house of representatives laughed that line off on monday . ` rand paul is as much a part of the washingtonmachine as joe biden or harry reid , ' he said . an iowa republican party official said he has n't chosen a horse in the 2016 primary . ` if he 's an outsider , i 'm a democrat , ' he added . paul has taken heat in recent days from libertarians for softening some of the principled stands thad have defined his brand since kentuckians sent him to washington .\nfrancis coquelin has made 23 appearances for arsenal this season . the frenchman has cemented his place in the side in the defensive midfield . coquelin is looking forward to facing chelsea 's nemanja matic . arsenal face chelsea at the emirates stadium on sunday .\nformer liverpool defender andrea dossena was arrested at harrods . the 33-year-old was accused of shoplifting on april 7 . dossena and a 31-year - old woman were released after being interviewed . the italian will face no further action , according to the metropolitan police .\nreporter jason rezaian charged with espionage and collaborating with ` hostile governments ' the washington post reporter was detained in tehran on july 22 last year . he was officially charged in december but details of the charges had never been released . the 39-year-old 's lawyer leila ahsan detailed the four serious offences her client faces .\ntony hunt , 42 , is demanding an apology from police after his daughter 's cat was killed . harry was hit by a patrol car and then put in a bin bag in the boot of the car . mr hunt spent two days putting up ` lost cat ' posters before finding out from a teenager . he said police officers coldly told him his pet had been ` disposed of '\nmanchester city lost 4-2 at old trafford on sunday . it was the champions ' sixth defeat in eight games . manuel pellegrini 's side are now 12 points behind chelsea . pablo zabaleta admits they are facing a battle to finish in the top four . the defender admits confidence is low after the derby loss .\nalex perry wo n't be presenting at mercedes-benz fashion week australia . the designer says he is taking a break from the fashion scene . he is focusing on his international projects and tv projects . perry says he will miss presenting his own show but will enjoy the front row .\nsturgeon refused to rule out holding second independence vote in next few years . earlier , she had said 2014 referendum was a ` once in a generation ' event . but she said she respected result and would not call for another plebiscite in snp manifesto for westminster election in may . sturgeon accused of holding britain to ` ransom ' after saying she was ` offering to make ed miliband prime minister '\ndanniella westbrook accused tom richards of violence online . the 41-year-old posted picture of her bruised hand on twitter last month . the cage fighter was arrested yesterday morning in swansea . he has vehemently denied the allegations and has not been charged . the pair split in november after spending months together in california .\nnicola horlick says women should marry early and have children while young . fund manager , 54 , says she felt a difference in her body between her first child at 25 and her last at 38 . she says she breastfed in the office even while carrying out job interviews . her eldest daughter georgina died from leukaemia in 1998 age 12 .\njennifer pagonis was born with an enlarged clitoris , no uterus and a partial vagina but was never told she was intersex . the 29-year-old from chicago has androgen insensitivity syndrome -lrb- ais -rrb- , a very rare disorder affecting 1 in 20,000 which prevents a womb from growing and causes testes to grow in the abdomen or other unusual places in the body . pagon is now an artist and intersex activist against surgery .\nnadine coyle and coleen rooney joined forces for race for life . dressed in ethereal light pink gowns and feathered headdresses . hoped the shots will encourage women to join the female-only event . money raised goes towards research into over 200 types of cancer .\ngreenpeace activists scale shell oil rig in pacific ocean . they plan to occupy underside of rig 's main deck for several days . greenpeace is angry over shell 's plans to drill for oil in the arctic near alaska . shell says boarding was illegal and jeopardized safety of activists and crew .\nalfred russel wallace , henry bates and richard spruce set out to explore the amazon in 1961 . they were the last englishmen to be killed by an uncontacted tribe . the trip was the beginning of a lifelong fascination with the region . john hemming has written a distinguished career writing about it .\ngiles clarke made a fool of himself at the wisden almanack launch . clarke arrived upset that the new ecb regime had just sacked his england managing director appointment , paul downton . clarke confronted guest speaker ehsan mani and sportsmail 's lawrence booth during the dinner . sky sports have refused to allow pundit thierry henry to present ap mccoy with his record 20th champion jump jockey title at sandown . clare balding will present the women 's boat race on bbc rather than the grand national .\ndundee midfielder paul mcgowan was spared jail for a third assault on a policeman . the 27-year-old has been placed on a 16-week restriction of liberty order . dundee have vowed to stand by their player through his problems . mcgowan will miss two forthcoming games against former club celtic because he is under house arrest .\nwarning graphic images : luis andres cuyun , 30 , was killed on his way to work . he was the director of a jail for juvenile gang members in guatemala city . two suspected mara salvatrucha gang members opened fire on him and his driver . juan carlos medina luna , 29 , and mario alfonso aguilar , 18 , arrested for attack . medina luna said he carried out the hit on the orders of a man named ` el travieso ' or ` the naughty one ' and did it ` because i like to kill '\nnina dobrev is leaving `` vampire diaries '' at the end of this season . many fans are upset about the decision . dobrev says she 's had a `` journey of a lifetime '' on the show . producer julie plec says she supports dobrev 's decision .\nben elton took a swipe at myleene klass over her criticism of ed miliband 's mansion tax plans . comedian told a 1,000-strong crowd at warrington 's parr hall the popstar had made her money ` showering in a bikini ' eddie izzard , joey essex and sally lindsay also attended the event .\nchamali fernando , candidate for cambridge , made comment at hustings event . said wearing wristbands would help doctors , lawyers and police officers . said people with mental illnesses often struggled to explain themselves . ` shocking ' suggestion slammed by deputy prime minister nick clegg today .\nbrothers of sex offenders are five times more likely to commit similar crimes . sons of fathers with criminal record are four times more likely to be convicted . biggest study of its kind suggests sex offending could run in the family along the male genetic line . news comes after jimmy savile 's alleged abuse of seven women in 41 hospitals .\nat least 34 people were arrested after hundreds of protesters gathered in new york city on tuesday night to march against police brutality . the march was organized by national actions to stop murder by police . many of the protesters cited the deaths of eric garner in staten island and walter scott in south carolina . the protesters marched from manhattan 's union square and across the brooklyn bridge where they partially blocked traffic .\nfrida kahlo wrote passionate love letters to her lover jose bartoli from 1946 and 1949 . the letters were written in spanish between august 1946 and november 1949 . they were written while she was married to muralist diego rivera . the archive of more than 100 pages will be auctioned off at doyle new york on april 15 .\nformer us president george h.w. bush looked in good health on friday as he accompanied australian tennis player roy emerson at the u.s. men 's clay court championship in houston , texas . bush , 90 , fell ill in december and was hospitalized after complaining of shortness of breath .\ntyler walker scored his first goal for nottingham forest against brentford . the 18-year-old came off the bench to score his first senior goal . the striker is the son of former forest defender des walker . dougie freedman believes walker has a big future at the club .\na chihuahua and a bearded dragon were filmed playing tag together . the dog named foxxy cleopatra and the reptile called ryuu can be seen chasing after one another around a coffee table . the video maker said that the chihuahuas never tries to hurt the dragon and loves to chase after him .\nrussia face germany in the fed cup semi-finals in sochi next week . maria sharapova has been confirmed to play for her country . the russian star will become eligible for next year 's olympics . the german team will be made up of andrea petkovic , angelique kerber , sabine lisicki and julia goerges .\ntwo britons thought to be among seven people killed in light aircraft crash . small plane crashed in punta cana region of the dominican republic today . the pilot was attempting to make an emergency landing when plane crashed . the plane struck the ground in a golf course and burst into flames . the foreign office is looking into reports that two britons were on board .\nmichelle o'clee , 39 , said her husband of six years had been leading a double life . andrew o ' clee , 36 , had secretly moved in with finance manager philippa campbell . he was caught out when he was tagged in a video on facebook with his new spouse . michelle said : ` they were extraordinary lies . it 's like something from a john grisham book ' last week the ex-soldier was jailed for eight months after admitting bigamy .\nczech president milos zeman was criticised by u.s. ambassador andrew schapiro . he plans to attend the annual parade in moscow , marking the allied win at the western front in 1945 . president zeman has banned ambassador schapiro from visiting prague castle . prime minister bohuslav sobotka said zeman 's ` reaction was not adequate '\nbarcelona are two wins away from the champions league semi-finals . luis suarez scored twice as barcelona beat psg 3-0 on wednesday . the uruguayan has scored 13 goals in his last 14 games . suarez , neymar and lionel messi have established themselves as the most feared front three in the world .\naerial photos show a fiery sunset in seattle . the red hue is a result of smoke from wildfires in siberia . winds carried the smoke across the pacific ocean . the smoke filters out shorter wavelengths of light . the colors are more visible in the air . . the fires have destroyed dozens of villages in the region .\nforeign workers to pay # 22,600 in tax before they can claim benefits . unemployed eu migrants in britain will be banned from receiving state support . for those in work , they will be barred from claiming housing benefit or tax credits . home secretary theresa may said the tory manifesto will spell out plans to negotiate a new deal with europe .\nleading headmistress claims single sex schools help teenage girls . rhiannon wilkinson said girls are best served in a ` boy-free work environment ' she said it stops girls from being held back by the opposite sex . eton college head tony little has previously said single sex school allow children to retain their ` innocence ' and be ` themselves ' for longer .\nrobert o'neill will host ` machine gun fun ' shooting competition with guests . the event , which will include a ` machinegun fun ' competition , will cost $ 50,000 . guests would be housed at the amangani resort hotel in jackson hole , wyoming . o'neil claims to have personally shot dead osama bin laden in 2011 raid .\n# 7.99 owl ornament has been pictured on a beach in benidorm and a bar in belfast . the owl was snatched from the lounge area of the admiral rodney in nottingham . landlord richard stevenson , 32 , received a ransom letter demanding the bird 's return . the bird has had three holidays in less than a month since being snatched .\ntinside lido in plymouth is one of europe 's most lavish lidos . stonehaven open air pool in aberdeen holds midnight swimming sessions . llyn y fan fach in brecon beacons is thought to be haunted by ` the lady of the lake ' a beautiful area of wales dotted with pools , beachy bankbecues and a beachy bar .\nmario balotelli is set to leave liverpool at the end of the season . italian club sampdoria want to sign the striker if he takes a pay cut . club president massimo ferrero says balotelli has lost his hunger . ferrero said balotlli should be put on a diet of bread and water .\nnurse joanna flynn , 50 , charged with criminal negligence causing death . former nurse worked at georgian bay general hospital in ontario , canada . it is thought it is the first time a health care professional has been charged for switching off a life support machine in canada . the name of the alleged victim has not been released but the husband of deanna leblanc , 39 , said she was the alleged victims .\nnikki balovich had taken off her diamond-encrusted silver ring . she lost it as she was pregnant and her fingers were swollen . she suspected her 90-pound baby mastiff halli had swallowed it . but there was no way of checking . finally , almost half a year later , the mystery was solved . she saw a post on a facebook sales site saying a ring had been found .\nreal madrid take on atletico madrid in champions league quarter-final second leg on wednesday . cristiano ronaldo and co looked in a relaxed mood as they trained . dani carvajal was mobbed by team-mates isco , sergio ramos and nacho . los blancos drew 0-0 with atletico in first leg last week .\nhengshui no 2 middle school in hebei province has installed metal bars on all balconies . web users suggested fence was put up to prevent more pupils from jumping off building . two pupils from the school plunged to death , one in october and one in march .\nsam allardyce believes manchester city boss manuel pellegrini has the most difficult job in football . west ham united manager says going for back-to-back titles has made the chilean 's job harder . city entertain the hammers at the etihad stadium on sunday .\nscientists have developed a device that clips onto the iphone 4s . it uses powerful cameras in combination with tiny beads that bind to cancerous cells . when clumped around a cell , the beads alter the way the light is scattered by the sample . this can be detected by a central computer that looks for these distinctive patterns . the researchers claim it can asses 100,000 cells from a single image in around 45 minutes and each test costs around # 1.20 -lrb- $ 1.80 -rrb- they have already tested their device to detect cervical cancer in tissue samples obtained during smear tests . however , they say the system - known as digital diffraction diagnosis or d3 - can be adapted to screen for other types\na dead man 's body washed up on a beach 67 years ago . the body was found on somerton beach , southwest of adelaide . a post-mortem determined that the man had died of poisoning . police and coronial investigations were unable to identify the body . the persian phrase ` ended ' was scrawled on the scrap of paper . a secret code and a woman 's telephone number were also found in the book where the paper came from .\nthe race to stay in the premier league is close with five teams in bottom six . sunderland beat newcastle 1-0 on saturday to stay within seven points of relegation . hull , aston villa , leicester , crystal palace and burnley all have tough run-in . sportsmail looks at the possibilities and gives their verdict .\njuventus maintain 14-point lead at the top of serie a with nine games to go . carlos tevez and roberto pereyra scored in 2-0 win over empoli . roma beat napoli 1-0 to strengthen their grip on second place . lazio clinched a seventh consecutive league win , 3-1 at 10-man cagliari . inter milan were held to a 1-1 draw by rock-bottom parma .\nchild attacked by lion in namtsy , in the sakha republic in siberia . photographs show the animal being walked around by a circus worker . the circus is believed to have left the village after the incident . the girl is in hospital and her father said she was ` shocked '\nseveral items from entertainer 's estate to be sold off at auction . memorabilia includes plaque commemorating installation of the monkees ' star . also includes a collection of framed vintage posters and a tambourine . auction will take place at the hard rock cafe in new york on may 16 . jones died of a heart attack in 2012 aged 66 .\ncandice marie fox claims to have cured her cancer with a diet and lifestyle program . the perth woman underwent surgery and radiation treatment . she is planning to release relevant medical records without her personal details . bloggers have demanded ` irrefutable proof ' that ms fox cured her thyroid cancer ` with juice '\nafter years of being bound to her bed and taken care of by her three daughters , marla mccants , 43 , finally stood up for the first time on last night 's season finale of my 600lb life . the mother-of-three had gastric bypass surgery but refused to let medical professionals help her stand up . she was able to stand for a few seconds . marla 's weight spiraled out of control after she was kidnapped by an ex-boyfriend and held hostage .\nrussia expects north korean leader kim jong un to visit moscow next month . kim will be in the russian capital for world war ii anniversary celebrations . this would mark kim 's first official foreign trip since inheriting the leadership of north korea . this year 's victory day marks the 70th anniversary of the soviet union 's victory over nazi germany .\nukip leader nigel farage caused controversy by attacking high cost of giving anti-retroviral drugs to sufferers not born in britain . ed miliband said his comments were ` disgusting ' , nick clegg said they were ` politics of the lowest form ' and chancellor george osborne said he was ` not going to dignify that with a response '\nbayern munich lost 3-1 to porto in their champions league quarter-final . franz beckenbauer said the germans played as if they had taken ` sleeping pills ' the german legend was speaking in new york as part of the club 's new media agreement with msn . he criticised defender dante for playing as if he were wearing ` ski boots '\nprime minister hails the church as a ` living active force doing great works ' he said easter was ` time to reflect on the part that christianity plays ' mr cameron criticised bishops for a controversial election letter . it was widely seen as an attack on the coalition 's welfare cuts . he also condemned the persecution of christians following the massacre in kenya .\nsearch for ` ceo ' on google images returns rows of grinning men . but 96th image is of barbie , a miniskirt-clad doll from the 80s . comes from 2005 onion article that jokingly states ` women do n't run companies ' chelsea clinton among those to retweet the results of the search .\nanna and indi , owned by 32-year-old zane jones , have been surfing since they were about 10 weeks old . the dogs use their low centre of gravity to keep them stable while surfing in queensland , australia . indi has been trained to lift her paw to ` hang five ' which is her trade mark .\nfabio borini has only netted once in 17 appearances for liverpool this season . the italian striker came on as a second-half substitute in liverpool 's 2-0 win against newcastle at anfield on monday . borini enjoyed a day off at adventure park go ape in delamere forest park on tuesday .\nburglars broke into a home in hatfield peverel , essex , and flooded the kitchen . they dumped the tv in a bath filled with water and slashed sofas and chairs . they stole jewellery including a wedding ring and watches , a computer , laptop and tablet . police described it as the worst case of ` mindless destruction ' they have ever seen .\nfrench handball star nikola karabatic will stand trial for fraud . karabatics is suspected of involvement in illegal betting case . karbatic and his brother luka were among a group of players banned by the french league two years ago for betting on the result of a match .\nnovak djokovic defeated david ferrer in straight sets to reach miami open semi-finals . world no 1 will face john isner next after american beat kei nishikori . andy murray will play tomas berdych in the other semi-final . serena williams beat simona halep 6-2 4-6 7-5 to reach the women 's final . carla suarez navarro beat andrea petkovic 6-3 6-4 to book her place in the final .\ncook county judge dennis porter cleared officer dante servin , 46 . he shot rekia boyd , 22 , in the back of the head in march 2012 . judge asked loved ones to leave the courtroom before verdict was read out . boyd 's supporters said the case was murder and insisted it is ` not over '\njohn hinckley jr. is said to have met the woman at a national association for the mentally ill meeting . he currently spends half of his days institutionalized after being found not guilty by reason of insanity for shooting president ronald reagan back in 1981 . his brother scott revealed this during a hearing to determine if he should be able to permanently live outside st. elizabeth 's hospital in washington . hinckly 's mother joan has been introduced to her son 's girlfriend .\nfour apartments in south yarra will go under the hammer on april 28 . the apartments will be open to the public on april 11-12 for a look . teams will be hoping to do better than the block glasshouse duos , including darren and dea . ayden and jess in apartment 3 are going with adam joske of gary peer & associates , with stuart benson as auctioneer .\ntwiggy , 65 , models new summer range for m&s . has taken inspiration from 70s trends seen on catwalks this season . says she has never had cosmetic surgery but has n't ruled it out . says there 's nothing you can do about getting older .\npresidential candidate spoke to cbs 's face the nation . said he believes people are ` born with a sexual preference ' but insisted state legislators should decide whether or not to allow gay marriage . admitted last week he would attend a gay wedding of someone he ` cared ' for .\nclaudia martins gave birth alone at her sister 's flat in bristol . the 33-year-old kept her pregnancy secret from her family and friends . paramedics were called after she was found sitting in the bath with ' a lot of blood ' she had killed the infant by stuffing toilet paper down its throat . she then wrapped the baby girl in towels and a plastic bag . martins was acquitted of murder but convicted of manslaughter .\nmelbourne-based jon czerniecki set up trail cameras to spot deer on his grandparents ' farm near wangaratta , northeast victoria . he accidentally captured a bizarre clash between a kangaroo and a pair of domestic dogs that lasted for over nine hours . mr czerniecki has contacted the local council and parks victoria in hopes of notifying the owners of the dogs about what they had done .\ndr celia sanchez-ramos found the led screens can harm the retina . this is the light-sensitive layer at the back of the eye . in extreme cases , she says , it may even lead to macular degeneration . modern led screens emit up to five times as much blue light as older technology . children and the elderly are most at risk on account of their delicate eyes .\nspacex has released dramatic footage of its third attempt to land a rocket booster on a drone barge in the atlantic ocean . the video , taken from a plane yesterday , shows the the falcon 9 booster lowering itself onto the platform . the 14-storey booster manages to hit the barge , but its high speed and tilt causes it to explode on impact .\napple has bought israel-based link computational imaging . linx makes ` multi-aperture ' cameras small enough to fit into smartphones and tablets . they use depth-sensing technology to make photos look more professional . this technology could be added to the next-generation iphones and ipads .\nbradley neil missed the cut on his masters debut at augusta national . the scot carded rounds of 78 and 79 to finish 13 over par . neil was playing with 1988 masters winner sandy lyle . the 19-year-old admitted he needed to ` give himself a kick up the a *** '\nmarshall henderson tweeted the former dancing with the stars contestant on monday saying : ` lol wassup with your boyfriend ' he was referring to los angeles kings player jarret stoll , who was arrested in las vegas last week for trying to smuggle cocaine and mdma . his reaction came two years after andrews mocked him for alleged drug use on twitter .\nunidentified woman let man into restaurant in shandong , china to use the toilet . he knocked on door and asked to use toilet - but was then attacked by restaurant owner . she used her martial arts skills to overpower him and pin him to the ground . she then fled the restaurant but was followed by her attacker who tried to rape her . she fought him off again but he was caught by security cameras and arrested .\nthousands of yazidis have fled isis fighters in iraqi kurdistan . the shariya refugee camp is made up of some 4,000 tents and counting . isis took thousands of yazidi captive . among them were 217 captives , 60 of whom were children . the yazidis were reunited with their parents after eight months .\nfitness fanatic matt dunford , 30 , bombarded brazilian model amanda branco with up to 50 messages a day . he tried to blackmail her out of # 5,000 after their six-month relationship broke down . dunford set up a fake escort website profile on facebook and sent it to her mother and sister . he was given a 12 month community order and told to do 120 hours of unpaid work .\nresearchers at stanford university examined the reaction of secondary and primary school teachers in the united states to student race . they found that the teachers were more likely to view youngsters who they thought were black as troublemakers than those they thought are white . the researchers say this may go someway towards explaining why black children are often disciplined more at schools compared to other pupils .\nmary cartwright was 20 when she was called up to work at drakelow shadow factory in kidderminster , worcestershire , in 1943 . she spent two years testing metal for bristol aircraft engines in the site 's underground laboratory . now 91 , the great grandmother has revisited the now defunct factory with her son , david .\nsabrina osterkamp was last seen leaving her home in naracoorte at about midday on sunday . she was driving a friend 's car about 110km south to mount gambier in south australia 's southeast . the 25-year-old abandoned the car in the centre of mount gambiers . she survived a night in a national park in glenelg conservation park .\nburberry chief executive officer christopher bailey celebrated opening of new flagship store in los angeles . over 700 guests including cara delevingne , suki waterhouse , mila kunis , elton john , anna wintour and the beckhams attended event . bailey was named ceo at just 42-years-old back in october 2013 .\nblaze at goure px plant in zhangzhou , fujian province , on monday night . 177 fire engines and 829 firefighters battled the blaze . initial tests suggested there had been no contamination of the surrounding area . it is the second explosion to hit the factory in 20 months .\namira abase , 15 , is believed to be living in the syrian city of raqqa . she left bethnal green with two classmates in february to join isis . now she has tweeted from inside the islamic state for the first time . she posted picture of western-style takeaway dinner with another ` jihadi bride '\nwest ham striker diafra sakho is out for the rest of the season with a thigh injury . the 25-year-old was forced off after 59 minutes against stoke city on saturday . sakho has scored 12 goals for west ham this season but is out until the end of the campaign .\nprotestors unfurled banners reading ` homes for all ' and ` better squat than let homes rot ' they mounted admiralty arch , which joins trafalgar square with the mall . the group said they got into the building overnight by climbing through an unlocked window .\ntranmere manager micky adams has left the club by mutual consent . adams failed to show for post-match press conference after 3-0 loss by oxford . fans demonstrated outside the ground , calling for the manager to leave . tranmere are bottom of league two and two points adrift of safety .\nsinger-songwriter , 22 , has lost three stone in the last year . follows a dairy-free , low-carb and low sugar diet . has been named vogue 's april ` today i 'm wearing ' star . star posts pictures of his new look to instagram account .\nyarmouk is a palestinian refugee camp on the outskirts of damascus , syria . it has been engulfed in the syrian conflict since 2012 and is now under siege by pro-government forces . isis fighters stormed the area two weeks ago and have been fighting for control since . the syrian government has responded by bombing and shelling the area .\nchelsea will face paris saint-germain in a pre-season friendly in july . the french side knocked jose mourinho 's side out of the champions league . the blues will also play barcelona and new york red bulls in the usa . chelsea will then play fiorentina at stamford bridge on august 5 .\njoseph mcenroe was convicted of killing six members of his girlfriend 's family on christmas eve , 2007 . the 36-year-old from carnation , washington , was convicted last week by a jury . the same 12 people are now determining whether he will be executed or sentenced to life in prison without parole . he took to the stand on thursday in a bid to avoid the death penalty . he told the court he ` thought ' he had to kill wayne anderson , 60 , and judy anderson , 61 ; their son and daughter-in-law scott and erica anderson , both 32 ; and the younger couple 's children olivia , 5 , and nathan , 3 .\nlanden martin , 2 , was struck and killed on sunday by the car his 19-year-old uncle joshua saunders was driving . joshua saunders , who authorities said was driving while under the influence , was attempting to back out of the driveway of a gainesville , georgia home when martin ran behind the car . saunders was arrested on charges including dui , reckless driving , leaving the scene of an accident and vehicular homicide .\nmoussa sissoko was sent off for two bookings in newcastle 's 2-0 defeat at liverpool . the midfielder caught lucas on the ankle with a reckless tackle . john carver labelled the tackle as ` indefensible ' and refused to make excuses . newcastle manager said sissoko could have seen a straight red .\nscott kelley , now 50 , and mary nunes , now 19 , fled new hampshire in 2004 . the pair were with genevieve kelley , mary 's mother , during a custody dispute . genevieving took daughter to colorado , then boarded a flight to south america . she was arrested last year , but refused to reveal the location of her husband . on monday , the couple surrendered at the u.s. embassy in costa rica . they were flown back to hartsfield-jackson atlanta airport , where kelley was arrested .\nbritain is on course to be the hottest april on record with temperatures soaring to 16.9 c in brighton and 16.6 c in achnagart , north of fort william . parts of scotland and wales experienced the warmest temperatures today with highs of 16.4 c in pembrey sands , carmarthenshire . a virtually cloud-free satellite image from the european space agency 's metop-b satellite has been released as the country continues to bask in bright sunshine and above average temperatures .\nronald reagan met mikhail gorbachev at a peace summit in geneva in 1985 . he asked for support in the event of an alien invasion from extra-terrestrial life . reagan repeated the warning when he spoke to a group of students in 1985 . his advisers were said to be horrified by the mention of aliens in his speeches .\nresearchers in the us examined effects of sweetened drinks on 19 women aged between 18 and 40 . half were given sugary drinks at breakfast , lunch and dinner over 12 days . other half had drinks made with artificial sweetener aspartame . women were given a difficult maths test and then underwent mri scans .\nphotographer floriane de lassee has captured the essence of what people do when they 're alone . her project , inside views , captures the cities of insomnia in cities across the world . she has photographed people in las vegas , new york , moscow , paris , istanbul , shanghai and tokyo . de lassee 's goal is not to capture a particular city , but an imaginary city that inhabits each megalopolis .\ndavid serbeck , 42 , was found guilty of having sex with a 17-year-old girl in 2007 and sentenced to up to 10 years in prison . he was shot and paralyzed in july 2009 by the teenage victim 's father , reginald campos , who suspected serbeck of aggressively following his daughter . now , serbeck 's attorneys are asking an appeals court to either throw out his conviction or reduce his sentence . they argue that serbeck never got the chance to deny allegations of stalking and sex with other minors during his original trial .\nmanny pacquiao trains with his team at griffith park in los angeles . the boxer is preparing to take on floyd mayweather jnr on may 2 . the fight is expected to break the pay-per-view record of $ 152million set by mayweather 's fight against oscar de la hoya in 2013 .\nvincent stanford 's family have offered their condolences to the family of stephanie scott . the leeton schoolteacher 's funeral will take place on wednesday afternoon . ms scott 's body was found in cocoparra national park , north of griffith , nsw , on april 10 . the 26-year-old was killed just days before she was set to wed fiance aaron leeson-woolley . school cleaner vincent stanford , 24 , has been charged with ms scott 's murder and is due to appear in court in june .\nfirst lady michelle obama chose a bold , watery blue hue to accent the obama white house 's official china . the solid white dinner plates are edged in gold ; the service plates have a wide gold rim and the presidential coat of arms at the center . the china , which has settings for 320 people , cost approximately $ 367,000 . it was being unveiled monday during a preview for tuesday 's state dinner for japanese prime minister shinzo abe . the state china service then-first lady laura bush unveiled in january 2009 cost $ 493,000 .\nkevin pietersen lashed out at graham gooch for commenting on his attempted england comeback . gooch appeared on bbc radio five live on sunday morning and took a broadly supportive stance of pietersen . goch said pietersen had ` wiped the floor with the ecb ' in the lengthy pr battle since his sacking in 2014 . pietersen has re-signed for surrey in an attempt to stage an unlikely test return .\nmanchester city host manchester united in the premier league on sunday . sergio aguero has scored six goals in six games against the red devils . the argentine forward says scoring in a derby is unparalleled . aguero believes united striker radamel falcao is one of the most gifted players in world football .\nbrazil captain neymar is the current world 's best player . sir alex ferguson believes he can compete with lionel messi and cristiano ronaldo . the former manchester united boss believes neymar has potential . but he says there is no player at the moment who can rival the pair . ferguson also backed real madrid boss carlo ancelotti .\nstoke city have opened talks over a contract extension for goalkeeper asmir begovic . the bosnian has attracted interest from real madrid and manchester city . mark hughes is keen to keep begovo at the club as he looks to stabilise them in the top ten in the premier league .\nbirmingham city beat rotherham united 2-1 in the championship on saturday . robert tesche and clayton donaldson scored for the hosts . matt derbyshire pulled one back for the millers in the second half . rotheringham were denied a penalty on the hour mark .\nalejandro bouvier of uruguay filmed the incident at a beach in cancun , mexico . footage shows him zipping towards the driver before he swings around and drives directly in his path . ` look out , look out ! ' a man behind the camera can be heard screaming . luckily the two jet skiers avoid a dangerous collision thanks to some swift steering skills .\nthe ring was discovered by queensland resident roxy walsh in bali . she took to social media to find the ring 's owner after it was lost on a trip to the island . the 34-year-old 's post has been shared more than 250,000 times on facebook . she met with joe and jenny langley in noosa on sunday to return the ring . the couple are amazingly from the same part of australia .\ncathleen hackney , 56 , is on trial at stoke-on-trent crown court . she is alleged to have lied about her son 's cremation to two funeral directors . hackney allegedly told them there were no objections from her ex-husband . but she ` pressed ahead ' with the cremation , jurors heard . paul barber , her ex , was not present at the cremated body of his son .\nsusan monica , 66 , is accused of killing two handymen living on her 20-acre pig ranch in jackson county , oregon . she has been charged with killing robert haney and stephen delicino a year apart at her pig farm and dismembering their bodies . remains of the two men were found at her ranch last year after she was caught using one of the victims ' food stamps card .\nnathan hughes ' knee collided with george north 's head last friday . northampton winger was taken off on a stretcher and was suspended for three weeks . north has now been ordered to take at least one month off after suffering his third concussion in four months playing for northampton . wales and lions wing will be reassessed at the end of april .\nbarcelona midfielder andrés iniesta has listed his vineyard on airbnb . the ` bodega iniesta ' vineyard he owns in castilla-la mancha can be rented out . the property comes with a guided tour of the area and a tour of his vineyards .\nscott quigg has been offered # 1.5 million to fight carl frampton . the super-bantamweight will fight on july 18 at manchester arena . kell brook looks set to make a quick return to the ring on may 30 . frankie gavin could challenge brook for his world title in london . josh warrington is up against dennis tubieron in leeds on saturday .\nolivia bazlinton , 13 , and charlotte thompson , 14 , died at elsenham station . they were struck by an express train at the footpath crossing in 2005 . the girls ' parents had planned to raise their concerns at a meeting . but they were turned down by network rail 's public members watchdog .\ndavion navar henry only , 16 , has been adopted by his former caseworker connie bell going . the florida teen was formally adopted by her on wednesday . he has been living with her and her three daughters since august . in 2013 he made a plea for a family to ` love him forever ' in front of his church congregation . he was adopted by a minister in ohio and returned to florida .\nashley madison wants to raise # 135million by listing shares in london this year . it is targeting british investors because of the uk 's ` laissez faire ' attitude to extra-marital affairs . founder noel biderman , 43 , came up with the idea for the site in the 1990s . he wants to fund launch of services in russia , ukraine and baltic states . ashley madison claims to be the world 's second-largest dating website .\nsean crawford , from carterton , new zealand , has been making a splash at the australian traffic jam gallery . he uses animals that have been killed during hunting for meat or pest control . he said he can understand why some people find his work ' a bit ungodly ' but in his opinion , there is nothing worse than ` art that does n't affect you at all '\na cloaked figure in a medieval manuscript bears more than a little resemblance to yoda from the star wars films . the ink illustration appears to show the jedi knight yoda on the pages of a religious document . but in fact , the drawing is part of a bizarre representation of the biblical story of samson , one expert claims . the yoda image comes from a 14th-century manuscript known as the smithfield decretals .\ntony abbott skolled a beer at an australian rules function on saturday . anti-drinking campaigners said he was glorifying binge drinking . they said he should be setting an example that you do n't have to drink heavily to be a ` true blue aussie bloke ' the prime minister was asked to have a drink by university of technology sydney bats coach simon carradous .\nu.s. rep. alan grayson and his wife lolita have agreed to annul their 24-year marriage as they continued talks on a settlement . the agreement was announced on tuesday by a judge in an orlando , florida courtroom at the start of a hearing that had been scheduled to determine whether their marriage should be voided . lolita grayson was married to another man when they wed in 1990 .\nbaby , known as mary , was born at alder hey children 's hospital in 2013 . six months later she died suddenly after a lengthy stay in the hospital . post-mortem revealed traces of cocaine , tramadol and anti-depressant drugs in her stomach . her parents had been reported to social services five times between 2008 and 2012 . review has called for lessons to be learned about the baby 's vulnerability .\nnasa scientists say we may find intelligent life elsewhere in the cosmos . but chances of finding intelligent life on other planets are slim , says david wheeler . wheeler : if there are 40 billion earth-like planets out there , the odds improve quite a bit . he says signs of life on exoplanets orbiting nearby stars will probably be discovered in the coming decades .\njemma peacock , 31 , suffers from a rare form of stomach cancer . she is currently taking three drugs to try to prolong her life . the third and most effective drug - regorafenib - costs the nhs around # 1,000 a week to provide and has been removed from the health service 's approved list of treatments . mrs peacocks says she can not afford to buy regoracenib privately . she has set up a 100,000-strong petition for the drug to be funded .\nchelsea goalkeeper petr cech posted a video on his youtube channel . cech played the drums to ` magnificent ' by u2 . the czech republic international has fallen behind thibaut courtois in jose mourinho 's pecking order . cech is expected to leave stamford bridge this summer . arsenal and liverpool have been linked with the 32-year-old .\ncampaign chiefs attempted to rebuff a letter from 100 business leaders . called for a labour government signed by people ` from all walks of life ' but within hours the plan was in chaos as it was found the signatories included a benefit fraudster , trade unionists and the cigar-smoking children of millionaires .\nunemployment rate for college graduates grew by 1.5 per cent in 2014 . the number of jobless americans in their 20s armed with a four-year or advanced degree rose to 12.4 per cent last year from 10.9 per cent . engineering and business majors have the most chance on landing a job in today 's competitive market .\nmanchester united travel to stamford bridge on saturday night . chelsea boss jose mourinho has been forced to sell players to balance the books at the club . mourinho claims it is easier to manage united than chelsea . the blues boss says his players are the worst behaved in the premier league .\ncouple from lincolnshire scooped # 53million euromillions jackpot on tuesday . richard and angela maxwell , both 67 , are now 10th biggest winners in uk . mrs maxwell thought husband was playing an april fool 's day joke on her . couple plan to take family on holiday to new zealand first class and buy land rover .\nqpr beat west brom 4-1 at the hawthorns on saturday . the win ended a five-match losing run for chris ramsey 's side . qpr are just three points behind aston villa in the premier league . joey barton believes his side have a ` hell of a chance ' of staying up .\nthe 2015 general election is just over two weeks away . with it comes a new batch of bizarre election memorabilia . from tory cupcake cases to lib dem 18th birthday cards , here are some of the best . the oddest items include party leader underwear and ukip pendents .\nespn reporter goes on regrettable rant . monty python and stephen hawking recreate `` galaxy song '' gisele bundchen retires at age 34 . a new book explores social media 's role in shaming people . the first set of female quintuplets in the world were born in houston .\n17-month-old layla was found beaten to death at her home in festus , missouri . mother taylor lynn fast , 21 , told police she had been bitten by a spider . she said she had not realized her child was dead , police said . fast was arrested and charged with endangering the welfare of a child .\nthe 27-year-old is trying to change people 's perceptions of somalia . ugaaso abukar boocow 's instagram feed features selfies , snaps with friends and photos of beauty spots . the civil servant moved to canada when she was two years old . she began posting photos to let her family in canada know she was safe . ugaaso has amassed nearly 70,000 followers on instagram .\nfloyd mayweather is preparing for his $ 300million fight with manny pacquiao . conor mcgregor has been talking up his ability to ` kill ' mayweather in 30 seconds . the undefeated champion said he does n't take the ufc star seriously . mayweather said mcgregor is just trying to get some publicity for his fight .\ngary ballance 's hundred looks to have closed the door on an england return for kevin pietersen . former ashes hero flintoff believes pietersen is now ` running out of time ' to resurrect his test career . ballance , ian bell and joe root surely all now secure in the middle order for the summer .\nfinley lamb , five , suffers from rare brain abnormality periventricular nodular heterotopia . it means many of his ` grey matter ' cells have not migrated to the correct position . left him unable to walk and talk and with 90 % chance of developing epilepsy . but he defied the odds to take his first steps last year and now walks two miles to school .\nmuliaina was arrested after connacht 's 14-7 defeat by gloucester last night . the 34-year-old full back was led away by officers at the kingsholm stadium . he was arrested in connection with an allegation of sexual assault in cardiff in march . muliaina has 100 caps for the all blacks and retired from international rugby after the 2011 world cup victory .\nivan rakitic shared a picture of himself and his family celebrating st george 's day with his 425,000 instagram followers . the barcelona midfielder described his wife and daughter as his ` princesses ' rakitic has been an integral part of luis enrique 's side since joining from sevilla in june .\na recently released fbi affidavit reveals that a chinese translator was accused of sharing government information with an alleged spy . xiaoming gao was paid ` thousands of dollars ' to provide information on ` u.s. persons and a u.s. ' government employee ' the affidavit also revealed that gao lived with another state department employee who had top-secret clearance . despite these claims however , she was never prosecuted by the government .\nmanchester united lost 1-0 to chelsea in the premier league on saturday . eden hazard scored the only goal of the game at stamford bridge . juan mata returned to stamford bridge for the first time since leaving the club . the midfielder says he was proud of his side 's performance against chelsea .\ngabriel salvador was a waiter at craig 's in west hollywood . he told les moonves he could help make the floyd mayweather vs. manny pacquiao fight happen . salvador has appeared in `` bones '' and `` blue bloods '' he says he got the number of pacqu xiao 's trainer , freddie roach .\nall-rounder injured himself on first day of second test in grenada . stokes struck immediately when he came on to bowl and was admonished by umpire steve davis . durham all-rounder was involved in heated dispute with marlon samuels . england bowler james anderson took the first wicket of the day .\ncarlos colina , 32 , will be arraigned for murder april 14 . his remains were found in a duffel bag saturday in cambridge , massachusetts . he was also charged with assault and battery earlier this week . the victim in that case is different from the one whose remains were discovered .\nnew study shows dogs can detect prostate cancer with 98 per cent accuracy . the research was carried out by the humanitas clinical and research centre in milan . it involved two dogs sniffing the urine of 900 men - 360 with prostate cancer and 540 without . scientists found that dog one got it right in 98.7 per cent of cases .\naston villa defeated liverpool 1-0 to reach the fa cup final . philippe coutinho fired liverpool ahead with a smart chip . chrisitan benteke equalised for tim sherwood 's side . fabian delph scored a stunning solo effort for villa . jack grealish impressed on his debut at wembley .\nkanye west settles civil suit with paparazzi photographer he assaulted . the two shook hands after an apology , lawyer says . the photographer , daniel ramos , had filed the suit after west attacked him at an airport in 2013 . west pleaded no contest last year to a misdemeanor count of battery over the scuffle .\npalermo lost 2-1 at home to milan last weekend and are 11th in serie a . the sicilian side have not won away from home since november 2 . roberto vitiello 's side travel to udinese on sunday looking to end their poor run .\nkhayree gay , 31 , arrested on friday at the security inn and suites hotel in lake city , south carolina . gay , who is originally from feltonville , pennsylvania , is facing federal charges for allegedly kidnapping a jewelers row employee on april 4 in philadelphia . the 53-year-old female victim was seen walking through the parking garage on april 3 before she was grabbed and thrown into a van . the ford van was seen on surveillance tape making its way to the roof of the garage where the woman was told she was going to die by men in ski masks .\ndeborah steel , 37 , ran the royal standard pub in ely , cambridgeshire . she was last seen alive just after 1am on 28 december 1997 . police believe she was killed and recently reclassified the investigation as a murder inquiry , but the 37-year-old 's body has never been found .\nmichael mcindoe played for bristol city and wolverhampton wanderers . lured players into scheme with promises of a 20 per cent return . scheme collapsed amid mounting debts and he was declared bankrupt in october . he is now being chased through the courts by creditors . mcindoes girlfriend gave him # 9,000 in july and he is now surviving on handouts .\na headstone for hillary clinton 's father was found tipped over this week . it happened just a couple of days after she announced her run for president . police are investigating , but no other headstones were knocked over . funeral director : vandalism is most-likely cause , not the weather .\npine eagle charter school in halfway , oregon was the scene of a surprise ` active shooter ' drill that 's left teacher linda mclean with post-traumatic fears years later . mclean , 56 , was in her classroom when a masked man in a hoodie burst in with a gun , lowered it to her head and pulled the trigger . the teacher had no clue it was a drill to test her ` preparedness ' or that the gun was loaded with blanks . ` you 're dead , ' the shooter said .\ncrystal mcnaughton from long beach , california filmed the moment her newborn son paul started welling up to a rousing song from glee . as the lea michele version of the track o holy night plays , footage shows a look of sadness spreading across the tiny infant 's face .\nqantas jet bound for perth was forced to turn back to sydney airport . the airbus a330 took off soon after 11am but was back on the tarmac by 12.30 pm . an indicator light showed a possible issue with the rear cargo doors . passengers will be moved to another flight due to depart sunday afternoon .\npresident barack obama tied himself to the mast of a nuclear deal with iran . peter bergen : reaching a good , solid agreement with iran is a worthy , desirable goal . but the process has unfolded under the destructive influence of political considerations , he says . bergen says the deal so far does not look promising .\nco-pilot andreas lubitz had been treated for a psychiatric illness . his doctor did not tell his airline about his ` suicidal tendencies ' german privacy laws were introduced as a consequence of the nazis . lawmakers have called for airlines to have mandatory access to medical records .\nmanchester united beat chelsea 1-0 at stamford bridge on saturday . luke shaw returned to the team after missing four games with a back injury . the left back admits he has struggled to cope with the demands of playing for united . the 19-year-old has started seeing a psychologist in recent weeks .\nparis saint-germain have won the dutch league for the first time since 2007-08 . psv eindhoven beat heerenveen 4-1 to win the title on saturday . luuk de jong scored two headed goals in the first half .\nandy murray married kim sears at dunblane cathedral on saturday . the tennis star and his wife have been engaged for more than nine years . the wedding was held in the 12th century cathedral in ayrshire . hundreds of well-wishers gathered outside the cathedral to greet the couple .\nan autistic boy was locked in a metal cage at a canberra school . the cage was specifically designed as a ` withdrawal space ' for the 10-year-old boy . the principal has been suspended and an investigation is underway . act education minister joy burch said it was a horrifying situation .\ntiny villages and settlements are hidden away from the rest of the world . from villages under boulders in portugal , to floating villages in peru . the secluded settlements are often cut off from the surrounding areas . but are each set in their own natural paradises . the cliff of bandiagara , mali is home to the dogon people .\nblackwater sniper nicholas slatten sentenced to life in prison . paul slough , evan liberty and dustin heard sentenced to 30 years each . the four were among seven blackwater employees who opened fire in baghdad . 17 people were killed in the 2007 mass shooting in baghdad , killing 17 people .\nbob shannon has been charged with a sexual assault against a girl under the age of 16 . the 59-year-old helped prepare hatton for his comeback fight against vyacheslav senchenko in november 2012 . manchester-based shannon trained hatton 's brother , matthew , to a european title and world title shot .\norana wildlife park in new zealand 's christchurch is one of the few zoos in the world which has installed a moving cage to bring spectators as close as possible to lions in an open habitat . 20 people , including visitors and zoo keepers , climb inside to have lunch with a lion with a pack of the hungry beasts clambering over the cage .\nkhalid batarfi was a senior leader with al-qaeda in the arabian peninsula . he was jailed by yemeni officials but freed by terrorists two days ago . pictures posted online show him posing in the governor 's palace in mukalla . he is seen posing with his ak-47 and standing on a yemeni flag . the militants stormed the central prison of mukalla with machine guns .\na family of four was in a car that ran off the road into los angeles harbor on thursday . two children were pulled from the submerged vehicle then hospitalized in grave condition where one later died . firefighter miguel meza who dove into the water in san pedro after a car carrying a family of 4 plunged into the harbor has been hailed a hero on the facebook page of city councilman joe buscaino .\nfitness and social media stars to walk the runway at mercedes-benz fashion week australia . we are handsome will debut their first active swim range on tuesday night in sydney . the models will include sjana earp , kate kendall , amanda bisk , juliet burnett , and lindy klim .\njose luis gaya is being watched by a number of premier league clubs . manchester city , arsenal and chelsea are all interested in the 19-year-old . gaya 's buy-out clause is currently set at # 13.5 m . he flies forward in the style of jordi alba and juan bernat .\npenny spends a week at niyama , in the dhaalu atoll , in maldives . the resort has a huge infinity pool , brilliant white sand and cerulean sea . she also enjoys snorkelling , visits to the spa and walks around the island . the food is some of the most gorgeous she 's ever tasted .\njurgen klopp will leave borussia dortmund in the summer . klopp has won two bundesliga titles and the champions league . the 47-year-old will officially cease to be dortmund manager on june 30 . klopp denied reports he will take a year-long sabbatical .\nmap shows average yearly counts of lightning flashes per square kilometer from 1995 to 2013 . highest amounts of lightning occurred in far eastern democratic republic of congo and lake maracaibo in northwestern venezuela . areas with the fewest number of flashes each year are grey and purple . areas of the world with the largest number of lightning are shown in bright pink .\ntwo women seen visiting cockpit of flight from dublin to berlin schönefeld . irish aviation authority are investigating the incident . two of the women were believed to be off-duty ryanair staff . the two women were not wearing their uniform at the time of the incident .\nfernando torres spent three-and-half years at liverpool . the striker struck up a close friendship with steven gerrard . torres has struggled for form since leaving the club in 2011 . he has scored four goals since returning to atletico madrid on loan . torres says gerrard is the best player he has played with .\nnew york city resident ella dawson was diagnosed with genital herpes two years ago . she says she felt compelled to share her sexual health status after a boy at a party made a joke about her herpes . she said that she felt empowered after telling someone she had herpes because it humanized the virus in a way that made it less of a stigma . according to the cdc about 17 per cent of people ages 14-19 have genital herpes caused by hsv2 .\ncharlotte blakeway was discovered dead at her home in shropshire . the 17-year-old had suffered an epileptic fit and was found in the bath . friends have paid tribute to the talented singer on facebook . she was studying film , performance , english and sociology at college .\n14-bedroom property is located in the dordogne valley in france . the castle dates from the 13th century and was refurbished in the 19th century . the property also features 14 bathrooms and its own suit of armour . the hill-top castle sits on 46 hectares of land and is on the market for # 703,400 .\ndavid cameron repeatedly interrupted while trying to answer questions on radio 1 's live lounge . host chris smith offered to bet # 1,000 he would n't win a majority , with pm refusing to take the bet . listeners on twitter branded the interview ` appalling ' and ` disgusting ' and accused bbc of bias .\ndavid king , 70 , from east london , had not been seen for six months . he had been living in normandy , france , with his family for 15 years . he is thought to have got into an argument with a 28-year-old neighbour . police found his body in a 12ft well in pierres , south west of caen .\nandy murray attended barcelona 's champions league clash with psg . the british no 1 was joined by best man ross hutchins at the nou camp . murray is currently training in barcelona with jonas bjorkman . the 27-year-old watched lionel messi score his 400th career goal on saturday .\nlawrence dallaglio says poor performance of english clubs is a ` crisis ' for french rugby . saracens are the nation 's solitary representative in the semi-finals after bath , northampton and wasps tumbled out of the champions cup . dallaglio believes there is a gulf in class between the aviva premiership and top 14 .\nclinton jackson , 25 , and marvin sempler , 30 , jailed for total of 44 years . jermaine kellman , 29 , and darren lewis , 34 , also jailed for aggravated burglary . the gang targeted couple verna fisher , 81 , and mortimer fisher , 85 , in their home . mrs fisher was thrown off her bed and her purse was taken from under her pillow . lewis struck the pensioner twice with a metal bar , leaving her covered in blood . her husband mortimer was sleeping in another room when the men broke in . the couple were so traumatised by the ordeal they had to leave their home in hertfordshire .\nterri hernandez has revealed that she grew close to ursula lloyd , the mother of odin lloyd , during her son 's murder trial . hernandez said she even smiled at lloyd after the jury returned a first degree murder conviction for her son . lloyd refused to comment on the story , saying she no longer wished to speak about her son 's murder .\nnasa officials claim there are 200 billion earth-like planets in our galaxy . they say we could be on the verge of finding life on one of them . ' i believe we are going to have strong indications of life beyond earth in the next decade and definitive evidence in thenext 10 to 20 years , ' said ellen stofan , chief scientist for nasa .\nadrian peterson is to meet with the nfl to discuss his reinstatement . the minnesota vikings running back played once last season . peterson was placed on the commissioner 's exempt list due to a child abuse case . the 30-year-old was due to be reinstated on april 15 . the 2012 mvp has been linked with the cowboys and arizona cardinals .\nmanchester city lost 2-1 to crystal palace at selhurst park on monday . samir nasri came on as a substitute in the second half . the frenchman was pictured leaving hakkasan in the capital on tuesday . city are willing to use nasri and edin dzeko as bait in a deal to sign juventus midfielder paul pogba .\nstudy by edge hill university and the university of south australia found link between anxiety and grades . found pupils who worry about exam performance more likely to do badly . parents should draw up a revision timetable and give children time off . find a quiet place to revise and switch off the internet .\nmanchester united beat manchester city 4-2 in the derby on sunday . city fans were filmed singing a vile song about the munich air disaster outside old trafford . the clip was uploaded to youtube and appears to have been taken by a city fan . 23 people died in the 1958 tragedy including manchester united players . greater manchester police are investigating the incident .\nfiorentina ace mario gomez opened the scoring for his side in the 43rd minute . substitute juan vargas doubled the viola 's lead in the 90th minute . dynamo kiev 's jeremain lens was sent off for an apparent dive in the 40th minute .\nthe body of stephanie scott , 26 , was discovered on friday evening . her body was found in cocoparra national park north of griffith , nsw . the leeton high school teacher was allegedly murdered and dumped in bushland six days before she was due to walk down the aisle . mother jodie salerno said her three children ` do n't want to return ' to school because they are so upset over ms scott 's death . police are due to begin an autopsy on ms scott to determine how she was killed .\ndog found in a pool of blood on rural road in cass county , north dakota . needed more than 50 stitches after being stabbed with eight inch blade . has been nursed back to health by foster family and is on the road to recovery . authorities have launched an investigation into the attack .\nchristian englander threw a banana peel at dave chappelle during his show in santa fe , new mexico , on monday night . he was arrested on suspicion of disorderly conduct and battery . on thursday , he threw another peel at a man who confronted him about the first attack . englander , 30 , claims he threw the peel because the ` irony of this situation is too much to pass up '\ntimothy stanley : video of police shooting raises troubling questions . he says law requiring data on police killings has never been implemented . he asks : what if there was no video ? stanley : we do n't know when and where police killings take place . he urges congress to enforce the law . the public deserves to know . the video shows a police officer shooting an unarmed black man .\nin a speech sunday , pope francis called the killings of 1 million armenians a `` genocide '' previous popes had avoided the word , but francis cited a document from john paul ii . the pope 's use of the word was met with anger in turkey . the vatican has a moral and political weight that can be difficult to balance .\npope francis uses the word `` genocide '' to refer to mass killings of armenians a century ago . turkey recalls its ambassador to the vatican for `` consultations '' after francis ' comments . turkey calls the pope 's use of the word ` genocide ' `` unacceptable ' and ` out of touch ' with historical facts .\noskar groening , 93 , is accused of complicity in the killing of 300,000 jews . he was tasked with meeting trains bringing victims to the camp and robbing them . auschwitz survivors and relatives of those murdered there filed into court today . they spoke of their pain , pride and duty in confronting this ` cog ' in genocide . groening was known as ` the bookkeeper ' for his role in the camp in nazi-occupied poland .\nthe 33-year-old officer is being held in isolation and ca n't walk down a hall without the entire cell block being cleared first . his attorney andy savage said slager is housed in a room with one small window and does not have any interaction with any other detainees at charleston county jail . slager , 33 , is charged with murder after opening fire on walter scott , 50 , after reportedly stopping him over a broken tail light in north charleston , south carolina , on saturday . his mother is expected to visit her son friday for the first time since the shooting .\n5 americans who were exposed to ebola in west africa have been released from a nebraska hospital . one of the five had a heart-related issue on saturday and has been discharged but has n't left the area . they were exposed in march , but none developed the deadly virus .\ncounterterrorism agencies have arrested two suspected australian terrorists in turkey . it 's claimed they were on their way to join with the islamic state . the men were caught trying to sneak into syria to join terror groups . it happened a day after turkey agreed to a new extradition treaty and an intelligence-sharing agreement with australia .\nmartin alvarado jr , 23 , was watching his girlfriend 's 18-month-old son last thursday when he allegedly became enraged that the boy urinated on him during a diaper change . he allegedly repeatedly hit the boy , who later died . he was charged with first-degree murder on monday and has been ordered to be held without bail .\nandros townsend scored england 's equaliser against italy on tuesday . the tottenham winger has scored three goals in seven games for england . the 23-year-old has been sent out to nine different clubs on loan by spurs . townsend has scored as many goals for england as he has done in the premier league for spurs .\nfrench-language tv network tv5monde says it was hacked by an islamist group . the network 's director says the attack is an `` extremely powerful cyberattack '' there was no immediate claim of responsibility by isis or any other group . tv5monde offers programming in french to 260 million homes worldwide .\nthe droid , called bb-8 , stars in the eagerly anticipated film star wars : the force awakens . it took to the stage at star wars celebration convention in anaheim , california . the droid ran rings around retro droid r2-d2 on its spherical body . director jj abrams confirmed that a real robot was used during filming . but he did not reveal how the robot worked , leaving fans on twitter wondering .\nan ` unprecedented ' number of australians could face the death penalty in china for drug smuggling . the revelation follows widespread public anger at indonesia 's executions of australian nationals myuran sukumaran and andrew chan . chinese authorities have said that eleven australians were apprehended on suspected drug smuggling charges in guangzhou alone in 2014 . it comes as one of the few australians known to be facing death row in china - sydney man peter gardner - had his case pushed forward by six months .\narsenal players choosing to employ relatives as their agents . alex oxlade-chamberlain 's father mark is acting as his representative . calum chambers is on the books at cassius sports management . danny welbeck has long been looked after by his brothers chris and wayne .\njack andraka 's memoir , breakthrough , has been praised by the president . the 18-year-old was bullied at school for being gay and depressed after his uncle died of pancreatic cancer . he channeled his grief into the science that would make him a star .\nthe capybara called joejoe has near 60,000 followers on instagram . the rodent lives in las vegas with his owner cody kennedy . add that to his near 5,000 facebook likes and his twitter account . the video shows the rodent sitting in a bath with three ducklings .\na pain and gain report has revealed that home resales recording a gross loss were at an all time low . only 8.6 percent of homes had recorded a loss and a shocking 32.3 percent had shown properties selling for more than double their original price . sydney recorded the lowest loss-making resales at just 2.4 percent over the quarter which is down from 3.5 percent in a year . perth and melbourne also saw extremely low resale losses of 5.5 % and 5.6 % respectively . melbourne homes are held for longer than any other capital city with an owning period of nearly 12 years .\nfree app called none * gives users only one clue to get started . there are no images , music , animations , sound effects or hints . the game has a pitch black screen and a single clue written in white text . there is no indication of what the goal of the game is or how it works . however , the app can be completed and has 50 levels .\nbereaved mother accused long-term chum jamie of stealing from her . but he was caught out after taking a lie detector test on the jeremy kyle show . she was furious after the money was set aside for a # 500 grave stone . jamie has been to prison for burglary and was found to be lying .\nlib dems want to end up with 30-something mps after may 7 , compared with 57 in 2010 . nick clegg has set out the first of his ` premier league policies ' for a second coalition . he said he would demand education spending be protected as the price of propping up another coalition .\nsteven christopher costa , 31 , plans to head to iraq next month to fight against isis . he will leave his wife and young children behind to fight for three months . mr costa , who spent six years in the navy , will join kurdish fighters in iraq . he said he will take his own life if he is ever captured by the terrorists .\nmike and susan fortuna , of shelburne , are accusing allergan of failing to warn of dangers , negligence and breach of the vermont consumer fraud act . mandy fortuna , 21 , died last year after receiving botox injections for spasms caused by cerebral palsy . the fortunas claim their daughter suffered an unexplained deterioration in her health after from dr. scott benjamin .\nliverpool given go-ahead to install privacy screen around melwood training ground . club concerned that team details have been leaked out before matches . liverpool city council planning committee gave its approval on tuesday . local residents wanted a designated area for fans to be able to watch training .\nblackpool are in talks to sign austria defender thomas piermayr . the 25-year-old has been training with the championship club this week . piermayr is a free agent and had been playing for colorado rapids . the former austria u21 international had a spell with inverness caledonian thistle in 2011 .\ngreen leader natalie bennett has distanced herself from jim jepps . he used a blog called the daily maybe to defend ` rape fantasies ' he also described paedophiles as ` complex human beings ' ms bennett has been dating mr jepps for five years after meeting online . green party stresses they do not ` want to be associated ' with his internet rants .\nvirginia roberts had hoped to join lawsuit involving andrew 's friend jeffrey epstein . she claimed she was a ` sex slave ' to epstein and was forced to have sex with the duke of york three times . judge kenneth marra ordered her claims that she was forced into sex with andrew should be ` struck from the record '\nadrianne haslet-davis and her husband , adam davis , were standing near the finish line on the day of the boston marathon bombing . she recalled the force of the blast that killed three people and injured over 200 that april day in 2013 . `` we were so in love and happy together , '' she told a federal jury wednesday .\nthe fbi made at least six arrests in minneapolis and san diego on sunday following a joint terrorism task force operation . the arrests were made after an investigation into youths traveling to join isis in iraq and syria . three of the men arrested in minneapolis were already known to authorities , according to reports .\nleading psychologist jo lamble says belle gibson could be displaying signs of both a narcissism disorder and anti-social personality disorder . she says the 23-year-old made up her terminal cancer diagnosis in an interview with the australian women 's weekly . lack of remorse is a common trait seen in those with anti- social personalities , says lamble .\nmore than five million australian visas are expected to be issued to students , tourists and workers this year . as many as 1.9 million foreigners travelling on short term visas are predicted to be spending time down under at any one time throughout this year . while a record 185,000 permanent migrants moved to australia in 1969 - this figure is likely to be exceeded in 2015 as people are moving to the lucky country in droves .\nhalf a dozen men were sitting on the roof of the van when it toppled on to one side . terrifying footage was taken by a following motorist who followed the vehicle . the van is understood to have been transporting football fans in morocco . the video shows the packed vehicle weaving from side-to-side on a busy road .\nbayern munich legend franz beckenbauer believes jurgen klopp could succeed pep guardiola at the allianz arena . klopp won two bundesliga titles in seven seasons with borussia dortmund . guardiola has a contract until the summer of 2016 . bayern face former club barcelona in the champions league on tuesday .\nadvertising entrepreneur john singleton is selling his breathtaking beach house on the central coast of new south wales . the luxurious five-bedroom abode offers sweeping views of the pacific ocean . singleton bought the five bedroom residence for a suburb record of $ 4.25 million in late 2007 . the agents expect bidding for the may 9 auction to will kick off at $ 3.5 million .\nmark ronson 's `` uptown funk ! '' has been no. 1 for 13 weeks . the single is the longest-leading of the 2010s . it 's one of 10 songs ever to top the hot 100 for at least 13 weeks , dating to 1958 .\npiers morgan has called on arsenal to replace arsene wenger with jurgen klopp . the german manager has announced his intention to leave borussia dortmund in the summer . morgan says arsenal would be a ` perfect ' fit for klopp . he has long been an outspoken critic of wenger .\na group of women were so fed up with their friend 's ` running commentary ' they put an anonymous letter in her mailbox . jade ruthven , 33 , of perth , western australia , was shocked when she found the scathing note claiming to be from ` a few of the girls ' it criticises her for posting too many photos of her six-month-old daughter addison on facebook . the cruel nature of the letter spurred jade to stand up for herself .\nsharmeena begum , 15 , was raised by her uncle shamim miah , a devout muslim . he encouraged her to pray each dawn before classes at bethnal green academy . he blames airport authorities , police and her school for letting her flee . she flew from gatwick to turkey before crossing the border to syria .\nbarbara walters has been trying to convince abc to hire monica lewinsky as a co-host on the view . the former white house intern would be a ` run away success ' on the show , a network source tells daily mail online . lewinsky recently participated in a 22-minute long ted talk that has made international headlines .\nben cousins has been charged with reckless driving and failing to stop . the 36-year-old was due to appear in court on wednesday morning . his lawyer claimed the former west coast eagles captain had conflicting medical appointments . cousins was arrested on march 11 after allegedly leading police on a low speed chase from bicton to mosman park .\nan offensive image has been circulating on social media . the image accuses mothers who have a caesarean as being ` too lazy to have a baby ' the image is believed to come from a firebrand american religious group called ` the disciples of the new dawn ' in the u.s. university of sydney 's professor of gynecology hans peter dietz said the image represents an attitude which is widespread in australia .\ngaioz nigalidze , current georgian champion , expelled from dubai open chess tournament . he was found using his smartphone in the middle of a match . tournament organisers found the phone in a cubicle , covered in toilet paper . nigalidz was expelled from tournament and could now face a 15-year ban .\njonathan trott opened the batting for st kitts & nevis but lasted just three balls . gary ballance -lrb- 17 -rrb- largely failed to do so , but jonny bairstow made 98 . joe root ended the day 87 not out in a score of 303 for nine .\na 30-year-old darwin man was charged with posing as a nurse for six weeks . he allegedly used someone else 's employee registration number at the aurukun primary health centre on cape york during february and march . he was charged on saturday with one count of fraud . queensland health authorities are now sifting through patient records to identify which patients the man interacted with and what drugs may have been administered .\nchampionship strugglers are deliberating over the future of kit symons . fulham will sound out brentford manager mark warburton about taking over at craven cottage . owner shahid khan planning to release a budget of # 20million to spend on new players .\nsicily is the `` promised land '' for migrants and refugees making the desperate journey from north africa to europe 's mediterranean coast . more than 10,000 people have arrived from libya since last weekend alone , according to the italian coast guard . when moammar gadhafi was in control , he also controlled the flow of migrant ships .\nman united host manchester city at old trafford on sunday afternoon . the derby is one of the biggest match-ups in world football . sportsmail looks at everything local between the two giants . louis van gaal has taken a lot of local knowledge from ryan giggs . manuel pellegrini has been keen to familiarise himself with manchester .\njericho scott , 16 , was killed early on sunday while he sat in a car in new haven , connecticut . he was shot dead while he was in a white volkswagen with a 20-year-old friend . scott became an internet star after being told he could n't pitch for his little league team because he had a 40mph fastball at age nine . the budding star had five no-hitters in the team 's first eight games of the season before he was told he had to sit or switch positions .\nif he wins election david cameron will offer public # 4bn of lloyds bank shares . shares still held by government after gordon brown 's # 20bn bailout . individuals will be allowed to buy up to # 10,000 worth of lloysds banking group shares . sale would be the biggest privatisation since the thatcher era .\nmoira gemmill was cycling to work at st james 's palace when she was hit . she had recently left her role as director of design at the victoria and albert museum . the 55-year-old was the fifth cyclist killed on london 's road this year . her brother andrew described her as a ` wonderful , inspirational woman '\nhousing chiefs accused of hypocrisy for opposing plans to revive margaret thatcher 's flagship right-to-buy policy . pledge to extend dream of home ownership to 1.3 million social tenants was centrepiece of tory manifesto . but housing associations responded furiously - with one board member lambasting the proposal as the ` right to steal '\nproperty advertised online as pharaoh 's palace promises a ` perfect private location ' on seven secluded acres in tampa . millionaire gary lowndes purchased the property in 2013 for $ 2 million and had planned to film a reality show about strippers on the property . but lownds has repeatedly fallen foul of complaints about noisey private functions held on the grounds . on friday the county code enforcement board found that lownde 's company had violated their rules by holding events without the right permit and running a business in a residential neighborhood .\njohn caudwell bought the audley street garage in mayfair , central london for # 155million in 2011 . he plans to knock it down and build a high-end housing complex on the site . the new apartment block will contain five townhouses , three penthouses , a mews home and 21 luxury flats . it will be nine storeys high and will include a 15-metre swimming pool , gym and spa . but it could face trouble getting planning permission as vip neighbours may object to building works .\ngeorge lucas dropped plans for film studio complex in 2012 after opposition from neighbors . but the star wars director is determined to build a new community on his 1,039-acre estate in marin county , california . the 224-home community would be built for low-income families and pensioners .\nmarsha yumi perry , 36 , was arrested on friday after allegedly striking a five-year-old boy with her truck and hiding from officers in a hole . police dog , ranger , was able to track her scent through a field before she gave herself up after warnings to reveal herself before the dog was unleashed . perry was taken into custody on accusations of felony hit-and-run , driving with a suspended license and on a misdemeanor warrant .\nthe two-time formula one world champion took time out from training ahead of the spanish grand prix next week . lewis hamilton and his brother nicolas took a ride in his shelby cobra . the 23-year-old will become the first driver with a disability to compete in the british touring championship .\nkimberley donoghue , 28 , from ponthenri , south wales , broke her leg . she fell down stairs carrying decorations just four days before the wedding . wore a knee-high cast and nhs-issue crutches for the big day . was wheeled into church by her dad and had to sit to take her vows .\ndarren bent says he has had talks with aston villa about a return . the former england striker is currently on loan at derby county . bent said villa were ' 100 per cent ' correct to sack paul lambert . tim sherwood has inspired a mini-revival at villa park .\nmen 's face product company west coast shaving has created a photo project of the 30 most famous rock bands . the faces of each band are blended into one . some band members in particular shine through . the beatles , u2 and guns n ' roses are among the bands featured .\nmartyn uzzell was killed when he was thrown into path of a car by a four-inch deep pothole . the 51-year-old was riding from land 's end to john o'groats for macmillan cancer support . council sent workers to inspect hole a month before tragedy but decided it did not need repairing . widow kate uzzel has now won six-figure payout from north yorkshire county council .\nwhistling has all but disappeared over the last few decades . the decline of working class jobs and music on the ipod are to blame . the slow fizzle of whistling 's popularity has also been linked to the decline of variety shows . in the 70s and 80s whistling was still popular in many pop songs .\nthe west brom chairman has fielded enquiries from consortia in america , china and australia . peace owns 77 per cent and is looking to sell the club for between # 150million to # 200m . aston villa are already in talks with potential buyers . manager tony pulis will be kept informed of developments .\nsergio perez fears ' a very painful year ' lies ahead for force india . the mexican finished 10th in the australian grand prix . force india 's b-spec car is due to be unveiled in june . perez finished 13th in malaysia and is hoping for a step forward .\nqantas has released photos of four koalas in business class . paddle , pellita , chan and idalia have been sent from australia as a gift to singapore . the animals were served refreshments and eucalyptus leaves . the loan aims to symbolise the relationship between australia and singapore .\njohn helinski was homeless for three years . he was a foreign-born american citizen . he had no id , no social security card and only a box to live on . a cop and a case worker helped him get his id and social security . now he 's set to buy his own place and collect a nice pension .\nroberto carlos has revealed his desire to become manager of brazil . the former real madrid defender claims he finds coaching ` very easy ' carlos won the 2002 world cup with brazil and played for real madrid . he has worked on the sidelines in turkey with sivasspor and akhisar belediyespor .\nwildlife authorities in anchorage , alaska , said they will kill a mother bear and her four cubs . the family started eating from trash cans in a busy neighborhood . officials ruled that killing the family was the only option . the bears have been spotted several times around the government hill neighborhood .\nawel manyang believes her three siblings who died in the crash were eaten by crocodiles . her siblings - one-year-old brother bol and four-year old twins madit and anger - died after their mother akon guode crashed her 4wd into a lake at wyndham vale in melbourne 's outer west on wednesday . the children 's father , joseph tito manyang , says awel remains in a serious condition at the royal children 's hospital but she remembers the accident . she believes her siblings were taken by a crocodile because they associate the giant reptiles with water .\ninternal memos reveal qantas could lose their eight heathrow landing strips . the airline has been told they could be fined # 20,000 for every 15 late arrivals . qant as has slipped to an on time ranking of 75 out of 80 airlines that use heathrow airport . a qantas spokesperson said air congestion at heathrow and dubai were to blame for the late arrivals .\nfurious listeners say vital last minutes of shows have been left off versions uploaded to the iplayer service . shows such as dad 's army and hancock 's half hour have all fallen foul of the problem . bbc blames on the system it uses to record programmes .\nthe new wine matching guide was compiled by jacob 's creek . it recommends shiraz rose for pizza and merlot for chocolates . tasters tried 11 types of wine with 10 of the nation 's most popular snacks . they found different wines match different pizza toppings .\ncharles piutau rejected a new deal with the blues and nzru in favour of a season in belfast . wasps players were incensed by the three-game ban handed to nathan hughes . alun wyn jones can put his body on the line for ospreys and wales .\na $ 500 canister with vials of bull semen was taken from daniel weness 's farm . the canister was worth about $ 500 , and the vials were worth from $ 300 to $ 1,500 apiece . the theft happened sometime between april 1 and 7 .\nsome breast cancer patients may be spared chemotherapy . tests pinpoint genetic ` markers ' in tumour and determine aggressiveness . after surgery , cancer cells are sent to lab where they are screened . women told within days whether they have a high or low risk of disease returning .\njimmy anderson is unique as a bowler and knows his own mind . england have always produced swing bowlers but not one with anderson 's skills . the 32-year-old is playing in his 100th test match for england this week in antigua . anderson is on the brink of becoming england 's leading wicket-taker in tests .\nthe pfa named their premier league team of the year on sunday . chelsea 's eden hazard , nemanja matic , alexis sanchez and david de gea make the xi . tottenham 's harry kane is the only english attacking player . chelsea captain john terry is omitted from the team .\njack wilshere completed 90 minutes for arsenal 's u21 side against stoke city . mikel arteta and abou diaby were also involved in the match at the emirates . alex iwobi scored a hat-trick for the gunners in the 4-1 win .\ndermatologist dr sandra lee is known online as dr pimple popper . she posts videos of herself extracting her patients zits on her youtube channel . the clips have earned her nearly 60,000 subscribers , as well as loyal fan base of zit squeezing enthusiasts on reddit .\nian watson is poised to come out of his playing retirement at the age of 38 . salford assistant coach has stepped up his training ahead of sunday 's home game against castleford . watson 's last game was as player-coach in the championship for swinton last june .\ntiger woods hit his club into a tree root on the ninth hole at augusta . the four-time masters champion was forced to drop his club . woods finished the tournament at 5-under-par , tied for 17th . the american claimed he popped a ligament in his right wrist back into place .\nrussian president vladimir putin will be answering questions from the general public . the annual event is a chance for ordinary russians to ask their leader questions . putin has held forth on subjects from parenting to food prices , to relations with america . critics of the kremlin slam this entire event as russia 's imitation of democracy in action .\nfriends have paid tribute to hina shamim , 21 , who was killed in crash . she was walking from her flat to the library when she was knocked down . bmw driver , 34 , arrested on suspicion of causing death by dangerous driving . six people , including five children , taken to hospital with injuries . miss shamim was due to celebrate her 22nd birthday next week .\nrebecca adlington is eight months pregnant with her first child . the olympic gold medalist has been struggling with her weight gain . she says she 's now ` craving stodge ' and is fed up of stairs . the 26-year-old says she ca n't wait to get back in shape .\na woman , 87 , caused a disturbance on air canada flight aca-877 . the flight from germany to toronto was forced to divert to shannon airport . the pensioner was restrained by cabin crew until the plane landed . on touching down , she was met by irish police and taken into custody .\nreanne evans takes on ken doherty in the first of three preliminary rounds on thursday . jimmy white will take on fellow veteran james wattana in his opener on saturday . steve davis will also attempt to qualify for this year 's betfred world championship at the crucible .\nsamantha simmonds and husband phillip davies have three children . the mother-of-three said easter holiday turned into a string of tantrums and bickering . she described how her six-year-old son knocked out his brother 's tooth . the 42-year old also describes ` working mum guilt ' in blog post .\nafl coach alastair clarkson has been filmed lashing out at an aggressive fan after his team 's narrow loss to port adelaide on saturday night . the footage shows a young man taunting clarkson as he made his way back to his adelaide hotel room . it 's understood the pair had been goading clarkson in the lead-up to the confrontation . hawthorn ceo stuart fox said the boys were intoxicated and ` clarko was certainly harassed ' former collingwood and brisbane coach leigh matthews has also come out in support of clarkson .\nnina anderson , 78 , was home alone when burglar broke in to her home . gold and silver necklaces worth nearly # 400 were taken from her bedroom . she spotted two of the stolen items in pawn shop window two months later . her actions echo those of agatha christie character miss marple . martin campbell , 28 , has now been jailed for three years for the crime .\nlocals from the island of kudahuvadhoo in the maldives reported witnessing ' a low-flying jumbo jet ' on the morning of march 8 last year . the flight disappeared while travelling from kuala lumpur to beijing with 239 people on board . the reports come as acoustic scientists refuse to rule out the possibility that ` distinctive ' data they recorded from the area at the assumed time of the crash may have come from the impact of the aircraft as it hit the indian ocean .\nformer nfl star aaron hernandez was found guilty on wednesday of first-degree murder in a deadly late-night shooting . hernandez , 25 , looked to his right and pursed his lips after the jury forewoman read the verdict . the first - degree murder conviction carries a mandatory sentence of life in prison without parole . hernandez 's mother , terri , and his fiancee , shayanna jenkins , cried and gasped when they heard the verdict .\nthe average british worker will sit through 6,239 meetings in their career . one in five adults admits to catching forty winks during a work meeting . of 2000 surveyed , 70 per cent said they constantly zone out while in meetings . the average worker switches off completely after 20 minutes of meetings .\ndepressed donna oettinger , 41 , had sought urgent psychiatric help . she and her son zaki died on train tracks in south london in march 2013 . she had attempted to kill herself three months before the tragedy . but she was unable to receive the treatment recommended by doctors .\nmario ambarita , 21 , clambered into the wheel housing of the garuda indonesia flight . the flight took off from the main island of sumatra and flew at 34,000 ft to jakarta . he climbed into the aircraft when the aircraft stopped at the end of the runway . the desperate reason for his actions was simply that he was ` looking for work '\nwest indies bowled out england for just 50 runs on day one of the first test in antigua . jonathan trott was out without scoring in the first over and captain alastair cook failed again . michael vaughan criticised england 's footwork and mindset . geoff boycott also criticised the pair for just looking to survive .\njo burston , 43 , is an award-winning tech entrepreneur . she started her first business job capital in melbourne in 2010 . the company turned over $ 40 million in its first four years . burston has now started eight companies . she caught the attention of richard branson while staying on his private retreat necker island . she has now launched her new business ` inspiring rare birds '\nextremist preacher hani al-sibai lives in same west london street as jihadi john . the egyptian-born cleric is believed to have influenced a number of young men . they then travelled abroad to join terror groups , including jihadi john , whose real name is mohammed emwazi . security services are believed to be investigating al - sibai 's influence on the london boys terror cell of which emwazia was a part .\nliverpool lost to aston villa in the fa cup semi-final on sunday . brendan rodgers has spent # 200million since taking charge of the club . but the reds have won nothing in three years and are yet to win a trophy . rodgers has signed 22 players but only seven of those can be considered a success .\nparty will launch billboard advert using image from famous 1979 ` labour is n't working ' poster . but instead it will warn : ` the doctor ca n't see you now ' poster features same long line of people . labour will warn that new official figures show 600 fewer gp surgeries are now open in the evening and weekends compared to the last election .\nchannel 7 perth news reporter monique dirksz got the scoop on ben cousins ' arrest . she was the only journalist outside freemantle police station at 2am on march 12 when he was released on bail . first class constable daniel jamieson is said to have been dating ms dirksz at the time . he is accused of divulging information that gave her a particular advantage . the 29-year-old was stood down immediately and has been charged with four counts of disclosing official secrets . officers also reportedly accessed files containing information about daniel kerr , a fellow former west coast eagles player .\nnico rosberg finished second in the chinese grand prix . the german was angry with his team-mate lewis hamilton after the race . hamilton claimed he was not controlling his own race . rosberg has now posted a video explaining his comments . he also responded to a fan who accused him of ` crying '\ngolden state lead new orleans 1-0 in their western conference first-round series . stephen curry scored 34 points for the warriors in the win . the point guard nearly single-handedly outscored new orleans with 11 first quarter points . game two in the best-of-seven series is scheduled for monday night in oakland .\nmark lowe , 32 , from skelmersdale , lancashire , is serving a five-year sentence for beating and kicking his brother wayne to death . mark killed his brother after he tried to stab him during a drink-fuelled day of fighting at his mum 's house on september 7 last year . mark 's wife sarah is now looking after three young children alone . she said : ` mark will regret what he did for the rest of his life , because he loved his brother '\nlewis hamilton won the bahrain grand prix from pole position . kimi raikkonen finished second for ferrari . jenson button failed to start the race after an energy recovery system failure . hamilton has out-qualified and finished ahead of nico rosberg at every race this season . bernie ecclestone denied trying to engineer a deal for hamilton to join ferrari .\nhealth gurus say pumpkin seed oil can help enhance your mood , renew skin and even reduce menopause symptoms . pumpkin seeds are rich in vitamins a , k and e , as well as vital minerals and fatty acids . can be drizzled onto food or applied directly to skin and hair .\nandy lee and peter quillin were awarded a draw by the judges after 12 rounds in brooklyn . lee retains his wbo middleweight title after quillin failed to make the required 160lbs weight on friday . the irishman was knocked down twice in the first round . lee admitted he was ` lazy ' in the early stages of the fight .\njulie ronayne had a hysterectomy at liverpool women 's hospital in 2008 . she was left ` looking like michelin man ' after contracting a dangerous infection . husband edward was awarded # 9,000 in compensation for nervous shock . he claimed he suffered a psychiatric injury from seeing his wife 's appearance . nhs is now fighting to overturn the payout , fearing it could have disastrous consequences for the organisation .\nbob greene : robert kennedy jr. compared `` vaccine-induced '' autism to the holocaust . greene : kennedy 's rhetoric is a problem , even beyond the fraudulent basis for his claims . he seems to think people with autism are `` gone , '' their lives `` destroyed , '' greene says . greene says kennedy 's apology demeaned people with intellectual disabilities .\nnorwegian manager ronny deila admits his first six months were tough . deila 's side exited the champions league twice in that period . the bhoys have since picked up results and lead the premiership . deilla has been backed by peter lawwell and john kennedy .\ned miliband repeatedly refused to admit he had got it wrong over the past five years about jobs , crime and the effect of tuition fees . labour leader rejected statistics read out by evan davis on how situation in all three cases had improved . he also refused to say how much labour would be borrowing by the end of the next parliament .\nmap shows which premier league club is most popular on twitter . arsenal are the most popular team in the world with 5.6 million followers . chelsea have 5.4 million followers , manchester united have 4.8 m and liverpool have 4,7 million . liverpool dominate the uk but are second in asia and north america .\nfor children living in pakistan 's slums , there is often little entertainment offered . but some facilities are popping up in poor areas on the outskirts of major cities . the amusement parks have been erected on the outside of islamabad and rawalpindi . many of those who are enjoying the rides have fled their villages due to fighting between security forces and militants in the tribal areas .\nbrentford are considering appointing gianfranco zola as their new manager . current boss mark warburton is to leave the club next month . the italian was at griffin park on saturday for the draw against bolton . zola was sacked by cagliari last month after a winless spell in serie a.\ntories accuse labour of a crude new attempt to ` weaponise ' the nhs . ed miliband was also accused of hypocrisy after he claimed that the coalition had made it harder to get a gp appointment . mr miliband claimed there were now 600 fewer gp surgeries open during evenings and weekends than before the previous election .\njason edward harrington , who worked with tsa for six years , claims groping is a daily occurrence at security checkpoints across the country . he said staff ` bending the rules ' so they could inappropriately touch passengers . follows revelations that two tsa workers were fired for manipulating body scanners in denver as part of a scheme to pat men down .\ndishes on offer in the staff canteen at yeo valley 's headquarters in blagdon , north somerset . executive chef paul collins has spent 20 years working at michelin-starred restaurants . meals include organic sourdough with yeo valley salted butter for starters .\nmichael carrick says he would love to be an f1 driver when he retires . manchester united midfielder says he wants to emulate ryan giggs . carrick has enjoyed a renaissance this season , and hopes to play for many more years . the 34-year-old admits moving to london at the age of 15 was a struggle .\nsaudi arabia executed siti zainab this morning for stabbing her employer . the domestic worker had been on death row for over 15 years . her family and officials were not given adequate notice or information . indonesia has summoned saudi arabia 's ambassador to complain about her death . amnesty international says her killing ` smacks of a basic lack of humanity ' human rights groups are using zainab 's beheading to urge indonesia to abandon its support for the death penalty .\nreal madrid face city rivals atletico in their champions league quarter-final second leg at the santiago bernabeu on wednesday night . gareth bale is out of the tie after suffering a calf injury in the 3-1 win against malaga at the weekend . the wales international took to facebook to wish his team good luck on wednesday .\na lawsuit claims johns hopkins and the rockefeller foundation funded the guatemala experiments . it says subjects were deliberately infected with sexually transmitted diseases . the subjects were n't told they 'd been infected , the lawsuit says . the suit seeks more than $ 1 billion in damages . the rockefeller foundation denies responsibility .\ntory party has opened up a four-point lead over ed miliband 's labour . tories have 36 % of the vote compared to labour 's 32 % , new poll reveals . lib dems have eight % of vote , ukip ten % and greens five % , according to comres .\nmary lucia , 44 , revealed her terrifying ordeal in a letter to fans on wednesday as she explained she would be taking some time off from the station following the ordeal . she filed a restraining order against patrick henry kelly after he allegedly repeatedly violated it . he allegedly sent her letters , emails and gifts including a frog calculator and flowers to her home and workplace . he faces up to 10 years in prison if convicted . kelly allegedly sent lucia a letter about his dead dog and she responded sympathetically in march 2014 . he then allegedly started sending her ` delusional ' e-mails and calling her on her personal numbers .\ninverness reached the scottish cup final after extra time against celtic . celtic were denied a penalty and a goalline handball before half-time . josh meekings was then sent off for fouling marley watkins . celtic keeper craig gordon was also sent off in the second half . virgil van dijk had given celtic the lead with a sublime free-kick .\na reading university researcher has said that bees prefer cities to fields . the expansion of farmland has actually been damaging to bee population , according to the researcher . wildlife sites in four english counties saw bee species decrease . dr deepa senapathi believes intensive agriculture is to blame .\nsorority sister sarah grimes sued kristen saban in 2012 , claiming she suffered lasting injuries during a boozy brawl with saban in 2010 . grimes portrayed kristen saban as the aggressor , but the coach 's daughter claimed it was grimes who attacked her first and she was just defending herself . grimes said she suffered serious injuries , including a concussion and a broken nose that required surgery . saban pleaded guilty to an unspecified offense before the university 's judicial board but was not prosecuted .\nadelaide crows captain taylor ` tex ' walker offered a helping hand to satine cahill . the seven-year-old was serving as the team 's mascot ahead of their match against north melbourne at adelaide oval on sunday . but she became spooked by the fireworks and rumbling 47,000 fans in the stadium . tex quickly stepped up to help calm satine down before taking her hand and walking with her onto the field .\nchristian benteke opened the scoring for aston villa in the 35th minute . the striker has scored six goals in eight games for the midlands side . tottenham 's erik lamela was sent off in the second half for the visitors . jack grealish made his villa debut in the 3-0 win over tottenham .\nformer new england patriots tight end aaron hernandez has been moved to a new prison a week after he was convicted of first-degree murder . a state prisons official says hernandez , 25 , was moved wednesday to the maximum-security souza-baranowski correctional center in shirley , massachusetts . he was convicted april 15 of killing 27-year-old odin lloyd in 2013 . lloyd was dating the sister of hernandez 's fiancee .\nhorses were riding for charis cancer care charity in greencastle , county tyrone . one horse attempted to jump a black peugeot 206 car with glass still in the windscreen . one animal can be seen crashing head first into the turf , dismounting a rider . complaints have been made after horses were ` exploited and abused ' in ` obviously dangerous ' event .\ncourt rejects petition to delay reactivation of reactors in japan 's southwest . kagoshima district court found no `` irrationalities '' in new safety standards . the first of two reactors is scheduled to go back online in july . japan 's 48 nuclear reactors are offline in the wake of the fukushima disaster in 2011 .\nnermin kancefer , 50 , moved in to dennis sears ' # 615,000 flat in february 2012 . four months later , he died at the age of 87 . mr sears 's family claimed the carer exploited the childless widower . but miss kancefers insists mr sears had a change of heart after falling out with his family .\neden hazard scored the opener for chelsea in their 2-1 win over stoke city . chelsea captain john terry hailed the belgian as one of the world 's best players . diego costa was forced off with a hamstring injury during the match . chelsea are seven points clear at the top of the premier league .\ndr zoe waller , 31 , teaches pharmacy at university of east anglia . she suffers from the skin condition dermatographia - a type of urticaria . it is caused when the cells under the surface of the skin release histamines . this causes a raised , itchy rash to appear on the skin at the slightest pressure . she uses her skin to create designs to teach her students about drugs .\nthe university of florida redshirt freshman was arrested on saturday after a robbery at a gainsville apartment . police said jerald christopher ` jc ' jackson , of immokalee , florida , entered an acquaintance 's apartment saturday with two men . the 19-year-old cornerback left the apartment , and then one of the other men allegedly pulled out a gun . police : they took two video game consoles , marijuana and $ 382 from the apartment 's three residents .\njordan spieth opens up about the loss of his autistic sister ellie . the 21-year-old golfer won the masters at augusta national on sunday . he equaled tiger woods ' 1997 winning score of 18 under par . spieth is the second-youngest winner of the masters , behind woods .\nhudea was pictured in refugee camp near turkey after her father was killed . she and her family left the camp two weeks ago , heading for idlib , syria . but city fell to al qaeda 's brutal syrian affiliate al-nusra at the weekend . family are now trapped between three different rebel factions . al-qaeda-linked group has promised to impose sharia law in the city .\nvivid sydney festival will feature over 60 light installations and 140 artists . the festival has expanded outside the cbd to include central park in chippendale and chatswood . exhibits will be found at circular quay , the rocks , darling harbour , pyrmont and martin place .\nmiriam gonzalez durantez says she has been ` religiously paying taxes ' in uk for 10 years . spanish lawyer says she would like to be able to vote in may 's general election . but she says right-wing tories would probably kick her out of the country . comes after nick clegg warned ` bandwagons of the far right ' are encircling tories . he said the party 's ` increasingly hapless leadership ' is losing grip on the party .\nhillary clinton and her aide huma abedin were spotted at a chipotle in maumee , ohio , on monday afternoon . the couple ordered a chicken burrito bowl , a chicken salad , a blackberry izzy soda and a regular soda without being recognized . the manager says they did n't leave a tip , despite there being a tip jar on the counter . ` the other lady paid the bill , ' he said , referring to abedin , the vice chairwoman of clinton 's campaign .\nthe game will be closed to the public , major league baseball says . the baltimore orioles and chicago white sox will play a closed game wednesday . the game follows the postponements of monday 's and tuesday 's games . the team also announced it would move three games against the tampa bay rays to florida .\nmichael owen and kyle careford were killed in the crash in crowborough , east sussex . mr owen was preparing for his daughter 's fifth birthday when he was killed . the 21-year-old had just received a job offer and was preparing to celebrate . mr careford is thought to have died just days before turning 21 .\nbrian o'driscoll was pictured crowd surfing at a party in hong kong . the picture went viral on social media and o ' driscoll 's wife amy huberman posted it . o'driscoll has been in hong hong this week working as an ambassador for hsbc ahead of the hong kong sevens .\nnicola sturgeon has sparked outrage by refusing to rule out a second vote . lib dem leader nick clegg warns the entire country would suffer . snp leader has spent the day campaigning in a nursery in loanhead . she was booed after saying scots should be given another say .\njapan 's prime minister shinzo abe will speak wednesday to congress . julian zelizer : abe 's speech is an opportunity to help along the trans-pacific partnership . he says the immediate battle in congress is not over the tpp directly , but something called `` fast-track '' zelizer says the key is to reframe the debate over trade promotion authority .\ncnn 's nick paton walsh visits a u.s. military base in afghanistan . it is a regional logistics hub for the afghan police force . the facility was originally intended to resupply the entire east of the country . but the project has been handed between rotations of u.s. officers .\nluke watson , a police officer in toronto , ontario , has dyed his hair hot pink in order to protest against homophobia , discrimination and any acts of bullying towards lgbt people . the day of pink event is held on april 8 across canada . officer ryan willmer volunteered his fellow officer luke for the makeover without him knowing .\nformer us open champion justin rose will play in the zurich classic of new orleans at tpc louisiana . rose finished joint second with phil mickelson behind jordan spieth at augusta national earlier this month . rose has not been outside the top 15 on his last three outings at t pc louisiana .\ncleveland browns quarterback johnny manziel was spotted at a texas rangers game tuesday night days after leaving rehab . manziel and his girlfriend colleen crowley were spotted together in public for the first time since he entered rehab . crowley has been taking heat on instagram for refusing to give up her wild ways while manziel was being treated for his unspecified problems .\nhannah wilson , 22 , was last seen at about 1am on friday and her body was found in a rural area of brown county in needmore , indiana , about 20 miles from campus . daniel messel , 49 , of bloomington , was arrested in connection to the case and faces a preliminary murder charge . coroner said wilson was struck three or four times in the back of the head with an unknown object .\nzheng gong hospital in henan province , china , was under threat of demolition . the two-storey hospital outpatient building is 1,700 square metres in size . it is situated in the path of a road expansion project and was under danger . engineers are now using 1,000 metal rollers to ` push ' the building 17.5 metres a day .\nobama met with iraqi prime minister haidar al-abadi in the oval office on tuesday . mr. abadi had been expected to seek billions of dollars in drones and other u.s. weapons during his visit . but white house spokesman josh earnest later said the iraqi leader did not make a specific request for additional military support during the meeting .\npensioner ronald butcher died in march 2013 and left his entire # 500,000 fortune to daniel sharp after he cleared his gutters for free . but relatives and friends insist that the will , made just two months before his death , is invalid and say that the builder is lying about his friendship with mr butcher .\nbudi was rescued from a chicken coup in borneo , indonesia , last december . the baby orangutan was dying from malnutrition and too weak to move . he was introduced to jemmi less than a month ago and the pair have become inseparable . video footage shows the pair sharing a meal together and playing in their enclosure .\nstoke city boss mark hughes wants to extend britannia stadium pitch . the current 100m x 66m playing area is the joint smallest in the premier league . the premier league wish to standardise pitch sizes at 105m x 68m . ten clubs currently meet the regulation size .\nthe duchess of cambridge is due to give birth today or tomorrow . she said her baby is due ` mid to late april ' during a visit to london . but the palace says neither that date or any other has been confirmed . the 25th is the favourite but tomorrow and friday are also popular .\nhull kr avoided a potential challenge cup banana skin with a 50-30 victory at the odsal stadium . winger josh mantellato scored four tries and kicked 14 points for hull kr against bradford bulls . ryan shaw converted on his way to a tally of five goals .\nmanuel pellegrini admits manchester city are looking to invest in homegrown talent . jason denayer has impressed while on loan at celtic from city . the 19-year-old defender could be released by the scottish champions . celtic are keen to keep hold of the belgian defender .\nliverpool are interested in borussia dortmund striker ciro immobile . the italy international has struggled since joining from torino . liverpool are also interested in monaco midfielder geoffrey kondogbia . spartak moscow want to sign nemanja vidic from inter milan . chelsea have checked on standard liege left-back damien dussaut . manchester city are considering the merits of qpr goalkeeper alex mccarthy . stoke city are keen on blackpool teenager dom telford .\ndanny alexander has finally replied to the infamous note left in the treasury . liam byrne left memo after labour 's election defeat in 2010 . it said : ` dear chief secretary , i 'm afraid that there is no money ' mr alexander today sent a letter to mr byrne apologising for the late reply . he said it was because he had been ` fixing the economy '\nstephen hogger , 55 , was sacked after falling out with senior church figures . all 13 choristers at st peter and st paul church in suffolk have now resigned . walkout means it will be the first time in 200 years that the church will be without a choir .\nchimps in kibale national park in uganda have learned to look for traffic . researchers say the apes are having to adapt to cope with busy roads . they found dominant males will wait to ensure younger chimps cross safely . it is the first time chimpanzees have been seen to adapt their behaviour to adapt .\nprovidence college beat boston university 4-3 in the ncaa championship game on saturday . the game will always be remembered for the game-tying goal allowed by bu 's matt o'connor , not the winner . o`connor lost track of a puck in his glove and managed to kick it in the net . the mistake allowed providence to tie in the third period and paved the way for the friars to win their first title .\nsam allardyce 's side are 10th in the premier league table . they face manchester city at the etihad stadium on sunday . allardyce is hoping for a strong end to the season . west ham are without diafra sakho , but enner valencia is expected to return .\nscottish nationalists threaten to block ` any bit of spending ' they do not agree with . threat comes as labour says it is prepared to speak to any other party in a hung parliament . but snp suggests it would hold ed miliband to ransom if he refuses to scrap trident .\nnew york city police have released the image of a tattoo found on the body of a woman in hopes of identifying her . the unnamed woman , believed to be between 25 and 45 years old , was discovered lying unconscious march 22 in the gravesend section of brooklyn . paramedics who responded to the scene were unable to revive her and she was pronounced dead that evening . investigators believe the faded body art was the name ` monique ' etched across a tattooed ribbon within a heart topped with a rose .\nemad sahabi 's ankle appeared to have twisted 180 degrees after chasing down the ball . the saudi arabian footballer tumbled over under pressure before his joint snapped and appeared to dislocate . the midfielder suffered the injury while playing for his club al orubah against al shoalah .\njimmy white 's bid to qualify for world snooker championship ended on monday . white lost 10-8 to matthew selt in qualifying in sheffield . six-time world champion steve davis also knocked out by kurt maflin . white had taken a 7-2 lead before selt fought back to win .\nnew youtube kids mobile app targets young children with unfair and deceptive advertising and should be investigated , consumer advocates told the federal trade commission in a letter tuesday . google introduced the app in february as a ` safer ' place for kids to explore videos because it was restricted to ` family-focused content ' but the consumer activists say the app is so stuffed with advertisements and product placements that it 's hard to tell the difference between entertainment and commercials .\npresident obama met his cuban counterpart , raul castro , on friday night . the two leaders met at a dinner for latin american leaders convening in panama city . the meeting was so important that a white house spokesperson said they shook hands . the u.s.-cuba relationship has been strained for more than 50 years .\nnavinder singh sarao , 37 , accused of manipulating share market in 2010 . he is accused of making more than # 26 million using fraudulent trading technique . he was arrested at his parents ' home in west london on tuesday . sarao was bailed with a surety of # 5 million but has not paid it . he will remain in custody until at least monday when he can pay the money . he faces extradition to the u.s. and could face 380 years in prison .\na leg of lamb was found with 20 grams of marijuana inside it . police in the northern territory discovered it after it smelled suspicious . the lamb had been shipped to a company at darwin airport . it was then sent on to the tiwi islands 100kms to the north . the stash would have been worth $ 2000 if it had been sold .\naustralian chef dan churchill is on a us tour promoting his cook book . he appeared on good morning america with gossip girl star blake lively . churchill admitted to lively that he crushes more on husband ryan reynolds . the pair flirted over food and ryan reynolds on the show .\nukip leader said that his party is now the ` serious challenger ' to labour in northern seats . he accused the party of making claims ukip is racist because it is ` running scared ' mr farage called on conservative supporters to vote tactically to help ukip beat labour .\nwestley capper , 37 , and craig porter , 33 , have admitted being in mercedes . agnese klavina , 30 , disappeared after night out at glitzy puerto banus nightclub . police believe 5ft 7in waitress was forced into the vehicle . capper 's father john is a multi-millionaire property developer . judge expected to order fresh round of dna tests after hopes of breakthrough foundered .\ntv shows like true blood and twilight are said to be encouraging the surge . professor giuseppe ferrari made revelation at vatican-backed exorcism course in rome . he said that the films are driving a new generation of what the church considers demonic ` possessions '\nmanchester united beat manchester city 4-2 in the derby on sunday . eric cantona believes the red devils can win the league next year . the former united striker believes louis van gaal is the right man for the job . cantona was speaking at the laureus sports awards in shanghai .\nantolin alcaraz could get a short-term extension at goodison park . sylvain distin 's contract expires at the end of the season . but roberto martinez says he still has time to prove he deserves a new deal . the everton boss is keen to advance the talents of younger players . martinez says his club 's recruitment team have been searching for targets for six months .\nthe blues kept a clean sheet in a 1-0 win over arsenal at the emirates . john terry was in impressive form for jose mourinho 's side . sportsmail 's martin keown says terry is enjoying the best football of his career . arsenal fans were heard lamenting chelsea 's ` boring ' performance .\nkirk pingelly and his surfing champion wife layne beachly won their case against a disgruntled neighbour . wendy goyer claimed her ` small but charming view ' would be obstructed if mr pengilly and ms beachley 's addition was built . the couple argued ms goyer 's views are ` at best only a glimpse ' from her bedroom . warringah council approved plans for additions to be made to the 762 square metre home back in august 2013 .\nasbestos was discovered in the roof at new york city 's mayoral residence and work to remove the potentially cancer-causing materials will begin this month . officials do not believe the work poses any health risk to mayor bill de blasio and his family , who will remain in the home during the renovation . the cost of removing the asbestos will be about $ 250,000 and the contract was awarded this week to regional management inc. .\nyoung model is just 18 months younger than her sister gigi hadid . she is featured in the may issue of elle magazine . the brunette beauty models a series of revealing ensembles . she also models giuseppe zanotti cowboy boots , which are on sale for $ 500 .\nvideo footage shows blaine taylor from aberdeen , scotland , competing against his older brother , cody . but as he goes to roll his egg down a grassy hill , he accidentally steps on it with shell and yolk mushed into the ground . immediately blaine starts wailing with tears welling up in his eyes .\nbouea macrophylla -- or mango plum -- is the latest tropical fruit to go on sale in uk . the fruit has a bright orange edible skin and will go on sale at marks & spencer from this weekend . it has a sweet taste similar to an alphonso mango but with a softer texture .\nout of 17 bingo halls tested , seven had traces of cocaine in toilets . another had traces for crack cocaine , a more dangerous form of the drug . venues let players as young as 18 in , but majority of attendees are elderly . discovery mirrors rise in oaps being treated for drug abuse in the uk .\nmarcelo bosch has signed a contract extension with saracens . the 31-year-old kicked a last-minute penalty to secure victory over racing metro in the european champions cup quarter-final 11 days ago . the 33 times-capped international joined saracen from biarritz in 2013 .\nandre ayew is out of contract with french side marseille at the end of the season . the ghana international is a free agent and wants to move to england . he has been linked with liverpool , newcastle and swansea . the 25-year-old admits he supported liverpool as a boy and would like to play for them .\nmanchester united face chelsea at stamford bridge on saturday . louis van gaal has four players out injured for the game . michael carrick , daley blind , phil jones and marcos rojo are all out . wayne rooney could be asked to drop back into midfield . robin van persie is not yet fit enough to return to the first-team .\nphotographs posted on instagram show the ` luxurious ' side of travel . but the reality of travelling can be a lot more difficult than we think . the great wall of china and the louvre are just two examples . other famous landmarks include the taj mahal and the brandenburg gate .\nthe couple , who have two teenage daughters , met when vili fualaau was in her second grade class in seattle and she was his sixth grade teacher . she was his teacher when their relationship turned sexual and by the end of the summer , she had fallen pregnant with his child . she gave birth to their first daughter while on bail in may 1997 and weeks after her release , she was found having sex with him in her car . she ultimately went to prison for seven and a half years . the couple got married 10 months later and have been together ever since . in an interview with barbara walters for 20/20 , they spoke about their marriage and their struggles .\njordan spieth shot a second round of 62 at the rbc heritage on friday . the 21-year-old bounced back from his opening 74 with a nine-under-par round . but troy merritt fired a 10-under 61 to equal the course record at harbour town golf links .\nlatasha gosling , 27 , and her two daughters , janyaa , 4 , and jenika , 8 , and son landen , 7 , were murdered early wednesday by her partner steve o'shaughnessy . o'shaughnessy sent photos of the bodies in a text message to the children 's father jason gosling the day before his birthday . o'shaughnessesy , 23 , was found dead just hours later after taking his own life in prince albert , canada . police found the six-month-old baby daughter he shared with gosling alive and unharmed .\namir khan has been criticised for rejecting a potential # 5million pay day against kell brook at wembley on june 13 . khan announced chris algieri as his opponent last week . but the british boxer has now admitted he does not know who he will fight on may 30 . khan also insisted he ca n't fight brook in june because of ramadan .\nlyon striker nabil fekir has attracted interest from manchester city . the 21-year-old 's father mohamed believes a move to arsenal would benefit his son , rather than a move away . mohamed fekirs says his son would not want to sit on the bench at man city .\nengland batsman alex hales has nine caps to date . hales made his odi debut against india last august . but he has played in only five of england 's subsequent 18 matches . the 26-year-old is hoping for more continuity when england resume their odi schedule this summer .\na lesbian couple are suing a georgia sperm bank for false advertising . they claim their donor turned out to be a schizophrenic with a criminal record . angela collins and margaret elizabeth hanson used xytex corp in 2006 . they were told their donor had an iq of 160 and a phd in neuroscience . but in june 2014 they discovered his name was james christian aggeles . he served eight months in jail and spent 10 years on probation .\ndemocratic sen. elizabeth warren says she 's not running for president . but she says she wants to see a candidate who will fight for the middle class . warren says the two gop candidates in the race have disqualified themselves . warren is a former special adviser for the consumer financial protection bureau .\n`` real housewives of beverly hills '' star kim richards is accused of kicking a police officer . richards was taken into custody by police at the beverly hills hotel . she is accused on accusations of trespassing , resisting arrest and public intoxication . richards is expected to face misdemeanor charges , police say .\nedmund echukwu , 35 , was pulled from the water at a james bond-themed sex party at a # 3million mansion in radlett , hertfordshire . fellow revellers tried to revive him but he was pronounced dead at watford general hospital . it is believed mr echuk wu is a nigerian from north london who was at his first swingers ' party at the eight-bedroom house .\nbookmakers coral say sue perkins is favourite to replace disgraced jeremy clarkson . she is ahead of former x-factor presenter dermot o'leary and british model jodie kidd . clarkson was sacked by the bbc after he verbally abused a producer on show .\nzeta beta tau students from the university of florida and emory university have been accused of disrespecting disabled veterans . the students were staying at the warrior beach retreat in panama city for their spring formal . about 60 veterans who fought in iraq and afghanistan were also attending the event . the veterans were spat on and verbally abused by the students . the zeta beta fraternity has been suspended and is investigating the incident .\npew research centre surveyed 1,060 13 to 17-year-olds . found that 24 per cent of teens were constantly checking their devices . nine in teenagers confessed to going online every day . more than 70 per cent use now more than one social network . facebook remains the most used social media site among teens .\nfaiz ikramulla , 35 , was arrested on thursday and charged with aggravated kidnapping . he is accused of dumping his daughter , aliya , in a trash can . the child was found by a passer-by wandering near a forest preserve in prospect heights , illinois . the girl 's mother is cooperating with child welfare investigators .\nhome owners who announce they are going on holiday could be refused cover . insurers use ` reasonable care ' clause in contracts to claim they ca n't pay out . used against people who advertise their vacation online . police have warned that would-be thieves will check social media for signs of holiday .\nramon c. estrada , 62 , was set to be paroled in less than three weeks when he died sunday at the prison in draper , utah . he was scheduled to have dialysis friday at the . prison 's treatment center , but a technician did not show up on . friday or saturday . the technician or technicians involved worked for a university of utah hospital clinic that provides dialysis for the prison .\nsport 's no 1 tipster sam turner and marcus townend offer their predictions for the grand national . ap mccoy 's glittering career will end at aintree on sunday . the 39-strong field for the race includes favourite shutthefrontdoor . will 70,000 spectators raise the roof and wipe out the bookies ?\nwest ham host leicester city at the king power stadium on saturday . nigel pearson has been involved in several controversial incidents this season . the foxes are currently bottom of the premier league . sam allardyce says that pearson has done an ` unbelievable job ' at leicester . allardyce had pearson on his coaching staff when he was newcastle united manager in 2007 .\ncrowds at the anzac day memorial service at sydney 's martin place have been left fuming after the ivy nightclub played loud dance music . a contractor doing a sound check inside the exclusive club is believed to have been responsible for turning the music on . many of those in the record crowd of 30,000 took to twitter to express their anger at the club .\nsampdoria president massimo ferrero quashes rumours of a job swap with napoli manager rafael benitez . ferrero says he would rather keep hold of current boss sinisa mihajlovic . napoli travel to face sampdoria on sunday in serie a.\na $ 16 million community center and apartment complex burned in east baltimore . `` we can rebuild , '' says the pastor of one of the partner churches . the center was to provide counseling , support services for people with hiv and aids . the cause of the blaze is still under investigation .\njohnny manziel has been released from rehab after checking into a facility on january 28 . the cleveland browns quarterback is out and ready to begin offseason workouts with the team , which begin on april 20 . according to espn , manziel was ` doing great ' in rehab , and had the full support of his team . this after manziel 's partying had been a topic of conversation since his rookie season began last july , with some worried his drinking was a priority .\njeff richmond , who is an executive producer and music composer on tina fey 's show unbreakable kimmy schmidt , described the death of dr fredric brandt , 65 , as ` very sad ' sources close to brandt said he was ` definitely hurt ' by an apparent portrayal of himself on the netflix show . the friend called the kimmymidt send up ` bullying , ' but added that it did not cause his suicide . brandt was found hanged in the garage of his miami mansion on sunday morning .\nmanchester united face rivals manchester city on sunday afternoon . louis van gaal 's side trained in the sunshine on friday ahead of the derby . wayne rooney , ander herrera and angel di maria were among the stars in action . robin van persie could return to the fray after being declared fit .\ndetective allegedly used police computer systems to spy . ciara campbell , 43 , accused of prying on ex-partner pc stuart swarbrick . she also allegedly spied on his new partner , a civilian police support worker . a ` large number ' of photographs of the new couple were found on her ipad . campbell denies three counts of unlawfully obtaining personal data .\nbayern munich beat bayer leverkusen 5-3 on penalties to reach the semi-final of the german cup . pep guardiola is concerned about his team without arjen robben and franck ribery . the german champions have scored just once in their last three games .\nadam crapser , 39 , was adopted from south korea in 1979 along with his biological sister . he was abandoned by his first adoptive parents and exposed to abuse by another . his guardians never sought citizenship or a green card for him . crapsers criminal convictions , ranging from burglary to assault , made him potentially deportable under immigration law . he is facing deportation and fears he will be separated from his wife and three children .\narchaeological evidence suggests neanderthals suffered from a wide range of diseases . they were infected by tuberculosis , typhoid , whooping cough and encephalitis . but modern humans may have carried the diseases to europe by migrating from africa . neanderthals may have helped modern humans by passing on slivers of immunity against some diseases to our ancestors when they interbred .\nscientists have found the skeleton of a new species of giant predatory bird . the four-foot-tall creature was found in a cliff in argentina . it is the most complete skeleton of the flightless ` terror birds ' to be found . the south american bird has been named llallawavis scagliai . it would have had powerful jaws but limited hearing , say the researchers . they say the bird 's hearing was probably below average compared to birds living today .\nchelsea face qpr at loftus road on sunday in premier league . jose mourinho says roman abramovich 's time at stamford bridge has been positive . blues boss believes abramovich has been good for chelsea and english football . mourinho believes the club will supply more players for england in the future . chelsea are in a far stronger position than when abramovich bought the club from ken bates in 2003 .\nvideo taken from the point of view of a train driver captures a ride on the highest railway in europe , the jungfrau . the time lapse footage speeds along the 9km long electrified track , which leads from kleine scheidegg to jungraujoch .\nnhs worker tom moffatt , 27 , from ashton-under-lyne , greater manchester , was meant to ink ` riley ' - the name of his four-year-old son - into his left arm . but instead of the letter ` l' , mr moffatt started needling the letter p . he also attempted to mark himself with riley 's nickname ` sonny boy ' - but ended up scratching ` sony boy ' across his knuckles instead . the makeshift tattoo session took place in mr moffat 's living room with a # 70 ink gun bought online .\nu.s. secretary of state john kerry says the deal is `` a good deal '' iran 's foreign minister says the agreement does n't close any of the country 's facilities . the deal would cut off `` every pathway '' iran could take to get a nuclear weapon , obama says .\nhospital in staffordshire ran out of space to store bodies in mortuary . bosses at queen 's hospital , burton , admitted they did n't tell relatives . bodies were transferred to mortuary for viewings , then returned to truck . hospital said there were an unprecedented number of deaths over easter weekend .\njohn coyne , 56 , ran the prince of wales pub in harrow road , central london . he attacked his 25-year-old victim who had fallen unconscious after a night of drinking . coyne was convicted of rape and engaging in sexual activity without consent .\npolice : freddie gray `` gave up without the use of force '' in his arrest . gray was arrested on a weapons charge april 12 . it 's unclear how gray suffered a spinal cord injury that led to his death . six police officers have been suspended . officers involved in the arrest .\nthree burglars broke into a san fernando valley home in the mid-afternoon on march 2 . the burglars , two men and one woman , can be seen entering the house through the kitchen . one suspect returns to the living room and stares directly into a surveillance camera . the boy immediately ducks and then hits the camera over , but not before it was able to capture a visual of his face . police said all three of the burglars were 17 to 20 years old . a 5ft safe and a number of firearms were stolen from the home .\npassengers jamie richardson and daniel taylor fined $ 3,000 for threatening behaviour on board a thomson airways flight . one allegedly threw peanuts and a pound coin at cabin crew . the other was accused of hitting himself on the head with clenched fists during the disturbance , which forced the flight from london to mexico to divert to bermuda .\nscott shirley , his wife mayo and son phoenix , 7 , were travelling back to washington dc . they were on a flight from orlando after a birthday trip to disney world . after boarding the plane , the family noticed their luggage was wet with vomit . mr shirley says staff refused to clean and scrub down the affected area of floor . family were given blankets , which they say did nothing to remove pungent smell .\nus tv series house of cards stars kevin spacey as francis underwood . the hit show follows underwood 's attempts to neutralise his opponents . the capital grille is a favoured venue for political plots in washington . every politician needs to connect with his or her voters .\nlewis hamilton won the bahrain grand prix ahead of kimi raikkonen . the briton extended his lead in the formula one world championship to 27 points . hamilton 's win is his third in four races this season . sebastian vettel finished third with nico rosberg fourth .\nformer sex slave kim bok-dong says she was forced to work in military brothels . she says she spent five years as a sex slave to japanese soldiers . she is now 89 and is going blind and deaf , but she wants to set the record straight . critics say japanese prime minister shinzo abe has not been vocal enough about the issue .\nabandonment methane is 20 times more effective at trapping heat than co2 . it forms through a process called serpentinisation . it occurs when seawater reacts with hot mantle rocks exhumed along large faults within the seafloor . scientists have found vast deep water gas hydrates in the arctic that are reservoirs for abiotic methane .\nburns survivor turia pitt said she still struggles to overcome her ordeal . the 27-year-old suffered burns to 65 per cent of her body in a bushfire . she was competing in an ultra-marathon in wa 's kimberley region in 2011 . ms pitt said just the smell of a barbecue brought back the traumatic moment . she ran her first marathon last month and clocked a faster time than before she was injured . mspitt recently underwent reconstructive surgery to rebuild her nose .\nlil ' chris was found hanged at his home by a friend , inquest told today . the 24-year-old pop star died on march 23 in lowestoft , suffolk . coroner peter dean said that a friend later identified the body . pathologist richard ball confirmed the cause of death as hanging .\nbob heslip , 50 , suffers from neurofibromatosis type 1 , or nf-1 , which is caused by a gene malfunction . the noncancerous lumps began appearing on his body around puberty and became more severe as he aged . he has joined the venice beach freakshow and said for the first time in his life he feels comfortable in his skin .\nal qaeda-linked pakistanis talked about attacking the vatican in 2010 , an italian prosecutor says . `` this is ... a reminder about the world we 're in right now , '' a u.s. congressman says . there 's ample evidence that christians have been targeted by terrorist groups .\nmarvel 's `` avengers : age of ultron '' is a summer blockbuster , but it 's not great . director joss whedon mixes some brooding down-time in with the abundant spectacle . the climax and resolution could have been worked out in more complex , less rote ways .\narsenal face burnley at turf moor on saturday evening . arsene wenger 's side have won 15 of their last 17 games in all competitions . but chelsea are seven points clear at the top of the premier league . wenger has challenged his squad to put any dreams of a late charge to bed . the gunners boss is also targeting an fa cup semi-final place .\ntories pledge to protect children from easy access to online pornography . culture and media secretary sajid javid says it is corroding childhood . he promises legislation to force distributors to put age verification in place . if porn websites fail to comply , they will be blocked by a new regulator .\nthe granite mountain hotshots were killed in june 2013 while battling a massive woodland blaze in prescott , arizona . now , a city attorney claims the lone survivor , lookout brendan mcdonough , overheard an argument between crew chief eric marsh and his deputy jesse steed . paladini says marsh ordered steed to leave a safe spot where the fire had already burned , while steed warned against it . neither mcdonoug nor former prescott fire division chief darrell willis will verify paladinis claim . the revelation could change the outcome of a wrongful death suit filed by a dozen families of the fallen firefighters .\ncontestants on bear grylls ' show had not eaten for two weeks . they killed what producers believed was a common caiman during filming . but it has now been revealed that the animal was an endangered american crocodile . channel 4 said it was a ` regrettable error ' and the animal has been replaced .\nreal madrid take on juventus in champions league semi-final . italian press have compared the tie to a pair of films . la gazzetta dello sport pin hopes on carlos tevez to win . pep guardiola faces his former team bayern munich in the other semi . spain are looking towards an all-spanish final between barcelona and real madrid .\nandy murray will begin a trial with jonas bjorkman next week . the world no 3 's current coach amelie mauresmo is pregnant . mauresmo is expected to give birth in august . the frenchwoman may have to alter her coaching schedule . murray is set to marry his long-term girlfriend kim sears on saturday .\nthe town of evansville once existed in comanche county , kansas . it was home to a post office , grocery store and even a school house . but now , the town is a shadow of its former self , with commissary building in disrepair . however , it is still home to two final residents - rancher larry ` dee ' scherich and his wife , phyllis . couple tend to the site 's cattle , and hike up to springs for fresh water . town was once home to largest cattle ranch in kansas 's history .\nbruce jenner said he has the `` soul of a female '' in a two-hour special . his ex-wife , linda thompson , said she would have taken his secrets `` to my grave '' the two had two sons during their five-year marriage . thompson said she forgives jenner for those years .\nmike holpin , 56 , has fathered 40 children by 20 different women . he is engaged for the fourth time and still has a dating profile . holpin says he loves sex and wo n't use contraception . he has cost taxpayers # 4.3 million in benefits and other costs .\nbayern munich face porto in the champions league quarter-final on tuesday . xabi alonso could become only second player to win the trophy with three different teams . clarence seedorf won the champions cup with ajax , real madrid and milan . thiago motta could equal seedorf 's record if he wins the trophy for psg .\nsarah fox , 27 , was found dead at a flat in bootle on thursday night . hours later , her mother bernadette , 57 , was also found dead . police are now hunting for peter fox , the brother and son of the women . they say they want to speak ` urgently ' with him in connection to the deaths . family of bernadettes and sarah say they are ` absolutely devastated '\nmadeline luciano was fired after pupils wrote nasty words about girl , 13 , on board . but 40-year-old claims she was trying to teach lesson about bullying . she has now launched court action against new york 's education department . says she is the victim of ` injustice ' and wants her job back .\nscientists at penn state university in pennsylvania found 50 galaxies that may contain intelligent alien races . these galaxies were found to be emitting ` unusually high ' levels of radiation . this could be because aliens are harnessing the power of stars . however , further research is needed to confirm that is the case .\na mass brawl broke out in the seventh innings of a game between the kansas city royals and rivals the chicago white sox . a heated exchange between royals starter yordano ventura and white sox outfielder adam eaton sparked the brawl . umpires ejected a total of five players from both teams after the fight at chicago 's us cellular field .\n`` furious 7 '' is expected to gross $ 115 million or more when it opens this weekend . it is getting the widest release in universal 's history with a theater count of roughly 4,003 . overseas , the movie is also poised to do massive business .\nmore people in britain back fracking than are opposed to it , poll finds . 42 % of those polled said they supported shale gas extraction . but 35 % disagreed with using the controversial technique . findings were hidden in footnote to greenpeace press release . greenpeace accused of trying to bury inconvenient survey result .\nedward nudel , 41 , of staten island broke into his relative 's home on march 11 and strangled a 2-year-old pomeranian named lola ` in an especially depraved and sadistic manner , ' police say . nudal and the relative reportedly had an argument and , after strangling the dog , he called the relative and said ' i killed lola ' police were called and arrived at nudle 's bay terrace home to find him sleeping in his bed with lola lying motionless on the floor nearby with her tongue out . nudel , who reportedly appeared intoxicated , wrestled with the cops , kicking one officer in the upper body .\nsouth korea 's prime minister lee wan-koo offered to resign amid a growing political scandal . lee will stay in his official role until south korean president park geun-hye accepts his resignation . he has transferred his role of chairing cabinet meetings to the deputy prime minister for the time being .\ntim farron was accused by jo stephenson 's widow of ` betrayal ' after his death . mr stephenson fell from the three-storey property in windermere after being vilified . he had led controversial lib dem plans to end free street parking in cumbria . widow hilary accuses mr farron of reneging on a deal to support her late husband .\napril 8 was also `` rex manning day '' twitter paid homage to maxwell caulfield 's character . other famous dates include april 25 and october 3 . in `` back to the future part ii , '' marty mcfly travels to october 21 . the titanic sank on april 15 , 1912 .\nmichael scott shemansky has been on the run from police since saturday . his mother sandra shemansky , 57 , was found dead at the home they shared in winter garden , florida . police say he failed to appear for a supervised visit with his son . he is already on parole for battery on law enforcement , has a history of bipolar mental illness , and was involuntarily committed to a psychiatric ward for an attempted suicide .\nthe masters 2015 is almost here . rory mcilroy , ian poulter , graeme mcdowell and justin rose give the lowdown on every hole at augusta national . click on the graphic below to get a closer look at what the biggest names in the game will face when they tee off on thursday . .\nthe beautification machine was created by austrian designers maya pindeus and johanna pichlbauer . the device applies eyeliner with a long black brush , while an attachment smears lipstick on lips . the robot made its debut at the biennale internationale design saint-etienne 2015 , in france .\ncharlie adam 's wonder goal at stamford bridge was one of the best of his career . but stoke lost 2-1 to chelsea as loic remy scored the winner . adam admits he had mixed emotions after scoring the goal but losing the game . stoke face west ham in the premier league on saturday .\nmanchester city host manchester united at old trafford on sunday . manuel pellegrini says he is not impressed by united 's rise up the table . he points out the club 's expensive signings such as angel di maria and radamel falcao . city have lost five of their last seven games in all competitions .\nthe video was created by the washington-based american chemical society . it covers three household cleaning ` hacks ' for windows , carpets and counter tops . it reveals how gin and vodka dilute red wine stains and why vinegar is so good at removing mineral deposits on glass . it also reveals how spit can be used to lift food stains from counter tops or hard surfaces .\nkimberly waddell macemore , 25 , of wilkesboro , south carolina , pleaded guilty to having sexual relations with two 17-year-old boys she was supposed to be teaching . she was sentenced on tuesday to a total of not less than 12 months nor more than 34 months in prison . macemores was a second year english teacher at west wilkes high school when she was suspended without pay following her arrest in may 2014 . the two male students were both 17 at the time .\nfloyd mayweather vs manny pacquiao is set to take place on may 2 . the 30-second advert for the fight has been released ahead of the bout . the marketing team for both mayweather and pacqu xiao put together the clip . it shows the two fighters squaring up in the middle of a desert road .\nprime minister pledges to deliver effective ` home rule ' for england . will give mps same powers to set tax rates as scotland following independent referendum . english , welsh and northern irish mps being able to set a separate rate of income tax to that in scotland . but mps north of the border will have no say .\npeter sutcliffe is being lined up for the move after he expressed remorse and said he no longer hears the ` voices from god ' which he blamed for killing spree . but families of his victims are furious at plans to move him from broadmoor to a low-security priory unit . sutcliffe has spent more than three decades in broadm moor for the savage killings of 13 women .\nukrainian pole vault great sergey bubka is sebastian coe 's rival for iaaf president . bubka launched his election manifesto , entitled ` taking athletics to new heights ' in an internet broadcast . the 51-year-old said : ` we need to show clear zero tolerance for doping '\nandre schurrle thanked wolfsburg supporters for their patience . the 24-year-old scored his first since joining from chelsea in february . schurrle admits not scoring for the german side was ` eating away ' at him . wolfsburg beat stuttgart 3-1 on saturday .\njockey andrea atzeni will ride terror in wednesday 's landwades nell gwyn stakes . terror is owned by qatar racing and trained by david simcock . frankie dettori has been unveiled as newmarket 's ambassador for 2015 . john gosden ' s faydhan is the key horse entered in wednesday 's free handicap .\npilot david jenkins , in his 50s , died when his aerobatic plane crashed . the single-engine edge 360 went down at old buckenham airfield near attleborough . a friend of the dead pilot said : ` he was the best bloke i knew '\nformer kent second xi player charlie hemphrey has finally secured his professional cricket contract in australia . the 25-year-old is the first englishman to hit a sheffield shield hundred since john hampshire for tasmania in 1978 . hemphreys has been rejected by kent , derbyshire and essex .\nanonymous benefactor posted the money in a plain brown envelope . donor said they wanted to safeguard the church ` for the next hundred years ' the cash will be put towards the abbey 's restoration fund . the church has been granted # 10.4 million of heritage lottery funding .\nhealth expert slams parents for not taking vaccination seriously . 19 children at a primary school in north brisbane contracted whooping cough . kilcoy state school is working with queensland health after a whooping coughing outbreak . in 2014 the metro north region had the highest immunisation rate in the state .\n11-year-old boy was wading across mudflats in burnham-on-sea . he quickly became stuck in knee-deep mud and had to be pulled to safety . coastguard used a hovercraft to reach the boy , who was unhurt .\nkenneth morgan stancil iii , 20 , claimed in a prison interview on wednesday that he had killed a gay college supervisor because he made sexual advances towards his teenage brother . stancil , who gave himself fascist face tattoos , is awaiting extradition from florida to north carolina , where he is accused of fatally shooting 44-year-old ron lane . he said lane was looking for stancils on facebook and found his brother .\nsouthampton manager ronald koeman met with his players on thursday . koeman wanted them to refocus their minds on european qualification . victor wanyama 's future came under question after he seemed to hint at move to arsenal . morgan schneiderlin , nathaniel clyne and jay rodriguez have all been linked with a move away .\nmonica mcdermott was caught driving her lexus in macclesfield , cheshire . the 41-year-old could not walk straight when police stopped her car . she refused to give a breath sample and had to be restrained by police . when breathalyzed she was three times over the limit , court heard . mcdermott pleaded guilty to drink driving and was banned from driving .\nbafetimbi gomis scores twice as swansea beat hull 3-1 on saturday . the striker has scored four goals in his last six premier league games . gom is this week 's ea sports ' performance index top player . qpr 's charlie austin is this weekend 's runner up with a game index score of 52.2 . eden hazard , olivier giroud , alexis sanchez and mesut ozil also make the top 10 .\nfather hamish baillie claims lord janner abused him during a game of hide-and-seek in 1983 . he said he was unable to trust adults after being molested by the 86-year-old . mr baillies claims failure to prosecute peer for a fourth time was a ` complete travesty ' he said alison saunders should step down as head of the cps .\nadam barker is equal shareholder in handles for forks ltd , which manages father 's work . the company made # 501,319 profit in the year to last june , according to new accounts . barker will share the money with his sister charlotte , 53 , and brother laurence , 46 . the 47-year-old served 13 weeks in prison after admitting to making indecent images of children in 2012 .\nlhc is the world 's largest atom-smashing machine and is located in geneva , switzerland . it was shut down in 2013 after confirming the existence of the higgs boson . but it has now been restarted after a # 100million upgrade project . scientists hope it will be able to detect and describe dark matter for the first time .\nbrendan rodgers left northern ireland for england aged 16 . rodgers was captain of reading 's youth team but failed to make the grade . rodgers believes the memory of missing out on a first team spot has helped him to handle liverpool 's young players . liverpool boss has given the likes of raheem sterling and jordon ibe their break in the first team .\na bobcat was snapped hauling a shark along a florida beach in an unbelievable photograph . the image was taken at sebastian inlet state park near vero beach by john bailey . bailey told the television station that the bobcat collected the shark after entering the water . a spokesman for the florida fish and wildlife conservation commission has said she believes the image is genuine .\nfc chernomorets odessa are offering their players houses by the sea . the ukrainian club could face relegation and uefa disqualification . the houses are valued at around # 67,000 . some players have seen their monthly wages slashed to # 2,000 a month . the club are currently 11th in the ukrainian premier league .\nmanchester city lost 2-0 to manchester united in the derby on sunday . sergio aguero scored his 100th goal for the club in the 89th minute . the argentine has scored 100 goals in 158 appearances for city . the likes of paul pogba and raheem sterling are potential targets .\nat least 10 iraqi security forces are killed in the attacks , an iraqi official says . the head of the iraqi military operation in anbar province is wounded . isis fighters seize several districts in ramadi , an official says , including suicide and car bombs . ramadi has seen intense and persistent fighting for months .\nchelsea clinton called the secret service ` pigs ' as a young girl , according to ronn payne , a former white house florist . payne says he heard her say it to a member of her protective detail . the white house residence 's domestic staff told kate anderson brower that hillary clinton once threw a ` heavy ' object across the room . staff members said the clintons were ` the most paranoid people i 'd ever seen in my life '\nreddit launched its r/thebutton thread on april fool 's day . if you created your reddit account before 1 april 2015 , you have one chance to press the button . if the button is clicked , the timer resets to 60 seconds and users are awarded a colour , known as a ` flair ' this colour represents the time period at which they clicked the button , ranging from zero to 60 . more than 730,285 reddit users have pressed the button since the thread launched .\nnsw government plans to make public housing tenants pay a bond to recoup losses from trashed properties . communities minister brad hazzard said it was a ` very likely possibility ' the plan would be implemented in the near future . he said the annual bill for repairs and maintenance on taxpayer-funded housing had hit $ 12 million . mr hazzards added public housing tenant were already liable for damage but ` they do n't have the money '\nmatt prior 's one pro cycling team confirmed in the list of entrants for the first tour de yorkshire . the inaugural race will run over three stages starting in bridlington on may 1 . prior is chief executive of the one pro cycling team . the former england cricketer is a long-time cycling fan .\nkyle patrick loughlin , 21 , from massachusetts has been charged with sexually assaulting two young boys at a daycare center where he worked . he was enrolled at bridgewater state university on an early childhood education course . he reportedly admitted that he 'd molested two boys aged between four and five . police then proceeded to search loughlins 's dorm room where they found more than 100 pairs of children 's underwear and diapers .\nsurfer chris blowes is fighting for his life after being mauled by a great white shark . the 26-year-old was attacked at fishery bay , port lincoln national park , south australia . mr blowes was bitten in the middle of the thigh and is in a critical condition . witnesses said the six-metre shark was seen swimming away with the surfer 's leg in its mouth . the man was airlifted to the royal adelaide hospital for further treatment .\nsome protesters got into shoving matches with helmeted cops , police say . at least five police cars were damaged by people who smashed windows . 12 people were arrested , police commissioner says . the numbers of protesters dissipated substantially just before sunset . the death of freddie gray .\narsenal and liverpool supporters protest against rising ticket prices . supporters left their seats empty at emirates stadium for first 10 minutes . banners read : ' # 5bn and what do we get ? # 64 a ticket ' tickets for the 12.45 pm kick-off were # 64 , some of the highest in the premier league .\nfriends of the family have set up a fundraising page to help pay for funeral expenses . it has raised almost $ 50,000 in less than a week - more than twice what was expected . mai mach , 60 , was stabbed 23 times with garden shears in the backyard of her albanvale home in western melbourne last tuesday . hours earlier her grandson , alistair , 4 , was stabbing 18 times as he slept in his bed . chinese tourist cai xia liao , 45 , has been charged with their murder .\nfloyd mayweather and manny pacquiao are set to fight in las vegas next weekend . diddy and mark wahlberg placed a bet of $ 250,000 on the bout . the fight is expected to gross over $ 300million for the city of las vegas .\nthe plane was travelling from svalbard to ice camp barneo in the arctic . poor visibility caused the pilot to bring the plane down due to the bumpy landing . the aircraft 's undercarriage was damaged but the team were unharmed . moody is undertaking a 100km trek to the north pole to raise # 250,000 for charity .\nresidents of celoron , new york , reacted with shock and horror when the ' i love lucy ' statue was unveiled in 2009 . the depiction is so unflattering a facebook page called ` we love lucy ! get rid of this statue ' has attracted more than 600 likes . sculptor dave poulin has admitted to being ` disappointed ' in his work , offering to fix the sculpture for free .\nchris copeland , a player for the indiana pacers , and his wife , katrine saltare , 28 , were stabbed in the street just before 4am on wednesday . a 22-year-old man interrupted them as they argued outside 1oak in chelsea and pulled out a knife . when copeland told the man to back off , the suspect allegedly plunged it into the athlete 's abdomen and elbow . he then turned on saltare and stabbed her in the breast , buttocks and arm . another woman , catherine somani , 23 , was also stabbed in her abdomen as she apparently tried to break up the fight . she knew the attacker . two other nba players , pero antić and th\nfloyd mayweather has been using a cryotherapy bath after training . the bath is cooled to -175 f -lrb- -115 c -rrb- using liquid nitrogen . the 38-year-old is preparing for his fight against manny pacquiao . mayweather spends up to three minutes in the chamber . the machine costs $ 60,000 -lrb- # 40,000 -rrb-\nbrad haddin clapped in martin guptill 's face after he was bowled . haddin and james faulkner also mocked grant elliott . the incident cast a shadow over australia 's world cup final win . but coach darren lehmann insists haddin was following team orders . icc president mustafa kamal has resigned after falling out with his colleagues .\nandrew danziger flew president obama 's campaign plane in 2008 . he claims he saw a ufo flying through the sky in april 1989 . the experienced pilot said the ufo was a ` giant red ball ' the ufo glowed bright red for around 30 seconds before disappearing .\nthe uss oklahoma sank during the 1941 attack on pearl harbor . the defense department says it hopes to identify most of the ship 's sailors and marines . the remains of up to 400 service members are still unaccounted for . a total of 429 sailors and marines were killed in the attack on the battleship .\nbette carouze loves all night parties and regularly leaves clubs in the early hours . the 78-year-old mother of two says she is ` not your run of the mill ' pensioner . admits that getting on a bus in the morning while ` stinking of vodka ' can be embarrassing .\nceltic defeated st mirren 2-0 at paisley on friday night . the win takes ronny deila 's side eight points clear at the top of the scottish premiership . the hoops have won four successive league games . johansen believes his side 's title aspirations ` look great '\nfbi have recovered one of the gold bars stolen in a $ 5 million armored truck robbery in north carolina last month . investigators say the location the bar was found - somewhere in south florida - has provided them with a big break in the case . the highway heist occurred on march 1 in wilson county , almost halfway into the truck 's journey from miami to boston . police have previously said they suspected it was an inside job because the 18-wheeler truck - owned by transport company transvalue - pulled over when one of two armed guards on board ` felt sick ' the trio tied the guards ' hands behind their backs and marched them into nearby woods before taking 275lbs of gold . the gold totaled $\ndietmar hamann believes bastian schweinsteiger should leave bayern munich at the end of the season . the world cup winner was an unused substitute in bayern 's 6-1 champions league win over porto on tuesday . hamann thinks schwein steiger has lost his place to xabi alonso in pep guardiola 's side .\ndr teresa belton says simple acts can increase happiness levels . the author of happier people healthier planet says they 're all free . she says it 's important to prioritise ` wellbeing ' over happiness . practices include making lists of things for which you are grateful .\nchief constable sue sim is facing a bullying probe over her ` hair dryer treatment ' of colleagues . she came to national prominence five years ago when she led the hunt for killer raoul moat . ms sim has now announced she will retire with full pension after 30 years of service .\nchanel , 19 , claims to have eaten placenta , fasted and gone on detoxes in her quest to stay young . she claims to be a vegetarian but has been bathing in pig 's blood for years . the teenager says she is terrified that the effects of aging will stop her modelling career in its tracks .\njessica silva has spoken about why she had to kill her abusive husband . she has revealed she hopes his family can one day forgive her for what she did . in a tense interview for 60 minutes , silva visits the home of james polkinghorne 's father to explain to him why she was so angry . michael usher , the veteran journalist who conducted the interview , has revealed her walked away from the experience ` totally drained and realising that there are a lot of broken people '\ndistrict judge nigel cadbury made controversial comments in court . suggested student nurse karen buckley had put herself in danger . miss buckley 's body was found on a farm north of glasgow on april 16 . rape crisis said comments were ` wholly inappropriate ' and ` insensitive '\ncnn 's jim clancy : robert downey jr. walked out of interview with british journalist . he says the journalist asked personal questions about downey 's past , and actor responded badly . he said downey has the right to refuse to answer the question , but that 's not what he did next . clancy : what the video shows is a movie star with a bullying streak .\neden hazard was filmed as part of a feature for rio ferdinand 's ' 5 ' magazine . the chelsea star left a defender in knots with his fancy footwork . hazard was being filmed at their cobham training base . the belgian star is hoping to win the pfa player of the year award .\ncheslea are in talks over a partnership with belgian side royal mouscron-peruwelz . talks have been ongoing for over a month after french side lille cut their ties with mouscrons . chelsea have been looking for alternatives to vitesse arnhem .\nharry kane will be in gareth southgate 's squad for the european under 21 championships . tottenham striker will also travel to australia and malaysia this summer . kane made his england debut against italy last week . mauricio pochettino has given kane his blessing to play in the competition .\na florida pharmacist was arrested wednesday for calling 911 and telling the dispatcher she was going to hire a hitman to kill governor rick scott . ruba khandaqji , 36 , was charged with two counts of corruption by threat against a public official and resisting arrest without violence . khandaqui told the dispatcher that she was planning to hire the hitman because she wanted to be deported to jordan .\nkenedy is being represented by giuliano bertolucci 's agency . chelsea are favourites to sign the 19-year-old brazilian . the forward has been linked with barcelona , manchester united and juventus . kenedy has represented brazil at under 17 and under 20 level .\nprotesters targeted statues of british colonials in port elizabeth and durban . they also targeted statues in pretoria of afrikaner leaders paul kruger and marthinus pretorius . comes after a statue of cecil john rhodes was removed from the university of cape town after it was daubed with excrement . the government has backed the decision to remove the statue .\nbaby boy was found wrapped in blanket inside a sainsbury 's bag floating on a pond in weasenham st peter , norfolk , in 1988 . police exhumed the boy 's body from his grave in norfolk last year after the case came up for periodical review . dna sample eventually led them to his mother . she was arrested on suspicion of infanticide but the charge was dropped after she explained how the baby had been stillborn .\nbrendan rodgers had his conviction quashed at blackburn magistrates ' court . the liverpool manager was found guilty of leaving a property to rot . he was ordered to fix the windows , doors and roof , and to remove rubbish . but he did not receive a summons , and the case was overturned .\nchelsea have conceded just 15 goals in the premier league this season . jose mourinho 's side are on course to win the title for the first time since 2008 . sportsmail looks at the best defences in premier league history . arsenal , manchester united , manchester city and chelsea all feature .\nreading lost 2-1 to arsenal in the fa cup semi-final at wembley . adam federici let alexis sanchez 's shot slip through his grasp . steve clarke has backed the goalkeeper to bounce back against birmingham . the royals take on the blues in the championship on wednesday .\nthe toyal lotus lid is inspired by the water-repellent nature of a lotus leaf . it uses microscopic bumps to stop liquids from sticking to pots . toyo aluminium 's technology won silver place in the 2013 du pont awards for packaging innovation and has teamed up with japan 's morinaga milk industry .\ncelebrities including ronnie wood and shakira have holidayed in jose ignacio . the tiny fishing village is tucked away along the coast of uruguay . the country 's beaches are a favourite with south americans and brazilians . punta del este has been dubbed the miami of south america by celebrities .\ntfl rules mean refugees and those applying for asylum do not have to reveal whether they have a criminal history . legal loophole in official application document on ` private hire driver licensing ' says people coming to britain will not be required to have their criminal convictions checked . campaigners call for a change in the guidelines , calling on all minicab drivers to undergo thorough criminal checks .\ntraining consultant jay rutland earned # 65 a week from firm last year . but his firm brigante business developments brought in just # 3,378 in 12 months . 34-year-old married heiress tamara ecclestone , 30 , in # 7million wedding in 2013 . couple live with their one-year old daughter sophia in # 45million west london home .\nnumber of teenagers getting straight as has soared by a third in five years . more than 20,000 children passed ten or more with either an a or an a * grade . critics say not enough has been done to stop qualifications becoming too easy . gcse grades are used by universities to decide who to admit to courses .\nterence crawford beat thomas dulorme to win the wbo junior welterweight title . crawford knocked down dulormi three times in the sixth round . crawford is now 26-0 with 18 knockouts . the fight was crawford 's first since moving up in class .\nandrew cuomo , new york governor , is the first us governor to visit cuba since 1999 . the visit comes in the wake of the thaw in relations between the us and cuba . cuomo is heading a delegation of 18 academics and business leaders to the island . he met with cuba 's top officials for u.s. relations along with executives from jetblue , mastercard , pfizer and other new york-based companies .\ntimothy stanley : baltimore mom toya graham is hailed as a hero for pulling her son from riots . stanley : but is n't her reaction to the violence in baltimore promoting violence ? he says graham is just like millions of other mothers of adolescents . stanley says we need more mothers who will do whatever it takes to protect their kids .\njosh meekings has been cleared of a ban for handball in the scottish cup semi-final . john hughes says he was ready to quit his job as inverness boss . hughes says the messages of support from footballing friends brought him back from the brink . hughes wants ` real football people ' drafted in instead of ` suits ' on the judicial panel .\namanda lubiewski believes her daughter abby was discriminated against after she was forced to take off her thick glasses for a school portrait . abby lubiewki was born with hallerman-streiff , a rare genetic syndrome that resulted in congenital cataracts . she can only perceive light and dark when she 's not wearing her specs . lifetouch school photography has apologized to the family and will re-take abby 's school picture for free .\ntiger woods struggled to a three-over-par round of 73 in the first round . the world no 111 struggled with his short game and his cussedness . woods was playing his first competitive golf for two months . the american is hoping to win his first major title since the 2008 us open .\nian bell scored 143 on the first day of the first test against west indies in antigua . the 33-year-old was dropped from the side on his last visit to the caribbean in 2009 . bell scored his 22nd test century and helped england to 341 for five on day one .\njohn kerry : `` each and every one of us has the right to speak out '' the five are members of china 's women 's rights action group . they were detained in three cities ahead of events planned for international women 's day . protesters in several cities have called for their release .\nparis saint-germain beat saint-etienne 4-1 in the french cup . zlatan ibrahimovic scored a hat-trick to take his career tally to 102 goals . psg will now face auxerre in the final on may 30 .\nengland 's players are n't playing enough twenty20 cricket , says alex hales . hales and chris woakes want england to adopt the model of australia and india . england were dumped out of the world cup earlier this year . england will play in the natwest t20 blast next month .\nashley young reveals louis van gaal 's music policy in the old trafford dressing room . manchester united winger is known for being the resident dj at the club . young reveals he is under strict orders to play only house and funky house music . the winger was speaking to olly murs on mutv 's thursday focus programme .\nwinger adam johnson faces four charges of sexual activity with a child . the 27-year-old will appear before peterlee magistrates ' court on may 20 . he was arrested at his mansion in castle eden , near hartlepool , in march . johnson has represented england 12 times and is the father of a three-month-old .\nnew book clinton cash will detail a pattern of foreign donations to the clinton foundation . peter schweizer claims that the money was used to shape state department policy . he claims that donors found u.s. policies coming out of the state department shifted in their favor . the book will be published on may 5th by harpercollins . clinton allies have dismissed the claims as ` absurd conspiracy theories '\ncarrie reichert , 43 , has released teaser from upcoming book in the eye of the royal story . in it , she says she felt ` overdressed ' when she saw prince harry playing billiards . she also claims she was one of 10 women invited to party with him in 2012 . kensington palace has previously dismissed her story as ` untrue '\ned miliband pledged to crackdown on the illegal exploitation of migrant workers . labour leader said it has held down wages for british workers . he promised a home office task force to boost prosecutions and fines . but nigel farage and james brokenshire dismissed his ideas . ukip leader said he was right about some migrants being exploited . but insisted it was not the main issue and labour was doing nothing to control immigration .\n` yes , we will be all watching as a family tonight , ' the 34-year-old beauty told e! when stopping by variety 's 2015 power of women luncheon in new york city on friday . tmz claimed that bruce , 65 , would be watching the special twice . the cameras for keeping up with the kardashians will not be on when he watched the show , it was also claimed .\nunited beat aston villa 3-1 at old trafford on saturday . louis van gaal 's side are eight points clear of liverpool in the premier league . manchester city host united in the derby on sunday afternoon . van gaal says united ca n't afford to lose to city but admits ` everything is possible '\nyoutube star dave hax 's new trick lets cooks peel potatoes without using a peeler . the process starts by running the blade of a sharp knife around the middle of the potato . then let them drain before running under cold water to remove the skin . the video , uploaded only five days ago , has already received more than 1.5 m views .\ncanadian weather presenter kristi gordon received hate mail from viewers ` grossed out ' by her appearance on their screens . australian presenter nicky buckley famously soldiered on with her presenting job after falling pregnant in 1997 . she shared her story in her memoir , ` nicky buckley : a memoir ' the book is on sale now for $ 29.99 .\nthe lion , known as p-22 , was discovered in a los feliz home on monday . animal services tried to move him - including firing tennis balls and beanbags . but he eventually moved away , and was heading back to griffith park . the lion was photographed in front of the hollywood sign in 2013 .\ngerry pickens , 28 , was hired as a police officer in orting , washington , in 2013 . but he claims he was fired after just under a year on the force for ` racism ' he was called a ` black juvenile ' and ` token black guy ' by fellow officers . he is now suing town for $ 5million , which would equal every resident 's payout .\njohn hinckley jr has been allowed freedom in stages since the assassination attempt on president reagan in 1981 . he spends 17 days a month at his mother 's home in williamsburg , virginia . a judge will ultimately determine whether and under which conditions he will be allowed to live full time outside a mental hospital . hinckly 's lawyer and treatment team say he 's ready to live . full time at his 89-year-old mother 's house under certain conditions .\na gunman walked into an unlocked house in los angeles and shot a sleeping eight-year-old boy in the head on sunday night . the boy was rushed to hospital where he underwent surgery for a head wound . he is in critical but stable condition . the suspect is described as hispanic , medium build and wearing a grey hoodie at the time . he apparently had no motive for staging the attack in the 11000 block of wagner street in del rey , police said .\narsenal defeated liverpool 4-1 in their premier league clash at the emirates . goals from hector bellerin , mesut ozil and alexis sanchez put the gunners 3-0 ahead . jordan henderson pulled one back from the penalty spot for the visitors . emre can was sent off for liverpool late in the second half .\nnapoli defeated roma 1-0 in serie a on saturday . a banner taunting the mother of a napoli fan who died after violent clashes last year caused outcry . roma will have part of their stadium closed for the league match with atalanta on april 19 . club president james pallotta has condemned the club 's fans .\nshares in what is now called the bg group rose by nearly 30 per cent to 1,153 p. rise came after oil giant royal dutch shell announced plans to buy bg group . shares are one of the most popular in the uk due to the hugely successful ` tell sid ' advertising campaign when british gas was privatised .\nthree months after the `` deflategate '' investigation began , the nfl has not released a report . the league is trying to determine why 11 of the 12 game balls provided for the afc championship game were underinflated . the patriots beat the indianapolis colts 45-7 to advance to the super bowl .\nerica avery was cuffed and hauled out of a broward county courtroom tuesday after being accused of using the internet , which itself violated the conditions set just one month prior when she was first released on $ 100,000 bond . prosecutor maria schneider said photos of the 17-year-old were posted to social media and one of them shows her using a smart phone . avery and four other teens are charged with armed sexual battery and kidnapping in connection with the 2013 assault on a victim in hollywood , florida .\nkazakhstan 's ministry of defence has chosen 123 of its prettiest female soldiers . photos posted online where viewers can vote for their favourites . pictures show women in three set poses -- in military uniform , with weapons and in civilian clothing . they have already been viewed more than 30,000 times by voters .\nthree suspects brazenly stole an atm from a california gas station last friday morning . cctv footage shows the thieves in action at the shell fuel stop along ygnacio valley road in walnut creek . while one man distracts a cashier at the window , another leads a cable from the back of a white pickup to the cash machine . once the cord is attached , the vehicle in the background speeds off and uproots the atm from its mount .\nnearly 300 schoolgirls were abducted by boko haram in nigeria . malala yousafzai releases an `` open letter '' to the girls . `` like you , i was a target of militants who did not want girls to go to school , '' she writes . the 17-year-old nobel peace prize winner survived an attack by the taliban .\nli chien , 30 , had been visiting a nearby pub in taiwan 's hualien county . he became annoyed with a dog owned by neighbour tang chao , 40 , on his way home . li grabbed a bread knife from his kitchen and went to his neighbour 's yard . he slit the throat of the mixed-breed called lucky .\nthe drugs , valued at more than $ 105 million , are the biggest ever seized by french authorities . one venezuelan and two spanish citizens were arrested . the sailboat was falsely flying an american flag in the caribbean , officials say . in november , french customs officials seized nearly 250 kilograms of cocaine .\nchancellor warns of a ` dangerous cocktail ' if snp is at the mercy of labour . polls show no party will win an overall majority in the election . osborne claims it would spark a ` constitutional crisis ' if scottish nationalists held the balance of power in the uk government . alex salmond boasted : ` i 'm writing labour 's budget '\njules bianchi is still in a coma but is ` fighting fiercely ' and his condition is stable , says his father . the 25-year-old marussia driver crashed into a recovery vehicle at the japanese grand prix in october 2014 . bianchi 's father has spoken of the pain his family have felt every day since the accident .\nstudy of 18,500 patients found that people with bowel cancer who saw their normal gp were diagnosed a week later than others . britain has one of the lowest cancer survival rates in europe . this has been blamed on family doctors missing symptoms . but seeing same gp was not linked to later diagnosis for breast cancer or lung cancer .\n`` a terrible family tragedy has occurred , '' his sister says . sawyer sweeten was a child star on `` everybody loves raymond '' he is best known for his role geoffrey barone . he was weeks away from his 20th birthday . he is believed to have shot himself on the front porch .\nthe duchess of cambridge is expected to go into labour any day now . programmer charanjeet kondal has used an application to create images of the new prince or princess . if he is right , the heir will have wispy blonde hair , dark brown eyes and a small nose when aged between two and four years old .\ndiego costa could return for chelsea 's clash with arsenal next weekend . jose mourinho said the striker is ` proceeding very well ' costa sustained the injury in the win over stoke city on april 4 . loic remy could return from a calf injury against manchester united .\n15-month-old olivia mimics the way her mother walks . the youngster arches her back and pushes out her belly while strutting . her father can be seen mimicking the walk in the background . the clip was filmed by teri o'neil , 30 , while she was six months pregnant .\nconsumer reports studied award-seat availability for the five biggest u.s. airlines . southwest airlines offered the most award tickets , 11.9 million . jetblue offered the lowest percentage of award seats and the fewest number of award tickets . southwest had the highest customer satisfaction score .\n10-man southampton beat blackburn 2-1 after extra time in the premier league u21 cup . ryan seager had put the hosts ahead before matt targett equalised for blackburn . sam gallagher scored a stunning winner in the second half of extra time . the two-legged tie had ended 1-1 in the first leg at st mary 's .\nadam lyth was named in england 's squad for three tests in the caribbean . the yorkshire batsman is competing with jonathan trott to be alastair cook 's opening partner at the first test in antigua on april 13 . lyth finished with 1,489 runs -- more than anyone in the country -- six hundreds and a welter of awards last season .\narsenal winger theo walcott struggled for england against italy . arsene wenger says he is concerned by the winger 's confidence . walcott was replaced after 55 minutes of england 's 1-1 draw in turin . the gunners face liverpool on saturday in a top-four clash . alex oxlade-chamberlain is injured and danny welbeck is a doubt .\nana ivanovic beaten by france 's caroline garcia in stuttgart . world no 6 lost 7-6 -lrb- 8/6 -rrb- 6-4 in first round clash on tuesday . ekaterina makarova and carla suarez navarro also through to second round .\nmanchester city ladies lost 1-0 to arsenal in the women 's super league on sunday . jill scott was sent off for an apparent headbutt on jade bailey . the england international apologised for the incident after the game . city manager nick cushing described scott 's actions as ` out of character '\nscottish golfer carly booth has been on the indian ocean island of mauritius for a photo shoot with golf punk magazine . the 22-year-old posted a behind the scenes snap on instagram showing off her impressive bikini body . booth is currently ranked world no 520 and is looking to make her ascent up the table .\nreading face arsenal in the fa cup semi-final at wembley on saturday . the royals have not reached the last four in 88 years . steve clarke has told his players not to get caught up in the occasion . the championship side are aiming to make the final for the first time .\nthe wec have announced that there will be no more ` grid girls ' before races . the decision by the fia is seen as a progressive one by those in a male-dominated sport . current world champion anthony davidson has backed the decision to remove grid girls for equality .\ntiger woods was in contention for a second major title at augusta national . but he could not challenge runaway winner jordan spieth on the final day . woods was forced to retire after a bone popped out in his right arm on the ninth hole . the american has not said when he will play again after the masters .\nbradley johnson scores twice as norwich city beat sheffield wednesday 2-0 . the canaries move into the sky bet championship 's top two for the first time since october . johnson 's double was his 12th and 13th of the season for the canaries . the win keeps norwich 's automatic promotion hopes alive .\njess knight , 20 , was diagnosed with acute lymphoblastic leukemia two weeks before sheeran 's concert in auckland . the teenager had to give up her tickets due to her treatment . sheerans is currently touring new zealand after a string of shows across australia . the singer crashed ms knight 's birthday party in hospital in between shows over the weekend .\nlouis jordan , 37 , released a three-paragraph statement on monday in which he said he stayed inside his cabin to keep dry and avoid sun , wind , waves and sea spray during his ordeal . jordan was spotted by a german-flagged boat on thursday , more than two months after sailing out of a south carolina marina . he said he rationed food and water and kept his calorie expenditure low .\nmatt pliska and mikenzy snell became fast friends in fifth grade after they were partnered together during a class trip . matt asked mikenzy to be his prom date last year - and she accepted . the pair were photographed holding a sign that read : ` real friends do n't count chromosomes '\ndr ram manohar , 38 , is accused of groping two nurses at wirral 's arrowe park hospital . nurse a said he groped her breast after she asked him about chest x-rays . she said he later smacked her on the bottom and said ` you bad girl ' manohars denies four counts of sexual assault at liverpool crown court .\nvulnerability applies to version 2.5.1 of afnetworking , which is used by around 100,000 apps . this includes uber , microsoft 's onedrive and movies by flixster . the flaw leaves any information , even if its sent over a seemingly secure https connection , potentially open to hackers . around 1,000 ios apps are thought to be vulnerable to the flaw .\nsol campbell is selling his # 6.75 million chelsea flat for second time this year . former england footballer has threatened to leave the country if labour wins election . he bought the penthouse in 2011 for # 4.25 million after staging a sit-in at estate agents .\nmiracle godson , 13 , went for a swim at east quarry , appley bridge , on friday . he jumped into deep water and failed to surface and friends tried to save him . his lifeless body was found by police divers at about 5pm that day . lancashire police say his death is not being treated as suspicious .\narsenal winger theo walcott has spent much of the season on the bench . walcott was pictured with six of his team-mates for a lanvin photoshoot . the 26-year-old has been named on the substitutes ' bench for 17 of 33 premier league games . walcotts has not started a game since march 14 against west ham .\nvioleta tupuola , from canberra , has joined the #kyliejennerchallenge . the craze is popular among teens desperate to emulate kylie jenner 's famous plump lips . the method involves placing the opening of any narrow vessel over their mouth and sucking in until the vacuum of air causes their lips to swell . the bizarre look is said to be painful and last for hours . violeta 's protruding lips have been compared to a duck on social media .\nluke munro , 19 , and dylon thompson , 21 , raided a corner shop in cleveleys , blackpool . they pulled out a ` realistic looking ' handgun and pointed it at the owner and his wife . when they refused to hand over cash , the pair threw sweets at them before fleeing . munro was jailed for five years and four months , while thompson was sentenced to three years and three months .\nsteve clarke insists his reading side must be ` perfect ' to have any chance of beating arsenal . the royals face the gunners in the fa cup semi-final at wembley on saturday . clarke has never beaten arsene wenger as a manager and admits it 's a ` big ask '\nkeith macdonald has sired a massive brood with at least ten mothers . the 29-year-old from sunderland is said to have already cost taxpayer # 2m . he was set to become a father for the sixteenth time but has split from the unborn child 's mother . macdonald says he 's back on the dating market - and the baby in question is not actually his .\nnew york city 's library hotel has more than 6,000 books at its disposal . each guest room contains up to 150 titles related to specific genres or topics . the hotel was designed around the dewey decimal system , with each floor dedicated to one of its 10 major categories .\nmanchester city defeated leicester 3-0 in the youth cup semi-final . isaac buckley and brandon barker scored late goals to seal victory . layton ndukwu had given leicester hope of clawing back the advantage . city will now face chelsea in the final at the city football academy stadium .\ngunners stars reveal ultimate pre-game playlist ahead of burnley clash . olivier giroud , santi cazorla and nacho monreal among those to make the list . gunners face clarets at turf moor on saturday evening . click here to see arsenal 's premier league table .\nyoung thai boy stands on the bank of what appears to be a lake and holds a plastic fishing rod . he moves his rod from side to side while reeling and before long a fish breaks the surface . the youngster plucks the fish from the water and proudly holds it up to the camera . experts say the fish is most likely a nile tilapia , which are popular in thailand .\ndanish royals waved to crowds from balcony at amalienborg palace . queen margrethe was joined by her son and heir , crown prince frederik , 46 , his wife crown princess mary , 43 , and their four children . other european royals , including sweden 's and norway 's , also joined in .\njennifer lopez wore the dress at the 2000 grammy awards . it was the most popular search query google had ever seen . it caught the attention of google executive eric schmidt . he said the dress was his inspiration for creating google images . the 45-year-old singer shared an old picture of her in that dress on instagram .\nspartak moscow fined # 2,500 for a racist banner displayed by their fans . the club 's appeal against the sanctions was rejected . spartak 's fans have been banned from attending their next two away games . the russian football union said spartak fans displayed a banner of discriminatory content with a racist symbol .\nsevere weather is predicted for the midwest and plains on thursday and friday . severe weather can be more dangerous during the night , cnn meteorologist says . severed storms will hit illinois and missouri , and wind and hail will continue to be moderate in those states .\nwladimir klitschko beat bryant jennings on points at madison square garden . the ukrainian has confirmed tyson fury will be his next opponent . klitsch ko says he is ready to travel to england to defend his belts . the 39-year-old is the ibf , wba and wbo world heavyweight champion .\nbritish swimmer adam peaty has broken the men 's 100m breast stroke world record with a time of 57.92 seconds at the london aquatic centre . the 20-year-old 's gold-winning time beat the previous record of 58.46 set by south african cameron van der burgh in the same venue at the 2012 olympics .\nao nang princess 5 ferry caught fire in andaman sea in krabi province , thailand . passengers and crew had to be rescued by a dozen fishing trawlers , speed boats and rescue craft . a 12-year-old israeli girl who was reportedly in the toilet at the time is still thought to be missing .\nchelsea manning is serving a 35-year sentence for espionage and computer fraud . she was convicted in 2013 for leaking thousands of secret diplomatic cables to wikileaks . manning , who was born bradley , has begun living as a woman . she has started a twitter account from leavenworth military prison in kansas .\nbali nine members andrew chan and myuran sukumaran are on death row . they were part of a failed heroin smuggling plot in bali . the seven others who took part in the operation are serving lengthy prison sentences . australia has appealed to indonesia for clemency for the men .\nbanker capital one has scrapped its cashback offer for new customers . comes after eu cap limiting fees retailers can be charged for processing payments . company has warned existing customers that loyalty points will be lower from june 1 . capital one said it made perks ` no longer sustainable '\nbrothers carter and jack hanson met world war ii veteran robert harding on the retired carrier in charleston , south carolina . the three friends had been in contact for about a year via email after the twins learned about mr harding on their first trip to the city . mr harding served as an aircraft handler on the warship many decades before his young friends were born .\njon flanagan will speak to liverpool about a new deal in the summer . liverpool full back was a revelation at anfield last season . flanagan nearly forced his way into england 's world cup squad . brendan rodgers is keen to keep the liverpudlian at the club .\nmauro icardi is the joint-third top scorer in serie a this season . manchester united scouts are due to watch icardi against verona . icard i has turned down inter milan 's latest contract offer . chelsea , manchester city and arsenal have also watched the 22-year-old .\ngary mabbutt 's diabetes caused an artery in his left leg to be clogged . the 53-year-old was rushed to hospital after waking up at 1am to find the leg cold . doctors warned him it was ` touch and go ' on whether it would have to be amputated . surgeons were required to replace the main artery in the leg with a vein . he was left with a 30inch scar and needs 112 staples to seal the horrific wound .\nwayne rooney scored a half-volley as manchester united beat aston villa 3-1 at old trafford . the goal was rooney 's sixth in eight matches for united . ander herrera scored the other two goals in the victory . united are now eight points clear of fifth-placed liverpool who lost 4-1 to arsenal .\ntop 15 companies in america pay median of $ 180,000 a year . nine of the top 15 companies are in the tech sector . google is by far the largest employer on the list . skadden , arps is the top-paid law firm in the country .\n` conjure chest ' in south carolina is said to have caused 17 people to die . a mirror said to contain trapped souls of wife and children of a louisiana slave master . bruno amadio 's portrait of a weeping child was thought to have been cursed . four people reportedly died shortly after sitting in this 200-year old ` chair of death ' now in philadelphia .\nsami khedira is being courted by several clubs including manchester united and chelsea . real madrid will not offer the germany international a new deal . newcastle united are considering a move for fulham striker ross mccormack . juventus and monaco have held discussions about a deal for radamel falcao .\nfloyd mayweather and manny pacquiao weigh-in in las vegas on friday . for the first time fans will be charged for admission to a weigh - in . ricky hatton and mayweather weighed-in at the mgm grand in 2007 . wladimir klitschko is considering retirement as he approaches 40 . the ukrainian is set to face deontay wilder and tyson fury . carl froch 's dream fight has been a farewell in las las .\nhillary clinton flew from concord to boston , massachusetts , on a commercial us airways flight that was scheduled to use a smaller plane with nothing but coach . the manchester , n.h. airport , was 55 miles closer and offered a 5:16 p.m. flight to the same destination , but the boston flight had 12 first class seats . clinton and her entourage flew on a us airways shuttle flight , and the secret service took care of the cars at curbside . she insisted she did n't book the first class tickets herself , but stared straight ahead when asked about the benghazi terror attack .\npaul downton was sacked as the ecb 's managing director after a dismal world cup this year . stuart broad admits he was sorry to see the former england captain leave his role . broad has backed alastair cook to score big runs during the series . broad says it would be a great achievement for jimmy anderson to become england 's leading wicket taker .\npippa middleton , 31 , was seen jogging in a london park on monday night . she wore new balance sneakers trimmed with a pop of pink . the royal sister is preparing to take part in a 54-mile bike ride in june . she is an ambassador for the british heart foundation .\nthe 10 people were arrested last september . malala yousafzai was shot in 2012 . she was an outspoken advocate for girls ' education . she won the nobel peace prize last year . the 10 were sentenced to life in prison . . the sentences follow a trial that included testimony from both sides .\nmore than 1,000 easter eggs have been sent to family of harvey marshall . the eight-year-old died from a mystery illness last year . his sisters ellie , 10 , and taylor , five , decided to donate the treats . they will be donated to sheffield children 's hospital where he was cared for .\nbirmingham came from behind to draw 2-2 with blackburn rovers at st andrew 's . huddersfield 's goalless draw at brighton means they are still in the championship . adam le fondre 's goal rescued a point for bolton against charlton . frederic bulot opened the scoring for the hosts against bolton .\naustralian forward dane tilse is set to join hull kr from canberra raiders . the 30-year-old has signed a two-and-a-half-year deal with the robins . tilse will link up with his old canberra team-mate terry campese .\nsophie thomas wore a shirt with the word ` feminist ' on it for class photo day . administrators at clermont northeastern middle school in batavia , ohio , had word removed from her shirt . school principal kendra young said word was removed to ` prevent any unintended controversies '\nnew : police say they are reviewing the matter . thabo sefolosha says his leg injury was caused by police . he and teammate pero antic were arrested near the scene of a stabbing . sefolosha suffered a fractured fibula and ligament damage .\ninverness defeated celtic in the scottish cup semi-final on sunday . celtic were left outraged by the referee 's decision to hand down a penalty for a handball by josh meekings in the first-half . the bhoys were unable to score the penalty and inverness went on to win 3-2 after extra time . celtic have written to the scottish football association to gain an ` understanding ' of the refereeing decisions .\ntop-ranked serena williams fought back to beat italy 's sara errani . williams won 4-6 , 7-6 -lrb- 3 -rrb- , 6-3 in a fed cup play-off on sunday . it gave the united states a 2-1 lead in the best-of-five series .\nmorgan schneiderlin gave ronald koeman 's southampton the lead in the first half . mame biram diouf equalised for stoke city with a close-range header . charlie adam scored a late winner to secure the three points at the britannia stadium . mark hughes believes tom jones ' hit delilah is stopping stoke city from qualifying for europe .\nthe sportsmail team of the day for saturday 's premier league matches . yannick bolasie scored three as crystal palace beat sunderland 4-1 . arsenal kept up their impressive recent form with a 1-0 win over burnley . tim sherwood 's aston villa beat tottenham 1 - 0 at white hart lane .\nthe n-222 road in portugal has been named the world 's best road . the 27 km stretch of road runs from peso de regua to pinhao . the a591 in the lake district has been voted britain 's best . other uk roads include the b3515 in somerset and a535 in cheshire .\namy schumer pranked fellow honorees at the time 100 gala . she took a fake tumble on the red carpet in front of kanye west and kim kardashian . the stunt came the same night the third season of her show premiered . schumer has been making everyone in america laugh this week .\nlabour leader ed miliband has been the subject of a social media storm . a group of female fans , who 've dubbed themselves the ` milifans ' , are rallying support for the opposition leader on social media using the twitter hashtag #milifandom . the largely teenage fanbase have spent the days running up to the may 7th election posting tweets of affection for the politician .\na measles outbreak that affected more than 130 californians is over , officials say . it has been 42 days since the last known case of the b3 strain of measles . the outbreak began with dozens of visitors to two disney theme parks in the state . measles is a highly contagious respiratory disease .\nchelsea and arsenal are interested in signing palermo 's paulo dybala . the 21-year-old has scored 13 league goals for palerzo this season . juventus have offered # 23million for the striker , who admits he would love to play alongside andrea pirlo .\njohn avlon : police brutality against unarmed african-americans is not a new phenomenon . avlon says it 's a national crisis because of the widespread use of cell phone cameras . he says police must be trained to manage implicit bias and de-escalate encounters . avlon : justice department must be properly funded to investigate police departments .\nenvironmental group sea shepherd rescued 40 crew from sinking ship . nigerian-flagged thunder was being tracked by activists for 110 days . vessel was suspected of conducting illegal fishing off gabon coast . captain and crew manned life rafts late on monday after the ship was scuttled .\ndetectives offer # 40,000 reward for information about murders of eve stratford and lynne weedon 40 years ago . miss stratford , 22 , was found with her throat slashed in her leyton home . six months later , lynne , 16 , was attacked and raped in an alleyway . both murders were linked in july 2006 after matching dna was discovered on the victims .\nreal madrid are keen to sign manchester united 's david de gea . but iker casillas says he will stay and fight for the no 1 jersey . the 33-year-old has been at the bernabeu since breaking into the team as a 16-year old . casillas is determined to help real defend their champions league title .\nan anti-islam group held protests in melbourne on saturday . the group , reclaim australia , organised protests across australia . they were countered by anti-racism activists who held rallies in the same locations . the reclaim event was also crashed by neo-nazis , who spectacularly clashed with anti- racism groups . a number of men with shaved heads and tattoos of the swastika appeared at the event and attempted to intimidate anti-racist protesters .\ned miliband promised to ` abolish ' 200-year-old rule for non-domicile status . but in january ed balls said it would cost the country money . mike keen , the labour leader 's cousin , said he was ` officially confused ' mr keen posted on his public facebook page that he needed someone to explain to him just what the labour policy was .\namsterdam falafel shop in washington dc , us , has launched its pot-pairing menu . menu matches five falafels to five strains of marijuana . owners arianne and scott bennett devised the menu . it is strictly a take-away operation , as users ca n't smoke on the premises .\nkazi islam , 18 , sent texts to harry thomas , 19 , who had learning difficulties . he persuaded friend to buy parts for a bomb , old bailey heard . islam used ` cake ' as code for bomb in messages , court told . but thomas failed to understand his ruse , saying : ` cake ? u mean the b o m b ' islam is accused of preparing for acts of terrorism .\npanda ` stud ' lu lu mated with partner zhen zhen for nearly eight minutes . the average length of a ` romp ' between two pandas is between 30 seconds and five minutes . lu lu 's efforts set a new record for the year at the sichuan giant panda research centre .\nalaska department of fish and game biologist tom seaton led 100 wood bison to freedom on a snowmobile . wood bison are north america 's largest land mammal , but the native alaskan species disappeared from the state more than 100 years ago . woodbison were imported from canada to the alaska wildlife conservation center in 2008 but restoration of the threatened species was delayed .\nthe sleep health foundation have released a study reporting that 30 percent of australians complain about their lack of sleep on a daily basis . the average adult needs around eight hours of sleep per night with a range of seven to nine . any less than six or any more than ten hours is unusual for the standard person .\na 12-year-old boy fell from a five-storey window in nanchang , china . he landed on a car parked underneath the building and was saved by it . according to his father , the boy was sleepwalking when he fell . doctors said that the boy did not have life-threatening injuries .\nmanny pacquiao will fight floyd mayweather in las vegas on may 2 . pacqu xiao has revealed his mouth guard ahead of the bout . the filipino boxer is looking to inflict a first ever career defeat on mayweather . the fight is reportedly worth # 300million -lrb- # 205million -rrb-\nc cape verde are a tiny island off the west coast of africa . they are a former portuguese colony and have a population of just 500,000 . the island has become a popular tourist destination in recent years . cape ver de are the smallest nation ever to play in the africa cup of nations .\ngordon robson , 26 , hit father john potts , 45 , in the back of the head . the blow was so hard there was an ` audible crack ' before he fell down dead . mr potts was killed when he tried to break up a fight outside a sports bar . robson was jailed for three and a half years for the attack . he had been drinking at the bar after his grandfather 's funeral .\ndashcam footage has emerged of cars enveloped by a raging wildfire on a road in eastern siberia . one vehicle is seen driving past with its roof blazing , with cars turning around in the road and turning back to escape . wildfires in siberia have been raging since march 19 , with the death toll this week climbing to 30 .\nbarack and michelle obama attended the service at alfred street baptist church in alexandria , virginia , on sunday morning . the pastor encouraged the crowd to stay in their seats and greet only their closest neighbors . the church dates back to the time when thomas jefferson was in the white house .\nport pirie mother karen davis has been charged with disorderly behaviour after a picture of her on google maps appeared online . the 38-year-old mother was captured by a camera car on barry street in port pirie . she has hit back at the controversy over her actions , claiming that ` flat-tittie chicks ' are not confident enough with their own bodies . ms davis plans to skydive topless for her 40th birthday .\nengland are on course to qualify for the euro 2016 finals in france . but manager roy hodgson still does not know his best xi for the tournament . sportsmail 's top team of reporters have submitted their starting line-ups . let us know your england xis by posting them in the comments section below .\nfloyd mayweather vs manny pacquiao will be the biggest fight of all time financially and the most significant this century . here are my 12 most significant fights in boxing 's history . the fight for the black heavyweight title between jack johnson and james j jeffries .\nsam gallagher scored the winner in the under 21 premier league cup final . southampton beat blackburn rovers 2-1 in extra-time to win the trophy . gallagher says he hopes he impressed ronald koeman at st mary 's . the 19-year-old has struggled with injury this season .\nsierra pippen , 20 , was arrested at the sheraton hotel in iowa city , iowa , at 1.30 am on sunday . she was charged with public urination and public intoxication . pippens was arrested on april 10 for public intoxication after getting into a fight with hotel security . she is the daughter of scottie pippes , a former nba basketball player .\nrory mcilroy is bidding to win his first major title at augusta national . world no 1 is bidding for the career grand slam after winning open at hoylake last july . mcilory has recorded just one top-10 finish in six previous appearances at augusta . northern irishman admits tiger woods ' return could work in his favour .\njudy eddingfield , 65 , celebrated her 50th anniversary working at winstead 's restaurant in kansas city last week . eddingfields mother started working at the restaurant when she was three years old . eddinngfield began working at winstead 's on april , 6 , 1965 and was trained by her mother . eddenngfield says that her biggest tip ever was a generous man who treated his staff well .\nlinda macdonald , 55 , was arrested on monday night in dummerston , vermont for driving under the influence of alcohol . police say she ran off route 5 in dummersston and crashed her 2011 toyota camry into a wooden fence . macdonald told responding officers that she crashed while talking on the phone and trying to take directions down on a legal note pad in her car . but when officers smelled alcohol on macdonald , they administered a breathalyzer test and she posted a .10 blood-alcohol content - above the state 's legal threshold of .08 .\nlabour leader says the bobby on the beat is ` at risk of disappearing ' he claims tory cuts have allowed rapists and violent criminals to go free . but labour 's criminal justice plans risked being over-shadowed . lord stevens is to be investigated over allegations of a cover-up of police corruption in the bungled stephen lawrence murder probe .\nthe u.s. census bureau released the updated figures online tuesday . 95.9 percent of women 15 to 19 years old were childless in 2014 , according to the findings . in 2012 , that number was 94.9 % . for women ages 20 to 24 , 75.2 percent were childlessness last year , researchers found . 47.6 percent of girls 15 to 44 were childfree last year - the highest it 's ever been .\nludogorets beat cska sofia 4-0 in their champions league clash . cosmin moti made a kung-fu style tackle on stefan nikolic during the first half . the defender connected cleanly with nikolic 's rib cage but was not sent off . the bulgarian side went on to win the game 4-1 .\njcno jeans , popular at nineties raves , are threatening to make a comeback . the bucket hat was originally a staple of fishermen and farmers . camouflage print was favoured by destiny 's child . double denim was a popular style in the nineties and noughties .\nfirst time in 100 years cadbury 's has released a bar with seven flavours . the seven-row dairy milk spectacular will contain one row each of . dairy milk caramel , dairy milk fruit & nut , dairy milk whole nut , dairy milk oreo , dairymilk daim , and dairy milk turkish .\nfloyd mayweather is close to his fighting weight ahead of manny pacquiao bout . but the champion 's personal chef reveals he loves his snacks . ` chef q ' fills two shopping trolleys and spends $ 321.43 -lrb- around # 220 -rrb- on snacks . mayweather 's chef reveals she usually makes healthy food , but not on snack day .\nkoral reef , 20 , died in october 2014 after contracting the deadly balamuthia mandrillaris amoeba . reef 's family believes she picked up the infection on a family trip to lake havasu in may 2013 . the infection causes a brain-eating disease called granulomatous amebic encephalitis . only 13 percent of patients survive without any type of treatment . reef married her high school sweetheart corey pier in july 2013 .\nander herrera was compared to paul scholes on facebook . but the manchester united midfielder has played down the comparison . herrera says ` there will never be another scholes ' scholes scored 107 goals in 499 games for united . herrera has scored seven goals in 26 appearances since his # 28.8 million arrival from athletic bilbao last summer .\nboris johnson and david cameron slam snp plans to prop up labour in a hung parliament . they say it would mean ` truckfuls of taxpayers ' dosh growling up the m1 to scotland ' alex salmond boasted he would write labour 's first budget because snp would hold balance of power .\na u.s. citizen with alleged ties to al qaeda did not enter a plea during his initial court appearance . muhanad mahmoud al farekh , 29 , was deported from pakistan to the united states . he 's accused of plotting to fight against american forces abroad .\ngilbert oil opened the petrol station in 1935 and served hollywood drivers until it was abandoned in the 1990s . the station was listed as a los angeles cultural monument in 1992 , but was soon after left to vandals and graffiti artists . starbucks bought the garage last year and have now finished its transformation into a drive through coffee shop .\na melbourne man has been charged with conspiring to commit terrorist acts . sevdet besim , from hallam in melbourne 's south-east , was charged with ` conspiracy to commit acts done in preparation for , or planning , terrorist acts ' he is one of two 18-year-old men police arrested for allegedly planning an ` isis inspired ' attack on an anzac day ceremony . the men were ` associates ' of abdul numan haider , who was shot dead after stabbing two officers outside a melbourne police station on september 23 . a total of five teenagers were arrested as part of the melbourne joint counter terrorism team operation named operation rising . three of the men were released by victoria police\nemma giffard and ollie halls bought the bedford sb3 for # 1,200 in 2005 . they spent # 35,000 restoring the vintage classic with friends in devon . the couple toured the country with the bus and starred in a bbc2 series . but now they want to sell it so they can concentrate on being parents . the cinema is listed on ebay for # 120,000 .\ndavid cameron will put small business at heart of election campaign today . prime minister has faced criticism over a campaign lacking in passion . he will appeal to small firms and the self-employed . he said he made ` no apology ' for focusing on the economy . mr cameron said : ` nothing matters more '\njapanese mps asked about possible alien invasions in parliament . defence minister gen nakatani told mps there had been no violation of japanese airspace by aliens . he also said no government studies into extra-terrestrials were under way . nakatiani said war planes can be scrambled whenever there is a report of an unidentified flying object but , so far , they had not encountered visitors from space .\nformer cia worker edward snowden released documents on tuesday . alleges britain was spying on argentina between 2006 and 2011 . no official response from britain or argentina to the claims . comes after discovery of oil in the falklands by british last week . row over sovereignty of islands could be intensified by oil find .\nthe tidwell middle school student started a blog in august last year . it was called ` killing children ' and featured 11 stories about killing people . the names of the students featured were revealed by the children . the boy was removed from class and his parents withdrew him from the school . the blog was also taken down , but he returned to class last month . district attorney 's office has ruled the blog was protected by the first amendment . parents are outraged and have protested outside the school this week . the district attorney has confirmed no charges will be laid .\na viral video is making the rounds in china , showing a small boy displaying his dazzling array of basketball skills . the five-year-old child is called mai zizhuo and he has been shooting hoops since he was two and a half years old . his incredible skills have won him legions of fans across basketball-mad china .\nlatisha fisher , 35 , has been charged with second-degree murder . she allegedly smothered her 20-month-old son gavriel ortiz to death in a bathroom at a manhattan restaurant on monday . she told police she was afraid someone was going to eat her son . fisher was diagnosed with schizophrenia after a 2011 stabbing . she was evaluated as mentally fit as recently as last year . she had previously tried to kill a former partner and her son 's father .\nlauren perry , 25 , had her waters break at 23 weeks in her pregnancy . her twins mason and chloe were delivered early via an emergency caesarean at 30 weeks . eight months later when mason was admitted to hospital to have his colostomy removed he nearly lost his life to a dangerous flesh-eating virus . the infection had eaten all the tissue in mason 's chest and abdomen , leaving him fighting for his life .\nnasa has released an infographic explaining which worlds in the solar system are thought to have oceans under their surface . nine other worlds are suspected to have some form of subsurface ocean . this includes europa , ganymede , callisto , enceladus and ceres . it follows claims by nasa that we could find life on one of these worlds in 10-20 years .\nthe video , titled love is on , was created by agency george patts y&r . it 's shot in black and white , with just a slick of pink visible on the woman 's lips . the stylish ad is filmed entirely in black & white . it is revlon uk 's new global tag line , love is on .\njenson button and lewis hamilton are taking advantage of the break in f1 . hamilton won the bahrain grand prix on sunday . the mercedes driver took to the water and enjoyed a jet surf session . button is training for the london marathon with his wife jessica michibata .\nyin yunfeng spent last week of his holiday making stir-fried dishes . also made about 1,000 dumplings before returning to tibet . wife , ms zhao , lives in house bursting with frozen dishes and snacks . mr yin is stationed in tibet and only gets to go home once a year .\nsir alex ferguson spoke to john parrott on bbc 's world championship coverage . the former manchester united boss revealed why he rates cristiano ronaldo above lionel messi . ferguson said ronaldo could score a hat-trick for any team . the 73-year-old also revealed how he ` battered ' paul ince at snooker .\nraymond allen opened first kfc in preston , lancashire , 50 years ago . the 87-year-old said he has only ever eaten at the restaurant once . he said the fast-food chain has strayed so far from its original concept . mr allen still has a personal hand-written copy of the secret recipe .\nsen. john mccain and rep. lindsey graham say climate change is a chance for u.s. to lead . they say president kennedy 's courage in space exploration holds lessons for today . they call on elected leaders to embrace the climate challenge before us . mccain and graham : we are obligated to leave the world a better place than we found it .\nactivision blizzard has announced plans to resurrect the popular video game franchise later this year . called guitar hero live , the revamped game features a redesigned guitar , live-action actors and an online music video network . it will cast players as an up-and-coming guitarist in a fictitious band . instead of playing along with computer-generated characters , wannabe rockers will see a first-person view of their band mates and audiences portrayed by human actors . the game is expected to launch internationally , although details about pre-orders and a release date have n't been announced .\nvideo shows a suitcase being taken from a plane with a broken item inside . out of nowhere a mechanical arm slams into the bag and thrusts it onto another conveyor belt . it is not known where the video was taken but believed to be at an airport . the video has been met with mixed responses on youtube .\nsalford 's rangi chase charged with grade e dangerous throw on good friday . half-back could face a ban of up to eight matches . chase will appear before an independent disciplinary tribunal on wednesday . four other players have been charged for offences in round eight .\nairport could be rebranded ` shakespeare 's airport ' in the u.s. to attract more tourists . but there are concerns that not enough americans will know who the playwright is . similar rebranding in china has attracted thousands of tourists to birmingham .\nreal madrid star cristiano ronaldo scored five goals against granada . ronaldo took to twitter to encourage his fans to get into shape . the portuguese star has not been at his best this year . real madrid beat granada 9-1 at the bernabeu on sunday .\ncathryn parker , 72 , has lived under at least 74 aliases in los angeles , mainly those of hollywood production workers . she was convicted in 2000 for federal mail fraud in hawaii after she used the jenny craig corp 's corporate travel account to purchase plane tickets and then sold the tickets privately for $ 500 apiece . police believe there could be more victims .\ndan swangard was diagnosed with a rare form of metastatic cancer in 2013 . he wants to be able to control when and how his life ends . he joined a california lawsuit seeking to let doctors prescribe lethal medications to certain patients . the right-to-die movement has gained momentum in california and around the nation .\na car carrying a family of four plunged into the water in san pedro , los angeles . the car was driven by the boys ' father and landed upside down in the 30-foot water . the boys ' 13-year-old brother was pulled dead from the water at the scene . their parents are in a stable condition in the hospital .\nandrea orlandi reveals joe lewis wore an autographed shirt against reading . the signed shirt was meant to be put aside for a club sponsor . but lewis had to wear it because blackpool , who have no kitman , had no others to give the 27-year-old . the club 's relegation from the championship was confirmed last week following rotherham 's 1-0 win over brighton .\nmale teacher at hawthorne elementary in albuquerque , new mexico , was suspended on paid leave on monday . he allegedly told his 11-year-old students that he raped his first wife . mother margie brooks , whose son was in the class , said she was horrified by what the teacher told the students and felt the school waited too long to deal with the problem .\nmatt stopera 's iphone was stolen from his apartment in new york city and ended up in the hands of li hongjun in southeastern china . the 30-year-old restaurant owner received the phone as a gift and began taking pictures . the images ended up on matt 's icloud because the phone had not been erased properly . the pair became friends and li invited stopera to visit him in china .\ncarlsberg city is a new neighborhood in copenhagen , denmark . the area has been home to the famous carlsberg brewery since 1847 . carlsburg will remain inside carls berg city , making specialty beer . the project has attracted interest from all over the world .\nchandni nigam , 19 , spent six years battling demons which spawned from obsession to do well . would stay up late studying , resulting in sleep deprivation and negative impact on performance at school . she had been a volunteer at the london olympics in 2012 and was worried about her appearance . she first told her parents she was feeling suicidal in 2013 and said she would stand in front of a fast train on a tuesday to take her life . inquest heard she told doctors she did not want medication for her condition and was not judged to be a suicide risk .\nswansea are interested in signing blackburn rovers striker rudy gestede . garry monk has made a striker his priority for the summer . the swans have also checked on aleksandar mitrovic and obbi oulare . marseille 's andre ayew is also a target for the swans .\nbrentford beat fulham 4-1 on good friday to move up to 14th . stuart dallas scored twice and impressed for northern ireland . the 23-year-old was signed by mark warburton three years ago . dallas spent three months on loan at northampton .\nthree former managers of the aids healthcare foundation filed a suit last week alleging the company paid employees and patients kickbacks for patient referrals . employees were paid $ 100 bonuses for referring patients with positive test results to its clinics and pharmacies . the lawsuit alleges kickbacks started in 2010 at the company 's california headquarters and spread to programs in florida and several other locations .\nburnley host tottenham in the premier league on sunday . veteran defender michael duff has backed sean dyche to manage england . duff believes dyche could one day take charge of the national team . the 37-year-old has played in eight different divisions . burnley are currently 11th in the table .\ntrailer for new `` fantastic four '' promises a different take on the classic marvel characters . new `` jurassic world '' trailer features even more of star chris pratt . the movie is first in the rampaging-dino franchise since `` jurassic park iii '' in 2001 .\naround 50 obese pupils at jianxin primary school , in eastern china , are being sent to special classes . teachers set up the lessons after a survey revealed 5 per cent of the school 's 800 pupils were obese . the kung fu panda classes are named after a dreamworks film of the same name .\nfree-climber alain robert scaled dubai 's 1,007 ft cayan tower . the 52-year-old kept chalk in a pouch clipped to his waist for assistance . the climb took an hour and a half to complete . robert has previously been arrested , imprisoned and banned from locations across the world for illegal ascent .\nclarke carlisle has split from wife of 14 years , gemma . former premier league defender says he has ` moved out of marital home ' he tried to kill himself in december , two days after he was arrested on suspicion of drink-driving . the 35-year-old stepped in front of a 12-ton truck on the a64 near york . he suffered cuts , bruises , internal bleeding , a broken rib and a shattered knee .\nmanchester city are currently fourth in the premier league table . manuel pellegrini 's side are 12 points behind leaders chelsea with five games to play . joe hart says city have had ' a lot of honest conversations ' since defeat at manchester united . the england goalkeeper says the team have ` let themselves down ' this season .\nhagrid the lamb was born on a farm in gelston near grantham in lincolnshire . the suffolk cross is thought to be the biggest lamb ever born in the uk . the animal was born at 14inches tall and weighs 25lbs , three times the size of its peers .\ntony hatch wrote hits for frank sinatra , dean martin and shirley bassey . he and former wife jackie trent wrote the theme tune for neighbours . but hatch was banned from her funeral by trent 's second husband , colin gregory . he claims she never forgave him for their split and for denying her credit . gregory says he will bring trent 's ashes home for a memorial service in may .\nmahendra ahirwar , 12 , from madhya pradesh , suffers from a rare condition . his neck bends and his head hangs from his body . his weak backbone means he ca n't stand or walk and is restricted to a sitting position . his parents say they have consulted more than 50 doctors but none could diagnose his condition .\nthe lilly pulitzer for target collection sold out online and flew off of shelves at stores shortly after debuting on sunday morning . the 250-piece collection included clothing , accessories , and homeware from the designer at target 's lower price point . many of the items sold on ebay for up to ten times the retail price .\nmauricio pochettino has questioned the logic of blooding more academy players . harry kane , nabil bentaleb and ryan mason have all impressed this season . pochettinos says he will not flood the first team with academy players next season . the tottenham boss insists hugo lloris wants to play in the champions league .\nmoldovan multi-millionaire dmitry kaminskiy wants to live to 123 . he says stem cells , tissue rejuvenation and regenerative medicine will allow people to live beyond 120 - an age that has been quoted as the ` real absolute limit to human lifespan ' kaminskiy is hoping his million dollar gift will trigger a new group of ` supercenternarians '\nfreddie sears scored the opening goal of the game for ipswich after six minutes . kenwyne jones came off the bench to equalise for bournemouth in the 82nd minute . eddie howe 's side remain in the top four after the draw at portman road .\npoldark ended last night with a dramatic cliffhanger . fans took to twitter to complain of ` withdrawal symptoms ' less than 12 hours after finale . second series of poldark due to air in 2016 . fans complain they have nothing to look forward to now show is over .\nsan francisco-based jonathan keats has designed a ` millennium camera ' he hopes to take a 1,000-year exposure of a western massachusetts mountain range . keats hopes the resulting photograph will chronicle climate change . the camera is made of cooper and allows light to enter through a tiny hole . it will create one image that keats says will display centuries of changes .\ncharlie taylor opened the scoring for leeds in the 11th minute . wolves equalised through nouha dicko in the 45th minute before benik afobe put wolves ahead in the 48th minute with a fine finish . alex mowatt put leeds back on level terms before substitute david edwards scored a late winner . wolves move up to sixth in the championship with a fourth successive victory .\nandrew chan and myuran sukumaran lost a bid to challenge their clemency rejections in the state administrative court on monday . they are now appealing to indonesia 's constitutional court . the pair 's lawyers say the move is not aimed at delaying the executions , but clarifying a prisoner 's rights . attorney-general hm prasetyo has dismissed the challenge as delaying tactics and says he wo n't recognise it .\nmanchester city are currently fourth in the premier league table . manuel pellegrini 's side face west ham united at the etihad on sunday . the chilean has admitted he could be sacked if his side finish outside the champions league places this season . city have lost four of their last five games in all competitions .\ntwo men who claim they were molested as young boys by michael jackson are expected to find out on tuesday if they will be allowed to sue for a slice of the late king of pop 's $ 1.5 billion estate . australian choreographer wade robson , once the singer 's staunchest defender , now claims jackson was a predator who repeatedly sexually abused him as a child . james safechuck , who says he met jackson in 1987 when he was eight and was molested a year later , claims in court filings that jackson held a secret wedding ceremony with a young safechucks as his bride .\nbarcelona beat psg 2-0 to reach the champions league semi-finals . the catalan giants also sit top of la liga and will face athletic bilbao in the copa del rey final . eric abidal was part of the barcelona team that won the treble in 2009 . the former defender says barcelona can win the trebles this season .\ntactics used to bend the rules were revealed by more than 500 whistleblowing teachers . one in five reported colleagues had written sections of coursework . 15 per cent said staff had given ` hints ' or ` pointers ' while invigilating exams . details emerged at a teacher ethics in assessment symposium at oxford university .\njean wabafiyebazu , 17 , was shot dead and his brother marc wabfiyebzu , 15 , arrested on monday after a gunfight erupted during a drug deal in miami . the boys ' mother is roxanne dubé , the recently appointed canadian consul general in miami , and their father said jean struggled with substance abuse . a 19-year-old man was also arrested on charges of felony murder and drug possession . marc wafiyibzu is due in juvenile court on april 8 and faces charges of threatening a police officer . the boy is alleged to have told police he would shoot a detective in the head if he was caught .\norrden williams jr. was outside a bp gas station in memphis , tennessee on monday when a crowd of loud and unruly teenagers suddenly descended upon the establishment . williams asked the teens to be quiet , and soon after was sucker punched and attacked . he ended up covered in bruises , and his baby was also almost hit by the teens . police arrested 19-year-old joe brittman wednesday .\nplastic surgeon dr. fredric brandt was found dead inside his miami home on easter sunday morning . a friend found him hanged inside the garage of his coconut grove home . the police report reveals that brandt had been battling with extreme depression for just 10 days before his death . the news comes after claims that the ` baron of botox ' killed himself after a ` bullying ' tv series aired on netflix . the unbreakable kimmy schmidt premiered on march 6 and features a character called , dr franff , played by comedian martin short .\nj.b. silverthorn of orchard park , new york , was charged with felony dui on monday . police say they repeatedly told him not to drive home from grand island town court after they noticed he ` smelled of alcohol ' but the suspect reportedly proceeded to get in his car and pull out of the parking lot before being stopped by deputies . silverstorn was deemed guilty this week for driving over the limit and crashing his car into the niagara river on december 29 .\nrichard sherman shared a photo of him and his girlfriend ashley moss with their son rayden on instagram on thursday . rayden was born on february 5 , just a few days after sherman and the seattle seahawks lost the super bowl to the new england patriots . the cornerback will also be undergoing surgery in august to repair a torn ligament in his left elbow .\npassenger hijacked plane 's tannoy system to sing karaoke while drunk . graham leonard was returning to scotland after watching manchester united match . he grabbed pa microphone and burst into song for fellow football fans . after frustrating cabin crew with antics he then deliberately set off fire alarm . around 40 people had to be evacuated from the area at aberdeen airport .\njordan spieth finished well off the pace by carding a three-over-par 74 . the masters champion looked tired as he struggled in difficult conditions in south carolina . spieth admitted lack of preparation affected his first round . matt every and graeme mcdowell shared the lead on five under after the first round at hilton head .\nea sports rory mcilroy pga tour is due out on july 16 . the game features various gameplay styles as well as enhanced ball physics . mcilory replaced tiger woods as the cover star for ea sports pga tour games . the new game is available for xbox one and ps4 .\nthousands of descendants of american southerners turned out to celebrate the 150th anniversary of the end of the american civil war in santa barbara d'oeste , brazil on sunday . the annual festa dos confederados , or ` confederates party ' in portuguese , is held in the town of santa barbara and neighboring americana in brazil 's southeastern sao paulo state . for many of the residents of santa oeste and neighboring americana , having confederate ancestry is a point of pride .\nlistening to the right music can enhance flavours in certain foods and drink . the intensity of nessun dorma is said to be the perfect accompaniment to dark mouse or coffee . the high-pitched piano in billie holiday 's autumn in new york can help emphasise the autumnal flavour of a pumpkin pudding . researchers found people enjoyed their wine more while listening to ` paired ' music , rather than while being sat in silence .\nan eight-year-old boy has been tested for every std including hiv after he put a used condom in his mouth thinking it was a balloon . the boy picked up the unwrapped condom in the playground at bennett elementary in bennett , colorado last week . his mother , who was only identified as alicia to protect her son , said it would be a year before her son had the all-clear from his std testing .\nbank of england governor was spotted jogging in london 's hyde park . he was wearing a high-tech running belt with no fewer than four water bottles . mr carney , originally from canada , is training for the london marathon . he is known to be a keen sportsman and likes to keep fit .\n`` grace of monaco '' is heading straight to lifetime . the critically-panned film will premiere on memorial day , may 25 . it stars nicole kidman as grace kelly . the weinstein co. first purchased u.s. distribution rights at the 2013 berlin film festival .\nformer soldier john young , 66 , and his new wife elaine , 54 , were sat in the front room of their home in oldham , greater manchester . thugs began pelting his front window with stones and when one smashed the glass , mr young went and opened his front door to confront them . he was hit in the face with a brick and taken to hospital but doctors could not save his eyesight . police said there appears to be no motive and it could be a case of yobs ` messing around '\nvictor estrella beat marin cilic 6-4 , 6-3 , 6 -4 at the barcelona open on wednesday . cilic is the 2014 u.s. open champion but is struggling with a shoulder injury . santiago giraldo and kei nishikori will meet in the third round of the tournament .\nmenendez , 61 , is accused of using his position to help dr salomon melgen bring at least three mistresses to the u.s. on visas . the women included a brazilian model who posed on the cover of ` sexy ' magazine and a ukrainian actress who moved to florida to live in one of melgen 's homes . menendez has pleaded not guilty to eight bribery counts related to his close personal friendship with melgen .\nphotographer victor albert prout travelled along the river thames on his punt , capturing and developing his images on site . the collection of images , which include iconic shots of windsor castle and richmond bridge , is thought to be the oldest surviving record of britain 's best known landmarks . the images are to be sold at auction in oxford this month and are expected to fetch around # 30,000 .\ngiorgio armani , 80 , made controversial comments in interview . said he disapproved of women with breast enlargements . also condemned men who work out too much . admitted he preferred the ` natural look ' on women . has never denied claims that he is gay .\napple watch goes on sale in stores in paris , london and tokyo on april 24 . the watch is available for preorder online and to try out in stores by appointment . apple ceo tim cook said initial . orders were ` great ' wall street analysts said it was too early to adjust their . estimates for sales of the gadget .\nvideo appears to show liverpool star apparently inhaling gas from a balloon . drugs charity re-solv has called on sterling to condemn use of ` hippy crack ' charity says it is ` disappointing ' and urges him to apologise to fans . comes days after he was pictured puffing on a shisha pipe .\naspinal of london teamed up with the city star olivia palermo . she has designed a limited edition marylebone techtote for # 995 . the tote features a built-in phone charger and is available now . all profits from the handbag go to charity adcam .\ncarlos tevez has scored six goals in the champions league this season . juventus face monaco in the quarter-final first leg on tuesday . the italian side are aiming to reach the semi-finals for the third time . monaco beat arsenal 3-1 in the last 16 at the emirates stadium .\nfootage shows isis suicide bomber 's car being catapulted into the air after apparently hitting a road-side bomb . car was reportedly trying to launch an attack on kurdish peshmerga forces near kirkuk in northern iraq . as it begins to fall back down to earth , the car detonates like a firework , either due to the explosives on board or the fuel tank igniting .\nbmx world champion liam phillips is hoping for glory in rio . the 26-year-old is using 2015 to experiment with tactics . phillips won the manchester world cup event this weekend . he will be expected to perform on his home track . phillips leads a five-rider british team .\nsydney doctor julie epstein has been found guilty of medical misconduct . she had been prescribing drugs to 40 patients without proper judgement . the doctor has been a medical practitioner for 40 years . she opened one of nsw 's first anti-ageing clinics in 2007 . a tribunal found she was irresponsible diagnosing medications such as steroids and keeping inaccurate patient records .\nfox sports australia will not take action against freelance presenter briony ingerson . she posted an instagram picture of herself and a friend in blackface make-up . ingerson wrote that the costume was as a light-hearted tribute to a friend who was working on network ten program ` i 'm a celebrity ... get me out of here ! ' the photo has sparked outrage , with members of the public taking to social media to condemn her ` ignant ' actions .\nthe ch-53e super stallion made an emergency landing on a beach in northern san diego county on wednesday morning . the crew was forced to land after a low oil-pressure indicator light went on in the cockpit . the helicopter is the largest and heaviest in the u.s. military and can carry a crew of four . no one was injured in the landing and the helicopter was fine to later take off and return to miramar air station .\ndidier drogba has been awarded with the barclays spirit of the game trophy . the chelsea forward set up the ` didier . drog ba foundation in africa ' to help children in africa . the 37-year-old scored against leicester on wednesday to equalise .\nkim kardashian and her husband kanye west are in the capital yerevan . the couple are in armenia to visit their late father robert kardashian . the visit is their first to the country of their birth . the kardashian-west crew are staying at the armenia marriott hotel yerevans .\nsarah harper was in a relationship with christopher lane , 22 , when he was gunned down while visiting in the city of duncan in august 2013 . he was born in melbourne , australia , but was in the united states on a baseball scholarship when 17-year-old chancey allen luna allegedly murdered him . the couple had returned from a trip to australia just two days earlier . luna 's mother , jennifer luna , claims her son did not mean to kill lane ` on purpose ' and claims he is innocent .\npfa players ' player of the year is voted for by premier league players . harry kane , eden hazard , diego costa and sergio aguero are the leading contenders for the award . last year 's winner luis suarez now lives in spain , as does 2013 winner gareth bale .\ntruck driver rear-ended by huge armoured vehicle in changchun city , china . pictures and videos of the scene were posted to weibo , china 's equivalent of twitter . incident is being dubbed the ` craziest rear-end collision in the country '\nreal madrid hope to have cristiano ronaldo 's yellow card rescinded . the portuguese appeared to be unfairly cautioned by referee mario melero lopez after he was chopped down by defender antonio amaya inside the box . ronaldo is suspended for the game against eibar in la liga on saturday .\na young woman named fatu kekula is learning nursing skills in the u.s. she 's learning to care for her ebola-stricken family in liberia . a cnn story about her prompted donations from around the world . `` i love to care and i love to save lives , '' she says .\nmotherwell will offer season-ticket holders free entry to premiership play-offs . the spfl are entitled to take 50 per cent of the gate proceeds from the six play-off ties for redistribution among the clubs . motherwell general manager alan burrows told sportsmail his club will make a stand if they finish in the premiership play - off place . rangers and hibernian are set to back motherwell 's revolt .\nworld no 1 rory mcilroy has backed bradley neil to turn professional . neil won the amateur championship at royal portrush last year . the 19-year-old has been invited to the masters and us open in 2015 . mcilory was on losing side in the 2007 walker cup .\nthe table is compiled by football association delegates who attend every premier league match and assess team behaviour towards match officials . jose mourinho 's team are the most likely to protest decisions . liverpool show the greatest respect towards officials , followed by burnley and west brom . sunderland , arsenal and stoke city rank poorly in the assessment .\npaul mcshane has told his hull team-mates it 's time they woke up and realised they are in a relegation battle . hull lost 3-1 to swansea at the liberty stadium on saturday . the tigers have only scored twice in their last six away games in the league .\nzeke celello burst into tears when hillary clinton announced she was running for president . the two-year-old was left disappointed by the news and complained to his mother . but he eventually decides to run anyway , despite being told he ca n't be president until 35 .\nteana walsh , an assistant prosecutor in detroit , michigan , made the comment . she said she saw protesters throwing rocks at police and decided to shoot them . at least 15 people ` liked ' the post , which she later deleted . her bosses defended her , saying the post was ` completely out of character '\nbritish sprinter adam gemili says usain bolt is always good fun . gemili will compete in the sainsbury 's anniversary games this summer . he says bolt gave him great advice to have fun with athletics . gemil says he is nowhere near bolt 's standard at the moment .\nedwin ` jock ' mee , 46 , allegedly targeted 11 cadets aged between 15 and 25 . he is accused of raping one of them at a military base in south london . it is claimed he told the cousin of his alleged victim ' i hope she is as sweet as she looks ' mees , who now lives in scotland , denies all the charges against him .\nbrazil international neymar scored twice to put barcelona 4-0 up on aggregate . lionel messi and luis suarez also on target as barcelona reached champions league semi-finals . psg 's david luiz was booked for a foul on andres iniesta in the first half .\nprototype of the new 10th generation car unveiled at new york international motor show . swindon in wiltshire will become global production hub for the next generation five door civic . new u.s. civic line-up will include civic saloon , coupé and si models . 50 per cent of production will be exported to key markets outside of europe .\ngermanwings flight 9525 reportedly had blaring cockpit alarms , but pilot ignored them . experts are calling for enhanced crash avoidance software that could take control of an aircraft away from a pilot . the technology would work in a fashion similar to crash avoidance technology already used in automobiles .\nincredible photographs appear to capture a fire-breathing dragon in the sky . the images were captured by amateur photographer nicolas locatelli , 20 . the red sky adds a fiery hue behind the clouded creature giving it an uncanny likeness to the legend of the fire breathing dragon slain by st george .\nunnamed worker from alberta , canada , handed his bosses a doctor 's note . said to be an employee of pizza hut , it criticises the firm 's sick note policy . gp says the employee ` sensibly stayed home from work ' and ` wasted his time ' the note was posted on reddit by a friend of the employee .\nrory mcilroy will face tiger woods at the masters on thursday . the northern irishman grew up watching woods and is now the world no 1 . a new nike video charts mcilory 's rise from a child prodigy to the world 's best . mcil rory and tiger woods will line up at augusta this week .\npassengers on united express flight from kansas city to denver . but they were diverted to colorado springs due to bad weather . flight took just an hour and a half to get to the unscheduled stop . but then languished for another six hours , before everybody was ordered off .\nalastair cook and jonathan trott score 10th hundred partnership . england captain is part of three of the last six . west indies bowler shannon gabriel kept england batsmen on their toes . new zealand all-rounder corey anderson could miss test series with a broken finger .\nzoe hadley , 19 , had been battling an undiagnosed illness since the age of 13 . she was found dead at a hotel in putney , south west london last year . inquest heard how her parents struggled to treat her condition . she had been unable to eat , walk or open her eyes for long periods . injuries were not physical and doctors could find no physical cause for her illness . she also suffered from psychosis but hid the condition from doctors , inquest heard . westminster coroner 's court recorded a suicide verdict .\nsprinkles the 33-pound cat is so fat she ca n't even roll over and she 's comparatively as obese as a 700-pound human , say rescue workers . the neglected cat from sea isle city in new jersey was handed over to the rescue agency s.o.s sea isle cats by a family facing a foreclosure on their home . luckily for sprinkles who is too fat to even groom herself , she is being cared for by pet rescue volunteer stacy jones olandt . a healthy weight for sprinksles would be 10 pounds which is 20 pounds less than she currently weighs .\npc 's leanne wood chose hot pink for live election debate . christine lagarde is first female chief executive of imf . samantha cameron and holly willoughby are also fans of the colour . high street brands are responding to demand for pink . topshop , next , h&m and marks & spencer all featuring pink .\nben stokes thought he had taken the wicket of jermaine blackwood . but the durham all-rounder overstepped the line and was denied . stokes was also denied his first test wicket against australia in 2013 . michael vaughan thinks stokes should return to his natural style .\nburnley are currently bottom of the premier league . danny ings has n't scored since february 11 . burnley manager sean dyche wants the rest of his players to score . everton 's aaron lennon impressed on loan from tottenham . roberto martinez has not let on if he will sign lennon permanently .\nphotographer brandon stanton posted photo of woman with unfortunate name on facebook . photo of new york resident beyoncé has gone viral with almost 300,000 shares . thousands of users have commented on the photo expressing their own name clashes . many have shared their own stories of being the butt of jokes .\nnicole mcdonough , 32 , was arrested in december on suspicion of having sex with an 18-year-old student while employed as a teacher at mendham high school in morristown , new jersey . an investigation found she had ` improper relations ' with two other 18 - year-old male students , police say . the married mother of two has applied for a pre-trial intervention program , which provides first-time , non-violent offenders with alternatives to traditional prosecution . if she successfully completes the program , all charges against her would be dropped and her criminal record would be expunged .\nlindsay sandiford , 58 , from cheltenham , was sentenced to death in bali . she was linked to almost five kilograms of cocaine in 2012 . she now fears she will be the next to face the firing squad . she said she ` feels like giving up ' and ` just wants to get it over with ' andrew chan and myuran sukumaran were executed by firing squad on bali 's ` death island '\ned miliband and nick clegg were asked their opinion on the practice of sexting in quiz . green leader natalie bennett said it is ` ok for other adults but not for me ' education secretary nicky morgan said it was ' a bit too risky , thank you very much '\nnorma esparza says her ex-boyfriend , gianni van , 45 , was outraged when he heard about the assault and demanded that she find and point out gonzalo ramirez at the bar where she met him . van is now charged with the murder of ramirez , who was found blindfolded and beaten with a meat cleaver . esparzas , 40 , is expected to receive a six-year sentence in exchange for testifying at the trials of van and another defendant .\nu.s. consulate personnel are safe and accounted for , state department says . police say four people were killed and 18 injured in the blast in irbil , iraq . isis claims responsibility for the attack , saying it targeted the u.s.-run consulate . a police official says it appeared people inside the car detonated explosives .\ncelebrity guests at coachella this weekend sported bizarre outfits . jaden smith , kylie jenner and paris hilton among those to stand out . neon was the obsession of the weekend , with many wearing tutus . others opted for clashing prints and clashing headgear .\ncargo plane left main landing gear detached after landing at east midlands airport . the boeing 737 skidded along the runway for 380ft before coming to a stop . the plane 's 38-year-old captain and co-pilot escaped injury . the incident happened as the plane delivered 10 tonnes of freight .\nthe london borough of barking and dagenham is to introduce dna testing . it wants dog owners to submit a sample from the inside of the animal 's cheek . it would then be registered on a database and matched to the owner . the council would then issue an # 80 fine for any errant mess found .\narsenal were losing 2-0 to southampton at st mary 's on january 1 . luke bryant ran onto the pitch and shrugged his shoulders at arsene wenger . the 25-year-old was banned from attending games for three years . bryant said he was frustrated with the club and ` just wanted his voice heard ' wenger said he thought the fan was from the southampton end .\nanthony mcgill beat mark selby 13-9 in the betfred world championships . the win sees mcgill reach the quarter-finals of the tournament . selby is the 16th man to lose a world championship to a first-time winner . mcgill will now face shaun murphy or joe perry in the last eight .\nashley dodds , 29 , visited red hot world buffet in manchester with daughter dennon . she ordered a non-alcoholic sweet kiss ` mocktail ' for the girl and her friend . but staff accidentally served them a drink with alcohol in it . restaurant bosses admitted to the mistake but blamed ms dodds for leaving her daughter alone .\nshibuya ward in tokyo 's capital passes ordinance to recognize same-sex unions . same-sex couples will be able to hold visitation rights in hospitals and co-sign tenancy agreements . opponents of same - sex marriage say the move is a step in the wrong direction .\nthe tv star is the face of the new air wick fragrance range . she says that simple changes can transform a home . the campaign was shot by vogue and gq photographer willy camden . one in three brits use home fragrance to transform their humble abode .\nbridesmaids actor chris o'dowd lashed out at gatwick airport staff . his three-month-old son was frisked while passing through security . staff also threw out the child 's bottle in a tweet dripping with sarcasm . the 35-year-old actor mocked the airport with the hashtag ' #scarybaby '\nmichael hanline was convicted of murder for the fatal shooting of truck driver j.t. mcgarry in 1980 . but dna analysis and investigative reports were withheld from his original trial . new evidence proved that hanline , 69 , was innocent and he was released last november . he has now been released and said he wants to spend time with his wife and go fishing .\naaron ramsey 's first half goal gave arsenal a 1-0 win over burnley on saturday . it was the gunners ' eighth win in a row and kept up the pressure on chelsea . olivier giroud wants to continue their winning streak and challenge for the title . arsenal face chelsea at the emirates in their next premier league game .\nfootage shows three-year-old luiz antonio from brazil being presented with a fanciful dish of octopus gnocchi at the dinner table . but instead of digging into the seafood feast he starts asking about where the tentacled creature set before him came from . his mother reassures him that she only cooked using the octopuses ` little legs chopped '\nengland were bowled out for just 350 in their first innings in antigua . jason holder scored 103 as the west indies held on for a draw . england captain alastair cook says the team are ' a bit of a downer ' after the draw .\nlexi thompson , 20 , will appear on the front of may 's edition of golf digest . she appeared in the women 's u.s. open when she was just 12 . thompson turned professional in june 2010 at age 15 . she has just completed a faultless win in the kraft nabisco championship .\nmaggie , 53 , has raised kecil for the past 10 months at chicago 's brookfield zoo . the baby orangutan was moved from his birthplace at toledo zoo 14 months ago . his natural mother and a surrogate mother both rejected him . but he found love with maggie at the third time of asking .\nmajor-general alastair duncan is in a psychiatric unit following a ptsd episode . he was given the anti-malarial drug lariam before a deployment to sierra leone . since 2008 , 994 personnel have been treated for mental health issues . the drug has been banned by the u.s. military due to side effects .\nglenn murray scored in crystal palace 's 2-1 win over manchester city . the cumbrian has scored five goals in five games since returning from injury . alan pardew believes murray 's aerial ability is down to a new knee . pardews believes murray is reaping rewards of loan spell at reading .\ncriminals had earlier posed as bank staff and convinced victim his debit cards needed to be recalled for security reasons . they talked him into divulging his security details and persuaded him to leave cards in envelope on doorstep of home . but less than two hours later , the cruel conmen were filmed using same cards , laughing and joking as they stole # 150 from cash machine . west midlands police released footage in a bid to identify the pair and bring them to justice .\nthe premier league relegation battle is in its final stages . just nine points separates the bottom seven teams . sportsmail asks the managers what it will take to avoid the drop . qpr boss chris ramsey believes they will stay up if they win three more games . tim sherwood believes his appointment at aston villa has given them a lot of belief and confidence . nigel pearson hopes his side can continue their momentum against burnley .\nthe women of silicon valley blog was created by stanford student lea coligado , 21 , to showcase the talents and stories of women working in the industry . the blog has attracted the attention of some of the best in tech , including tracy chou , a software engineer at pinterest . lea hopes to raise awareness of the gender disparity in tech .\nsteven thompson has apologised to team-mate john mcginn . the st mirren skipper accidentally speared him with a training ground pole . mcginn will miss the rest of the season after being stabbed in the leg . thompson subsequently scored two goals in saints 4-1 win over kilmarnock .\nrobert fidler , 66 , secretly constructed mock-tudor castle complete with battlements and cannons and lived there with his family from 2002 . he unveiled it officially in 2006 when he thought he would be able to exploit legal loophole . but local authority immediately laid siege by refusing to grant retrospective permission . now , after numerous court appearances costing tens of thousands of pounds , communities and local government secretary eric pickles has finally ruled the four-bedroom home must be pulled down .\nthe 22-year-old said she kneed jason lee , an ex-goldman sachs managing director , in the groin during the struggle after he forced her onto the floor . she sobbed and said she was left in a state of ` disbelief ' and begged her friends to take her home - because she felt that it was her fault . lee , 38 , who is married , has denied first-degree rape , sexual misconduct and third-degree assault and faces up to 25 years in jail if convicted .\ntommy died two weeks after suffering horrendous burns in the fireball . teresa sheldon , 38 , from dartford , kent , has appeared in court charged with murdering her son tommy . she is also charged with the attempted murder of another child who was also in the blazing ford fiesta .\njade ruthven , 33 , was sent a scathing letter demanding she stop posting pictures and statuses about her baby daughter . the anonymous author claims ms ruthven is ` p ***** g a lot of people off ' the letter claims to show what ` people really think ' about mother 's constant facebook updates . jade forwarded the letter to comedian em rusciano who shared it worldwide .\npolice have returned to the home of bill spedding for the third time this year . the 63-year-old repairman is a person of interest in the case of missing toddler william tyrrell . detectives spent just over an hour at the repairman 's house in bonny hills on the nsw north coast on monday afternoon . the recent visit comes as police revealed that they believe william may be alive . the three-year old was last seen dressed in a spider-man suit and playing in his grandmother 's yard in broad daylight in a quiet street in kendall last september .\nswiss martina hingis will make her comeback in the fed cup on saturday . she faces poland 's agnieszka radwanksa in her first singles match since 2007 . the 34-year-old was ranked no 1 in the world for 209 weeks in her prime .\naustralian cricketing legend richie benaud has died at 84 from skin cancer . benaud led his country in 28 of his 63 tests and never lost a series . he retired as a player in 1964 and became a commentator . the mail 's sports columnist ian wooldridge paid a tribute to the man in 2005 .\njordan spieth won the masters at augusta national on sunday . it was the 21-year-old 's first major title and his first major win . spieth was a four-time amateur champion before winning the masters . the us open champion is now the youngest winner of the masters since tiger woods in 1986 .\nkevin pietersen returned to nets for the first time since resigning for surrey last month . the 34-year-old arrived early for the session at the oval on monday . pietersen was pictured leaving the ground just before 2pm . surrey play oxford mccu in a three-day warm-up on april 12 .\ntesla in early 2013 was on the verge of bankruptcy , bloomberg reporter ashlee vance said in an excerpt of his biography elon musk : tesla , spacex and the quest for a fantastic future , which will be published may 19 . musk proposed that google buy tesla for $ 6 billion and promise an additional $ 5 billion in factory expansions . he also demanded that he be permitted to run tesla as a unit of google for eight years , or until tesla produced a third-generation car .\na masked gunman fired eight shots in a shopping mall in sydney 's west . the man remains on the run hours after police started the manhunt . wigram street in harris park was closed by police as the search for the gunman got underway . a nsw police spokeswoman told daily mail australia an arrest is yet to be made .\nhayleigh mcbay , 17 , pretended to dump her boyfriend david clarke via whatsapp at midnight . college student from elgin in moray , scotland , texted him : ' i do n't want to be with you any more ' but david replied : ` thank god you said it first so i did n't have to ' hayleigh then uploaded a screenshot of the conversation to twitter .\nchris christie is set to kick off a ` tell it like it is ' tour of new hampshire on april 15 . the potential 2016 presidential candidate was asked about his attitude at a town hall meeting tuesday . ' i really feel that you need to tone it down a little bit , ' said kindergarten teacher cheryl meyer . christie was careful to choose his answer calmly as cameras rolled .\nburnley winger george boyd is the premier league 's hardest working player . boyd has clocked up 210.5 miles on the pitch this season . the distance is the equivalent of running from turf moor to selhurst park . tottenham hotspur midfielder christian eriksen is second in the list .\nthis anzac day australians took advantage of the opportunity to play the century-old tradition of two-up . the game dates back to australia 's goldfields and the first recorded games are believed to have taken place in the late 1790s . it is legalised in few casinos in australia and across the country in pubs and rsls only on anzac day .\nrurik jutting appeared before a packed courtroom in hong kong on thursday . he is accused of the murder of two young indonesian women . their mutilated bodies were found in his apartment in november . jutts , 30 , returned to magistrates ' court after being deemed fit to stand trial . the former merrill lynch bank of america employee faces life in prison .\nkim jong-un is seen in pictures climbing north korea 's highest mountain . the jovial dictator allegedly scaled mount paektu near the chinese border . pictures show him smiling on the top at sunrise before visiting troops . he told troops at its peak that the climb was like ` nuclear weapons '\ndefense contractor flir systems inc. has agreed to pay $ 9.5 million to settle bribery charges filed by the securities and exchange commission . the thermal-imaging company earned more than $ 7 million in profits from sales influenced by the gifts . two employees in flir 's dubai office gave luxury watches to five officials with the saudi arabia ministry of interior in 2009 .\ntabitha anne bennett allegedly drove her daughter , 13 , to fight another girl , 14 , in new port richey , florida . she allegedly told the girl she was going to bring the girl to meet her and then encouraged them to fight . two bystanders recorded the fight on their cell phones . bennett was arrested and charged with child abuse , assault and battery offenses .\nibrahim anderson and shah jahah khan have pleaded not guilty to terror offences . the pair are accused of setting up a stall on london 's oxford street . they are alleged to have handed out leaflets about isis on the busy shopping street . the men , both from luton , will appear at the old bailey on may 15 .\n`` there was no choice ; the animals had to be destroyed , '' police say . the buffalo escaped from a farm in upstate new york on thursday . they swam across the hudson river . the chase took police officers from five jurisdictions . the herd was shot by `` snipers '' from the farm .\nnew book claims juan carlos had affair with german aristocrat corinna zu sayn-wittgenstein for a decade . author ana romero says he was so smitten with her that he considered divorcing his wife , sofia . final de partida , by romero , sold out within 24 hours of being published .\nski-tour company haute montagne has fulfilled some of the most expensive requests . guests asked for a live-in tailor to make their ski gear and two grand pianos . they also wanted a horse and carriage on stand-by 24 hours a day and six helicopters . bramble ski created a private ice bar for après cocktails in verbier , switzerland .\ncps dropped a prosecution against lord janner for the fourth time in 25 years . police have identified 25 people who claim the labour peer attacked them . one man has already instructed lawyers to sue him and leicestershire county council . several of those who claim to have been sexually abused say janner got to them through paedophile frank beck , a manager of leicester children 's homes .\nitalian coast guard : 8,480 migrants rescued in the mediterranean from friday to monday . save the children says a ship carrying 550 people capsized off the libyan coast . coast guard says it can not confirm such an incident . at least 480 migrants have died trying to reach italy since the beginning of 2015 .\ncrown princess mary , 43 , attended a remembrance ceremony in aabenraa . wore a chic black ensemble paired with grey accessories . the event marked the 75th anniversary of the occupation of aabanraa in 1940 . mary was met by representatives of the danish military .\njaye and matthew cox delivered their daughter annabelle at 20 weeks . she was born weighing just 290 grams and survived for just five minutes . the couple decided to give birth prematurely after scans showed she had developed a serious form of spina bifida . they contacted angel gowns - a not-for-profit organisation dedicated to turning donated wedding gowns into outfits for babies who die too soon . angel gowns delivered annabelles dress on the day she was born and ms cox dressed her so the family could spend time her before she was buried .\nchristine and timothy fradeneck were found dead at their home in eastpointe , michigan monday evening . timothy fradsen was arrested and charged with first-degree murder and child abuse . he told police he strangled his wife , 2-year-old daughter celeste and 8-year old son timothy iii to death with a usb cord . on wednesday , fradenesk told a judge he wants to plead insanity .\nsmall aircraft reported missing around 30 miles east of oban this afternoon . police and lifeboats scrambled to search for plane near loch etive in argyll . two people were on board the plane when it lost contact with ground control . the plane was travelling from central scotland to tiree , the most westerly island of the inner hebrides .\noffice furniture company steelcase designed the work space seating to provide privacy in an open office setting . the seating will be available for purchase in late august starting at $ 2,700 . brody features an led task light , privacy screen , foot rest , storage space and personal adjustable work surface .\nliverpool face aston villa in the fa cup semi-final on april 19 . lucas leiva missed three fa cup trips to wembley in 2012 with a knee injury . the midfielder is hoping to get his chance in the last-four clash . liverpool beat blackburn 1-0 in the quarter-final replay at ewood park .\nthe white house said today that bernard would depart after a state dinner next month held in honor of the japanese prime minister . the first lady said in a statement she was ` lucky to have such a talented individual on my team ' and ' i am equally lucky to have made a lifelong friend in jeremy ' bernard , 53 , is also the first gay man to hold the position . the white house did not name a replacement for bernard , who is also a former democratic operative .\ncoach driver was forced to perform a u-turn on a river slipway in dartmouth , devon . he was carrying a bus full of french tourists when he tried to board a ferry . the coach was turned back after it was found to be too big to be allowed to cross the river dart .\nrobert hardy is selling his collection of antiques in a # 100,000 auction . the 89-year-old actor is selling the items after deciding to downsize his home . he is selling items including a 3d diorama of the battle of agincourt and a longbow . mr hardy is also selling paintings , furniture , swords , flintlock rifles and crystal chandeliers .\nthe five-year-old grandson of famed college basketball coach jerry tarkanian has suffered a stroke , his family said . his parents said young jerry complained of pain in his legs and was taken to university medical center of southern nevada in las vegas at 4am on friday . danny and amy tarkanias said he 's undergoing testing and is showing signs of improvement .\nluigi costa is accused of killing his elderly neighbour in red hill , canberra in july 2012 . the 71-year-old allegedly stomped on terrence freebody 's head , cut his throat and stabbed him multiple times . forensic psychiatrist professor paul mullen examined costa after the attack and believes there was evidence of the accused 's state of mind declining in the lead-up to the incident and also during the event .\na muslim woman and her partner were racially abused on a sydney train . the woman berated the couple for wearing a black headscarf . stacey eden , 23 , recorded the incident and stood up for the couple . hafeez ahmed bhatti said he was shocked by the ugly incident . he thanked ms eden on facebook for her support . police are urging anyone who witnessed the attack to come forward .\nformer playboy model michelle manhart , 38 , was arrested at valdosta state university , georgia , last week after she refused to return a flag to demonstrators . the flag-walking demonstration involved three protesters . the university closed its campus on friday ahead of a rally that was expected to draw thousands of flag supporters . the demonstration sparked a backlash on social media and manhart was banned from the campus .\nan online campaign by woolworths has caused outrage on social media . ` fresh in our memories ' was launched just last week in the lead up to the anzac centenary . the campaign invited australians to upload images to remember those who fought for their country . the supermarket has since been forced to halt the campaign . it was branded ` disrespectful ' and ` disgusting ' by social media users .\ncalifornia 's drought is affecting other states as well as the rest of the nation . the drought has led to a rise in food prices in some areas , but overall prices are expected to rise this year . a strong dollar and a drop in oil prices also help farmers .\nplesaunce cottage in dormans park , east grinstead , was built in 1880s . it is one of the last surviving bungalows built on the design of victorian houses in india . the property has four bedrooms , four reception rooms and two bathrooms . historians are eager to put it forward for listing to protect its heritage . it has gone on the market for # 985,000 .\nbritain take on france in the davis cup quarter final at queen 's club . there will be a capacity of 7,000 for the tie but only 3,000 tickets will be available to the public . the rest will go to various organisations and governing bodies . andy murray has won the aegon title there three times .\nlaura alicia caldero claims she was sunbathing on private beach in playa del carmen . the 26-year-old was arrested after refusing to pay a fine of # 70 for using a palm tree . police say she was removed because she ` assaulted a group of private guards ' video footage of her arrest has caused outrage on social media .\nphil haste was issued with a penalty notice for failing to display his tax disc . the 60-year-old was told he had not shown a pay and display ticket in his car . he is now refusing to pay the fine that was issued in a torbay council car park . mr haste said he had a valid car parking permit on his dashboard .\nnew zealand 's gloriavale commune is a secretive christian community . residents wear blue uniforms and birth control is non-existent . elijah overcomer , 26 , and his wife rosanna , 29 , left gloriavale in march 2013 . the couple said they were ` blown away ' by the kindness of new zealand churches .\nmichael kimmel , 40 , was arrested after police say he was found under the influence while riding a horse on us 23 . kimmel dismounted and ran away wearing only a brown hat , jeans and boots . he was found on horseback again and resisted arrest , saying , ' i did n't do s *** , i was just riding my horse ' kimmel faces dui , fleeing or evading police , and other possible charges .\nkevin dixon killed dog tempa because he was worried it might bite a child . he took the akita-type dog for a walk to help his friend amanda hamer . but he then hit it seven times with an axe - killing the animal . dixon was convicted of causing the dog unnecessary suffering . he was given a suspended prison sentence and banned from keeping animals .\nengland bowled west indies out for 295 in their first innings . alastair cook and jonathan trott both out cheaply on day three . england lead west indies by 104 going into the second test . james tredwell took four wickets for england . jermaine blackwood scored his first test century for the west indies .\nsan antonio spurs team-mates kawhi leonard , matt bonner , patty mills and aron baynes have formed a band called spuran spuran . spurs official mascot the coyote also made a cameo appearance in the amusing music video . spurs are preparing to defend their nba title with a final match against new orleans pelicans .\nhans-wilhelm muller-wohlfahrt has quit bayern munich . the 72-year-old has been at the bundesliga club for almost 40 years . he claims the club 's medical department has been blamed for the 3-1 first-leg defeat by porto in the champions league . his son kilian , peter ueblacker and lutz hansel have also resigned . bayern say dr volker braun will support the team at matches .\ntwo black candidates were elected to the ferguson city council tuesday , tripling african-american representation in the st. louis suburb . the election came just over a month after a justice department report detailed a culture of racism and abuse among city officials , employees and police . the lone black incumbent councilman , dwayne james , was not up for re-election .\nformer england striker michael owen was speaking on bt sport 's fletch and sav show on saturday . owen said charlie adam 's 66-yard strike against chelsea was not worthy of goal of the season . adam , bobby zamora , wayne rooney and jermain defoe all scored last weekend . owen 's comments sparked a debate between his colleagues in the studio .\nfour-year-old james hayward had his toy gun confiscated at east midlands airport . the # 6 toy fires sponge darts and was packed in his hand luggage . security officers frisked and inspected the primary school child . the boy 's father phil has labelled the security checks ` ludicrous '\npm david cameron narrowly topped polls assessing who ` won ' the clash . he went head-to-head with six other party leaders in an unusual format . but pollsters refuse to predict whether it will be cameron or ed miliband . it is the closest and most unpredictable race since the 1970s .\nscientists in belgium say all sweet potatoes contain ` foreign dna ' agrobacterium bacteria in the crop exchanges genes between species . this makes sweet potatoes a ` natural genetically modified organism ' and humans have been eating it for thousands of years . this is the first instance of natural gmos to be found in a major crop plant .\nspanish priest belts out 1997 robbie williams classic while donning priest 's collar . father damian maria montes , 29 , from madrid , was appearing on spanish version of the voice . he claimed he turned to the church first as he wanted to ` make sense of life ' now the singing priest has been compared to italian nun sister christina .\n12-tonne double decker bus broke down on its way to the stagecoach depot in dover , kent . unfortunate driver was forced to ask passengers , colleagues and locals to give him a helping hand . around seven members of the public and bus company workers teamed up and managed to move the heavy bus .\nkeshwa chaca spans 90ft over apurimac river near huinchiri , peru , in the province of canas . it is the last of the handwoven rope bridges built by the inca kingdom in the andes . the bridge is rebuilt every june by local villagers using the same techniques as their ancestors .\nmind diet includes at least three servings of wholegrains and salad every day . it also includes an extra vegetable and a glass of wine . these ` brain-healthy foods ' lowered the risk of alzheimer 's by 53 per cent . for those that followed it moderately well , it lowered therisk by about 35 per cent , experts said . the diet is a hybrid of the mediterranean and dash diets .\nnelson felippe took a picture of a ` scene ' on a train platform . he then posted it on facebook , expressing his disapproval . the image has been shared more than 100,000 times in 24 hours . the post cleverly spoofs conservative attitudes . it seems felippes was in fact observing public transport safety regulations .\nduke and duchess of rothesay were invited to fit bungs to the casks . they were on a tour of the ballindalloch distillery in aberdeenshire . but they will have to wait around eight to 10 years to sample the single malt .\nroberto mancini wants to sign lucas leiva and alex song . liverpool midfielder leiva is on inter 's list of targets . alex song is currently on loan at west ham united . yaya toure and stevan jovetic both look set to leave manchester city .\none hundred years on , war widows are visiting the battlefields in gallipoli for the first time . the war widow were much younger than their returned servicemen husbands . they will be guests of honour at the gallipoli dawn service on saturday . among them is jean pockett , who experienced a little heart scare as she arrived in turkey on thursday . she 's one of 10 world war one widows who have travelled to gallipolis .\nmaria mcerlane and doon mackichan stayed at the datai in langkawi . the resort is in the middle of a ten million-year-old rainforest . it was designed by australian architect kerry hill . the hotel has 40 villas , restaurants and a spa alongside a creek .\nsome local businesses are staying open in baltimore to show their support for the city . others are closed , but some are still trying to rebuild after monday 's rioting . one cafe is offering free food and water to protesters . a business owner who was looted says she 's depressed that her business was destroyed .\njuventus are nine points behind lazio with seven games remaining . lazio have won eight games in a row in serie a . the italian champions face juventus on saturday at the juventus stadium . stefano pioli 's side have scored 18 goals in their last six games .\nliverpool are watching monaco midfielder geoffrey kondogbia . france international has impressed in europe and ligue 1 this season . real madrid , manchester united , juventus and paris st germain were all keen on the 22-year-old . liverpool remain keen on bringing danny ings to anfield from burnley .\nfind my phone is now available on google 's search engine . it works with all android phones that have the latest google app installed . users can search for a phone by searching for ` find my phone ' in the address bar . a map appears as the first result with a message asking the user to sign in again to confirm their identity . the phone 's location is shown and clicking ` ring ' will remotely call the handset . google 's latest tool ca n't lock the missing phone , or erase its data .\nthe slants , an asian-american band , sought to protect its name . david frum : the u.s. patent and trademark office denied them trademark registration . he says the court issued a disturbingly racist decision . frum says the ruling gets the first amendment wrong .\nanarda de la caridad perez friman , 37 , found dead with partner and two children . john joseph shannon , 31 , and their six-week-old baby found dead in gibraltar . police believe perez frima was suffering from post-natal depression . she is said to have stabbed her partner and the two children before taking her own life .\njason gavern was fighting for the 50th time as a professional . anthony joshua dropped him twice in the second round and again in the third . joshua was returning from a five-month lay-off after suffering a stress fracture in his back . the fight was waved off in newcastle after the third round .\ndunkin donuts ' new spring menu contains five new food options , including two new flavors of its cheesecake square donuts . the pretzel roll chicken sandwich contains a whopping 640 calories , almost a third of your recommended daily intake of salt . the southwest supreme bagel contains 380 calories and 890mg of salt - which is 37 per cent of your daily intake . the only ` healthy ' option is a 210-calorie steak and cheese wrap .\nrobert durst appeared in federal court in new orleans , louisiana on tuesday and pleaded not guilty to a new charge of gun possession . he was arrested last month on suspicion of the 2000 murder of his friend susan berman . it 's believed that durst killed berman because she was about to speak to investigators about the 1982 disappearance of durst 's first wife kathleen mccormack .\nrangers beat hearts 2-1 in the scottish championship on easter sunday . kenny miller and haris vuckic scored for the home side at ibrox . lee mcculloch was sent off for rangers for fouling osman sow . stuart mccall says mcculloch apologised to him and the players after the incident .\nlance armstrong admits groups such as wada , usada and others are owed an apology for his offences . the former cycling champion admitted using performance-enhancing drugs . wada director general david howman said this week that he was disappointed armstrong had n't apologised . armstrong initially declined comment on howman 's remark but then revealed his attempt to meet him in 2013 .\nswansea city drew 1-1 with everton at the liberty stadium . seamus coleman was fouled by marvin emnes . the everton defender scooped the ball with his hands . referee michael oliver gave a penalty to jonjo shelvey . roberto martinez felt coleman should have been awarded a free-kick .\nkendall and baylee are non-identical twins , meaning they have different skin colours . their father , curtis martin , is half-jamaican , while their mother is white . normally , you would expect both to inherit a mix of black and white genes . but baylee has inherited a set of genes for white skin , while kendall has genes that code for black .\nfootage has emerged of two separate houses being swept away by floodwater . one house was filmed as it was carried along a street in dungog . another was filmed near lake macquarie , west of newcastle . more than 20 people have been rescued from the flooding . 215,000 homes and businesses are without power .\nportugal side are unbeaten in the champions league this season . they beat monaco to win the trophy in 2004 but have struggled since . julen lopetegui has brought in oliver torres and cristian tello . ricardo quaresma scored twice as porto beat bayern munich 3-1 .\nrafael nadal lost to fabio fognini in the third round of the barcelona open . the world no 4 was looking for his ninth title on the catalan clay court . fognino will now face pablo andujar , who beat feliciano lopez . defending champion kei nishikori beat santiago giraldo in straight sets .\naaron hernandez given prison number w106228 as he begins life in jail . he is being held separately from other prisoners and is on suicide watch . hernandez was found guilty of murdering odin lloyd on wednesday . he was caught on camera smoking marijuana on the night of the murder . hernandez smoked the hallucination-inducing drug in marijuana cigarettes . sources said he was using the dangerous drug for at least a year before the victim was shot dead .\nthree-bedroom apartment in knightsbridge , london , on the market for # 575,000 . but the ` bargain ' property comes with a catch , it has just three years left on the lease . the cost would work out at # 191,000 per year , or # 15,000 a month . but if any buyer decides to extend the lease , the property could be worth upwards of # 6 million .\njoe root scored 118 not out on day three of the second test against the west indies . england captain alastair cook was out for 76 on the third day in grenada . root has now scored six test centuries for england . england ended day three on 373 for six , a lead of 74 . moeen ali and ben stokes were both out for eight runs .\nas of friday , 142 people have tested positive for hiv in rural indiana . the number of new cases is growing , the centers for disease control and prevention says . the outbreak has been ongoing since mid-december . health leaders are working to control the `` severe outbreak '' among iv drug users .\nhillary clinton made her first official campaign stop in iowa on tuesday afternoon . she stopped at a coffee house in le claire , iowa , where she was greeted by residents . clinton 's black van started at her palatial chappaqua , new york home and reached monticello , iowa as of tuesday afternoon . the ` scooby ' van , named as an homage to the scooby-doo cartoon and its ` mystery machine ' vehicle , is an upgraded chevrolet 1500 .\nloushanna craig from birmingham was on holiday with husband shawn . couple were on three-day break when mr craig 's wallet was stolen . mrs craig 's biometric id card was stolen and she had to return home . but ryanair staff refused to let her fly home over fears she was an illegal immigrant . she was stopped at the tenerife south boarding desk and police were called .\nthe merfin is a rubber monofin that mimics the experience of swimming like a mermaid . it is the brainchild of australian freediver kazzie mahina , 37 . the product has taken off around the world and is now available to buy in the uk .\ncarpet was being replaced at the dome of the rock , in jerusalem , israel . but when it was lifted it revealed previously undocumented ancient floor designs . scholars believe they could point to where the ark of the covenant was buried . but they did not get the chance to document the floor before it was covered . it has sparked a war of words between muslim authority and israeli archaeologists . the israeli housing minister has urged an immediate halt to the work .\njohn mccain said secretary of state john kerry ` must have known ' what the perimeters were for a long-term accord ` and yet chose to interpret it in another way ' the republican lawmaker said he had ` sympathy ' for iranian ayatollah ali khamenei , because he ` tried to come back and sell a bill of goods ' the white house said it was ` naïve and reckless ' for mccain ` to believe every word of the supreme leader 's political speech '\ntamoxifen , a hormone drug , and two cups of coffee can slash risk . women who took the drug had half the risk of their cancer returning . caffeine causes cancer cells to divide less frequently and die more often . study was carried out by british and swedish researchers at lund university .\nki sung-yueng opened the scoring for swansea in the 18th minute . bafetimbi gomis doubled the home side 's lead in the 37th minute with a spectacular overhead kick . paul mcshane pulled a goal back for hull five minutes into the second half . david meyler was sent off for the tigers two minutes later . gom is then on target in injury time to secure the three points for the swans .\nrory mcilroy recorded a one-under-par 71 on the opening day of the masters . the world no 1 is four shots off the clubhouse lead at augusta . mcilory is seeking to become just the sixth player in history to win all four major titles .\na new study says acetaminophen reduces not only pain but pleasure , as well . the drug is the main ingredient in tylenol , most forms of midol and more than 600 other medicines . the study found that the drug blunted joy as well as pain .\ndavid nellist , 38 , banned from keeping animals for five years by magistrates . he was caught on cctv punching , kicking and throwing his dog across the room . neighbour heard young spaniel cross called coco ` screaming ' in the middle of the night . nellists was sentenced to two months in prison , suspended for 18 months .\njames houlder fell ill while on holiday at the sonesta beach resort in sharm el sheikh . he and his partner vicki hood were left with severe diarrhoea and sickness . mr houlder , 30 , has since developed irritable bowel syndrome -lrb- ibs -rrb- he says he is still suffering from the symptoms nine months on .\nthe former pm made an appearance at a low-key private fundraising dinner for 15 labour target seats in south london . but despite the fact that blair has a record of three general election victories , only one shadow cabinet minister , chuka umunna , could be bothered to attend . blair name-checked ed miliband only once , devoting his speech instead to his own achievements .\na mass brawl broke out at a bar opening inside the resorts world casino in queens , new york . video of the fight shows a crowd of people erupting from a bar area , punching , kicking , shouting and re-purposing casino decorations as weapons . police said that four people were arrested , and will be charged in due course .\npremier league clubs have failed to reach the last eight of europe 's elite competitions . england are currently ranked second in europe , behind germany . but if italian clubs continue to perform well , they could overtake england next season . that would see england reduced to three champions league places . serie a would take an extra place from the premier league . england could slip to fourth in europe next season , with italy ahead .\nthe university of michigan will show `` american sniper '' despite objections . more than 200 students signed a petition asking the school not to show the movie . some students believed the movie 's depiction of the iraq war reflected negatively on the middle east . the movie will be shown as part of umix , a series of social events for students .\na baggage handler was pulled from the cargo hold of an alaska airlines flight from seattle to los angeles on monday . the airline said the man had fallen asleep inside the plane 's cargo hold . the pilot turned back to seattle 14 minutes into the flight when he heard screaming from the cabin . the worker was taken to a hospital as a precaution but was released after passing a drug test .\nukip claims 16 and 17-year-olds are being brainwashed with pro-eu books . party says they are being exposed to ` propaganda ' from brussels . party 's campaign chief patrick o'flynn says they should not be allowed to vote . comes as ukip accused of performing another u-turn on immigration policy .\nformer england captain alec stewart keen to hear more about the newly-created role of england cricket director . surrey director of cricket has had no contact with ecb over role . andrew strauss and michael vaughan also linked with role . new role will be introduced following departure of paul downton .\nian botham tempted to bet on jimmy anderson breaking his wicket record . anderson 's wife daniella and daughter ruby luxe were watching from the stands . ben stokes frustrated twice when he thought he had dismissed jermaine blackwood . jos buttler took five catches for the first time in a test innings .\ncle ` bone ' sloan , 45 , was crushed by suge knight 's truck in january . he was left with broken bones and wounds to his head , knees and shoulder . but he told the court on monday that he does not remember the incident . knight is accused of murdering terry carter , 55 , and trying to murder sloan . sloan said he was only there because he had been subpoenaed . he added : ` i 'm no snitch . i will not be used to send sugeknight to prison '\nivan novoseltsev proposed to girlfriend katerina keyru on the pitch . the fc rostov defender got down on one knee to ask his partner to marry him . the 23-year-old proposed after his side 's 1-0 win against torpedo moscow .\nelizabeth ` elle ' edmunds allegedly faked having terminal cancer in 2014 . the 31-year-old mother established an online fundraising page claiming she had ovarian cancer and seeking money for medical treatment . police allege she used a falsified doctor 's certificate to raise about $ 2500 from her page . ms edmunds told a court she was put up to the act by her violent partner john heagney . she was issued a court notice this week for the offence of two counts of obtaining benefits by deception .\nthe just group have refused to back down on their stance in using angora wool . morrissey has written a letter to the australian retailer imploring them to stop using the controversial fur . the singer has banned meat products from being sold at the sydney opera house during his upcoming shows there . he will be performing four sold-out shows as part of the sydney vivid live festival in may . peta australia has been petitioning the just group to reconsider their position .\ntwo firms exposed by the daily mail as selling private information are to be probed by the industry watchdog . b2c data sold our undercover reporters the financial data of 15,000 people . the second firm , data bubble , supplied our team with health details on 3,000 patients .\nstudy by university of montana has found that eating fast food after a workout may be just as beneficial as dietary supplements . researchers found that during recovery periods between periods of exercise , it did n't matter what food was eaten . performance remained the same after resting for several hours . but levels of glycogen - used by muscles as ` fuel ' - were actually slightly higher after fast food was consumed .\nengland 's joe root becomes second fastest test runs scorer after alastair cook . stuart broad fails to score a run in third test against india . marlon samuels gives ben stokes a salute after dismissing him . peter moores and paul farbrace fly straight from barbados to dublin .\nabu ghraib and other cases of western abuse are being used by isis to support its sectarian narrative , writes h.a. hellyer . he says lack of accountability in aftermath of u.s. intervention in iraq paved the way for abuses . heller : isis is sending a strong message that its current fight in iraq is about reversing longstanding injustices against sunnis .\nandres iniesta was praised for his assist against psg in the champions league . the spaniard set up neymar for the opening goal in the 2-0 win on tuesday night . but iniesta admits he is unhappy with his form for barcelona this season . barcelona face espanyol in the la liga derby on saturday .\nkieran lee gave the visitors the lead with a 36th minute header . yann kermorgant equalised for the cherries with 20 minutes remaining . matt ritchie put the home side ahead with an 85th minute free kick . simon francis was sent off for bournemouth with 10 minutes remaining . chris maguire scored a late penalty to salvage a draw for the owls .\nflakka can be injected , snorted , smoked , swallowed or taken with other drugs . it is usually made from the chemical alpha-pvp , the synthetic version of cathinone . cathinone is the same type of chemical that is used to make bath salts . flakka resembles a mix of crack cocaine and meth and has a foul smell .\nstuart mccall has learned to tolerate his players being booed by fans . rangers captain lee mcculloch was booed for an error against raith rovers . mccall hopes mcculloch will be the last player to get booed . rangers face hearts at tynecastle on saturday .\ngaby tillero and greg ensslen bought the home in central city , new orleans , almost two years ago . they dismantled the home , moved it to the freret neighborhood and spent seven months renovating it . the couple used salvaged materials and respecting the home 's original floor plan .\nraheem sterling was told off by brendan rodgers for answering him back in a tv documentary in 2012 . the 20-year-old england international has attracted interest from real madrid , bayern munich , manchester city and arsenal . sterling 's current # 35,000-a-week deal at liverpool has two years to run at the end of this season . the winger has put off contract talks until the summer .\nsheffield wednesday and huddersfield drew 1-1 in the yorkshire derby on saturday . sergiu bus opened the scoring for the hosts in the 86th minute . ishmael miller equalised for the visitors with a minute to go in normal time . the result leaves hudderfield without a win in their last seven games .\nfloyd mayweather takes time out of training session to pose for picture with gladys knight . motown legend posted picture on twitter with mayweather during training session . mayweather will go head-to-head with manny pacquiao in the fight of the century on may 2 .\ndisgraced former mayor lutfur rahman is said to have played the race card . deputy oliur rahman said there is deep seated racism in tower hamlets . he said : ` if people say there is no racism in london then they are mistaken ' comments were at odds with a devastating legal ruling that condemned his predecessor for bribery and ballot fraud .\nthe body cam vision was captured at a known hoon hotspot in yatala on the gold coast . it shows police saving several victims from inside a flipped holden commodore . but rather than gratitude , some friends of the injured can later be heard threatening police . a 20-year-old man has been charged with a medley of offences after he flipped the vehicle on saturday night . a 19-year old was hospitalised with a broken neck , along with the driver , 20 , and another 17-year - old passenger .\nreading face arsenal in the fa cup semi-final at wembley on saturday . the championship club will swap the madejski stadium for wembley . lady sasima srivikorn is co-chairman of reading with sir john madejsk . she is also the first female on the thai airways board .\n51-year-old mother fiona found intruder standing over her daughter . she pushed him from her perth home on thursday night . the man had his hand raised over her young daughter 's head . fiona said seeing her child in danger gave her a boost of courage . she fell and bashed her face on the doorway .\nthe internet corporation for assigned names and numbers , or ` icann , ' is looking to crack down on a canadian company using the new ' . sucks ' domain name . kevin spacey is reportedly among celebrities paying out to have their name removed from one of the ' . sucks ' domains which opened on 30 march . taylor swift has also had to spend defensively in the past to remove her name from ' . porn ' and ' . adult ' domains attacking her .\ntransavia france is selling snacks with airline tickets for a limited time . packages of crisps , gummy bears and cereal bars are being sold . customers who buy one will find a voucher code for a flight to europe . flights to barcelona , dublin or lisbon are guaranteed to be cheap . the promotion ends on april 21 .\nthe actress has vowed to live on just $ 29 worth of food for a week . she is taking on a charity challenge aimed at raising awareness and funds for new york 's food banks . the 42-year-old posted a picture of her grocery shop on her twitter account yesterday afternoon .\nreal madrid beat rivals atletico madrid 1-0 in champions league . javier hernandez scored a late winner to send real madrid into the next round . the on-loan mexican striker celebrated his winner alone but thierry henry said he should have thanked cristiano ronaldo for his assist . former arsenal man henry said ronaldo is the worst at celebrating late goals .\nhassan munshi and talha asmal are thought to have fled britain for syria . the 17-year-olds , from dewsbury , west yorkshire , have not been in contact with their families for several days . they are believed to have boarded a thomas cook flight from manchester airport to dalaman in turkey on march 31 . the boys ' families are ` in a state of profound shock ' and deeply worried about the safety of their ` ordinary yorkshire lads '\nmelanie diane gilmore , 49 , has been reunited with her mother after 49 years . zella jackson price , 76 , gave birth at homer g. phillips hospital in st. louis in november , 1968 . she was told shortly after delivery that the infant had died . but gilmore was alive and for an unknown reason adopted by another family . gilmore 's children helped her find her mother through a name given to gilmore through her adoptive parents . the pair did a dna test and confirmed price was gilmore 's mother .\nsheila secker , 78 , had not used her pay-as-you-go phone for chargeable services for months . her son gave her the phone as a present , but she had not made any calls . she collapsed and died in hospital after vodafone cut off her number .\nresearchers from the university of alberta in canada claim to have settled the debate once and for all . study finds cracking is caused by the rapid formation of a gas-filled cavity within a slippery substance called synovial fluid . a knuckle cracks in less than 310 milliseconds and water rushing together causes a white flash .\nkellie maloney said a vote for ukip would be ` quite wasted ' former boxing promoter said ukip supporters should vote tory . she said : ` if we want to stop labour and the snp i think you 've got to vote tory ' she praised ukip leader nigel farage , adding : ` you ca n't knock him '\nfirst lady appeared on the tonight show on thursday night . she and jimmy fallon performed a routine called the evolution of mom dancing part 2 . the segment was a follow-up to one they did in 2013 . it was to celebrate the fifth anniversary of her lets move ! program . she told fallon how she gets her daughters to eat healthy food .\nwrecks of two ships have been revealed in the shallow waters of the great lake after ice-melt in the manitou passage . the james mcbride and rising sun were discovered by the u.s. coast guard during a routine helicopter patrol . the lake is home to dozens of shipwrecks due to the unpredictable weather on the lake .\nbryan stow , a san fransisco giants fan , was attacked outside la dodgers ' stadium . the father-of-two was left in a medically induced coma for several months . louie sanchez and marvin norwood were jailed for eight and seven years respectively . mr stow was awarded $ 18 million compensation but has not received any cash due to legal delays .\nmohammed dahbi ordered kassie thornton and christy spitzer to stop kissing in the back of his cab . he also called them ` b ***** ' , ` c **** ' and ` whores ' when they refused to pay the fare . judge ordered him to pay $ 10,000 in damages and $ 5,000 civil penalty .\nben flower was sent off for punching st helens ' lance hohaia in the super league final . the wigan prop was handed a six-month ban for the incident . flower will return for wigan against warrington on thursday . shaun wane says he wants flower to be ' a bit more aggressive '\nmore than 10,000 twitter accounts were suspended over 24 hours last week . most were linked to isis militants or supporters of the terror group . twitter confirmed that the accounts were being used to issue threats . spokesman said the cull was prompted in part by ` large number of reports '\nventus x is designed to let geeks continue their gaming adventures without working up a sweat -- on their hands at least . the mouse has a built-in honeycomb grill to let the skin breathe . it also has a rugged coating so sweaty gamers can continue to the accessory . the device costs $ 50 -lrb- # 34 -rrb- via gaming hardware websites .\nkristopher hicks , now 27 , was on his way home from a night out in bath , somerset . he was in a taxi driven by michael young , 56 , five years ago . mr young had mistakenly believed mr hicks was planning to ` do a runner ' driver decided to drive him back to rank in bid to teach him a lesson . when mr hicks objected , the driver continued on for almost a mile . mr hicks jumped from the vehicle while it was travelling at more than 20mph . he suffered devastating brain injuries , developed epilepsy and now requires round-the-clock care from his mother .\nuk workforce at another record high with 31 million people in work , figures show . pm warns recovery would be ` put at risk ' by a ` stitch-up ' between labour and snp . comes after ed miliband and nicola sturgeon clashed in a tv debate last night .\neintracht frankfurt forward alexander meier has been ruled out for the season . meier will have surgery on his patellar tendon on tuesday . he had scored 19 goals in the bundesliga this season . bayern munich duo arjen robben and robert lewandowski are also out .\nnorthampton winger george north has been ruled out of their game against clermont auvergne on saturday . the wales and lions wing has been sent to see a neurosurgeon . north was knocked unconscious when struck by nathan hughes 's knee as he was scoring a try at franklin 's gardens last friday night . the 22-year-old has suffered three head injuries in two months .\nnetflix streamed its first season of `` daredevil '' friday morning . the show stars charlie cox as blind attorney matt murdock . the early word is good . 94 % of critics have given it positive reviews . the series is set in new york . it is expected to be a hit .\nfloyd mayweather vs manny pacquiao weigh-in tickets went on sale at 3pm on friday . the mgm resorts box office was said to be overwhelmed with calls . one ticket for the mega-fight sold for $ 128,705 -lrb- # 85,508 -rrb- on stubhub . tickets for the may mega-bout sold out within a minute of going on sale on ticketmaster on thursday night .\nmick tabone first came across the 5.2 metre crocodile in 1989 and spent the next six months setting up traps for the creature . the crocodile was captured after he was found stealing a farmer 's cattle . mr tabone would sit on the crocodile 's back and chatted to him for 20 years . the farmer said he never felt in danger and never felt unsafe with the crocodiles .\nmark selby beat gary wilson 10-2 in the china open final . the world no 1 won the best-of-19 showpiece in beijing . selby won his sixth ranking title and # 85,000 in prize money . the 31-year-old overcame neck pain earlier in the tournament .\nlife spans of women aged 65 , 75 , 85 and 95 fell in 2012 - first time since 1995 . by 2013 , average 75-year-old woman could expect to live another 13 years and five weeks . for a woman aged 85 , the expected span was six years and 42 weeks -- two and a half months less .\nandrea mcveigh , 44 , was knocked down by a cyclist in south london . she suffered two three-inch gashes to the middle of her forehead . the social media manager was left with facial and hand injuries . met police have issued cctv footage of a cyclist they want to speak to . the rider fled the scene , chased by the 44-year-old 's husband .\na new policy by the american pharmacists association discourages members from participating in executions . the group says such activities are `` fundamentally contrary to the role of pharmacists '' the group acted because of increased public attention on lethal injection , a spokeswoman says . the new declaration aligns with other professional medical organizations .\nfemale stars including nancy dell ` olio , josie gibson , jamelia and susanna reid have all stepped up to the plate for good morning britain 's initiative . male contenders include piers morgan and richard madeley . according to a survey conducted by the itv breakfast show , women take an average of six selfies before posting one online and men take four .\nliverpool defeated newcastle 2-0 in their premier league clash on monday . john carver 's side are just nine points above the relegation zone . newcastle boss carver insists his side have ` got six cup finals ' left to play . the magpies face tottenham at st james ' park this weekend .\nfishermen and farmers are killing seals to protect fish stocks . the practice is legal in scotland but not in other parts of the uk . campaigners say that the animals are being left to fend for themselves . they have called on consumers to be more careful about buying salmon .\ntwin 18-month-old boys were pronounced dead at a hospital after being pulled from a canal in arizona . the toddlers are believed to have fallen in the water accidentally at 9.45 am on friday in yuma , arizona . detectives investigating the case believe the boys ended up in the canal by accident and do n't suspect foul play .\nantonia kidman 's ex-husband angus hawley died of a suspected heart attack in new york on saturday . he is believed to have collapsed after returning from a swim . his brother david says he does n't ` understand ' the death of his fit and healthy brother . mr hawley was a father to four children , aged 16 to 12 , with nicole kidman 's sister antonia . he was married to prue fisher for two years before their divorce in 2007 .\nliverpool face blackburn in the fa cup quarter-final on wednesday . steven gerrard will miss the replay because of a suspension . robbie fowler says liverpool 's players must not focus on gerrard . the reds legend also says raheem sterling should stay at anfield . click here for liverpool transfer news .\ndanny lennon has left his role as scotland under 21 manager . the scottish fa confirmed the former st mirren boss has left the role on tuesday . lennon will reportedly take over at alloa athletic until summer of 2016 . paddy connolly has been in temporary charge of the wasps since barry smith resigned .\nmackenzi sue-rose miller , 21 , was charged with dui manslaughter and dui while causing injury after allegedly hitting and killing trinity bachmann , 13 , on february 28 . trinity was sitting in the road after an argument with her mother when she was killed , police said . miller 's blood alcohol content levels were 0.114 and 0.110 , while florida 's legal driving limit is 0.08 .\nmake-up artist abi gordon-cody creates gruesome injuries using special effects . her instagram posts of severed fingers , rotting flesh and impaled limbs are not for the squeamish . abi , 26 , from droitwich , worcestershire , works as a special effects make-up .\nmarc tierney has been forced to retire from football after a long-term ankle injury . the 29-year-old left-back fractured his ankle playing against yeovil in september 2013 . tierney was set for a call up to the republic of ireland squad prior to the injury .\nbernard ` barry ' freundel was charged with spying on dozens of women who changed in their synagogue 's ritual bathroom in october . he pleaded guilty to 52 misdemeanor charges of voyeurism in february and is set to be sentenced on may 15 . his wife sharon freundels gave a speech at a jewish school in maryland on march 22 which alludes to her family 's scandal . she said she has become an expert in ptsd and that research has been ` therapeutic '\nearly teardowns reveal samsung used more of its own chips to power the new galaxy s6 smartphone than it did for the predecessor s5 . the findings suggest a deeper loss of business for qualcomm in the new generation of samsung 's flagship handsets than anticipated previously .\na newspaper reporter asked about a couple 's name coincidence . burger king got wind of the story and offered to pay for their wedding . joel burger and ashley king will wed in july . the couple met as students in new berlin , illinois . . `` we are very appreciative of burger king , '' says king .\nin a typical day , natalie swindells will have two bowls of rice krispies with milk for breakfast , followed by a slice of bread and butter for lunch , and two bowls for dinner . the bank worker stopped eating most other foods from the age of two . she now believes overeating causes more health problems than having a very restricted diet like her own .\nthree australian stylists have made the top 10 in hollywood reporter 's power stylists list . the women are responsible for styling a-list aussie stars including cate blanchett and margot robbie . they also include naomi watts ' stylist jeann williams and former fashion editor elizabeth stewart .\npolice say they have arrested a man and a woman on suspicion of planning a boston-style attack . the suspected target , according to a terrorism researcher , was a bike race planned for friday . the researcher says the couple had ties to radical islamist circles in the frankfurt area .\nreanne evans is aiming to become the first women to qualify for the world championships . she faces former champion ken doherty in qualifying on thursday . evans has won 10 women 's world titles . the 29-year-old from dudley admits she is dreaming of making the main draw .\nengland face west indies in a warm-up game on monday . liam plunkett is fighting for a place in the test side with chris jordan and mark wood . the 29-year-old wants to use his pace to lead england to victory . plunket has recovered from a minor ankle complaint .\ngang used three tractors and trailers to dump the industrial waste in walsham-le-willows . police officer describes the case as the worst flytipping he 's seen in 28 years . the rubbish includes materials used in the carpet and veterinary industries .\nchelsea can wrap up the premier league title with two more victories . jose mourinho has hit back at claims that his side are boring . chelsea are preparing for wednesday night 's trip to leicester city . didier drogba has hit out at critics with video of team-mates completing a ` bin challenge '\nkurt cobain 's daughter frances bean cobain is a producer on her father 's documentary kurt cobain : montage of heck . she has revealed she 's not a big fan of her dad 's music . the 22-year-old was just 20 months old when he committed suicide .\nmost of us rely on burgers or mince when cooking beef at home . research by asda found that rump , fillet and t-bone are most popular cuts . sirloin , topside and fillet are best saved for the roasting pan . chuck flank , rib-eye and skirt on the grill and when stewing go for brisket , shoulder and ribs .\nviv nicholson , 79 , from west yorkshire , won # 152,319 in 1961 with husband keith . the win , on a football betting pool , would be worth up to # 5million today . couple splurged cash on flash cars , designer clothes , holidays and partying . but tragedy struck when mr nicholson died at the wheel of his jaguar in 1965 . mrs nicholson was declared bankrupt , as tax authorities reclaimed most of her husband 's wealth . she managed to reclaim some of the money after a lengthy legal battle , but lost it all again from poor investments on the stock market . she later suffered a stroke in 2011 , which her son said led to the onset of dementia , and moved into\nthousands of people lined the streets of dereham to cheer on the light dragoons . more than 250 men and women from the reconnaissance unit marched through the town . the regiment is moving from robertson barracks in swanton morley to catterick , north yorkshire , after 15 years .\npaige vanzant was never in trouble as she dominated felice herrig . vanzants was declared the winner by lop-sided scores of 30-26 , 30 - 26 and 30-27 . the 21-year-old is only in her second fight in the ufc .\nlandon carnie and his twin sister lorie were initially thought to have died when the first flight of operation babylift crashed minutes after take-off . the 17-month-old twins were found huddled together in a rice paddy more than a day after the crash and later taken to their adoptive parents in the u.s. . now 41 , landon has visited the crash scene and is thought to be the first child survivor to return to the countryside .\nphotos of people trying to escape the communist regime have been found . they were taken by the stasi - east germany 's secret police . the pictures were used as evidence in show trials against those caught . they also were used to train border guards and trainee agents . the images have now been compiled into a book .\nsheila elkan , 84 , lives in the home that featured in 1970s tv series the good life . great-grandmother-of-five has lived at the home in hillingdon , north-west london , since 1986 . she said : ' i think cameron is the best man to give the good life ' comments come after pm promised to deliver ` the greatest sunshine ' of a job , home , tax cuts and a secure retirement .\nthe 2015 mtv movie awards were held sunday . amy schumer hosted the show . there were plenty of highlights and misfires . the rock gave a great speech . but shailene woodley 's speech got away from her . the best moment was robert downey jr. accepting generation award .\ncarlos tevez and leonardo bonucci scored in 2-0 win over lazio . juventus move 15 points clear of lazio at top of serie a. lionel messi scores his 400th goal for barcelona against valencia . paris saint-germain beat nice 3-1 to go top of ligue 1 .\nwatford beat millwall 2-0 in the championship on saturday . matej vydra scored a stunning volley to put the hornets in the lead . adlene guedioura added a second goal shortly after the break . millwall are now just one point above the relegation zone .\nthree anonymous artists built a 4-foot-tall plaster bust of edward snowden in brooklyn 's fort greene park early monday morning . the artists spent six months and $ 30,000 working on a life-like effigy of the 31-year-old whistle-blower who has been living in exile in moscow since 2013 . the statue was removed by noon and is being held at brooklyn 's 88th precinct pending an investigation .\nphotographer jeffrey milstein shot a fascinating project documenting black boxes , shedding light on what happens to the devices after tragic crashes . the boxes are often severely burned and damaged in crashes , however some are pulled from the wreckage relatively unscathed . despite the name , the boxes are usually red to help rescuers spot them among the wreckage of crashed planes and helicopters .\ndavid templeton criticised the training methods of ally mccoist and kenny mcdowall . rangers boss stuart mccall has been less than impressed by the player 's comments . mccall also warned lee mcculloch he could lose his place in the starting xi . the defender has been given a two-match ban after being sent off against hearts .\nthe warmth of a sun has long been thought to be a key ingredient to life . but ` rogue ' planets that wander the stars could still harbour extra-terrestrials . this is according to sean raymond , an astrophysicist with the laboratoire d'astrophysique de bordeaux in france . he says a planet needs to keep warm for liquid water to form . without the sun , this heat would have to come from its interior .\nmarina yamkovskaia , 39 , from tambov , russia , specializes in creating life-like bird dolls . she recycles old fur from hats , collars or coats and sticks it to rigid skeletons . it takes her around two days to produce just one doll .\npensioner david atherton , 65 , was about to put his meal in the oven . he caught sight of the three-foot california king snake hiding inside . atheron scooped up the reptile and placed it in a plastic food recycling box . his sister margaret , 73 , who has a phobia of snakes , was left distressed .\nrichie benaud has died aged 84 in a sydney hospice after battling skin cancer . he was a veteran of 63 test matches and was one of australia 's most influential cricketers . benaud played a pivotal role in the formation of world series cricket in the 1970s . he died peacefully in his sleep surrounded by his wife daphne and family members . benaud was born in penrith in western sydney in october 1930 .\njonathan trott returned to the england set-up on thursday night . the batsman has been out for a year with a stress-related illness . dr steve peters worked with trott to help him recover . peters has worked with liverpool , ronnie o'sullivan and the england football team in recent years . he says trott will make a successful return to test cricket .\nprime minister pictured eating hotdog with cutlery during a visit to dorset . bizarre dining etiquette almost certainly designed to avoid repeat of miliband 's bacon sandwich . old etonian insists he has never tried to hide his privileged upbringing . he says he will not change the way he acts or speaks to win voters .\ndavid cameron and nick clegg among those seen posing for selfies on campaign trail . ed miliband and nigel farage also seen posing with fans in kent and essex . tory mps told to pose for ` selfies ' as often as possible to increase exposure . campaigning for the election has been dubbed the ` selfie election '\nbernie ecclestone confirms azerbaijan will stage european grand prix . the race will be held in the capital of baku , despite human rights concerns . human rights watch report on azerbaijan for 2015 was damning . ecclestones insists f1 has done its due diligence on azerbaijan .\nbrooklyn nets beat portland trail blazers in only game on nba schedule . lamarcus aldridge and others left home for game postponed by bad weather . brook lopez scored 32 points and nine rebounds for the nets . deron williams added 24 points and 10 assists for the brooklyn nets .\nthe filipino boxer wrote and recorded lalaban ako para sa filipino for his walk-out music when he fights floyd mayweather . us talk show host jimmel kimmel has performed it on his live show . the tune is dedicated to pacquiao 's fellow filipinos and with footage after the devastating typhoon haiyan in the video .\nthousands of palestinians are trapped in the devastated yarmouk refugee camp . activists say isis and the al qaeda-affiliated al-nusra front took control of 90 % of the camp . the unrwa estimates 18,000 civilians remain trapped in yarmouk .\na pit bull named nina louise went missing in bennettsville , south carolina , in december 2013 . months of searching and a $ 500 cash reward proved fruitless . but this past saturday , the dog was rescued from a cockfighting compound and returned to her owners . she had just given birth to ten pups .\na man has paid $ 4000 for a written apology in the sky over brisbane . the aerial apology was splashed across the city 's clear blue sky on monday afternoon . it was followed by a love heart and two crosses for kisses . locals have jumped onto social media to question who the message was directed at .\na lawsuit filed by four sexual-assault victims wants to stop the practice of sexual assault allegations within the military being handled by commanding officers . the complaint alleges some of the most disturbing content is found in the songbooks of the 55th , 77th , and 79th fighter squadrons of the air force . former tech . sgt. jennifer smith , who said she was sexually assaulted by a fellow airman in iraq , brought forward the songbook and she had filed an administrative complaint over the book in 2012 .\njury found dzhokhar tsarnaev guilty on wednesday over the terror attack that killed three people and wounded more than 260 . he kept his hands folded in front of him and looked down at the defence table in the boston courtroom as the guilty verdicts were read . the jury will now decide whether the 21-year-old former student should be sentenced to death or receive life in prison .\nliverpool are making a rival push for manchester united target memphis depay . psv eindhoven have confirmed united have made enquiries for the holland international . liverpool hope to convince depay that he would get more regular football with them . psv value depay at # 25million and rejected a # 14million bid from tottenham last summer .\ntax adviser duncan hodgetts , 25 , fell to his death from a manhattan building . the 25-year-old reportedly fell from a 14th floor apartment window at 8.30 am . he was found on a third-floor balcony of the neighboring michelangelo hotel . mr hodgett worked for accountancy firm ernst and young in birmingham .\nvideo of a crocodile with a dead dog in its jaws has been viewed more than half a million times online . the clip shows a large croc calmly moving through the marina in the tourist hotspot of puerto vallarta , in mexico . new zealander tim weston was on holiday with his wife when he saw the alarming sight . the dog belonged to the local bike shop 's owner .\nmercedes-benz fashion week australia got off to a dramatic start on sunday night . a man stormed the runway at the ellery show at carriageworks in sydney . he was overheard complaining that the music was a ` disgrace ' and that show organisers had ` no respect for the local community ' the man was escorted from the venue by a security guard .\nyellowstone is one of the largest active continental silicic volcanic fields in the world . it is situated in yellowstone national park - which spans the midwestern us states of wyoming , idaho and montana . a magma chamber lying directly beneath its surface is not considered large enough to produce such levels of carbon dioxide . now , geophysicists have discovered an enormous secondary chamber deeper underground that 's so large its partly-molten rock could fill the grand canyon 11 times over . the researchers said the reservoir contains around 98 per cent hot rock and is too deep to directly cause an eruption .\ntottenham have held further talks with marseille over a potential deal for florian thauvin . the 22-year-old has been left out of the squad for this weekend 's game with metz . the winger was the subject of enquiries from spurs earlier in the year .\nkevin carr ran 16,300 miles in 621 days , beating previous record by a day . the 34-year-old from devon was attacked by bears and run over twice . he also crossed 26 countries and got through 16 pairs of shoes . mr carr is the first man to complete the gruelling endurance run unsupported .\nan injured and diseased husky has been picked up by rspca inspectors in adelaide . the rsppa says the husky is underweight and has an injury to his right rear leg . he is also suffering from a long-standing case of mange , which has sparked secondary skin infections .\nsevdet besim , 18 , and abdul numan haider , 18 were arrested on saturday . the two men were ` associates ' of abdul haider who was killed by police last year . haider is believed to have planned an isis-like attack on anzac day . the men attended his funeral . it comes as a friend of the two men revealed the moment they ` became radicalised ' the man claims the death of numanhaider was the moment ` we all became more radical ' the two young men had personal links with a senior australian jihadist and islamic state recruiter in syria .\nriders breached barrier as train approached in paris-roubaix race . sncf have made an official complaint to french prosecutors . last of the riders went through barrier eight seconds before train arrived . one rider was even clipped by barrier as it came down . normally riders who go through a closed safety crossing are disqualified .\nsurrey team photo shoot at the kia oval ahead of county championship season . kevin pietersen joined surrey after paul downton 's sacking on wednesday . the 34-year-old hopes to make a sensational return to england set-up . surrey begin their campaign at glamorgan on april 19 .\nandy hornby is non-executive chairman of pharmacy 2u , which was found to be selling nhs patients ' details on without their knowledge . many of those whose details he is selling on are some of the most vulnerable in society . mr hornby was in charge of hbos when it collapsed in 2008 and faced calls to step down .\nfate of facinet keita , 31 , who represented guinea in the 2012 olympics , is still unknown . he was knocked out in the qualifying stages of the men 's +100 kg . he claims his coaches told him he lost the fight ` like a baby ' and there would be trouble when he returned to his native guinea . he has been in the uk for three years but is refusing to leave . he is being supported by an asylum seeker charity while he applies for his third asylum application .\njuventus goalkeeper gianluigi buffon has picked his champions league dream team . the italian has played with the likes of andrea pirlo , paval nedved and lilian thuram . iker casillas , roberto carlos and lionel messi make the team . buffon also hails former juve defender fabio cannavaro .\ntwo underwater hotel rooms at atlantis , the palm in dubai have floor-to-ceiling views directly into an aquarium . poseidon and neptune rooms boast enough room for five guests . perks include soap with 24-carat gold flakes and 24-hour private butler service .\npilots have reported 167 cases of toxic cabin fumes or smoke in only four months . twelve of the cases resulted in pilots requesting a priority landing , safety figures reveal . on two flights the pilots made an emergency mayday call . figures re-opened argument about whether prolonged exposure to air in planes is safe .\nbrits and americans want the second royal baby to be a girl , according to yougov . the survey revealed that diana and elizabeth are the most popular royal names . james , richard and arthur are the favourite boy names in the uk and us . americans are five times less interested in the royal baby than they were with george .\nsydney artist george gittoes has been awarded the 2015 sydney peace prize . the 65-year-old was named as the recipient on saturday . he has spent the last 45 years chronicling conflicts around the world . the jury recognised him for ` his courage to witness and confront violence in the war zones of the world '\nmalawian police ordered to shoot anyone caught attacking albinos . tanzania 's prime minister has urged citizens to kill anyone found with albino body parts . in burundi , albinos are being housed in special accommodation under army protection . comes as u.n. reports 15 people with albinism have been killed in east africa .\njaclyn admits to having a crush on her new husband on tonight 's episode of married at first sight . the couple have been married for seven days and are returning home to celebrate the holidays with their spouses . ryan and jessica are still struggling to get along after he allegedly called her ` monroe ' lip-piercing ` trashy '\nevery one of africa 's 54 member countries will vote for sepp blatter in next month 's fifa presidential election . issa hayatou , president of the confederation of african football , promised unanimous support . fifa vice president prince ali bin al-hussein , dutch fa head michael van praag , and former portugal international luis figo are standing against him .\nuk passengers faced more holiday chaos than during same period last year . in first four months of 2015 , there have been 5,080 flight cancellations . number of delays increased to 2,427 from 2,260 in 2014 . low-cost carrier monarch has seen the greatest increase in delays .\npassionate truck driver trevor vale has posted a five-minute video online in a bid to encourage australians to attend an anzac day memorial service . the video has been viewed over 800,000 times on mr vale 's facebook page . mr vale , whose wife fought as a soldier in timor and afghanistan , posted the video online from behind the wheel of his truck .\nqueen and princess margaret were let loose on night out 70 years ago . they joined crowds celebrating end of second world war in europe . new film shows them as they wander incognito through london streets . ` it was a cinderella moment in reverse , ' says the hon margaret rhodes .\nsally lutkin , 49 , wanted a rose and her grandchildren 's names tattooed on her leg . but the tattoo became infected and she was rushed to hospital for emergency surgery . she was left with a bloody hole resembling a gunshot in the middle of her design . she has been left with an unsightly scar and has vowed never to have another tattoo .\nmitzi neyens , 77 , was the last link in a chain of 34 kidney transplants . she received a kidney because her husband bill gave his kidney to a patient in need . the national kidney registry 's paired exchange program linked strangers from san diego to boston who have loved ones in need with patients desperately in need of a transplant . neyen 's kidney was the only one that matched her age , which barred her from receiving a deceased donor 's organ .\nnoelle baynham , 61 , was found by a friend who let himself in after she failed to answer the door . the body had been partially eaten by the jack russell and staffordshire bull terrier . pathologist could not determine exact cause of death because dogs ate organs . it is believed she collapsed and died following an accidental overdose of medication .\ndan urman , a u.s. army sergeant , was stationed in afghanistan since november . he had been planning to surprise his parents at an arizona coyotes game on saturday . his parents eitan and ronit had been invited to drop the puck because they have been season ticket holders for nearly 20 years . but when they were told a special guest would bring out the puck for them , their son dan ran out on to the ice . eitan was so excited he ran to meet him halfway down the red carpet as ronit stood in shock . the pair fell to the ground as they embraced and eitan lifted dan off the ground , but they both stood up .\nyaphank , long island , was once home to a pro-hitler camp where like-minded individuals could drink beer and learn about eugenics . the german american bund , which was based in yaphank in the 1930s , was one of several groups that set up pro-nazi camps across the u.s. . the fbi and nypd kept close tabs on the bund in yaphank in 1941 .\ncats and people cafe in moscow is the first of its kind to be opened in russia . all of the cats that live at the cafe were rescued from a local shelter . customers are allowed to adopt the cats , should they strike up a rapport with a feline over a piece of cake . the cafe was influenced by the many cat cafes that have opened up in parts of far-east asia .\nthe duchess of cambridge 's inner circle is a mix of school friends , society types and family members . carole middleton , carole 's mother , will be by her side when the baby arrives . pippa middleton is close to her sister and will be at her side if she is born . emilia jardine-paterson is a friend of prince william 's from his teenage years .\nus geological survey has released two sets of maps of the moon 's surface . they include image mosaics and topographical views of the lunar landscape . darker blue show deep craters , while grey and white areas reveal higher peaks . the maps were created using data from the lunar reconnaissance orbiter .\naward went to the post and courier of charleston , south carolina . paper 's powerful photo series entitled 'till death do us part , ' scooped top award . first time in five years that prize has gone to such a small newspaper . other winners included the new york times which won three pulitzer prizes for international reporting and feature photography for its ebola coverage . st. louis post-dispatch won photography award for coverage of ferguson riots .\nnigel farage met hungarian ivan loncsarevity at a hinge factory in essex . he had an awkward exchange with the 62-year-old who spoke no english . but he insisted he did not want to send eu migrants home to stop them taking the jobs of young britons . mr farage 's immigration policy has been shrouded in confusion for weeks .\ngeorge and amal clooney submitted plans to their council for a 12-seater home cinema . the couple 's berkshire mansion will also include a swimming pool and gym . industry experts say a cinema room is now an ` expected ' luxury in properties worth over # 10m .\nphotographer yaakov naumi was raised in an ultra orthodox jewish home in bnei brak , israel . his photographs include a man lying in a grave to prolong life and a chicken being walked on a piece of string . he admitted that some of the rituals , when viewed with the eyes of an outsider , ` look strange '\na man from warwick , 150km south-west of brisbane , has been charged with 145 child exploitation offences . the 47-year-old is accused of sexually abusing 28 children from three states . police allege the man used a range of social media sites to prey on children under the age of 16 . he is accused of offering his victims money or using extortion to force the children to send him indecent images .\nmonarch , 88 , was spotted crossing her fingers in the royal box at newbury . her horse ring of truth was narrowly pipped to the post by harvard man . the queen 's horse capel path came in third later in the afternoon . the race was part of the dubai duty free spring trials .\nnewcastle united have lost seven straight premier league games under john carver . mike ashley has been criticised for his handling of the club 's finances . the tracksuit tycoon has bought a plot of land in chelsea for # 200million . newcastle 's disaffected supporters are growing in numbers at st james ' park .\nandy goode slammed his wasps team-mate christian wade on twitter . wade did not attend a charity event for matt hampson foundation . goode accused the 23-year-old of having ` bad values ' for dropping out . danny cipriani , shaun edwards and mark cueto were among the stars at the event in birmingham on tuesday night .\nmen judge how attractive a woman is by hearing her talk , according to a study . researchers found women judged to have pretty faces also have voices regarded by men as appealing . university of vienna study found a ` significant relationship between males ' ratings of female faces and voices '\nthere will be calls for england to get rid of alastair cook and jonathan trott . but they should both play all three tests against west indies . trott was making his first test appearance for england in 18 months against the west indies . cook has gone 61 combined test and odi innings without making a century .\nlucas matthysse beat ruslan provodnikov in a 12-round super lightweight bout . the argentine won by a majority decision after a close fight in verona , new york . the fight was on the undercard of terence crawford 's fight with thomas dulorme .\noscar has n't played full 90 minutes in any of chelsea 's last 11 games . the brazilian midfielder has not scored since january 27 against swansea . oscar was substituted at half time against stoke on sunday . diego torres claims cristiano ronaldo told him to be more adventurous at real madrid in 2011 .\njamaican sprinter usain bolt visited a small gym in rio de janeiro on thursday . bolt took three shots on the basketball court and converted all three . the six-time gold-medal winner is in brazil to promote an event over the weekend . bolt has admitted that the 2016 olympic games in rio will be his last .\nscott schofield will become the first transgender man to have a recurring role on a daytime soap opera when he appears on the bold and the beautiful . schof yield will be playing nick , a mentor of sorts to the character of maya avant , played by karla mosley . sch ofield is a performer , speaker and author known for his one-person shows that address transgender issues .\naaron hernandez 's lawyer says his client had no reason to kill odin lloyd . the prosecution says hernandez was cold , calculating and insecure . the former nfl star is accused of killing lloyd in june 2013 . the jury is deliberating after deliberating for about an hour-and-a-half on tuesday .\njudge george o'toole told jurors in the boston marathon bombing case they are not to attend this year 's race or related events . dzhokhar tsarnaev , 21 , was convicted last week of planting two homemade bombs at the crowded finish line of the world . famous marathon in 2013 . the same jury that convicted tsarnaev will hear testimony on . whether he should be sentenced to death or life in prison for . his crimes . the sentencing phase is expected to take four weeks , followed by jury deliberations .\nauthorities were called to an industrial site in wetherill park , west of sydney , shortly after 11am on thursday . they worked to release three men who had been unloading or loading timber when it fell on them . two men died at the scene as a result and the surviving man was taken to nearby fairfield hospital in a serious condition .\ntottenham hotspur are moving forward with the next step towards their new stadium development at white hart lane . the final opponent to the move , archway sheet metal works , is being demolished . spurs plan to open a new ` world-class ' 56,000-seater stadium in just over three years time . the north london club 's neighbours , archways sheet metal works , fought a long court battle with tottenham over the development .\nharriet arkell has tested out the best hot cross buns on offer this easter . the spiced , sweet rolls with a cross on top used to be eaten all year round . queen elizabeth i tried to ban them , possibly finding the cross a little too catholic . but she compromised , saying they could only be sold on good friday .\nmade in chelsea star andy jordan , 29 , is a fashion designer . has launched his own range of surf-inspired city wear called jam industries . andy is an avid surfer and co-owns a surf school in devon . he stars in a campaign for the range shot on west wittering beach .\nclint chadbourne , 71 , was driving from massachusetts to maine . he was with his wife and daughter when they pulled over at a rest stop . when he tried to get out the car , he could n't do it because his gut was stuck . his wife bonnie posted the two-minute clip on facebook . it has been viewed almost 30 million times .\nabdul hadi arwani , 48 , was found dead in his car in wembley last week . he was shot and his body abandoned in a volkswagen passat on april 7 . leslie cooper , 36 , charged with murder and will appear at old bailey this week . second man , 61 , arrested on suspicion of conspiracy to murder mr arwini .\nskywest airlines flight 5622 made an emergency landing in buffalo , new york , on wednesday . three passengers lost consciousness and others began feeling dizzy and sick . pilot plunged the aircraft into a terrifying dive to drop 30,000 feet in just eight minutes . investigation has found nothing unusual about the mechanics of the plane .\nduli hembrom has written a letter to her teacher begging her to stop wedding . she wrote : ' i do not want to get married , i took an oath ' the 13-year-old 's parents are due to marry in two days time . her father said child marriage was a common phenomenon in their society .\npeter alliss , 84 , claims equality laws have ` b ***** ed up the game ' says legislation has led to decline in women 's membership of golf clubs . equality act 2010 ruled that women must now have equal access to course . but ladies ' golf union says there has only been a decline of 30,000 women .\nthe curl-crested jay is native to south america and resides at the criadouro onca pintada breeding centre . the bird is one example of a number of species that have learned to incorporate peculiar everyday sounds into their song . videoed behind a fence , the bird initially makes a sinister noise like a distorted voice before creating an almost digital sound .\nrussian-ukrainian film about legendary sniper lyudmila pavlichenko aiming to be a hit in both nations . titled ` battle for sevastopol ' in russia but ` indestructible ' across the border in ukraine , the movie is a co-production between the two countries . it is about female sharpshooter who reportedly killed more than 300 nazi troops during world war two .\nchris and nicole peppelman were found dead in their lower moreland , pennsylvania home tuesday afternoon by one of their juvenile sons . the couple 's bodies were found with chainsaw cuts to their bodies . the montgomery county district attorney says only mrs peppman 's death is being classified as a homicide . that suggests that the incident may have been a murder-suicide .\ncompany mortein has been accused of making a ` tasteless decision ' to link its product to the tragic murder of stephanie scott . the company posted a picture to the account of its mascot , louie the fly , along with ' #putyourdressout ' the post was quickly attacked by people who dubbed it insensitive . a spokeswoman for morte in has since removed the post and apologised for any offence caused .\nwith 28 days to go , voters are saying one thing in public and another in private . but punters are placing a flood of cash on the tories to win the most seats . one bookie alone has taken five bets for more than # 10,000 on the conservatives . not a single bet of this size has been placed on ed miliband 's labour .\ngavin munro uses willow to grow furniture in derbyshire field . uses specially-designed plastic moulds to grow the trees . grafts the branches together to form ultra-tough joints . hopes to have his first crop of furniture ready for market in 2017 .\nthree children who died when their mother 's car crashed into a lake have been laid to rest . bol manyang , one , his four-year-old sister hanger and her twin brother madit were laid to rest in tiny white coffins at st andrew 's church in werribee on saturday morning . their mother akon guode and father joseph tito manyang sat in the church 's front row alongside older sister awel , 5 . police are still investigating how the car ran off the road and ended up in a lake at wyndham vale in melbourne 's west on april 8 .\noskar groening is being tried on 300,000 counts of accessory to murder . former ss officer faces up to 15 years in jail if convicted . eva mozes kor , 81 , publicly embraced groening in court last week . she faced criticism from her co-plaintiffs who suggested she should not have taken part in the trial in germany . her comments come after another holocaust survivor said groening should not be prosecuted . eva pusztai-fahidi , 89 , lost her parents and sister at auschwitz .\npacquiao appeared on extra with friend mario lopez at universal studios hollywood . the pair laughed and chatted as they prepared for mayweather bout . pacquiao will fight floyd mayweather on may 2 in las vegas . the filipino superstar has been training in the same gym as lopez . lopez played ac slater in the hit high school comedy saved by the bell .\nnewcastle is officially the most pest-infested place in the uk with 5 % of residents calling in exterminators . london borough of southwark has the most mice , cockroaches and bed bugs . birmingham topped league table for the highest number of rat exterminations with 15,000 .\ngoogle 's eric schmidt sat at the head of the table when president obama dined with tech leaders in 2011 . google executives and employees donated more than $ 1.6 million to obama 's two white house campaigns . the online search giant parachuted top talent into both campaigns , including schmidt . google has been in the white house more than 230 times since obama took office -- approximately once per week .\nhundreds of people braved the snow for a traditional easter monday procession on horseback in traustein , germany . in slovakia , men threw buckets of water on women as part of the easter weekend celebrations . in hungary , the women give the men brightly coloured eggs in return .\npolice in oregon are asking the public to identify a mystery motorcyclist who saved the day after a man allegedly threatened two teens with a handgun . edward west , 59 , allegedly pulled a gun on two teenagers in salem telling them , ` get ready to die ' just then , a stranger on a green motorcycle swooped in and used his helmet to knock the gun out of the man 's hands , allowing the teens to escape .\ncolleen harris , 73 , was found guilty of murdering robert edward ` bob ' harris in their placerville , california home in 2013 . she will be sentenced on june 5 and stands to receive 50 years to life for first-degree murder with a firearm . in 1985 , she shot dead her second husband and the father of her three children , 46-year-old james batten , after claiming he had been abusive towards her . both killings were carried out in the same home with the same type of gun , and in both cases , after pulling the trigger , she claimed she had temporary amnesia and could not remember doing it . she was acquitted in her 1986 trial after claiming she had acted\na video of a mom smacking her son 's head in the baltimore riots has gone viral . the woman is seen pulling her masked son away from a crowd . she follows him , screaming , `` get the f -- over here ! '' eventually , he turns toward her , his face no longer covered .\nporto defeated bundesliga champions bayern munich 3-1 in the first leg of their champions league quarter-final . ricardo quaresma opened the scoring for porto after just three minutes with a penalty . thiago doubled porto 's lead in the 28th minute with a low strike . bayern defender dante was sent off for a foul on porto striker jackson martinez in the 64th minute .\nmanny pacquiao fights floyd mayweather on may 2 in las vegas . pacqu xiao posted a picture of one of the shirts available on his instagram account . fans can buy four t-shirts commemorating the encounter . the cheapest of the four is priced at $ 24.99 -lrb- # 21 -rrb-\ngunfights broke out and vehicles were set ablaze in one of mexico 's biggest cities along the u.s. border , after security forces arrested a. leader of one of the main drug gangs in the area . three suspected assailants were killed and two state police were injured during the violence on friday . on saturday , mexican authorities confirmed the capture of jose tiburcio hernandez fuentes who was transferred to mexico city .\nfather was asked to leave the wallow pub in blyth , northumberland . david curry , 49 , had travelled ten miles from home for a family breakfast . he was told he could not stay in the pub because he was wearing # 40 adidas trousers . wetherspoon apologised but said a no-tracksuit policy had been in place since 2013 .\nstudy by university of jyvaskyla found exercise increases grey matter . it increases the size of areas that contribute to balance and coordination . changes in the brain may have health implications in the long-term . could reduce the risk of falling and being immobile in older age . previous research found exercise can also make you smarter .\nbeyoncé , kelly rowland and michelle williams performed together for the first time since the super bowl in 2013 . the group received a standing ovation from the 9,000-plus crowd , but they were n't introduced as destiny 's child . daily mail online has learned exclusively that the threesome want to do another ten-year reunion tour and intend to cut a reunion album - but they wo n't use the group name for that either .\nsaracens ace jacques burger is loved by his team-mates and loathed by opponents . the flanker is loved for his reckless abandon with which he plays . saracens take on racing metro in paris on sunday in the european champions cup quarter-final .\nclaudia alende , 21 , came second in last year 's miss bumbum competition . she has branded winner indianara carvalho , 23 , ` an attention-seeking sl * t ' miss carval ho posted picture of her naked body painted with virgin mary . she posted it to instagram on good friday - the day of the crucifixion . ms alende claims she was asked to do the photoshoot but refused ` out of respect '\npaul johnson-yarosevich , 34 , of acton , maine , was charged on monday with prohibited use of computer . police say he fooled a pre-teen girl into sending him inappropriate photos of herself by posing as a young girl on social media . the manchester school district says johnson-yarosevic was placed on leave before his arrest .\ngregg manderson , 68 , of st paul minnesota , has been suffering from songs being stuck in his head for weeks at a time . he first sought medical help after he got twinkle twinkle little star trapped inside his mind last may . he has also hallucinated the theme song to the western 1950s television show cheyenne had the same mysterious bugle call stuck in him for years . minneapolis va medical center neurologist dr khalaf alla bushara and researcher roger dumas have looked for a way to end the earworm .\nclyde balances on a donkey friend in a bid to reach some treetop treats . the goat 's front hooves are planted firmly on his pal 's back . his horned head is then craned to the branches where he nibbles up leaves . after about a minute he decides he 's had enough and starts to walk off .\nthere is no deal yet between iran and the west on its nuclear program . the parties are meeting in switzerland to try to reach a framework agreement . the deadline for a deal is june 30 , when the parties must agree on a comprehensive agreement . iran 's foreign minister says `` it 's time for our negotiating partners to seize the moment ''\na los angeles judge agreed with the governor 's decision to reject parole for a charles manson follower imprisoned 43 years for two brutal murders . bruce davis ' record shows there is ` some evidence ' he is dangerous and should n't be freed , superior court judge william c. ryan wrote . davis , 72 , was convicted in the 1969 slayings of musician gary hinman and stuntman donald ` shorty ' shea and sentenced to life in prison in 1972 . he was 30 years old at the time . davis claimed he has turned his life around in prison , earning a doctoral degree in philosophy , becoming religious and ministering to other inmates .\nrobbie fowler is celebrating his 40th birthday with a fifa 15 ultimate team . the former liverpool striker has named his dream team . fowler has named a xi of players who featured during his era . the england legend has also included paolo maldini and fernando hierro .\npaul mason once tipped the scales at 70st but has lost 46st in five years . the brit , from ipswich , suffolk , managed to shed the weight after gastric bypass surgery . but the nhs have refused to give him an operation to remove his 7st of excess skin . he is now preparing to undergo an operation in the u.s. after plastic surgeon dr jennifer capla offered to carry out the procedure free of charge .\ncameron to set out targets for ethnic minority recruitment to persuade voters the party is on their side . highlighting margaret thatcher 's record as britain 's first female prime minister . claim seen as tacit endorsement of sajid javid 's leadership ambitions .\nwealthy dubai ruler sheikh mohammed bin rashid al maktoum plans to build six-storey car park . the ultimate toy cupboard will house up to 114 cars and have five-star accommodation for chauffeurs and staff . car park will be built next to battersea heliport by the river thames .\nsir phillip carter passed away on thursday at the age of 87 . he was former chairman of everton and life president of the football league . carter also served as a vice-president of the fa . current toffees chairman bill kenwright also paid tribute to sir philip .\ncolin barnett said ` some good ' has come out of the year-long search for mh370 . the premier for western australia made the comments at the launch of a new blueprint for marine science in western australia . search parties have not been successful in recovering mh370 since it disappeared on march 8 last year . this comes as the wife of an australian passenger on mh370 spoke of her heartache , revealing she is yet to tell her children why their father has n't come home .\nthe funeral of freddie gray is held in baltimore . a gospel choir sings at the funeral . gray died 15 days after he was arrested on a weapons charge . his death sparked widespread outrage toward the baltimore police department . . baltimore police arrest 35 people , including four juveniles , during protests saturday .\na four-year-old child climbed under a temporary bike rack along pennsylvania avenue triggering secret service to put white house under lock down . the unidentified child caused the presidential residence to be closed off for a few moments on sunday afternoon . the incident is the second lockdown in washington only a day after a man shot and killed himself on saturday .\nbritish no 1 andy murray takes on tomas berdych in the miami open semi-final . murray and berdych met at the australian open in january and the czech beat the brit in a tense encounter . the scot 's former coach dani vallverdu and fitness trainer jez green will be in the stands for the match in key biscayne .\na fiberglass boat fragment was spotted off oregon 's coast this week . it 's suspected to be from the 2011 earthquake and tsunami in japan . inside the boat are specimens of yellowtail jack fish normally found in japanese waters . biologists say the ecological threat posed by the fish is small .\ndiego costa replaced oscar at half-time during chelsea 's 2-1 win over stoke city . but the striker limped off after just 10 minutes with a hamstring injury . jose mourinho was happy to gamble with costa 's fitness despite losing him . chelsea are seven points clear at the top of the premier league table .\nchristian longo was sentenced to death for killing his family in oregon in 2001 . he stuffed their bodies in suitcases and dumped them in rivers . then went on alcohol-fuelled holiday to mexico where he posed as a reporter . he was captured by the fbi and charged with murder . now a film about his life , true story , starring james franco and jonah hill has been released . he has now written letters from behind bars saying he can no longer be redeemed for his crimes .\nporto beat bayern munich 4-0 in the champions league quarter-final first leg . ricardo quaresma scored two goals and jackson martinez added a third . bayern manager pep guardiola blamed the defeat on injuries . porto boss julen lopetegui says his side can now dream of reaching the semi-finals .\naudio and video has surfaced of michael slager , 33 , laughing and admitting to experiencing a rush of adrenaline in the minutes following the shooting . the conversation was picked up by the dashcam in the officer 's patrol car following the incident in north charleston on april 5 . the camera continued to record for another hour and a recording of the audio feed , including the conversation between slager and a senior officer , was obtained by the guardian . slager was fired from the north charleston police and charged with murder on tuesday . the father of four 's death has sparked a nationwide debate about police brutality and bias against black people .\ncassandra cassidy was shot as she tried to help two women . the 24-year-old was shot in a drive-by shooting in las vegas . she had been trying to aid two women who approached her in the street . the women had been ` afraid of men in a car ' and asked for help . ms cassidy was mortally wounded and died in hospital shortly afterwards .\ncampaign shows vegan guitarist jona weinhofen holding a severed lamb . peta later admitted the lamb was a prop and made of foam . victorian farming federation launched an official complaint to the advertising standards bureau on monday . the victorian farmers federation said the campaign ` denigrates , offends , belittles and insults every australian 's intelligence ' the minister for agriculture , barnaby joyce has also voiced his outrage calling the campaign a ` load of rubbish '\nmarion carole rees went missing in april 1975 after jumping off a school bus . the 13-year-old was last seen leaving for school in hillsdale in southern sydney . an inquest has found that she may still be alive and have ran away . the teenager may have been running away from her mother 's drinking problem .\nthe british army fired 46 million bullets at the taliban during the eight-year afghanistan conflict at a cost of # 200 million in ammunition alone . 27 million 5.56 rounds were fired from either the standard sa-80 assault rifle or minimi machine gun . a further two million 9mm rounds were fire from handguns .\nlibby jane was enjoying a day out at a play park in chorley , lancashire . the toddler was playing in a tunnel when the jack russell entered and attacked . the pet left her with two puncture marks on her face , narrowly missing her eye . her father heard her screaming and kicked the dog away from her . the dog 's owner fled the scene and police are investigating .\nferguson , missouri , votes in first city election since michael brown shooting . two african-americans -- ella jones and wesley bell -- elected to ferguson city council . that means three of the six council members are black . five of the current city council members and the mayor are white .\nsunderland face newcastle at stadium of light on sunday . black cats have won the last four meetings with newcastle . sunderland could be in the relegation zone by the time they play . john o'shea wants a fifth straight derby win against newcastle . the black cats captain has challenged his team-mates to win .\njohn mccallum was sentenced to 20-45 years in jail for second-degree murder . he broadsided francesca weatherhead , 25 , while fleeing police last year . the newlywed mother had only married her college sweetheart in june . mccallums had been paroled just five months before the crash .\nan afghan soldier opened fire on u.s. troops in the city of jalalabad on wednesday , killing one of them . at least two other u.s. troops were wounded in the incident . the shooting happened after a meeting between afghan provincial leaders and a u.n. embassy official . the motive for the attack was not immediately known . the shooter was identified as abdul azim , from laghman province .\nformer new england patriots star aaron hernandez is facing a second murder trial in a 2012 drive-by shooting that left two men dead and a third wounded . earlier today , the 25-year-old athlete was found guilty of first-degree murder and sentenced to life in prison without the possibility of parole in the 2013 shooting death of semi-professional football player odin lloyd . hernandez will back in front of a judge later this year , this time in boston , to face murder charges in the killings of daniel abreu , 29 , and safirdo furtado , 28 . the two immigrants from cape verde were found murdered in their car at a stop light in south boston following a drive -\ncarl froch is keen to fight in las vegas . the wba super-middleweight champion was forced to withdraw with injury . julio cesar chavez jnr returns to the ring on saturday . chavez faces andrzej fonfara at a catchweight of 172lb . froch would be open to travelling to america to fight chavez .\nruben navarrette : president obama 's comments on trade with elizabeth warren hurt democrats . he says clinton has been courting warren 's support while forcefully repeating populism . navarrete : clinton should be more clear about her position on the trans-pacific partnership . he asks : if clinton wants to prove she 's a populist , she should oppose the deal .\nava gardner called 34 ennismore gardens in knightsbridge her ` little london retreat ' the actress lived in the building for over 20 years before her death in 1990 . now a slice of it could be yours for # 10,500 per week . the apartment boasts five bedrooms and five bathrooms .\nleanne kenny , 23 , from cheshire , ballooned to almost 20st after snacking on junk food . she would take home discounted snacks from her job at the co-op . she finally decided to lose weight after breaking down in tears in a shop changing room . joined weight watchers and took up walking to shed the pounds . now weighs 13st and is down to a size 14 .\npaulo dybala has been linked with a move to juventus . manchester united and arsenal have also been linked . juventus have made an offer of # 18m for the palermo striker . barcelona are on the front of mundo deportivo 's front page . cristiano ronaldo scored his 300th goal for real madrid .\nfruit juices made from superfoods often have more sugar than can of cola . some brands contain more than a day 's recommended intake in a single 300ml serving . local government association accused soft drink firms of ` dragging their heels ' in minimising sugar in their products .\nworld no 3 ding jinhui was on for a maximum 147 break at the crucible . but he screwed back for the blue instead of the black to end his break . the chinese would have pocketed # 30,000 for the maximum break . ding then realised what he had done and started to giggle . he was playing mark davis in the first round of the snooker championship .\na car bomb explodes near a police station in al-arish , killing six people , including one civilian , officials say . an isis affiliate claims responsibility for the attack , which came hours after another one . three security personnel are injured in a checkpoint attack in rafah , state media reports .\ntransport for london launches campaign to tackle abuse on public transport . unsettling video shows woman hounded by an increasingly persistent male . broadchurch actress olivia coleman asks : ` would you report it ? ' one in ten londoners have experienced unwanted sexual behaviour on public train .\ntesco has the biggest share in the lucrative premium ale market . but aldi has increased its share by a third in the last year . the discounter is luring customers away from tesco with cheaper prices . aldi overtook waitrose as britain 's sixth biggest supermarket .\nthe dubai duty free irish open will be held at royal county down . rory mcilroy managed to persuade some of golf 's biggest stars to take part . us open champion martin kaymer and former world number one luke donald have confirmed their participation in the tournament . patrick reed also revealed he will play in the event .\nthe two-year-old boy was found dead in the family 's car outside their phoenix home on monday afternoon . police say he had been left in the car for up to 2.5 hours after his father drank a bottle of gin and went inside to sleep . james koryor , 41 , has been arrested on suspicion of manslaughter and child abuse .\nshane dunn , 25 , met victim ian garrod on gay dating app grindr in september last year . but when the 55-year-old sat on the bed , dunn stabbed him in the throat with a kitchen knife . he was high on mephedrone and pretended to call an ambulance for his victim . but instead he left him for dead with a 6cm-deep wound in his neck . luckily , mr garrod 's housemate returned the property and called an ambulance . dunn has now been jailed for 12 years after being found guilty of wounding with intent .\ntuesday is equal pay day , the fictitious holiday marked by progressive women 's groups . julian zelizer : the 77-cent wage gap statistic is grossly overstated . he says conservatives should be paying attention to equal pay day because it 's a reminder of the `` war on women '' zelizer says democrats are not ready to surrender .\nthe nigerian president-elect says the kidnapping has `` rightly caused outrage '' the 276 girls were abducted from a school in northeastern nigeria last year . most have never been seen since ; some escaped ; others remain missing . malala yousafzai sends a message to the kidnapped girls .\n4,000-year-old ashbrittle yew in somerset is ` looking extremely sick ' churchwarden charles doble said it was ` fairly mature ' when stonehenge was built . experts say the tree could just be going through a bad patch . the world 's oldest tree lives on a mountain in central sweden -- and it is still growing .\npaddy barnes and michael conlan have travelled the world to qualify for the 2016 olympics . the pair are currently in venezuela for the world series of boxing . barnes and conlan are one win away from qualifying for rio 2016 . they have travelled 34,000 miles during their olympic road-trip .\nin ravi opi , a village in kavre district , nepal , 90 % of houses are uninhabitable . maili tamang , 62 , is alive , but surveys the desolation the quake has wreaked on her life . `` i just want to cry , all i feel is hurt '' she says .\nerror spotted during hampshire constabulary training course in hamble near southampton . two officers have decided to proudly continue wearing the tops with the mistake on the left sleeve . chairman of hampshire police federation said it boosts morale within force . three tops in total were sent to force but one member of staff decided to return the faulty garment .\nayoze perez was brought down by dejan lovren in the liverpool box . referee lee mason did not award a penalty after replays showed the defender kicked the spaniard . neville said it was an ` absolute stonewall penalty ' and mason had no excuse . raheem sterling and joe allen scored for liverpool in 2-0 win at anfield .\nstephanie scott was found dead in a bushland near her home in leeton , in nsw . her body was discovered by the family of her accused killer . the 26-year-old was due to marry her childhood sweetheart aaron leeson-woolley on saturday . her devastated father robert has opened up about the grief his family is feeling as they prepare for her funeral . he says he is confident his daughter is in the ` best possible place '\ndr. jennifer maizes : girl scout cookies contain sugar , corn syrup , white flour , gmos , trans fats . maizes says she 's surprised doctors are n't speaking up about the dangers of these ingredients . she says doctors should be teaching nutrition education to children and parents .\ntulsa county reserve deputy robert bates , 73 , is on administrative leave . he is accused of `` inadvertently '' shooting a suspect with his gun . police say bates thought he was using his taser during an arrest . the suspect , eric courtney harris , 44 , later died at a local hospital .\nnewcastle united host sunderland at st james ' park on sunday . the two sides have amassed just six points between them in their last six matches . sunderland are currently in the premier league relegation zone . john carver is fighting to secure his future as newcastle manager . dick advocaat is hoping to steer sunderland clear of relegation .\nroy day , 29 , and gerard lundie , 26 , stole # 160,000 worth of cars . they targeted 13 homes over four months at the end of last year in birmingham . pair left their dna at the scenes of some of the crimes and were arrested . they were each jailed for five years and four months after admitting conspiracy .\nspacex 's falcon 9 rocket launches to the international space station . the company tries to land a rocket stage on a floating barge for the first time . the rocket lands , but the barge is too far away for survival . the dragon cargo spacecraft will dock with the space station a couple of days after launch .\ntrussell trust asks for # 1,500 ` donation ' from churches and community groups . money needed to pay for staff , branding materials , pr advice and relationships with tesco . critics accuse charity of taking money which could be better spent on food . number of foodbanks has risen eight-fold in five years to 445 .\ndylan lauren and her husband paul arrouet welcomed fraternal twins on monday via a surrogate . the 40-year-old named her son cooper blue and her daughter kingsley rainbow . the couple confirmed the news to people on wednesday afternoon . her parents ralph and ricky lauren are ` overjoyed ' to welcome their first grandchildren .\n` lazie ' lynch is serving nine years for a series of violent gang robberies . use of computers , social media and mobile phones is strictly forbidden behind bars . yet , as this picture and his posts show , lynch has been free to run a sneering facebook site from his cell in bedford prison .\nblake shinn 's pants gave way on miss royale in the opening race of a meeting in sydney . the jockey was forced to ride more than 200 metres to the finish line with his pants down . acting chief steward greg rudolph said he had never seen anything like it in his time in racing .\nbayern munich and real madrid are the two teams in the champions league semi-finals . pep guardiola 's side face former club barcelona in the last four . juventus face a daunting task against holders real madrid . sportsmail 's reporters look at each side 's reasons for optimism , and caution , ahead of the semi-final .\ngreen party 's new election advert features david cameron , nick clegg , ed miliband and nigel farage forming a bizarre pro-austerity boyband called coalition . the video is designed to show that despite their claims to the contrary , the tories , lib dems , labour and ukip are all singing the same tune .\ndelta flight made emergency landing in boston on wednesday afternoon . two people were taken to hospital with possible minor injuries . one passenger said the turbulence felt like ` king kong picked up the plane and shook it like there was no tomorrow ' the flight was from paris to newark , new jersey when the incident occurred . 180 passengers and 11 crew members were aboard the boeing 767-300er .\nformer head of nhs warns labour 's failure to match tory pledges would leave it in a ` financial hole ' sir david nicholson is latest expert to warn ed miliband 's plans will not provide enough cash . he was branded the ` man with no shame ' after refusing to resign over mid staffs scandal .\nbiodegradable mull-cloth nappies are among the latest gadgets for mums . a self-warming bottle and a ` shusher ' machine are also on offer . pippa middleton is said to have bought the biodegradables for the royal baby .\nsaracens beat leicester 22-6 in the aviva premiership on saturday . billy vunipola was cited for striking leicester 's mathew tait with his head . the incident occurred during saracens ' win at allianz park . vunipsola 's case will be heard by a three-man panel on tuesday .\nmet office has a severe yellow ` be aware ' ice warning for north-east scotland . temperatures are set to be average for april , with showers and temperatures barely in double figures for most of the country . sleet and snow forecast for today and tomorrow from the pennines northwards , and there were small accumulations yesterday in the cairngorms . it comes less than a fortnight after the mercury breached the 25c -lrb- 77f -rrb- mark . britain is even expected to be colder than the norwegian capital oslo , which will reach around 13c -lrb- 55f -rrb-\none of the most widespread ` food rules ' passed down from generation to generation may actually be a myth . the five-second rule has been cited to justify picking up everything from a salt and vinegar chip to an assortment of cold cuts . experts have largely dismissed the almost magical powers surrounding the five - second rule . but they said what type of food and where you drop it does come into play . ` it all comes down to bacteria , ' said food safety information council spokeswoman rachelle williams .\nsarah stage has been sharing sexy selfies of herself in lingerie throughout her pregnancy . the 30-year-old model came under fire last month as critics said her trim and toned figure could be doing damage to her unborn child . but she has continued to share photos of her growing baby bump with her 1.5 million instagram followers .\ndavid frum says he 's surprised by how little people know about holy week . he says easter triduum refers to three days of prayer , good friday , holy saturday . good friday is a day of death , sacrifice , displacement , fear , he says . easter embraces the great mystery of resurrection , he writes . frum : easter is about how religious impulses , and patterns , can affect our lives .\nfindings based on a study of about 95,000 young people . all those in the study had older siblings . some of the elder children had autism and some did not . numerous studies over the last 15 years have ruled out a link between the mmr vaccine and autism .\nblue shield accused of wasting $ 100,000 on aaron kaufman 's card . alleged he spent $ 17,491 on a vacation to florida to see tara reid . also accused of running up $ 1,382 bar tab at hollywood nightclub . company also said that reid posted ` inappropriate ' pictures to social media . kaufman is the former chief technology officer of blue shield .\ngeorge osborne was virtually scared to leave his treasury office in 2012 . was booed in front of his children at the paralympics and felt besieged and intimidated . but he has gone from being derided to being credited with helping to turn around economy . he has been on a tour of the south west to promote apprenticeship scheme in st austell .\ndavid cameron and wife samantha made colourful visit to sikh temple . they joined parade carrying the sikh holy book to the gravesend gurdwara . pm and wife wore traditional sikh dress for the event in kent today . it comes just a day after he attended festival of life in london .\nnoaa fisheries in maryland says the humpback whale is no longer endangered . they want to break up global population into 14 sub-populations . ten of these will be ` not at risk ' , two ` threatened ' and two still ` endangered ' it follows a conservation ` success story ' that raised numbers to 90,000 . but experts have warned that the reclassification is premature , and risks dropping to endangered levels again .\nfloyd mayweather takes on manny pacquiao at the mgm grand next month . conor mcgregor has won all five of his fights in the ufc . the irishman is preparing for his world title fight against jose aldo in july . mcgregor said he would ` kill ' mayweather ` in less than 30 seconds '\nreal madrid beat rivals atletico 2-1 in the champions league on wednesday . cristiano ronaldo scored a late winner for carlo ancelotti 's side . but the portuguese star was left upset after his shot hit a supporter . ronaldo removed his training shirt to give the young fan a consolation .\ndocuments donated by timothy mcveigh 's lead attorney . one million pages of paper documents now fill 550 file cabinet-sized boxes at the briscoe center for american history at the university of texas . mcveigh considered bombing of the oklahoma city federal building 20 years ago a failure because the structure was still standing after the blast that killed 168 people . he viewed himself as a ` paul revere-type messenger ' and even suggested his defense team should receive $ 800,000 from the government .\npetr cech is poised to leave chelsea in the summer . carlo cudicini believes arsenal should target the goalkeeper if he leaves stamford bridge . cech has made just five premier league appearances this season . thibaut courtois remains jose mourinho 's first-choice goalkeeper .\nlakers ' chris paul and miami heat 's luol deng will play in the august 1 exhibition match . the match will be the first ever to be held in africa . it will be played at ellis park stadium in johannesburg , south africa . the game will be a team africa vs team world format .\na woman , 23 , was arrested on wednesday after she allegedly hit her 67-year-old boyfriend in the face so hard that she knocked out one of his contact lenses . brittany lyn hilbert of orlando , florida was charged with domestic violence battery and battery of a person over 65-years-old . the victim 's identity has not been released .\nsum is almost five times the prime minister 's # 142,500 pay packet . a further 11 dentists were paid between # 400,000 and # 500,000 . 177 received more than # 200,000 - and more than 1,600 pocketed # 100,000 - # 200,00 . campaigners said the payments were ` scandalous ' and ` unacceptable '\na judge in south carolina issued a warrant for walter scott 's unpaid child support . john sutter : arresting scott for not paying child support is not a crime . he says the court 's remedy is to issue a warrant to bring dad to court . sutter says police should not be on duty as an atz collection agency .\nformer england captain michael vaughan is the favourite to take over from paul downton as director of england cricket . the 2005 ashes winning captain spoke to new ecb chief executive tom harrison for an hour about the role on thursday . andrew strauss and alec stewart have also registered their interest .\nann summers ' first bridal wear lingerie . priced between # 14 and # 85 . billed as ` perfect for every blushing bride ' emma louise connolly models collection . known as the bombshell girlfriend of made in chelsea 's ollie proudlock . first revealed as face of brand in february .\ncarl jenkinson says jack grealish should follow his heart when choosing between ireland or england . the west ham defender made the same decision in 2012 when he chose england over finland . jenkinson is on loan at the hammers from arsenal until the end of the season . the 23-year-old is hoping to make roy hodgson 's senior squad .\nbentleys and porsches are more likely to break down than cheaper cars . list price of bentleys ranges from # 136,250 to # 224,700 . but the manufacturer and porsche finished bottom of a 38-strong table judged on reliability . the most reliable was honda , with suzuki second and toyota in third .\ncarter gentle has had five open-heart surgeries since he was born . the seven-year-old boy has a congenital heart defect . mark gentle posted a photo of his son 's scars to facebook in the hopes of generating support for his son . the photo has received nearly 1.5 million likes since it was posted last week .\nqpr sit second from bottom of the premier league table . harry redknapp left the club in february citing knee problems . sandro has defended former manager redkn app , saying he is not at fault . redknapp branded situation at qpr a ` soap opera ' and accused ` people with their agendas ' of working against him .\nmanchester united reserve side drew 1-1 at leicester in reserve match . robin van persie and jonny evans both made their debuts for united . harry panayiotou put leicester ahead after 18 minutes with a header . sean goss levelled the scoreline in the 32nd minute . rafael and adnan januzaj both limped off with apparent rib injuries . van persie has been out of action since february with an ankle injury .\nnatwest bank manager glenn mason , 56 , stole from his elderly customers . he plundered accounts of nine pensioners including an 83-year-old woman . mason was jailed for 15 months in november last year for the thefts . he has said he will pay back the whole # 185,000 out of his rbs pension pot .\nbernie madoff allegedly tried to persuade his drug dealer 's girlfriend to become his mistress . madoff is serving 150 years in prison for carrying out a $ 65 billion ponzi style fraud - which became the largest in financial history . a new book claims he put pressure on an israeli model who was working for him as a stock analyst and dating his dealer silvio eboli .\na dog and its trainer complete a press-up routine with a twist . dog named teeny is captured on video sitting opposite trainer eric ko . the pair are working out at the dogaroo centre in hong kong . the dog leans out and gives the trainer a kiss after the count of four .\nscientists from the university of groningen , the netherlands , found people felt happier and more relaxed while eating at home or at work . they said people felt friendlier , listened more , gave more compliments and were more likely to make compromises . one possible explanation is that chewing raises levels of the ` feel-good ' brain chemical serotonin .\nceltic lost 1-0 to inverness in the scottish cup semi-final on sunday . john brown says celtic have a case of ` sour grapes ' about their exit . rangers legend brown was part of the ibrox side which contested an old firm scottish cup final in 1989 .\nthe $ 9.95-a-month -lrb- # 9.99 -rrb- tidal app launched in new york on 30 march . following the launch it jumped to 4th place on the ios music chart . now ranks at 51 in the music category and 872 overall in the us . in the uk it ranks at 92 in themusic app category and has disappeared from the overall app list entirely . by comparison , pandora radio and spotify occupy first and second spots respectively when the ios and google play downloads are combined .\njurgen klopp will leave borussia dortmund at the end of the season . klopp has enjoyed seven successful seasons at the westfalenstadion . the german has been linked with a move to manchester united . ilkay gundogan , ciro immobile and neven subotic are also in the running to follow klopp out of the club .\nwisconsin ended kentucky 's bid to become the first college basketball team to remain undefeated in nearly 40 years . the badgers beat the wildcats 71-64 behind 20 points and 11 rebounds from frank kaminsky . wisconsin will play duke , an 81-61 winner over michigan state in the earlier semi-final , at the lucas oil stadium in indianapolis on monday night .\nmike and kate hand from haydock , merseyside , are wheelchair bound . mr hand was diagnosed with a tumour on his spinal cord in july 2014 . he underwent a 10-hour operation to remove the tumour but was left paralysed . the couple have been told they can only get a disability grant if his wife gives up her job and goes on benefits .\nwhite house press secretary josh earnest said today that ` the president believes that to deny the existence of climate change is to deny an observable fact that is substantiated by science ' earnest 's channeling of former vice president al gore followed the president 's gas-guzzling , 1,836 mile trip on wednesday , earth day , to the florida everglades aboard air force one . there he preached about the harmful effects of global warming on the environment and the economy and mocked skeptics of man-made climate change . ` climate change can no longer be denied , ' he said . ` and action can no now be delayed '\nfloyd mayweather and manny pacquiao will fight on may 2 . kenny bayless has been named as the referee for the bout . the 64-year-old has overseen five of mayweather 's previous fights . oscar de la hoya believes the appointment will benefit mayweather . de la la hoyo was defeated by mayweather in 2007 on a split decision .\nthibaut verlinden is set to join stoke city this summer . the 15-year-old midfielder is a highly regarded member of belgium 's u16 squad . club brugge and anderlecht have also expressed an interest in the youngster . stoke boss mark hughes has also persuaded barcelona winger mohamed el ouriachi to join this summer .\nboston police release video of the shooting of a police officer last month . the officer wounded , john moynihan , is white ; the gunman shot to death by officers was black . moynihans was honored at the white house for his heroism in the wake of the boston marathon bombing .\nwriter amanda dobbins says she 's tired of the battle between fat and skinny . she says lane bryant 's new i 'm no angel ad campaign does n't show plus-size women of different proportions . the new york-based blogger has published photos of herself in lane bryant underwear to her instagram account .\ntwo birds of prey were caught on camera fighting over a nesting box . the kestrel and barn owl repeatedly lunged at each other in a vicious scrap . the fight was captured on video by wildlife photographer robert fuller . he set up a camera inside a 13ft-high elm tree stump in his garden in north yorkshire .\nmalaysia , australia and china announce a new search area for flight 370 . if no trace of the plane is found , the new search zone will be bigger than pennsylvania . the current priority search area is expected to be completed in may . flight 370 disappeared in march 2014 with 239 people on board .\njohn helinski lived in a cardboard box at a tampa bay bus stop for three years . tried to apply for a place at a homeless shelter , but his id was stolen . a cop and a case manager then looked into his past . found a lost bank account with money and social security benefits .\nresidents in alderholt , dorset , awoke on sunday to find an easter egg on every doorstep . residents described the deed as ' a wonderful act of random kindness ' the village of 3,000 people awoke to find chocolate eggs on their doorsteps .\nbridget olinda garcia had confiscated her 13-year-old 's mobile phone . garcia , 32 , was preparing to leave their home in port st. lucie , florida . she bundled her son and his three siblings into her car and started reversing . the teenager jumped onto the hood and garcia drove 200ft with him . garcia was arrested and charged with child abuse for the incident .\nsalford city won the evo-stik league first division north title . title rivals darlington 1883 could only draw 1-1 with warrington town . salford clinched the title on a fitting 92 points . the club gained promotion on a very fitting 92 points .\ndavid perry : some blame president obama for racial tension in america . he says it 's easier to retweet a dr. king meme than to look at the history of inequality . perry : we criticize baltimore 's mayor for not `` restoring order '' as if it 's a good idea .\nd derby county can make sure of a play-off place with a win at huddersfield . bristol city boss steve cotterill can clinch the league one trophy with a victory against coventry . burton will be promoted if wycombe fail to win at afc wimbledon .\njudy murray says she is ` terrible ' at dancing and has no dance moves . former strictly come dancing star was at her son 's wedding reception . andy and kim sears tied the knot in a ceremony at dunblane cathedral . the couple 's mother shirley erskine said the wedding was ` fantastic '\nenglish fa chairman greg dyke told home nations of his decision to withdraw from the victory shield for under 16s . scotland , wales and northern ireland were unhappy to find out about the fa ditching a tournament that started in 1925 . england 's desire to have more varied opposition for their under 16 players is not going down well in wales . pele says ` god only knows ' what happened to brazil when they were thrashed 7-1 by germany in the semi-final of their home world cup last year . ecb are running out of time to clinch a terrestrial highlights deal for the soon-to-commence t20 blast .\ndeputy kerry kempink was responding to a burglar alarm call . he jumped a fence into the garden and was confronted by two rottweilers . within seconds he had shot the first dog and turned his gun on the other . the dogs ' devastated owner then comes out and told the deputy ` they 're not even vicious ' before begging him to put him out of his misery . pasco county sheriff 's office reported it has received death threats since footage emerged .\nrory mcilroy wants to complete the career grand slam at augusta . the 25-year-old says it is ` unthinkable ' he will not win the masters . mcilory is looking to claim his first green jacket at augusta national . he is hoping to emulate the likes of jack nicklaus and gene sarazen .\nmalijah grant was taken off life support on saturday night after she was shot in the head in a thursday drive-by shooting outside seattle . police say the girl was sitting in the back of a silver chevy impala with her parents up front when around 5 shots were fired . the driver and a passenger in a black car pulled alongside and opened fire before driving off . authorities have said they do n't believe the shooting was random , though neither parent was injured .\neast lancashire railway 's 1940s weekend is a highlight in many a vintage enthusiast 's calendar . explore the isle of wight ' 's beauty spots with the walking festival . see the cotswolds olimpicks , the world ' s first ` olimpick games ' in 1612 .\npsg defender david luiz was at fault for both of barcelona 's goals . the ligue 1 side crashed out of the champions league on tuesday . itv pundit roy keane described luiz as looking ` lost ' in the game . neymar scored twice to seal barcelona 's progression to the last 16 .\nfrank abagnale says westerners have probably already had their identities stolen . he was played by leonardo di caprio in the 2002 film catch me if you can . abagnal has spent the rest of his career working with the fbi on fraud detection and prevention . he says people are normally hacked two or three years before their identity is stolen .\nnew jersey gov chris christie was called a bully for his interaction with a teacher at a town hall meeting tuesday night . kathy mooney , a high school english teacher from roselle park , questioned christie 's decision-making behind a $ 225million legal settlement with exxonmobil . christie said he was not ` bullying her ' but blamed the union for their role in the current pension system . the nj education association is calling christie out for his ` nasty and disrespectful tone '\ncheyenne mountain was home to the north american aerospace command . the military command and control center of the united states . it was built in the 1960s to withstand a soviet nuclear attack . the complex is made up of 15 three-story buildings protected from nuclear blasts .\ncollection of images shows the evolution of the easter egg over the past 40 years . archivists at confectionery giant nestle have assembled the compendium of photographs dating back as far as the 1970s . collection includes eggs by much-loved brands like caramac , yorkie , rolo , toffee crisp , aero and even polo .\nanna moser 's daughter sharista giles of sweetwater , tennessee , was driving home from a concert in december when she was in a car accident . she was five months pregnant at the time and doctors were forced to deliver the baby early . though giles was given a two-per cent chance of recovering , moser was confident her daughter would wake up . giles opened her eyes earlier this month and though she is still nonverbal , mosers believes she hears her .\nzbigniew huminski was indicted for kidnapping , raping and murdering chloe . the 38-year-old appeared before a judge on friday night and admitted his involvement . but he did not offer a word of remorse as he was formally charged with crimes . he was on his way to england from calais when he struck on wednesday . thousands will take to the streets of calais on saturday to pay tribute to chloe .\nsomali islamist group al-shabaab has carried out five attacks in kenya in the past year . al - shabaab says its attacks are to protest the more than 3,500 kenyan soldiers in somalia . u.s. drone and special operations forces campaign has also degraded the group 's capabilities .\nlight general aviation aircraft approached aero acres residential airpark in fort pierce , florida . it touched down on its belly without deploying its landing gear . the plane 's propellers can be heard ricocheting off the ground as the wings bounce up and down from the impact . the pilot re-engages the engines and takes off back into the air .\nlaw & order : svu star stephanie march ` asked her spouse if he had romantic liaisons with january jones in 2010 ' the couple have separated three weeks ago . the couple are ` fighting over property ' and bobby has already moved out of their new york city apartment . this will be stephanie 's first divorce and flay 's third .\nsarah reign , 26 , from new york , is paid $ 1,500 -lrb- # 1,000 -rrb- a month to eat . she disrobes and eats junk food in front of paying male viewers . the security guard has also started a service for men to ` squash ' her .\narsenal moved up to second place in the premier league with a 1-0 win over burnley . aaron ramsey scored the only goal of the game after a goalmouth scramble . the gunners are now four points behind chelsea and manchester city . click here for arsenal transfer news .\nthaddeus mccarroll , 23 , was killed outside his jennings home on friday night after he allegedly charged at police with a knife . his mother told police her son ` was talking about going on a `` journey ' `` and a `` mission '' and mentioned a `` black revolution , '' ' according to police . a police body camera recorded the interaction . police say they shot him with an ` less lethal impact weapon ' because they felt they had to act .\n64 % of adults admit they spend more money when they shop with friends . main reasons for this are ` showing off in front of friends ' and ` succumbing to peer pressure ' two-thirds of americans admit they would actually prefer to shop by themselves .\njack wilshere is a surprise target for manchester city in the summer . liverpool 's jordan henderson is another target of the premier league champions . the club are also interested in raheem sterling and frank lampard . city are also keen on juventus midfielder paul pogba .\nswansea city have expressed an interest in schalke full back christian fuchs . the 29-year-old is out of contract in the summer and is keen on a move to the premier league . west bromwich albion are keen on swansea left back neil taylor .\ngemma the pit bull was filmed at home in california enthusiastically greeting a baby boy named elliot with kisses . footage shows her lovingly licking the infant as he attempts to fend her away with his hands . despite elliot 's best efforts , gemma keeps licking away .\ndove grey suit was once worn by notorious nazi leader hermann goering during world war two . it was originally believed to be a replica but sweat stains on the suit led experts to believe it had been worn by the german air force commander . the suit is expected to fetch # 85,000 when it goes under the hammer in plymouth .\nneil patrick harris and david burtka 's four-year-old twins have a love for seafood and spices . david , a personal chef and graduate of le cordon bleu , says he cooks for his kids a ` ton ' and that they have ` incredible palates '\nczech politician vit jedlicka declares free republic of liberland . he says he will grant citizenship to 7,500 of 300,000 applicants . the tiny micronation is on the border of serbia and croatia . it will use a form of cryptocurrency -- similar to bitcoin -- as its national currency . the country will be formally founded on may 1 .\ntorin , 19 , and jacques lakeman , 20 , died after consuming mdma . the brothers had travelled to watch a game at old trafford with their father . they bought the drug via the ` dark web ' and took it in a pub in manchester . torin was found to have taken six times the lethal dose of mdma . coroner alan walsh said he would be writing to theresa may over deaths .\noleg kalashnikov was found dead in his home in kiev on wednesday . he was a former member of the ukrainian parliament and ally of viktor yanukovych . the 52-year-old had knowledge of the ` anti-maidan ' movement , it is claimed .\nthe controversial persona previously ` killed off ' by disgraced comedian daniel o'reilly has arrived down under . the british star documented his journey to sydney , via doha and melbourne , in a video posted online . dapper laughs sprang to fame on video network vine where he joked about how women could n't resist him . he came under fire last year after telling a female audience member at one of his shows she was ` gagging for a rape '\nkevin pietersen is being linked with a return to the england side . former yorkshire chairman colin graves has made a habit of talking before thinking since being announced as ecb chairman . graves has said that there will be an inquiry if england do not beat a ` mediocre ' west indies in the upcoming three-test series .\ncarl froch has not fought since beating george groves at wembley last may . the former world champion has been out of the ring for nearly a year . froch had hoped to meet julio cesar chavez jr , but he lost to andrzej fonfara . but there are three big fights coming up where the winner could work for froch . james degale is the most likely next opponent for froch on his return .\nnew liverpool kit is first offering from us sports brand new balance . raheem sterling , daniel sturridge , martin skrtel and simon mignolet unveiled the new strip to fans at anfield on friday . sterling rejected a new # 100,000-a-week deal at liverpool last week . but liverpool are adamant that the 20-year-old will not be quitting this summer .\nthe massive fire started last wednesday and took more than 24 hours to put out . it came shortly after a major police raid on hatton garden safe deposit ltd. . former head of scotland yard 's flying squad said the fire and raid could be linked . john o'connor said the power outage and the proximity of the burglary was far more than a coincidence .\nof the top 10 airports worldwide for baggage handling , seven are in asia . kansai international airport has never lost a piece of luggage since opening in 1994 . staff place suitcases on carousels with their handles facing outwards . this makes it easier for travellers to collect their luggage .\njohn t. booker jr , 20 , was detained in manhattan , kansas , on friday . he was charged with multiple terror offenses , including attempting to use a weapon of mass destruction . the 20-year-old , who refers to himself as muhammad abdullah hassan , is said to have targeted nearby fort riley and planned to use an 1,000 lb car bomb . he had been counseled by an imam who said he was mentally ill .\nafrica 's millionaires are spread across the continent . the continent 's middle class is growing faster than other emerging markets . luxury brands are seeing a surge in demand in africa . but the future of luxury in africa is dependent on reforms . . the african rich like to stick to well-known global labels .\ncarlton cole 's west ham contract expires in the summer . the striker is unsure if he will be offered a new deal at upton park . cole says he has not spoken to sam allardyce about his future . the hammers boss does not know if he 'll be at the club next season .\neighth grade student domanik green charged with ` offense against computer system , unauthorized access ' he allegedly accessed a computer at paul r. smith middle school in holiday , florida , without permission . he then altered the image to two men kissing on the desktop . green maintains it was an innocent prank .\nkell brook is set to fight frankie gavin at london 's 02 arena . amir khan will fight chris algieri in new york on may 29 . khan has slammed brook for his recent comments about algieri . the bolton-born fighter takes on algiersi at the barclays center .\npatients tried and failed to book 34 million gp appointments last year . shambolic situation responsible for as many as a quarter of a&e visits . 90 % of patients were able to get an appointment in 2013/14 , study finds . but 10 % who could not amounts to around 33.8 million unsuccessful attempts .\nteachers say they are now being forced to spy on children during sensitive discussions . national union of teachers -lrb- nut -rrb- suggested government strategies designed to tackle extremism and terrorism have instead ` shut down debate ' in schools . teachers said they now feel nervous discussing controversial issues .\nnearly 1000 bags of the depressant drug kava seized from a vehicle where four unrestrained children were sitting in the back seat . northern territory police arrested and charged a 39-year-old man and a 26-year old woman following the drug bust in katherine ,320 kilometres southeast of darwin on sunday . police found approximately 20 kilograms of kava divided into 862 small bags and a small quantity of cannabis .\nharley jo skorpenske , from pittsburgh , suffers from lupus . she was left a cruel note on her car after stopping at a cvs in cleveland , ohio . the note claimed that she had no right to park in a disabled space , despite the fact that she has a handicap permit . her mother corinna skorpenke took to facebook to publicly shame the note writer and defend her daughter .\nthe old chapel in shipton-on-cherwell , oxfordshire , is on the market for # 599,000 . sir richard branson converted it into a home in the 1970s . he brought it into residential use while setting up his virgin recording business .\naustralian woman on a campaign to reunite a lost ring with its owner . roxy walsh found the ring while snorkelling at finns beach club in bali . the ring has what appears to be a family crest and has been engraved with the heartfelt message : ` darling joe , happy 70th birthday 2009 , love jenny '\nandrea bradley , 28 , and glen bates , 32 , have been indicted on aggravated murder charges in the beating death of their 2-year-old daughter last month . the couple could face the death penalty if convicted of all the charges . the toddler was brought to an ohio hospital last month dead and weighing only 13lbs . she had over 100 wounds to her body total and was beaten and starved to death .\ndepartment of public safety trooper billy spears was told he has ` deficiencies indicating need for counseling ' spears posed for the photograph with snoop at south by southwest in austin . the rapper posted the photo to instagram with the caption : ` me n my deputy dogg '\nchelsea travel to manchester united in the premier league on saturday . marouane fellaini has been in fine form for manchester united recently . thibaut courtois believes chelsea can deal with fellaini 's style of play . the blues goalkeeper believes eden hazard will win the pfa player of the year award .\nliverpool winger jordan ibe has been out for six weeks with knee ligament damage . ibe was injured in the europa league tie against besiktas in istanbul . brendan rodgers says ibe is ` absolutely outstanding ' in training . liverpool face newcastle at anfield on monday night . mario balotelli will miss the game with illness .\nviolent protests against death of freddie gray , 25 , turned violent in baltimore on saturday night . scores of protesters gathered outside camden yards , where the baltimore orioles beat the boston red sox in ten innings . police ordered protesters to disperse at 6.45 pm , but violence continued into the evening . at least two people were injured and 12 protesters arrested , according to police .\ndavid cameron will today claim that labour 's economic policies risk putting a million people out of work . he will say he is ` really angry ' at labour 's claim that the conservatives are ` the party for the few , not the many ' prime minister will vow to encourage more job creation by extending national insurance breaks .\nfour people , including two boys under the age of ten , found dead in tulsa . police believe the father killed his wife and children before using a gun on himself . officers found a handgun near the man 's body . police captain matt mccord said the bodies may have been in the house for ` as many as two days '\npsg play barcelona in the champions league quarter-finals this week . thiago silva believes luis suarez , neymar and lionel messi are the best three players in the world . the brazil defender says psg will try to impose their style of play on barcelona . psg beat barcelona 3-1 at the parc des princes in the group stages .\nmessenger is expected to smash into the planet 's surface on thursday 30 april . it has been orbiting mercury for four years and will pass behind it . nasa has released an image taken by the probe 's visual and infrared spectrometer -lrb- virs -rrb- to reveal distinct features such as volcanic vents and fresh craters .\nhibernian stand to make # 1million from anticipated sell-out home gates against rangers and the 11th place club in the premiership - currently motherwell . under spfl rules , play-off sides must hand over 50 per cent of their play-offs profits to lower league clubs within seven days . hibs chairman rod petrie has garnered support from hearts and motherwell for a resolution to slash the profits levied from play - playoff finalists from 50 per per cent to 25 per cent .\ncanada says its first airstrike against isis in syria was successful . canadian fighter jets bombed near raqqa , the de facto capital of the militant group . the canadian aircraft and their crews safely returned to base . canadian warplanes have conducted dozens of strikes against isis targets in iraq since november .\na letter was sent to an australian mother who was posting endless pictures and statuses about her baby daughter on facebook . social media expert sarah-jane kurtini says people need to be more aware of their ramblings on the web . she said it 's hard for people to know where the line stops when it comes to posting personal details online . she says parents should only share with people who care about their children .\ntottenham winger andros townsend was criticised by sky sports pundit paul merson after being called up to the england squad . merson said townsend should be ` nowhere near the squad ' after being taken off after 30 minutes against manchester united . but townsend scored england 's equaliser in their 1-1 draw with italy in turin on tuesday night .\nsonit awal , 4 months old , was buried under rubble when his house collapsed in the nepal earthquake . the nepalese army spent 22 hours searching for him , before giving up hope and leaving him to die . on sunday , soldiers returned to rescue him and lifted him from the rubble .\nphone operator mary doyle keefe died in simsbury , conneticut , aged 92 . she shot to fame by posing for norman rockwell 's iconic painting . rosie the riveter was on the cover of the saturday evening post on may 29 , 1943 . she became a symbol for feminism and economic power for american female workers during the war .\nlouis smith , 25 , has been sharing endless selfies on instagram . the strictly come dancing star is a medal-winning olympic gymnast . has been dating towie 's lucy mecklenburgh since december 2014 . says he works hard to get the body he has , so why not show it off ?\nleinster beat bath 18-15 in the european champions cup quarter-final . ian madigan kicked six penalties and george ford scored a try for leinster . anthony watson believes the pain of the defeat will help bath in the premiership . the english side have four games left to make the play-offs .\n# 120,000 -lrb- $ 177,000 -rrb- apple watch is the latest gift from luxury electronics firm goldgenie . the extravagant device is made with 24 karat gold , rose gold or platinum and your choice of strap - including python skin . one version of the extravagant watch is also adorned with a one carat diamond plus hundreds of other smaller diamonds in the strap . the watches are part of goldgenies apple watch spectrum collection and are available to pre-order now .\nnigel farage has vowed to stand down as leader if he fails to win a seat . but mep diane james insists the party would carry on without him . she named mep patrick o'flynn , mp douglas carswell and deputy chair suzanne evans as potential future leaders . a private poll put the conservatives on course to retain the seat by a small margin .\nhayley grimes , 42 , found baby peter 's body in a norfolk pond in 1988 . she was accused of dumping the baby and was told she had to find it . but police have now arrested the boy 's mother after dna tests . she told officers she had put the body in the lake after a stillbirth .\nreal sociedad are hopeful of signing burnley striker danny ings . liverpool , manchester city and manchester united have all shown interest . borussia monchengladbach have also shown an interest in ings . the 23-year-old 's contract at turf moor expires in the summer .\nworkers fled for their lives after the six-storey structure collapsed this afternoon . one man suffered head injuries and a broken arm and was taken to hospital . the collapse is just yards from where underground cable fire ripped through holborn . hundreds of staff at royal courts of justice and london school of economics evacuated .\na golden eagle was filmed giving a football a peck before rolling it . the bird then jumped up on the football with both feet and rolled it back . the video was filmed in north vancouver and shows the bird 's footwork . it was filmed by members of the north shore football club .\nthe third blood moon in a four-part series was the shortest eclipse of the bunch . the moon slipped fully into earth 's shadow at 4:58 a.m. pacific time -lrb- 7:58 p.m. , et -rrb- watchers in the eastern half of north america caught only a partial eclipse .\ntykeran hamilton , 25 , borrowed a bmw 3 series and drove around gloucester . he shouted ` watch this ' before accelerating up to 70mph at 7am . moments later he crashed into alan knight , 64 , who was on his paper round . mr knight died instantly from his injuries at the scene on stroud road . hamilton was jailed for 11 years after admitting causing death by dangerous driving .\npolice were searching for ufc champion jon jones in connection with a hit-and-run accident . the accident occurred in southeastern albuquerque just before noon on sunday local time . the driver of a rented suv jumped a red light and hit a pregnant woman . the woman was hospitalised with a broken arm and will get a cast on tuesday . the ufc champion ran from the scene but returned for the cash before fleeing again , police said .\nscream factor of rides at flambards in cornwall to be measured over easter . a reading on the ` fright ' decibels of the rollercoaster will be recorded . the readings will go into a report as local planning council considers a 480-house project .\nleicester will escape the drop zone for the first time since november . they must beat swansea by three goals and burnley fail to win at everton . nigel pearson 's side also face sunderland and burnly away . the foxes host qpr on the final day of the season .\njonathon stevenson asked for advice on left-handed leg spin almost 20 years ago . the letter from richie benaud , dated september 27 , 1996 , was signed by the australian cricket legend . accompanying the letter was a full sheet of notes about spin bowling for left-hand bowlers . mr stevenson shared the letter on twitter as a tribute to the ` great man ' benaud passed away in his sleep on thursday night in sydney after battling skin cancer .\nan oklahoma woman believes she has captured photographic evidence of the legendary blood-sucking beast , el chupacabra . vonda thedford , 55 , said she was driving along a pittsburg county rural road earlier this month when she spotted the mysterious carcass lying on the ground . when she stopped to look at the dead creature , she was disturbed to see it had ' a little truck ' in place of a nose , ` little toes ' and ` hair on its tail ' thedfords says the images have left people baffled and no-one has been able to identify the bloated and hairless critter .\nborussia dortmund beat paderborn 2-0 at signal iduna park . henrikh mkhitaryan and pierre-emerick aubameyang scored for the home side . shinji kagawa added a second for the hosts with 10 minutes to play . the win moves dortmund up to eighth in the bundesliga table .\nlebron james was at practice with his cleveland cavalier teammates on saturday . during a break in the action , james decided to practice his long-range shooting . the one-handed shot traveled almost the entire length of the 94-foot court . james flicked it overhand while his teammates watched him shoot . just before the full-court shot hit nothing but net , ` king james ' said : ` give me my money '\na man from central queensland has been charged with torture . a 29-year-old man went to bundaberg hospital on saturday with burns and fractures . the man , 32 , from suburban kepnock , will appear at bundaberg magistrates court on monday . police launched their own investigation despite the victim claiming to have amnesia .\nchampions league semi-final line-up confirmed with real madrid and juventus in the last four . barcelona and bayern munich will meet in the final in berlin on june 6 . cristiano ronaldo and co will face off against lionel messi and co. . juventus beat monaco 1-0 on aggregate to reach the last eight .\ntristram hunt , the shadow education secretary , was visiting a primary school in derbyshire . he asked the year six pupil who he would vote for in next month 's election . when the child said ukip , mr hunt replied , ` very good ' and asked why . the youngster replied : ` to get all the foreigners out the country ' ukip spokesman today claimed the boy had been brainwashed by the media .\njohnny kemp is believed to have drowned in montego bay , jamaica . he was scheduled to perform on a cruise ship . kemp was best known for the 1988 party anthem `` just got paid '' ` nsync covered the song in the 2000 album `` no strings attached ''\na man was bitten by a bull shark while spearfishing off the coast of palm beach , florida . the shark took a bite out of his back , torso and head . the victim was airlifted to st mary 's medical center 's trauma unit . he was conscious when he was flown to the hospital .\ntoddler dances to music as she balances three ceramic bowls on her head . the adorable video has gone viral in china after it was posted on tv . the toddler is believed to be from china and is aged between two and three . she may have been performing the traditional dance of the uyghur people .\njudy murray , 55 , does n't play tennis to stay in shape . she says she avoids it ` because my life is saturated with it ' instead , she tries anything from dancing , to pilates , to walking in the hills . this week : judy murray 's waist .\nkenya freezes 86 accounts linked to suspected al-shabaab supporters . the government has tracked supporters of the terror group since 2011 . 147 people were killed in a university siege last week . kenya also launched airstrikes monday targeting al - shabaab 's training camps in somalia .\nchinese-born american jia jiang wrote a book called rejection proof . he blogged about his fear of rejection for 100 days . jiang 's book is part self-help and part motivational/autobiography . he says he hopes to help others overcome their fears of rejection .\nveteran espn reporter shelley smith is set to return to work six months after announcing she had breast cancer . she will make her first appearance on april 30 , just before the nfl draft , interviewing heisman trophy winner marcus mariota . smith , 56 , revealed on twitter last october that she had cancer , and since then has undergone chemotherapy . she also revealed in an interview with sports illustrated that she will not be wearing a wig upon her return and is proud of her bald head .\ncrystal o'connor is the owner of memories pizza in walkerton , indiana . she told a local news station that she would not serve pizza at a gay marriage ceremony . she has now closed her store , but said she will reopen again . $ 850,000 has been raised for the pizzeria by supporters in just two days . o ' connor said in an interview that she stands by her decision . she also said that she does not hate gay people - she just does not support gay marriage .\nfrench artist vincent lamouroux has painted a derelict motel in la 's trendy silver lake neighborhood completely white . he used an environmentally friendly limewash to coat the so-called bates motel , including several towering palm trees and the fence around the rundown property . the motel is eventually expected to be torn down and replaced with a new development .\nevery woman surveyed in paris claimed to have been a victim of sexual harassment . half of them were assaulted before they were 18 years old , poll found . poll led to calls for a campaign to stem sexist or threatening behaviour on buses and trains . harassment can range from `` insults to other intimidating behaviour '\nchinese entrepreneur jia jiang spent 100 days deliberately seeking out situations in which he was likely to be rejected . he filmed the experiences and put them up on his blog . the book is a surprisingly entertaining study of rejection in all its many manifestations . it 's how we respond to it that matters . jia 's extreme positivity can grate at times but his message is sound .\nbritish comedian russell brand has appealed to this fans to sign up to the mercy campaign to save condemned bali nine duo from facing death row . brand lables andrew chan and myuran sukumaran 's efforts to smuggle 8kg of heroin out of indonesia as ` daft ' he urges his nine million twitter followers to sign to the petition in a desperate bid to spare their lives . the pair await their fate on what is infamously dubbed as ` execution island ' in java .\nthe woman was struck by lightning while sitting in her car in the uk . her hairdresser noticed she had minor burns on her scalp . days later , she noticed her vision was blurred and she could barely see . a scan of her retina revealed she had a hole in her macula . the hole was caused by the heat from the lightning bolt , doctors said . she underwent surgery to repair the hole , but was left partially blind .\nfemale prison guard and felon caught in oregon after 19 days on the run . rachel chepulis , 26 , helped wesley e. brown iii escape from north dakota jail . the 35-year-old is thought to have befriended single chepula while behind bars .\npretty agnese klavina , 30 , vanished on september 6 last year . she was driven away from celebrity puerto banus haunt aqwa mist . older sister gunta fought back tears as she described her sister as ` very beautiful ' she made emotional video appeal for information on her whereabouts . multi-millionaire property developer 's son westley capper and pal craig porter are being probed over her disappearance . pair are being investigated on suspicion of her illegal detention .\nroyston coates posted pictures of himself in his cell on facebook and encouraged friends to call him on his mobile . he is serving a 10-year sentence for wounding a man in a random attack . prison authorities have now shut down the criminal 's facebook account . comes after another inmate was filmed partying in jail in a video shared online .\nthugs caught on camera kicking off wing mirrors and smashing windscreens . around 30 vehicles were damaged at la marina auto sales in dearborn heights , michigan . police have launched a manhunt for the trio , who also targeted nearby businesses . owner freddy ali is offering a $ 1,000 reward for information leading to the arrest of the vandals .\nharlequins have announced tim swiel will return to the club next season on a full-time contract . swiel , 21 , spent four months on loan with quins earlier this term . the fly-half will return back to durban-based sharks in south africa .\nelizabeth scarborough is a university of south carolina student who has made a career out of impersonating taylor swift . the 21-year-old has learned to sing , dance , and act just like the singer . she started learning to play taylor 's music when she was 15 and has since learned to design costumes and mimic her mannerisms .\nrhiannon langley , 24 , from melbourne , is recovering from rhinoplasty in thailand . the blogger has been updating her instagram feed with pictures and videos since arriving in the country . she is part of the $ 5,190 ` bangkok nose job ' medical tourism package . rhiannon says she has been enjoying her post-op holiday , ` chilling out ' by the pool , getting mani pedis , and going shopping .\ndental assistant apparently removed baby from mother 's arms . tayler chaice buzbee was breastfeeding son , attley , at aspen dental facility in alabama on friday morning after developing agonizing toothache . she was told that the only available appointment was in just 20 minutes . but she was assured by employees that she could bring her baby to the facility . midway through the appointment , attly started to create a fuss . then , while dentist examined tayler 's teeth , employee removed attley from her arms - without permission and before he had finished feeding from his mom . she then placed him in a stroller , it is reported .\nbarry beavis , 48 , was fined # 85 after he overstayed in a car park by 56 minutes . he launched a legal bid to overturn the fine , saying it was unfair and disproportionate . but judges at court of appeal said it was not ` excessively high ' motoring groups accused judges of being ` out of touch ' and ` furious '\nlewis hamilton sprayed a hostess in the face with champagne on the podium in shanghai . the british racing driver has done it before after winning spanish and austrian grand prix . leading group which campaigns against sexism has condemned his behaviour . they say he should be forced to apologise for ` specially directing ' the bubbly into her face . others have called him an 'em barrassment to the uk ' and an ` ignorant clown '\nmichelle carter appeared in court in new bedford , massachusetts , on thursday . she is accused of encouraging the suicide of her friend conrad roy iii . the 18-year-old is said to be confused at being charged with involuntary manslaughter . her lawyers are trying to have her case moved out of bristol county . they say it 's ` impossible ' for her to receive a fair trial in the area because the district attorney is the victim 's third cousin .\nthe selfie stick was invented by hiroshi ueda , an engineer for camera company minolta . he came up with the idea after struggling to take pictures with his wife . the ` extender stick ' was designed for use with new compact cameras . despite being patented in 1983 , the extender stick failed to become a success . some 30 years later selfie sticks are now hugely popular .\njeff and joey stallings , both in their twenties , took ` bad batch ' of synthetic marijuana . the brothers , from mccomb , mississippi , fell seriously ill after smoking drug on april 6 . suffered hallucinations , vomiting , night sweats and violent shaking , and were put on life support . were released from hospital on april 13 , but are now facing serious medical issues . mother , karen stallings : ` they 're very , very addicted to it and want to get off it '\nthe hbo documentary series outsourcing embryos follows the growing gestational surrogacy industry in india . gianna toboni , a producer and host for vice , traveled to india to investigate the industry . she went undercover to meet with agents who claimed they could get her a caucasian baby in two to three months . one of the agents then offered to sell her and her team the baby over dinner .\nkyle iveson , 24 , held up a convenience store in clitheroe , lancashire . he threatened shop assistant karen brown , the mother of his ex-girlfriend . she instantly recognised him and reported him to the police . he escaped with # 650 but was arrested and jailed for three years .\narsene wenger 's side take on liverpool at the emirates on saturday . arsenal are currently third in the premier league , six points clear of liverpool . the gunners boss was concerned over theo walcott 's confidence after his disappointing run out for england in turin . arsenal welcomed back jack wilshere , mikel arteta , mathieu debuchy and abou diaby to first-team training this week .\nmark wood could be what england need with comparisons to simon jones . adil rashid has n't been bowling well enough for england . moeen ali looked rusty on day one but he is a good spinner . ben stokes was the pick of the bowlers for me on day 1 .\na year ago , 276 girls were kidnapped from their school by boko haram militants . a-listers from michelle obama to angelina jolie lent their support to the #bringbackourgirlscampaign . but unicef have revealed that more than 200 of these girls remain in captivity . scores of other children have gone missing since the attack in nigeria .\nstaying in a real house just about anywhere in the world is now possible . airbnb offers yurts in mongolia , castles in the alps and treehouses in new england . homestay.com lists options for single people , couples and families in cities . responsibletravel.com specialises in ethical travel by connecting tourists with local travel companies .\npizza plus fried chicken in gillingham , kent , was closed in may . owner kunaratnam kunanatha admitted seven health and safety charges . he was fined # 14,500 and ordered to pay # 2,793 in costs . council inspectors found mouldy tomato puree and filthy food preparation areas .\nheida reed says fans ' obsession with aidan turner 's body is sexist and undermining show . she says he is being ` objectified ' in a way that would not be tolerated if he were female . reed , 27 , stars in the period drama as poldark 's former lover elizabeth .\ncatholic church figures show number of women taking holy vows has trebled from 15 in 2009 to 45 last year . from a low of seven in 2004 , the figure has been rising for the past decade . theodora hawksley , 29 , was until recently a post-doctoral researcher in theology at the university of edinburgh . but at the beginning of the year she decided to become a nun .\ndavid cameron has hit out at church of england bishops over welfare policies . he insisted the coalition had spent five years ` trying to lift people up ' in easter message to christians , pm said work pay and responsibility were key . comes after church published guide to how 30million christians should ` approach election '\nmodel olsi beheluli claimed he appeared on channel 4 dating show my little princess . he was a member of gang responsible for selling ` significant quantities ' of drugs . officers seized more than # 4million worth of heroin and cocaine in raid . beheluli was jailed for 11 years and besim topalli , 29 , was jailed for 31 years . officers found stacks of money , counterfeit identity documents and equipment used for drug dealing in gang 's ` stash house ' in brent .\nnapoli beat wolfsburg 4-1 on thursday to reach the europa league last 16 . rafa benitez guided liverpool to the champions league in 2005 . but he has won just one league title since leaving valencia in 2007 . benitez has been a cup specialist , but his league record is poor .\ndavid t cotton drove into doors of club liv in manchester after friend was refused entry . totton , 36 , had been walking through city centre when he saw argument . he went over to act as ` peace-maker ' but was told he could n't enter . t cotton then drove up to doors at low speed and nudged them with his bumper . he eventually left and handed himself over to police , claiming it was a ` joke ' judge at manchester crown court refused to accept his claim and banned him from driving for three years . t cotton , who has a history of violence , was shot in the head in 2006 .\nhunger games star josh hutcherson , 22 , looks remarkably like eastenders ' martin fowler . other eastenders lookalikes include ross kemp , bruce willis and jada pinkett-smith . celebrities liz hurley , jacqueline bissett and david gandy also have lookalike .\nmr yuan , from changsha , was involved in the accident on march 24 . none of the women knew he had been seeing anyone else . some had been with him for up to nine years , and one had a son . the women discovered his secret after doctors contacted all of them . police have launched an investigation into allegations of fraud .\ndispute sent by german president karl doenitz on may 8 , 1945 . it was seized from luftwaffe chief robert von greim when he was arrested . the wwi fighter ace then killed himself rather than be tortured by the russians . the typed order is expected to fetch # 21,000 when it goes under the hammer .\nsecond row al kellock has announced he will retire at the end of the season . kellock will take up a new role with the sru . the 33-year-old has amassed 56 international caps and made over 200 appearances for glasgow and edinburgh . he played his 150th game as skipper in the 34-34 draw at leinster last friday .\nsurfer chris blowes , 26 , was attacked by a great white shark on saturday . the man was bitten in the thigh and is in a critical condition in hospital . witnesses said the shark was seen swimming away with the surfer 's leg in its mouth . the incident took place at fishery bay , on south australia 's west coast . the shark victim was taken to hospital before being airlifted to adelaide for further treatment .\npepsico said today it is dropping aspartame from diet pepsi in the u.s. in response to customer feedback . the sweetener has been linked to a range of health problems , although research has shown it to be safe . diet pepsi , caffeine-free diet pepsi and wild cherry diet pepsi will now contain sucralose , another artificial sweetener commonly known as splenda .\nstunning chart shows how the most famous constellations have changed . it was created by graphic designer martin vargic from slovakia . he used data from the european space agency 's hipparcos satellite . it shows how stars have shifted over the last 98,000 years . the big dipper will look like a duck and orion will lose his head . lyra would have faced the wrong way 52,000 year ago .\nhalf of hospitals in england are letting patients jump nhs queues for cataract surgery if they pay for it themselves , new figures reveal . some are charging up to a ` shameful ' # 2,700 for one eye -- treble what it costs the health service . cataract treatment is being rationed in england to save money .\nten friends from the east coast and san francisco rented a house on caspar cove in mendocino county , california , to hunt for abalone . five of them went out on sunday - three died . witnesses said at least some of the men appeared to be inexperienced abalone divers who chose rough , choppy waters near several dangerous rock outcroppings . the three men who drowned were overcome by the churning water and crushed against the sharp rocks on shore .\nthe cave bear femur , pierced with two holes , was found in 1995 in slovenia . it was heralded as the world 's oldest musical instrument . but now a study says it 'm not an instrument at all - but rather , simply a bone chewed by hyenas and left in a cave . the research suggests historians have been fooled by these phoney objects . all such ` instruments ' attributed to neanderthals are simply chew toys of animals .\nholland america line : two passengers were found dead inside their stateroom on the ms ryndam . `` the cabin was immediately secured , and the authorities were notified , '' holland america said . fbi spokesman moises quiñones said authorities were on scene investigating .\nfc united of manchester 's new 5,000-capacity stadium broadhurst park is nearing completion . the club 's new ground will be officially opened on may 29 . the ground cost around # 6.5 m and is set to host benfica . the new ground is a far cry from the glitz and glamour of old trafford .\ndash-cam footage shows dodge durango hurtling at 60 mph towards bus . 36 7th grade students on board shriek with fear as car hits them . five children hospitalized with minor injuries . driver of the suv , 44 , had to be cut out of wreckage . police investigating whether he had a seizure before or during crash . he is in a serious condition in hospital . police refuse to release second video of pupils reacting to crash .\ntottenham winger , 28 , was reportedly interviewed by police officers under caution . the everton player is thought to have been at suede nightclub in manchester with friends . the 18-year-old waitress claims he grabbed her , slapped her and ripped her top . she fled to the toilet in tears and afterwards told police lennon had left her with a bruise .\nbruce jenner told diane sawyer on friday that he 's always felt female and now plans to live as a woman . he said his third wife kris knew about his desire to be female . diane sawyer said on monday that kris had declined to comment on her husband 's gender transition . on monday , close family friend kathie lee gifford said on nbc 's today that kris did n't know bruce 's secret and she 's still ` trying to get her act together ' when it comes to dealing with the news . kathie said she was shocked by the news and that she had a frank conversation with bruce before his tv interview aired .\ntina fey was seen out with her husband jeff richmond and daughter penelope friday morning in new york city . this is the first time the emmy-award winning writer , producer and actor has been spotted since the tragic suicide of dr. fredric brandt on april 5 . dr. brandt was said to have been devastated in his final weeks over a caricature of himself on fey 's show unbreakable kimmy schmidt . the character , played by martin short , is played by comedy veteran martin short and had drawn unflattering comparisons to real-life dr brandt . dr brandt 's other celebrity clients included madonna and model stephanie seymour .\nfloyd mayweather vs manny pacquiao tickets for the mega-fight sold out within a minute of going on sale on thursday evening . one ticket for the may 2 bout was advertised for $ 70,790 -lrb- # 47,000 -rrb- on the secondary market . a pair of tickets for a seat at the mgm grand in las vegas were posted on ebay at a cost of $ 12,600 -lrb- # 8,300 -rrb- per seat .\ntony orrell , 56 , weighed 38 stone and his wife debbie , also 56 , tipped the scales at 18 stone . he was too big to work and was scared to sit in normal chairs . the pair have now lost a combined weight of 29 stone after taking up zumba . tony now runs his local slimming world class and goes to the gym once a week .\nvideo maker used four plastic cups and a marker pen to create his creation . he holds two stacked cups up to the camera and rotates through the various hairstyles . the video maker claims to have been influenced by japanese comics . according to one reddit user there are a total of 294 possible combinations that can be made from rotating the cups .\nus youtube user elman511 cracked open an over-sized egg that was laid by one of his hens . in the video , he finds a standard-sized egg inside , along with yolk and white . he then cracks the smaller egg , which also has a yolk , and finds another egg inside . the unusual occurrence is down to a counter-peristalsis contraction . this is when a second oocyte -lrb- yolk -rrb- is released by the hen 's ovary before the first egg has completely traveled through the oviduct . this means that the first egg is added to the second oocytes , which then travels down the oiduct and is covered in a shell .\nlianne hindle was rushed to north manchester general hospital in december . she gave birth to daughter poppy at 2am , but died three hours later in the same bed . the 37-year-old 's death came just months after three babies and one mother died at the maternity unit . her partner chris barnes and his sister karen have called for action to prevent further tragedies at the hospital .\ncarlos colina , 32 , pleaded not guilty in cambridge district court to charges of being an accessory after the fact to assault , battery causing serious bodily injury and improper disposal of a body . remains , including a torso and limbs , first were found in a duffel bag discarded outside the building of technology company biotech saturday morning . the head of victim jonathan camilien , 26 , of somerville , was found in his apartment building 's recycling bin . authorities have said that the death is considered a homicide , though colina has not been charged with murder .\neuropean space agency working with nasa to send a lander crashing into a small asteroid 's moon at 14,000 mph . experts hope the impact will be large enough to alter its orbit . asteroid impact mission , or aim , will also be the agency 's very first investigation of planetary defence techniques .\nalice dreger took to twitter to express her horror at the class . she was at east lansing high school , michigan , to watch her son 's class . the respected professor tweeted 45 times about the class and its contents . included horror stories about people who had pre-marital sex . also complained of incorrect information being handed to students . school has denied it only teaches abstinence , saying it was that day 's lesson .\ngraziano pelle gave italy the lead against england at juventus stadium . southampton striker scored his second international goal . pelle has not scored in the premier league for saints since december . the 29-year-old is the only british player in antonio conte 's italy squad .\nriver plate are keen to sign radamel falcao from manchester united . colombia forward spent eight years with the argentine side before leaving for porto in 2009 . vice president matias patanian admits ` the doors are open ' to a deal . the 29-year-old has struggled on loan at old trafford this season .\nshelley dufresnein , 32 , from st charles parish , louisiana , took a plea deal on thursday that gets her out of serving any time behind or having to register as a sex offender . she posted a celebratory selfie on instagram just hours after discovering she had avoided a prison sentence . however she is still facing charges over a threesome she had with the same student at destrehan high school and another teacher .\nolivia grant spent time in phuket in thailand before the start of filming series two . she stayed at the luxurious sri panwa resort , which has an infinity pool overlooking the andaman sea . the resort also offers yoga classes and a breathtaking cool spa . the red-light district of patong beach is where zen goes to die .\ntexas health resources has denied allegations of poor training and improper preparation in seeking dismissal of a lawsuit by nurse nina pham . pham contracted ebola while caring for thomas eric duncan , the first u.s. patient to die from the deadly disease . a doctor on october 16 videotaped pham , who was in a hospital bed , in images later made public .\nap mccoy claimed victory in the grade one aintree hurdle on thursday . the jockey rode jezki to victory after ruby walsh 's arctic fire fell at the final hurdle . the irishman has promised to call it quits if he wins the grand national .\nworld champion lewis hamilton wins chinese grand prix in shanghai . hamilton 's teammate nico rosberg finishes second for mercedes . ferrari 's sebastian vettel third in front of mercedes team-mate kimi raikkonen . rosberg unhappy with his own driving after complaining to pit wall about hamilton 's pace .\nhuw thomas suggested on an online forum in 2006 that england flags were for a ` simpleton ' or a ` casual racist ' the labour candidate in ceredigion , west wales , said he made comments as a ` young student ' he said he ` deeply regret ' writing the post and apologised ` wholeheartedly '\nan adorable fox cub was set free by a wildlife expert named simon cowell . the young fox had been stuck for around 40 minutes and was in desperate need of being set free . mr cowell , who runs the wildlife aid foundation in leatherhead , surrey , travelled to the cub 's location in his car . the cub is clearly distressed and spits at the wildlife expert 's incoming hand before making a lunge at it with its mouth open .\nmata was substituted by chelsea boss jose mourinho on new year 's day last year after being substituted against southampton . the spaniard has scored three goals in his last five games for manchester united . the midfielder has been playing at the peak of his powers under louis van gaal . mata is close to fellow spaniard ander herrera and ryan giggs . the 29-year-old is also close to david de gea and wayne rooney . mata believes united can win the premier league this season .\npamela clothier , 92 , was admitted to hospital and forced to leave her home . her family was under the impression she planned to sell the house . age uk were told she was moving into a nursing home and her property was sold . pensioner says she was left with nothing and her dog was taken to an animal sanctuary . ageuk has apologised and offered her # 1,000 compensation .\n34-year-old star of the only way is essex has expanded her range . includes swing tops , blouses and a pair of floral kimonos . says she designs everything with her customers in mind . ` you know big is beautiful , ' she says . her range is stocked in 16 evans stores nationwide .\nnumber of bottles of fake tan sold in 2014 fell by nearly a quarter from last year . value of sales down by 19.3 per cent to # 14.5 million , according to kantar worldpanel . experts say women are ` tending towards a more natural look '\nfour in ten britons have # 77 worth of unwanted items lying around . 43 % of people say they ca n't be bothered to return items . a fifth are too busy , believing it takes half an hour to return . confusing processes are also a major deterrent to sending items back . women 's dresses , shoes and trousers are the most commonly unreturned items .\ngeneral keith alexander , the retired four-star general and former chief of the national security agency , has warned that the u.s. and her allies are at an ever growing risk of a systemic cyber-assault . ` the greatest risk is a catastrophic attack on the energy infrastructure . we are not prepared for that , ' he warned .\njessica ennis-hill won heptathlon gold at the london 2012 olympics . the 29-year-old has not competed since the same event in 2013 . ennis hill gave birth to her son reggie last summer . she will compete in the sainsbury 's anniversary games in london this july .\nmichael rogan , 42 , was rushed to hospital for the birth of his eighth child . he died when a deer hit by another car flew through the windshield of the van he was driving . his wife , niki , and their seven children suffered minor injuries . niki gave birth to a son , blaise , on sunday and he was baptised .\nfederal jury awarded more than $ 270,000 to marcia eisenhour . jury found that former justice court judge craig storey violated her right to equal protection . storey wrote in 2007 , ` i 'd love to harvest your sweet grapes , ' and called eisenhour the ` most gorgeous thing alive ' storey was a judge for weber county justice court from 1984 until 2010 .\nap mccoy retired from racing on his final day at sandown park . the 40-year-old won 4,358 races and won the champion jockey trophy . mccoy was presented with the trophy by arsenal fan ian wright . the irishman finished third in the bet365 handicap hurdle .\nnuts are a good source of useful nutrients and have other health benefits . two brazil nuts provide 100 % of daily required dose of selenium . almonds are high in fibre , too . a handful -lrb- 28g -rrb- of mixed nuts a day reduces the risk of heart disease by 29 % and cuts the risk . of dying from cancer by 11 % .\ntanguy pepiot was running in the 3,000 m steeplechase at a track meet . he had a clear lead on his rival meron simon , who competes for the university of washington . but pepiot slowed down to celebrate his win - and was overtaken .\nsouth korean leads by three shots going into final round of ana inspiration . kim sei-young carded a three-under-par round of 69 on saturday . world no 1 lydia ko shot her second consecutive over-par score . american stacy lewis is second after she shot a 68 .\njordon ibe posted a video on instagram of him performing the moonwalk . the liverpool winger is recovering from a knee injury . the 19-year-old has broken into the first team set-up this season . liverpool face a struggling newcastle in their next premier league outing .\ntim tebow will sign with the philadelphia eagles on monday , espn 's adam schefter reports . tebow 's last regular-season nfl game appearance was in december 2012 with the new york jets , from which he was released in 2013 . the new england patriots made tebow one of their final roster cuts in 2013 and he spent last year as a college gridiron television commentator .\nrichie benaud was farewelled at a small private funeral in sydney on wednesday . the 84-year-old cricketing legend was attended by only immediate family members . his wife , daphne , led the funeral party which was led by his brother and sister-in-law . prime minister tony abbott offered a state funeral but daphne benaud declined . following the funeral , a memorial was held at the australian golf club .\nleo greene , 39 , was stopped by police at salt lake city international airport . he was asked to hand over keys to his car but drove off and crashed into two fences . greene then ran onto the tarmac and was arrested after eight-minute chase . he faces multiple charges including driving under the influence , fleeing and resisting arrest .\nthe pup was snatched from dockweiler state beach , west of the city 's international airport , at 3:20 a.m. sunday . witnesses said four people wrapped the pup in a blanket and left in a car . the initial police report said the animal was a small seal . but a companion pup that escaped and was later found on the beach is a sea lion , according to peter wallerstein , the president of the group marine animal rescue .\neverton beat southampton 1-0 in their premier league clash at goodison park . phil jagielka scored the only goal of the game in the 16th minute . james mccarthy believes ross barkley is capable of handling pressure . the midfielder said he thought barkley was ` different class '\nellen brody 's three daughters , alexa , danielle and julia , have spoken out to say that their mother is not a murderer and that it was an accident that she drove on to the tracks . brody was killed along with five passengers when a train crashed into her suv on the tracks at a railroad crossing in early february . the cause of the collision remains unknown .\nspain are in search of a reboot after their world cup failure . the identity of the national team has been eroded by time . the natural place to look for fresh , young , well-drilled recruits is in the academy graduates . juan bernat is the latest in a string of thriving spaniards . of spain u21 's starting line-up at the 2013 euros , only de gea has n't played uefa football this season .\nluke shambrook was last seen on the national park at 9.30 am on good friday . it is understood he wandered off and has not been seen since . a beanie believed to have belonged to luke has been found on monday afternoon , west of the devil 's cove and candlebark campsite in lake eildon national park . police remain hopeful they will find the boy who went missing from the campsite on friday .\nkim min hyeok appeared to stamp on mu kanazaki 's face during a j-league clash . the south korean defender was only shown a yellow card . kanazaki scored the winner for kashima antlers in a 3-1 win . some japanese fans have demanded the expulsion of hyeoks and all south koreans from the j - league .\nlouis van gaal 's aim was to get manchester united back into the champions league . the dutchman has delivered on his first season with united third in the premier league . united are eight points ahead of fifth-placed liverpool in the table after saturday 's win over aston villa . van gaal 's side are looking like the manchester united of old .\nan airport worker at laguardia airport in new york was filmed doing push-ups on the runway after loading up a plane . nbc journalist jeff rossen later uploaded the 12-second clip of the pro-active employee to social media along with the caption : ` hardest working man at la guardia ... from my window '\njohn noble , 53 , shot himself in the head in front of stunned hotel guests at the m resort on easter sunday . he sent a 270 page letter to the las vegas review-journal explaining his shocking public suicide . noble said he was going to kill himself because he lost his lifetime free pass to the m resort 's buffet for harassing female employees . included in the detailed package was a two hour dvd in which a clearly upset noble addresses the camera and a letter entitled ` the curse ' noble also posted a furious facebook message hours before his suicide attacking the women he believes got him banned from the casino .\nchief secretary to the treasury snapped with call girl brooke magnanti . the pair were pictured at bar one in inverness as part of the nip festival . comes as david cameron faces growing revolt over his ` flat-footed ' campaign . mps point finger of blame at prime minister 's australian election guru lynton crosby .\nandrew chan and myuran sukumaran were executed by indonesia on wednesday . their deaths will result in short to medium term frictions between canberra and jakarta . but the australian public 's view of indonesia will take much longer to subside . australia and indonesia have a number of common interests that neither side can abandon .\nconor mcgregor is set to fight jose aldo in las vegas on july 11 . the irishman has a new tattoo of a tiger on his stomach . mcgregor has already got a picture of a gorilla eating a heart inked upon his chest . the 26-year-old is challenging aldo for his featherweight title .\nthe open championship will be held at st andrews in july . sir nick faldo and tom watson will compete in their final open appearances . faldo will cross swilcan bridge for final time on 25th anniversary of his victory there . watson received a special exemption from the r&a to play his final open in 2015 .\nandrew hichens is first person to be trained and equipped as a ` tri-service safety officer ' he is trained to respond to crimes , fires and medical emergencies . father-of-two will work with one pc and two police community service officers in hayle , western cornwall .\nsally jones , 45 , ran away from her home in chatham , kent , to wage jihad . mother-of-two joined isis in raqqa , syria , the terror group 's de facto capital . footage shows her leading women fighters in a hate-filled chanting session . experts say it is the first ` real evidence ' that she is involved with brigade . jones was the lead guitarist in an all-girl punk band called krunch in the 1990s . she fled the uk with her son jojo , who she now calls hamza .\njeralean talley of inkster tops a list maintained by the los angeles-based gerontology research group . gertrude weaver , a 116-year-old arkansas woman who was the oldest documented person for a total of six days , died on monday . talley was born in rural montrose on may 23 , 1899 . she credits her long life to her faith and her husband 's death in 1988 .\ngreece 's unspoiled island is a foodie heaven . the island has been invaded by many nations over the years . the best place to eat is at the water way restaurant in spartia , on the southern coast . the monastery of saint geronimo is a great place for a break from the day 's activities .\nstuart mccall insists his rangers future will not be decided before the end of the season . mccall has restored a buoyancy to the club and won approval from supporters . the former motherwell boss arrived last month on a deal until the end . of the year .\naustralian chernae noonan has stopped benefit cosmetics from using the term ` brow bar ' exclusively . the cosmetic giant launched an application to trademark the term in australia in 2011 . ms noonan founded eyebrow shaping business the brow bar in 2003 . benefit is owned by louis vuitton moet hennessy -lrb- lvmh -rrb- , which is run by world 's 13th richest billionaire , bernard arnault .\nmanchester united are on a good run of form after beating liverpool and manchester city in recent weeks . angel di maria was sent off against arsenal in the fa cup in march . paul scholes says the red card allowed louis van gaal to turn to his fringe players . united are still some way off challenging for the title .\nkit , a rescue cat in utah , has become an unlikely mother to a litter of abandoned puppies . video footage shows the friendly feline named kit letting the four newborn chihuahuas nuzzle her fluffy belly . the pups were apparently discovered in a discarded shoe box on tuesday afternoon and taken to the humane society for immediate treatment . a note on the cardboard container , left on a woman 's car , indicated they were born last friday and their mother had died .\ntwo ryanair planes collided as they taxied to a runway at dublin airport . passengers escaped injury , but the incident caused disruption for hundreds of travellers . photos show winglet of one plane dangling by a thread after it clipped the other . it 's the second time in six months two ryanair aircraft have collided at ireland 's busiest airport .\nliverpool face arsenal in the premier league on saturday . raheem sterling has been linked with a move to arsenal . sterling said he was not ready to sign a new contract at anfield . the england winger has been offered # 100,000-a-week by liverpool .\njenson button failed to complete qualifying for the bahrain grand prix . the mclaren driver stopped on track in each of the practice sessions on friday . button will start 20th and last on the grid for sunday 's race . fernando alonso managed to get a mclaren into q2 for the first time this season .\nsamantha crossland stole # 22,642 from child 's play day nursery in dewsbury . the 30-year-old was in a trusted position at the nursery and was promoted . she was told she faced a custodial sentence unless the money was paid back . nursery owner lynda quigley received # 22.643 via bank transfer on april 22 . crossland was sentenced to a 12-month community order and 180 hours unpaid work .\ndeputy police commissioner kevin davis said freddie gray should have received medical attention at the spot of his arrest . baltimore police commissioner anthony batts ruled out the possibility of his resignation . gray died on sunday , april 19 , after he ` had his spine 80 per cent severed at his neck ' while in police custody . six officers have been suspended with pay as local police and federal authorities investigate . the leader of a group of local ministers called on batts to resign immediately . he said the police department is ` in disarray ' and batts has a ` lack of viable leadership capabilities '\neasy-to-drink cocktails often contain high amounts of alcohol . the zombie is a fruity cocktail made from three different types of rum . the negroni contains equal parts gin , campari and sweet vermouth . aunt roberta is considered to be the strongest cocktail in the world .\npaulo ferreira expects jose mourinho to stay at chelsea for ' a long , long time ' the portuguese manager is on the cusp of winning his third premier league title . ferreiro played for chelsea for nine years after following mourinho from porto . the 36-year-old would also like to see didier drogba extend his stay .\nattorney general eric holder tells justice department personnel to stop soliciting prostitutes . holder says soliciting prostitution `` threatens the core mission of the department '' if someone is caught with a prostitute , they 'll be suspended or fired , holder says . the directive comes after a report found dea agents in foreign postings attended sex parties .\nrepresentative darrell issa asked about use of private email in december 2012 . but the state department refused to answer until clinton had left the department . issa was chairman of house committee on oversight and government reform . clinton is currently on a two day tour of iowa , opening her 2016 campaign .\nluke shambrook has been missing from a campsite in victoria for four days . the 11-year-old , who is autistic , was last seen leaving candlebark campground in fraser national park at 9.30 am on good friday . a family saw a young boy matching luke 's description near the devils river on sunday . police say they are still hopeful luke will be found . a large search is being carried out by a medley of search and rescue teams .\nphil mickelson is one shot behind andrew putnam going into the third round . tiger woods confirmed his return to golf at the masters next week . mickelon has struggled for form this year and carded an 82 at the waste management open . justin rose continued his upturn in form with a 68 at the shell houston open .\nhand-drawn flightplan and eyewitness account of bombing for sale . documents belong to captain robert lewis , co-pilot of enola gay bomber . also includes his flight logs and report of the bombing raid on august 6 , 1945 . collection is being put to auction by his son stephen in new york .\ncourt records show walter scott had been jailed three times for missing payments . but there was no warrant out for his arrest when he was pulled over . scott was shot dead by officer michael slager after he fled from his car . his family believe he fled over fears he would be arrested for being behind on child support payments . slager has been charged with scott 's murder .\nyob stole phone from man dying of hypothermia in south shields , tyne and wear . scott stephenson , 19 , found victim but took his phone and abandoned him . he was due to be jailed for the offence but failed to turn up to previous hearing . stephenson shouted and swore outside court after he was re-bailed for sentence . he ranted outside court as members of the public looked on in horror .\njaimie hessel was on a 7-mile journey across new york city . claims driver cut across lanes and drove down a bus lane . uber sent her a bill for $ 16,000 - but later said it was a clerical error . company has since refunded the entire cost of her ride .\nmichael wilkie was found guilty in january of murdering his third wife , shelby wilkie , in 2012 and is serving a life sentence without parole . amanda casey , also of north carolina , was married to michael wilkie for four years and had a daughter with him before the couple divorced . she said he became controlling and physically abusive and attacked her when she was pregnant with their daughter and threatened to kill her if she tried to take the child away from him . casey left him in 2006 and remarried but did not warn shelby about his abusive side .\ntupu sultan was shot dead outside his takeaway in south shields last night . police believe the 32-year-old was targeted deliberately and have launched a manhunt . mr sultan , who lived in sunderland , was originally from bangladesh . his sister said he was shot in the neck or side of head by two men on a motorbike .\na gopro camera captured the falcon 9 booster landing on a barge . the unverified video shows the rocket drifting onto its target before a gust of wind topples it over . a deleted tweet by musk says that the rocket appeared to be suffering from ` stiction in the biprop throttle valve , resulting in control system phase lag '\nbarcelona travel to paris for the first leg of their champions league quarter-final on wednesday . lionel messi has scored 45 goals in 44 games for barcelona this season . psg manager laurent blanc has described messi as ` unstoppable ' the second leg will be held at the nou camp on april 21 .\nbruno labbadia has been appointed as hamburg 's new coach . the 49-year-old has agreed a 15-month contract with the club . labbadi had previously coached the club in 2009-10 . hamburg are currently in last place in the bundesliga .\nelizabeth jane howard , who died in 2014 , collected ancient jewellery . she amassed a collection of greek , egyptian and roman pieces , some up to 3,500 years old . the nine lots are to go under the hammer at bonhams auction house in london on thursday .\nisrael-based amited has built a ` thermal protection ' case for phones . called amited , it uses micro-fans to blow heat away from the device . sensors in the case monitor the phone 's temperature and if it gets too hot , optimal will cool the device using two built-in micro - fans . and if it 's too cold , optimal can heat the phone using resistance coils . amited is launching a campaign to fund production of the case on 9 april .\narsenal under-21s fell to a 3-2 defeat by middlesbrough on monday night . gunners goalkeeper deyan iliev was sent off inside 15 minutes . emmanuel ledesma converted the resulting penalty . lewis maloney and yanic wildschut scored for the hosts .\nex-another level star dane bowers , 35 , charged with common assault . he is accused of hitting his ex-fiancee miss wales sophie cahill , 31 . ms cahill was allegedly hit in front of her young son in february . bowers will appear before magistrates in south london next month .\ngarry monk wants to claim a season-first against hull on saturday . swansea are yet to pick up a point after an international break this season . the swans are currently in eighth place in the premier league . monk 's side have eight more games to collect the five points needed to beat their best ever points total of 47 in 2011-12 .\nmother of six kalimah dixon said she was awakened by a neighbor yelling there was a fire early on monday morning . she managed to get all of her children , aged one to 14 , out of the decatur , georgia condo safely . but all that was left of her rented condo was a pile of rubble . dixon said : ` my children are homeless . they have nothing . they lost everything '\nborder collie don nudged the controls of the john deere gator tractor . he sent the vehicle down a bank and onto the m74 in south lanarkshire . don was unhurt but the incident caused major tailbacks during rush hour . traffic scotland tweeted that there may be hold-ups ` due to a dog taking control of tractor '\nedward fride is the pastor at christ the king church in ann arbor , michigan . he warned that crime had gone up in the area while budget cuts meant that there had been a ` reduction in the availability of an armed police response ' he suggested churchgoers attend classes to gain a concealed pistol license . the diocese of lansing said that guns did not belong in a catholic church while it was not appropriate to hold classes on church property .\nfloyd mayweather fights manny pacquiao in las vegas on may 2 . the fight will cost us viewers up to $ 100 -lrb- # 67.48 -rrb- for the fight . it is expected to break the pay-per-view record of $ 152million set by mayweather 's fight against canelo alvarez in september 2013 . sky won the bidding war to screen the fight on british shores .\nmanchester city lost 4-2 to manchester united in the derby on sunday . wayne rooney says united 's game plan was to exploit city 's midfield weaknesses . city are considering letting yaya toure and samir nasri leave in the summer . ashley young says united fans were the loudest he 's ever heard them .\nunicef says more than 800,000 children have been forced to flee their homes in nigeria . the number has more than doubled in just less than a year , the agency says . kids are being used by boko haram as combatants , cooks , and lookouts , it says .\namelia morton , 23 , from birmingham weighed 12.5 stone . she was shocked into a post-graduation diet after being told by her father : ` boys do n't fancy fat girls ' she spent almost # 1,000 on food in her first term alone . with the encouragement of her sister - a slim size 8 - amelia signed up for the cambridge weight plan and revolutionised her diet . in just five months , amelia 's weight plummeted from 12 stone to 9 and a half stone .\nrichard graham is fighting to retain the marginal seat of gloucester . he faces contempt of court proceedings if he fails to obey an order by the high court to take down the twitter posts . old etonian former diplomat was accused of posting tweets to ` ingratiate himself ' with voters by ` whipping up local feeling ' about the forthcoming case concerning the killing of a teenager .\ngovernment inquiry to look at impact of migrant children arriving in schools . education secretary nicky morgan ordered officials to start ` mapping the pressures ' on the state schools system . comes less than six months after she told the head of ofsted it was not ` helpful ' to warn that schools are struggling to cope with an ` influx ' of migrants .\nthere are no known northern white rhinos left in the wild . experts are scrambling to preserve the subspecies . sudan , the last known male northern white rhino , is at the ol pejeta conservancy in kenya . his fate rests on his ability to conceive with the two female rhinos at the conservancy .\nhigh rise resort dating to the 1960s is bidding for unesco world heritage status . it wants the same recognition as stonehenge , the taj mahal and the great wall of china . sociology professor mario gaviria argues that benidorm should be praised for being one of the few places where beach holidays are accessible for all .\nellie laing , sbs news reporter , has hit back at an article in the australian . the article suggested she and other journalists were hired for being young , white and female . jim carroll , the news and current affairs director of sbs , was reported to be taking a more ` commercial ' approach to the network . laing has written an open letter to critics saying she was hired for passion , not because she ` scrubs up '\nthe series of ads , which launched last october , featured the 50-year-old actor playing two characters : a handsome lowe in a slick suit who is always the directv customer and then an ` odd or awkward alter-ego ' who was a cable user . the ads all ended with lowe saying : ` do n't be like this me -- get rid of cable and upgrade to direc tv ' the cable company complained to the better business bureau 's national advertising division -lrb- nad -rrb- that the ads featured a number of false claims . the watchdog has ruled that several of the campaign 's claims could n't be substantiated . direc television has said it disagrees with nad 's findings with respect\nespn 's first take host stephen a. smith took a controversial stance on domestic violence . he said floyd mayweather jr 's boxing career should be looked at independently from his domestic violence history . smith received a one-week suspension in july for claiming women can play a role in provoking men into violence .\nhandyman and girlfriend in her 30s complained about six times . neighbours in bay ridge , brooklyn , heard them ` fighting and making a racket ' woman who complained said : ` i 'm not hurting anyone ' she is now four months pregnant . brooklyn has highest number of complaints about loud sex in new york . city 's 311 helpline recorded 133 complaints between january and february .\nmodel , 26 , stars in victoria 's secret 's latest lingerie campaign . promotes brand 's dream angels range of underwear . elsa hosk , 26 and jasmine tookes , 24 , also star in the shoot . each of the girls carries the pink striped umbrella .\nneil phillips was england 's team doctor at the 1966 world cup . phillips was promoted to senior doctor after alan bass ran out of holiday . he was also england 's doctor for the defence of the jules rimet trophy in mexico . phillips left the fa in 1974 following sir alf ramsey 's departure .\nsunderland are under pressure to suspend adam johnson . the england star has been charged with grooming and three counts of sexual activity with a 15-year-old girl . johnson , 27 , will appear before peterlee magistrates on may 20 . the case is expected to be sent to crown court .\ntheresa dybalski won $ 1million off a $ 5 scratch-off lottery ticket . the ticket was given to her by a friend during a birthday lunch . her friend has since died , so dybalski plans to share her winnings with the friend 's family .\nforeign-born blacks made up just 3.1 per cent of the black population in 1980 , but made up 8.7 per cent in 2013 . about 50 per cent hail from the caribbean and 36 per cent come from africa . immigrants from jamaica and haiti make up approximately a third of the foreign-born black population .\nthe former bbc economics editor broke her silence over her fling with ed miliband . she made headlines last week after it emerged she had been ` secretly ' dating the labour leader when he first met his wife justine in 2004 . miss flanders , 46 , accused the media of ` raking over ' mr miliband 's past in the run-up to the election .\ndelrea good , 52 , was driving by herself on a dark country road in portage , indiana on march 23 when she was stopped by a cop . good says she did n't immediately pull over for the flashing lights because she did n't think it was a safe place to stop . she was charged with resisting arrest and has no criminal record . good has been posting to her facebook following the incident and decided to assign herself the hashtag #femalesafetymatters . good also posted a picture of bruises on her arm from the arrest and claimed that the officer was too rough with her .\nchelsea set to confirm the signing of nathan allan de souza on wednesday . the brazilian attacking midfielder will join compatriots willian , ramires , filipe luis and oscar at stamford bridge . the 19-year-old made his name at the 2013 fifa under 17 world cup . nathan tweeted the news he was set to sign for chelsea by revealing he was headed for contract talks and a medical .\nstuart , 33 , claimed he had chlamydia after his ex-girlfriend sophie contracted it . she was outraged to find she also had the std . he claimed he was just tired and that it was caused by car exhaust . but his lies were exposed on the jeremy kyle show .\ncarol cole , 17 , from michigan , was found stabbed to death in the woods outside shreveport , louisiana in january 1981 . her family and police in bossier parish , louisiana , had tried to identify the body for 34 years . carol 's sister jeanie phelps posted craigslist ads across texas and louisiana with pictures of the teen . bossier detectives posted a facebook page for ` bossier doe ' with a digitally-rendered drawing of the victim based on her skeletal remains . a bossier 911 dispatcher stumbled across the facebook page and contacted police . dna testing confirmed that the body found in the louisiana woods matched carol 's dna .\nreddit users compare the most effective punishments they received as children . many parents use embarrassing toys and clothes as punishment . others use boring chores and make their children write apology letters . one mother used her son 's bad behaviour as a cheap way to improve her house .\ntobacco companies including philip morris and r.j. reynolds filed suit this week . they say fda guidelines violate their free speech rights . fda issued guidance in march that if significant changes are made to a product 's label , the product requires new approval . the suit argues that those guidelines go too far and are too vague .\ngroup b strep infects 400 newborns in the uk every year and one in ten will die . current guidelines only recommend testing women deemed to be ` at risk ' but programme at northwick park nhs hospital in london offered screening to all expectant women . not a single case of bacteria spreading to infants among those tested .\nchris ramsey has overseen just one victory since becoming qpr manager . west ham 's sam allardyce and bournemouth 's eddie howe have both been linked with ramsey 's job in the summer . the former tottenham coach believes it would be unfair for his future to depend on rangers avoiding the drop .\ne! announced a new documentary series about bruce jenner 's transition . the eight-part , one-hour series is set to premiere july 26 . jenner recently went public with the fact that he is transgender . the series will offer a closer look at his relationship with his former wife kris .\nandy murray will play novak djokovic in the miami open final on sunday . murray beat tomas berdych 6-4 , 6-3 in the semi-final . the british no1 will marry fiancee kim sears in dunblane on saturday .\nsurvey of 1,001 british muslims found that one in four sympathised with isis . eight per cent of those polled had ' a lot of sympathy ' for the likes of jihadi john . one third of young and female muslims also have sympathy for the jihadi runaways . one-third of all muslims felt they are viewed with suspicion by non-muslims .\nin-form winger aaron murphy scored twice in a seven-try romp . huddersfield secured a 38-14 super league victory against catalans dragons . murphy has now scored six tries in his last five appearances . ukuma ta'ai also scored twice for the giants . huddle ended a three-match losing run .\nthe fire started in the prado dam flood control basin , near the city of corona , california , on saturday evening . it was sparked by a cooking stove . hundreds of people were forced to evacuate their homes . by sunday morning , the fire had grown to 1.6 square miles .\nsarah wilson , 41 , opened up in a candid interview about how her battle with mental illness drove her to believe her life was n't worth living . she said anxiety brought her to a point where she ` could n't see the point of continuing ' ms wilson said anxiety is quickly becoming the ` new depression '\nmary todd lowrance , 49 , is a teacher at moises e molina high school in dallas , texas . she turned herself into police on thursday morning and was released at 4.40 pm . police chief craig miller said the teacher had been in a relationship with the student for a couple of months .\njenna louise driscoll , 25 , was due to face brisbane magistrates court on monday . she was remanded on bail to appear at the court last week , and did not show . police issued an arrest warrant after she failed to show up . the 25-year-old was charged last year with three counts of bestiality . she also faces seven charges of supplying or trafficking drugs , one charge of unlawful wounding and three charges of bestialsity with her dog .\nthe international organization for migrants says there may be three more boats in distress . eu ministers propose a 10-point plan to help address the crisis . the maltese prime minister slams human traffickers . a rescue operation is still underway for people who were on a ship from libya .\nadam leheup , 34 , allegedly raped a woman after meeting her on a blind date . he allegedly insisted on having sex with the 25-year-old despite her shouting ` no ' lehe up , who is a university of greenwich graduate , denies raping the woman . he met the woman on the ` let 's date ' mobile phone app in july 2013 . the pair went to gordon 's wine bar before going back to her flat . leheups ` took her bra off because she wanted a back massage '\narsenal drew 0-0 with chelsea at the emirates stadium on sunday . theo walcott says the gunners have been the ` best team in europe ' the england international has struggled to maintain a first team place . walcott believes arsenal could lift the premier league next season .\nrahm emanuel won a runoff election against cook county commissioner jesus ` chuy ' garcia . emanuel thanked voters for putting him through his paces and said he will be a better mayor because of it . the 55-year-old mayor ascended the stage at plumbers local 130 union hall tuesday night to the sounds of u2 's beautiful day . emanuel was joined on stage by his family , including -lrb- l to r -rrb- , daughter leah , wife amy and son zachariah .\nlawyer says lord janner could be tested by experts to prove he has dementia . the 86-year-old labour peer could still face civil action from alleged victims . police have identified 25 people who say he attacked them in care homes . each could claim up to # 100,000 , but family say he is innocent .\nwest ham boss sam allardyce is out of contract at the end of the season . swansea boss garry monk has been touted as a potential replacement . but monk insists west ham already have the right man in place . the hammers are ninth in the premier league table .\njames polkinghorne , a former ice addict , was found dead at jessica silva 's marrickville home on mothers day in 2012 . ms silva stabbed him five times with a kitchen knife after he threatened to ` cave her f *** ing head in ' and ` bash the f *** ' out of her . she has visited his father to ask for forgiveness for the horrific incident . mr polking horne reassured ms silva that he holds ` no anger ' and no hatred .\ncharlotte bevan , 30 , had come off risperidone before her daughter was born . four days after giving birth , she walked out of bristol maternity hospital . police found her body two miles away on a cliff face of the gorge . newborn zaani tiana bevan malbrouck was later found close by . nhs guidance says mothers should take risperids only if doctor says they need to .\nformer air force sergeant michelle manhart , 38 , was arrested at valdosta state university , georgia , on friday . she was seen being handcuffed and driven off in a patrol car . video footage shows her struggling with officers , who force her to the ground . she refused to release the flag , which she says belongs to the entire united states . manhart was demoted after posing nude for playboy magazine in 2007 .\npdsa has warned that more than half of pets will be overweight in five years . carrots are the worst culprits for bunny obesity , the charity said . one in three dogs and one in four cats are already said to be overweight . pet fit club puts pets on a six-month diet and exercise programme overseen by vets .\nnepal 's government and army are struggling to coordinate and organize aid distribution . the country relies on only one international airport to receive and deliver aid . the airport is still chaotic and many planes have been turned away . roads in kathmandu are open , but remote areas are largely inaccessible .\naimee craven , 32 , of hull , took home # 20 tesco product after spotting it on train last week . care worker thought it had been left by its owner , but british transport police tracked her down . officers took mother-of-one , who cares for elderly , off train and taken her to police station . accused of trying to shield item from cctv as she walked off train in brough with it .\nporto fans wore capes to celebrate their champions league win . shivnarine chanderpaul and steve davis are heroic despite their advancing years . jamie carragher and gary neville 's analysis is often a better watch than the game they 're commenting on . alastair cook 's poor form continued in england 's first test against the west indies .\nbritish actor daniel craig was named on tuesday the first global advocate for the united nations ' mine action service . he will spend the next three years raising awareness for the u.n. mine action service and political and financial support for the cause . ` you have been given a license to kill -lrb- as james bond -rrb- , i 'm now giving you a licenseto save , ' u.s. secretary-general ban ki-moon told craig at united nations headquarters in new york .\nrudy gestede has scored 20 goals in the championship this season . the blackburn striker has revealed his desire to play in the premier league . swansea , crystal palace , hull and west brom have all shown an interest in the 26-year-old . gestedes says he is ` ready ' to play at the top level .\non monday , jodi arias was sentenced to life in prison without the possibility of parole for murdering her ex-boyfriend travis alexander . she has now reported to prison to begin serving her life sentence . in her first mugshot , taken in 2008 , arias smiled on purpose because she knew the picture would be widely published . prosecutors said she heartlessly killed alexander because he wanted to break up with her .\nhassan hussain and yassin james gunned down sabrina moss in street . the men sprayed bullets at mother-of-one miss moss and her friends . they were on a night out to celebrate her 24th birthday in kilburn , london . but fiona cullum sheltered hussain and james ` hours after the murder ' she then lied to officers when quizzed about hussain after he was arrested . cullum , 25 , was today handed a suspended sentence by judge stephen kramer qc .\nsix-year-old girl sexually assaulted by boy of the same age at school . police powerless to act because age of criminal responsibility in england is ten . girl 's mother says school officials refused to remove boy from her daughter 's class . she has now been forced to move her daughter to another school .\negyptian muslim brotherhood leader mohamed badie sentenced to death . he was one of 13 defendants handed death sentences by a cairo court . 37 people , including an american-egyptian citizen , were jailed for life . defendants found guilty of plotting unrest in months after military overthrew morsi .\na hidden camera inside a plane at miami international airport caught baggage handlers stealing items . miami police say they 're working to reduce the number of luggage thefts . the tsa has fired 513 officers since 2002 for theft . john f. kennedy international airport has the most claims of thefts from luggage .\nsunderland host newcastle united at the stadium of light -lrb- sunday 4pm -rrb- lee cattermole will return to the starting line-up for sunderland . wes brown faces up to a month on the sidelines with a knee problem . will buckley and emanuele giaccherini are still out for the black cats . newcastle defender massadio haidara will miss the rest of the season .\njon stewart will host his last show on august 6 after 17 years . he revealed he was becoming increasing depressed by american politics . he said he was looking forward to not having to watch 24-hour news networks . stewart will be replaced by trevor noah , 31 , who has been accused of antisemitism .\nfrench president francois hollande vows to ` show no mercy ' if soldiers are found guilty . 14 soldiers accused of abusing children as young as nine in exchange for food . investigation into alleged abuse has been underway since last year but only made public yesterday . french defence ministry has vehemently denied covering up the scandal .\nlarge parts of the rail network will be shut for repair work this weekend . football fans will face travel misery despite 30 games scheduled . all routes out of london euston will be affected , forcing fans onto the roads . labour accuse ministers of failing to learn from boxing day chaos .\nsurvey by mumsnet found 37 % of parents had not told their children how to dial 999 . and 65 % of them said their children did not know the difference between 999 and 911 . campaigners say toddlers under the age of five should be taught how to call 999 .\nleaked documents reveal tory election chiefs have given candidates a letter-writing kit to target farmers , pensioners and women . the model letters have been drawn up with carefully pre-crafted messages designed to woo voters . women told they are ` vital to the success of the british economy ' while pensioners are praised for their ` wealth of experience '\nhull face swansea in the premier league on saturday . tigers are currently in 15th place , three points off relegation . midfielder david meyler is confident his side will stay up . hull have a tough run-in with five of their last eight matches against top seven .\nindianapolis metropolitan police department will change its uniform . command staff members will wear white shirts instead of blue . the change is part of an effort to ensure `` accountability , professionalism and transparency , '' police say . impd officials say the change is not related to any specific , individual incident . officers ' collars .\npolice in macon , georgia found the bodies of 10 dogs and three cats in the home of a former animal shelter worker . catherine lynn smith , 50 , had worked at the animal center for two months in 2012 before being fired for reasons not disclosed . her home had been auctioned off and was found littered with over 1,000 empty beer cans . smith was arrested tuesday evening and charged with 13 counts of animal cruelty .\naaron hernandez , 27 , was sentenced to life in prison without parole for the 2013 murder of odin lloyd . he was booked at mci cedar junction in walpole , massachusetts on wednesday . the prison is about a mile and a half from gillette stadium , where hernandez used to play tight end for the new england patriots . hernandez has vowed to appeal the decision .\nlisa skinner , 52 , shot her estranged husband bradley skinner , 59 , after he broke into the house she shared with her mother around 6 p.m. sunday . police said mr skinner was armed with both a pistol and a large knife . officers say mrs skinner armed herself with a shotgun then went into the garage , where he followed her and aimed his pistol at her . she then opened fire with a shotguns , hitting him in the chest , causing life-threatening injuries . mrs skinner was shot by police but is expected to survive .\nbatsman kumar sangakkara will continue to play for surrey this season . sri lanka lost to south africa in the cricket world cup quarter final . sangakkara scored a record four successive centuries at the world cup . sports minister navin dissanayake has asked him to reconsider his decision .\nsamantha rawcliffe crashed her car in may last year , losing all control of her body . the 40-year-old was shaking uncontrollably and lost control of bladder repeatedly . she blamed her shock and shaking on the accident but feared it was something else . tests revealed she was suffering functional neurological disorder - an umbrella term for a wide variety of neurological symptoms that doctors can not explain . the mother-of-two is now confined to her home , unable to walk and relies on a mobility scooter .\naccording to a recent study , a third of australian women are not finding time for their hobbies . the survey of 1,025 australian parents , conducted by officeworks , found that more women had foregone personal interests for work commitments or to finance ` more important ' things in the last week . clinical psychologist and happiness institute wellness expert dr paula watkins says its important to create space for the things we love to be happy .\nkhloe kardashian has hit back at critics of her instagram post reaction to monday night 's riots in baltimore . the 30-year-old reality tv star posted the message ` pray for baltimore ' to instagram on monday night as protests turned to riots . while over 417,000 followers liked the photo , it did not escape criticism .\nundersheriff tim albin , of the tulsa county sheriff 's office in oklahoma , quit his job monday . he was named in a 2009 internal investigation released friday that showed deputies had expressed concerns about robert bates ' performance . bates , 73 , accidentally shot dead eric harris , 44 , after he was tackled to the ground . he mistakenly thought he was holding a taser , not his handgun , when he fatally shot harris . albin was named as the second in command at the sheriff 's department .\npolice : the suspect , kenneth morgan stancil iii , is white and the victim was white . investigators are looking into whether the killing was a hate crime , police say . the victim , ron lane , was a longtime employee at wayne community college . the suspect was arrested in daytona , florida , after he was found sleeping on a beach .\nraheem sterling has put off contract talks until the summer . the 20-year-old has two years left on his # 35,000-a-week deal at liverpool . sterling 's current contract expires at the end of the season . liverpool face arsenal in their premier league clash on saturday .\nexeter chiefs beat newcastle falcons 48-13 at sandy park . chiefs will now face gloucester in the european challenge cup semi-final . exeter scored six tries to one against the falcons . thomas waldrom , byron mcguigan , sam hill and dean mumm scored tries .\nwest ham will move into the olympic stadium for 2016-17 season . club are confident that the deal to move into stadium does not contravene domestic or european legislation . fresh questions were raised about the award of the 99-year lease to west ham on tuesday . it was suggested the deal may contravened european state aid law .\nandy murray 's wedding to kim sears will be low-key . murray has invited no celebrities to the wedding in dunblane . the tennis star has close friends such as james corden and jamie delgado . novak djokovic and tim henman are among the guests who wo n't be attending .\nleicester city beat swansea city 2-0 at the king power stadium on saturday . leonardo ulloa and andy king scored the goals for the foxes . the win lifts nigel pearson 's side off the bottom of the premier league . swansea remain in the relegation zone . esteban cambiasso was named the man of the match .\nfight broke out on oman air flight 102 from london heathrow to muscat . one man moved seats after complaining that the plane was too full . a fellow passenger objected to the man moving near to him and a row broke out . one passenger allegedly attacked another with a shoe during the fight .\nbail hearing revealed that kyhesha-lee joughin suffered massive bowel injuries after being struck days before her death . the three-year-old was allegedly locked in a bedroom by her father , forcing her to defecate and urinate in the room . her father matthew lee williamson and his friend christopher arthur neville kent , who also lived in the house and cared for the child , are each charged with manslaughter and child cruelty . they have both been released on bail .\nlisa mcelroy , 50 , who teaches legal writing at drexel university , reportedly sent the inappropriate message on march 31 . she reportedly sent it under the subject line : ` great article on writing briefs ' when recipients opened the enclosed link , philly.com reports that they were directed to a video of ' a woman engaging in a sexually explicit act ' following a number of complaints , the college issued an apology to students .\nauction house pulls items from sale of items made by japanese-americans in wwii internment camps . items were to be auctioned off on april 17 . `` star trek '' actor george takei helped organize a campaign to stop the sale . the items were given to a historian who opposed internment .\nwladimir klitschko faces bryant jennings on saturday night in new york . tyson fury hopes to fight klitschka in a stadium fight in september . fury is the mandatory challenger to the long-reigning heavyweight champion . fury believes he is the man to end klitschco 's reign in england .\nu.s. president barack obama visited jamaica on thursday . he was the first american president to visit the island since ronald reagan in 1982 . he met world-class sprinter usain bolt and posed with him in his signature pose . obama said he ` had to say hi ' to bolt saying ` nobody 's ever been faster '\nisis releases more than 200 yazidis , a minority group in northern iraq . most of those released were women and children ; the rest were ill or elderly . the freed yazidis were received by peshmerga , who sent them to irbil . isis previously released scores of other yazidis since attacking the group 's towns last year .\nalison saunders trained at legal firm where lord janner was a qc . she secured a barrister 's training contract at 1 garden court chambers in 1983 . the bar council confirmed janner worked at the legal firm from the mid-1950s up until 1986 . cps insists pair had never met , despite three-year overlap of time . janner , 86 , was cleared of 22 child sex offences last week .\nnoah ginesi , 16 months , reached out for a hug from prince charles . the prince of wales was visiting the rheged centre in cumbria . he was there as part of his work for the campaign for wool . charles was also visiting members of the westmorland county agricultural society .\nhorry county police said the mother of an abandoned baby girl turned herself in on thursday night after seeing herself on television . the baby girl was discovered struggling to breathe while trapped inside of a tied plastic bag by austin detray on thursday afternoon . the 8lb 6oz newborn was taken to hospital where she is listed in stable condition . the woman is currently in hospital and will be charged once she is released , police said . the infant is healthy and is in the custody of the social services department .\nscooter 's coffee in omaha was hacked for 24 hours on sunday . staff were locked out of the page and images of smoothies and cookies were posted . instead , the picture feed was filled with images of pornography . company said that the images were similar to those posted on crayola 's page .\nsome fans of lucille ball want her statue removed from a park in her hometown . they say the `` ugly '' likeness does not do justice to the `` i love lucy '' star . the life-size bronze statue in celoron , new york , has been likened to conway twitty .\nmichael juskin , 100 , and his wife rosalia , 88 , were found dead in their new jersey home on monday morning . a relative discovered the bodies after michael went into the bathroom and committed suicide with a knife . prosecutor john l. molinelli said the couple had a ` history of domestic issues ' but that a motive had not yet been determined .\nleah rogers and ryan flanaghan spotted the bear at a boot sale in bude , cornwall . mr flanaghan , 22 , recognised it as a rare princess diana di beanie baby . the bear is one of just 100 made around the world for the princess of wales memorial trust . the pair are now selling the bear on ebay , with a starting bid of # 20,000 .\nliris crosse , 32 , grew up in baltimore , maryland . modeled for zoli , elite models ny , michelle pommier and seventeen magazine . received rejection due to her voluptuous shape . now a size 18 , she is breaking into the uk .\na transgender woman has launched a campaign on social media to protest bathroom bans . brae carnes of victoria , british columbia is protesting an amendment to a canadian transgender rights bill . carnes has begun posting photos of herself applying makeup and even changing in men 's public bathrooms . this to protest a proposed amendment to the bill that would allow business owners to decide whether or not to allow transgender individuals to use facilities corresponding to their gender .\nprofessor dr milton wainwright claims to have found aliens in earth 's stratosphere . he says he has found ` extra-terrestrial organisms ' floating 25 miles -lrb- 40km -rrb- above the planet . the organisms test positive for dna , and have masses that are ` six times bigger than the size limit of a particle which can be elevated from earth to this height ' dr wain wright 's research has been widely criticised by the scientific community as being backed by poor and flimsy evidence .\nerica ann ginneti , 35 , pleaded guilty in december to institutional sexual assault and disseminating sexually explicit materials to a minor . the married mother of three from philadelphia had been facing seven to 14 years in prison . judge garrett page sentenced her to 3-23 months , including the first 30 days in jail and the next 60 on house arrest . she also faces three years ' probation , 100 hours of community service and will have to register as a sex offender for the next 25 years . the former math and calculus teacher first approached the victim in may 2013 when she chaperoned the senior prom and invited him to come work out at her gym .\nnestled in the surrey countryside in bagshot , pennyhill park is a five-star hotel . it boasts a 45,000 sq ft spa , 21 treatment rooms and eight swimming pools . the england rugby team used it as their training base for the world cup .\ncoast guard cutter boutwell arrived in san diego on thursday with more than 14 tons of cocaine , valued at $ 424 million . the cocaine was seized by u.s. and canadian forces in 19 separate incidents in the eastern pacific ocean near central and south america . it included a 10 1/2 - ton bust from a coastal freighter , the largest maritime drug interdiction in that area since 2009 .\nuber driver emerson decarvalho charged with assault after crash . cyclist was shouting at him and banged on his window . driver allegedly ran down the cyclist in san francisco . the cyclist was left with several broken bones . uber offered to help in the investigation of the incident .\ncambridge women 's boat crew will compete in the 161st oxford-cambridge boat race . the women 's race will be held a week before the men 's at henley . the first women 's boat race was in 1927 and was jeered by male spectators .\nliverpool and newcastle played at anfield on monday night . the premier league match was preceded by a minute silence . 96 liverpool fans died at hillsborough in 1989 . former newcastle captain bobby moncur laid flowers at the memorial . the match took place two days before the 26th anniversary of the disaster .\ndana marie mckinnon , 24 , was driving a 2008 mitsubishi eclipse when she lost control of her vehicle on may 18 , 2013 . she slammed into the vehicle of 42-year-old orlando businessman vihn vo , causing both vehicles to spin out . mckinnon suffered minor injuries in the collision . tests later showed that her blood-alcohol level at the time was .163 - more than twice the legal limit . she was arrested tuesday and charged with dui manslaughter and vehicular homicide .\nsnp leader nicola sturgeon says politicians should not complain if snp calls the shots . polling last night showed nationalists are extending their lead over labour . snp threatening to all but wipe out labour north of the border . but ed miliband refused four times to rule out going into power-sharing agreement .\nf friedrich brandt , 23 , was a member of george iii 's german legion . he was killed by napoleon 's forces at the battle of waterloo in 1815 . the soldier was found with a musket ball between his ribs . he is the first complete skeleton to be recovered from the battle .\ntennis coach judy murray has revealed she is looking forward to becoming a granny . but she said her son andy has to get the french open and wimbledon first . mrs murray , 55 , also said she would be a ` very active granny ' and already has plans to introduce her grandchildren to tennis .\njay hart , 24 , could be heard laughing on the mobile phone footage . he was caught romping with the mystery blonde in his club t-shirt . clitheroe fc striker was dismissed after the clip was shared on social media . he has now begged for his 25-year-old girlfriend bryony hibbert 's forgiveness .\ngreg hardy has been suspended by the nfl for 10 games at the start of the 2015 season . hardy was convicted by a judge last july of beating , strangling and threatening to kill ex-girlfriend nicki holder . holder told police that hardy choked her , slammed her against a bathtub , threw her to the floor and threatened to kill her after a fight at his charlotte condo . hardy signed with the dallas cowboys last month . the decision to ban hardy followed a two-month nfl investigation that started after the dismissal of his domestic violence case in february .\nbelle gibson , a fitness blogger , has admitted she made up her cancer story . wendy l. patrick , phd says we fell for her because ` we love heartwarming stories ' she says we like people who are credible and we trust them even when they are lying . she says there is a bit of belle in all of us .\nnew aerial photos of china 's reclamation work in disputed waters released by philippine army . they show intense recent chinese construction over seven reefs and shoals in the spratly archipelago of south china sea . philippines voiced alarm about chinese ` aggressiveness ' in the area as it launched giant war games with the united states . the balikatan 2015 joint philippines and us military exercises involved 11,500 personnel .\nhistorian claims a series of disasters caused the collapse of ancient civilisations . he says the ancient egyptians , babylonians , minoans and mycenians were unable to cope with a series of disasters . these included droughts , famines , climate change , earthquakes , invasions and internal rebellions . professor eric cline says the collapse was a ` perfect storm ' that caused the civilisations to collapse . the events took place between 1225bc and 1177bc .\ngeorgina chapman , 39 , shared an instagram image of a large bouquet of flowers he had bought for her on tuesday . the birthday gift comes four days after it emerged he would not face criminal charges for allegedly groping an italian model . ambra battilana , 22 , told police weinstein touched her breasts and put his hand up her skirt during a ` business meeting ' at his manhattan office last month . the manhattan district attorney 's office investigated the model 's claims but announced last friday that it has decided not to prosecute weinstein .\nforeign fighters in syria and iraq are ranked below battle-hardened chechens . many westerners believe ultra-violence is the only way to make their name in syria . they are eager to take part in sickening isis propaganda releases . one former prisoner has revealed they are marginalised within organisation . he said fighters from tunisia consider themselves isis ' military wing .\nus-owned cereal giant warned shareholders its profits could be hit by government moves to close tax loopholes . kellogg 's uses a complex web of companies to do business here . two main uk subsidiaries are owned by an operation based in the republic of ireland . kellog 's effectively paid no corporation tax in britain in 2013 .\nbritish airways pilots reveal where passengers should sit to get best views of their destination . sydney harbour , the golden gate bridge and alcatraz can be seen from the right hand side of the plane . the grand canyon can be viewed from the left side of a flight to san diego .\nbali nine duo andrew chan and myuran sukumaran are set to face the firing squad . the pair lost their most recent appeal for clemency . president joko widodo said ` it will only be a matter of time ' before they are executed . the executions will take place upon their conclusion , he said .\nlorenzo simon , 34 , and michelle bird used michael spalding for slave labour . simon killed the 39-year-old and dismembered his body before stuffing it in a suitcase and throwing it into birmingham canal . simon was found guilty of murder and jailed for a minimum of 19 years . bird was convicted of assisting an offender and sentenced to two and a half years .\n`` contrary to rumors circulating on the internet today , joni is not in a coma , '' her publicist says . a friend of joni mitchell has filed a legal petition seeking to be named her conservator . leslie morris is mitchell 's friend of more than 44 years .\nmolly wood , 74 , was killed after being run over by her sister 's car . the burgundy kia venga had its engine running and ` lurched forward ' pensioner 's sister , 70 , was also injured in the incident in pontefract .\nbody of kyle knox found three weeks after he vanished trying to climb britain 's highest mountain . mr knox , from london , was last seen alive at the foot of ben nevis on march 31 . the 23-year-old was reported missing the following day when he failed to return to his hotel in fort william .\njason warnock has been identified as the man who pulled matthew sitko , 23 , from his car as it dangled over a canyon cliff in lewiston , idaho on wednesday morning . but after saving the man , warnock said he could not stay and rushed away from the scene . he later told police he had been working at the time of the crash and had to get back to his job . sitko is believed to have suffered from an emotional episode before he crashed his car and only suffered minor injuries .\nbilly-anne huxham was found by police on thursday night after she made contact with a family member . the 18-year-old was abducted from her home in caboolture , queensland , at 6am on tuesday . her ex partner carl garry chapman , 32 , has been charged with a string of offences including assault , torture and deprivation of liberty . ms huxam 's facebook page was inundated with posts by friends concerned for her welfare .\nsilverman said she was paid $ 10 for 15 minute set at new york comedy club . but her male counterpart todd barry was booked for the slot . she claimed club owner al martin paid her $ 50 less than barry . but martin revealed the story in a facebook post - prompting apology . silverman said the story should not be used to undermine gender pay gap . she said she regretted mentioning martin by name in the video .\nterry mccarty was just six years old when he was engulfed with flames . his brothers filled a bowl with kerosene which was set alight and accidentally knocked on to him . he endured 58 operations and cruel taunts from bullies who called him freddy krueger . but he was determined to overcome the harrowing experience that had crippled his confidence for years . he applied to a washington fire service in october 2011 and passed his training .\ned miliband accuses david cameron of ` taking his eye off the ball ' in libya . claims pm failed to secure a stable transfer of power after 2011 revolution in libya , he says . but pm says labour leader is wrong to blame him for the refugee crisis . tories demand apology for ` outrageous and disgraceful ' remarks .\nkfc opened up their kitchens to skeptics and fans alike on saturday . the fast food giant hoped to dispel myths around the quality and freshness of their ingredients . hundreds of people were allowed to take a look behind the scene of 219 stores and roam from freezer to fryer . health experts still say that no matter how hygienic the conditions of the 612 kfc outlets in australia are , the food they make just is n't good for you .\na man was caught allegedly trying to smuggle two pounds of cocaine worth $ 30,000 in pairs of sneakers at jfk airport earlier this month . on april 7 , thenga adams , flying from guyana in south america was arrested after customs at jfk in new york searched the sneakers in his luggage . when customs opened the soles of the athletic shoes they found $ 30k worth of cocaine , say airport officials . adams faces federal drug smuggling charges .\ncalifornia mother of two elizabeth sedway , 51 , was kicked off a flight to san jose , california on monday . she suffers from multiple myeloma - a rare form of plasma cancer . alaska airlines later apologized to the family for mishandling the situation . sedway posted an emotional video on her facebook page monday showing her family being kicked off the plane .\njuventus striker carlos tevez is set to leave the serie a champions . tevez 's contract with juventus runs until the end of next season . the 31-year-old has always said he wants to finish his career at boca juniors . boca president daniel angelici has told tevez to terminate his contract with the italians first .\ngiant hailstones the size of plums crashed down over the south on tuesday . twitter user arke usa from bryant , arkansas , filmed the ice balls peppering his backyard and noisily plopping into the swimming pool . the national weather service received 170 reports of hail , twenty of which detailed stones at least two inches in diameter .\neva kor , 81 , embraced oskar groening , 93 , in court last week . she called for the prosecutions of former ss officers to end . but her co-plaintiffs said she should not have taken part in the trial . mrs kor and her twin sister were forced to endure horrifying medical experiments at auschwitz .\ncheryl heineman , 45 , was arrested wednesday at central avenue elementary school in kissimmee , florida . the married mother of three is accused of selling xanax and acid to an undercover cop . her 20-year-old lover , jack lindsey , is also facing the same charges .\ncarl froch had hoped to fight julio cesar chavez jr in las vegas . but the former middleweight world champion was stopped in nine rounds by andrzej fonfara . froch has expressed a desire to finish his career with a bout against the mexican . the 37-year-old has not fought since knocking out george groves in a re-match last may .\nboris johnson was given a big kiss on his right cheek by a female voter . he was spotted with red lipstick marks on his other cheek as he left . london mayor was campaigning in ramsgate , kent , with tory craig mackinlay . mr johnson said he ` profoundly and passionately ' hopes to stop nigel farage from winning the target seat of south thanet .\njames anderson broke sir ian botham 's record of 384 wickets . anderson took his 384th test wicket on friday in antigua . the 32-year-old believes he can still improve as a bowler . anderson also won his 100th cap for england against west indies .\nphil rudd , the drummer for ac/dc , pleads guilty to charges of threatening to kill and possession of drugs . rudd , 60 , was arrested in november last year after police found methamphetamine and cannabis at his home . rudd fired several employees because his solo album flopped in the charts , court summary says .\nthe third day of the trial against suspected aurora , colorado movie theater shooter james holmes continued on wednesday . holmes is charged with multiple counts of murder and attempted murder . twelve people died and 70 were wounded when holmes allegedly opened fire on a packed theater in aurora , colorado for a midnight showing of the dark knight rises in july 2012 . if convicted , holmes could be sentenced to death . his defense attorneys want the jury to find him not guilty by reason of insanity .\nalix bussey , 23 , from durham was hit by a car and died on holiday in mexico . she was on holiday with boyfriend jonathan boyle , also 23 , in riviera maya . it was their first trip abroad together and she had texted to say she was having ` best time ever ' her family said she was devoted to the children she taught and they were devastated by her death .\ntwo jurors told the court they were followed by a van as they tried to get into their cars on wednesday . robert cusanelli of boston 's whdh-tv was banned from the bristol county courthouse and was told he was not allowed to drive a vehicle for the ` purpose of reporting this case ' judge susan garsh warned the tv station there could be repercussions following the incident that was reported in court on thursday . hernandez is charged with the june 2013 shooting death of odin lloyd , who was dating his fiancée 's sister .\nthe death toll in nepal has surpassed more than 5,000 . a majority of the missing are nepalese , indian and chinese residents . technology has played a huge role in helping families share their worries . one woman was able to connect with her family nearly four days after the quake .\nliverpool boss brendan rodgers insists raheem sterling will not leave anfield this summer . rodgers was reacting after sterling said he was ` flattered ' by interest from arsenal in an interview with the bbc . rodgers said sterling was still young and ` sometimes makes mistakes ' the 20-year-old has been offered a new # 100,000-a-week contract at anfield .\namerican eagle flight 2536 was scheduled to fly about 125 miles from dallas-fort worth international airport to wichita falls , texas , on sunday night . the plane left nearly a half-hour late , and when it got to wichita falls , the pilot told passengers that the runway lights were turned off . wichita falls officials first said that the eagle pilot had the wrong radio frequency to turn on the lights on the main , 13,000-foot runway .\nweinstein was spotted looking remarkably relaxed and chipper as he stepped outside the couple 's new york city townhouse on thursday . his wife georgina chapman has been sharing photos of herself hard at work creating the upcoming spring/summer 2016 bridal collection for her brand marchesa . chapman even had a little helper joining her in the design room on thursday - the couple 's son dashiell . ambra battilana , who claims weinstein stuck his hand under her skirt , met with prosecutors on tuesday as a criminal probe into the incident continues .\nstaff at pret a manger have the power to hand out free drinks . they can choose who they fancy and give them away on the house . femail writer deni kirkova tried three different approaches to get a free cup . she tried nonchalant , sad and friendly approaches .\nthe naked bodies were found in a park in haryana state , 30 miles south of new delhi . police said the man 's legs had been chopped off and put in a metal trunk . his partner was found wearing a set of glass bangles traditionally worn by newlywed women .\ndj neil fox , 53 , denies nine sex attacks on six women and three children . he allegedly assaulted two girls at a motor show and two at a theme park in 1996 . one alleged victim says fox repeatedly assaulted her at capital radio 's studios . two others say they were sexually touched against their will at magic fm studios . fox denies seven counts of indecent assault and two counts of sexual touching without consent .\nthousands of red wooden huts dot the landscape in the larung gar valley in china . they are home to the larun gar buddhist academy , the world 's largest buddhist settlement . the settlement , sertar , sits on elevations of 12,500 ft and is home to 40,000 monks and nuns .\nanti-islam protesters clashed with anti-racism activists in melbourne yesterday . police were forced to separate the groups and several were injured . the reclaim australia supporters burned the country 's flag in retaliation . 16 rallies were scheduled to take place across australia , but sydney and melbourne drew the biggest crowds .\na savannah baby and a baby in atlanta has been awarded $ 1,529 for college expenses as part of a state sweepstake draw before even turning 10-hours-old . levi jarrett millspaugh was born at 2:38 a.m. wednesday , making him this year 's first tax day baby at memorial university medical center . the donation , made by path2college 529 plan , is given to the first child born each year at memorial .\nbroncos cornerback aqib talib and his brother yaqub are being investigated for aggravated assault after an altercation at a dallas-area nightclub . during the incident on wednesday , a shot was fired outside of club luxx in dallas , texas , after a physical fight inside . talib was in trouble before and was wanted on charges of aggravated assault with a deadly weapon in 2011 .\nchicago socialite sheila von wiese-mack was murdered in bali last august . her daughter heather mack , 19 , is accused of helping her boyfriend tommy schaefer , 21 , to carry out the murder . mack has been kept in jail with her newborn daughter , who was born with jaundice and had to be treated in the hospital . mack 's attorney has filed court documents for her client agreeing to turn over funds for the care of four-month-old stella . the petition asks for around a half a million dollars to be transferred to stella .\ndavid suchet is fighting for better treatment for those with rare diseases . his grandson todd has the rare condition tuberous sclerosis complex . suchet , 68 , said ` mismanagement in the admin side ' of the nhs means he is not receiving treatment that could help him .\nmark-francis vandelli is the son of a multimillionaire industrialist and model . the 26-year-old has been collecting watches since his teens and has 16 in total . his most expensive watch is a cartier white gold moonphase , which he bought from a shop on sloane street in chelsea earlier this year .\na growing number of australians are dressing up in hand-made costumes of their favourite comic book , television show or movie characters . the trend has exploded online and at conventions across the globe . rae johnston , 33 , from sydney , is known for dressing up as wonder woman in her spare time . she has a combined social media following of 25,000 fans . ms johnston is lined up to host the cosplay championships at this year 's oz comic con .\nvladmir lenin 's remains have been embalmed on stalin 's orders when he died in 1924 . his body is on public display in a mausoleum on moscow 's red square . scientists have developed experimental techniques to maintain the look and feel of the communist revolutionary 's body . they brag that their technique has been the result of almost a century of fine-tuning .\nfour men accused of stabbing a mozambican man to death in an anti-immigrant attack in a johannesburg township . the brutal murder of emmanuel sithole was captured on camera and shocking images show men stabbing him and beating him with a wrench . anti-immigrant violence has spread across south africa in recent weeks and the government has now sent in troops to control the riots .\ntottenham are seven points behind manchester city in the premier league . but harry kane believes spurs can still qualify for the champions league . the 21-year-old became the youngest premier league captain this season . kane led out his side for the first time against burnley on sunday .\nthousands of students petition for a jedi temple to be built on campus . petition started by student at dokuz eylul university in the western province of izmir . `` there are less and less jedi left on the earth , '' petition says . another petition asking for a mosque to be build on campus has almost 200,000 signatures .\namnesty international releases its annual review of the death penalty worldwide . amnesty international : governments using death penalty in misguided attempt to tackle crime . in pakistan , government lifted six-year moratorium on execution of civilians . jordan ended eight-year freeze on executions in december . amnesty : it is high time that world leaders stop using death penalty as easy way out .\narsenal beat reading 2-1 in the fa cup semi-final on saturday . wojciech szczesny was joined at his home by family and friends . polish rock band lemon performed a private birthday performance for the goalkeeper . szczezny took to instagram to thank his girlfriend mariana luczenko .\nlaura bernardini , cnn 's director of coverage , is a lifelong catholic . she says she has never read the bible from genesis to revelation . bernardini will read the good book from cover to cover for a year . she will chronicle her journey for belief.com .\n77 brigade , launched with great fanfare in january , is in disarray . it was expected to be made up of 2,000 social media exponents . but mail on sunday can reveal brigade will number just 454 regular and reservist troops . brigade 's commander says he has failed to recruit enough ` talent '\nqueensland amusement park dreamworld is being sued for $ 290,000 by a former casual employee . zoe dennise prince , 28 , was working at the gold coast amusement park until september last year . she claims she suffers from an permanent disability caused by checking harnesses on the tower of terror thrill ride . ms prince has already undergone two operations and she has developed intersection syndrome and de quervain 's tenosynovitis in her right wrist .\nneil bantleman , who also holds british nationality , found guilty of abusing three boys at jakarta intercultural school . sentence sparked outrage from his supporters , including the school itself and international community . also standing trial for abusing children is indonesian teaching assistant ferdinand tjiong . both men have strongly denied committing abuse and received backing from the school , parents , and the international community . supporters have said the case is deeply flawed and motivated by a bid by one alleged victim 's family to get compensation from the school .\nfootage shows a man lying in the foetal position on the baggage reclaim . the incident was captured at domodedovo airport in russia . other passengers appear more concerned with spotting their luggage . it 's not the first time a passenger has decided to relax on the conveyor belt .\nstaff sergeant shawn manning was shot six times during the attack . he claims he is being denied vital financial support . army psychiatrist major nidal hasan opened fire on november 5 , 2009 . he killed 13 men and women at the military post in killeen , texas . authorities initially classed the mass murder as ` workplace violence ' but it has since been acknowledged that the attack was an act of terrorism . earlier this year , it was ruled that victims will be honored with purple hearts . but one victim claims he will still go without certain benefits .\njulian zelizer says the 2016 presidential campaign is just getting underway . he says some of the candidates are already starting to make mistakes . zelizer : christie 's call for social security cuts and cruz 's obamacare enrollment are among them . he also says clinton made a mistake about her grandparents ' immigration status .\nanthony martinez had launched a plea for a prom date on twitter the day before . his straight guy friend jacob lescenski stepped in to fill the spot . lescenki greeted martinez in the locker room at desert oasis high school on tuesday morning with a huge pink banner reading : ` you 're hella gay , i 'm hella str8 , but you 're like my brother , so be my d8 ? ' martinez instantly responded to the question with a big ` yes ' and excited hug .\nformer qpr boss harry redknapp left the club in february due to knee problems . redknapp said he felt ` people with their own agendas ' had a hand in his resignation . the 68-year-old described the club as ' a bit of a soap opera '\nthe pictures were taken by gisèle freund who lived with the artist and her husband in mexico . frida kahlo : the gisenele freundy photographs is out now . the pictures give an insight into the artist 's life in the years before her death in 1954 .\nhilary border , 54 , stole # 20,000 from her dementia-stricken mother dorothy . she had power of attorney over her mother 's affairs when her health deteriorated . border was required to pay # 300-a-week for 83-year-old 's care . but when it doubled to # 600 the money was either late or stopped being paid . care home staff tried to contact border over an outstanding # 16,000 debt . she pleaded guilty to fraud and was sentenced to 16 months in prison .\nqueen of the south beat rangers 3-0 at palmerston park . derek lyle , gavin reilly and a lee wallace own goal gave queen of the north a massive boost in their championship play-off hopes . rangers boss stuart mccall has urged his players to bounce back . the ibrox side face raith rovers on sunday .\na duke student has admitted to hanging a noose from a tree , the university says . the student will face student conduct review , the school says . a noose was found on a tree near a student union early wednesday . the university says it did n't identify the student , citing federal privacy laws .\nimran uddin used a ` shadowing ' device to hack into university of birmingham computers . he was able to steal staff passwords and change his exam marks to get better grades . the 25-year-old was jailed for four months after admitting six breaches of the computer misuse act .\nremy dufrene , 3 , of raceland , louisiana , was in the kitchen with his grandmother when he ran out the back door as she was pouring him a glass of milk . the old woman tried to chase after the young boy , but soon after there was a loud scream as he fell into the drainage ditch . his father searched for the boy 's body but it took him 15 minutes to find his son in the ditch . emergency workers on the scene spent almost an hour trying to resuscitate the boy to no avail .\na new book by author martin fletcher has revealed a series of other blazes at businesses owned by or associated with stafford heginbotham . official inquiry into blaze concluded that the fire was an accident . 56 football fans were killed in the tragedy at valley parade in 1985 . today , former judge mr justice oliver popplewell dismissed claims the blaze was not an accident saying they are ` nonsense '\neden hazard is named in sportsmail 's barclays premier league team of the day . the chelsea star powered his side to a narrow win against manchester united . seamus coleman was key in everton 's win over burnley . philipp wollscheid dominated in defence for stoke city . craig gardner starred for west brom against crystal palace .\nwplg reporter roger lohse was reporting on an 800-acre fire in miami-dade . his cameraman pointed out a rescue behind him , and he went to investigate . firefighters said the kitten had been hiding in an empty beer box . later in the day , wplg reported that the blaze was mostly contained .\nglasgow warriors placed on high alert after richie gray could be sold . the 45-times capped second row will be released if castres are relegated . gray has one year left on his contract but will be out of contract in 2015 . johnnie beattie and max evans also expected to leave the club .\njustin rose will tee off with jordan spieth in the final pairing on sunday . the englishman finished in a fine position on saturday to earn his place . rory mcilroy is paired with tiger woods in the most high-profile grouping . paul casey and ian poulter are the only all-english pair in the last group .\ngrace mann , 20 , was found dead in her rented home in virginia . she was allegedly choked to death by her third roommate steven vander briel . vander b ariel , 30 , has been charged with first degree murder . mann 's parents , local judge thomas mann and his wife melissa , paid tribute . they said their daughter wanted the world to be ' a safe place '\nstudents at illini bluffs high school in illinois were shown a very realistic simulation of a prom night drinking and driving crash . the simulated crash was one of several put on by the american red cross to educate students on the dangers of drunk driving . the staged event on thursday used student actors playing accident victims and used real local police , fire and rescue personnel responding to the scene .\naston villa 's carles n'zogbia turned up for training in a flamboyant outfit . shay given took to twitter to ridicule the frenchman 's choice of attire . n'zogbia has featured regularly under tim sherwood since his appointment in february .\ncard was created by chicago-based start-up company , salt . it connects to an app on a user 's android handset or iphone via bluetooth . the card sends notifications to a user 's phone if they leave their wallet behind . it then tells them if they have strayed too far from their wallet , where it is suggested the salt card is stored . the credit card-sized gadget also locks devices again as soon as a user moves out of range at a distance of 10 feet -lrb- three metres -rrb-\naston villa 's jack grealish is renowned for wearing his socks low . the teenager says he 'll carry on with the superstition . grealishes made his first premier league start against qpr on tuesday . the ireland under 21 international wears children 's shinpads .\nu.s. is too reliant on russia to meet its national security obligations , says peter bergen . he says the u.s. 's military depends on space-based capabilities . the ukraine crisis should have served as a wake-up call , he says . bergen : it is bad policy to rely on others for critical national security requirements .\na new vision of jesus came into view on tv this weekend . the jesus portrayed on `` killing jesus , '' `` a.d. '' and `` finding jesus '' is multicultural . scholars say the change is due to the changing complexion of america . the new jesus is also muslim .\ntulsa county sheriff 's office ` falsified training records of robert bates ' 73-year-old reserve deputy shot dead eric harris , 44 , on april 2 . bates is charged with second-degree manslaughter . sheriff 's office claims he was certified to use three weapons . but they have been unable to find the paperwork . comes after claims bates was ` paid to play cop ' by sheriff stanley glanz .\nevolo magazine 's 2015 contest was held in new york and london . more than 480 design teams submitted entries to the contest . a jury of experts chose three winners and awarded 15 other designs with honorable mentions from 480 global entries . the first place was awarded to a polish group called bomp for its ` natural habitat ' essence skyscraper .\nchinese government is planning to expand the qinghai-tibet railway . it could include a tunnel under the world 's tallest mountain - by 2020 . move shows beijing building links with nepal , a country india regards as firmly within its sphere of influence . human rights groups have criticised china 's plans to expand rail network in tibet .\nnigerian students are building a car powered by electricity and designed for efficiency . the `` abucar 2 '' will compete in the european leg of this year 's shell eco-marathon . uganda 's makerere university has produced a two-seater electric car called `` kiira ev ''\nvoters complained about aggressive campaigning tactics , fights and bizarre activities . one voter complained that wealthy party donors were luring young activists with ` unfair ' promise of curry . others accused politicians of ` fly-posting ' and detectives were called when scraps broke out . details released under freedom of information act refer to parliamentary by-elections .\nzlatan ibrahimovic has been compared with eric cantona . peter schmeichel has urged manchester united to make a move for ibrahimovic . jose anigo says ibrahimovic would have been idolised at marseille . the former marseille boss says the psg striker reminds him of cantona .\nbillions of barrel jellyfish have been spotted in water off the coast of devon and cornwall . experts believe the jellyfish , which can grow up to six feet , have been attracted by the warmer waters and a lack of predators . hundreds of the barrel jelly fish have been hauled in by fishermen on the devon and cornish coast .\nliverpool play blackburn in the fa cup third round replay on wednesday night . brendan rodgers set his side the objective of winning a trophy and finishing inside the top four . the reds boss would not go so far as to say the fa cup could save this campaign for liverpool .\nnotts county beat arsenal 2-1 in the women 's super league on thursday night . ellen white scored a free kick against her former club . the striker managed to score against her old team from the training ground . white also missed a penalty which would have made it 2-0 .\ntripadvisor has compared the cost of hotel room service items in 48 popular holiday destinations around the world . in sofia , bulgaria , a night 's stay and room service will only set you back # 63.78 . in zurich , a club sandwich delivered to your room will set you . back a whopping # 21.73 . london is the third priciest destination in the world , after new york and zurich .\nchelsea manager jose mourinho backs eden hazard to win player of the year award . chelsea forward has been outstanding for blues this season . mourinho believes that ` it should n't even be a debate ' that hazard should win . hazard will face stiff competition from tottenham 's harry kane .\naudio recordings show michael slager talking to an officer after a shooting . `` he grabbed my taser , yeah , '' slager says . `` i know he did n't deserve to die , '' says the passenger of a car with scott . slager is charged with murder in the death of 50-year-old walter scott .\ndiego simeone 's atletico madrid face real madrid in the champions league quarter-final first leg on tuesday night . sime one has turned atletico around since joining the club in december 2011 . the 44-year-old recently extended his contract at the vicente calderon . simeone has imposed his incredible work ethic on his players .\nperiscope is a new iphone app which allows users to broadcast live video and audio to the internet . the app was launched last thursday and has been met with a wave of controversy . users have reported being sexually harassed , or trolled , while using the technology . app developer justin esgar is warning parents about the app 's various ` land mines ' and insists that they need to monitor their child 's use of it .\nworld no 5 caroline wozniacki was invited to the white house on monday . the danish ace took part in the annual easter egg roll . woznniacki played tennis with us president barack obama . the event was broadcast on the popular talk show live ! with kelly and michael .\npaul gilbert mocked ed miliband 's leadership at a university hustings event in cheltenham . he said it was like having a manager of a football team you do n't rate but still support . he joked that he hoped his ` off-piste ' comment would not ` find it 's way back ' to the labour leadership . mr gilbert also blasted labour 's ` entirely unsatisfactory ' policy on tuition fees .\nbridget klecker , 42 , was killed and another person was injured when they were struck by a car fleeing police during a wild chase through san francisco on friday night . the suspects ' car was found abandoned on treasure island off the bay bridge , and the three men who were in it were still at large as of friday night .\nisidro garcia , 41 , will stand trial on charges of kidnapping and raping a 15-year-old girl that he went on to marry and live with for a decade . the girl was brought from mexico in 2004 to live with her mother in santa ana , california . she told police that garcia began fondling her shortly after she was brought to the u.s. and that he repeatedly had sex with her despite her protests . garcia later married and fathered a daughter with the girl , who is now 25 , and lived with her until last year .\n`` l.a. law '' actor richard dysart dies at 86 after long illness , wife says . dysart played cranky senior partner leland mckenzie in the nbc drama . he also played coach in the original 1972 broadway production of jason miller 's pulitzer prize-winning `` that championship season ''\n`` mr. gray 's family deserves justice , '' baltimore mayor says . police release names of six officers involved in arrest of freddie gray . gray died of a spinal injury sunday , exactly one week after he was taken into custody . baltimore police plan to conclude their investigation by friday , may 1 .\nformer manchester city boss sven goran eriksson has criticised his old club . erikson said city should be winning the premier league rather than battling to stay in the top four . city are currently fourth in the premier league , four points behind liverpool . the club 's current squad cost a total of # 368million . city host west ham on sunday .\nbenaud , who died on friday , revealed last year that he had skin cancer . he was receiving radiation treatment for the cancer on his forehead and top of his head . the cricket legend said he believed the cancers were caused by playing cricket in the sun without a hat or sunscreen . he said he was influenced by legendary all rounder keith miller who never wore a cap as a young player . benaud had been out walking for 40 minutes every morning to help him recover . he had not returned to his nine network commentary job after a car accident in october 2013 .\nlord forsyth says talking up threat posed by snp is ` short-term and dangerous ' former scottish secretary says a labour deal with separatists would mean higher taxes , more debt and fewer jobs . comes as former prime minister john major launches stinging attack on threat . sir john says ed miliband would face ` daily dose of blackmail ' from nicola sturgeon .\nbird was spotted at the shapwick heath , somerset , for only the third time in the uk . the hudsonian godwit made a 4,000 mile detour from south america . it is believed to have been last seen in the country in 1988 . the wader is now inhabiting the same space as its english counterparts .\nlz granderson : 150 years ago , confederate gen. robert e. lee dramatically surrendered his troops . he says u.s. president abraham lincoln never lost his ardor for the united states to remain united . granderson says lee 's surrender at appomattox courthouse was a symbol of unity .\nkevin pietersen scored 170 off 149 deliveries in surrey 's three-day match against oxford . it was pietersen 's first red-ball cricket for 15 months . the 34-year-old was dropped by england in august 2013 . pietersen said incoming ecb chairman colin graves told him everyone has a ` clean slate ' and that he is just about hitting the red ball .\nsyrian refugee says he would have done anything to get to europe . he says he was forced to take part in illegal smuggling to reach italy by sea . he was rescued after his boat hit a cliff and got stuck in the mediterranean . he and others were deported back to turkey , but he says he 'd do it again .\na man called alex posted a video of the answers on youtube . asked siri questions about gay marriage and where to find gay clubs . siri told him of swearing when he asked how he could register a gay marriage in england . apple has said the responses were down to a ` bug ' which it has now fixed .\na federal court has ordered internet companies to reveal the ip addresses of thousands of account holders who illegally uploaded the film the dallas buyers club online . the identity of over 4,726 individuals will be provided to the copyright holder of the film . this includes their names , ip addresses and residential addresses . internet companies iinet limited , internode , amnet broadband , dodo services , adam internet and wideband networks were all affected by the ruling .\nlos angeles-based model sarah stage , 30 , has been documenting her changing pregnancy body on instagram . the model is less than two weeks away from her due date . sarah is a lingerie model and animal rights activist . she has been making waves online recently with her series of body-flaunting photos .\nbernie ecclestone has called lewis hamilton in for talks in bahrain . the formula one supremo has urged the brit to consider a move to ferrari . hamilton has yet to sign a new contract with mercedes . sebastian vettel finished fourth in practice ahead of hamilton and kimi raikkonen . hamilton leads vettel by 13 points in the drivers ' championship .\naustralia recalls its ambassador to indonesia after executions of two australians . andrew chan and myuran sukumaran were among eight drug smugglers executed by firing squad . australian prime minister tony abbott called the executions `` cruel and unnecessary '' indonesian president joko widodo shrugs off the diplomatic recall .\ntimothy mcveigh 's 1995 bombing of murrah federal building killed 168 . peter bergen : the bombing exposed the danger of american citizens targeting government . he says after the bombing , the fbi focused on other extremists , but 9/11 shifted attention . bergen says right-wing extremism has surged in recent years .\na mom was upset that `` big hero 6 '' fabric did n't include two female characters . the company that makes the fabric responded by saying boys do n't want girls on their things . melissa atkins wardy , author of `` redefining girly , '' shared the story on facebook . the response from the company was immediate and positive , wardy says .\nmaxwell morton , 16 , has been charged with murder in the death of ryan mangan , 16 . the two boys were friends and morton 's lawyer says the killing was an accident . morton was ordered to stand trial for first-degree murder and possession of a firearm by a minor wednesday . police found a 9mm handgun hidden under the steps of morton 's home after he sent a selfie of himself posing with mangan 's body . morton 's mother said in court that the shooting was an ` accident ' and that her son is ` not guilty '\nandrew stewart wood , 41 , of havant , hampshire , was arrested at the hard rock hotel in orlando . a guest told a security guard that there was a very intoxicated man on the premises . the guard located wood and saw him urinating into an ice machine . when he tried to stop him , wood became belligerent , began shouting and would not cooperate .\nart and photography community , boredpanda , has created a thread encouraging parents to showcase their ` true nerdy colours ' by dressing their babies up . the images feature babies dressed as characters from fantasy and sci-fi movies , books , tv shows and comic books .\na new study suggests high heels can put dangerous pressure on knee joints . they can wear away cartilage - the body 's built-in shock absorber . this can increase the risk of osteoarthritis and some women need surgery . angela kelly , 67 , from croydon spent many years wearing high heel shoes .\nrafa nadal is looking to win a sixth consecutive french open . the spaniard was beaten by novak djokovic in the monte carlo masters semi-finals . but nadal insists he has no worries about facing the serbian in june . the world no 1 says djokovich is the man to beat at roland garros .\nbayern munich will face barcelona in the champions league semi-finals . pep guardiola will return to the nou camp for the first time since leaving in 2012 . real madrid will play juventus in the other semi-final . the draw was made at uefa 's headquarters in nyon , switzerland on friday .\ngemma redhead suffered from post traumatic stress disorder after attack . she was repeatedly raped by her former partner , philip kirby . kirby was jailed for eight years and given a restraining order . he was released from prison after three years and phoned her . miss redhead said the 46-second call ` reawakened all of the fear and terror of the attack '\na leeton property is at the centre of a murder investigation . vincent stanford , 24 , is accused of killing stephanie scott , a high school cleaner . he lived in the property with his mother anika and elder brother luke . the three-bedroom fibro home is on the market for $ 179,000 . police have been swarming the property for days . detectives were pictured hauling bags of evidence out of the property .\nan inmate and a county worker are undergoing emergency surgery , the sheriff says . the blast happened at a site where a county road worker was operating a front loader . two sheriff 's deputies who were at the firing range helped move the injured , the sheriff says . three other inmates were not hurt in the blast .\nschool in maine has come under fire for teaching students about transgender issues without first seeking the approval of parents . during a lesson on tolerance and acceptance , children at horace mitchell primary school in kittery point were read i am jazz . i am jazz is a book about a child ` with a boy 's body and a girl 's brain ' who eventually finds a doctor that tells the family the boy is a transgender . some parents are unhappy with the school after they say their children came home with questions about gender and wondering if they too might be trans .\ndavid cameron admits if he does not win a majority he will have failed . pm said voters were not ` fully sure ' about the tories at the last election . but he claimed they would back them this time and only needed 23 seats . he said nothing made him ` more angry ' than being called the party of the rich .\nformer lib dem mp vicky pryce , 62 , has five children with ex-husband chris huhne . she admits she never baked cakes or prepared costumes for her children . she says she would miss them when she had work commitments to attend to . she has written a book about life in women 's prisons .\nracer , 85 , reunited with austin-healey sprite he last drove in 1962 . sir stirling won 212 races in 14-year career before crash at goodwood in 1962 ended his career . he said he sees fitness as a ` way of life ' and puts his health down to unusual methods . revealed he drinks half a bottle of chardonnay and chocolate every day .\nrand paul is in new hampshire this week for a gop summit . he warned that hillary clinton will soon have to answer for her family foundation 's donations from foreign actors . paul also said that if clinton wants ` to be the candidate of women 's rights , ' she needs to answer . for the clinton foundation 's acceptance of gifts from saudi arabia , which disrespects women , as well as her use of a private email server . paul said benghazi is the one that ` bothers ' him the most and hit clinton for claiming it was below her ` pay grade ' to read the diplomatic cables that were sent to the state department in the days preceding the assault .\na south african writer has claimed australia is more racist than her homeland . sisonke msimang , 41 , moved to australia with her husband and children in the last few months . she said she 's been faced with the realisation , that much like her native south africa : ` the deepest and most abiding forms of racism ' in australia are directed toward our own indigenous population . she slammed prime minster tony abbott for his ` out of touch ' comments that claim australia could no longer ` subsidize lifestyle choices if those lifestyle choices are not conducive to the kind of full participation in australian society that everyone should have '\nmanchester thunder netball team are in the superleague semi-finals . gary neville , phil neville and paul scholes joined manchester thunder to promote the game . the neville brothers threw a netball and sang along to the music in the video . the video features england women 's footballers and several soap stars .\nandrew sadek , 20 , was found dead in the red river in may 2014 . his body was found with a bullet to the head . he had been working with a drug task force as a confidential informant after he was caught selling marijuana on campus in 2013 . his mother , tammy sadek believes that he signed his death warrant when he began working for the force .\na poll of 2,000 britons found that 68 per cent had hurt themselves doing odd jobs or decorating . two in five had injured their back , one in five cut themselves and one in ten had suffered side effects from inhaling chemical fumes . one in 30 suffered after getting paint or chemicals in their eyes and eight in 100 had fallen off a ladder .\niraqi forensic teams began digging 12 mass graves in tikrit today . thought to be final resting place of 1,700 soldiers killed by isis last summer . the recruits were slaughtered by sunni militants for being shi'ite . ` dozens ' of id cards belonging to the army cadets were found last week .\nthe university of connecticut baseball team has taken on 5-year-old grayson hand , who is battling leukemia . hand joins the huskies with the help of team impact , an organization that matches children with life-threatening and chronic illness to college sports teams . hand will have his own locker and can attend as many games and practices as he likes . hand 's sister , sophie , 7 , was also taken on as an honorary cheereleader .\nthe family circle cup began in charleston on monday . zarina diyas and heather watson were the seeded casualties . watson lost to croatian teen donna vekic in a close match . irina-camelia begu and mona barthel progressed in straight sets .\nbird opens its mouth to show off the size difference between the two parts of its beak . then closes its mouth while looking up at the sky and the air sacs in its throat begin deflating once again as it settles back down . the bizarre slow motion footage was captured in santa barbara , california by video maker scott kaiser .\ngraeme finlay , 53 , was cleared of unlawful wounding and gbh . he was accused of attacking ron phillips , 70 , and his wife june , 69 . the couple were knocked unconscious in incident outside cabin on thomson . finlay insisted he only acted in self-defence when hit by mr phillips . he said : ` it 's been hell . it 's put me off boats forever '\nfamily of bears pictured playing and snoozing on the banks of a lake in kamchatka , russia . photographer denis budkov , 35 , captured the heartwarming scenes during a trip to the region . the mother was also lying on the bank of the lake as she looked after her cubs .\nformer toronto mayor was diagnosed with malignant liposarcoma last year , forcing him to quit his bid for re-election for mayor . he has undergone five rounds of chemotherapy and nearly a month of radiation , which has shrunk his tumor significantly . on thursday , he announced that he will undergo a lengthy operation to remove a cancerous tumor from his abdomen in may . four surgeons will carry out the eight - to ten-hour operation on may 11 , and he will remain in hospital for 10 to 14 days . he hopes to return to work in september .\nzeynab daghastani , 13 , was reportedly gunned down by isis snipers in damascus . she was reportedly trying to flee the al-yarmouk camp , on the outskirts of the city . aid worker claims she was shot dead on tuesday as she tried to flee militants . around 18,000 palestinians have been trapped in the area since isis took control .\njeffrey walker told jurors that the philadelphia police department drug squad targeted ` white college-boy , ... khaki-pants types ' who were ` easy to intimidate ' that matches the description of some of the drug dealers who have testified in recent weeks in the federal police corruption trial . the witnesses have said the squad stole as much as $ 80,000 at a time during illegal raids marked by threats and physical violence .\nbernie sanders could be the first official democratic candidate for president in 2016 . joe biden is still looking at the race , but he 's taking a `` wait and see '' approach . ohio gov. john kasich is also taking a wait-and-see approach . the gop establishment is putting a priority on candidate recruitment .\njade wimsey went from a size 12 to 20 in four years as she guzzled energy drinks . the 24-year-old from yorkshire would down up to seven cans a day . her weight rose to 17st 6lb and she was the victim of cruel jibes . she has now lost six stone and is a slim size 12 .\nrobert dellinger , 54 , told investigators he was trying to kill himself in december 2013 when he drove his pickup truck across an interstate 89 median and smashed into an suv carrying amanda murphy , 24 , and her fiance , 29-year-old jason timmons . prosecutors have said dellinger told investigators that he was depressed and wanted to kill him . he pleaded guilty in february to negligent homicide for the deaths of the couple and the death of the fetus . on wednesday , dellinger 's wife , deborah , called him a man of ` ethics , integrity and friendship ' during the hearing . he faces 12 to 24 years in prison when sentencing resumes on thursday .\nlaura eugenia smith , 35 , has been charged with dui , child endangerment and public intoxication . police say a witness noticed the girl driving smith 's car with smith sitting in the passenger seat . the girl was released to her mother and the department of child services were notified .\nparis saint-germain beat marseille 3-2 on sunday afternoon . david luiz went off after 35 minutes with a hamstring injury . psg face barcelona in the champions league quarter-final on april 15 . the 27-year-old could be a doubt for psg 's next three games .\nthe organs were removed from 45-year-old man with genetic disease . autosomal dominant polycystic kidney disease -lrb- adpkd -rrb- causes fluid-filled cysts to grow in the kidneys , so they expand in size . one of the kidneys was 20 times the normal size and weighed 6lbs -lrb- 2.7 kg -rrb- a week after operation , a second kidney weighing 5.5 lbs -lrb- 2.5 kg -rrb- was removed .\nreal madrid travel to play eibar in the la liga on saturday . gareth bale is being rested by boss carlo ancelotti . toni kroos and james rodriguez are suspended for the game . asier illarramendi and jese will play for real madrid in the match . cristiano ronaldo will play after being given a yellow card .\neuropean union will accuse google of illegally abusing its supremacy . it will say the search giant diverted internet users to its services . the ruling is the result of a five-year investigation into the american search giant . google currently boasts a 90 per cent share in europe 's search engine market .\nsouthend united beat bury 1-0 in their league one clash on tuesday night . david worrall scored a 74th-minute free-kick to move them into fourth . the win puts phil brown 's side behind wycombe on goal difference .\nsiobhan o'dell , 17 , from north carolina , applied to duke university . on march 26 she was sent a rejection letter saying she had missed out . but she refused to take no for an answer , sending back her own email . the image has gone viral , attracting nearly 100,000 likes and reblogs .\nkatherine johnson : i was 12 years old when miami rioted over police acquittal . she says riots of 1980 were first major `` race riots '' since 1960s wave of riots . johnson : police action triggered riots , and violence in riots dehumanizes victims and perpetrators . johnson says riots galvanized civil rights leaders to address root causes of riots in u.s.\na marketing company has proposed an all-star match , according to spanish newspaper mundo deportivo . the match would bring together the best of european talent . lionel messi and cristiano ronaldo would play together in ` team south ' the proposed fixture would be inspired by the nba all-stars .\ncurrent and former female cia agents have spoken out about the offensive portrayal of female spies on tv shows and in movies . the women say they are nothing like the honey-pots who use their sexuality to ensnare terrorists and drown ptsd with booze and pills . ' i wish they would n't use centerfold models in tight clothes . we don 's look that way . and we don 'd act that way , ' said retired cia officer sandra grimes . veteran cia analyst gina bennett says she was upset with the ` giddy ' portrayal of her friend jennifer matthews in the movie zero dark thirty .\nreal madrid have their ` six nations ' available again , says marca . james rodriguez is back in the squad after a foot injury . toni kroos , gareth bale , cristiano ronaldo and luka modric also available . lionel messi is fit to face celta vigo on sunday .\ntravis hatfield , 21 , from gilbert , west virginia sung a george jones hit to his 47-year-old uncle , jamie joe cline . the video has gone viral with more than 410,000 views so far . uncle jamie lives with travis after his parets died a few years ago .\nresearchers from the hebrew university of jerusalem recorded octopuses . they found that the orientation of the creature 's body and the crawling direction are controlled independently in the brain . this is the first time scientists have been able to fully understand how octopus are able to control their movements without a rigid skeleton . the findings may help scientists develop new ways for soft robots to move around and can also shed light on how octo-siblings evolved .\nxiao zhengti , five , was born with congenital biliary atresia , a liver condition . his first transplant was at nine months old when mother donated her liver . but his body rejected the organ , leading to years of trips to hospital . father xiao kunqing offered to donate 40 per cent of his liver yesterday . surgeons say the operation was a success and xiao will be home in three weeks .\nsecret service agents parked hillary clinton 's campaign van in a handicapped spot in council bluffs , iowa on thursday . the presidential nominee was in a top-secret meeting with state democratic party officials . the secret service typically does not comment on security arrangements for dignitaries .\nsania mirza became the first indian to reach the top of the wta doubles rankings . mirza won the family circle cup with martina hingis on sunday . the 28-year-old beat casey dellacqua and darija jurak 6-0 , 6-4 .\nkathleen blomberg , who lived in a building badly damaged by thursday 's explosion has been reunited with her two traumatized cats , kitty cordelia and sebastian . the american society for the prevention of cruelty to animals found the the traumatized animals under blomburg 's bed . two people died and 22 were injured in last week 's explosion , which authorities now believe was caused by an illegally tapped gas line . blomber is currently looking for new accommodation for her and the cats .\ntwitter has officially rolled out its ` retweet with comment ' feature . the new tool lets users embed tweets within their own messages . this means that users get an extra 116 characters to comment on a tweet . available on twitter 's website and the iphone app , the feature will roll out to android handsets soon . nigella lawson has already embraced the tool by commenting on a retweet .\nharis vuckic was loaned to rangers from newcastle in january . the 22-year-old has scored six goals in 10 games for the gers . but he admits he is uncertain over his future with 12 months left on his deal . vucki says he would like to stay at ibrox if he is allowed to leave .\njack dellal left his entire estate to his second wife ruanne in 2006 . but she is now suing six of his children claiming she is owed # 385million . she claims he must have given away vast chunks of his fortune in secret . the property tycoon was once said to be worth # 1billion . his family dispute her claims and the case will now go to the high court .\nsimon wood , 38 , from oldham , won masterchef last friday . he has never been on a cookery course or even had one lesson . everything he knows about cooking is self-taught . he learned from reading recipe books and watching tv . he sharpens his skills by practicing on his four children .\nthe 50-year-old reality star was arrested at the beverly hills hotel on april 16 after a row with the maître d' at the polo lounge . richards was kicked out of the hotel after refusing to leave the bar and refusing to go to the bathroom . she was arrested after a dramatic breakdown in which she kicked and screamed at police officers . she told dr phil mcgraw that she was drunk on the night of her arrest . the former child star says she had a glass of vodka at her daughter brooke 's house . she says she pulled into the hotel because she felt the alcohol taking affect .\nman used nail clippers to free woman from home in toronto , canada . police say rejean hermel perron , 43 , held woman at gunpoint and restrained her with duct tape and handcuffs . he is then said to have held her captive for five days and subjected her to sexual assaults including ` ritualistic actions ' peter hamilton heard woman 's cries and used his nail clipper to free her . she was rushed to hospital and is now recovering from her ordeal .\nman arrested for stealing elton john 's iconic heart-shaped glasses from a memphis museum . matthew colvin , 26 , was behind bars on tuesday in southhaven , mississippi . he will be extradited back to memphis on wednesday . the glasses , valued at more than $ 2,000 , had been taken out of a display case during business hours .\nthe average briton eats four servings of cheese a week . cheddar is britain 's most popular cheese . over three quarters of us -lrb- 80 % -rrb- go crackers for cheddar . least favourite cheeses are greek feta , french camembert and american cream cheese .\na woman in australia spotted a gold ring lodged in the rocks at bali 's finn 's beach . she used facebook to track down the owner and return it to him . the ring was engraved with the words , `` darling joe , happy 70th birthday 2009 . love jenny ''\nharry dowd joined manchester city as an amateur in 1958 . he played 181 games in nine years at maine road . dowd was part of the side who beat leicester city 1-0 at wembley in 1969 . former city player fred eyre paid tribute to dowd .\nformer manchester united star eric cantona has defended his role in you and the night . the french film has been slammed as a ` troubling ' and ` tacky ' film . cantona insists it is ' a piece of art ' and not a soft porn film . the 48-year-old was speaking at the laureus sports awards in shanghai .\nnewcastle united announced record profits of # 18.7 m last month . but the club 's full accounts show they had # 38.6 m in the bank . the money was paid off , leaving # 34.1 m available to spend on new signings . newcastle fans are planning a protest against owner mike ashley .\nmirco antenucci among six players to withdraw from leeds squad . giuseppe bellusci , dario del fabro and marco silvestri also out . neil redfearn was not aware of any problems with the players . leeds boss 's position at elland road increasingly threatened .\nmanchester city 's toni duggan posted a picture on instagram of her with manchester united manager louis van gaal . the 23-year-old shared the image of her at wing 's restaurant in manchester . duggan has since removed the photo from instagram and issued an apology to fans .\nregulator ofgem said penalty reflected e.on 's ` repeated failings ' on billing rules . firm had overcharged customers after price rises in january 2013 and early 2014 . money will go to citizens advice to fund work helping those trying to cut their energy bills . e.on has apologised and agreed to an audit into what went wrong .\ngraduate jacob phillips had caught a taxi home after a night out . but he did n't have enough cash to pay the fare , so ran from the driver . the 23-year-old fell down a cliff after leaping over a fence in the dark . he was found the next day on a rocky beach in penarth , south wales .\nchelsea beat stoke city 2-1 in the premier league on saturday . cesc fabregas was left bloodied after a tussle with charlie adam . the spaniard was caught in the face by adam 's flailing arm during the game . fabreg as posted a picture to instagram showing off the shiner he picked up .\nralph body , 41 , was a doorman at the luxury 27 on 27th building in long island city , queens . he says he was fired for being too nice to his wealthy tenants . the building 's management says body broke the rules and that he was reassigned to another building . the tenants have started a petition to get him reinstated .\nsouthampton defender nathaniel clyne wants to play champions league football . manchester united have been linked with a move for the right back . ronald koeman has admitted it may be hard to keep clyne at the club . the defender has been capped four times by england this season .\nnew : a ship owner denies that his vessel caused the migrant boat to capsize . new : the ship 's owner says he believes people on the boat rushed to one side , causing many to fall off . the boat capsized after being touched or swamped by a cargo ship , a u.n. official says .\ne4 to switch off its coverage from 7am to 7pm on may 7 in bid to encourage youngsters to vote . cult us sitcoms like the big bang theory and how i met your mother will be taken off air . instead of programmes , a specially-produced advert will be played on the channel . the advert will feature ` darren ' -- the man fictionally in charge of keeping e4 on air .\nantonio nuñez allegedly stabbed his girlfriend in the backside with a pitchfork . the 59-year-old was said to be arguing with the woman at his home in san antonio , texas . nuñz will be charged with aggravated assault after the attack on monday .\npaul smith will fight world super-middleweight champion andre ward . the bout will take place in oakland , california , on november 28 . ward is ranked among the top five pound-for-pound boxers in the world . carl froch has declared willingness to fight ward in the uk . froch is also considering a fight against julio cesar chavez jr. .\njohn terry has played in all 33 premier league games for chelsea this season . the 34-year-old is on course to make all 38 appearances for his side . terry made just 14 appearances for chelsea in 2012-13 under rafa benitez . the blues captain has played 2,970 minutes , scoring three goals .\nchristians celebrate easter sunday , the day after passover . the holiday is based on astronomical events , such as the blood moon . easter has its own traditions , including the bunny and colorful eggs . the catholic church has its roots in jerusalem . the easter bunny is an egg-laying pagan that worships the moon .\naussie dad created t-shirt to keep boys away from his daughter . ` stay clear boys , ' a message on the shirt warns . ` this is my dad ! ' his daughter is pictured grinning beside him . image was shared on reddit and facebook and liked by 370,000 .\nlyvette crespo , 43 , has been indicted on charges of voluntary manslaughter . she allegedly shot her husband , bell gardens , california mayor daniel crespi , three times in the chest in september . she claims the killing was self-defense after he punched their 19-year-old son in the face during an argument . the mayor 's brother says the claims are all lies and that he has evidence proving mrs. crespa is a cold-blooded killer . she could face up to 21 years in state prison if convicted .\n` the seven year switch ' is an eight episode series in which couples live , eat , and even sleep with a new significant other . the show is set to premiere this summer and is named after the 1955 broadway show the seven year itch . the concept is based on the idea that after seven years of marriage , spouses often become restless and regret their decision to wed. .\npaula mckay was told her daughter natasha had suffered brain damage . she was delivered 10 weeks prematurely by c-section , but staff failed to ventilate her properly . staff failed to recognise natasha was in distress in the womb . she is now 24 and needs 24-hour care from a team of nurses to dress and eat . when she became pregnant with her second child , patrick , staff assured her the same mistakes would not be repeated . when patrick was delivered at the same hospital , the same errors were made . ms mckay has been awarded # 13 million in compensation for her daughter .\nnuku vanonyi cudjoe-calvocoressi exposed himself to a woman on a train . the 41-year-old was head of politics at st george 's school in ascot . he has now been banned from teaching for at least five years .\ngoldman sachs predicts population growth will slow to 1.25 per cent over the next three years due to low birth rates , high death rates and falling net migration . property prices are predicted to fall by up to 10 per cent in some states with economists tipping a housing surplus in 2017 . the report predicts that australia 's population will be 530,000 smaller than abs estimates for 2017 .\nherald henthorn was charged with the murder of second wife , toni bertolet , 51 , last november . police have reopened their investigation into the suspicious death of his first wife , lynn rishell , some 20 years earlier . in both cases henthron was named as the sole beneficiary in a string of lucrative life insurance policies totaling $ 500,000 on the death of first wife . and lynn r ishell 's brother 's wife , grace ris hell , has opened up to say that the fbi told her about a secret $ 400,000 life insurance policy henthorn had taken out on her , too . ' i did not authorize that policy , ' she said . '\nmercedes driver lewis hamilton has revealed the meaning behind his tattoos . the 30-year-old is a two-time formula one world champion . hamilton features on the front cover of the may edition of men 's health . the mercedes driver leads the drivers ' championship after two races .\nhoard was found on board ss city of cairo , which was sunk by a nazi submarine in 1942 . 100 tons of silver coins worth # 34million were found at a record depth of 17,000 ft. the coins were being transported from india to england on the ship . underwater company deep ocean search used powerful sonar to locate the vessel .\nreal madrid beat atletico madrid 1-0 in the champions league quarter-final second leg at the bernabeu . javier hernandez scored the only goal of the two legs in the 88th minute to put real into the semi-finals . arda turan was sent off for atletico in the 76th minute for a second yellow card .\ngoogle is said to be in talks with three owner hutchison whampoa . the firms are discussing a ` wholesale access agreement ' this would help google create a global network . customers would then be able to use this global network to make calls , send texts and use data as part of their plan , regardless of where in the world they are . three already offers a similar scheme called feel at home that lets customers use their phones and their plans for free , in 18 countries .\ntom hanks ' wife , 58 , revealed that she was diagnosed with breast cancer on tuesday . she has undergone a double mastectomy and reconstructive surgery . the mother-of-two took a leave of absence from broadway play ` fish in the dark ' earlier this month .\nacting star cressida bonas has been dating prince harry for two years . pair split last april , despite rumours they were engaged . cressie has since starred in a west end play and is modelling for mulberry . the 26-year-old says she 's enjoying her time away from the spotlight .\ncharlie bothuell iv and monique dillard-bothuell accused of torture and child abuse . charlie , now 13 , was found in basement of detroit home last june . on tuesday , he testified against his father and stepmother . said his home was a ` very terrible place to be ' and he was beaten with pipe . also revealed he was forced to rise before dawn for workouts and isolated . he said he was choked , spanked and once even tried to commit suicide .\nearth 's plates are moving slowly under nepal and tibet , says andrew keen . keen : the squeezing has crushed the himalayas like a concertina . he says the quake was neither unusual nor unexpected , but larger than most . keen says the nepal and haiti earthquakes share similarities .\nrebecca sedwick , 12 , jumped from the roof of an abandoned concrete plant in lakeland , florida in september 2013 and was later found to have been bullied online . katelyn roman , 12 and guadalupe shaw , 13 , were arrested for aggravated stalking but charges were later dropped . one of the girls has now filed a lawsuit against the sheriff 's department , claiming they used her death as an ` opportunity for media attention '\nbody of tracey woodford has been identified as that of 47-year-old . she was last seen by her family on april 21 in rhydyfelin , wales . her body was discovered with ` massive injuries ' at a flat in pontypridd . police have arrested a 50-year old man on suspicion of murder . detectives have been given an extra 36 hours to question the suspect .\njamie carragher does not feel diego simeone plays the right type of football for premier league big boys . sportsmail 's columnist says atletico madrid 's style of play would not impress arsenal , manchester united or city . atletico lost 1-0 to rivals real madrid in the champions league quarter-final second leg .\ngregory benoist signed up to race under al shaqab banner in france . frankie dettori will focus on the british flat season this summer . sheik joaan al thani insists he is happy with his choice . thierry jarnet will continue to ride treve for al shaquab in france this summer .\nboris johnson admitted last night he hopes to be considered for tory leadership . but he insisted the position would not become vacant for five years . mr johnson has long been tipped as a future leader of the party . but the london mayor insisted he thinks it is ` highly unlikely '\ndocuments are reportedly signed and will be filed on monday . sources tell the site the divorce was amicable . the iron man actress and coldplay frontman married in december 2003 . martin has reportedly been dating jennifer lawrence while paltrow has been seeing glee executive brad falchuk . the two share custody of their two children .\ncharley hull can make it to the top of the women 's game . the 19-year-old has the same mentality and ` wow factor ' as world no 1 rory mcilroy . hull has ambitions to be the best in the world and she has a good chance of doing just that .\nin what has been described as a ` confronting case of animal cruelty ' , photos were released by rspca south australia on tuesday . the owner pleaded guilty to a charge of failing to provide appropriate and adequate living conditions for his cats . the rsppa seized the owner 's cats in september and requested to have them all surrendered in their care . the case was finalised in the christies beach magistrates court , southern adelaide , on tuesday .\nmarseille host paris saint-germain in ligue 1 on sunday night . the match is a traditional derby between two of france 's top sides . marseille are top of the table , while psg are top by two points . the fixture is also a contest which pitches marseille 's coach , marcelo bielsa , right where he wants to be .\nphil jagielka learned to cook pad thai at chaophraya restaurant in liverpool . everton captain was taking part in a cookery lesson to celebrate the thai festival of songkran . the toffees have been sponsored by thai beverage chang beer for over 11 years .\ntiny oil painting of a catholic saint was kept in an attic for years . it was believed to be the work of a follower of renaissance master el greco . but the selling price suggests it may have been done by the artist himself . it measures nine inches by seven and was acquired by the owner 's late father . he bought it because he believed it was a depiction of saint peter . it has now sold for more than # 120,000 at auction in sherborne , dorset .\nrichie benaud was one of cricket 's great personalities and will be remembered for his dry wit and knowledge . benaud made commentary look easy , but he put in the hard work and he rose to the top . benaud was the voice of cricket for generations , commentating in his native australia and for the bbc .\nsupreme court to rule on same-sex marriage tuesday . julian zelizer : court has always been about more than the intentions of the framers . he says justices have imperfect instincts when it comes to measuring public attitudes . zelizer says it 's safe to bet that majority of justices will come down on side of public .\njamaica is one of three countries in the world where you 're more likely to have a female boss than a male boss . columbia and saint lucia are the other two countries with high percentages of female managers . britain came in at 41st place out of 108 countries , with 34.2 % of managers being women .\nthe stephens county jury found chancey luna , 17 , guilty of first-degree murder in the august 16 , 2013 , death of christopher lane . the jury recommended that luna be sentenced to life in prison without parole . defense attorneys acknowledged that luna fired the fatal shot from a passing car that he was riding in , but contended that he meant only to scare lane . lane was visiting his girlfriend , sarah harper , and her family in duncan when he was shot in the back while out jogging .\npolice release cctv footage of man who attacked woman at bus stop in leeds . he had already stalked three other women in the city before choosing his victim . the 18-year-old was hit over the head 20 times with a rock and dragged into a garden to be brutally raped by the man . he is wanted for attempted murder and rape after the ` appalling ' assault .\nzayn malik has been accused of cheating on his fiance perrie edwards . he has been pictured with another woman in thailand . the model who made the claims is martina olsson . she said that zayn should not be allowed to stay with perrie . she added that he has cheated on her before and ` continues to lie about it '\ncreated by artist paul erard in swiss city of la chaux-de-fonds , the petite pistol measures just two inches long . it holds the guinness world record for the smallest working revolver and fires purpose-made bullets just 2.34 mm in diameter . the mini-revolver can be made to order in solid gold - with each one costing a staggering # 300,000 to manufacturer .\ndefense attorneys released 64 pages of documents for robert bates on saturday . they include certificates showing what training he received and weapons training and qualification records dating to 2008 . bates , 73 , has been charged with second-degree manslaughter in the shooting death of eric harris on april 2 . he appeared on the today show on friday and apologized to harris ' family . he said that the shock from the shooting remains with him and he is unable to sleep or concentrate .\napple has posted nine job listings on its official recruitment site . these include one for an ios battery life software engineer . another is for anios software power systems engineer . jobs include a battery pack engineering manager and a cell engineer . this shows apple is looking to boost the battery on ios devices . it could also be made and rolled out to existing phones as part of an ios upgrade . apple 's larger iphone 6 and 6 plus have been found to last about eight hours with heavy usage and up to 22 hours with normal usage .\nisraeli prime minister benjamin netanyahu says he needs more time to form a government . he made the request at president reuven rivlin 's jerusalem home monday . netanyahu must form a coalition government in less than 42 days , according to israeli law . rivlin : `` i wish you success in your work ''\ncourt clerk and two police officers sent racist emails to each other . the emails were discovered during a justice department investigation . the city 's top court clerk was fired in connection with the emails . the justice department report found a pattern of discrimination against african-americans . . the report was released after months of protests in ferguson , missouri .\nvinceni sisters emily and claire vincenti are now aged 16 and 17 and are living in italy with their father . they were removed from their mother 's sunshine coast home in 2012 and forced onto a plan back to their father in italy . 60 minutes has returned to the village near florence where the girls have been living with their italian dad and interviewed the two elder girls . ` they are really well , really centred and settled , ' said reporter tara brown . the girls miss australia and their mother , laura garrett , but appear happy and calm in contrast to the dramatic and hysterical scenes in which they were removed .\nthe city lies beneath the nevşehir fortress in the central anatolian province of nevsehir . it is thought to be the biggest underground city in cappadocia , consisting of 3.5 miles -lrb- 7km -rrb- of tunnels , secret churches , tombs and safe havens . the multilevel settlement is likely to include living spaces , kitchens , wineries , chapels , staircases and secret passages . the city was built from volcanic ash rock and dates back around 5,000 years .\na chinese businessman has bought a melbourne penthouse apartment for $ 25 million . the 750 square metre apartment is spread across the entire 100th floor of super skyscraper australia 108 . it is the most expensive single apartment sold in the country and boasts 360 degree views of melbourne . the new owner plans to live in the luxury pad when it is completed .\neu leaders agree to send in warships and triple funding for rescue patrols . british warship hms bulwark and german supply ship berlin to be sent . comes after 1,700 refugees have died in the last week alone . italian pm matteo renzi calls the measures ' a giant step forward ' but malta 's prime minister joseph muscat says assets will ` never be enough '\nsporting director matthias sammer says bayern must focus on the future . sammer insists bayern must make plans to cope without philipp lahm and xabi alonso . the 47-year-old was speaking to bt sport pundit owen hargreaves . bayern face hoffenheim in the bundesliga on saturday .\njosh harrop scores twice as manchester united under 21s beat west ham united 4-2 at old trafford . the win takes them four points clear at the top of the under 21 premier league . west ham took the lead through reece oxford after just ten minutes . harrop scored twice before joe rothwell sealed victory for united .\nbryan morseman of bath , new york ran three marathons in eight days last month . he earned $ 5,750 in winnings , all of which will go toward medical treatment for his nine-month-old son leeim , who has spina bifida . leeim was born with spinabifida , a developmental congenital disorder that starts in the womb when a baby 's spine does n't form properly .\na seattle-tacoma airport worker named willa junior has come forward to detail the harrowing experience . junior says he was exhausted and dozed off while loading a plane at seattle - tacoma airport on april 13 . he woke up when a piece of luggage landed on his head and then he called 911 - but his call cut out after just 44 seconds . the flight was forced to turn around after just 14 minutes in the air . junior has been permanently banned from working on alaska airlines flights .\narsenal host chelsea in the premier league on sunday . martin keown says arsene wenger can not be underestimated . he says it 's not just about style , but wenger plays to win . mourinho has a brilliant record against wenger , but he has a poor record in the manager of the month award . cesc fabregas would n't have benefited from joining arsenal , says keown .\npuren was the youngest brother of the final qing monarch puyi . he ruled for four years until 1912 , when he was pushed off the throne . the 96-year-old died on friday after being taken to hospital with pneumonia . he had been suffering from poor health and memory loss in recent years .\nstudy : brontosaurus belongs to its own genera . o.c. marsh named the dinosaur `` brontosaurus '' in 1879 . the original brontaurus skeleton has lived at the yale peabody museum since 1936 . a new study suggests the bront dinosaur belongs to a different genus .\na romanian woman has been told she must leave her son behind . nicole mihai was awarded full custody of her son after a two-year relationship . the 34-year-old was told by new zealand immigration she must return to romania . a ruling from the family court said her son chris must remain within 50 kilometres of his kiwi father . the immigration agency have told ms mihay that chris 's future living arrangements ` are not their problem '\ndrug dealer decided to stuff $ 30,000 worth of meth into an easter bunny and stick it in the mail . it was sniffed out by a police dog in tulsa county , oklahoma . the intended recipient , carolyn ross , has now been arrested by police . when cops sliced open the bunny they found two condoms filled with the drugs .\ndeanna rudison , 55 , was arrested monday after turning herself in to police . rudison allegedly threw bleach in the face of two cohen high school students for skipping the line at a gas station store . rudisons 's son , 27-year-old jonathan rudison was with her and allegedly took part in the attack . one of the girls gave chase and managed to kick a window 's in rudison 's car before it peeled off from the parking lot .\nbizarre incident was caught on cctv and shows a man trying to lift the barrier . incident occurred at nottingham train station 's multi-storey car park . police have released a cctv image of the man in the hope he will be recognised . mailonline is also trying to identify the man .\nchelsea travel to arsenal in the premier league on sunday . diego costa is not expected to be fit to play for chelsea . jose mourinho will make a late decision on costa 's fitness . loic remy is also out of the match leaving didier drogba as chelsea 's only fit senior striker .\nradamel falcao spent thursday evening in the company of jonas gutierrez . the newcastle united defender underwent treatment for testicular cancer earlier this year . the 29-year-old striker posted a picture of the pair on his instagram account . falcado has been linked with a move to psg , juventus and valencia in recent weeks .\nchelsea captain john terry has warned arsenal they will not win the premier league by playing ` tippy-tappy football ' terry said jose mourinho changed the way the league leaders approached games after christmas . chelsea were booed off the pitch by home fans following their 0-0 draw at arsenal . eden hazard was awarded pfa player of the year on sunday night .\neight teams are still in the championship title race with five games to play . three of those clubs will be promoted to the premier league next season . here are eight players that could well be playing in the top flight . the players include matt ritchie , bradley johnson and troy deeney . the other players are patrick bamford , will hughes and bakary sako .\nliverpool goalkeeper simon mignolet has revealed how his mental strength helped him recover after being dropped last december . mignalet was dropped ` indefinitely ' by manager brendan rodgers in december after a poor run of form . the 27-year-old belgian has since returned to the liverpool team .\nmp sent 11 pages of notes linking janner to paedophile frank beck in 1995 . but instead the paperwork was shelved by officials until it was discovered in 2013 . labour mp simon danczuk is calling for the home office to ` come clean ' over dossier . director of public prosecutions alison saunders said janner could face 22 charges .\nsouthampton lost 2-1 at stoke city in the premier league on saturday . morgan schneiderlin opened the scoring for the saints with his first goal since september . mame diouf equalised for the potters before charlie adam scored the winner . saints missed the chance to close the gap on manchester city to two points .\nbarkley took 10th minute penalty despite leighton baines being on the pitch . baines has scored 15 penalties from 16 attempts in the premier league . everton beat burnley 1-0 at goodison park on saturday . roberto martinez insists barkley was within his rights to request penalty-taking duties on saturday .\nchris rock tweets about being stopped by police . he 's tweets show him behind the wheel of a car with blue police lights in the background . he has been documenting traffic stops in the past seven weeks . he got lots of support on twitter for documenting the stops . some accused him of race-baiting .\nfake condoms sold by gang in eight provinces thought to be worth # 1.3 m. police seized three million of the knock-off condoms in shanghai . tests found that they contained toxic metals such as mercury and lead . the lubricating oil used on the condoms was so disgusting that it made officers vomit .\nmiley cyrus attended rock and roll hall of fame induction ceremony . the 22-year-old showed off a bushy underarm region in a social media snap . many users advised her to shave her armpits . but loyal fans sprung to her defence .\nolaparib , owned by astrazeneca , is already used to treat women with breast cancer . new trials show the drug can also help men with genetic faults . up to 30 per cent of men with advanced prostate cancer have tumours that have dna defects and these respond particularly well to olaparib .\nbrendan rodgers will give his weekly press conference on friday afternoon . liverpool boss will discuss raheem sterling 's future at anfield . sterling has revealed he is not ready to sign a new contract at anfield after being offered a # 100,000-a-week deal . rodgers says he is ` relaxed ' about the situation and that sterling is happy at liverpool . liverpool face arsenal at the emirates stadium on saturday afternoon .\njenna thomas was strangled to death by her stalker ex-boyfriend in 2008 . philip packer bombarded her with hundreds of calls and texts a day . but jenna , then 21 , never reported him to police and paid the ultimate price . now nikki thomas , 27 , wants to turn back the clock and tell jenna she did n't have to ` put up ' with her obsessive behaviour .\ncourtney brain , 16 , taken out of school when she visited gp for treatment . she was stunned upon return to class in lincolnshire to be told she must make up the missed time for the ` unauthorised absence ' her mother jane burnham , 50 , criticised the ` mind-boggling ' decision . she accused skegness academy of being ` petty and unreasonable '\ndredging operation in bath is removing items from the bottom of the river avon . the canal and river trust in bath are carrying out the dredging operation costing # 20,000 . over 150 trolleys and bikes have been recovered as well as several cars .\na new fatwa in turkey says that muslims are allowed to use toilet paper . the directorate of religious affairs for turkey said water was preferable . the code also states that followers should not speak or read while on the toilet . the rules were established in the times before toilet paper or toilet seats were invented .\nwigan warriors beat st helens 12-4 at the dw stadium . the result sees wigan climb up to third in the first utility super league . the warriors avenged their grand-final defeat to st helen in october . dom manfredi , louie mccarthy-scarsbrook and joe burgess scored for wigan .\nsydney couple epiphany morgan and carl mason spent a year filming one mini documentary a day . the pair produced 365 documentaries in 365 days while visiting 35 countries and 70 cities . with only seven months to organise everything , epiphany left her job at a film production company to freelance and work towards their dream .\nwolfsburg lost 1-0 at borussia monchengladbach to stay in the title race . max kruse scored a last-minute winner for the foals to secure a place in the champions league . bayern munich beat hertha berlin 1-1 on saturday to go 15 points clear . pep guardiola 's side have now won the bundesliga for a record 25th time .\nwilliam ziegler , now 39 , was jailed in 2001 for the killing of russell allen baker . the body of the acquaintance was found next to his house in mobile . zieglers conviction was overturned in 2012 after a judge blasted his trial . he agreed to plead guilty to aiding and abetting murder and was freed today . judge sarah stewart sentenced him to 15 years and 50 days in jail . comes after anthony ray hinton was freed from death row two weeks ago .\ngoogle has been working on similar projects since 2012 . former apple battery expert dr ramesh bhardwaj began leading a testing team . sources said the four-man team spends its days devising and testing different technologies from the flexible to the wearable . google has also been working with allcell technologies to develop batteries that function at subfreezing temperatures .\nduring a ` flex cam ' break at a philadelphia soul game on april 12 a woman proved that she had the biggest muscles in the room and maybe even the city . video of the unidentified woman 's robust display at the arena football league game has over 300,000 views on youtube .\nsouthampton host hull city at st mary 's -lrb- saturday 3pm -rrb- filip djuricic ruled out of the game with an ankle injury . steven davis could return to the southampton side . steve bruce yet to decide whether to drop allan mcgregor . tom huddlestone returns from suspension but david meyler is out . gaston ramirez and nikica jelavic also unavailable for hull .\neverton host manchester united in the premier league on sunday . roberto martinez admits he does n't know what the future holds for kevin mirallas . the belgian has been linked with a move away from goodison park . martinez says he wants mirallas to put the speculation to one side .\nphotographs show female soldiers and fighter pilots in action around the world . they include in syria , pakistan and north korea . one image shows fighters from the sawt al-haq -lrb- voice of rights -rrb- battalion of the free syrian army . another shows female north korean soldiers patrolling along the banks of yalu river , near the town of sinuiju . pro-russian rebels are also pictured during a ceremony in war torn donetsk .\npresenter charlie stayt missed out the letter ` c ' when he scrawled the word on a whiteboard at a primary school in southampton . viewers took to twitter to complain about the gaffe . afterwards , colleague bill turnbull made red-faced stayt spell the word ` education '\nuniversity of cape town voted to remove statue of cecil rhodes after protests . university council heard that the bronze sculpture made black students feel uncomfortable . it has not yet been decided where the statue will be moved . government spokesman said it marks a ` significant shift ' in south africa .\nthe image , which was taken late last year , shows a pair of black boots behind a little girl . the photographer ` swears ' there was no one standing behind her . but some users have suggested they could be samurai boots . the photo was taken in kanagawa prefecture , japan , ` nearby some samurai tombs '\nphotographer james oatway captured the attack on mozambican emmanuel sithole . oatways photos have been used to highlight the violence against immigrants in south africa . seven people have been killed in the latest round of xenophobic violence against poorer immigrants . police have arrested all four suspects in the attack .\nkim copeland was walking home from her local sainsbury 's store in coventry . she threw the used cigarette on the ground before two council officers came ` sprinting ' towards her . miss copeland , 52 , was issued with # 50 fixed penalty notice but refused to pay it . she was then told to appear at nuneaton magistrates ' court after failing to pay fine .\nandy murray and kim sears are preparing to marry in his home town of dunblane . locals have decorated their shop fronts with bunting and created special-themed produce . business owners have also sent gifts to the couple ahead of the big day . the couple will tie the knot at dunblan cathedral on saturday , april 11 .\nparis saint-germain were beaten 5-1 on aggregate by barcelona . zlatan ibrahimovic and marco verratti failed to shine in the champions league . laurent blanc says psg need more time to reach the top . psg are second in ligue 1 and will play the french cup final on may 30 .\nshia fighters are looting and setting fire to buildings in tikrit , an official says . ahmed al-karim , head of salahuddin provincial council , said fighters had burnt ` hundreds of houses ' in the last two days . prime minister haider al-abadi ordered iraqi forces to oppose vandalism in the city of tikrit and arrest those responsible .\nthe danish royal family hosted a gala dinner at fredensborg castle . the event was to mark queen margrethe 's 75th birthday . she was joined on the balcony by her sons crown prince frederik and prince joachim . the two were also with her for a procession down copenhagen shopping street strøget . the danish royals welcomed royals from all corners of europe to fredens borg .\ndaniel sturridge has been struggling with a hip injury . the england striker failed to train again on thursday . liverpool face aston villa in the fa cup semi-final on sunday . steven gerrard could return to the starting line-up at wembley . liverpool will be without cup-tied winger jordon ibe .\njosh and vanessa ellis and their eight-month-old son hudson were killed on monday morning when a concrete slab fell from a construction site on a washington state bridge . the couple and their son were driving underneath the state 's route 410 overpass in bonney lake . the concrete slab was 50 feet long and weighed ` tons ' the family 's pickup truck was so badly damaged that it took hours to extract the bodies .\nlynyrd skynyrd drummer robert lewis burns jr. died friday night in a car crash . the 64-year-old was not restrained at the time of the crash , a georgia state patrol spokesman says . burns was part of the genre-defining band 's original lineup .\nlowy institute report says number of australians fighting in syria and iraq represents a ` serious national security threat ' report says risk of attack on home soil could be mitigated by right policy response . report cites the abbott government 's ` troubled relations ' with the muslim community . comes just a day after the death of melbourne model-turned-jihadist sharky jama . the australian was reportedly killed in syria while fighting with terrorist organisation islamic state .\nsarah ivens , 34 , from london , was told she was too old to have a baby . she and husband russell had been trying for years . eventually , they conceived naturally but at 13 weeks , she was told the baby had chromosomal abnormalities and had zero chance of survival . she had a medical abortion and now has two children , william and matilda .\nbrendan rodgers admitted liverpool are unlikely to reach the top four . liverpool lost 4-1 to arsenal at the emirates on saturday in the premier league . rodgers also revealed mario balotelli did not travel to london with the squad . liverpool boss also fielded questions about raheem sterling 's contract dispute .\ncarolina sandretto captures the crumbling homes of cubans in her photographs . the homes are called `` solares '' and are often shared by several generations . sandretti says she hopes to document changes as the u.s. and cuba work to restore diplomatic relations .\n`` we want to find out the answers as much as the public does , '' says baltimore police captain . freddie gray died sunday , one week after being taken into police custody . video shows gray screaming as police drag him to a waiting van . an attorney for gray 's family alleges that police are involved in a cover-up .\na grass fire in miami-dade county grows to 1,850 acres in 24 hours . the fire is 50 % contained , officials say . the blaze started sunday and spread quickly . high temperatures and gusty winds helped the fire spread , a state forester says .\ncolin kay was driving his citroen picasso on the a586 in great eccleston . toyota aygo driver pulled in front of him and crashed into his car at 50mph . mr kay had fitted a camera to his dashboard to record the collision . but lancashire police have said there will be no further action . officer investigating the case went off sick and paperwork was not prepared in time .\ntony pulis has dropped sebastien pocognoli from the starting 11 . the belgian defender is frustrated by the decision . pocognoli says he is happy at birmingham but is open to a move . the 27-year-old says he wants to stay in the premier league .\nwelsh midfielder aaron ramsey has scored 25 goals for arsenal this season . ramsey scored the only goal of the game against burnley at turf moor . the midfielder dedicated his goal to his late gran who passed away . ramsey is set to play in arsenal 's fa cup semi-final against reading .\nsettlement would pay retired players about $ 190,000 on average . nfl expects 6,000 of 20,000 retired players to suffer from alzheimer 's disease or moderate dementia someday . deal means nfl may never have to disclose what it knew when about the risks and treatment of concussions . about 200 nfl retirees or their families have rejected the settlement and plan to sue the league individually .\nisis fighters are advancing on ramadi , a local official says . he says it 's unclear how much longer iraqi troops can hold their front lines . ramadi is the capital of anbar province , iraq 's sunni heartland . at least 150,000 people have fled the area , the official says , causing traffic jams .\nsome of the 2,500 police officers who were involved in tracking down the boston marathon bombers showed a lack of ` weapons discipline ' during two firefights with the brothers , a new report reveals . in the first standoff , the officers fired ` toward the vicinity ' of tamerlan and dzhokhar tsarnaev ` without necessarily having identified and lined up their target ' , the 130-page document states . they also reportedly failed to appropriately aim their guns . amid their chaotic shooting , transit cop richard donohue was critically wounded . shortly after the firefight in watertown , massachusetts , on april 19 , 2013 - which resulted in the death of tasterlan tsarnaev - an officer mistakenly fired on\njustin jackson , a florida man , is accused of posing as a host of celebrities . court papers claim he used various aliases in order to score freebies . allegedly posed as oprah , reggie love and madonna 's manager . also allegedly posed as own executive to get free food and jewelry . jackson is being sued by oprah 's tv network and love , the former obama aide .\nhay castle in hay-on-wye , wales , is being attacked by deathwatch beetles . the beetles are living in the timber of the 800-year-old mansion . a # 5 million battle plan has been launched to repel the insect attackers .\njohn sims had burkitt 's lymphoma and was told it was terminal . he and his wife , lindsey , 29 , married march 21 at the university of texas m.d. anderson cancer center . after the wedding they set off on a cross-country road trip last week . but their journey came to an end when john 's condition worsened . he died on saturday , with his new wife by his side .\nfootage was captured by cctv camera outside a home in woodford green , north london . shows the man casually approach a white range rover parked outside a house in early hours of sunday morning . just seconds later using car hacking technology , he opens the door without even using a key or smashing a window . he then sits in the car for another 30 seconds before managing to start the engine without a key .\naustralian goanna filmed swallowing rabbit in under one minute . the two-metre long reptile is perched on top of a power pole . the lizard swings its neck back and forth as it battles to swallow its catch . goannas can unhinge their lower jaws when feeding , allowing them to eat over-sized prey .\noklahoma university art student kelsey higley created a video entitled ` manipulation ' which shows her body digitally altered . the 22-year-old used 126 different images to create the video . she says she spent ` countless hours ' browsing magazines for beauty trends .\nbabies born on same day as royal baby eligible to receive free ` lucky ' silver pennies . parents of newborns who share a birthday with the new prince or princess will have to register birth on facebook . the royal mint will also produce a # 5 coin in celebration of the birth .\ngoogle wallet users ' funds will now be protected by the federal deposit insurance corporation . currently , google wallet 's user agreement says funds are not protected by fdic . but a google spokesperson told yahoo finance that the current policy has changed . this means the company will store balances in multiple federally-insured banks .\nkevin russ hopped trains , dumpster dived for leftovers and slept in ditches as he photographed the lifestyle of a nomad down south . russ traveled from california to colorado , making his way through arizona , texas and new mexico . the photographer has clocked tens of thousands of miles in the last couple of years as he 's journeyed across the country to take photographs .\nazamara club cruises ' quest vessel carries about 680 passengers . the size of the ship means it is able to access ports that are off-limits to the bigger vessels . the company prides itself on offering a variety of experiences throughout its cruises . frank boarded a seven-night azamara quest cruise from monaco to rome .\nloretta burroughs was found guilty of first-degree murder last month for killing her husband , daniel burroughs , 63 , and dismembering him . she stabbed him to death , cut up his body and put it in plastic containers and dragged it with her as she moved three times in six years . she told friends and family that he had left her for another woman and she did n't want to move to florida , which was his idea . judge michael donlo compared the grisly murder to al capone 's st valentine 's day massacre .\nvijay chokal-ingam claims he applied to 11 top medical schools in the late 1990s and was only accepted to one because he posed as a black man . he claims he changed his appearance and joined the organization of black students to get into the st. louis university school of medicine . he said that his sister mindy kaling told him not to move forward with the book . chokal-ingams claims he was harassed by cops and store clerks and dropped out of medical school before he qualified as a doctor .\na banyan tree in guangxi province has been spotted with a web of roots growing up its trunk . the web is so flimsy that the entire tree sways in the wind . the roots were originally growing against a wall , but were moved to a nearby park .\ndavid seaman pulled off one of the most iconic saves in fa cup history against sheffield united at old trafford 12 years ago . the former arsenal keeper says the save was the best of his career and topped his penalty heroics at euro 96 for england . seaman says arsenal should not underestimate their fa cup semi-final opponents reading .\nst mirren beat celtic 2-0 at st mirren park on friday night . gary teale hit back at criticism received for the condition of the pitch . ronny deila agrees with teale 's claim that st mir ren have one of the best pitches in the scottish premiership .\na chicago cubs fan managed to catch a foul ball in her cup of beer during a game against the san diego padres on saturday afternoon . the woman , identified as 24-year-old krista dotzenrod from minnesota , said it was ` pure luck ' ' i was sitting there , and all of a sudden there is a ball in my cup . it fell straight in there , ' she said .\nan optical illusion photo of a cat appears to show a staircase . the photo is trending on social media . people are debating whether the cat is going down the stairs or up them . the picture was apparently uploaded on imgur . the image has been shared thousands of times .\nkyle seitz , 37 , received two years of conditional release , a sentence similar to probation , at the hearing in danbury superior court on thursday . authorities say seitz forgot to take his 15-month-old son , benjamin , to day care on the morning of july 7 , 2014 , and left him in the car for seven hours while he went to work . temperatures that day soared into the upper 80s . seitz told the authorities that he ` felt shock and terror ' when he discovered that his son was in the back seat ` motionless '\nthe former world no 1 was joined by his children sam , 8 , and charlie , 6 , as well as longterm girlfriend lindsey vonn on tuesday . woods , 39 , was pictured hugging sam ,8 , andcharlie , 6 , . during the second day of practice at the augusta national golf club , georgia . the 14-time major winner certainly needs all the support he can get after he recently dropped out of the world 's top 100 rankings for the first time since september 1996 .\npele and franz beckenbauer were reunited in new york on friday . the pair played for new york cosmos together in the 1970s . the club went bankrupt in the 1980s , but returned in 2010 . the north american soccer league season starts this weekend . the empire state building was lit up green to celebrate .\njohn pat cunningham was shot by the army in a field in county armagh in 1974 . he was running away from an army patrol when he was shot in benburb . the 27-year-old had a fear of men in uniform and was shot dead by the soldiers . a 73-year old suspect has now been detained in england and taken to northern ireland .\ngeorge bailey will play the second half of the natwest t20 blast for sussex . bailey will take over from sri lanka great mahela jayawardene as overseas player . the 32-year-old will also be available in the royal london cup for sussex this summer .\nan icelandic duo has created a snack that is made using cricket flour . called the jungle bar it also contains dates , sesame seeds and chocolate . cricket flour is said to be a good source of protein and other nutrients . the duo hopes it will encourage people in the west to eat more insects .\nu.s. , allies reach strong framework agreement with iran on its nuclear program . authors : deal will likely be rejected by congress , but that 's not the point . they say critics are wrong to say the goal was to eliminate iran 's nuclear program entirely . authors say the deal will prevent iran from building a nuclear weapon .\ngeoffrey lewis , 79 , died tuesday , a family friend said . lewis played orville boggs in the `` every which way but loose '' sequel . lewis began his long association with clint eastwood in `` high plains drifter '' he also appeared with the actor in `` thunderbolt and lightfoot '' and `` bronco billy ''\nbritain 's got talent returns for a ninth series on itv tomorrow . the auditions will be televised for six weeks until a winner is chosen . we look back at some of the biggest names to come out of the programme . from paul potts and diversity to attraction 's questionable tactics .\nnottinghamshire police have launched a major investigation into claims of sexual abuse at care homes in the county . operation xeres will focus on allegations relating to abuse at skegby hall children 's home near mansfield . the inquiry will also look into nine other centres in nottinghamshire where children were said to have been physically or sexually abused .\nnatalia moon is a star of sitcom ismol family in the philippines . she moved to the country in 2012 after struggling to find work in australia . the 23-year-old became fluent in the local language , tagalog . she is also a model and sings in both english and tagalog .\nrobert muradeli was deported in 2011 for breaking immigration laws . he went to live in russia more than 20 years ago and has a russian wife and son . but european court of human rights ruled russia did not breach his rights . home secretary theresa may is hoping to stop illegal immigrants and foreign criminals dodging deportation or delaying it by claiming their right to a family life .\npablo osvaldo says andrea pirlo and francesco totti would be perfect for boca juniors . the italian legend has been on loan at the club from southampton . osvaldo says the fans would love to have the pair play alongside him at boca .\nkaren reidy met sakir candan on holiday in marmaris in 2012 . the pair fell in love and she paid for his clothes , shoes and a new phone . she slimmed from a dress size 22 to a size 12 and lost eight stone in weight . but she was left heartbroken when she discovered he was cheating on her .\nimage of cloud formation that looks like a soldier in a slouch hat has emerged . it was taken by brad allan in cape york , far north queensland . he says the image is quite fitting considering the upcoming centenary of anzac day . the 50-year-old describes it as ` the sunrise digger who 's been watching over us for 100 years '\nrolling stone retracted its story on alleged gang rape at university of virginia . but it also revealed that the school has never expelled a single student for sexual assault . uva is now under investigation over how it handled the allegations in the article . the school knew about the allegations for more than a year before the article came out .\nscientists at the university of connecticut say we know how far away the source of a sound is by listening to the echoes it produces . in a study they found that the reverberation of sound helps us locate the distance of a car passing round a bend or a person nearby . they said echoes and fluctuations in volume are the cues we use to figure out the distance between us and the source .\nuefa have ordered the final 18 seconds of england 's u19 qualifier to be replayed . referee marija kurtes disallowed a penalty for encroachment in the 96th minute . she awarded an indirect free-kick instead and england won 2-1 . fifa did something similar during a 2006 world cup qualifier .\nflorin andone has scored six goals in 16 games for cordoba this season . the 22-year-old romanian has been called up to the romania national team . tim sherwood is also interested in wolves winger bakary sako . tottenham midfielder tom carroll is another potential target for the villa boss .\ntwo islamic teachers will stand trial accused of repeatedly beating a ten-year-old boy . mohammed waqar , 23 , and mohammed siddique , 60 , are accused of assaulting the youngster at the uk islamic mission 's jamia mosque in sparkbrook , birmingham . the boy was allegedly slapped repeatedly during religious lessons at the mosque between may 1 and june 13 last year .\njose mourinho has won 21 trophies during his 15-year career as a coach . the chelsea boss has coached a host of world class stars . here , sportsmail picks mourinho 's best ever xi . petr cech , john terry and didier drogba make the list . eden hazard and cristiano ronaldo also make the cut .\narsenal signed alexis sanchez from barcelona for # 30million last summer . the chilean spent five years with serie a side udinese before the move . pasquale marino brought sanchez into the udinese first team in 2008 . the former gunners boss believes sanchez is capable of scoring 35 goals a season .\ntrevor noah and dani gabriel have separated after a heart-to-heart , a source close to the comedian told daily mail online . the pair have been dating for at least four years and started dating in early 2014 . the daily show host has moved on to become a us tv star . gabriel , a physiotherapist , has said she is ` prouder ' of her ex .\npirates have leaked the first four episodes of game of thrones ' fifth season . the first episode of the new season is scheduled to debut tonight . episodes have been downloaded more than 550,000 times as of early sunday morning . hbo said it is ` actively assessing ' how the episodes were leaked . the series is the most illegally downloaded program in the world .\nmark dawe is the head of the oxford , cambridge and rsa examinations board . said children would only have short time to use search engine during tests . compared it to using a calculator in a maths exam , he said . campaigners say it would lead to a ` dumbing down of standards '\nchris rowe visited doctors five times in two months with a persistent cough . doctors told the 31-year-old he was most likely suffering a simple virus . but he started coughing up blood and noticed a dull ache in his ribs . he was taken to a&e and an x-ray revealed a tumour on his lung . in december , he was told his lung cancer had spread to his liver and bones . he is undergoing chemotherapy in a bid to prolong his life . his wife kate is expecting their second child in june .\na 34-member indian army team plans to climb mount everest to clean up trash . the team will carry at least 4,000 kilograms of waste from the high-altitude camps . the trip marks the 50th anniversary of the first indian team to scale the mountain .\nthey are usually used to trap coffee grounds when brewing filter coffee at home . but these lint-free , tear-resistant paper cones can be life-savers in many other situations . femail has rounded up the 20 unusual things you can do with coffee filter papers .\nmicky adams became the 42nd manager to be dismissed this season . adams was fired by tranmere , who are bottom of the football league . arsene wenger remains the longest serving boss with more than 18 years at arsenal . karl robinson has been at mk dons for close to five years .\nbayern munich beat porto 6-1 at the allianz arena on tuesday night . pep guardiola 's side are through to the champions league semi-finals . the german boss was pleased with his side 's first-half performance . bayern 's doctor hans-wilhelm muller-wohlfahrt resigned last week .\nnicole howley , chloe pearsall , joanne fisher and barbara holcroft jailed . they called dementia residents ` fugly ' and told one she was living in a brothel . the four women waged their hate-filled campaign throughout 2013 . judge sean enright said he had to deal with his own ` revulsion ' the women worked at the dementia unit of the bupa-run facility .\nmanchester united lead manchester city by one point in the premier league . louis van gaal 's side beat aston villa 3-1 at old trafford on saturday . ander herrera and wayne rooney scored the goals that secured the win . city face crystal palace on monday night and united host chelsea next .\nnovak djokovic came back from a set down to beat alexandr dolgopolov . the world number one will face david ferrer in the quarter-finals of the miami open . andy murray and kei nishikori are also through to the last eight .\nroger byng , 67 , was photographing small british birds in slimbridge , gloucester . he was taking pictures of the severn estuary when he saw the fox . the fox was trying to take down a large canada goose . the bird managed to escape with a single feather .\nalex oxlade-chamberlain has suffered a setback in his bid to return from a hamstring strain . arsenal are keen to find a cure for the persistent groin problem . the england international has been out since march 9 with the problem . arsene wenger confirmed the midfielder will miss at least two more weeks .\nnatasha elderfield , 41 , on trial at oxford crown court accused of murder . robert dobinson , 33 , found her below deck with lover tony steggles , court told . court heard she flew into a rage when he interrupted her attempts to have sex . elderfield allegedly stabbed dobinson through the heart on the banks of the thames .\njoanne bolton was repeatedly stabbed in the head by steven young . the 35-year-old thought she was going to die during the seven hour ordeal . young was jailed for 18 years after admitting attempted murder . miss bolton needed more than 100 stitches to her face , arms and body .\nlast year uk sales of prosecco overtook those of champagne for the first time . sales of the italian sparkling wine have risen by 28 million since 2012 . prosecco is produced from grapes grown in the veneto region of italy . it gets its bubbles from a second fermentation in a tank rather than in the bottle .\nnutritionist isabelle obert believes a good diet can affect the health of the sperm and the egg before they even meet . she says a diet rich in minerals , vitamins , essential fats and proteins can prepare both a man and a woman 's body for conception . here , she reveals her list of ten top foods to boost fertility , plus some tips on how to prepare them .\nliverpool lost 1-0 to aston villa in the fa cup final at wembley on sunday . steven gerrard was poor throughout and his time at liverpool will now end in anti-climax . brendan rodgers must take the blame for gerrard 's performance , as he has all season . liverpool have won 12 of 31 games when gerrard has started this season .\nandy carroll is in dubai with his pregnant fiancee billi mucklow . the west ham striker is stepping up his recovery from knee surgery . carroll will not have a summer break and will instead be working at the club 's training ground . the 26-year-old had surgery after injuring his medial knee ligament against southampton in february .\nrobert ewing , 60 , accused of murdering paige chivers , 15 , in 2007 . he allegedly rang police two weeks before she went missing to tell officers that a ` problem child ' had turned up on his doorstep . court heard he did so to ` test the water ' and learn how officers would react to the news . ewing 's friend , gareth dewhurst , 46 , was overheard in conversation saying he had used his car to dump the teenager 's body .\nraheem sterling is yet to sign a new contract at liverpool . the england international has been offered a # 100,000-a-week deal to stay on merseyside . sterling says he would have signed for a lot less a year ago . the 20-year-old has attracted interest from real madrid , bayern munich , manchester city and arsenal .\ndivock origi signed for liverpool from lille for # 10million last summer . the 20-year-old has been on loan at lille this season . origi says he has been in regular contact with his compatriot simon mignolet . the goalkeeper has given him tips about life at the club and in liverpool .\nabdel-kader russell-boumzar was granted bail in brisbane 's magistrate court on thursday after a 69 day stint behind bars . the 17-year-old shot to notoriety last october when footage of him apparently spitting on 56-year old josphat mkhwananzi while racially abusing him on a brisbane train went viral . he was charged with numerous offences , including serious assault , creating a disturbance and racial vilification . magistrate deborah vasta warned him he would be targeted once released on bail .\nnew photos show emily ratajkowski , 23 , in fausto puglisi dress . says she 's a ` carnivore ' and loves to eat meat and iron . hikes and does yoga every week . recently starred in gone girl alongside ben affleck and rosamind pike .\nkevin pietersen will play for surrey against oxford mccu in the parks . the 34-year-old signed a new contract with surrey last month . pietersen is hoping to press for an england recall through weight of runs in the lv = county championship . the record-breaking batsman is expected to feature in his first championship match since 2013 , against glamorgan on april 19 .\nfederal agent jeff novitzky has been appointed as the ufc 's new vice president of athlete health and performance . novitzki was involved in the investigations into barry bonds , marion jones and justin gatlin . the organisation announced earlier this year that they will implement a new year-round , out-of-competition testing protocol .\nroma drew 1-1 at home to atalanta in serie a on sunday afternoon . francesco totti put roma ahead from the penalty spot in the third minute . but atalta equalised with a penalty of their own in the second half . roma moved level with second-placed lazio on 58 points , 15 behind juventus .\nvictoria wasteney , 38 , was suspended from her job as a senior occupational therapist . she was given a written warning for praying for a muslim colleague and inviting her to church events . her colleague enya nawaz accused her of trying to convert her to christianity . miss wasteney says she was branded a ` religious nutcase ' by the nhs trust . she has now launched an appeal against the findings of the employment tribunal . she says they violated her freedom of conscience and religion .\nnaomi , 44 , and jourdan , 24 , face burberry 's new eyewear range , the gabardine . the pair first teamed up for burberry 's spring/summer 2015 campaign . the duo show off their razor-sharp cheekbones and flawless skin in new campaign .\npre-med student lizzie cochran came up with the idea after studying biology under a microscope . she is now raising money for her new clothing line epidemia designs . the designs will feature images of diseases such as polio , rabies and chicken pox .\na dartmouth college judicial committee has ` derecognized ' alpha delta after several pledges received brands on their backsides . it found alpha delta responsible for causing harm to pledges and violating terms of a suspension for alcohol violations . the fraternity has until next monday to appeal the decision .\nplaying video games may improve the ability to perform visual tasks , but also the learning ability for those skills , a study by brown university in rhode island has claimed . research found that gaming boosts the ability . to learn a number of tasks more accurately , and possibly puts gamers in an ` expert category ' of problem solving . but the researchers note they are not quite sure if gaming makes people learn skills better - or if people who learn skills well are more likely to become gamers .\nwaheed ahmed was arrested at birmingham airport after landing in uk from turkey . the 21-year-old is the son of rochdale labour councillor shakil ahmed . he was accused of trying to sneak into syria with eight of his relatives . police have said six people arrested on suspicion of terrorism offences have been released without charge .\nformer drummer and founding member of the southern hard rock band lynyrd skynyrd , robert ` bob ' burns jr , died late friday . burns ' vehicle went off the road just before midnight as it approached a curve , striking a mailbox and a tree . cartersville is about 125 miles away from macon , georgia , where duane allman died in a 1971 motorcycle crash .\natletico madrid beat cordoba 2-0 to move above valencia in la liga . antoine griezmann scored his 15th goal of the season in the fifth minute . saul niguez doubled atletico 's lead in the 39th minute . valencia can reclaim third spot with a win at home to villarreal on sunday .\nlydia ko shot a 2-over 74 on saturday in the ana inspiration . the 17-year-old new zealander has had at least one birdie in all 187 of her rounds in 49 career events on the tour . on thursday at mission hills in the first major championship of the year , ko shot an under-par 71 to tie the lpga tour record for consecutive rounds under par set by annika sorenstam in 2004 .\ndnipro enter the europa league semi-finals after a 1-0 win over brugge . yevhen shakhov scored the winner in the final 10 minutes with a deflected effort . the ukrainian side had been held to a goalless draw by the belgian side last week .\nresearchers at yahoo labs in california have created a sensor that can recognise the shape of your ear or any other body part you want to access your device . called bodyprint , the technology turns a standard touchscreen into a biometric scanner . it can recognise your fist , phalanges -lrb- in your fingers -rrb- , palm or your fingertips . to accept an incoming call , users would only need to press their ear against the phone . during tests with 12 participants , bodyprint classified body parts with 99.98 per cent accuracy and identified users with 99 52 per cent accuracy .\nskywest airlines flight 5622 was flying from chicago to connecticut . pilot plunged plane into a steep dive after reported loss of cabin pressure . three passengers on board lost consciousness and others felt dizzy and sick . pilot declared emergency after eight minutes and made emergency landing in buffalo , new york . skywest initially claimed the plane landed ` out of an abundance of caution ' because of one sick passenger . but later said new information from medical personnel confirmed three passengers lost consciousness .\npet dog cookie was slashed with a meat cleaver during aggravated burglary . joseph devaney and kieron rolstron burst into home of young couple . devaney struck cookie over the head with the machete as he barked . rolstron shouted at the terrified householders ` give me your money ' and ' i will stab you ' before the duo fled in the family 's car .\nten-week-old qingqing is in a critical condition in hospital in eastern china . she had emergency surgery to repair her mauled face after attack at home . her mother , ms li , said she left her alone to work in nearby fields . but she returned home after ten minutes and found qingqed 's body on the floor .\namnesty international india calls for an independent investigation of the killings . police say they shot 20 suspected red sandalwood smugglers in southeastern india . the police claim self-defense , saying the suspects attacked them with stone and axes . amnesty says the incident `` involved a serious violation of human rights of the individuals ''\nchoirmaster at king edward 's school , surrey , took vulnerable student 's virginity . edward moore , 24 , had consensual sex with 16-year-old student in his office . he was working in his first job as assistant director of music at the private school . girl had confided in him that she had been abused by another music teacher . moore , from ascot , berkshire , was jailed for nine months on friday .\nthe nephew of president john f kennedy used the term last week . was promoting a film that links autism to a chemical found in vaccines . on monday , following a storm of criticism , he publicly retracted his statement . said he had been struggling for a way to convey the effects of autism on children and their families .\nkevin o'connor , owner of memories pizza in walkerton , indiana , closed the shop for eight days after comments by him and his daughter , crystal , to a local television station supporting a new religious objections law . the law , which has since been revised , sparked a boycott of indiana . a crowdfunding campaign started by supporters raised more than $ 842,000 with donations from 29,160 contributors in 48 hours . o ' connor said he never thought about taking the money and retiring .\nwadeem ahmed is said to be a member of extremist group hizb ut-tahrir . the 21-year-old is the son of rochdale labour councillor shakil ahmed . he was caught trying to cross the border into syria with four children . ahmed was arrested by turkish police at the border town of reyhanli last week .\nlauren york , 15 , ran away from her home in north ridgeville , ohio , around 4am sunday . she was found monday afternoon in the same town . york 's parents believe she left on her own . she took a backpack with a phone and clothes and her bike . her mother feared she may be headed to missouri .\nleicester have announced a move for super rugby lock mike fitzgerald . the 28-year-old new zealander has helped the waikato-based chiefs win two super rugby titles . fitzgerald will follow waratahs wing peter betham to welford road next season .\nthe four nordic cops were on their way to see les misérables on broadway on wednesday when they stopped a brutal assault on a crowded rush-hour 6 train . samuel kvarzell , markus asberg , eric jansberger and erik naslund subdued an enraged homeless man who was viciously beating another rider on the train . the men will be awarded at a lunch with sweden 's minister for home affairs anders ygema . ` we 're no heroes , just tourists ' : the swedish cops said they were just answering the call of duty .\nchloe the wombat has found herself a new friend at taronga zoo . she has moved into her new digs alongside a couple of echidnas . in an adorable video , chloe is seen trying to take a nap in the mud . she follows her zoo keeper evelyn weston around the zoo . the pair have been inseparable since chloe came to the zoo three months ago .\np.b. jams in warr acres , oklahoma , owner ashley jiron posted sign on window . said she had noticed someone looking for food in bins behind her restaurant . taped a sign to window appealing to the person to come in for free meal . a customer called greg king posted picture of it on instagram . it has since been shared thousands of times on social media .\nalfred taubman , who helped change the face of suburban life , dies at 91 . he founded the taub man co. in 1950 and developed some of the best-known malls in the u.s. . he was jailed in 2002 for conspiring with christie 's to fix auction house commission rates .\nadele berry spoke to call handler when she contacted the mobile phone company over a problem with her bill . but she was left shocked when she later received a string of texts from the man . he called himself her ` future hubby ' and asked about his ` in laws ' in one message . the man has now been suspended by vodafone pending an investigation .\nkiradech aphibarnrat fired six birdies in nine holes to take the lead at the shenzhen international in china on saturday . the 25-year-old began the third round one shot behind american peter uihlein . aphibarrat has one european tour win to date when he won the malaysian open in 2013 .\nluis suarez reveals he once sneaked into the nou camp for a photo . the striker also reveals that real madrid were interested in signing him . the uruguayan has been in fine form since his # 75million move to barcelona . suarez also opened up about the infamous bite on giorgio chiellini .\nsarah 's mother swore her facial exercises worked . she 's now been using the same exercises for 30 years . carole maggio is the creator of facercise . she says they can help with wrinkles and make you look younger . sarah tried the exercises and was amazed at how much they worked .\nnavinder sarao , 36 , made the bold claim in an email to business colleagues . us prosecutors allege he helped trigger the ` flash crash ' of wall street in 2010 . the crash netted sarao # 27 million in profits , they claim . he appeared at westminster magistrates ' court on wednesday and was bailed .\nshauna mcglasson , 25 , from workington , was 17st and weighed 17st . she was left red faced after becoming trapped in the turnstiles at blackpool pleasure beach . the embarrassing incident inspired her to make a dramatic change to her diet . she lost 7st in as many months and is now 10st and weighs just over 10st .\nglasgow warriors host cardiff blues in guinness pro12 on friday night . al kellock and dougie hall will both start for the warriors at scotstoun . both players are to retire at the end of the current campaign . cardiff blues prop gethin jenkins is a doubt for the match with a calf strain .\nchelsea beat manchester united 1-0 at stamford bridge . eden hazard scored the only goal of the game in the second half . jose mourinho 's side are now 10 points clear at the top of the premier league . but john terry insists they need two more wins to clinch the title .\nwashington post calls charges against jason rezaian `` absurd '' the iranian-american will be tried soon on espionage , tehran 's chief justice says . the washington post bureau chief was arrested in july on unspecified allegations . he has not been allowed to see visitors aside from his wife and has endured long interrogations .\nteofil brank , better known by his stage name jarec wentworth , was arrested on march 4 by the fbi in los angeles . investigators said he tried to exact the ownership of a condo and $ 1 million in cash from the victim . in text messages to the victim , brank threatened to post photos and other details of the man 's trysts through his twitter account .\njohn foran 's wife nita was preparing a chicken tikka biryani stir-fry . he found the splinter-covered shard in the # 2 ready meal on april 7 . iceland are carrying out an investigation into how the timber shard got in the curry .\nbbc accused of ` dumbing down ' the proms by holding ibiza-style dance party . dj pete tong will host a late-night concert at the royal albert hall . proms director edward blakeman said it was a ` natural ' move . it will take place on july 29 , coinciding with the 20th anniversary of radio 1 's broadcasts from ibiza .\nformer wisconsin sheriff 's deputy andrew steele , 40 , has been found not legally responsible in the killing of his wife and sister-in-law . a jury deliberated for about 10 hours until all but two of the 12 agreed the verdict early on thursday . the couple , ashlee and kacee tollefsbol , were found dead of gunshot wounds at steele 's home in fitchburg , wisconsin , last august . defense attorneys argued that the disease damaged steele 's brain , making him not criminally responsible for the deaths . steele had been diagnosed with the progressive neurodegenerative disease last june .\nnaomi jacobs was 32 when she lost her memory of the past 17 years . she woke up in unrecognisable surroundings and thought she was 15 . she had transient global amnesia , a form of memory loss brought on by stress . condition wiped out the ` episodic ' part of her memory , leaving only semantic memories . she is now set to detail her remarkable experience in a new book .\ncarlos toro worked for the dea for 27 years as an informant . he was a mid-level member of the medellin cartel in colombia in the 1980s . toro was told he would be rewarded with us citizenship for his work . but he is now technically living in the us illegally after declining health forced him to retire . the dea refused to help him with his citizenship and he is facing deportation .\nmatt andersson says ` electronic hacking ' could have been to blame for crash . claims passenger planes do not have same level of protection as military jets . accident has been blamed on andreas lubitz , 28 , who locked himself in cockpit . investigators say he deliberately crashed the airbus a320 jet into the alps .\nsaracens beat racing metro 12-11 in the champions cup quarter-finals . mark mccall 's side will now face clermont auvergne in the semi-finals on april 18 . saracens boss believes playing on neutral ground offers hope of victory .\nwatford secured promotion to the premier league on saturday . the hornets beat brighton 2-0 at the amex stadium . watford players celebrated wildly on the team-bus as results came in . tommie hoban has called the promotion an ` unbelievable achievement '\nile louët is perched in the midst of morlaix bay in brittany , france . it is the perfect retreat for up to 10 guests costing just # 145 . the island was once used by the lighthouse keepers to guide boats through the bay . the quaint cottage is a comfortable stay and can be hired for the small sum of $ 200 -lrb- # 145 -rrb- for two nights .\nformer prime minister john howard found himself standing on the side of the road in sydney recently . his driver was there to jack up his car after it had a flat tyre . felicity waterford was waiting for her daughter at the conservatorium of music when she saw the car . she asked if they needed her help before the former pm agreed to a selfie .\nstuart mccall took over at rangers after kenny mcdowall was sacked . the former newcastle united boss has won his first three games . he says he was warned by nine-in-a-row boss walter smith not to take the job . but mccall says he is pleased he took the risk and is enjoying his time .\nsean mccabe was told he had just two months to live after being diagnosed with cancer . the 30-year-old booked st david 's church in tonyrefail , south wales , for his funeral . he also wrote a letter to his children for his partner to read to them once he died . but after making a recovery he was told his cancer is now in remission . he has now rebooked the church for his wedding to fiancee lisa williams , 30 .\nreal madrid defender alvaro arbeloa says jose mourinho could return to the club . mourinho left madrid in 2013 amid rumours of bust-ups with senior players . arbelo says mourinho 's work was the foundation of real 's success under carlo ancelotti . the special one is said to be considering a # 40million move for raphael varane .\nthe critters were filmed at indiana 's indianapolis zoo after getting a makeshift backboard and hoop installed in their pen . footage shows them inquisitively inspecting the piece of sports apparatus and standing tall on their back legs . march madness is set to come to a close tonight as the wisconsin badgers and duke blue devils go head-to-head at the lucas oil stadium in indianapolis .\nteenager allegedly raped by five men from her village in uttar pradesh . she is now fighting for her life in delhi 's safdarjung hospital with 70 per cent burns . she was allegedly gang-raped on sunday when she went outside to relieve herself . her family reportedly told her to keep quiet about the attack .\nmichelle heale , 46 , of tom 's river , new jersey claims she was trying to burp 14-month-old mason hess when he began choking on his applesauce . she claims she hit him four or five times before he let go of her shoulder and his neck snapped backwards . the mother of twins was charged with murder and endangering the welfare of a child after a medical examiner determined the boy died as a result of homicide caused by blunt cerebral trauma . on tuesday she reenacted the moment the baby boy died with a doll .\nbest man left guests at his brother 's wedding in tears after composing an emotional song to use as his best man 's speech . melbourne singer daniel buccheri composed the tune to the popular music from artists such as sam smith and the backstreet boys . he toasted his brother adrian and his new wife sarah at their march 29 wedding in using his voice . the unique speech performed by daniel at poet 's lane in sherbrooke has been viewed over 100,000 times online .\n` super speakers ' showed less activity in an area of the brain known as broca 's . this suggests they put less effort into articulating and comprehending speech . neuroscientists at university college london used mri scans to study the brains of 17 professional comedians , a radio presenter and a barrister .\nengland drawn in group d of uefa under 17 european championships . john peacock 's side will face republic of ireland , holland and italy . young lions are defending champions , having beaten holland in final . scotland drawn in c alongside greece , russia and france . group a contains hosts bulgaria , croatia , spain and austria .\nexecutions in tennessee have been halted as new lethal injection methods are challenged . the state 's supreme court has now postponed the execution dates of four men on its death row . the court is waiting for verdicts about the constitutionality of the lethal injection drug pentobarbital .\nfalkirk beat hibernian 1-0 in the scottish cup semi-final at hampden park . craig sibbald scored the only goal of the game in the 74th minute . falkirk boss peter houston goaded his vanquished rival alan stubbs .\nqueen is looking for a sous chef to work at various royal residences . successful applicant must travel to balmoral for three months of the year . must order in ` the freshest seasonal ingredients ' from the queen 's kitchen garden . job pays around # 28,000-a-year - but there is accommodation available .\nwomen filmed twerking in front of malaya zemlya monument in novorossiysk . two were jailed for ten days and a third for 15 days for hooliganism . prosecutors said their ` erotic and sexual twerk dance ' was disrespectful . the six dancers posted the video to attract new recruits to their dance school .\nfacebook 's sidebar status feature is being tested in taiwan and australia . it lets users post a short message about what they are doing in a sidebar added to the social network 's mobile app . users can choose from an array of small pictures , such as a bicycle or coffee cup , to go with their status . the updates are visible to friends , but users can change privacy settings to determine who sees an update .\nnational bar association said clarence habersham , 37 , should be fired and prosecuted for filing a false report . habersam was the second officer to arrive at the body of walter scott , 50 , and did not report michael slager 's actions leading up to the shooting . slager , 33 , has been fired from the north charleston police and charged with murder . scott , a coast guard veteran , was pulled over for a broken tail light last saturday by slager . the father of four 's death sparked nationwide debate about police brutality and bias against black people .\npeter fox , from liverpool , was arrested at euston station in london this morning . he is wanted for the murders of his mother and sister in merseyside . police said bernadette fox , 57 , died of asphyxiation and sarah fox , 27 , was stabbed . the bodies of the two women were found at separate addresses in bootle and worcester .\nespn reporter britt mchenry , 28 , has been suspended for one week after being caught on camera berating a parking lot attendant . she told the woman she should ` lose some weight , baby girl ' and ` i 'm on television and you 're in a f -- ing trailer , honey ' the former model has a blog dedicated to helping women feel ` comfortable in their own skin ' she has also spoken out against ` sexist ' commercials that focus on ` appearance alone '\njeff bezos ' blue origin company has completed a successful spaceflight test in west texas . the new shepard vehicle rose to a height of 58 miles -lrb- 94km -rrb- before landing . it was unmanned , but will ultimately take six people into space . the booster failed to land successfully but the capsule landed without a hitch . ultimately , the flights will enable six people to go to space . while in space , huge windows will give the customers a stunning view of earth .\nchelsea manning has given her first in-depth interview since announcing plans to transition into a woman . the 27-year-old was convicted of espionage in july 2013 for sending a trove of classified documents to the wikileaks website . manning , a former army private who enlisted as bradley , has had her name officially changed to chelsea and recently received approval to undergo hormone therapy for gender reassignment while in prison . she has started tweeting and interacting with supporters online from prison .\nmimi the cat became an internet sensation after her owner uploaded clips to facebook . the one-year-old cat is seen playing volleyball with 15-year old joshua teague . the 30-second-video was shared by thousands of people around the world . mimi was picked to star in the tv advert after her owners shared it with a facebook group .\nfreddie gray was standing in van , bent over , with his head facing the back door . it is believed he fell into the door , breaking his neck . sources say there is ` no evidence ' gray sustained fatal spine injury . news comes hours after baltimore police admitted van transporting gray made a previously unreported stop . the mysterious detail was picked up by a privately-owned security camera . it will be integral to the police investigation into gray 's death . six officers have been suspended with pay over the incident .\ne-commerce giant blasted regulators for being slow to approve commercial drone testing . federal aviation administration had earlier given the green light to an amazon prototype drone in march . but the company told u.s. lawmakers less than a week later that the prototype had already become obsolete while it waited more than six months for the agency 's permission .\njurgen klopp will leave borussia dortmund at the end of the season . former germany international dietmar hamann believes klopp would be the ideal fit as manager at manchester city . hamann says klopp has ` more right to take over manchester city than pellegrini ever had '\npacers player chris copeland was stabbed after leaving a new york nightclub , club says . two atlanta hawks were arrested on obstruction and other charges , police say . the hawks were not involved in the stabbing , but were arrested later , police said . the pacers say copeland suffered a knife wound to his left elbow and abdomen .\njordan morris scored early in the second half to put usa ahead . juan agudelo added his first international goal in four years seven minutes later . jurgen klinsmann played a mix of young and experienced internationals in the win . morris is the first university student to make the us side in two decades .\nfloyd mayweather is down to within three-and-a-half pounds of the welterweight limit ahead of mega-fight . mayweather was photographed taking the scales for the wbc 's mandatory weight check 30 days before a world title fight . the electronic machine showed mayweather at 150.5 lbs .\navalanche ripped through tents with climbers still inside at base camp . photographer captured the moment it tore down the mountainside . around 1,000 people , including 400 foreigners , were believed to have been on mount everest when the quake struck . at least 65 britons across the region were unaccounted for last night .\ncrsity collins , 30 , was using crystal meth every day and spending up to $ 500 a week to keep up her drug habit . she took herself to the emergency room six times while suffering drug induced psychosis . the former paramedic has slammed health services for failing to offer her support despite claiming on numerous occasions that bugs were eating her eyes . ms collins has now been clean for nine months after seeking help from the department of veterans affairs .\nactivated charcoal is thought to act as a ` detox ' spiralizing and bone broth are also latest food fads . vavista dietitian sophie claessens picks the ` miracle ' foods . she says some fads are clearly bonkers , with no scientific evidence to back them up .\nmailonline stayed at the andaz liverpool street hotel in london . it is built on the site of england 's first hospital for the mentally ill . the hotel has 267 rooms , four of which have been decorated by artists . celebrities who have stayed there include beyonce , lil kim and lady gaga .\nformer world no 1 tiger woods was spotted dancing on the practice ground on monday . woods was listening to music while honing his game at augusta national . he was seen embracing darren clarke and sharing a laugh with mark o'meara earlier this week . woods will play in the traditional par-3 contest for the first time in 11 years .\narsenal take on chelsea at the emirates stadium on sunday afternoon . arsene wenger has failed to win in 12 games against jose mourinho . wenger has drawn five and lost seven of his clashes with mourinho . the arsenal boss insists his record against mourinho will have no bearing on the top-of-the-table clash .\nceltic are considering a second double raid on dundee united . the hoops are interested in signing john souttar and nadir ciftci . the duo could cost celtic around # 1.5 million . the club sold stuart armstrong and gary mackay-steven to celtic .\nexploratory wells have found 158million barrels per square mile of oil . uk oil & gas investments say they have discovered 100billion barrels . discovery made in the weald basin near gatwick airport . company says it could meet up to a third of britain 's oil demand within 15 years .\nlt. dan was born without a paw and fellow breeders suggested to his original owner that he be put down . but karen riddle did n't buy it and decided to find him a home with a special needs child . on monday the nine-week-old puppy was given to three-year-old sapphyre johnson who is missing both of her feet . ` he 's just like me ! ' the toddler exclaimed with joy the first time she ever saw a photo of lt. dan .\nobama declares threat of cyber attacks by foreign agents a ` national emergency ' he unveils plans to impose sanctions on hackers in wake of attacks . targets include russia , china and iran , and north korea . treasury will be able to freeze or block assets of those involved .\nheartbroken owner tony tancock believes only an expert could have targetted the dozen show-quality guinea pigs . he was devastated after a thief snuck into an outbuilding at his home in crediton , devon , to steal his prized pets leaving eight behind . a cavy expert has warned the thefts could be a hate crime from someone with a score to settle .\nmore than 200 girls were kidnapped from their school in nigeria a year ago . the hashtag #bringbackourgirls was used in more than four million tweets . charles alasholuyi posts his daily photo of the girls on cnn ireport . he says he does this to give the girls ' families a voice and to raise awareness of the issue .\ndeva joseph , 14 , was left in floods of tears at london stansted airport . she was told she would not be allowed to take her flight home to spain . teenager offered to pay for second item to be put in hold but was told only credit cards would be accepted - even though she is too young to have one .\neverton have expressed an interest in qpr striker charlie austin . the toffees have joined newcastle , crystal palace and southampton in the hunt for a new striker . club brugge 's obbi oulare was also watched by premier league clubs on sunday .\nmohammed tahir , 53 , from leytonstone , east london , targeted woman on train . he pretended to accidentally slide his hand across her thigh . but he then began rubbing his crotch and pot belly on her bottom . he was convicted of sexual assault but given suspended sentence .\nwarren rodwell was abducted from his home in the philippines in december 2011 . he was held against his will for 472 days and feared he would be behead . under australian law , survivors and families of victims of overseas attacks can claim up to $ 75,000 in compensation . mr rodwell fears the federal government will not award him victims of terror overseas compensation .\nnew balance has replaced warrior as the manufacturer of liverpool 's kit . the reds are the first premier league club to release their new kit for 2015-16 . sportsmail picks five of its favourite strips from the club 's history . let us know your favourite strips in the comments below .\nbristol rovers were relegated from the football league last season . darrell clarke 's side are second in the conference . they face alfreton in the final game on saturday . if bristol rovers win they will be the first team to go straight back up since carlisle in 2005 .\nshanna mccormick 's weight reached 27.5 st when she met her boyfriend of 14 years , dan dimmock . doctors warned her weight would kill her if she did n't lose weight . she lost 16.5 st and dropped 18 dress sizes in two years to reach her goal weight . now , the pair are engaged to be married and have bought a house together .\nchinese-born yingying dou reportedly ran the mymaster website which charged up to $ 1000 per assignment . the website was used by hundreds of students across 12 nsw universities . university of sydney was provided with evidence that its students had ordered 40 assignments from the my master website . but internal emails show just five students have been found guilty of cheating . a university of nsw spokeswoman said 15 students were identified using plagiarism prevention software .\nrangers ' goalkeeper steve simonsen placed bets on a total of 50 games over the course of a year . the 35-year-old served a one-game ban after he admitted breaking the sfa 's zero-tolerance gambling rules . but an appellate tribunal has rejected the scottish fa 's appeal .\narshdeep kaur , 14 , died after being thrown off a bus in india . she and her mother shinder were travelling from home in punjab to visit relatives . half a dozen men began harassing them and tried to ` molest ' them . mrs kaur alerted the conductor , who joined in the assault . when the bus slowed down , the pair were pushed off the bus . the alleged perpetrators , including the conductor and driver , fled the scene .\nfiorentina goalkeeper neto is wanted by a number of top european clubs . liverpool were linked with a move for the brazilian earlier in the season . psg and clubs in spain are also interested in the 25-year-old . neto 's agent stefano castagna says no decision has been made yet .\nandrew barr was principal of melbourne 's the geelong college . he was photographed through a window as he watched pornography in his office . the school council launched an investigation after the photograph appeared on snapchat . chairman of the geelong college council said the matter was a serious breach of school standards .\nap mccoy is set to retire at sandown on saturday . the 20-time champion jockey will ride in the ap mccoy celebration chase . he will then ride in either the bet365 gold cup or mr mole . mccoy 's boss , jp mcmanus , has jonjo o'neill-trained box office in the race .\nnew zealand face england in two-match series next month . martin guptill has been recalled to the new zealand test squad . guptills smashed 237 against the west indies in recent world cup . matt henry has been called up to the test squad for the first time . james neesham will miss the tour because of a hamstring injury .\nhandscuffed barrio 18 gang members moved from izalco jail to san francisco gotera . in all 1,177 barrio members were transferred . they will mix with rivals from the hyper-violent mara salvatrucha gang , or ms-13 .\nshanghai has hosted the formula one race since its first race in 2004 . the chinese grand prix is often used as a title decider in the season . it has been home to the australian and malaysian grand prix in recent years . the track layout is challenging but offers great rewards for drivers .\njay hart , 24 , was caught on camera having drunken sex with a female fan . he was dismissed after the sex clip of his tryst at mossley afc in tameside was shared . he has now begged for his 25-year-old girlfriend bryony hibbert 's forgiveness . the striker , from oswaldtwistle , lancashire , has no idea who the woman is .\ntemitope adebamiro charged with first-degree murder after her husband 's death was ruled a homicide . police were called to her home in bear , delaware , early on thursday morning because of an ` unknown problem ' when they arrived they found adeyinka adebamiro unconscious in a bedroom with a stab wound to his upper body and his wife in bloody clothes . the argument allegedly began after the victim found photos on adebamiros ' cellphone that she had taken of pictures he had stored on his mobile phone . the stored pictures were of adeyinka 's sister and the nanny 's daughter .\njordan spieth is three shots clear at augusta national after the first round . the 21-year-old shot a five-under-par 64 to take the lead on day one . justin rose and ernie els both shot 67 to share the lead . rory mcilroy and bubba watson both shot 71 in the first day .\narchaeologists have discovered 20 stone flakes and anvils just west of lake turkana in kenya . they were found buried in sediment and date back to 3.3 million years ago . this is 700,000 years older than any other stone tools found previously . it means ancient human ancestors were creating tools hundreds of thousands of years before the appearance of the first ` man ' - homo erectus .\ndon mclean is selling original manuscript and lyrics to american pie . 16-page collection is expected to fetch up to $ 1.5 million at auction today . it includes a deleted verse , which was crossed out and never recorded . mclean , 69 , says writing the song was ' a mystical trip into his past '\nthe key for easter indulgence is noting our ` energy in ' and ` energy out ' and balancing food and fitness . a small chocolate bunny contains 2212 kjs and would take an hour and ten minutes of swimming to work off . two hot cross buns -lrb- without jam and butter -rrb- will take up to 50 minutes of running to workoff .\ngeorgia davis , who weighs 55 stone , had to be lifted out of her home in aberdare , south wales . the 22-year-old had to have her body removed by a crane so emergency services could take her to hospital . the seven-hour operation involved two cranes , seven police cars , two fire engines and 11 medics . georgia is an extreme manifestation of the obesity epidemic afflicting young people in britain .\nnigel jackson , 59 , was arrested at his home in alvor , in the algarve . his wife brenda davidson , 72 , was found in a shallow grave outside . at the time he claimed she had committed suicide after being diagnosed with cancer . but he has now changed his story , saying she was killed by intruders . he also admits to moving his mistress into the house as her body lay .\nrafael nadal beats john isner to reach quarter-finals of monte carlo masters . roger federer loses to gael monfils in straight sets in last eight . novak djokovic and david ferrer also through to last eight of the tournament . tomas berdych and milos raonic will meet in other quarter-final .\nrobin barton , now 25 , was just four hours old when he was found by michael buelna behind a dumpster in november 1989 . buelna initially wanted to adopt the boy , who weight just 4lb 2oz , but barton 's adoptive parents beat him to it . barton and buelnas met for the first time last week and embraced . buerna hopes to help barton find his biological mother .\ndanny welbeck scored the winner as arsenal beat manchester united in the fa cup . a 15-year-old boy posted a racist tweet after the game on march 9 . the tweet read : ` welbeck is dead to me , the f ****** c *** ... ' the teenager has now been cautioned and warned about his behaviour .\nclinton is holding her first campaign event at a community college in rural iowa on tuesday . she announced her presidential bid on youtube and then hit the road in a van , traveling 1,000 miles . of the ten students interviewed by daily mail online , only two would speak kindly of mrs. clinton . ` she 's going to push some emotional thing on us , ' predicted student hallie corum . ` what else is she supposed to do ? '\nhello is only available on android devices in the us . it pulls in any publicly-shared data from a user 's facebook profile . when a user receives a call hello shows them info about who 's calling . users can also see which numbers have been blocked from other users .\nbayern munich defeated porto 7-4 on aggregate to reach champions league last four . pep guardiola weathered his first major crisis at the german club . bayern were beaten 3-1 by porto in the first leg last week . the spaniard said after the game that winning is a matter of life and death at bayern .\nnew york governor andrew cuomo has issued a state health alert that the synthetic marijuana product known as ` spice ' is sweeping the city . 160 people have been hospitalized in nine days after using the drug . over 120 of those people were admitted to emergency rooms in the same week . the cannabinoid , also commonly called ` k2 ' or ` mojo ' , is predominantly abused by teenagers and typically sold over-the-counter as incense or potpourri .\nrolando aarons has suffered another injury setback and may not play again this season . the 19-year-old was in contention to play for the club 's under 21s against derby on wednesday . the newcastle midfielder has made only five senior appearances this seasonâ .\ngoogle 's waze app allows drivers to track police vehicles and accidents . it also allows users to share road reports and traffic conditions . but police officers say the app is being used to stalk and plan attacks . ismaaiyl brinsley , 28 , killed two nypd police officers in december . he was known to have used the app to monitor the movements of police .\npremier league stars including steven gerrard , theo walcott and phil jones could face an advertising watchdog probe they plugged an adidas sale on twitter . manchester city 's david silva and everton 's phil jagielka were among around a dozen players sponsored by the firm who urged millions of followers to buy the knock-down goods .\ncleveland officer michael brelo , 31 , charged with voluntary manslaughter . he is the only officer charged because he fired last of 49 rounds . timothy russell , 43 , and malissa williams , 30 , were unarmed . brela 's attorney said he had reason to believe he was being shot at . he fired 15 rounds into the windshield of the suspects ' chevy malibu . the car was strafed by police gunfire after a high-speed chase .\nminnesota vikings running back adrian peterson will be reinstated as an active player friday . nfl commissioner roger goodell says peterson must undergo counseling . the 30-year-old was suspended in november over allegations he disciplined his son too harshly . peterson pleaded no contest to misdemeanor reckless assault in november .\nrebecca rice , 16 , was struggling with her nerves ahead of french oral exam . her french teacher lorette esteve advised her to bring her pet dog holly to help . staff at bodmin college in cornwall have worked with pupils to help combat stress .\nthriller twisted sister will end its 2016 tour . the band will also perform two shows in honor of a.j. pero . the tour will be called `` forty and f*ck it '' twisted sister 's biggest hit is `` we 're not gon na take it ''\nmumbai photographer anil saxena uses photoshop to create stunning images . he has a background in graphic design and cgi . his pictures blend the everyday with the bizarre . in one image a woman hangs up a zebra 's stripes on the line to dry . in another a crystal swimming pool is realised as a sink .\nnorway is set to be the first nation to phase out fm radio entirely . instead , people will have to tune in digitally . officials say it will save $ 25 million . half the country already listens digitally . the move will be phased out region by region . the last one will be in december .\ndr ros altmann will be appointed as minister for consumer protection . she will take responsibility for protecting people from rip-off pension and mortgage charges . former treasury adviser went on to head over-50s group saga . she would also be in charge of financial education and government policy .\nbradford city 's main stand caught fire on may 11 , 1985 , killing 56 people . rangers boss stuart mccall believes it was an accident . mccall 's father was among those who died in the blaze . martin fletcher , a bradford fan , lost three generations of his family in the tragedy .\nthe oscar-winning actress believes she was in her prime age-wise in the ` unfortunate ' 1970s . she said the decade after the sexual revolution but before feminism was ` perilous ' for women . mirren was speaking ahead of the release of her new film , woman in gold .\nformer staff sgt. charlie linville , 29 , from boise , idaho , lost his right leg and several fingers in an explosion in afghanistan in 2011 . he is using a specially designed metal foot outfitted with a climbing boot and another one with crampons in his quest to conquer the 8,850-meter -lrb- 29,035-foot -rrb- summit next month . his quest last year was thwarted following the deaths of 16 sherpa guides in april when an avalanche swept down .\nmilinda gunasekera was flying home from chile on october 29 . he was changing flights at auckland airport for the final leg of his trip . the 32-year-old downed a bottle of vodka in the airport toilets . he then allegedly groped a female passenger 's breast as his qantas flight was taxiing to the runway . he will return to new zealand in june to be sentenced .\nsanti cazorla says he is happy to stay at arsenal despite interest from atletico madrid . the spaniard has been linked with a return to his homeland with atletico . cazorlo has scored seven goals and provided eight assists this season . the 30-year-old says he lives in hampstead , 15 minutes from the training ground .\naugusta national golf club has banned fans from bringing their cell phones on to the course . fans have adapted by using their pocket-sized digital cameras or their old 35mm bodies and lenses and re-learning how to use them . when play begins on thursday , fans will have to put them back on the shelves .\nnba legend kareem abdul-jabbar had quadruruple coronary bypass surgery . the 68-year-old was admitted to ronald reagan ucla medical center earlier in the week with cardiovascular disease . the successful surgery cleared a major blockage from the hall of famer 's heart .\nbradford brewing company owner matthew halliday has seen spike in sales . he said throngs of people have turned up at the brewery 's brewfactory bar . the spat started after the respect party parliamentary candidate for bradford west seemed to take offence after the brewing firm asked him if he was ` still a thing ? '\nvictoria 's secret angel alessandra ambrosio underwent a ` medical procedure ' for ` constant headaches ' on tuesday . the brazilian supermodel is being monitored at ucla hospital in westwood , los angeles . ambrosia was seen partying at the coachella festival in california on sunday . she had booked the appointment two weeks ago , a friend told daily mail online .\nbournemouth beat bolton 3-0 to seal promotion to the premier league . eddie howe 's side are dynamic and full of hungry players . matt ritchie is a contender for my '10 to watch ' for next season . i ca n't wait to see callum wilson in the top flight .\nnewcastle have lost four games on the spin and are in relegation danger . john carver has called his players ` mr nasty ' after their defeat by sunderland . the magpies travel to anfield to face liverpool on monday night . carver says his players have a point to prove to themselves .\nwandsworth council is set to remove the rule giving priority to siblings . families who move 800 metres from their preferred school will lose place . more than 80,000 children face missing out on their preferred primary school . four in ten pupils are expected not to get a place at their favourite school .\nflorida woman lydia kelm was arrested for driving under the influence after she allegedly caused a scene at a mcdonald 's drive-through . police say she showed up to the drive - through wearing nothing but a bra and panties . she revved her engine loudly and backed up twice , prompting workers to yell repeatedly for her to move forward . kelm told officers she had three beers , but a sobriety test indicated that her blood-alcohol level was .247 .\nsteven gerrard could feature in the fa cup final at wembley on his 35th birthday . gerrard was suspended for the quarter-final replay following his red card against manchester united . philippe coutinho came to the rescue for liverpool by scoring the game 's only goal at ewood park .\nloretta lynch was sworn in monday as the 83rd u.s. attorney general . she is the first african-american woman to serve as the nation 's top law enforcement official . vice president joe biden administered the oath of office to lynch at a justice department ceremony . lynch replaces eric holder , who left the job friday after six years as attorney general .\ntowie star bobby cole norris has today thanked an anonymous donor . he launched the #savebobbysmum appeal to urge people to sign up . bobby 's mother kym norris was diagnosed with leukaemia last august . doctors revealed she had just one hope for survival - a stem cell transplant . bobby inspired more than 3,000 people tosign the bone marrow donation register .\nduring the masters , jordan spieth demonstrated optimal movement in two key areas . spieth 's movements helped him avoid back and knee injuries . golfers have mobility limitations in their mid back or hips , which hampers play . try these three yoga-based moves to address the key areas of the swing .\nus officials say president obama gave the cia a waiver exempting the agency from providing proof of imminent threat to the us ahead of planned drone strikes . the waiver may have delayed the january 15 strike that killed two hostages , one of them an american . dr warren weinstein , a 73-year-old economic adviser from the us , and 39-year , italian aid worker giovanni lo porto were killed in the strike . the cia was seeking to destroy an al qaeda compound in pakistan when the two captives were killed .\nengland lock courtney lawes made a trademark hit on france fly-half jules plisson at twickenham last month . the saints star was criticised by the daily mail 's jeff powell . lawes has been derided as a thug across the channel and there were cries of protest in these parts , too .\ncleveland officer michael brelo , 31 , is charged with two counts of voluntary manslaughter for the deaths of timothy russell , 43 , and malissa williams , 30 . he is the lone officer among the 13 who fired their weapons that night who is charged criminally because prosecutors say he stood on the hood and opened fire four seconds after the other officers had stopped shooting . a rookie cop told investigators that breli talked about it in the days after the november 2012 shooting . brela 's footprints were also found on the car where the two unarmed suspects died .\nresearchers have discovered that the earliest wake-up time worldwide is on a monday in south africa , while americans rise at 7am . the sleep cycle app tracks a user 's sleep as they go through a cycle of sleep phases . it has more than two million active users and gathered data for the study between 1 june 2014 and 31 march this year from users aged 18 to 55 in 47 countries . other insights include that the best sleep quality worldwide occurs on a wednesday night . the us sleeps in the most and wakes up happiest on friday , while people in the middle east sleep the longest on thursdays .\nthe rv flip was designed to study underwater acoustics and temperature . it is used by the us office for naval research for more than 50 years . the vessel is towed to a location where it ` flips ' within 20 minutes . the flip is so stable that it stays just 50 feet above the surface .\ntransvestite tv star matsuko deluxe made his robot debut on saturday . the robot , called matsukoroid , is controlled by a voice impersonator . it is the first android to host its own show on japanese tv . mr deluxe said it was ` fascinating ' to come face-to-face with his clone .\nosman yaya , 12 , from bennett middle school in salisbury , maryland , moderated a town hall session with the president on thursday . during an answer about writer 's block , obama started getting a little long-winded and osman stepped in . obama grinned and replied , ` osman thinks i 've been talking too long '\nsea shepherd crew rescued 40 crew members from sinking vessel thunder . the vessel issued a distress signal claiming that the ship was sinking on monday . the crew of sea shepherd vessel bob barker rescued the crew after 110 days of chasing the vessel . the captain of the now submerged ship was seen cheering when the ship sank , according to crew . the conservation group claims that thunder is one of six vessels known to illegally fish vulnerable toothfish in the southern ocean .\npetra wetzel , 40 , is a divorcee who lives in glasgow with her son , noah . she set up her own business , the west brewery , in 2006 . her flagship beer , st mungo lager , is stocked in 100 branches of waitrose .\nlada niva 4x4 # 13,395 on the road . good for a fraction of the price of a new land rover . good because the plastic interior is easy to mop down after a day in the mud . bad because the niva is an unabashed frills-free zone .\nuk clocked up growth of 2.8 % in 2014 -- the strongest in the g7 nations . this was seven times higher than france 's 0.4 % growth , according to imf report . britain has overtaken france to become second most powerful economy in europe .\nreading face arsenal in their fa cup semi-final on saturday at wembley . the royals had to play their replay against bradford on a monday after playing a championship match two days earlier . steve clarke wants to see the scheduling of matches in england to improve . the fa cup is set to be televised at the same time as chelsea and manchester united 's clash on new years day .\nfreddie sears put ipswich ahead after just eight minutes . eoin doyle levelled for cardiff in the 13th minute . cole skuse scored his first goal for ipswich since joining in 2013 . daryl murphy added a third for ipswe in the 90th minute to seal the win .\na gofundme campaign to help pay for a kidney transplant has topped its goal . the family of `` success kid '' sammy griner is raising money for his dad , justin . justin griner has kidney disease and needs a transplant . the campaign has raised more than $ 75,000 so far .\nfrench free diver jumped into dean 's blue hole in the bahamas . guillame néry is seen at the edge before taking the plunge . the hole is 660ft -lrb- 200 metres -rrb- deep , although he does n't go to the bottom . but the video is still incredibly impressive , as he holds his breath for minutes on end . free divers are able to hold their breath for more than 20 minutes .\nkimberly greenberg , 15 , went for a walk near her santa monica home on march 24 . she left home to calm down and take medication but never returned . mother janice greenberg has now made an urgent appeal for help after she disappeared . teenager has mental capacity of an eight-year-old and has been missing for a week .\nscientists at clarkson university , new york , claim that older buildings where hauntings are usually reported , often have poor air quality from pollutants like toxic mould . exposure to the mould can cause mood swings , irrational anger and cognitive impairment . the team is currently measuring air quality in several reportedly haunted places around new york state .\ncanadian star eugenie bouchard lost to alexandra dulgheru and andreea mitu in the fed cup at the weekend . bouchards refused to shake hands with her opponent before the match . the 21-year-old has been compared to maria sharapova .\nipsa chief sir ian kennedy launched a bid to keep mps ' receipts private . court of appeal ruled today that it must release all copies of receipts and invoices . legal action centred on whether copies of original documents should be published . case stems from freedom of information request to ipsa in 2010 .\na seven-year-old boy was raped and set on fire by two youths in mumbai . the incident took place in padma nagar , in the city of bhiwandi . the boy , who suffered 30 per cent burns to his body , somehow managed to escape .\nneighbours in lawrence weston , bristol , called rspca after seeing horses . one was kept in an alleyway so narrow it could not turn around , while the other was chained to the ground . rsppa inspectors were called to the house after receiving numerous calls . both horses have been removed after warnings from the rspea .\nluis enrique substituted neymar during 2-2 draw with sevilla . brazilian forward ` ca n't understand why he is subbed so much ' neymar has been replaced in 15 of his 34 matches this season . barcelona face real madrid in champions league quarter-final .\njuventus beat monaco 1-0 in the champions league quarter-final first leg on tuesday night . arturo vidal scored from the penalty spot after ricardo carvalho gave away a penalty . andrea pirlo had been out for seven weeks with a calf injury before he was called upon to start this tie .\ncharlie patino , 11 , has been spotted by luton town 's academy . midfielder has been offered # 10,000 by arsenal , chelsea and tottenham . charlie 's family have visited the training grounds of the big clubs . the youngster analyses spanish football and is a barcelona fan .\nthree booked passengers were arrested for being drunk and disorderly . two 49-year-old women and a 23-year old man were removed from the plane . the ryanair flight was bound for faro from bristol airport . bristol airport confirmed that the drunk passengers ' actions caused further delays to the flight .\nbarack obama has ordered the release of 22 drug dealers . eight of those were serving life sentences . obama has now approved a total of 43 commutations during more than six years in office . the effort is aimed at reducing harsh sentences for those who faced outdated guidelines at their time of sentencing .\nfamily was renting villa at resort in st. john , u.s. virgin islands . two boys , 16 and 14 , are in critical condition at a philadelphia hospital . their father , steve esmond , is conscious but can not move , lawyer says . epa says presence of pesticide at villa may have caused illnesses .\nrangers lost 3-0 to queen of the south in their scottish premiership clash . stuart mccall has warned defender bilel mohsni about his discipline . the tunisian centre-back was booked for reacting to opposition fans . rangers host raith on sunday in the scottish championship . mccall insists rangers ca n't afford to risk unnecessary suspensions .\nreading scientists say chewing gum helps you forget a song . in the study people were less likely to think of the song when chewing . and they were a third less likely to ` hear ' it when chewing gum . results suggests same technique could stop other intrusive thoughts .\nlukas podolski joined inter milan on loan in january . the german forward has failed to score in 12 appearances . podolskis says he wants to play for parent club arsenal next season . the 29-year-old says he is ready to fight for his place at the emirates .\nalison hargreaves , 32 , was swept to her death in 260mph winds on her descent from the himalayan mountain in 1995 . now her son tom ballard , one of the world 's most accomplished climbers , plans to conquer k2 himself . mr ballard , 26 , said he saw it as his destiny to follow in his mother 's footsteps .\nnhs finances are so dire that patients could soon be forced to pay to use basic services such as gps , doctors leaders warned last night . dr mark porter , head of the british medical association , said whoever wins the election will inevitably be tempted to bring in charges .\nvince viafore , 46 , was on the rough hudson river near newburgh with angelika graswald . he was thrown in on sunday evening and was unable to get back into kayak . his partner fell out of the boat while trying to help him and was rescued by another boat . she was taken to hospital and treated for hypothermia but he is still missing .\na waitress has revealed that new zealand prime minister john key pulled her hair during election time last year . she was working at a cafe in auckland frequented by him and his wife bronagh . the anonymous woman wrote about how she lost her cool and said she would hit him if he kept pulling her hair . but mr key defended his pranks as ' a bit of banter ' and said he had already apologised for his actions .\nscott keyes is about to travel 20,000 miles on 21 flights . he will stop by 13 countries in europe and south and north america . the 28-year-old writer for think progress will enjoy first class service on his trip . he spent between 10 and 15 hours putting the entire trip together .\nusers can add filters and other effects - similar to instagram . gifs are created in the camoji app . users can then send them to friends using facebook messenger . comes as facebook opens up messenger to developers . forty different apps will be available on messenger in the coming days .\nfugitive paul monk was arrested by heavily armed police in his villa . he was wanted by spanish police for questioning over the kidnap and murder of francis brennan . monk , 54 , from essex , was on the uk 's most wanted list on suspicion of drug trafficking .\ned miliband says a second scottish independence referendum ` ai n't going to happen ' labour leader insists there would be no coalition with the snp . comes as john major warns snp is ` merely waiting for a good excuse ' william hague says snp could be ` calling the tune ' if miliband becomes pm . but mr miliband accuses tories of ` threatening integrity of the uk '\niranian patrol boats ` harassed ' a us-flagged commercial ship on april 24 . four days later , iranian boats forced a marshall islands-flagging ship , the maersk tigris , to iran 's larak island after firing warning shots across the bows and boarding the vessel . the two incidents have raised concerns about the security of shipping lanes in the strategic strait of hormuz .\njohn travolta says he has not seen hbo 's `` going clear : scientology and the prison of belief '' the actor is one of the church of scientology 's most high-profile members . travolta is premiering his new film , `` the forger , '' in clearwater , florida .\neden hazard , kurt zouma , thibaut courtois , izzy brown and co celebrate songkran festival by throwing water at each other . blues quartet were joined by club mascot stamford the lion . blues foursome took part in game of kick-ups at cobham training base .\nlouis van gaal has given everyone a chance at manchester united . marouane fellaini has become the club 's go-to player in midfield . chris smalling has improved and is a key member of the team . james ward-prowse must score more goals to become a star . aaron cresswell 's free-kick was the finest of the season .\nelena curtin , 23 , was seven-months pregnant when she was charged with second-degree assault in november 2014 . she found her boyfriend 's ex-girlfriend shooting heroin while sitting on her toilet . when she asked her to leave and the woman refused , curtin beat her with a crowbar . prosecutors dropped the charge on monday because curtin was ` completely justified in her outrage '\nsvetlana lokhova , 33 , awarded # 3.2 million after her career was destroyed by sexist taunts . tribunal found she was a ` resilient person ' driven to a mental breakdown by work colleagues at the bank . workmates falsely accused her of being a cocaine user , dubbed her ` miss bonkers ' and said she was hired by the bank only because of her looks .\nthe chameleon is the work of italian artist johannes stoetter . he painted two naked models to look like a chameleon . the 37-year-old has previously painted models into frogs and parrots . but this may be his most intricate and impressive piece to date .\nskywest airlines flight 5622 made an emergency landing in buffalo , new york . the plane descended 28,000 feet in three minutes . `` it was like being trapped and you could n't do anything , '' passenger says . the national transportation safety board is in communication with the faa and skywest .\nwest midlands police released figures showing 617 youngsters investigated . they include 41 nine-year-old boys investigated for crimes last year . five of the children were suspected of sexual offences , figures show . in 2013 and 2014 two-year old boys were believed to be behind assaults .\nzbigniew huminski , 38 , was on his way to britain when he snatched chloe , nine . he has confessed to strangling her in woods near calais yesterday afternoon . chloe was stripped naked and sexually assaulted before being taken . she was then driven to an isolated wood once used as a camp for illegal migrants . huminski had been banned from french territory after being convicted twice for acts of ` extreme violence ' including attacking a frail pensioner with a knife .\ndiane morris , 46 , is engaged to mike holpin , 56 , who has boasted of having children with 20 different women . she claims the pair have a great sex life and she trusts him ` completely ' she says she does n't care that he 's been married three times before . ms morris has brushed off claims he still uses dating site plenty of fish .\nsky turned blood red in aershan city in inner mongolia for nearly an hour . residents feared the end was nigh when mud fell from the sky . no official comments on what caused the bizarre phenomenon . many are linking it to the monster sandstorm that hit beijing on wednesday .\ncarlisle united lost 3-1 away at accrington stanley on saturday . the cumbrians are without a win in five games in league two . keith curle has laid into his players following the defeat . he has suggested that some players ` do n't deserve to be professionals '\nfrench champions psg beat bastia 4-0 in the french league cup final on saturday . zlatan ibrahimovic opened the scoring from the penalty spot in the first half . the swede doubled the lead before half-time with a low shot . substitute edinson cavani scored twice in the second half to seal the win .\nwarring sisters stripped of right to control their aged mother 's fortune . one is a 61-year-old retired gp and the other a 58-year old radiographer . the hostility between the women meant they would never be able to make rational decisions about how to deal with the 97-yearold widow 's property . senior judge denzil lush said the elder sister could be jailed for attempting to alter a legal document . the mother , who has dementia , lives in a care home in stoke mandeville , buckinghamshire .\nceo wayne lapierre told the nra 's annual meeting that more than 70,000 people must stand up against gun-control efforts . he warned that obama will ` dismantle our freedoms and reshape america into an america that you and i will not even recognize ' chris cox , head of the nra lobbying arm , said hillary clinton will make obama look ` amateur ' on gun control .\njordan brennan was killed after breaking into gangnam style dancing in his local shop . his attacker , now 17 , was jailed for eight months for manslaughter in march . his mother kim , 43 , has spoken for the first time since the attack about her son . she said he was a ` cheeky chappy ' and ` lots of fun ' , and loved dancing . added that he had aspirations of going on britain 's got talent .\nedwin ` jock ' mee , 45 , allegedly targeted 11 cadets aged between 15 and 25 . southwark crown court heard he had a preference for vulnerable black women born overseas . he ` kept ' them isolated and ` kept them to himself ' so he could sexually abuse them . one of the women , a virgin in her early 20s , fell pregnant when mee raped her in a locked waiting room , jurors were told .\nstephanie scott , 26 , was due to marry her long-time partner aaron leeson-woolley on saturday . her sister kim scott posted a poem she had written to read out at the wedding . the poem was addressed to ` my dearest stephanie and aaron on your wedding day . this is for you ' it was posted on facebook a day after the body of a woman was discovered in cocoparra national park . vincent stanford , 24 , has been charged with ms scott 's murder .\nsteve harmison is doing a fine job with ashington afc . the former england bowler has won seven games on the spin . harmison took 226 test wickets for england between 2002 and 2009 . the 36-year-old is a boyhood newcastle fan . john carver says he has invited harmison to training .\nsenate votes 92 to 8 in favor of the medicare reform bill . it includes a permanent solution to the `` doc fix '' method of keeping payments up with inflation . the bill also includes a two-year extension of a popular children 's health insurance program . president obama is expected to sign the bill into law .\nthe usa freedom act would end the nsa 's collection of domestic phone records . it would allow the agency to request certain records held by the telephone companies under a court order in terrorism investigations . the authority to collect those records and other related surveillance provisions of the patriot act will expire june 1 unless congress passes a law reauthorizing it . the house bill would do that , with changes . but senate majority leader mitch mcconnell is sponsoring his own bill to extend the patriot act -- unchanged -- until the end of 2020 .\naidan coleman will ride the druids nephew in the grand national on saturday . coleman has had a difficult run of luck in the famous steeplechase . coleman was unseated from a hampered the rainbow hunter . the 26-year-old hopes to be a contender for champion jockey after ap mccoy retires . the druid nephew won on the opening day of last month 's cheltenham festival .\nitalian model ambra battilana , 22 , told police that the hollywood producer groped her and put his hand up her skirt during a ` business meeting ' at his tribeca office on friday night . she claims he asked her for a kiss and then asked if her breasts were real . she confronted him and he said : ` it wo n't happen again , ' according to a source . the news comes as weinstein 's wife georgina chapman , 38 , was pictured for the first time outside their home in new york city on saturday . she was carrying their four-year-old daughter , india .\nthe cleanser is responsible for the glowing skin of a host of stars . britain 's got talent judge amanda holden and actresses charlize theron and olivia wilde are fans . cetaphil gentle cleanser is fragrance and soap free and contains just eight ingredients .\nisis militants stormed yazidi village in northern iraq last august . they dragged girls as young as ten by their hair and raped them . they then took them to a warehouse where they were sold into sex slavery . hanan , 19 , was one of six girls who escaped but was later raped . she was among 200 yazidi women , children and elderly released last week . but many were captured by the militants , resulting in the massacre of hundreds of men and the selling into slavery of women and children .\njessica edgeington , 33 , of villa rica , georgia , died wednesday afternoon at skydive deland in deland , florida . she was known for a type of high-speed sport called ` swooping ' , where divers speed down to land and sweep over buoys and other obstacles on the surface of a pond as competition . it is the second death at the skydiving center this year , after navy seal william marston died after landing heavily in january .\ngreek deputy finance minister says country has been ` running on empty ' since february . debt repayment deadline looming on may 1 and athens must pay $ 200m . greece 's biggest tax office had its electricity cut off yesterday . pm alexis tsipras expected to appeal to german chancellor angela merkel for more aid . eu leaders fear left-wing syriza government will choose its workers .\nmiddlesbrough 's patrick bamford has been named the championship player of the year . bamford , on loan from chelsea , won the award at the football league awards . mk dons teenager dele alli was named the young player of the year . preston 's joe garner earned the league one award . danny mayor of bury topped the list in league two .\nthe east coast low is a low-pressure system that forms in the tasman sea . it is characterised by gales or storm force winds that can damage buildings , fell trees and powerlines . it can also dump hundreds of millimetres of rain , causing flash flooding and riverine flooding . the system has n't hit nsw this strong since 2007 . it 's expected to be one of the longest lasting ever .\na month after she disappeared sharon edwards has been missing . the teacher was last seen alive at her grafton home on march 14 . her car was left in her driveway and her clothes were thrown in the washing basket . her phone and bag were gone but there was no sign of forced entry . police are treating the 55-year-old 's disappearance as a homicide . she was last known to be in the lawrence area in the early hours of march 15 .\nphelps is to return to competition after serving his six-month ban . american was banned by usa swimming in september after drink-driving arrest . 29-year-old will compete at the arena pro swim series event in mesa , arizona , from april 15-18 . phelps still serving 18 months of probation after pleading guilty to driving under the influence in december .\nattorneys for tyler kost say there is a ` treasure trove ' of evidence proving the girls lied about the abuse . the 19-year-old was arrested last may for sexual crimes against 13 girls between 13 and 17 years old . most of the girls were former classmates at poston butte high school . kost faces 30 charges in three indictments ranging from sexual abuse to child molestation .\nchris zebroski has been jailed for four years and four months . newport county striker admitted four charges of robbery , attempted robbery and assault . zeboski 's contract with the league two side was due to expire in the summer . the 28-year-old has played for bristol rovers , cheltenham and millwall .\nashton taylor , 21 , from perth , has slammed whole pantry founder belle gibson . the university student was diagnosed with a severe brain condition in july 2013 . gibson has admitted she made up her story about having brain cancer . miss taylor has undergone 15 brain surgeries - lasting seven hours for each operation . she said she felt tricked after believing gibson 's cancer story but an apology wo n't cut it .\nbarcelona beat celta vigo 1-0 in la liga on sunday . jeremy mathieu scored the only goal of the game in the 73rd minute . celta forward fabian orellana was shown a straight red card for throwing grass at sergio busquets during the match . orellan has been handed a one-match ban by the spanish football federation .\ngraham palmer , 52 , has delighted northern rail passengers with his poems . he has been delivering safety announcements in verse since christmas last year . the rhymes were a hit with travellers and have been going strong since . he customises the couplets according to the stations his carriages are passing through .\ndisability sufferer alan barnes picked up keys to new house today . he was left too scared to return to his home in gateshead after mugger attack . the 67-year-old said he felt safer in the two-bedroom terrace house . he received donations from around the world after being beaten by drug addict . victim richard gatiss , 25 , was jailed for four years for attack in january .\narnold palmer is unable to play because of a dislocated shoulder . ben crenshaw will stand in for palmer in the par-three competition . crenhaw is set to make his 44th and last consecutive appearance at the masters . jack nicklaus and gary player will also play in the event .\ngovernment set to strip parents of welfare benefits if they do n't immunise their kids . social services minister scott morrison will reportedly scrap a provision that allows parents who do n't vaccinate their children to claim welfare benefits . the changes will come into full effect in january 2016 . currently around 39,000 australian children under the age of seven are not vaccinated .\ndonnell graham , 35 , fatally shot his wife , shaquana graham , 33 , and another man in a room at the quality inn in springettsbury township , pennsylvania . the 33-year-old woman was found shot in the head while the other man , 25-year , kristopher pittman , had been killed by gunshots to the chest . motel employee darryl schock said another guest staying in the room next door heard the gunshots and reported seeing a bullet hole in the glass .\nbrazilian police arrest the treasurer of the ruling workers ' party . joao vaccari neto faces charges of corruption and money laundering . he is the closest political figure to president dilma rousseff implicated in the investigation . rousseff has insisted she supports the probe and has not in any way interfered with the investigation , sources say .\nlouis van gaal has led manchester united to the top four this season . david moyes was sacked after a dismal run of results last season . van gaal has been criticised for building play too slowly . moyes failed to get the best out of nemanja vidic and rio ferdinand .\nphilippe saint-andre will remain in charge for the world cup in england . the french rugby federation is looking for candidates to replace france coach philippe saint - andre following the world world cup . saint-andre succeeded marc lievremont following the 2011 world cup . he has failed to impose himself winning just 15 of his 37 games in charge .\nserena williams is 17-0 since the start of the year . the world no 1 will face carla suarez navarro in the miami open final . williams lost to simona halep in the semi finals in florida . the american has won # 4.33 m in prize money this season .\n`` furious 7 '' fans praise the movie 's ending as a fitting tribute to paul walker . `` not gon na lie , i shed a few tears at the end of furious 7 , '' one woman says . the film 's producers wanted to retire walker 's character , brian , while paying homage to his role in the franchise .\nmilitant group jaysh al-islam released video showing off 1,700 troops . they are part of the army of islam , which opposes isis and the syrian regime . they were formed when up to 60 rebel factions in syria merged to fight the regime . the group 's graduation ceremony was attended by its leadership . they showed off a fleet of armoured tanks and special forces soldiers .\nthe # 300,000 ferrari 599 gto was being driven by a parking attendant . he mistook the throttle for the brake and mashed it into the accelerator . the supercar hit 60mph in just 3.3 seconds and ploughed through a shop front .\nabu khaled al-cambodi is a senior islamic state commander in australia . he has been named as a key figure in the investigation into a plot to attack police . now he has starred in a vile new propaganda video . he calls on his ` beloved brothers ' to ` rise up ' and attack targets in australia .\ngazprom accused of overcharging buyers in eastern europe and hindering competition . eu antitrust chief margrethe vestager said gazprom was barring eu clients from selling on its gas to other states . russian foreign minister sergei lavrov said that the charges were ` absolutely unacceptable '\nmanchester united host rivals manchester city at old trafford on sunday . robin van persie is not fit enough to play after ankle injury . louis van gaal says he has been dreaming of beating city in the derby . van gaal also ruled out a potential return for luke shaw .\nthe roboscan 2m aeria was created by romanian company mb telecom . the company says it is the world 's first ` airplane scanner ' it uses a cone of radiation to sweep across planes and look inside . the device is accurate enough to find a filament in a light bulb . but the radiation it emits is not safe for passengers yet .\ntwo tsa employees have been fired after they used the airport body scanner inappropriately to allow the male worker to fondle male passengers ' genitals . the pair allegedly worked as a team to manipulate the results of a full body scanner at a security check-point in denver international airport last year . the tsa received an anonymous tip-off to the alleged sexual assaults in november last year but only investigated in february .\nmarried father-of-four david nicholson allegedly sent explicit messages to prostitute . he allegedly said he was ` keen ' on her dressing up like a pupil . the 48-year-old has not returned to the costello school in basingstoke . mr nicholson has now resigned from his post at the school .\nforensics have used the latest technology to reconstruct the skeletal remains of a woman found near daytona beach 25 years ago this week . the jane doe was found in a wooded area in volusia county on april 23 , 1990 . she was never identified and the case remains open .\nrobert bates is charged with second-degree manslaughter in the death of eric harris . his lawyer says bates had one taser training class over a six-and-a-half-year period . the documents show bates qualified 10 times , from 2009 to 2014 , to use a handgun . the sheriff 's office has turned down cnn 's requests for the training documents .\nmother and father selling home in nova bosaca , western slovakia . they are being forced to pay thousands for daughter 's lawyers ' fees . maria kukucova , 25 , was arrested in april last year after ex-boyfriend found dead . andy bush , 48 , was found shot to death at his rented holiday villa . kukucova was arrested 2,000 miles away in her home town of nova bosca .\nmanchester united won 2-1 against manchester city in sunday 's premier league derby . louis van gaal used all his substitutes before michael carrick came off as a precaution with a tight calf . sergio aguero scored his first goal for city since february against barcelona at the etihad . james milner threw an energy pouch to the floor after being substituted .\nparents craig and bonnie morgan from hastings want best possible start . they want to send their son craig jr , nine , to battle abbey prep school . but the fees of # 4,000 a term were crippling for the family . they have put their house on the market for # 185,000 to pay for it . also taken in lodgers and set up a crowd-funding account to raise money .\nnapoli lost 1-0 at home to lazio in the coppa italia semi-final on wednesday . the result heaps more pressure on boss rafael benitez . napoli president aurelio de laurentiis was furious with the result . he has threatened to send his players to a training camp ` for an unlimited period of time ' if they do not improve between now and the end of the season .\nmikaeel kular , 3 , was killed by his mother rosdeep adekoya in january last year . she beat him for being sick and left him to die in agony for three days . she then hid his body in a suitcase and dumped it in woods in fife . police scotland launched an investigation into claims up to 25 staff accessed files . at least nine workers have been sacked after looking at documents without permission .\nat normal viewing distance , healthy eyes should be able to pick up the fine lines on einstein 's face , causing the brain to disregard marilyn monroe 's image altogether . the image was created by superimposing a blurry picture of monroe over a picture of albert einstein drawn in fine lines . features with a high spatial frequency -lrb- einstein -rrb- are only visible when you 're viewing them close up , and those with low spatial frequencies -lrb- monroe -rrb- areonly visible from further away .\navocados and pumpkin seeds are also good for you . tart cherries contain high levels of antioxidants and can help a person sleep . blueberries have been linked to a wide range of health benefits . and chia seeds are packed with nutrients and omega-3 fish .\nclaims that bill de blasio is preparing to run for president . he is ` trying to position himself as the draft candidate for the left ' comes after he refused to endorse hillary clinton last week . he was campaign manager of her u.s. senate bid in 2000 . today , clinton is scheduled to arrive in new hampshire .\nthe middle east has also experienced several huge sandstorms this year . dust storms have blocked out the sun and caused travel chaos in egypt , jordan , jordan and israel . experts can not pinpoint the reason behind the spate of sandstorms but say they are variable . this week incredible footage showed the moment an unusual ` apocalyptic ' dust storm struck belarus . china has suffered four massive sandstorms since the start of the year .\ngoblins in utah 's san rafael desert are a geologist 's dream . they are created by gradual erosion of entrada sandstone over millions of years . the rock protrusions consist of soft rock topped by harder stone that preserves each column 's spire-like shape from weather erosion . the area was first discovered by cowboys searching for cattle in 1964 .\nlynne abraham , 74 , collapsed 10 minutes into tuesday night 's hour-long debate between democratic candidates . abraham was heard falling as senator anthony williams answered a question . the former philadelphia district attorney allegedly suffered a momentary drop in blood pressure . abraham sat out the rest of the debate and was evaluated backstage .\nformer wolves boss mick mccarthy was delighted with his side 's display . ipswich held to a 1-1 draw at molineux by rivals wolves . mccarthy hails the ` belligerent , stubborn and hard working ' qualities of his ` horrible bunch ' of players after a determined 1 - 1 draw .\na new team of experts will look at whether planets outside our solar system are habitable . it includes scientists from stanford , the university of california and yale . nasa has set up a website for the public to search data gathered by kepler telescope . scientists are also developing new ways to confirm habitability of these worlds and search for biosignatures , or signs of life .\nangelo west , 41 , shot officer john moynihan , 34 , under the eye at close range after the policeman opens the driver-side door . west then fires at the other officers as he runs across the busy street . moynihans was released from the hospital friday after weeks of recovery .\nengland cricket 's former team director andy flower is now technical director of elite coaching at the ecb . flower guided england to three ashes triumphs and the world no 1 spot . he is effectively running the england cricket academy at loughborough and working with young players in a coaching role .\nthe sbs football reporter and presenter took to social media to tweet ` inappropriate ' comments on the day of the centenary services . scott mcintyre condemned anzac day as an ` imperialist invasion ' and accused the anzac 's of committing war crimes . the comments sparked outrage on twitter , with communications minister malcolm turnball calling them ` despicable remarks ' sbs has since responded with an official apology for offence caused .\ndestiny cooke , 16 , and lajahia cooke , 17 , were brutally kicked , punched , stomped and shoved around by the mob in trenton , new jersey . people can be heard laughing throughout the video and chanting ` they gettin ' busy ! ' or ` let her get her ! ' destiny has been left with a bald spot after someone grabbed a chunk of her hair .\nken clarke says the tories have become too right-wing to win an election . former chancellor warns against offering ` blank cheques ' to the nhs . he also criticises the tory leadership for making personal attacks on ed miliband . mr clarke served four years in david cameron 's cabinet .\npadraig harrington returned to the masters for the first time in a year on friday . american amateur byron meth opened with a 74 on his masters debut . jack nicklaus ice cream is now available for dessert at augusta . jamie redknapp and kenny dalglish have been spotted at the course .\nkim , 37 , and husband kanye west have been on a high-profile tour . they visited armenia and israel to baptise their daughter . kim has long had her pick of holiday destinations . but how have her holiday tastes changed over the years ? we take a trip down memory lane to see how her passport stamps have evolved .\nchief executive michael o'leary made the vow in an interview with a french newspaper . he said ryanair 's average fare could be as low as $ 40 -lrb- approximately # 26 -rrb- next year . mr o ' leary said he despises the ` french political class ' but loves france . he also took shots at air france , touting ryanair as a cheaper airline .\nthe new pub is to be built in prince charles ' model village poundbury . it will be built on the centre-piece queen mother square . the inn will have 20 bedrooms and will be named after the duchess of cornwall . the pub is expected to open early next year .\ncristiano ronaldo scored as real madrid beat malaga 3-1 on saturday . ronaldo admits he would love to play alongside his namesake . the 38-year-old has suggested he could play again for fort lauderdale strikers . ronaldo now co-owns the north american league side .\nkeith cameron convinced dying friend to part with # 476,864 in elaborate scam . he promised world-famous lighting architect jonathan speirs a # 2m return on his investment in two years . but the 54-year-old conman instead spent the money on a lavish lifestyle and a new york flat . cameron was today jailed for five years at edinburgh sheriff court for his crimes .\ndefending champion bubba watson had to settle for an opening-day 70 at the shenzhen international . watson is four shots off the lead of china 's huang wen-yi . the american finished 38th at augusta national on sunday . huang recorded a hole in one on thursday .\n`` the rocky horror picture show '' is getting a musical adaptation . fox is developing a two-hour remake of the 1975 cult classic . kenneth ortega will direct , executive-produced and choreographed . the special is timed to celebrate the 40th anniversary of the film .\ngold lame tuxedo is one of the most famous artefacts of elvis presley 's life . normally on display at graceland , the singer 's former home-turned-museum . it is making a special two month appearance at the elvis at the o2 exhibition from sunday .\nhummelstown police officer lisa mearkle shot david kassick in the back on february 2 . the video was recorded by her stun gun and has not been made public . mearkle , 36 , claimed she shot kassick , 59 , in self-defense because she saw him reach into his jacket for a weapon . a lawyer working for kassick 's family said the video ` leaves nothing to the imagination '\ncharleston police sgt. george hildebidle was found dead inside his grand oaks home at 1pm thursday . police say the 911 call that came through around 7am was listed as a domestic dispute . hildebidle had been on the force since 2003 and was married with two children . the whereabouts of his wife are not known .\nportishead founder geoff barrow says he received just # 1,700 in royalties . barrow claims his songs have been played 34million times on youtube and spotify . he said he has nothing against streaming but wants musicians to be paid more . barrows says young artists are getting a poor deal and it is hurting them .\n5 men committed suicide in two years while serving with australian navy . the men were stationed at hmas stirling off the coast of rockingham , south of perth . their families did not learn of their previous attempts to take their own lives and their drug use until after their deaths . jake casey , ewen mcdonald and stephen bebbington were pallbearers for brett dwyer and stephen shot himself in october 2011 .\nunderwater robosub was 2,000 feet under the gulf of mexico . giant sperm whale swam to inspect the robot sub . video shows the whale swimming in and out of the camera lights . it is estimated the whale was between 35-40 feet in length .\nthe deal for alvaro negredo is expected to cost manchester city # 24million . negredo joined valencia on loan last summer and has scored five goals . the spain striker refused to celebrate his goal against levante on monday . there had been suggestions that valencia were trying to finance a deal for radamel falcao .\n40 years ago today , cambodia was devastated by the khmer rouge regime . the regime 's brutal rule killed 1.7 million people . a tv series is helping families of those killed to come to terms with their loss . the show , `` it 's not a dream , '' has reunited 54 families shattered by the genocide .\nedinson cavani has been linked with a move to manchester united . but the striker has struggled in ligue 1 this season . cavani was poor in psg 's 2-0 defeat by barcelona on tuesday night . louis van gaal has been wary of signing south americans . radamel falcao has struggled on loan at old trafford .\nchina 's navy rescued 225 foreign nationals and almost 600 chinese citizens . they included 176 people from pakistan with the remainder from ethiopia , singapore , italy , germany , poland , ireland , britain , canada and yemen . a turkish naval frigate has evacuated 55 turks from aden . it came the same day saudi-led war planes made a weapons drop in aden .\nall fixtures in the premier and football league to mark 30th anniversary of bradford fire . a minute 's silence will be held at 3pm on saturday for the 56 supporters who died in the devastating blaze . the inferno ripped through valley parade on may 11 , 1985 during a game against lincoln city . football league supporting efforts to raise # 300,000 for the plastic surgery and burns research unit at the university of bradford .\nnorwich striker bradley johnson scored the winner in the 62nd minute . brighton 's david stockdale had to turn around a shot from cameron jerome . the canaries are now just two points behind the play-off places . brighton are now 16th in the championship table .\nthe team bus carrying fenerbahce players and coaching staff was shot at on saturday night . the bus driver suffered a head injury and was taken to hospital . none of the players or club officials were reported to be injured . caykur rizespor midfielder ludovic obraniak was taken for tests after being substituted against fener .\ncrime victims in bedfordshire and devon and cornwall waiting 50 per cent longer for help . in essex and kent crime victims are waiting up to a third longer for a response . police officers across england and wales have fallen by 17,000 since 2009 . labour 's shadow home secretary yvette cooper said victims were being put at risk .\nkristin holmes , 26 , allegedly posted photo of herself holding gun on facebook . she captioned image : ` i 'll post a few actual pics of me so you know the difference ' she then ` exchanged words ' with other users on the social networking site , it is reported . after a user reported the image to henrico police , holmes was arrested . she has since been charged with harassment by computer and could face year in jail . holmes said she considered charge ` ridiculous ' and plans to appeal against it .\nmercury is the planet closest to the sun in our solar system . nasa 's messenger spacecraft is about to crash onto mercury . the spacecraft will hit the planet 's surface around april 30 . if you want to see mercury with your own eyes , you may be in luck if you can find an area with dark skies .\nhelaman barlow was chief of colorado city , arizona , and hildale , utah . he said he acted on the orders of the church 's leader , warren jeffs . barlow said he lived in fear that jeffs and other leaders would take his wife and children away from him if he did n't act as they wanted . he has now left the church and has grown out his hair and beard to signal that he is turning his back on them . jeffs is serving life behind bars for marrying and having sex with two underage girls .\njoanne whitehouse had applied for daughter alice to go to st john fisher 's rc primary school . her three sons already attend the school and she believed there would be ` no issue ' she was left ` devastated ' when she found out her daughter would not get a place . her granddaughter olivia , also four , will have to attend middleton parish c of e primary school instead . ms whitehouse is planning to appeal rochdale council 's decision .\nthree bears rescued in omsk , east russia , after their mother was killed . masha the bear flown business class from siberia to moscow . mitya the bear found abandoned outside a circus in vladivostok . two one-month-old twins found all alone in the wild at sadgorod zoo .\nkiller seals spotted feasting on harbour porpoises off the coast of pembrokeshire . video footage shows male ripping chunks of blubber off his prey . grey seals are known to lurk in the waters off the continent but this is the first time they have been seen around britain . scientists said the seals may have developed a taste for porpoise after sampling some caught in fishing nets .\npope francis gives traditional easter address . he calls for peace in iraq and syria , and humanitarian aid to those in need . he also calls for a return to peace in the holy land . he ends with a wish for a happy easter . of the world . the pope 's speech is live on cnn .\ndivock origi joined liverpool after impressing at last summer 's world cup . the 19-year-old was loaned back to lille for this season but has struggled . origi was recently voted the second most overrated player in ligue one by france football . liverpool keeper simon mignolet has backed origi to be a success at anfield .\nstudent motaz zaid kidnapped and tortured by masked men in parsons green . the 20-year-old was allegedly forced to drink bleach and tortured with pliers . he was dumped at the side of the a3 in kingston , south west london . mr zaid , who is studying economics , remains in a critical condition in hospital . his friend was stabbed several times in the back and legs during the ordeal .\nworld 's greatest steeplechase takes place on saturday at aintree . 40 per cent of britons admit their selection will be purely down to the name of the horse . 70 per cent rely on pure chance while 47 per cent try to study form . but less than 20 per cent said their quirky superstitions actually produced a win .\nleza davies , 33 , from telford , shropshire , had a boob job to boost her confidence . she thought breast feeding had left her chest saggy and thought implants would boost her . but she knocked her implant on a door frame and found a pea-sized lump . tests revealed it was cancerous and she had to have surgery and chemotherapy . she was told treatment would leave her infertile but she soon found out she was pregnant . she is now in remission and says her implants saved her life .\ncarlos tevez opened the scoring for juventus after 17 minutes . leonardo bonucci doubled the lead in the second half with a header . the result takes juventus 15 points clear of second place with seven games to play . lazio 's run of six consecutive victories is ended with a 2-0 defeat in turin .\nfreddie gray , 25 , died a week after an encounter with police left him with grave spinal injuries . on sunday , mourners gathered at vaughn greene funeral services in baltimore to pay their respects to gray . gray was detained on april 12 after he ran away from police and was arrested for carrying a switchblade knife . he asked for an inhaler as he screamed in pain during the arrest and requested medical attention , but was denied . gray died from spinal injuries about a week later . his funeral will be held on monday .\ncomedian tamale rocks found the mirror in the women 's restroom of chicago bar cigars and stripes . she filmed a video showing how opening the door to find a cleaning closet provides a clear view of the toilet . bar owner ronnie lottz said the mirror has been in place since 2001 and that he has no plans to remove it . he said it was used as part of a halloween prank to scare women in the restroom by placing a light-up witch on the other side .\nyazidi girls and women as young as eight were kidnapped by isis last year . some have returned to their communities after falling pregnant by captors . others are undergoing abortions and hymen surgery to ` reverse loss of virginity ' kurdish doctors are breaking the law by performing abortions . yazidi women and girls have been separated from their families , forced to convert to islam and repeatedly raped by isis fighters .\naph mccoy 's mount mr mole will be in the grade one celebration chase at sandown on saturday . the race will be mccoy 's last ride in a grade one race . the jockey announced his intention to quit riding in february . the seven-runner line-up includes sprinter sacre and special tiara .\nthe bruno smartcan uses sensors to detect when you want the lid to open or when dirt has been swept close . it also has an integrated bag store and charging cord . bin is said to be the first internet connected combined kitchen bin and vacuum cleaner . it is expected to cost $ 248 -lrb- # 160 -rrb- and will be available in five colours .\ntennessee judge lila statom took down gang member o'shae smith . smith told statom he shot rival gang member for being in his ` hood ' statom told smith the area did n't actually belong to him . ` it 's the citizens of the united states who own that because they work and pay taxes , you do n't own that , ' she said . smith is charged with attempted first-degree murder for shooting kendre allen .\nsophie falkiner says girdles have been a popular trend in the u.s. for years . she discovered the benefits while interviewing hollywood plastic surgeons for a work assignment years ago . falkiner has passed the spanx around to all her girlfriends having babies . she says they all swear by the corset-like waist trainer after three months .\nimages capture the life of farmers in china , thailand , vietnam , laos and cambodia . they were taken by professional photographer scott gable , 39 . he spent four months travelling across the region documenting the labour . rice is a staple food for more than one-half the world 's population .\njarret stoll was arrested on friday in las vegas , nevada , on drug possession charges , according to reports . the 32-year-old is the longtime boyfriend of dancing with the stars host erin andrews , 36 . he was arrested at the wet republic pool at the mgm grand hotel shortly before 5pm . stoll had 17 points in 73 games this season and was a member of the kings ' recent stanley cup teams .\nsoletri sisters , a facebook group for women training for triathlons , helps inspire and motivate . the group met up to do a group brick workout at a local gym . the soletri sisters also helped runner lovie twine get in some swim workouts .\ntv presenter guy martin wrote a review of the new aston martin vanquish . he claimed he reached speeds of up to 180mph in a 40mph zone during review . the 33-year-old was test driving the car on the isle of man 's tt course . police on the island have confirmed they are looking into the incident . mr martin has been tipped to become a presenter on bbc 's top gear .\nengland drew 1-1 with italy in a friendly at the juventus stadium on tuesday . england fans sang anti-ira songs during the game . the fa have been criticised for their fans ' behaviour in the past . the first audible chants of this latest song can be traced back to celtic park in november . the songs were sung in england 's win against scotland and the fa wanted to make sure they stopped in turin .\nuniversity of mary washington student grace rebecca mann , 20 , was found dead in a home near the college campus in fredericksburg , virginia , on friday . her older male roommate steven vander briel , 30 , was home when the two women stumbled upon the body , but ran out of the house . a major manhunt was launched for briel . he was arrested two hours later in a church parking lot . police have charged briel with first-degree murder and abduction . mann is believed to have been asphyxiated .\nseason five of `` game of thrones '' premieres sunday . the show is set to end after seven years . it 's airing simultaneously in 170 countries for the first time . the fifth season will be `` unique , '' writer doug gross says . `` we are starting to build to a crescendo , '' executive producer says .\ntom o'carroll is a former open university information officer . he was a key activist for pie , which campaigned to legalise child sex in 1970s . he attended a hacked off rally in the houses of parliament on february 25 . organisation is campaigning against what it sees as the ` biased and unfair ' independent press standards organisation .\nkelly ripa , joy behar and mark consuelos shared their grief over the tragic death of dr fredric brandt on monday . the cosmetic surgeon , 65 , was found dead at his miami mansion on sunday morning by his housekeeper . a coroner has confirmed that dr brandt 's death was a suicide by hanging . he was reportedly ` devastated ' by comparisons to the character on tina fey 's new netflix show , unbreakable kimmy schmidt .\nthe 39-year-old ethiopian-born model fronts vogue paris 's upcoming may issue . last black woman to cover vogue was rose cordero in march 2010 . in january , jourdan dunn became the first black model to cover british vogue in 12 years .\na christchurch dairy was robbed on saturday by a man in a cartoon mask . the masked man demanded cash from the owner 's daughter . he made off with the till and about $ 1500 in cash . police are appealing for information to help identify the man . the offender is described as being ` very tall '\nbetheny coyne , 24 , was diagnosed with a rare heart defect before she was born . she was never expected to reach her fourth birthday due to the condition . doctors warned each pregnancy could have placed a fatal strain on her heart . but she defied medical predictions and now has three healthy children . fearing her heart is like a ` ticking time bomb ' , she is getting married next year .\nglobal warming policy foundation to launch inquiry into temperature records . panel will look at whether ` adjustments ' made to records have exaggerated warming . will also examine ` extrapolations ' , when figures are based on other data . sceptics claim that adjustments have skewed the records .\n500ft-long oryol caught fire at zvezdochka shipyard in severodvinsk . defence sources said the submarine 's weapons and critical elements of its nuclear reactor had been removed before the fire broke out . the submarine 's dry dock was filled with water to put out the fire .\n` i 've told hillary that i do n't think i 'm good -lsb- at campaigning -rsb- anymore because i 'm not mad at anybody . i 'm a grandfather , and i got to see my granddaughter last night , andi ca n't be mad , ' he said . the former president added that his wife ` would have to assess what she wants me to do ' if she runs for president .\n` human harvest : china 's organ trafficking ' will show how researchers around the world began to uncover the gory details . it 's claimed that political prisoners are being used as live organ donors . the organs come from members of the falun gong movement , a quasi-religious group with millions of followers , which is banned by the chinese government . ten ,000 organs are transplanted in china every year , yet there are only a tiny number of people on the official donor register . the documentary will be shown on channel 4 on november 14 .\nthe orchid has evolved a so-called lip - a large and irregular modified petal , to attract insects . researchers from taiwan found its shape is determined by two competing groups of proteins . by tweaking them , they can convert this lip into a standard petal . the study extends scientists ' understanding of the mechanisms leading to the diverse beauty of orchid flowers .\nfrank knight was ordered to make a public apology after making disparaging remarks on his facebook page . the lifelong blackpool fan has 34 friends on his private account . he has been ordered to pay # 20,000 in damages to the club and the oyston family . it is the third time a fan of the club has settled before court proceedings .\nit has been almost a month since ambra battilana accused movie executive harvey weinstein of groping her . on wednesday night he and his designer wife georgina chapman were spotted out together for the first time since the alleged incident . the couple were at the premiere of his new broadway production finding neverland in new york city . the play , which stars glee star matthew morrison and kelsey grammer , is based on the 2004 film of the same name weinstein produced starring kate winslet and johnny depp .\ncopper coin dates from the iron age almost 2,300 years ago and suggests there were links between the south west of england and the mediterranean . it was found in silt after the river avon burst its banks between bristol and bath . on one side there is a horse 's head , while the other bears the image of the goddess tanit , the chief deity of carthage . experts have dated the coin to between 300 bc and 264 bc and say it came from the western mediterranean .\nbernadette forde was found dead in her wheelchair in june 2011 . the 51-year-old was found with a ` suicide note ' on a dictaphone in her sitting room . carer gail o'rorke has been charged with helping her to kill herself . the taxi driver has pleaded not guilty at dublin circuit criminal court . ms forde said she had sourced drugs for her death online .\njulian assange agrees to be interviewed by swedish prosecutors in london , his lawyer says . assange has been holed up in the ecuadorian embassy in london since june 2012 . swedish prosecutors want to question him about 2010 allegations of rape and sexual molestation . assange denies the claims and says he fears extradition to the united states .\nmany stories of people stranded at sea end with rescues , but some do not . louis jordan says he spent more than a year adrift after his sailboat capsized . jose salvador alvarenga says he survived by eating sea turtles and rainwater . ron ingraham went through bad weather before being rescued at sea .\nana elizondo made headlines in 2012 after she was kidnapped from a parking lot when she was leaving a night class at the university of texas , pan american . the psychology graduate student , 27 , was blindfolded and transported through several cars as her abductors made a failed attempt to cross the mexican border . she was released unharmed the following day after one of the kidnappers introduced her to his mother who helped her escape to another location . miguel angel cruz navarro was reportedly the ringleader of the kidnapping . he was sentenced to 34 years in prison in 2014 .\nwest midlands counter terrorism unit arrested three people today . two 17-year-old boys were arrested on suspicion of preparing to travel to syria . a 39-year old man was also detained on suspicion to fundraising for terrorism . all three are currently in custody in a west midlands police station . police have appealed for help in identifying would-be terrorists .\nformer premier league player colin hendry , 49 , was twice over the legal limit when he was caught drink driving in lytham st annes . he was seen driving at up to 50mph after a row with his then girlfriend sarah kinder . he has been banned from driving for 17 months and must now travel on his bike .\nengland captain wayne rooney practices his free-kicks every day . manchester united starlet james wilson says he would also like robin van persie 's movement and radamel falcao 's instincts . the 19-year-old has scored one premier league goal this season . wilson played alongside van persie for united 's under 21s on monday night .\nthree florida corrections officers and one former officer trainee are charged . they are accused of plotting to kill a former inmate who was getting out of prison . the fbi infiltrated a branch of the kkk to meet the men . the men were `` happy about it '' when the fbi staged a fake homicide scene , prosecutor says .\nuniversity of cambridge scientist paolo bombelli has revealed his green source of energy . by using just moss he is able to generate enough power to run a clock . he said panels of plant material could power appliances in our homes . and the technology could help farmers grow crops where electricity is scarce . dr bombelli will present his research as part of the pint of science festival , which runs from 18 to 20 may in 50 cities across nine countries .\na husky , a springer spaniel and a black springer spaniard were filmed in bahama , north carolina . the three dogs were playing together in a front room when the owner called for quiet . the dogs then began to sing together and howled in harmony .\ntwo models posed seductively with a giant brown bear as part of anti-hunting campaign . photos show maria sidorova and lidia fetisova hugging and kissing the 650kg bear , named stephen . organisers wanted to highlight importance of living ` side-by-side ' with bears and to discourage hunting . but in one picture , a model was shown wearing a fur coat .\njapan 's ` lonely death ' squads specialise in clearing out the properties of elderly people who die alone . the bodies of these people go unnoticed by their families for weeks or months . specialist clean-up crews are on hand to cleanse these ' l single death ' apartments .\nclegg is trailing labour by two points in his constituency , a poll reveals . the deputy pm won his seat in 2010 by a huge margin , scooping 50 % of the vote . today he insisted : ` we are going to win sheffield hallam . we are confident but not complacent '\nengland batsman alastair cook has been working on a new stance with former england batting coach graham gooch . but in the first test against the west indies , he appears to have overdid it . the picture below shows cook playing against india at lord 's in 2007 with a near perfect stance .\nnicola sturgeon warns ed miliband he will not be able to pass a labour budget unless he agrees to snp demands . scottish first minister talked up her chances of being westminster 's king-maker . mr miliband tonight ruled out formal deal with resurgent nationalists , but said vote-by-vote arrangement remains on the table .\nswansea host newcastle at st james ' park on saturday afternoon . newcastle fans have planned a mass protest against owner mike ashley . campaign organisers have asked fans to stand in the 34th minute of the match . garry monk insists newcastle 's players will not be affected by the protests .\nright-to-buy scheme gives tenants discounts to buy their home . but housing associations own expensive properties in exclusive areas . tenants pay # 150 a week to live in flats in mayfair and covent garden . under tory plans they could get chance to buy them at discounted prices .\ntaekwondo fighter aaron cook 's switch to represent moldova confirmed . cook has had his citizenship change ratified after the breakdown of his relationship with the british olympic association . the 24-year-old from dorset is ranked no 2 in the world in the sub-80kg class . cook will compete for moldova at rio 2016 .\nliverpool face blackburn in the fa cup quarter-final replay on wednesday night . philippe coutinho says winning the fa cup would save their season . the reds are seven points adrift of fourth with seven games left in the premier league . brendan rodgers ' side lost 4-1 at arsenal on saturday afternoon .\nresidents of lijin village in dongying city carry natural gas in plastic bags . worried passers-by compare the behaviour to carrying a bomb on their backs . it has been reported on since 2011 in zibo city in shandong province . some suggest this is a way for villages to save money on transportation .\na raid on a kenyan college leaves nearly 150 people dead , including students . the u.s. embassy in nairobi says al-shabaab militants have claimed responsibility . al - shabaab has been blamed for attacks in somalia that have killed international aid workers .\nssangyong -lrb- korean for ` two dragons ' -rrb- is launching a value for money sports utility vehicle . pitched to take on the pumpedup nissan juke , the tivoli suv is powered by 1.6 litre euro 6 petrol and diesel engines . it arrives in the uk this summer in three trim levels - se , ex , elx .\neni mevish , 20 , was killed by david marshall at her stoke-on-trent home . marshall had been on licence for sexually assaulting a 14-year-old girl . he stabbed her in the heart , lungs and liver six months after they met . marshall must serve a minimum of 20 years behind bars for her murder .\nolympian nathan baggaley was found in a toilet cubicle with white powder . the 39-year-old was allegedly caught along with two other men in a toilets at byron bay blues festival on easter friday . mr baggaley has been charged with assaulting a police officer , resisting police and escaping custody . the kayker was already on strict bail conditions , including a 9pm curfew , while he was awaiting sentencing for two serious drug manufacturing charges .\narsenal beat reading in the fa cup semi-final on saturday . manchester united 's clash with chelsea was watched by 6.9 m viewers on sky . the fa and premier league blame each other for the clash . alastair cook and kevin pietersen had a long conversation on test match special .\nhearts face rangers at tynecastle on may 3 . the scottish professional football league had moved the kick-off to may 2 . but sky sports have agreed to move the match back to its original date . all other championship fixtures will now be moved to match the kick off in gorgie .\nizzat ibrahim al-douri was killed in fighting with government troops on friday . his body was returned to baghdad today and delivered to the ministry of health . crowds gathered to get a closer look at the ` king of clubs ' al-douri was deputy to saddam when he was deposed following the 2003 invasion . he was ranked sixth on the us military 's list of the 55 most-wanted iraqis .\nmadalina neagu , 42 , arrived at hospital with severe pain in her abdomen . she told doctors she believed she was in labour and they were prepared to operate . but tests revealed she was actually carrying an 11lb -lrb- 5kg -rrb- tumour in her uterus . doctors carried out emergency surgery to remove the tumour and she is recovering .\na sentimental ring was discovered at a bali resort . queensland resident roxy walsh took to facebook to find the owner . she has since been in contact with the couple and will meet them this weekend . the ring has a heartwarming message : ` darling joe , happy 70th birthday 2009 , love jenny ' ms walsh will be having breakfast with ` the joe and jenny ' in noosa on sunday .\nangelina jolie helped produce difret about the kidnap and rape of a 14-year-old girl in ethiopia . but the hollywood star is accused of exploiting the real-life victim at the heart of its story . aberash bekele , 32 , is angry at the filmmakers for using her story without her knowledge or consent .\nmichael owen was the new kid on the block in the premier league in 1998 . he scored a hat-trick against sheffield wednesday on february 14 , 1998 . harry kane has matched owen 's best-ever total for a premier league season . kane has scored 22 goals in 40 appearances for tottenham hotspur this year .\nlee keeley attacked his ex-girlfriend after a judge ruled against him in a civil matter . the 38-year-old grabbed the woman and hit her head against a wall . he then stamped on her head and chest at lincoln county court . keeley was jailed for two years and given an indefinite restraining order .\ntom croft has signed a new deal with leicester tigers . the england flanker has suffered a series of injuries in recent years . richard cockerill said it was the ` right thing to do ' for croft . croft is currently recovering from a dislocated shoulder .\nleighton aspell becomes first jockey in more than 40 years to win back-to-back grand nationals . the 25-1 shot is the first hennessy gold cup winner to land the prestigious prize . many clouds won the crabbie 's grand national at aintree for trainer oliver sherwood .\npupils from lostwithiel school in cornwall were due to visit mosque in exeter . but 10 pulled out after parents expressed ` grave concerns ' about trip . one mother said she ` does n't want to put her son at risk of being shot ' but some parents have backed the trip , saying it is a good idea .\nantoni van leeuwenhoek was a dutch natural scientist . he used his body as a guinea pig in an experiment in 1677 . he took three lice , nestled them among the hairs of his calf . then rolled up a tight stocking so that the insects were bound to his leg . leeuwenhoeck wrote about 300 letters to the royal society .\n`` it does n't look very urgent , '' says a notre dame professor . pope francis accepts the resignation of bishop robert finn , the vatican says . finn was found guilty in 2012 of failure to report suspected child abuse . he was the highest-ranking u.s. catholic official convicted in the church 's sex abuse scandal .\nmary kay letourneau , 53 , and her husband , vili fualaau , 31 , will talk about their relationship in an interview with barbara walters on ' 20/20 ' on friday . the former seattle teacher shot to infamy after starting a relationship with fuala pau when he was a 12-year-old sixth-grade student and falling pregnant with his child when he was just 13 . she served a seven-year prison term for the relationship , they married and now have two children together .\nemirates and etihad airways planes were traveling in opposite directions between the gulf and seychelles . both airlines say they received an 'em ergency warning ' from collision avoidance systems . the incident occurred over the arabian sea in mumbai airspace . etihad have maintained that their passengers ' safety was never compromised . emirates say the incident was an ` air traffic control incident '\nthis week is the 100th anniversary of the armenian genocide . obama promised to use the word `` genocide '' to describe the 1915 massacre by turks of armenians . he 's broken that promise seven years in a row . obama regards turkey as a more crucial ally than armenia .\nkate temple , 33 , attacked shelley williams at a hog roast party in county durham . she and her sister louise scollen got into a scuffle with the victim . temple was jailed for 20 months after admitting inflicting grievous bodily harm . the victim has had reconstructive surgery on her ear . she said she now sleeps with a hockey stick under her bed .\nceltic lost 3-2 to inverness in the scottish cup semi-final on sunday . josh meekings was given a yellow card for handball in the match . fifa head of referees jim boyce has criticised the sfa 's decision . caley thistle are appealing the decision to ban meeking . ronny deila has called for meekings to be spared a scottish cup final ban .\nteresa swarbrick , known affectionately as etch , drowned in a ` freak ' accident . the mother of two was caught in strong currents and lost consciousness . she was pulled from the water near julian rocks off the coast of byron bay . her husband alan posted a heartbreaking tribute to his wife on facebook .\nchef momin hopur spent five hours cooking the camel at the annual apricot tourism festival in jining , north xinjiang . the kiln was built specially with more than 10,000 bricks , yellow mud and salt . hopur and his apprentices spent five days erecting the cooking device and warmed it up for 48 hours before the big day .\njemima kirke , 29 , spoke out about her abortion in a new psa for the center for reproductive rights . she says she was forced to use up every penny of her savings to pay for the procedure . the actress says she has always been open about her experiences with abortion .\ned miliband 's son daniel has inadvertently waded into row about his kitchen . the labour leader 's son declared it ` the best ' in his house . the unwitting admission from five-year-old daniel , to be broadcast tonight . it came as mr miliband yet again wheeled out his children for the cameras .\nmanchester city under 18s take on chelsea in the fa youth cup final on monday . jason wilcox wants to deliver local players to the first team . ex-blackburn winger says it will be difficult to emulate manchester united 's class of 92 . wilcox joined city at 13 and was released by blackburn at 14 .\nsan antonio spurs beat golden state warriors 107-92 on sunday . kawhi leonard scored a career-high 26 points and set a new career-best seven steals . spurs extended their home winning streak over warriors to 32 straight . paul george returned from injury as indiana beat miami 112-89 . lebron james recorded his first triple-double since returning to cleveland . houston overcame russell westbrook 's 11th triple - double of the season to beat oklahoma city 115-112 .\ntrooper abraham martinez shot steven gaydos in the leg after he fled from authorities in houston in 2012 . gaydos was driving on a suspended license and was pursued for 40 miles before he pulled over . as he tried to put down his kickstand , martinez leaped into the air and kicked him . he was suspended for three days without pay but was not indicted for the shooting . the footage emerged this week as the texas department of public safety investigated outdated tactics used in pursuits .\nhollywood star angelina jolie , 39 , had an oophorectomy in march . she carries a gene variant that raises her risk of developing breast cancer . women with the brca1 gene mutation have a 50 to 80 % risk of getting the disease . those with the mutation can have their ovaries removed to reduce risk . study found that having the procedure reduces risk of death by 62 % .\nformer husband john agar said she was 'em otionally unstable ' and that her mother had wrecked their marriage . fbi background checks were carried out on shirley temple in 1969 when richard nixon wanted to appoint her to the un . other people including ronald reagan and lucille hosmer questioned her loyalty and said she had been accused of ` snobbery ' and ` snooty '\npregnant women with hyperemesis gravidarum more likely to have children with language and speech delays , and attention disorders . condition suffered by duchess of cambridge triples risk of developmental problems . about 10,000 women a year in the uk are affected by the debilitating condition .\npolice believe gul ahmad saeed shot dead his fiancee 's family on sunday . he is also alleged to have killed his own parents and brother-in-law last year . the 25-year-old has been on the run since then but returned to his home town . he was said to be angry at her uncle 's dithering over the marriage .\nthe 41 year old cheered on her son romeo , 12 , in the children 's marathon . accessorised with a pair of # 1,500 alaïa boots . recently admitted she is now a convert to flat shoes . wore them on flight to london from la last week and on the ellen show .\npolice in the southern state of santa catarina busted the gang 's lair . dog laid down alongside its owner and rolled over on its back in a ` sign of submission ' picture of the line of gang members and their guard dog has since gone viral . police recovered a substantial quantity of cocaine and marijuana at the scene .\nindian officials have condemned zakiur rehman lakhvi 's release . the alleged mastermind of the 2008 mumbai terror attack has been released on bail . he was allowed to leave adiala prison in rawalpindi late on thursday . his release was slammed with indians calling it an ` insult ' to victims .\nfigures revealed labour received # 1.9 m in the week to april 5 . it included a # 1million cheque from unite , entrenching labour 's reliance on the union 's militant boss len mccluskey . conservative donations totalled just over # 500,000 in the first week of the campaign .\njared quirk , 18 , died on friday in athens , greece , while walking with friends . he was on a school trip to see the ancient world with classmates from rockland , massachusetts . he is the third rockland high school student to die in six months . joshua rose , 17 , died in october , while patrick sullivan , 17 was killed in a car crash on new year 's eve .\na new survey claims to reveal what makes us most happy . janet street-porter reveals her list of pet hates - which gets longer by the day . she hates being with loved ones , enjoying warm weather and eating home-cooked food . she is also baffled by pay-by-phone car parking and weather dollies .\nroberto martinez has come in for criticism over his tactics . the spaniard has been criticised for trying to play out from the back . everton beat southampton 3-1 at goodison park on saturday . martinez insists that his tactics are ` innovative ' and points to his changes made against southampton .\npsychologist ramani durvasula says that shopping at ikea can cause serious friction between couples . 17 per cent of couples admit to fighting while assembling furniture . the more complicated the assembly , the more likely it is that your new ikea purchase will leave you and your partner at odds .\nearth was hit by a mars-sized object called theia 4.45 billion years ago . the collision created the moon , but debate has raged over what happened . many believe the moon formed after earth was hit . but a mystery has persisted on why the moon and earth are so similar in their composition . now , conflicting studies have provided two different theories . one says theia was similar to earth , and another that earth and the moon were showered by debris following the collision .\nreal madrid take on almeria in la liga clash at the bernabeu . cristiano ronaldo and james rodriguez start for real . carlo ancelotti makes nine changes to his side from last week 's win . almera have won two of their last three games .\nlinden adkins was caught on camera getting out of his minivan and screaming at a motorist at kent state university in ohio on wednesday . the 56-year-old , who works in the college of applied engineering , can be heard shouting : ` what kind of moron are you ? ' adkins claims he did it because he saw the motorist texting as he ran a stop sign and nearly hit a a pedestrian .\nthe fireball whiskey has dethroned jagermeister as america 's party shot of choice . retail sales more than doubled last year . it 's the sixth-most popular liquor brand in the u.s. , as measured by retail sales . fireball is made from canadian whisky , aged in used bourbon barrels .\nthe sun reported that arsenal were interested in signing victor wanyama . wanyamas claims he has never spoken to arsene wenger over a move . the saints midfielder has been linked with a reunion with former boss mauricio pochettino at tottenham . southampton are expected to lose morgan schneiderlin and nathaniel clyne in the summer .\neligah christian , 49 , took off when police tried to pull him over . he was being sought on a $ 100,000 warrant on charges of scheming to defraud , 15 counts of theft and 21 counts of issuing bad checks . christian was charged with felony reckless driving and criminal mischief .\nradamel falcao has endured a frustrating season on loan at manchester united . united chief executive ed woodward held talks with monaco on sunday . the red devils have an option to sign the striker permanently at the end of the season . falcaos has scored just four times for united since his season-long loan move .\nthree olympic gold medallists set to compete at the sainsbury 's anniversary games . jessica ennis-hill , mo farah and greg rutherford won gold in 2012 . the three-day extravaganza will take place at the olympic stadium . tickets are now on sale to the general public .\nac/dc drummer phil rudd , 60 , changed his plea to guilty in a new zealand court on tuesday . rudd was charged with two counts of threatening to kill and possession of methamphetamine and of cannabis . the charges stem from a police raid on his waterfront north island mansion on november 6 . the maximum sentence for threatening to killing is seven years in jail . rudd 's position with the top-selling band is now in doubt .\nrack city rapper tyga has been dating kylie jenner for a few months . tyga appeared to dye his hair red to show his support for arsenal . alex oxlade-chamberlain and kieran gibbs took tyga on a tour of the emirates stadium . the arsenal duo also gave tyga a no 52 arsenal shirt .\nsenate foreign relations committee chairman bob corker has denied that partisan politics in washington dc could derail america 's landmark agreement . countering president barack obama 's previous assertion , corker said that congressional oversight ` does n't mean there wo n't be a deal ' he said congress has a responsibility to scour the details of a final plan - including any classified annexes - before finally voting on it . negotiators announced a framework deal on thursday . the deal is scheduled to be finalized by june 30 .\ncorey edwards , from teignmouth , devon , has a terminal congenital heart defect . he has been on the paediatric intensive care unit at bristol children 's hospital since january . his parents craig and jemma were told he may not live much longer so decided to fast track wedding . they had to get special permission from the archbishop of canterbury to marry in hospital .\nformer manchester united defender gary neville believes manchester city would struggle to attract top players . manuel pellegrini 's side have been reined in by financial fair play . neville believes chelsea and arsenal would be preferable options for a big star looking to switch to the premier league . manchester city travel to old trafford to face manchester united on sunday .\nliverpool were beaten 4-1 by arsenal on saturday in the premier league . mamadou sakho played 90 minutes as liverpool lost at home to arsenal . liverpool face blackburn in the fa cup on wednesday night . sakho tweeted a picture of him and steven gerrard heading to paris .\nthe flashgap app is free for ios and android devices . photos and videos taken on the app disappear after three seconds . they are added to a hidden album that is only visible the following day . all attendees of the event can see this album , and users can only delete photos they took themselves .\nlusitanian toadfish make five types of calls and males can even sing in choruses to attract mates . the fish woo females with long , rhythmical boatwhistles , which also act as a deterrent to love rivals . the whistles vary according to the size of the fish , meaning that specific calls from larger specimens are particularly effective at deterring another fish from picking a fight and stealing a nest . portuguese scientists discovered that the sounds made by lusitania toad fish indicate who they are , their motivation and information about their nest .\nphotos taken by lee thompson of the flash pack , a small group flashpacking tour company . the group were on a 14-day trip to vietnam and cambodia this month . in vietnam alone there are more than 37 million motorbikes or scooters . the images show what can be packed onto the back of a bike or scooter in southeast asia .\nliverpool lost 2-1 to aston villa in the fa cup semi-final second leg at wembley . brendan rodgers ' side have not won a trophy in his first three seasons . liverpool manager admits his side have to do better in the big games . liverpool have not beaten aston villa at wembley since 1990 .\nanneli tiirik , 23 , said she did not blame andreas lubitz for her boyfriend 's death . paul bramley , 28 , died when lubitz locked captain out of cockpit . lubitz , 27 , had hidden a sick note on day of the crash and researched suicide .\ncatholic teacher patricia jannuzzi wrote in a facebook post that gays were behind an ` agenda ' to ` reengineer western civ into slow extinction ' she was put on administrative leave last month and was asked to disable her facebook page . a letter was sent on friday to faculty and staff members at immaculata high school in somerville saying jannbuzzi had been reinstated . monsignor seamus brennan , pastor of the church of the immaculate conception , said in the letter that catholic teachers should communicate the faith in ' a way that is positive and never hurtful '\nthe family of ducks were crossing a busy high street when they were spotted . staff at a recruitment firm in sutton coldfield , west midlands , helped them cross . but the mother and ten ducklings followed them back to their office . they stayed for an hour , wondering the corridors and drinking from water bowls .\n18 second advert appears to prove kids prefer happy meal to pizza . pizza chefs in italy are so angry they are threatening legal action . restaurant owners say it is ` blasphemy ' to suggest children prefer hamburgers . mcdonald 's says it was not trying to attack italian food culture .\npatrick james fredricksen , 30 , has previous convictions for unlawful sexual activity with a minor and impersonating a firefighter . he is said to have stolen a school bus and used its list of children 's names and addresses to try and abduct a young girl . fredrickson was stopped on his way to one child 's home in eastern utah , police say .\na duffel bag containing human remains was found outside a biotechnology building in cambridge , massachusetts on saturday morning . one person was later arrested in connection with the grisly discovery , authorities said . the remains are believed to belong to one person , whose death is being treated as a homicide .\nchicago cubs fans had to pee into plastic cups on opening day . lines stretched through the concourse and out into the stands . the stadium had only two working bathrooms . cubs and wrigley field claimed the problem began when two bathrooms on the upper deck ` went down temporarily '\na 4wd containing four children and an adult has crashed into a lake at wyndham vale , in melbourne 's outer west . the search and rescue team is at the scene to pull the car from the water , which is reportedly about 20 to 30 metres from shore . police believe that all children are under the age of six . the driver was transported via road ambulance to the royal melbourne hospital , and she remains in a stable condition .\nadrian schaffner took his dog sintha along for a day of skiing in switzerland . the dog is seen sitting on his shoulders as he skis down the mountain . the appenzeller mix appears to be enjoying the sensation of speed . after a long ski to the bottom , the dog jumps from his shoulders and onto the ground .\nannabel , now 12 , fell 30ft headfirst inside a hollow tree in texas . she was rescued by fire crew and rushed to hospital in a helicopter . she survived the fall with only bumps and bruises . she claims she ` went to heaven and sat in jesus 's lap ' while unconscious . mother , christy , believes her daughter 's brush with jesus is why she can now eat solid food for the first time in her life .\nzlatan ibrahimovic has had a new website created in his honour . the site is called zlaaatan.com and is identical to google . users can search for ` zlatans ' and ` i 'm feeling zlatan ' the site has no affiliation with ibrahimovic nor google .\nguy mowbray 's notes for liverpool vs newcastle match posted to twitter . radio 5 live commentator correctly predicted 19 of the 22 players who took to the field . but he incorrectly predicted cameron brannagan would make his first liverpool start . jordan ibe was born on raheem sterling 's first birthday . mow bray was the youngest ever television commentator on a world cup final .\nsummer michelle hansen , 32 , of california entered a guilty plea in february to 16 felony counts related to sex acts with her five male students . she was sentenced on friday to three years in state prison and must also register as a sex offender for life . hansen was under investigation two years ago after a former student at centennial high school came forward and said he had sex with her . she could have faced 13 years in prison if convicted at trial . hansen made an emotional plea to the victims ' families while in court saying she prayed for them every night and that she was ` heartbroken '\nthe government has approved funding for cambridgeshire-based mole solutions to develop the idea . the plan aims to reduce the level of road freight within urban areas by using freight pipelines carrying goods in capsules . the development project is set to last nine months and if successful could be rolled out in other towns .\nsinger miley cyrus left her underarms unshaved this week . here , experts explain why being hairy may be good for you . hair anywhere on the body is important for maintaining skin health . it helps heal wounds , keeps us warm and protects us from sun .\npending apple patent details a system of scanning a user 's face with the front-facing camera when the handset is moved into a certain position . if the scanned face matches a previously taken photo , the phone unlocks automatically . the patent was filed by the californian tech giant in march 2011 and awarded earlier this week . android lollipop users already have an almost identical feature known as ` trusted face ' in the smart lock menu .\nengland beat st kitts invitational xi by an innings and 320 runs . alastair cook and ian bell retired out in farcical match . england bowled hosts out for 59 on first day of tour match . james tredwell outperformed adil rashid in contest for test spinner 's slot .\naaronessa keaton , 24 , was arrested monday and charged with manslaughter for a 2014 accident that resulted in the death of a 5-year-old child . keaton hit another car head-on while she was eight months pregnant and had marijuana and benzodiazepines in her system . when told of this after her arrest , keaton said ; ` sh*t happens ' .\npremature baby etienne gould nunan has been allowed to go home after almost five months in hospital . the baby was born at melbourne 's monash hospital in july last year . he was born with a hole in his heart and a brain bleed and weighed only 558 grams . he developed pneumonia , suffered a collapsed lung and endured 58 blood transfusions to fight infections . his parents have praised medical staff for taking care of their son .\nchina national tourism administration to track actions of chinese citizens abroad . provincial and national authorities will be in touch with unruly citizens . police , customs officers , border control and even bank credit agencies will be contacted . bad behaviour will include disorder on public transportation and gambling . chinese travellers spent $ 164 billion on foreign trips last year .\nsea bright fire chief volunteer chad murphy wore a camera on his now-charred helmet as he stepped into the furnace in rumson , new jersey on monday . footage shows him entering the burning building and carefully navigating the smoke-filled interiors . at one point he 's seen hosing down a glass skylight with debris falling down . the four-alarm fire at the rumson mansion , known as blithewald , has been ruled accidental .\n19-year-old hattie gladwell was fitted with an ostomy bag . had emergency surgery for ulcerative colitis after suffering from problems . now she has shared her experience on her blog morethanyourbag.com . reveals how learning to live with it has affected her mental health .\nthe notice has been fixed outside a university building in portugal place , cambridge . it warns cyclists not to leave bikes chained to railings behind a building used by the greek orthodox church . but one expert has branded the sign ` elitist ' and said there are grammatical errors .\nheather mack , 19 , accused of murdering her socialite mother sheila von wiese-mack . she allegedly stuffed her body in a suitcase , together with her boyfriend tommy schaefer . baby stella was born by caesarian on march 17 and is being cared for in prison . a blanket fell away , revealing the child 's face to the world for the first time .\nyaphet kotto starred as dr kananga in the 1973 bond installment live and let die . he said the role was created by ian fleming for a white actor . kotto said : ` political correctness be damned , we have to stay with what is literally correct ' comments come in response to speculation idris elba is next james bond .\nhogs breath cafe in aspley is facing online criticism after a customer found a sink plug in her salad . the unhappy diner posted a picture of her unappetising salad to franchise 's facebook account where it was ` liked ' over 2,000 times before she decided to remove it . facebook users have left comments roasting the hogs breath , located north of brisbane , for the embarrassing mistake .\nronnie lungu was singled out as ' a marked man ' by wiltshire police , tribunal ruled . the 40-year-old was passed over for promotion in favour of white colleagues . his internal assessments were secretly downgraded to make him appear unworthy . he said he was left ` upset ' and ` angry ' after being penalised because he was black .\nmax verschuuren was bent over emptying rocks out of his boot when his friend shot him in the back with a .270 rifle . the 21-year-old was on his way to a felled deer in the te urewera forest , north island , on saturday night . he was wearing a dim headlight and the friend thought it was the reflection of light in a deer 's eyes . grisly photographs show the gaping , bloody wound it left .\nthe designer of the `` welcome to fabulous las vegas '' sign died over the weekend . betty whitehead willis was 91 . she also designed the signs for moulin rouge hotel and blue angel motel . willis never trademarked her most-famous work , calling it `` my gift to the city ''\nsonnenspeicher is an intelligent battery that stores excess energy . it uses a lithium iron phosphate battery to store energy harvested by solar panels . this energy is used throughout the day and any excess is stored for when the sun goes down . rather than selling this excess electricity back to the grid , homeowners can then use their stored supply for power . the sonnenspeicher can be wired up in case of emergency . it features an intelligent management system that automatically controls the charging and discharging current .\nu.s. secretary of state john kerry said washington would not accept foreign interference in the country . he said iran needs to recognise that the united states is not going to stand by while the region is destabilised . comes as a saudi-led coalition continues to pound anti-government forces in yemen .\nteenager katie cope , 17 , was forced to close her mother 's shop . she had to detain a shoplifter for three hours until police arrived . but when officers arrived they said the knickers were not worth enough to prosecute . katie and her mother eve cope have accused police of giving a ` green light ' to shoplifters by merely cautioning the 66-year-old culprit .\nattorney general eric holder sent a memo to doj employees reminding them that soliciting prostitutes is against agency rules . his memo came weeks after a scathing inspector general 's report found the dea mishandled allegations that several of its agents went to sex parties with prostitutes . the doj is investigating the disciplinary process following the accusations of sexual misconduct .\nshadow chancellor refuses to rule out rise in main rate of corporation tax if labour form next government . businesses already concerned about labour 's stated plans not to cut corporation tax . main rate brought down from 28 per cent to 21 per cent under the coalition .\norlando city travel to portland timbers in major league soccer on sunday . kaka posted a picture on instagram of himself working on his strength and balance . the brazilian has not scored since scoring in the first game of the season . orlando city are sixth in the eastern conference after five games .\njohn and carolyn jackson are currently on trial for abusing their three foster children . the couple 's first child abuse trial ended in a mistrial when a prosecutor mentioned the death of one of their sons . the jacksons had three biological children and three adopted children . they have only been charged for abusing the foster children , but the charges are not related to his death . the children were left with broken bones and other health problems .\nsmall quakes jolted once stable regions in eight states , including parts of alabama , arkansas , colorado , kansas , new mexico , ohio , oklahoma and texas . earthquakes , they said , were sometimes caused by fracking , in which large volumes of water , sand and chemicals are pumped into rock formations to free oil or gas . study identified 17 areas in the central and eastern us with increased rates of induced seismicity .\nkimm hang , 22 , is the youngest designer to ever show at mercedes-benz fashion week australia . the brisbane-based designer is committed to looking after workers in his family 's home country of cambodia . he recently opened up a factory in cambodia and pays double the minimum wage . the designer 's collection han was inspired by his heritage .\nzafar ansari will make his odi debut against ireland on may 8 . the surrey batsman is currently writing his masters degree . ansari is part of a young england squad picked with the 2019 world cup in mind . james taylor will captain england against ireland in malahide .\nlatoya tilson , 33 , allegedly fired into crowd in college park , georgia . she was allegedly trying to break up a fight when she was hit in the face . one bullet struck 17-year-old boy in buttocks , while another hit her son . pierre , 15 , was lying unconscious on the floor and not breathing . he was rushed to hospital but died on monday afternoon from gunshot wound . tilson arrested on several charges , including aggravated assault and cruelty to children .\ncollection , which has been under lock and key for 200 years , has been digitised by the royal archives . documents include a book of poetry gifted to george iii by the shah of persia in 1812 . letters from rear admiral sir samuel hood written during the american war of independence also revealed .\nleicester tigers beat london welsh 38-17 in the aviva premiership . chris hala'ufia was sent off for a brutal attack on laurence pearce . the tongan number eight halted pearce with a shoulder charge . hala'ufia then grabbed pearce 's head and rammed into the turf . leicester fought back from a 10-7 half time deficit .\nsheikh zayed grand mosque in abu dhabi , united arab emirates , is the biggest in the middle east . british photographer julian john has been snapping the incredible interiors for four years . the stunning courtyard features the world 's largest marble mosaic at 180,000 square feet .\neverardo custodio , 22 , was shot multiple times in the legs and lower back by the 47-year-old driver on friday night . custodia was shot in the leg and back in logan square , chicago . the driver , who has a concealed carry permit , will not face charges for his actions .\nkristina schakes worked as white house aide for president barack obama . she helped to transform first lady 's public image into that of ` everywoman ' she even performed ` mom dancing ' with jimmy fallon in 2013 . now , 45-year-old has been brought on to hillary clinton 's 2016 team . she will attempt to turn 67-year - old politician into ` tougher , more accessible ' but , her efforts could prove tricky , following email scandal .\nastronomers have produced the first complete three-dimensional view of these beautiful columns of interstellar gas and dust . the image , together with data collected by nasa , suggests these structures only have three million years left before they fade away . the new observations , taken by the european space agency , reveal many new details -- including a previously unseen jet from a young star .\nthe u.s. military is developing a self-steering bullet . the `` smart bullets '' are .50 - caliber projectiles equipped with optical sensors . in february , they passed their most successful round of live-fire tests to date . the system has been developed by darpa 's extreme accuracy tasked ordnance program .\nzhang yimou ouyang admitted to police she poisoned two students ' water bottles and her own . paraformaldehyde , a form of embalming fluid formaldehyde , can cause skin irritation , respiratory ailments and , in larger amounts , death . ouyan was on a state-sponsored scholarship from singapore when authorities say she began dosing the bottles with paraformaldehyde starting last september . the cancer biology phd student has been dropped from the top university and could face up to 8 years in prison .\ned balls and andy burnham warn nhs ` can not survive ' another five years of tories in government . labour frontbenchers launch week of attacks on nhs , saying there has been a ` dramatic decline in standards ' in the past five years . ambulance response times will rise to over nine minutes , 500,000 fewer older people will receive social care and 600,000 will be forced to wait for more than four hours on trolleys on a&e .\nthe australian sas has confirmed that prince harry will embed with them . corporal mark donaldson vc is one of the few australians to have been awarded the nation 's highest military honour , the victoria cross . he was awarded the vc in 2008 for his bravery in afghanistan . donaldson claims to have shot a taliban warlord who had boasted he would kill the royal heir . the soldier is now a training commander at the sas hq in perth , western australia .\nmichelle mone bought the three-bedroom property in park circus area of glasgow for # 780,700 after splitting from her then husband michael in december 2011 . she spent months renovating the two-storey townhouse , described by estate agents as an ` outstanding interior designed luxury home ' the 43-year-old entrepreneur also owns a # 2million flat in mayfair , london .\ngregory margolin fought in the soviet red army in world war ii . his family fled the nazis , but he survived and settled in eastern ukraine . he was a sniper in the army and survived another war . he and his family fled to israel after a missile hit his house in eastern ukrainian war .\nrafa benitez 's napoli reached the europa league semi-final on thursday . it is his seventh semi-finals in 12 seasons with four different clubs . he has won the uefa cup with valencia and champions league with liverpool . benitez is out of contract at napoli at the end of the season .\nbrondby and denmark defender daniel agger has been banned for two games for violent conduct . agger was accused of elbowing mattias jorgensen in the head . the incident happened during the derby against copenhagen on monday . match officials took no action during the game , which finished in a goalless draw .\nmarcos rojo is on a week-long vacation in portugal with his family . the defender was pictured with team-mate angel di maria on the plane . rojo 's affair with fitness instructor sarah watson was exposed last month . the manchester united defender is impressing in defence under louis van gaal . watson claims rojo and his advisors tried to frame her for blackmail .\nthe justice department said friday that prison officials must treat an inmate 's gender identity condition just as they would treat any other medical or mental health condition . the southern poverty law center in february filed a lawsuit against georgia department of corrections officials on behalf of ashley diamond , a transgender woman . the lawsuit says prison officials have failed to provide adequate treatment for diamond 's gender dysphoria . diamond , 36 , identifies as a female and has been on hormone therapy since she was 17 .\nalex bellini , 36 , is seeking funding for his project , called adrift . he will live inside a contained ball on an iceberg in greenland starting next year . he 'll live inside the capsule , with no means to escape for 12 months . the capsule will be 10ft -lrb- three metres -rrb- wide and could fit 10 people . but mr bellini will remove all of the seats apart from one , for himself . his goal is to see an iceberg ` in the last phase of its long life , ' observing the changes that occur as it melts into the ocean .\na congressman suggested in november that the secret service would be better able to protect the president and his family if 1600 pennsylvania avenue took a more mediaeval approach to security with a moat . the idea was dropped after ` concern expressed about having to retrieve people from it ' the national park service and the secret service are recommending the addition of half-inch-thick spikes , angled away from the white house , to the existing fence . the new spikes will be bolted on at the top for a year or more while an entirely new fence -- as tall as 10 feet -- is planned and fabricated .\nchelsea under 19s take on shakhtar donetsk in the uefa youth league final . the game will kick-off at 3pm uk time on monday afternoon . the blues beat roma 4-0 in the semi-final on friday to reach the final . adi viveash 's side are favourites to win in nyon , switzerland .\nadidas ultra boost shoes are on sale for # 130 . supermarket chain aldi have a running flash sale in stores from tomorrow . the premium shoes are available for # 19.99 while stocks last . femail writer and marathon runner lucy waterlow tested out the shoes .\nboeing 747-8 is believed to have cost a mystery billionaire # 400million to build . the luxury interior has been customised to fit his specifications over a three-year period . the aircraft has bedrooms , a dining room , a state room , lounge and a restaurant .\nbettina liano has revealed she can not afford to pay the australian taxation office . the denim designer is being pursued for $ 126,594 in taxes withheld between march and december 2012 . the sister of gina liano relaunched her eponymous jeans label last year as by bettina liana after going into liquidation in 2013 .\ndaniel kislitsyn , 31 , killed 1,000 dogs in vladivostok , russia , a trial heard . he told police it was his duty to eliminate stray dogs from the streets . kislit 's said they posed a threat to people and needed to be wiped out . judge olga yerokhina handed kislitsyn a fine of just # 200 for the killings .\ngeorge at asda has created a range of outfits for babies being christened . the range includes gowns and rompers inspired by prince george . the average cost of a christening has hit # 300 , according to research . asda says its range is the cheapest on the high street .\nmichael gove said he could not rule out further cuts to child benefit . former education secretary said welfare spending can be reduced . but he said the tories would not cut benefits for the disabled or pensioners . comes after george osborne last month refused to rule out cuts . he said child benefit would not be replaced by universal credit .\nkady marsh was breastfeeding her seven-week-old baby isla at a sydney hotel . she was told to move to a different area of the bar because it was restricted to over 18s . the melbourne mother-of-two was told she had to use the disabled toilet . in australia , women have a right to breastfeed in public . the manly wharf hotel says it 's ` ludicrous ' to suggest they would n't allow breastfeeding .\nmother stacy maitai is not eligible for further financial assistance from centrelink as she is not an australian citizen . the 28-year-old is forced to survive on welfare funding of $ 90 a week to support her baby and her seven-year old daughter . malakai has been diagnosed with a rare medical condition known as pallister killian syndrome -lrb- pks -rrb- the newborn can not see , can not hear and struggles to breath . doctors say he may not ever be able to walk . a fundraising page on mycause has raised more than $ 18,000 for the family .\ndustin johnson becomes the first man ever to have three eagles in one round at augusta national . the 21-year-old american is the youngest first-round leader in masters history . johnson 's 66 set a new 36-hole record total of 14 under par . tiger woods shot a commendable 69 , his first score in the sixties in 15 rounds in majors .\nniall horan caddied for rory mcilroy in the traditional par-3 contest at augusta national . horan had a slip while carrying mcilory 's clubs around the par-three course . the singer from ireland even got an opportunity to tee off on one hole . tiger woods also played the par - 3 contest for the first time in 11 years . woods was joined on the course by girlfriend lindsey vonn , his son charlie and daughter sam . american 36-year-old kevin streelman won the par 3 contest after a three-hole play-off with camilo villegas .\nten-year-old trinity culley used knowledge she gained from tv show to deliver baby sister at home . she secretly watched the baby-birthing programme after her mother told her it was too graphic . when her mother dee 's waters broke two weeks ahead of schedule , she sprang into action . within minutes she had helped deliver her baby sister , jasmin elizabeth-rose .\nraheem sterling was filmed apparently inhaling nitrous oxide . the 20-year-old was also caught puffing on a shisha pipe on sunday . liverpool forward could face disciplinary action over the incident . sterling scored the opening goal in liverpool 's 2-0 victory over newcastle .\nhenry howes got stuck in machine at snowdome in tamworth , staffordshire . four-year-old had been playing claw game when he failed to win a teddy . he put his hand inside the machine 's hatch but slipped under trap door . his brother harvey , 9 , witnessed the accident and alerted staff . henry was trapped for half an hour as workers searched for keys .\nnelson williams jr was killed in june 2013 during a botched robbery . his father , nelson williams sr , says he is worried that his son 's killer , kamron taylor , will attack him . taylor escaped from jail in kankakee , illinois , on wednesday morning . he beat a guard unconscious and stole his uniform and suv . he was awaiting sentencing for the murder of nelson williams jr. . in february , taylor threatened williams ' family in a courtroom outburst . he yelled , ` i 'm going to get you mother ******* '\nformer young divas singer kate dearaugo has spoken out about her drug-taking past . she said she turned to drugs to mask her depression after gaining weight . the 29-year-old underwent gastric sleeve surgery in may 2012 . she lost 68kg and is now slim and healthy .\nbilly joe saunders and chris eubank jnr are due to fight at wembley arena on may 9 . the pair clashed in a 12-round grudge match on november 29 . eubanks challenged saunders to take a re-match with him on may9 . promoter frank warren is keen on a rematch and has suggested an autumn rematch .\nshadow business secretary chuka umunna says he is against ` taxing for the sake of taxing ' comments highlight divisions in labour 's top ranks over new 50p top rate of tax . ed balls wants it to be temporary , while ed miliband is ideologically wedded to maintaining it .\nmeaghan hudson told friends and family she had multiple myeloma in 2013 . friends shaved their heads and got tattoos in solidarity and raised $ 5,000 for her . the nursing student was arrested in january and charged with theft by deception . her stepmother margaret hudson set up a fundraising website for her daughter . police received an anonymous tip last summer that she had been faking the disease .\npart therapist , part acting coach ivana chubbuck , 62 , runs a drama school . her clients include eva mendes , charlize theron , gerard butler and halle berry . chub buck says she is ` about empowering people ' and reveals ` secret stuff '\nlib dem campaigner michelle gent used party hq for her bondage and porn film business . the former councillor , 50 , directed and starred in violent films featuring whips , chains , swords and scantily clad women . she used the party 's offices in ashfield , nottinghamshire , to hold auditions for the sordid films .\nthe widow of dr. michael davidson has given birth to their fourth child , a baby girl , less than three months after the doctor 's slaying . mikaela jane davidson was born april 4 . dr davidson was shot dead at boston 's brigham and women 's hospital january 20 by his patient 's son , stephen pasceri . the doctor 's wife , dr. terri halperin , is seven months pregnant with their fourth baby .\namy johnson , from sydney , allegedly assaulted a 16-year-old mcdonald 's worker . the 38-year , mother allegedly grabbed the young woman by the neck and scratched her face . she said she became aggressive because the fries had spilled out of their containers and the mcdonald 's employee used her hands to put them back in the packet . ms johnson has been charged with assault occasioning actual bodily harm and common assault .\nstephen gilbert was bitten by a dog while campaigning for re-election . he joked that the dog had ` unresolved anger issues ' after posting a photograph online of his bloodstained hand . lib dem insiders today admitted the party is on course to lose at least 20 mps .\ngeorge kirby and 91-year-old doreen luckie from eastbourne , east sussex , will marry after first getting together 27 years ago in 1988 . between them they have had seven children , 15 grandchildren and seven great-grandchildren . george , currently 102 , proposed on valentine 's day and will marry for the third time on june 13 .\nkaden lum was shot and killed at his home in bremerton , washington . the two-year-old 's mother and a neighbor were also killed in the attack . two weeks on , the kitsap sun printed a controversial cartoon about gun culture . it depicts kaden as an angel next to a caricature of a devil dressed as uncle sam . the boy 's grandfather believes the decision to print the cartoon was in ` bad taste '\nbowe bergdahl was found to have be ` going over to the other side with a deliberate plan , ' according to a former military intelligence officer . lt. col. anthony shaffer said on fox news ' the o'reilly factor that bergdahl ` had afghan contacts and he was actually trying to offer himself up with the taliban ' the former military intelligence officer said he had been told the information by two senior sources who knew about a 2009 naval criminal investigative service investigation into bergdahs ' activities . the investigation reportedly included a forensic review of bergdhal 's computer which showed his apparent intent to travel to uzbekistan .\nveronica ` roni ' gonzalez and her fiance ely alba gonzalez were returning from their engagement party when they stopped on interstate 30 to help a group in trouble . four were killed instantly in the collision . of the 13 people injured , one later died in hospital from their wounds . two young children travelling with them survived the incident .\ngreece 's mount athos is known for its stunning monasteries . eagles palace hotel is a fine escape zone for family holidays . prince charles is a regular visitor to the monastery . the hotel is 90 minutes ' drive from thessaloniki . it has its own beach and a saltwater pool .\nin his obituary , larry upright 's family asks for donations to a children 's hospital . `` also , the family respectfully asks that you do not vote for hillary clinton in 2016 , '' it says . uprights , a staunch republican , died monday at a north carolina hospital .\nwomen paid 62p an hour to make ` feminist ' t-shirts in mauritius . police charged at them , hitting out with batons , before dragging them away . dozens of workers have been sacked and deported for staging ` illegal strike ' factory exposed by mail on sunday for low wages and prison-like accommodation . whistles and topshop have announced investigations into the incident .\njordan spieth has hailed the ` most incredible week ' of his life . the 21-year-old won the masters at augusta on sunday . he is the second youngest masters winner of all time . spieth led from start to finish for the first time in 39 years .\nboxing gear and effects sales have soared as much as 10 times ahead of fight . retailers are struggling to cope with demand from fans snapping up items . online and front-end retailers are seeing record sales of pacquiao t-shirts , boxing gloves , figurines , caps and jackets . buyers believe items could at least double in value if he wins .\narsenal tula vs torpedo moscow was suspended for seven minutes on sunday . torpede moscow fans broke down barriers and threw chairs . arsenal tula say the fans were trying to get to the east stand . the russian premier league have said torpedos will be punished .\nflorida postal worker doug hughes flew his gyrocopter onto the capitol 's west lawn on wednesday . hughes was arrested and charged with operating an unregistered aircraft and violating national airspace . he 's now been released on his own recognizance and told to check in weekly with authorities in tampa starting next week . homeland security secretary jeh johnson said thursday that the copter ` apparently literally flew in under the radar '\ngulnaz , known as gulnaz in afghanistan , was raped by her cousin in 2008 . she was only 16-years-old when she fell pregnant with the child of asadullah . her brothers insisted she would not be allowed to return to her ` shamed ' family . she agreed to marry her rapist so that her daughter could live a normal life . gulnazi gave birth to her daughter in a kabul jail before being freed . now she is pregnant with his third child .\ntina campbell , from london , paid # 100 for hair extensions to look glamorous . a few weeks after having the weave , she developed painful boils on her scalp . she was forced to seek medical attention after her scalp became infected . she spent her 29th birthday in bandages after having boils surgically removed .\nthis year marks the 40th anniversary of snooker 's most prestigious tournament . there is interest from china in hosting the event at the crucible theatre . barry hearn has rubbished rumours the betfred world championship will leave sheffield . hearn is close to extending deals with sheffield city council and broadcast partner the bbc .\nluke shambrook went missing from candlebark campground near lake eildon on friday . he was found on tuesday just three kilometres from the camp . he suffered from dehydration and hypothermia but is in a good condition . doctors say they are stunned by how healthy he looks after four nights alone . he is with his family at royal children 's hospital in melbourne . his parents tim and rachel were with him as he was put into an ambulance .\nthe last two ` doolittle tokyo raiders ' presented the group 's congressional gold medal for permanent display at the national museum of the us air force on saturday . retired lt col richard ` dick ' cole , age 99 , gave the medal to the museum 's director in a ceremony at the museum attended by military and political officials and relatives of the original 80 raiders . the medal , awarded by congress earlier in the week , arrived in a ceremonial b-25 flight .\nfireman used a phone ringtone to lure the ducklings out of the drain . cody knecht , of st. tammany fire district in louisiana , was sent out to rescue the baby mallards after residents reported seeing them fall down the drain . all six ducklings were reunited with their mother on saturday at their home on a nearby canal .\ngolfer rickie fowler 's girlfriend , bikini model alexis randock , had posted a photo on her instagram account of her and sister nicole on the beach last week . a troll called ` fatalsplash ' then accused alexis of being a ` gold digger ' who did n't have to work . fowler quickly told the hater to ` get your facts straight ' , while alexis informed him that she worked her ` butt off ' .\nsales of books about islam were three times higher in the first quarter of 2015 compared to the same time last year . special magazine supplement focused in the koran also saw a spike in sales . experts believe people are buying books because they want a better understanding of the religion some terror groups claim to represent .\narsene wenger has won the manager of the month award 14 times . the frenchman has won four premier league titles in the last year . sir alex ferguson won 27 of the gongs during his time at manchester united . jose mourinho has won three of the awards , but not as many as former wimbledon boss joe kinnear .\namanda beringer asked her brother brad fraser to make a musical toast at her wedding . the toast was a tribute to their father , peter , who died of motor neuron disease 10 years ago . mr fraser performed a song which poked fun at marriage . the wedding guests gave it a standing ovation .\ngrant hackett 's father revealed his son 's addiction to stilnox was triggered by a death threat . former police inspector neville hackett said his son had ` his life threatened by a well-known associate of criminals ' two years ago . the revelation comes after the 34-year-old made a come back last sunday when he earned a 2015 world titles relay team berth .\njuventus director pavel nedved has revealed barcelona are interested in signing paul pogba . the czech star insisted that the french midfielder wo n't be moving . nedved also admitted he was pleased juve did n't draw barcelona in the quarter-finals of the champions league . the former midfielder made 324 appearances for the turin club .\ndayna dobias , 19 , from downers grove , illinois , was born with cerebral palsy . she has created several dancing videos to counteract stereotypes held over people with disabilities . the teenager says she has been bullied because of her disability . she hopes to change the way people with disability are represented in the media .\ntwo women were sentenced thursday to multiple years in federal prison for their role in the 2011 hate killing of 47-year-old james craig anderson . shelbie brooke richards , 21 , of pearl was sentenced to eight years in prison and sarah adelia graves , 22 , of crystal springs was given 5 years . both women were riding in a truck that fatally ran over anderson in june 2011 . anderson died after being beaten and run over by a truck .\nitalian model pietro boselli has amassed nearly half a million instagram followers . the 26-year-old admits he tried to keep his modelling secret from colleagues . he says he was ashamed that people in academia would ` look down on him ' his students at ucl discovered his secret after googling him .\ntwo-year-old darcy atkinson died from brain injuries in december 2012 . he was in the care of his mother 's boyfriend adam taylor when he died . the boy was covered in bruises and had traces of ritalin in his system . dr barry wilkins said the toddler had been ` caned or whipped ' before he died , and had bad bruising around his ears which appeared to be infected .\nanthony hinton spent nearly 30 years on alabama 's death row for two murders . his conviction was overturned after a new trial was ordered in 2014 . hinton says he 's still getting used to being free . `` i have to pinch myself to tell myself that i 'm free , '' he tells cnn .\nneil moore , 28 , was on remand at wandsworth prison in south-west london . he emailed wardens posing as a court clerk manager at ` southwalk crown court ' escape motivated by fear he would be harmed by fellow inmates . he struck up relationship with a transgender individual at hmp wands worth . judge described the escape as ` sophisticated and ingenious ' and jailed him for seven years .\nracism is rife in the coal region in northeastern pennsylvania and the spine of the appalachian mountains . clusters of racism appeared in areas of the gulf coast , michigan 's upper peninsula , and a large portion of ohio . racism in the new england states , along with new york , were two of the most surprising discoveries for the researchers . searches for n **** r are less frequent in regions west of texas .\nbrian and amanda bayers are heartbroken after accidentally killing their son jackson in february . brian bayers thought his son jackson was playing inside but when he got out of his truck he noticed that the back door of his house was wide open . jackson was hit by the front wheels of the vehicle backing up and when the front . wheels back around , he essentially walked right into the side of the . vehicle . the bayers say they are sharing their story so that other parents do n't make the same mistake .\nmother doris fuller wrote about her daughter natalie 's illness in washington post article about her life . said she was diagnosed with bipolar disorder and psychosis at 22 . natalie , 28 , died last month when she stepped in front of a train in baltimore , maryland . said in video that voices in her head told her to harm herself . but she was ` the bravest person i have ever known ' , fuller said .\nbritish exports to rest of the world are surging ahead of those to europe . first time since records began that sales of uk goods have outstripped those to the eu for six months in a row . figures appear to vindicate david cameron 's ` mercantile ' foreign policy .\nfrench midfielder n'golo kante is attracting interest from a host of premier league clubs including arsenal , newcastle united and southampton . marseille have been in constant contact with caen over signing the 24-year-old . caen would be willing to sell kante for around # 5million .\npoppy moore , 23 , wed sam myers at chelsea register office yesterday . she wore a knee-length white dress and carried a bouquet of white roses . the bride 's father dean died in 2011 aged 43 . bobby moore captained west ham and england in the 1966 world cup .\nkowen , from alberta , canada , holds a toilet funeral for his pet goldfish , top . the young boy cradles the fish before kissing it repeatedly in a heartbreaking move . as the goldfish disappears , kowen realises he will never see top again .\njean-marie le pen , 86 , angered daughter marine , 46 , with racist remarks . he called the holocaust ' a detail of history ' and praised marshal petain . marine le pen accused her father of ` political suicide ' and said she would oppose his candidacy in regional elections in december . now he has pulled out of the race but said his granddaughter should stand in his place . marion marechal-le pen , 25 , has confirmed she will seek the party 's nomination .\nshayna hubers , 24 , is accused of fatally shooting her lawyer boyfriend , ryan poston , 29 , in the face in october 2012 . hubers claimed she was acting in self-defense because poston was shoving and hitting her . but in police interview , hubers told police she gave poston ` the nose job he wanted ' and shot him six times . huber 's attorneys say she shot poston to protect herself .\nnorth charleston police officer michael slager shot dead walter scott . video shows slager standing over scott 's body and checking his pulse . but slager 's wounds to the back do not feature in subsequent accounts . officers also told an internal report that they gave scott cpr . but the video only shows them checking his pulses and standing over him . slager initially claimed that he fired on scott during a struggle for his taser . but his attorney has now said that scott grabbed the stun gun .\nmanchester united beat manchester city 4-2 on sunday in the derby . united are now just one point behind arsenal in the premier league table . louis van gaal is among those in the running for manager of the year . the dutchman has single-handedly raised the sinking ship back to the surface .\nsir bradley wiggins will ride for his eponymous team in the tour de yorkshire . the four-time olympic champion left team sky after paris-roubaix on april 12 . the 2012 tour de france winner was not selected in team sky 's 2014 squad for the race . the tour deorkshire begins in bridlington and finishes in leeds on may 1 to 3 .\nkayla mooney is in her first year of teaching science at danbury high school in connecticut . she allegedly had sexual contact with a male student off campus last year . she was put on paid leave and a warrant was issued for her arrest on tuesday . she has been charged with second-degree sexual assault and providing alcohol to a minor .\nred bull have launched a bid to buy leeds united , according to owner massimo cellino . cellino said majority shareholder eleonora sport was considering the offer . leeds chairman andrew umbers said he was not aware of an offer from red bull when contacted by bbc radio leeds on saturday morning .\nasif malik , 31 , and his partner sara kiran , 29 , were last seen on cctv in dover . they were spotted on a ferry to france and believed to have travelled to calais . thames valley police believe they may have been trying to get to syria . turkish official claims couple have been arrested in ankara and are in custody . family of six have been missing from their home in slough , berkshire , since april 7 .\nfrankie , 24 , from strensall , yorkshire , weighed 18 stone 7lbs . had been a ` fat bridesmaid ' three times . dropped to 12 stone in less than two years . now plans to marry the love of her life luke haynes , 24 . she hopes to wear a size 10 dress at her wedding in the summer .\nsportscenter host britt mchenry has been suspended for one week . she was filmed attacking a woman at a towing yard in arlington , virginia . the 28-year-old was angry that her car had been towed from a chinese restaurant . she insulted the woman 's looks , intelligence and social status . espn has not commented on the suspension . but a senior producer said she was ` anxious to get back to work '\nannual survey from deutsche bank has shown that for the fourth consecutive year , australians pay higher prices for a range of consumer goods and services . a luxurious hotel room in sydney will set you back around $ 1126 per night , $ 640 more than in new york . a two-litre bottle of coca cola also tops the charts in australia at $ 4.30 , 51 percent more than new york .\ndavid letterman told off-colour joke during warm up on monday . he had just opened up questions to the floor when he made the joke . he was met with stunned silence from the audience . several audience members branded it ` disrespectful to women ' letterman is set to retire from the late show on may 20 .\nmanchester city 's under 18s side lost 3-1 to chelsea in the fa youth cup final final first-leg on monday night . city captain vincent kompany , manager manuel pellegrini and head of youth development patrick vieira were in attendance . chelsea 's tammy abraham fired the visitors ahead in the seventh minute . isaac buckley and dominic solanke scored for city .\ndonald trelford 's son ben was born at 73 and his daughter poppy at 76 . the former newspaper editor says he is the oldest living british new father . he says the physical effort of coping with young children is demanding . he takes daily walks and uses an exercise bike to keep fit .\n26 minutes news satire follows ` jeff randl ' who travels to switzerland to compete in xtreme verbier . video has received more than 300,000 views on youtube since late march . some viewers said they were offended or did n't find the humour in the show 's depiction of americans on the slopes in switzerland .\ngeorge clooney and amal clooney expected to host star-studded party . the actor and his human rights lawyer wife are understood to have invited friends to their mansion on lake como . the party is a belated celebration of mrs clooney 's 37th birthday in february .\njon bon jovi has sold his soho apartment for $ 37.5 million . the duplex has five bedrooms , five-and-a-half bathrooms and two kitchens . the 51-year-old bought the property in 2007 for $ 24million . in 2010 he reportedly placed it on the market for $ 45m but then pulled the listing .\nvivienne garton , 65 , was left devastated after her dog was stolen . west highland terrier ben was snatched from her garden in bristol . she put posters up near her home but received two phone calls . one man threatened to cut up the dog unless she paid # 500 .\nthree men accused of murder were pushed onto barren hilltop by taliban . they were handcuffed and blindfolded , before being shot in the head . hundreds of locals gathered to watch the horrific execution in eastern afghanistan . taliban said the men had been found guilty by an islamic court . meanwhile , 33 people have been killed and 100 injured in a suicide bomb attack in the eastern afghan city of jalalabad .\neverton host southampton at goodison park on saturday -lrb- 3pm kick-off -rrb- romelu lukaku will have late fitness test for everton after withdrawing from belgium squad . steven davis is a doubt for southampton after suffering groin injury on international duty with northern ireland . everton have failed to score in three of their last four premier league matches against southampton .\naubrey de grey , 51 , says ageing is a ` disease that can and should be cured ' he believes there is no reason why any of us should n't reach 500 years of age . his theories have gained him some high-profile supporters in silicon valley . paypal boss peter thiel donated # 2.4 million to de grey 's anti-ageing institute . google co-founders larry page and sergey brin have also donated .\npaul downton was appointed managing director of england and wales cricket board in october 2013 . downt on made the big call to sack kevin pietersen and reappoint peter moores as england coach . ecb board members unanimously voted for downton to be sacked on wednesday .\nchinese government releases five young feminists on bail . the five activists on women 's rights -- aged from 25 to 32 -- were picked up by police . they had been planning a campaign against sexual harassment on public transportation . the women are still considered suspects in an ongoing criminal investigation .\nnic newling , 28 , struggled with an undiagnosed bipolar disorder between the ages of 13 and 18 . he was diagnosed with bipolar disorder after moving between doctors and psychiatric wards . his brother , christopher , died of a suicide in 2012 , which helped put his life back into perspective . now , nic is using his story to raise awareness of mental illness .\nsome australian tech experts say the apple watch is not worth buying . they believe consumers should wait for the second generation version . the first version of the apple watch is missing key features such as gps and a long lasting battery life . the apple watch 1 is expected to go on sale on friday in nine countries .\nsarabi was dropped from musher laura allaway 's team during the iditarod on march 21 . the three-year-old dog was then seen near glenn highway around april 15 before being spotted in palmer . she was spotted again last friday and on monday she was caught by reverend tim carrick 's family . carrick and his family set up a cage trap in the woods between the church and his home and used four bowls of dog kibbles , a pot of chicken stock , liverwurst and a motion activated camera to capture sarabi . sarabi 's only apparent injury was a porcupine quill under the eye which was removed following her capture . she will be reunited\nlee rigby 's fiancee aimee west , 24 , is said to be in a relationship with major paul draper . the 51-year-old is a former comrade of the murdered soldier . major draper was a mourner at her fiance 's funeral two years ago .\nthe body of andrew getty was discovered in a bathroom at his # 2.6 m villa . he was the 47-year-old grandson of john paul getty , once the world 's richest man . andrew was an heir to the vast getty oil fortune .\nthe blue jellyfish-like creatures are washing up across oregon , california and washington thanks to strong winds this time of year . they are covered in sand on beaches including seaside , manzanita , astoria and rockaway beach . the small blue sail on their bodies allows them to stay in the sea during normal winds , but they are weak to the strong winds .\ncdc says listeria outbreak dates to 2010 . blue bell creameries recalls all its ice cream , frozen yogurt , sherbet and other frozen treats . the bacteria can cause serious and sometimes fatal infections . the cdc recommends consumers do not eat any blue bell brand products . . three people in kansas have died in the past year .\nfreddie gray , 25 , died sunday after he ` had his spine 80 percent severed at his neck ' during an arrest in baltimore last sunday . the justice department said tuesday it has opened a civil rights investigation into the death . baltimore police officials , meanwhile , released the names of six officers who were involved in the arrest and the van transport of the 25-year-old and who 've been suspended pending an investigation . hundreds of residents took to the streets of west baltimore on tuesday evening to protest the police force in gray 's name .\nfred hatch had bought his wife 50 yellow roses for their golden wedding anniversary . he told her ` each one is for a year of happiness ' but was killed two months later . his wife enid , 70 , said the memory of the bloody scene will ` stay with me forever ' alan rogers , 73 , was sentenced under the mental health act and told he may never be released .\nthe five-year-old palestinian boy attacked six heavily armed police officers . he was wearing full combat gear as he launched a series of missiles at them . the attack came as violence erupted during a rally in the west bank . more than 100 protesters used catapults to fire rocks at the israeli forces .\neugenie bouchard was beaten 6-3 , 6-1 by lauren davis at the family circle cup . davis won nine of the final 11 games of the match to pull off the upset . bouchar has lost three of her last five matches to lower-ranked opponents .\n` seven ' fell from a building in zetland , inner-east sydney , last month . the six-month-old cat had maggots in its mouth and was covered in blood . it had also sustained broken jaw , broken leg , broken hard palate and bruised lungs . it was taken in by a local vet clinic who shared its story on social media . since then , many have donated funds to help pay for the cat 's medical bills and surgeries .\nsouthampton host tottenham in the premier league on saturday . saints boss ronald koeman has called for his players to show more common sense after speculation about victor wanyama 's future . koeman says he will not be enforcing a media ban to keep his players out of trouble .\nu.s. secretary of state john kerry and iranian foreign minister mohammad javad zarif met monday for the first time since world powers and iran sealed a framework agreement on april 2 . they now have little more than two months to meet their own deadline of june 30 to sign a comprehensive accord . the obama administration moved on two fronts today to advance its nuclear diplomacy with iran , with talks between top u.s and iranian diplomats at a united nations conference in new york .\nwest ham have announced a new five-year kit deal with umbro . everton and hull also have new deals with former england kit makers . umbro produced first-ever west ham replica kits in the 1960s . hammers wore umbro kit when bobby moore lifted the european cup winners ' cup in 1965 .\nbelardo won the dubai dewhurst stakes at newmarket on saturday . the colt looks more likely to head to the french 2,000 guineas . trainer roger varian has not lost faith in belardo . the son of lope de vega beat only one home in saturday 's greenham stakes .\nmark selby won the world snooker championship at the crucible in 2014 . no first-time winner has retained his title the next year . selby will face kurt maflin in the first round on saturday . jimmy white has tipped selby as one of his ` three to watch '\nlabour leader ed miliband will pledge to ` restore britain 's commitment ' to the eu . he will accuse david cameron of ` taking britain to the edge of european exit ' mr miliband has all but ruled out a referendum on europe , saying it is ` very unlikely ' there will be a transfer of powers to the european union that would trigger one .\nnigel farage is campaigning for the south thanet seat in kent . polls show he is trailing tory craig mackinlay by 1 % in the general election . mr farage has asked his supporters to help him regain the momentum . david cameron and nick clegg were also snapped on the campaign trail .\nidentical twins share 100 per cent of their genes , meaning it has been impossible to tell which sibling a sample comes from . but researchers at the university of huddersfield have created a technique which they claim can distinguish between the genetic fingerprints of identical twins . they have created an method of heating dna until its bonds break . this allows them to identify minute differences between twins . the more hydrogen bonds present in dna , the higher the temperature needed to melt them .\nsan antonio spurs beat houston rockets 110-98 on wednesday . spurs are now second in the nba 's southwest division behind memphis . memphis drew level with rockets by inflicting new orleans ' heaviest defeat of the season . atlanta hawks beat brooklyn nets 114-111 to complete season sweep . cleveland cavaliers beat milwaukee bucks 104-99 to clinch central division title . dallas mavericks eliminated phoenix suns from playoff contention .\nlongest cantilever bridge in the world officially opened in china this week . the horseshoe-shaped glass walkway in chongqing extends 87.5 ft from a cliff edge . it is the world 's second-longest cantilver bridge , beating arizona 's grand canyon skywalk by 16.4 ft. located in longgang national geological park , it is named yuanduan , meaning ` at the end of the clouds '\ntattoo-loving soldiers in the u.s. army will soon be able to get inked on their arms and legs thanks to changing rules . ink may extend all the way to the wrist once the rules go into effect . regulations about the size and number of tattoos are also set to be dropped .\nformer test and one day captain richie benaud has passed away . he was known for his mastery of commentating on the cricket pitch . his trademark word , ` marvellous ... ' , will forever be linked to the cricket legend . he once described the scene on the field as ' a carpet of humanity '\nformer atletico madrid and barcelona striker david villa was invited to ring the opening bell for the new york stock exchange . the 33-year-old joined the newly formed mls outfit this season . he has so far scored one goal in two appearances for new york city fc .\nlucy garrod , 27 , was left partially blind in her right eye after bacteria began growing underneath her contact lens , causing an ulcer known as a corneal abrasion . she feared she would not be able to complete the last year of her photography degree . but she learned to take photographs with her left eye and passed with first class honours . she spent a week in hospital , where doctors broke the news that she had lost sight in her eye . but laser eye surgery was later able to restore her sight . miss garrod had worn contact lenses for 12 years with no problems . but one day she woke up with an itchy and irritable right eye .\navastin , used in several other cancers , gives women four months ' extra life . drug plus chemotherapy has now been licensed by european regulators . patients will have access via cancer drugs fund until it is considered for nhs use . nearly 3,000 women are diagnosed with cervical cancer in the uk each year .\nsalvina formosa has been taking part in step classes to improve her fitness and strength to walk after tripping over on an uneven footpath . the 101-year-old widow now does weights and sit-to-stand exercises several times a week . the western sydney local health district 's community-based program stepping on is designed to improve strength and balance in elderly people .\nsawyer sweeten shot himself in the head while visiting a family member 's home in texas on thursday morning . his manager , dino may , said there were no signs of trouble prior to him taking his own life . the teenager played geoffrey barone on everybody loves raymond , while his twin brother played michael .\nraheem sterling was seen at liverpool 's melwood base on wednesday . the 20-year-old arrived just seconds after team-mate jordon ibe . ibe was also pictured holding a shisha pipe at a london cafe . sterling is expected to meet brendan rodgers on thursday . the liverpool forward was caught on video inhaling nitrous oxide .\ndavid and sandra greatrex , 53 and 52 , from plymouth , were harassed by david 's sister . ann duffy , pretended to be her now sister-in-law and cancelled her brother 's wedding . she used a fake email address to set about jeopardising the couple 's plans . the couple have spoken about their family feud on channel 5 documentary , family secrets and lies , which airs tonight .\nprince harry visited wuggubun in western australia on monday . he is currently on a month-long secondment with the australian defence force . he was spotted by locals during a training exercise and posed for photos . he will spend the rest of the month in sydney and perth .\nmodel , 34 , models new collection for online fashion retailer dafiti . shot in são paulo , the campaign shows off her latino style and golden tan . alessandra is no. 8 on forbes list of top-earning models . she has been cast in the sequel to teenage mutant ninja turtles movie .\nisis militants have imposed a new law in their syrian stronghold of raqqa . they are threatening to jail anyone caught wearing skinny jeans or having music on their mobile phones . terror group said it would also imprison anyone caught smoking or turning up late for prayer in further draconian crackdowns . violators will be jailed for ten days , during which time they will be made to take an ` islamic course '\njosh warrington faces vinnie jones in leeds on saturday . the featherweight is quickly becoming one of britain 's best-supported fighters . sportsmail looks at some of the other celebrities that have added some sparkle to ring walks . justin bieber , liam gallagher and nathan cleverly among those to have been involved .\nengland need to react to australia 's decision to drop their policy of not selecting their best players if they are playing overseas . stuart lancaster must be free to pick his best players , no matter where in the world they ply their trade . the game is changing and australia have realised that . matt giteau and drew mitchell , for example , are top-class performers for toulon .\nengland skipper alastair cook scored 76 in his first innings of the second test against west indies . cook played a strong innings , particularly in the first hour of it . the england captain left the ball outside off stump and made the bowlers come to him , but drove when the option arose . jonathan trott looked calmer as his innings progressed . the more he played like he belongs in tests , the more he looked like he was back .\nbarry lyttle , 33 , pleaded guilty to recklessly causing grievous bodily harm . he will now be sentenced in sydney 's local court , where the maximum jail term is two years . patrick lyttle was left in a coma after he was allegedly struck by his brother in kings cross in sydney on january 3 . patrick , 31 , was rushed to hospital and spent six days in a induced coma . he has made a ` fantastic recovery ' and has called for charges against his brother to be dropped .\nsabra dipping co. is recalling five batches of classic hummus . the company said the total number of containers in the recall comes to ` approximately 30,000 ' the company has not yet received any sickness reports . the recall is a voluntary measure . customers will be refunded if they return the products to stores .\nlithuanian talk show an hour with ruta claimed norway is stealing foreign children . it claimed that foreign children were being seized and fostered with norwegian parents . the programme claimed the move was to tackle ` the highest rate of inbreeding in the world ' norway 's child protection service -lrb- barnevernet -rrb- argued that it was deliberately targeting lithuanian children which were seen as a ` sought-after commodity '\nscientist fergus simpson from university of barcelona calculated the minimum size needed for intelligent life to survive . he applied a mathematical formula to assume aliens obey the same laws of conservation of energy as animals on earth . and from this , he calculates that if intelligent extraterrestrials exist they will typically weigh 650lbs -lrb- 300kg -rrb- - the median weight of a polar bear . but the calculations do n't take into account an alien planet 's surface gravity .\npulaski county sheriff jim davis announced the arrests of ashley jennifer white , 30 , and paul thomas , 32 , thursday afternoon . their 5-year-old son , noah thomas , went missing from their home in rural dublin on the morning of march 22 as his mother slept with her infant daughter . after an intense-five days search , the child 's body was found in a septic tank on white and thomas ' property . white andthomas were each charged with two counts of neglect and abuse involving noah and his baby sister .\nshadow business secretary says ukip ` hates modern britain ' and is infected with the ` virus of racism ' comes after nigel farage was accused of having a ` problem with race ' by labour 's chuka umunna . mr umunnna said ukip had ' a problem with race ' , following his remarks last week about ` fully black ' and ` half black ' ukip supporters .\nlouise shepherd was hiking in madidi national park in north-west bolivia . a tree toppled onto her during a storm and she was killed instantly . ms shepherd , from cobham , surrey , had taken a ` gap year ' off work . she was travelling around the world with her sister and college friend .\n16-year-old boy admitted trying to buy abrin online from undercover police . the toxin is 30 times more deadly than ricin and can cause serious harm . teenager from mossley , greater manchester , will be sentenced later this month . the dark web is a subsection of the internet that does not show up in searches or on social media .\nwesley burton was killed in a hit-and-run in the early hours of saturday morning . the 36-year-old worked at kpfa in berkeley , california , and was driving home from work . a white dodge charger crashed into his silver mercury and fled the scene . his wife lucrecia has made a tearful plea for anyone with information to come forward . burton had three children - santiago , enrique , and samaya -- aged between 4 and 9 .\nthe idea that the most popular antidepressant drugs raise serotonin levels in the brain is nothing more than a myth , psychiatrist professor david healy argues . he suggested that the success of so-called ssri drugs -- which include prozac and seroxat -- was based on the ` marketing of a myth ' other psychiatrists have refuted the professor 's claims , saying the profession has moved on from a simplistic description of the pills correcting a chemical imbalance .\njoshua malatino was accused of stalking and harassing a rival ice cream truck driver in gloversville , new york . the driver of mr. ding-a-ling said malatinos offered him free ice cream and shouted , ` you do n't have a chance , this is my town ' malatini and his then-girlfriend , samantha scott , were charged with harassment and stalking . the case was thrown out this week .\nmario mandzukic was involved in a physical battle with daniel carvajal . the real madrid defender appeared to move his mouth towards mandzukic 's arm . the atletico madrid striker has denied the claims that he bit carvaja . atletico travel to galicia to face deportivo this weekend in la liga .\nauthorities said in a news release thursday that thomas k. jenkins of capitol heights , maryland , was arrested last month by deputies with the prince george 's county sheriff 's office . from september 2014 to february 2015 , jenkins allegedly carried out 18 commercial robberies in dover , delaware . police say jenkins had cut a hole in the roof of a commercial business in maryland on march 9 and deputies arrested him as he fled . a car was found behind a building where a robbery took place and led deputies in maryland to consider jenkins as a suspect .\nsusie clark prayed for a diamond at crater of diamonds state park in arkansas . a teardrop-shaped diamond was found in the plowed field . it 's the 122nd diamond found at the park this year . visitors can keep what they find at the state park 's 37.5-acre search field .\nchinese experts say north korea may already have 20 nuclear warheads . could also have the capability to produce enough weapons-grade uranium . this would double its arsenal by next year , according to the wall street journal . previous us forecasts of between 10 to 16 bombs were also underestimated .\nqpr striker charlie austin has scored 17 premier league goals this season . austin is yet to receive an international call-up for england . harry kane , daniel sturridge and danny welbeck are ahead of austin in roy hodgson 's pecking order . there was a clamour for grant holt to be named in the england squad during his time at norwich .\nmay pat christie , 51 , is a managing director at new york city finance firm angelo gordon & co. . she quit her $ 475,000-a-year job this week to spend more time with family . move could be a sign that chris christie , 52 , is planning a 2016 presidential run .\ncaster semenya reclaimed the south african 800-meter title on saturday . the former 800 world title-holder won in 2 minutes , 5.05 seconds in stellenbosch . semenyas is looking to qualify for the world championships in beijing in august .\nextremist islamist group hizb ut-tahrir has ` big uk support base ' it has reportedly joined forces with al-qaeda franchise nusra front . around 100 members attacked activists in eastern aleppo last week . several british men linked to isis are known to have been in contact with the group while studying at uk universities .\nbrandon wyne was in the backseat of a car driven by courtney griffith , 18 . they were pulled over for a broken tail light in virginia on january 10 . when officers approached their car they claimed to smell marijuana . they ordered everyone out of the car and wyne agreed to comply . but he was pepper sprayed and tasered . video shows him screaming ` i 'm 17 years old ! stop ! ' before video stops . officer allegedly tried to delete the video but failed .\nshane and jaimie o'byrne received fine after taking newborn out . ticket fell on floor just underneath driver 's seat in march 2013 . couple sent letters to chichester district council explaining what happened . but they were not let off the fine and had to pay # 400 in court . row escalated from # 25 fine to bailiffs knocking on their door .\nu.s. secretary of state john kerry and britain 's foreign secretary philip hammond are still in switzerland for talks . speculation was swirling on wednesday afternoon that representatives from the six countries , including the u.s. , were on the verge of making a deal . president barack obama 's spokesman refused to give reporters an update on the status of the meetings or scheduling , saying he would leave those announcements to negotiators . but he confirmed that ` the sense that we have is yes , that the talks continue to be productive and that progress is being made '\nestate minister has been targeted with graffiti and an election song . she won her wirral west seat in 2010 with a majority of just 2,436 . miss mcvey said she would not be cowered by the ` misogynistic and sexist ' attacks .\naston villa take on tottenham hotspur in premier league on saturday . tim sherwood was sacked by tottenham at the end of last season . the former spurs boss has revealed he is still in touch with chairman daniel levy . sherwood also praised mauricio pochettino for playing young players at tottenham .\nalaa abdullah esayed posted 45,600 tweets supporting isis in less than a year . the 22-year-old from south london posted around 127 messages a day to her 8,534 followers . she admitted encouraging terrorism under the terrorism act 2006 . esayed could face up to 14 years in prison for the offences .\na preservation group says old texas dance halls that for years served as important social centers in rural areas of the state are decaying and closing . about 400 such halls still stand -- many unused and decaying -- but only two traditional texas dance halls continue to operate . the halls were largely built by european immigrants in texas from 1870 into the 1920s .\nben flower is preparing to return to rugby league after a six-month ban . the wigan warriors forward admitted that he regrets his attack on lance hohaia in the super league grand final every day . flower landed a sickening blow on hohaian in front of 75,000 people at old trafford .\nalmeria have named former barcelona defender sergi barjuan as their new manager . the 43-year-old replaces juan ignacio martinez , who was fired on sunday . almeria are in the relegation zone after failing to win in seven straight matches . barj juan will coach almera 's away match at barcelona on wednesday .\nmorgan geyser and anissa weier , both 12 , are being tried as adults for attempted first-degree intentional homicide in the attack on payton leutner . geysers ' attorney applied to have her $ 500,000 bail reduced so that she could get out of jail and seek treatment for schizophrenia and other psychotic disorders . however the waukesha county circuit judge said geyser was a flight risk , and even though she is young , she was capable of plotting a sophisticated plan to murder someone . geyster 's attorney 's now say she is schizophrenic .\neducation secretary nicky morgan said ukip leader nigel farage is ` not my cup of tea ' she said she would question whether she was ` happy to serve ' with the ukip leader . david cameron has urged ukip supporters to ` come home ' to the conservatives . but he stopped short of ruling out having to rely on the eurosceptic party if he falls short of a majority .\nthe medal belongs to frederick george biddulph , who served with the 23rd australian infantry battalion at gallipolli between 1914 and 1915 . fossicker ashley manzie found the medal in an east melbourne park last week . he posted pictures of it to a fossicking forum , which led him to sydney man stephen norton - biddumph 's great-nephew . mr norton says the medal does n't belong to frederick at all , but to his brother lewis william bidduph . frederick never went to war because he lost two fingers blowing up fish .\nlisa morgan altered top of the world roofing website to shame ex-boyfriend . the 40-year-old said she was suspicious when he started going missing . she said she checked phone bill and found calls to another woman . miss morgan said she changed the site to ` stop other women falling for his charm ' but sean meade , 45 , said she is trying to ` ruin his life '\nsammy griner , 8 , is the face of the ` success kid ' meme . his mother , laney , took the photo of him on the beach when he was 11 months old and it was used to create the internet 's most positive meme . now , she is using his fame to raise money for her husband , justin , who needs a kidney transplant and years of subsequent medications . she has raised more than $ 38,000 and is asking strangers to see if they are a match .\nsurvey of 1,000 british companies reveals employers are less likely to hire obese workers . almost half said overweight workers are ` unable to play a full role in the business ' and ` would n't be able to do the job required ' european court case in december ruled obesity qualified as a disability .\nliverpool lost 4-1 at arsenal in their premier league clash on sunday . raheem sterling was involved in the defeat and has not signed a new contract . the 20-year-old has been linked with a move away from anfield . sterling has been criticised for his interview with the bbc . brendan rodgers has said he is confident sterling will stay at anfield .\npictures of gwyneth paltrow on holiday with chris martin have gone viral . the actress , 42 , has the figure of a woman half her age . marysia swimwear brand was started by former ballet dancer/surfer marysie dobrzanska reeves in 2009 .\nmother jones study looked at cost of gun violence in the us over three years . found total cost of shootings is more than apple 's annual revenue . at least 750,000 americans have been injured by guns in the last 10 years . the average cost to taxpayers for a single gun homicide is $ 400,000 .\nac milan host rivals inter milan in the milan derby on sunday . the two sides met in the champions league quarter-final second leg in 2005 . the match was stopped because of flares being thrown on to the pitch . the san siro was flooded with smoke and the match was abandoned .\nmichael gridley , 26 , ran scam to steal # 15,000 of goods from asda in basildon , essex . stock including alcohol , cigarettes and dvds were taken from shelves and delivered . gridley was jailed for 12 months for his role in the scam at southend crown court . but shockingly , he managed to land a managerial role at lidl in romford , essex .\ngreen party pledges to end austerity with a radical # 176 billion a year spending splurge . state pensions would be increased by more than # 60 a week , child benefit doubled and tuition fees scrapped . party also pledges to pump an extra # 12billion a year into the nhs from day one . but manifesto also reveals a host of left-field pledges - including a ` complete ban ' on cages for hens and rabbits .\ntrussell trust claims 1 million people are being fed from food banks in the uk . the figures were seized on by labour and the tuc as ` shocking ' evidence . but tory benefits chief iain duncan smith dismissed the figures as ` unverified ' he said the best way to help families was to get people into work .\nkatie hopkins wrote that migrants were ` cockroaches ' in the sun . un says she used language similar to rwandan media in the 1994 genocide . zeid ra'ad al husein says it is part of a ` nasty underbelly of racism ' he asks british authorities , media , and regulatory bodies to stop it . comes as migrant boat tragedies in the mediterranean escalate . more than 1,750 people have already died this year making the perilous sea crossing .\nvideo and pictures of ivf babies taken using revolutionary embryoscope technology . technology allows medics and parents to watch the cell dividing . hundreds of parents are now the proud owners of these embryos . the images are also helping scientists learn more about the ivf process .\nnew zealand photographer amos chapple travelled the world with a quadcopter in his backpack between 2012 and 2014 . he took the pictures using cameras fixed to manned drones to capture the stunning views of buildings and communities around the world . but the images are now much more difficult to recreate as authorities have introduced tough new regulations to stop the use of drones for photography .\ntracy stratton said daughter , tianni , suffered physical attacks and verbal abuse . she claims seven-year-old has been left so traumatised she has almost stopped talking and is afraid to leave the house . a psychologist diagnosed tianni with ptsd , she added . ms stratton is now claiming damages from the royal borough of greenwich council .\nactress lorraine bracco said that she was originally approached to play the role of carmela soprano . she said that show creator david chase wanted her to play dr. jennifer melfi , tony 's psychiatrist . bracco , 60 , said she turned down the role because she had already played a mobster 's wife in goodfellas .\nchelsea manager jose mourinho says he talks to god every day . the 52-year-old says he never discusses football with his wife matilde faria . mourinho said he only prays for things in his personal life , never about chelsea . chelsea are currently top of the premier league .\nashton wood raised $ 18,000 online so he and 300 people could destroy his car after jeep refused to pay a full refund for the car or replace it . he claimed the car had suffered 21 separate mechanical problems . the queenslander launched a public campaign last year asking others to help him destroy his vehicle in protest . jeep requested he apologise for criticising them in a national publication but no one would publish it . mr wood will instead read it out on the abc 's ` the checkout ' tonight .\nmarion `` suge '' knight is accused of running over two men during an argument . the incident occurred on the set of a film about the influential rap group n.w.a. knight faces up to life in prison if convicted . the judge lowered knight 's bail earlier this month , to $ 10 million from $ 25 million .\nmet police released images of gang which broke into hatton garden . but only after the daily mirror revealed they were the key to the case . it is unclear why the police chose to keep the pictures to themselves . but the tabloid 's sister paper the sunday mirror claims it handed them to police . detectives now say they have the footage - but have not said when .\na mysterious affliction has killed as many as 18 people in southwestern nigeria . the cases have all occurred in ondo state since april 13 , health officials say . the disease does not appear to be contagious , a state official says . symptoms include headaches , blurred vision , loss of sight and unconsciousness .\nfa chairman greg dyke wants to increase the number of home-grown players in club squads from eight to 12 . graham taylor , glenn hoddle , kevin keegan , sven-goran eriksson and steve mcclaren have signed a letter addressed to dyke . the five former three lions bosses warn the english game will suffer if it blocks the proposals from dyke and the fa 's england commission .\nparis st germain came from behind twice to beat marseille 3-2 in ligue 1 clash . andre-pierre gignac opened the scoring for the hosts after 30 minutes with a superb strike . blaise matuidi equalised for the french champions with a curling effort from the edge of the box . marquinhos scored an own goal to make it 2-2 before zlatan ibrahimovic made it 3-1 . jeremy morel scored an injury time own goal after a poor ibrahimovic free kick .\ndale forrest would drink up to 12 pints a night and ballooned to 24 stone . rugby prop , 26 , from bolton , was worried he would look like a ` beached whale ' next to his friends on holiday . he decided to ditch the booze , give up his favourite fatty readymeals and greasy takeaways and hit the gym . since then , mr forrest has lost 10.5 stone thanks to healthy eating .\ncynthia cheroitich , 19 , hid in her dorm room for two days after the attack . she says al-shabaab militants told her roommates to lie down and read to them in muslim words . kenya 's president declares three days of national mourning for the victims of the attack on a university .\na pilot has blamed one of his passengers for coughing ` incessantly ' during a short flight in the northern territory . the australian air transport safety bureau released its report on wednesday into the ` wheels up landing ' on december 12 , 2014 at jabiru airport , southeast of darwin . the pilot was flying a six-seat cessna 310 aircraft , registered vh-tbe , with two adults and three children on board when he became distracted by one of the passengers . the report also found the pilot was ` relatively new to the c-310 ' and unfamiliar with the plane equipment .\nvirginia 's portsmouth public schools say that their lunches are in compliance with michelle obama 's federal lunch rules . a concerned mother took a photo of her child 's lunch consisting of a dull looking fish fillet , a whole wheat bun , and corn and then posted it to social media this week . portsmouth public school administrators say that the lunch is just bad lighting and bad lighting .\nengland 's top order collapsed in the first test against west indies . ian bell and joe root put on 177 for the fourth wicket . bell hit his 22nd test century to rescue england from trouble . jonathan trott was dismissed for a three-ball duck in the opening over .\nnick loeb says he 's always ` dreamed ' of being a father . he says he wants to use the embryos to have children of his own . the 39-year-old filed a lawsuit last august over the two embryos . he claims vergara wants to destroy them . the couple created the embryos through in vitro fertilization in november 2013 .\nmarseille will listen to offers for midfielder florian thauvin . the 22-year-old has also been watched by chelsea and valencia . tottenham want to offload their fringe players first . mauricio pochettino is unlikely to pursue everton 's kevin mirallas .\nformer doctor faris al-khori found with bomb-making equipment in his flat . officers also found poisonous materials and handwritten notes on how to make a bomb . items were discovered by chance during a fire in his edinburgh flat . al - khori , 62 , pleaded guilty to breaching the 1883 explosive substances act . judge lady wolffe jailed him for three years and four months at edinburgh crown court .\neight teams will compete in the 2015 indian premier league . the tournament is cricket 's richest domestic tournament . chennai super kings are looking to win their third title . the final will take place at eden gardens in kolkata on may 24 . click here for all the latest ipl news .\nu.s. district court judge jon tigar ruled that denying sex reassignment surgery to 51-year-old michelle-lael norsworthy violates her constitutional rights . nors worthy has lived as a woman since the 1990s and has what tigar termed severe gender dysphoria . the surgery could cost taxpayers as much as $ 100,000 .\nrobin van persie is out injured with an ankle ligament injury . the manchester united striker has scored 10 goals this season . juventus and inter milan are interested in signing the dutchman . real madrid , paris saint-germain and barcelona are also interested . radamel falcao is expected to leave united at the end of his loan spell .\npaul warren smith , 61 , was identified as the man in a white marshall independent school district van seen in surveillance video tossing five , 3-week-old puppies over a chain-link fence . the incident occurred just before noon on saturday at the the humane society of harrison county 's the pet place in marshall . all five puppies are healthy and uninjured ; each will be put up for adoption when they are at least 8 weeks old .\nquestions have arisen about the identity of the girl who dr. sanjay gupta helped operate on . gupta helped doctors at bir hospital in kathmandu perform a craniotomy in a makeshift operating room . the girl 's skull was fractured when a massive earthquake shook her neighborhood .\nholidaymakers boarded delayed flight from madrid to manchester . but when they arrived three hours later , they found an empty arrivals hall . passengers claim they were not asked for documents but were allowed to walk through deserted passport control unchecked . schoolteacher clinton lakin , 46 , called the lack of security ` ludicrous ' border force claim that a number of passengers were checked by officers on their arrival into manchester airport .\nspider crabs migrate once a year in the port phillip bay area in southern victoria , piling on top of each other to create a moving mound . the creatures were found at blairgowrie pier but are fast on the move to their proper migration at rye pier in a few weeks time .\nchrissy teigen posted a picture of her stretch marks to instagram . the model and chef said they were from bumping kitchen drawer handles . hundreds of women have since posted pictures of their own stretch marks . the images have been added to the #loveyourlines campaign .\n`` star wars '' is coming to digital hd on friday . the first six `` star wars movies will be available on the new service . the collection includes many special features , including sound effects and behind-the-scenes footage . sound designer ben burtt explains which animals were used to capture the alien sounds .\nmohammed suleman khan , 43 , was sent to prison last april after defrauding taxman . he was exposed after police raided his birmingham home and discovered plans for his own mansion in pakistan , complete with library , cinema and servant quarters . serving inmate khan faced a proceeds of crime hearing at liverpool crown court last week . he must pay back # 2.2 million within six months or face ten more years in jail .\nsampdoria midfielder pedro obiang has been linked with a move to the premier league . the 23-year-old has made 84 appearances for the serie a club since arriving from atletico madrid 's youth set-up in 2010 . obiang is available for around # 6million , with stoke keen to sign him .\nchelsea defender kurt zouma has revealed he hopes to win the ballon d'or . the 20-year-old joined the blues in january 2014 after making 73 appearances for ligue 1 outfit saint-etienne . zouma is hoping to emulate former blues defender and former club captain marcel desailly .\nwigan 's ben flower received a standing ovation on return from suspension . the wales forward punched st helens ' lance hohaia in last season 's grand final . flower said he did not deserve the standing o salute . wigan beat warrington 30-20 in the super league on thursday night .\nbrad and angelina jolie 's 2014 miraval rose has finally reached the high street . the wine has received rave reviews from wine critics . m&s is stocking a limited supply of the 2014 mirval rose for # 18 . the couple married at their chateau miraval estate in august last year .\ngeorgia davis was once dubbed ` britain 's fattest teenager ' she has been lifted from her home in aberdare , south wales , by a crane . a number of roads had to be closed in the neighbourhood as firefighters worked to remove her from her specially-adapted flat . at the height of the operation yesterday , neighbours said there were 12 fire , police and ambulance vehicles at the property .\nannegret raunigk is expecting quadruplets at the age of 65 . she decided to expand family after her youngest child said she wanted a sibling . britain 's older mother , sue tollefsen , from essex , gave birth to freya in 2008 . she said she considered fertility treatment but decided not to push her luck .\ngoogle 's latest update to its android handsets can understand handwriting in 82 languages in 20 distinct scripts . it works with both printed and cursive writing input with or without a stylus . it even allows users to simply draw emoji they want to send . the californian firm announced the tool on its google + page .\nunnamed band from 1960s attended the same paedophile brothel as savile . the group were identified in a secret police intelligence report from 1964 . the document related to a notorious flat in battersea , south west london . savile was known to be a regular visitor in the 1970s .\nqatari investment arm has bought a majority share in coroin hotel company . the firm owns claridge 's , the berkeley and the connaught in london . qatar also owns stakes in barclays bank , sainsbury 's and iag . the country 's royal family is planning to build a # 200million palace in the capital .\nrichard lapointe , 69 , was sentenced to life in 1992 for the rape and murder of his wife 's grandmother bernice martin in manchester , connecticut . last month a court ruled he was deprived of a fair trial for the 1987 killing and on friday , a judge ordered him to be freed on $ 25,000 cash bail . he later described his release as ` wonderful ' and during a press conference he said he 'd always dreamed of going home .\nthe u.s. government will conduct an independent investigation , weinstein 's wife says . president obama praises warren weinstein 's lifelong dedication to service . weinstein , 73 , was killed in a u.s. drone strike , the white house says . he was abducted in 2011 by al qaeda militants in pakistan .\nphotographer gordon jack was covering andy murray 's wedding rehearsal . he fell on a stone in the graveyard as the tennis star was greeted by a media scrum . mr jack was taken to hospital when emergency services were called to dunblane cathedral , where murray married long-term girlfriend kim sears today . he died from complications following a heart attack this afternoon .\ndarren bent joined derby on loan from aston villa in january . bent has scored nine goals in 13 games since joining the rams . the striker is out of favour with new villa boss tim sherwood . bent could still return to villa in the summer if his contract runs out .\nphotographer hernando rivera cervantes captured these stunning images as the colima volcano in mexico erupted . lightning strikes are thought to occur due to the build up of electric charge in the ash cloud as the particles rub against each other . the volcano is one of the most active in mexico and has erupted around 40 times since 1576 . local authorities have warned those living around the volcano to prepare for a possible evacuation .\n8 border guards killed in clashes with militants near the border with pakistan , iranian state media says . three of the militants were killed by iranian forces , the news agency says . a militant group called jaish al adal claimed responsibility for the attack , iranian media says , citing a twitter account .\nanthony robbins is the ` king ' of the self-improvement world . he charges $ 1 million to coach private clients . marianne power attended his unleash the power within seminar . robbins claims to help you ` discover what it is you really want ' marianne has been on a self - improvement mission for the past year . she chose robbins to help her overcome her fear of walking on coals .\nsamuel tushingham , 26 , repeatedly attacked his girlfriend . he dragged her by the hair and threw a toaster at her , court told . but judge bridget knight spared him jail and ordered him to go on a relationship course . she said : ` you are almost too dangerous for me to send you to prison ' he was given a 26-week sentence suspended for 12 months .\nethiopian government confirms 30 citizens were among the two groups . the video shows two groups of men , one in orange jumpsuits and the other in black . the men are killed at different locations in libya , according to the video 's narrator . in february , isis released a video of 21 coptic christians from egypt being executed .\njimmy butler scored 31 points as the chicago bulls beat the milwaukee bucks 91-82 on monday to take a 2-0 lead in their first-round nba play-offs series . klay thompson scored 26 points as golden state warriors beat new orleans pelicans 97-87 . game three is thursday at milwaukee .\nandre gomes has been linked with a move to premier league duo manchester united and chelsea . the 21-year-old says he wants to stay at valencia and ply his trade in spain . gomes says he is ` very happy ' at the mestalla and is not worried about the future .\namanda taylor , 24 , charged with first-degree murder in the stabbing death of her former father-in-law , charles taylor , 59 . taylor 's alleged accomplice , 32-year-old sean ball , was found wounded on the blue ridge parkway in north carolina after the 24-year old woman allegedly tried to kill him . taylor was apprehended last sunday following a brief police pursuit . the widow of two reportedly blamed her father - in-law for introducing her husband , rex , to drugs at age 15 . rex taylor , a former marine , committed suicide last august .\nderby county are looking for a new boss to replace steve mcclaren . paul clement is currently a real madrid coach and works next to carlo ancelotti . derby are hoping to clinch promotion into the premier league via the play-offs . mcclaren 's future will be decided at the end of the season .\nthe body of a 3-year-old girl was found at a las vegas-area hospital . police say the girl 's 17-year old sister was arrested in connection with her death . the parents of the 4-month-old may be in california with five other children , police say .\ntayfun korkut has been sacked as coach of hannover . the club are currently in the bundesliga 's relegation zone . michael frontzek will take over for the remaining five matches of the season . hannover lost 4-0 to bayer leverkusen on saturday .\nnick clegg is touring the country in a bright yellow election battlebus . aides say it is part of a deliberate strategy to get the deputy prime minister out of london to meet normal people . he has pulled pints , sipped cocktails , hurtled down a zipwire and met joey essex . the lib dem leader is currently on around 8 per cent in the polls .\nxue feng returned to his family in houston on friday following his release from beijing 's no. 2 prison . the 50-year-old doctor served all but ten months of his eight year sentence at the chinese prison . xue was detained in november of 2007 and sentenced in 2010 on charges of illegally gathering information on china 's oil industry .\nfish make a collective effort to stay out of the way of sharks in queensland . images show a shoal of fish making way for a blacktip shark swimming in the shallow waters of heron island in queensland , australia . it is thought that the reef shark was not interested in catching a meal , but the fish naturally keep their distance . dr ken collins , senior research fellow and diving officer at the university of southampton , said : ` this is fairly typical behaviour for shoaling fish '\nformer cia director david petraeus pleaded guilty in may to leaking classified material to his mistress paula broadwell . he was sentenced to two years probation and fined $ 100,000 on thursday . he told the court he wanted to apologize for ` the pain my actions caused ' he was not accompanied by his wife holly to the hearing in charlotte , north carolina .\namy , 33 , pretended to trip and fall in front of the couple on the red carpet at the time 100 gala on tuesday . kim kardashian and kanye west were among the big names who turned out for the annual event held at jazz at lincoln center in new york city .\nninian peckitt , 63 , accused of punching patient in face to correct fracture . he claimed he had simply ` digitally manipulated ' the patient 's face . but witnesses said he had actually been hitting him , tribunal told . professor peckitt faces being struck off the medical register .\nafter a night of drinking , your immune system is bound to be weaker . this is because your body is under oxidative stress . this can also happen after smoking , breathing in pollution and even sunbathing . now , for the first time , researchers have shown that higher doses of vitamin e , found in foods such as kale and almonds , can mitigate the stress on immune cells .\ncatalina from america was filmed emptying out the contents of the kitchen cabinets . but when her father tells her to clean up her mess , she vehemently refuses . a heated - and rather cute - argument ensuing . at one point catalina hits her father 's leg in frustration .\n1 in 8 will suffer injuries serious enough that they will need to miss at least seven training sessions or matches . these range from bruises and sprains to fractures , torn ligaments and at worst , concussion and damage to the brain and spinal cord . government wants rugby to be played more at school as part of plans to increase competitive sports . professor allyson pollock said these plans were ` extremely worrying '\napril fools ' day is one of the most popular days of the year for hoaxes . hailo , clear marmite and kim kardashian 's bottom are all ` out ' today . but are they real ? and what about the new phone app and ` yolkless eggs '\nilha de mana is tucked inside a picturesque bay and boasts chalets over the water , air-conditioned rooms to beat the sweltering heat . located off the costa verde , between rio de janeiro and sao paulo , the private island boasts stunning surroundings . with the main residence and four chalet the island - priced from # 2,500 a night - can accommodate eight guests .\nron ingram got caught in a storm off hawaii 's lanai island and spent almost two weeks adrift , surviving on raw fish . in december , he was rescued after he managed to radio for help and was rescued by the u.s. coast guard . but on friday , his boat ran aground on rocks and he is still missing .\nthe bus and train used in the scene lie abandoned in the great smokey mountains in north carolina . the vehicles were used to film a scene in which harrison ford 's character dr richard kimble escapes from a prison transport . the scene , which was filmed using a real train hitting a real bus , cost an eye-watering $ 1.5 million to shoot . the remains of the vehicles have since become a popular tourist attraction .\ncrawley-based acro aircraft seating recently unveiled the design for its new premium economy seat . the ` series 7 ' seats were designed to eliminate the sources of discomfort and provide more space for the occupants . thompson aero seating has come up with a way to make the middle seat a less punishing experience with a diagonal seat . hong kong 's paperclip design may have solved the elbow war problem with a dual-user armrest .\nkyle schwartz , a third-grade teacher in denver , colorado , devised a lesson plan called ' i wish my teacher knew ... ' she asked her students to write down one thing they wanted to tell her , but would n't normally in the classroom situation . schwartz shared some of the notes on twitter , and soon teachers across the nation started trying out the lesson themselves and posting their own results online .\nronnie carroll died two days after getting on the ballot paper for election . he was due to stand as an independent in hampstead and kilburn . mr carroll came fourth in the 1962 and 1963 eurovision song contest . he died following a battle with cancer , during which a friend handed in his nomination papers . electoral commission said mr carroll could still potentially win .\naston villa face liverpool in their fa cup semi-final at wembley on sunday . randy lerner will fly across the atlantic to watch the game . the american has hardly seen villa play in person during his ownership . lerner has been trying to sell the club since last may .\nboko haram militants have killed thousands in nigeria 's northeast . the militants have also kidnapped students , including more than 200 schoolgirls . the u.n. is appealing for $ 174 million to help nigerian refugees who 've fled . the refugees are seeking shelter in cameroon , niger and chad .\nnile ranger has been awol since early in december . the former newcastle striker joined blackpool at the start of the season . ranger says he was put on minimum wage and pay as you play . the 24-year-old says he wants to start a fresh again next season .\nfootage of the brief contest was captured on a property near amber mountain national park on the northern edge of madagascar . it shows the males sizing each other up before one is forced to retreat following a violent battle for the attention of a female chameleon . the video maker , who speaks french , declared it ` bataille du chameleons ' , or battle of the chameelons .\ndistrict attorney ray gricar went missing in 2005 . he left behind a wife , daughter and bank account . his laptop and hard drive were found on the banks of the susquehanna river . the case has been one of the most talked about missing persons stories in the country .\na newly minted $ 2 coin has been released to commemorate the 100th anniversary of the gallipoli landing by anzac troops . the coin has an image of poppies - symbolic of remembrance - among crosses similar to those that mark the graves of fallen soldiers . the words ` lest we forget ' also appear on the coin . one and a half million coins will be released into circulation over the coming weeks .\nbayern munich beat borussia dortmund 2-1 at signal iduna park on saturday . robert lewandowski returned to haunt his former club with a first-half header . the poland international scored his first goal for bayern since leaving in the summer . the win restores bayern 's 10-point lead at the top of the bundesliga .\nkardashian family speak out about their concern for their brother . rob has all but disappeared from the media spotlight in the last year . he is thought to have struggled with his weight gain over the years . his sister khloe has previously revealed that she believes he suffers from social anxiety .\nmemphis depay looks set to leave psv during the summer transfer window . psv technical director marcel brands confirmed interest from ` big clubs ' depay has scored 20 goals in 26 league games so far this season . manchester united are among the clubs interested in signing the dutch international .\nkatie hopkins said boats in north africa ` need pushing back ' and should be ` burned ' former celebrity big brother contestant said : ` why do we take on everyone else 's problem ? ' comments came as up to 900 migrants drowned in mediterranean sea yesterday . she was branded a ` vile racist ' and a ` manifestation of toxic hate ' by people on twitter .\nmatch.com is seeking a ` date explorer ' to help it revolutionise the british dating scene . the lucky singleton will be given a round-the-world ticket with stops in new york , rio de janeiro , rome , stockholm and paris . the chosen candidate will be able to discover all that the dating scene in each city has to offer .\ngulam chowdhury stabbed mohammed afzal 20 times in east london cab office . the 24-year-old had been dating nargis riaz , 22 , for several weeks before the murder . mr afzal had threatened to show intimate pictures of ms riaz to her imam father . he told ms r diaz : ` cut the neck of the man who eyed up his wife ' co-defendant muhammad khan , 23 , was acquitted of assisting an offender .\nthierry henry has called on arsenal to sign a goalkeeper , centre back , defensive midfielder and striker . the frenchman also questioned whether olivier giroud can win the title with the gunners . henry was speaking after arsenal 's goalless draw with chelsea . arsenal are third in the premier league , level on points with manchester city but with a game in hand .\ndavid etzel , 36 , of palm beach county , florida , is accused of biting his mother 's 10-pound shih tzu named cujo and beating it so badly its eye came out of its socket . the 2-year-old dog weighed about 10 pounds . etzel is 6-foot-8 and weighs 385 pounds .\nbeth o'rourke , 44 , of paxton , massachusetts , has spent the past 7 years fighting stage four biliary cancer . on april 16 , the mother of courtney , 11 , and seamus , 8 , lost that fight . in her own obituary , she wrote that she was a survivor and that she loved her life . she also said she hoped to be remembered ` with laughter , love and a good pint '\nmanchester city were beaten 4-2 by manchester united at old trafford . sergio aguero opened the scoring for the visitors before ashley young equalised with a superb strike . marouane fellaini gave the red devils the lead before juan mata and chris smalling sealed victory . mata described the win as a ` massive win ' for united .\nsurvey by planet cruise reveals that women regret their careers more than men . 47 % of women aged over 55 expressed disappointment over their decisions . just 40 % of men admitted to feeling this way . nearly half of women -lrb- 47 % -rrb- admitted that they have suffered from mental illness .\npascal tessier , an 18-year-old eagle scout , has been a vocal advocate of opening the 105-year old organization to gay scouts and leaders . the boy scouts ' new york chapter said thursday that it has hired the nation 's first openly gay eagle scout as a summer camp leader . tessier 's hiring is in contrast to the national scouting organizationís ban on openly gay adult members .\nvolunteer sheriff 's deputy accidentally shoots man in tulsa , oklahoma . robert bates says he meant to use his taser but drew his gun instead . experts say it 's easy to draw and fire a handgun mistakenly instead of a taser . bates ' attorney says he was `` startled '' by the recoil of the gun .\nelderflower fields festival is held in pippingford park in the ashdown forest . the festival is designed for families with children . activities include sports camps , music masterclasses and a spa . the event is free to attend and children go free . the kalakuta millionaires were a popular draw on the main stage last year .\ncournswood house , buckinghamshire , is in ten acres of secluded woodlands in the picturesque village of north dean . it is the former home of enigma codebreaker dillwyn knox , who bought it in 1921 and lived there until his death in 1943 . the current owner , sharon constancon , is related to the leon family who once owned bletchley park .\naaron cruden will miss the world cup after undergoing knee surgery . the 26-year-old has ruptured the anterior cruciate ligament in his left knee . the all blacks fly-half has started 15 tests for the last two years . cruden has refused to give up hope of making the world cups .\nthe incident happened at philadelphia 's 15th street station at 6.40 pm on wednesday . surveillance footage shows a man lose his balance and fall onto the tracks . a man in an eagles jacket runs over and jumps in to help him . other passengers pull them both to safety .\namazon founder jeff bezos is building a rocket company in van horn , texas . blue origin , llc , is the brainchild of bezos , who is worth an estimated $ 35 billion . bezos is also the ceo of spacex , which is based in california . the two companies are competing for a lucrative contract to resupply the international space station . bezos ' company has the goal of sending humans to mars .\ncallum gribbin scores winner for manchester united under 18s . united beat city 1-0 in the ` mini derby ' at altrincham 's moss lane . paul mcguinness ' side are currently second in the premier league . click here for more manchester united news .\nwisden editor lawrence booth takes england to task in his annual almanack . he says the national team have lost touch with the game 's public . booth also criticises the ecb 's handling of the kevin pietersen affair . the editor is also scathing about the decision to sack alastair cook as one-day captain .\nwest ham have won just one of their last 11 premier league games . the hammers lost 2-0 to manchester city at the etihad on sunday . carl jenkinson insists the club are determined to finish in the top four . the defender has enjoyed a successful season-long loan from arsenal .\ndzhokhar tsarnaev is found guilty on all 30 counts in the boston marathon bombing . he is now officially a `` convicted killer '' for the deadly 2013 attack . `` justice has been served today , '' one victim 's family member says . another survivor says she 's standing `` stronger than ever '' because `` he failed '' to destroy her .\nh hemp is used legally in a range of ways - from its seeds to its oils . many touting its health benefits . and now its medicinal properties are being used by pet owners to treat their cats and dogs . there are a rising number of firms in the us that sell biscuits containing cannabidiol extracted from hemp . compounds in the plant have been known to alleviate joint pains , treat mood disorders and even help pets lose weight . research has also suggested that cbd can relieve pain and discomfort in dying pets and calm animals down .\narchaeologists have discovered a new stretch of the great wall in northwestern china . the 6.2 mile-stretch -lrb- 10 kilometres -rrb- is thought to date back more than 2,000 years . nine sections of the qin dynasty great wall have been found over the last two months . the ruins range along the inner coast of the yellow river in gansu province and the ningxia region .\ndeion sanders jr. wrote on twitter thursday that he needed ` hood doughnuts ' almost every morning . his dad deion sanders responded by calling him a ` huxtable ' and saying that he was a ` million dollar trust fund ' son deionsanders jr. later wrote back that he still loves the ` hood 's doughnuts . sanders is said to be worth around $ 40million .\nmailonline travel spoke to experts to debunk some of the myths that exist . pilots do not eat the same reheated chicken or pasta dishes as passengers . the crew use the same toilets as passengers on most planes . piloted and cabin crew sleep in separate rooms on long-haul flights .\ntime 's richard corliss died thursday night in new york city . corliss was time 's top film critic for 35 years . he was known for his critical eye and for his love of all genres of movies . he co-wrote a top 100 list of 100 movies , including `` pulp fiction ''\nthe houses have been on the market for up to two years . some have been heavily discounted , while others have been listed for years . among them is a one-bedroom home in oberon in nsw , which was listed 800 days ago for $ 299,000 . the price has since been cut by 50 per cent . a property in kincumber , north of sydney , went from $ 889,000 to a 55 per cent cut .\ndr sanjay gupta is in kathmandu , nepal , to cover the aftermath of saturday 's deadly earthquake . he performed a craniotomy on a 15-year-old girl who was injured in the 7.8-magnitude quake . sandhya chalise , who lives in a more remote area of the country , only reached kathmandi 's bir hospital two days after the quake and by that point , blood had collected in the top of her brain . gupta said the girl was just one of many people walking through the doors with head injuries at the overstretched hospital .\ngigi , 19 , is one of seven up-and-coming models to model for the magazine 's global fashion director , carine roitfeld . the spread , titled beauty queens : where beauty meets fashion this season , will appear in all 32 editions of harper 's bazaar .\nmanny pacquiao is better equipped to beat floyd mayweather now , says his trainer freddie roach . the pair will go head-to-head in a $ 300million mega-fight in las vegas on may 2 . mayweather is the bookmakers ' favourite for the $ 300m mega - fight .\neden hazard has played 48 games for club and country this season . but belgium star was substituted with 28 minutes to go in 1-0 win over israel . marc wilmots said he felt hazard looked tired after the game . belgium captain vincent kompany was sent off two minutes later .\nmanchester united have not won a derby at home since 2011 . the last time united won at home was in 2011 when wayne rooney scored . united sit above city in the premier league table for the first time in 16 months . manuel pellegrini has branded the last three months of city 's season as ` garbage ' due to poor form .\nkurt ludwigsen is facing 94 sex-related charges . he is accused of kissing , harassing and touching 13 of his players . the 43-year-old was fired from nyack college in new york last month . he faces 44 counts of forcible touching of another 's sexual parts .\nhydrafacials , also known as ` baby foreskin facials ' , are the latest unconventional beauty treatment to be hitting salons in new york . the treatment , which costs around $ 150 -lrb- # 100 -rrb- and uses stem cell from an infant 's foreskin , is currently available in new yorkers .\nlindsey norman spotted the image of jesus in a hot cross bun . she bought the six pack of buns from sainsbury 's in peterborough , cambridgeshire . the mother-of-two said it made her giggle as it is the eve of easter .\nairstrikes target rebel houthi militant positions in three parts of sanaa , yemeni officials say . saudi arabia announced the end of its air campaign against houthi positions on tuesday . but less than 24 hours later , the airstrikes resumed , security sources in taiz say .\ntwo adults and four children were pictured riding on the same motorbike . the family were spotted in san miguel de tucuman in argentina . police are hunting the parents for ` utterly irresponsible and dangerous behaviour ' comes just weeks after a similar pictured emerged of a family of seven . the pictures were posted on social media sites in argentina .\nformer sen. rick santorum said he hoped indiana gov. mike pence would veto his state 's religious freedom law . but pence signed a follow-up bill that made clear the law could n't be used to refuse services based on sexual orientation . santorum said that pence 's decision to sign the bill led to a `` limited view '' of religious freedom .\nshadow cabinet ministers branded 120 industry leaders as ' 1 per cent ' lord prescott suggested signatories were ` tax dodgers , tory donors and non doms ' chuka umunna suggested one , former diageo boss paul walsh , should no longer take over as head of the cbi . 103 corporate leaders yesterday declared that government ` has been good for business '\ngroup of eight contracted workers took a joy ride on ` the super slide ' at the sydney royal easter show on saturday night . five staff members sustained serious injuries after taking a joyride down the 52-metre slide . the slide was closed earlier in the night due to fears the heavy rain would make the slide particularly slippery . the thrill seekers were travelling at such great speeds they were unable to stop eventually running into a barricade at the bottom of the slide .\nnurses at whipps cross hospital ignored gloria ross , 84 , for more than an hour . she spent 30 years in the national health service as a nurse . mrs ross was found with a distorted face when visited by her grandson . but when he asked nurses for help , they said she was ` just tired '\nmiliband 's gesticulation and approach looked as manicured and choreographed as a torville and dean routine . cameron kept a firm hand on the leadership rudder . he made no mistakes but there were no surprises either . farage was diminished during this debate , perhaps the only casualty of the night . sturgeon was probably the best performer of the evening .\nimages show crates of chicken being set alight near the city of aleppo . food was burned after jihadis noticed labels on boxes . suggested birds had been reared and slaughtered in the united states . meat was slaughtered according to islamic law and perfectly fit for consumption . it is believed the meat was destined for the thousands of starving refugees .\njaylen fryberg , 15 , shot dead four classmates at marysville pilchuck high school in october before taking his own life . he had been the subject of a permanent domestic violence protection order that prohibited him from ever having firearms . raymond lee fryberg jr. was arraigned in seattle on thursday , nearly six months after his son killed four students at the school . he is accused of lying about whether he had a restraining order against him when he bought the gun in january 2013 . the order was against him in tulalip tribal court in 2002 by a girlfriend who said he had threatened her , slapped her and pulled her hair .\nkim pappas gave birth in her office toilet and cut the umbilical cord . she then wrapped the baby in a plastic bag and put it in her desk drawer . nobody at ceva logistics in wyandotte , michigan , knew she was pregnant . when two employees went to the restroom they found blood in the cubicle . papp as has been charged with premeditated murder and child abuse .\nmehdi ballouchy opened the scoring for new york city fc in philadelphia . but cj sapong equalised for philadelphia union late on . city have won just once in the mls this season . david villa was forced off with a hamstring injury at half time . vincent nogueira scored a late winner for philadelphia .\ncaroline wozniacki has been preparing for the french open since she was 10 . the dane shared a video of one of her first on court interviews . woznniacki made her roland garros debut as a 17-year-old in 2007 . the former world no 1 has never won a grand slam title .\nwe 're all guilty of snacking but there are some who do it more often than others . femail has worked with dietitian lucy jones to study snacking habits . she identified three tribes of snackers : snack amnesiacs , situational snackers and super snackers .\na top judge in brisbane has said that australia 's surrogacy laws need to be overhauled . justice diana bryant said australian women should have the choice to be paid to be a surrogate mother . she said that because commercial surrogacy is banned in australia , parents are forced to enter into unlawful arrangements overseas . justice bryant said many of the children born to surrogates overseas will never get the chance to meet their biological mothers .\nderry mathews beat tony luis in liverpool on saturday night . mathews saw richar abril twice pull out of a fight due to illness . luis was drafted in after ismael barroso and richar abril pulled out . mathew won the interim wba lightweight title with a unanimous points decision .\nhillary clinton flew back to the east coast on a united airlines regional jet from omaha , nebraska on thursday . she was toting her own luggage and holding on to her own rollaboard luggage on the 3-hour flight . clinton had just finished a three-day presidential campaign swing in council bluffs , iowa . she held a top-secret meeting with democratic party insiders at a cafe just a few miles from the airport .\nhln 's #meforreal is a revealing conversation about the way we present ourselves online . tag your favorite unscripted , unedited , un-perfected moments using #me forreal . see what others are sharing on facebook , twitter and the daily share .\nmarylin stoneman , 64 , stole # 22,650 from her grandmother 's 98-year-old partner . she had been entrusted with his financial affairs after he went into care . but she abused that trust and began withdrawing up to # 200 a day to feed her gambling habit . stonman admitted stealing # 22k but was ordered to pay back just # 1,350 .\nnatalie fletcher 's ' 100 bodies across america ' project sees painted individuals blended into tourist hotspots , forests and ruins . she travels to a certain spot in the country before selecting volunteers - not models - who she then paints . each work takes between 45 minutes and three hours to complete , with her subjects wearing only underwear whilst being painted .\ncelebrities and music lovers gathered on friday in the southern california desert for the beginning of the annual coachella valley music and arts festival . this year 's lineup includes rapper drake , florence and the machine , fka twigs , david guetta , the weeknd , kasabian , alt-j and toro y moi among others . the 16th edition of the festival attracted a massive crowd as festival goers danced around in the sun .\ndettori rode muhaarar to victory in the the aon greenham stakes at newbury . the italian jockey has won six winners in four days as well as three flying dismounts . dettori now has nine winners from 29 rides this season .\nflow ife has created a device that mimics the movements of the aircraft . it can also provide passengers with a way to explore their destination . the headsets are expected to cost between # 300 and # 500 each . qantas is the first airline to introduce virtual reality headsets to its passengers . the technology could help combat problems like air sickness and jet lag .\nstate prosecutors charge zhou yongkang with accepting bribes . he is also charged with abuse of power and leaking state secrets . zhou is the highest-ranking chinese communist party official ever to face corruption charges . he was a member of the ruling communist party 's politburo standing committee .\ngary locke has signed a three-year deal at kilmarnock . the 39-year-old has lost just once in seven games since taking over . locke joined the club as assistant boss to allan johnston last summer . he took control of the team when his ex-tynecastle team-mate quit .\narsenal and chelsea drew 0-0 in their premier league clash at emirates stadium . cesc fabregas returned to arsenal for the first time since leaving for barcelona in 2011 . the spaniard was booed as he operated in the first half alongside nemanja matic . fabrega was booked for a dive on his first return to the emirates stadium since leaving the club .\nambra battilana , 22 , claims hollywood producer groped her at his office on friday . she filed police report on march 27 but did not ` co-operate ' with authorities for four days . it is claimed she and her manager were working behind the scenes to try and land her a film role . but once the ` pipe dream ' came to nothing , she decided to pursue the criminal case . her former lawyer withdrew from the case as he was concerned she was not a ` serious victim ' she was interviewed by manhattan da prosecutors on wednesday , april 1 .\nanti-hillary clinton street art emerged in brooklyn just hours before clinton 's presidential candidacy announcement on sunday . the signs feature portraits of clinton with phrases including ` dont say secretive ' , ` do n't say entitled ' and ` don 's say ambitious ' the street art appears to be a dig at a group of clinton supporters who said it would be on the look out for evidence of sexism in reporting about the democratic politician .\nformer manchester united midfielder anderson was sent off for internacional . the brazilian shoved otacilio neto off the ball in the first half . neto retaliated by appearing to aim an elbow at anderson . anderson has struggled for fitness since his return to brazil . internacion 's fabricio was also sent off after swearing at the fans .\nkell brook watched the premier league darts in his home town of sheffield . the world boxing champion received a hero 's ovation when he was introduced to the crowd . dave chisnall won both of his games in week 10 to move onto 17 points in second place .\neugenie bouchard faces alexandra dulgheru in the fed cup world group play-off this weekend . bouchards declined to shake hands with dulghersu at the draw ceremony . the canadian star has suffered four defeats in her past six matches .\nbecca and dale litchfield had tried two rounds of ivf to conceive . they decided to give up their dream wedding in order to have one last shot . after winning a wedding competition they were able to have the wedding they had always wanted . becca gave birth to twins stanley and darci-mai . the couple are now planning to move to a new home .\nstaff at the rubens eaterie in leuven , belgium , charged mum for bottle warming . gitte denteneer asked staff to warm up milk for her two-month old son lucca . but when she came to pay , she was stunned to find 50 cents had been added . tweeted a photo of the bill , which went viral and triggered outrage .\nalastair cook badly needs runs and wins for england to win series . captain failed in both innings of first test against west indies . peter moores has been forced to defend his captain . england coach insists he will turn things around in grenada and barbados . moores under pressure himself after sacking of paul downton as managing director .\ncindy santamaria - williams claims she and her sister-in-law were beaten by a group of teenagers all because she told them to quiet down during a movie . santamarias-williams said she shushed three girls in the dark theater during fast and furious 7 because they were cursing loudly . police are on the hunt for the teenagers and said that they will face assault charges if caught .\natletico madrid take on real madrid in the champions league on tuesday . diego simeone 's side lost to carlo ancelotti 's side in last season 's final . fernando torres has praised sime one 's coaching style . the striker believes simeone knows his team 's weaknesses .\nbulgaria named europe 's cheapest destination , with black sea resorts offering best value . resorts on its black sea coast offer best value in terms of meal out . research into an imaginary shopping basket of ten typical holiday purchases showed a total price of # 37.39 .\ncarol chandler accused of abusing a boy at st paul 's in barnes , south west london . she is facing three counts of indecent assault and two counts of gross indecency . famous former pupils of the top school include chancellor george osborne . former attorney general dominic grieve was also a pupil in the sixties .\nfloyd mayweather jnr will take on manny pacquiao in las vegas on may 2 . the mega-mega-fight is set to be the richest-ever boxing fight . mayweather is the master of his own destiny and dictated when it would happen . he will earn upwards of $ 180m , pacqu xiao $ 120m , in the fight .\nwalter smith spent two spells in charge of rangers . he has praised stuart mccall 's impact at ibrox . but smith maintains ally mccoist was given little chance of succeeding . mccall has put rangers in the driving seat for second place in the scottish championship .\ndoctors warned benjamin astbury would not survive after he was born . he was born 12 weeks early weighing just 1lb 30z , little more than a bag of sugar . he suffered five cardiac arrests and was born with a bowel problem . had emergency bowel operations and was put into a paralysed state for six days . but he has defied the odds and is now thriving at home with his family . his mother taniya , 36 , said his survival shows ` miracles do happen '\nmanchester united have been monitoring ander herrera 's progress . barcelona have long been interested in the 25-year-old midfielder . manchester city will reject liverpool 's bid for jordan henderson . stoke city are keeping tabs on sporting lisbon striker islam slimani . ben amos could yet return to manchester united on loan . bolton goalkeeper adam bogdan and andy lonergan are out of contract .\nthe tweet was sent from a sydney radio station 's twitter account . it appeared to be from a disgruntled former employee . the tweet was in reference to the station 's former newsreader steve blanda . last week 2ue merged with rival station 2gb . the merger also saw job losses at brisbane 's 4bc station .\nsutherland council are exploring allowing overseas backpackers to camp right on the beach . the council have voted to explore the possibility of allowing campervans to park at allocated locations with ` high tourist appeal ' among these locations are cronulla beach and wanda beach , both in southern sydney . many locals have already had a mostly negative response to the backpacker vans crowding the beachside streets .\nbunkie king has revealed how her three-way relationship with australian actor jack thompson and her sister worked . the 60-year-old 's first meeting with thompson was when she was 15 years old sydney school girl . ms king shocked and intrigued the australian public when she entered into a relationship with thompson , who was twice her age . she also revealed how she shared one man with her sister , 20 .\nstains the dog 's owner filmed his pet having its coat trimmed to resemble a lion 's . the dog 's thick coat was trimmed from the front legs back to the top of its tail . the owner laughs hysterically while filming the dog sitting with two other dogs .\nstephen curry scored 45 points to help golden state warriors beat portland trail blazers 116-105 . curry eclipsed his own nba record for most 3-pointers in a season . he had previously set the mark of 272 in the season finale at portland . pau gasol had 16 points and 15 rebounds as chicago bulls beat miami heat 89-78 .\nthe top gear trio were set to sign a three-year contract extension . james may , richard hammond and jeremy clarkson had planned to stay on . but clarkson was sacked after punching show producer oisin tymon . may revealed he had ordered a rare # 200,000 ferrari 458 speciale . he said the ` groaning draft version ' of the contract was sitting on his desk .\nresearchers have for the first time been able to test how much energy is required to strip an electron from an atom of the radioactive element lawrencium . the rare metal currently sits at the very bottom of the periodic table at the end of a group of elements known as the actinides . but new research suggests the element may have properties similar to sodium and potassium . this may fuel arguments that it would be better placed in the main body of the table .\ntottenham hotspur and chelsea under 21s draw 0-0 at staines town . spurs move up to third in the league behind manchester united and liverpool . chelsea remain eighth in the table . ruben loftus-cheek was forced off injured after 37 minutes . deandre yedlin impressed at right-back for spurs .\npolice in mesquite , texas arrived to find a crashed car burning as the driver lay unconscious behind the wheel . officers ryan nielson and autumn soto managed to get 25-year-old hector valles out of his suv and stamp out his burning clothes . moments later , while nielson , soto and other bystanders were dragging valles across the pavement , the fire in his suv erupted . valles was transported to baylor university medical center in dallas , where he remained hospitalized monday .\narsenal goalkeeper david ospina has won 11 of his 12 games in the premier league . the colombian has displaced wojciech szczesny as no 1 in the gunners ' starting line-up . ospina has kept six clean sheets in those 12 games . the 26-year-old has the highest win ratio of any player to make more than 10 appearances in the league .\ngerman midfielder julian weigl is attracting interest from several european clubs . the 19-year-old has a buy-out clause of # 2.5 million . juventus and borussia dortmund are also said to be keen on a deal . weigl was captain of 1860 munich until he was suspended .\nambermarie irving-elkins was in the stanley mosk courthouse in los angeles to pay a fine on thursday when she suddenly knew she was having a baby . she told a deputy who was in court and told her to stop pushing - but she could not . so he bent down and caught the baby as he was born . the baby boy , malachi , was healthy . he was then taken to hospital , where he met his dad and older siblings .\namelie mauresmo announced she is pregnant on twitter on thursday . the former world no 1 is expecting her baby in august . maures mo won wimbledon and the australian open in 2006 . andy murray and kim sears are set to marry on saturday . murray 's coach will be heavily pregnant as she guides him through wimbledon .\nroyal baby will be announced on twitter first , according to report . news will then be posted on traditional easel behind gates of buckingham palace . prince george was first announced in an emailed press release in 2013 . prince william 's birth announcement was signed by doctors who delivered him . one gambler has bet # 10,000 that the duchess will give birth to a girl .\nmartin ` mad dog ' allen believes it is important for troops to follow order . the barnet manager believes players need to follow orders at this stage of the season . he believes players on the periphery can make the difference between winning and losing . allen won a championship with gillingham and is hoping to soon do the same with barnet .\nbangladesh beat fellow world cup quarter-finalists pakistan by 79 runs . tamim iqbal and mushfiqur rahim scored centuries for the hosts . pakistan could only muster 250 in reply . pakistan will have the chance to level the three-match series on sunday .\nbarcelona star lionel messi has declared he is back to his best after a disappointing and trophy-free 2014 . messi 's misfortune saw the ballon d'or go to cristiano ronaldo for the second consecutive year . the argentine maestro has scored 34 goals in la liga and eight in the champions league this season .\njordon ibe will sign a new five-year contract with liverpool . the 19-year-old has agreed terms on a deal which will keep him at anfield until 2020 . ibe spent the first half of this season on loan at derby county . he returned to liverpool in january and has made a notable impact .\nexeter chiefs beat northampton saints 26-17 at sandy park . chiefs prop tomas francis impressed against saints scrum-half alex corbisiero . francis qualifies for both england and wales but has not yet pledged his allegiance . francis could be fast-tracked through the ranks to face england in the world cup pool match .\nstuart armstrong joined celtic from dundee united in january . the 23-year-old is hoping to win the scottish premiership title next month . armstrong admits he is finally feeling like a celtic player after joining the club . celtic face inverness in the scottish cup semi finals on sunday .\nemmanuel adebayor takes to twitter to pledge his future to tottenham . the 31-year-old has been linked with a move away from white hart lane . adebaysor joined spurs in 2011 from manchester city . he has made just 16 appearances in all competitions this season . the togo international has scored only twice in the premier league .\nprime minister manuel valls revealed ` five ' attacks have been foiled in france . follows arrest of 24-year-old student sid ahmed ghlam on sunday . ghlam was allegedly preparing to storm catholic churches with weapons . he was caught after shooting himself in the leg after killing woman . gham 's profile was similar to three parisians who killed 17 people in january . they murdered staff from anti-muslim satirical magazine charlie hebdo .\ncompanies tittygram and titisign have popped up in russia . both offer to write messages on a woman 's cleavage and take a photo . can cost just # 4 and can be used as an advertising campaign . burger king is one of the first big companies to take advantage .\na 160kg man who fell down a stormwater drain was rescued by 15 firefighters . rescue teams were called to meadowbank in sydney 's west about 11pm on wednesday . firefighters , paramedics and police extracted the man from the hole using ropes and ladders . the man was taken to hospital with injuries to his shoulder and leg .\nnyia parler , 41 , is in hospital in maryland for undisclosed reasons . she is accused of dumping her quadriplegic son , 21 , in a philadelphia park . parler told relatives she was visiting her boyfriend , john ferguson , in maryland . she left the son in the woods with nothing but a bible and a blanket . he was found by a passerby who saw his wheelchair and went to investigate . parlers was initially charged with aggravated assault , kidnapping and neglect of a care-dependent person , and police have now added attempted murder to the list .\ngloucester face a rugby football union hearing over mariano galarza 's selection . the lock was selected as a substitute for gloucester 's game against sale sharks . the rfu said he should have been ineligible for the match . gloucester could be hit with a points deduction for the misdemeanour .\njihadi john is being used to recruit a network of ` misfits ' around the world , police say . isis is ` picking up ' potential fighters among ` very young people and those with mental health issues ' , says assistant commissioner mark rowley . he warns of a ` step-change ' in the scope and scale of terror threats .\na houston father said his daughter was forced to cover up when she wore her rainbow spaghetti-strap sundress to school . jef rouner said his five-year-old daughter was told that the straps of the dress were against the rules . the father said he bought the dress from a mall and previously let her wear it to church .\nresearchers sequenced the microbiomes of yanomami people living in a remote amazon village in venezuela who had not had previous contact with non-yanomami . results show just how modern lifestyles and diets have changed us . the bacteria they found could be potentially beneficial to modern society .\nhull city charged liverpool fans # 50 for their sets last season . stoke fans were charged # 16 for tickets when they went to hull in august . evertonians were charged $ 35 for seats at the kc stadium in december . liverpool fans are planning a protest on tuesday night against the rising cost of tickets in the barclays premier league .\nsocial media experts have found a shocking connection between online traffic in downtown baltimore on monday and activity recorded during last year 's violent protests in ferguson . between 20 and 50 social media accounts active in baltimore on . monday were also used some 825 miles away in ferguson during the peak of last summer 's violence . the firm said the link suggests the presence of ` professional protesters ' or anarchists who are in baltimore and are looking to take advantage of freddie gray 's death to incite more violence .\ncoffee addicts wo n't have to go far for a fix in windsor . two costa cafes less than 500 yards apart , plus costa express in between . latest costa will open on site of former hsbc branch in dedworth . planners said there was no legal reason to refuse .\npolice say a quadriplegic was left in a philadelphia park for more than four days . the man 's mother is accused of abandoning him and catching a bus to maryland . the 21-year-old man is being treated for dehydration , malnutrition and a cut to the back .\nstriker jermain defoe gave sunderland a 1-0 lead with a brilliant volley in the 45th minute . defoe was on target for sunderland after steven fletcher headed home from a corner . newcastle goalkeeper tim krul could not do anything about the left-footed strike . sunderland were the better team and deserved to win the north east derby .\npatsenior spends # 240 a week on food and treats for dogs . she also has to pay # 17,000 for veterinary bills for the animals . the 66-year-old has shared her five-bedroom home in bolton with the animals for more than 30 years . she takes in neglected greyhounds and adopts dogs from pounds . at one stage had 26 dogs living under her roof .\nthe u.s. has the highest incarceration rate in the world . nearly 2 1/2 million americans are in prison . over 65 million people , or 20 % of the country , have criminal records . most disturbingly , nearly 40 % of our country 's prisoners are african-americans . it 's time for policymakers to address this criminal justice crisis head on .\nreal madrid return to la liga action on saturday against malaga . carlo ancelotti 's side drew 0-0 with rivals atletico in the champions league . the likes of cristiano ronaldo , gareth bale and james rodriguez were absent from training on wednesday . isco and alvaro arbeloa were among the players in action .\nhe hearts boss robbie neilson admits there is interest in his players . celtic have placed danny wilson on their list of potential summer recruits . neilson says he will only sell players if it is the right move for the club . hearts have already secured promotion to the scottish premiership .\nmadonna received a barrage of criticism from her gay fanbase . she posted a photograph of former prime minister margaret thatcher on instagram . the 56-year-old pop star thanked the iron lady for her service in the post . but she quickly deleted it after receiving dozens of abusive messages . thatcher enacted legislation that banned ` promoting ' homosexuality in 1988 .\nbetween 2004 and 2013 , the number of passenger vehicle drivers aged 16 to 19 involved in u.s. fatal crashes decreased from 5,724 to 2,568 , per 100,000 people . new safety features in cars and graduate license restrictions are among the top reasons for the dramatic drop in fatalities .\npresident obama says he does n't need congressional approval for the iran nuclear deal . julian zelizer : but history shows that getting congress ' signature might be worth the effort . he says presidents have often pushed for treaties that they knew would cost them political capital . zelizer says the deal would be far more enduring with the imprimatur of congress .\ndemetrious johnson beat kyoji horiguchi to retain his ufc flyweight title . the american secured a submission victory over horiguchi in montreal . johnson successfully defended the title for the sixth time . quinton ` rampage ' jackson beat fabio maldonado for first ufc win since 2011 .\ntwo cnn heroes are among the earthquake survivors in kathmandu , nepal . one , anuradha koirala , rescues victims of sex trafficking . another , pushpa basnet , cares for 45 children whose homes were damaged . several cnn heroes have been assisting in relief efforts in nepal .\nnovak djokovic beat andy murray 7-6 4-6 6-0 in the miami open final on sunday . the world no 1 lost his cool after losing the second set to murray . djokova grabbed a towel from a ball boy who seemed startled by the outburst . the serbian has since issued an apology via facebook to the youngster .\nmario valencia was arrested after a police car slammed into him in a busy office park . police thought the gun valencia was holding was locked and unable to fire . but 10 seconds later , he fired into the air . valencia , 36 , faces 15 charges , including shoplifting the .30 -30 rifle .\ntwo pupils suspended after girl 's drink was spiked with hydrochloric acid . teenager left needing medical treatment after drinking potentially lethal liquid . incident said to have happened during a science lesson at hounsdown school . headteacher julie turvey said they were taking the matter ` very seriously '\ndoctors anthony moschetto , 54 , and james chmela , 43 , were arrested on wednesday . they are accused of trying to have another doctor 's office torched and then hiring undercover officers to have the doctor hurt or killed . investigators found weapons cache in a secret room behind a bookshelf in the doctor 's home in sands point , long island . the drugs , guns and blank prescriptions were used as currency , investigators said . moschettos ' attorney said his client was ` well respected '\nkristen bell , the voice of frozen 's anna , believes that parents who do n't vaccinate their children are putting other children at risk . she says that her own views on vaccinations actually changed after the birth of her two daughters . the house of lies star also talks about her own self-acceptance of her changing body and the hustle of her acting career .\nscandfit 's try size bra claims to take you from a b-cup to a dd in an instant . the # 150 bra has been dubbed ` the boob-job bra ' and comes with four pairs of inserts . the inserts are measured in cubic centimetres , like surgical implants .\nmark o'meara made the cut at the masters for the first time in 10 years . the 1998 champion was one over after the first round but carded a 68 on day two . the 58-year-old american is the third oldest man in the field in 2015 , behind tom watson -lrb- 65 -rrb- and ben crenshaw -lrb- 63 -rrb-\n` screw ' measures an inch -lrb- 2cm -rrb- long and was found in russia in the 1990s . russian researchers believe it is 300 million years old and has been x-rayed . some claim it is proof of a highly advanced lost human civilisation , or even the work of aliens . but experts suggest that the ` screw ' is in fact a fossilised sea creature . the screw-like shape may actually be the reversed-shape of the creature . it may have dissolved while the rock formed around it . some believe it could be evidence of alien technology or even a fossil .\nblanca cousins , 15 , fell to her death from the 21st floor of a luxury apartment block in hong kong . her father nick cousins , 57 , and his partner grace garcia cousins , 53 , were held over alleged ` ill treatment ' of their child . blanca 's birth was never registered and she and her sister did not attend school . couple also being questioned over claims that filipino mrs cousins had overstayed her visa .\nlily melrose is a fashion blogger who has 137,000 followers on instagram . she has come up with 15 style hacks to transform your 2014 wardrobe into 2015 style . read on to find out the diy tips for making your clothes up to date . lily models her updated dress , complete with necklace collar .\ndias costa , 49 , slashed face , arms , and necks of the raiders . burglars fled in a getaway car while dripping with blood . all four men are currently in intensive care . the burglary took place in the cerro norte neighbourhood of cordoba .\ndanny cipriani helped sale sharks to 23-6 victory against gloucester . ciprriani has taken advantage of a free weekend to relax in dubai . sale face london irish , harlequins , newcastle and exeter in the coming weeks . steve diamond 's side are currently seventh in the aviva premiership .\nrosa camfield , 101 , passed away on monday after a long illness . her granddaughter , sarah hamm , posted a photo of her holding her great-granddaughter kaylee to facebook two weeks ago . the photo became an online sensation and has been shared millions of times . rosa 's life story spans four generations of the same family . she was born in 1913 and had three children , five grandchildren and 10 great - grandchildren .\nthe tennis ball was deliberately covered in sharp pins . it was found in ti rakau park , south of auckland , new zealand . tegan peters , 22 , from auckland , was ` shocked ' and ` disgusted ' to find a ball that she thinks was purpose designed to harm animals or children . she took a photo straight away and uploaded it on her facebook page . she then shared it with animal welfare pages in the area to alert people in case there were more of the ` dangerous ' balls out there .\npolitical experts warn of a knife-edge outcome at the general election . a second election swiftly after polling day is ` extremely likely ' , professor paul whiteley of the university of essex said . he predicted a repeat of the disastrous left-wing lib-lib pact of the 1970s .\nmercedes ' lewis hamilton was quickest in both practice sessions for the chinese grand prix . kimi raikkonen was second quickest , with red bull 's daniel ricciardo third . mercedes team-mate nico rosberg was fifth fastest , 1.120 secs off the pace .\nshadow chancellor said he would not allow snp to dictate deal at england 's expense . ed miliband has insisted labour will not form a coalition with the snp . but he stopped short of dismissing a looser arrangement that could prop up labour . more than half of scots plan to back the snp in the general election .\ndavid watson , 46 , was arrested saturday in the murder of his ex-wife , linda watson , 35 , who went missing in 2000 . police say he killed her in a custody dispute over their daughter jordynn . three years later , he killed linda 's mother , marilyn cox , 63 , as she tried to gain visitation rights over her daughter . cox and her neighbor , renee farnsworth , 53 , were also shot dead in the driveway of linda watson 's home . police have only now tied watson to the crime with ` dna evidence '\njason warnock was driving through a canyon in lewiston , idaho , on wednesday . he saw an suv dangling over the edge of a cliff . warnock dashed from his car and scrambled up a hill to the yukon . he then reached in and pulled the driver out to safety .\ngame between the new york yankees and boston red sox lasted nearly seven hours on saturday morning . it became the longest game in team history for both teams . chase headley and mark teixeira hit tying home runs for the yankees in a game interrupted by a power outage for 16 minutes in the 12th . fans used their cell phones to point at the field to help with the lack of light .\nron phillips , 70 , and his wife june , 69 , were attacked on a thomson cruise ship . it is alleged graeme finlay , 53 , beat the frail couple in their cabin . mr finlay claims he was ` ignored ' by the couple and moved to another table . he denies unlawfully wounding mr phillips and causing mrs phillips grievous bodily harm .\nrobin van persie declared himself fit for sunday 's manchester derby . van persie has missed manchester united 's last six games . the dutchman suffered an ankle injury in the 2-1 defeat at swansea . van gaal said last week he did not expect the striker to return .\nreverend andrew dotchin , 58 , was celebrating the end of lent . he was refused entry at the wine bar in ipswich , suffolk . he said he was told there were health and safety concerns . the vicar said he would continue to wear his trademark sandals .\nglynis barber was half of itv 's 1980s detective duo dempsey and makepeace . she is now turning 60 and has changed her diet to stay fit . the actress has dropped a stone in weight and a dress size , gain lean muscle . she has also co-written a book with nutritional therapist fleur borrelli .\nelectoral reform society claims result in 364 seats can be called now . based on current polls and how ` safe ' they were in 2010 . more than 25million live in constituencies where result can already be predicted . some parts of the country more likely to play a role in outcome . 70 per cent of seats in the east of england are considered safe , compared to 10 per cent in scotland .\ntop barrister will use case law dating back 200 years to try to avoid a $ 146 speeding fine . tony morris qc is mounting a landmark legal challenge against queensland 's speed-camera laws . he says he was n't driving when his volvo was photographed doing 57km/h in a 50km/h zone last year . but he wo n't say who was behind the wheel . he has invoked a spousal privilege case from 1817 .\nderek lyle opened the scoring for queens of the south at palmerston park . lewis kidd doubled the hosts ' lead with a header from a corner . lee wallace made it 3-0 with a deflected shot after 46 minutes . gavin reilly forced an own goal with a low shot from outside the area . rangers remain third in the scottish championship table .\nlandmark developments ltd tore down derelict property in bath city centre . it replaced it with a modern block of 14 flats in a world heritage site . but residents complained that the development was three feet higher and four feet wider than the plans approved by the council . bath and north east somerset council says the developer has committed a ` breach of planning control ' and ordered the building to be bulldozed .\njake drage was taken into custody in june last year following a crash that killed a woman who was riding a motorcycle with her teenage daughter . the 23-year-old surfer said he can not wait to get back in the water . he sang a children 's song for reporters as he left a west java jail nine months after he was put behind bars .\nhodor , played by kristian nairns , is a character in game of thrones . he only speaks one word : ` hodor ' the character may have expressive aphasia , according to penn state medical school . the condition is caused by damage to a part of the brain involved in language .\njose mourinho insists he would sell any of his chelsea players if they did not want to play for the club . raheem sterling has rejected a new # 100,000-a-week deal with liverpool . the england international has attracted interest from arsenal , manchester city and bayern munich . brendan rodgers insists sterling will not be sold in the summer transfer window .\nformer supermodel , 46 , is the face of lindex 's spring 2015 campaign . she has also been joined by german model toni garrn and ethiopia-born liya kebede . the scandinavian brand opened its first uk store in westfield stratford on march 27 .\nzulkifli bin hir was a malaysian member of the al qaeda-linked jemaah islamiah militant group . he was believed to be behind numerous bombing attacks in the philippines . the fbi said on wednesday that bin hir is dead . investigators had a difficult time confirming his death because he was killed in a raid . bin hir no longer appears on the most wanted terrorist list on the fbi 's website .\nrory mcilroy was at a junior event in south carolina when he met brad dalke . the world no 1 was impressed by dalke 's strength and agreed to an arm wrestle . dalke posted a video of the light-hearted encounter on his twitter page . the 17-year-old will join oklahoma university in the autumn .\na new book by former education journalist david turner lays bare the history of britain 's public schools . the old boys reveals the stories of full-scale rebellions and mutinies at the country 's public school institutions . the book was inspired by david cameron 's comparison to flashman in tom brown 's school days .\nqueensland teen who was born a girl but identifies as a boy has been granted the opportunity to go through male puberty . the 16-year-old was born in a female body but felt as though he was living in the wrong body since he was a child . he has been given permission by a brisbane-based judge to receive testosterone injections . the teen has been taking puberty blockers for a year and has worn a boy 's uniform for two years .\nwomen from around the world have been writing letters to convicted australian serial killer ivan milat since he was locked up in a maximum security prison twenty years ago . the milat letters , is a compilation of 94 notes from milat to his eldest nephew alistair shipsey . milat is serving seven consecutive life sentences for the murders of seven backpackers in nsw between 1989 and 1992 . in the letters , he tells shipsey about his ` fair share ' of ` sheilas ' , who write ` some frightening things ' - and one woman who has even proposed .\na museum in kauai is preparing to open a treasure-trove of artifacts from the shipwreck of a royal yacht sunk off the coast of kauai 191 years ago . richard rogers , a hawaii shipwreck chaser , worked with scientists from the smithsonian institution to dredge up the findings from the yacht . the ship was owned by king kamehameha ii , aka liholiho , the second king of hawaii . rogers said the king 's belongings were buried in 10 feet of water and 10 feetof sand . his favorite discovery was a trumpet shell .\na gorilla charged toward the exhibit window and cracked it , a man says . he posted the video to reddit , where it has been viewed more than 1 million times . the henry doorly zoo gorilla exhibit is known to have skirmishes , a zookeepers says .\niran is a difficult place to be gay or lesbian . homosexuality is illegal in iran and can lead to death . refugees from iran have fled the country to turkey . photographer laurence rasti photographed them for a year . rast i hopes her photos spark dialogue .\nalex pritchard put brentford ahead in the 21st minute with a stunning free-kick . derby hit back in the 14th minute through tom ince 's low shot . the bees held on for long periods but missed chances in the second half . darren bent scored in stoppage time to rescue a 1-1 draw for the rams .\nnearly 6,000 migrants rescued in the mediterranean over the weekend . traffickers took advantage of clement weather and calmer seas to dispatch boats . between friday and sunday 5,629 migrants were picked up in the sicilian channel . nine bodies were recovered after a boat carrying more than 150 people capsized off the coast of libya , the italian coast guard said .\nglenna kohl of barnstable , massachusetts spent years in the sun as a cape cod lifeguard and countless hours laying in indoor tanning beds while at college . she was diagnosed with stage iii melanoma just after graduating from a rhode island college in 2005 . three years later , at just 26 years old , glenna would be dead after a painful cancer battle . now , her parents want to raise awareness of the dangers posed by tanning even to the very young .\ndavid muir 's world news tonight has overtaken nbc 's nightly news in the ratings war for the first time in more than five and a half years . nbc 's 288 consecutive week winning run had stetched back to september 2009 and the drop from the top spot comes two months after anchor brian williams received a six-month suspension for misleading viewers . in williams ' continued absence , well-liked veteran lester holt continues to fill in as substitute anchor at nbc .\nearth is constantly oscillating and creates a constant hum that has been likened to the ring of a bell . earthquakes and seismic activity contribute to this ringing , but researchers have now proved ocean waves also play a role . as so-called short waves collide near the surface they create weak microseismic waves , which combine with long , more powerful waves dragging across the ocean 's floor to create the constant hum . during march 2008 two large seismic events took place . but the largest hum coincided with a johanna storm that generated waves of up to 42ft -lrb- 12.8 metres -rrb-\ndriver sam smith was travelling from minneapolis to indiana on business . he was filming the tornado when it swept past just a few hundred yards in front of him . he says on the video : ` this is a tornado and i can not tell which way it is going ' storm prediction center in oklahoma says he should not have backed his car under a bridge .\ngold coast personal trainer ashy bines mistakenly advertised a yearlong program for $ us49 ,500 . the real price is $ 4,950 , or ten times the original price . ms bines apologised to her ` very angry and upset ' followers . she blamed the confusion on an unnamed editor .\na 16-year-old girl was raped by her cousin 's husband and jailed for adultery . the woman , gulnaz , was pardoned and released courtesy of a presidential pardon . she was pressured to marry her attacker after her release . she now has a daughter with her attacker , asadullah .\nlisa heath , 45 , is an assistant at willowtown community primary school . she was found with class b amphetamines after colleague reported it to police . initially denied the drugs were hers , saying they had been planted on her . but she later changed her story , accepting a caution for possession . she has now been suspended from teaching , the school said .\na third man has been charged after raids in melbourne led police to foil an anzac day terror plot . the 18-year-old hampton park man had his preventative detention order removed . he has now been charged with ` conspiracy to commit acts done in preparation for , or planning , terrorist acts ' the five men were arrested in anti-terror raids on saturday in melbourne . police uncovered swords and knifes after searching five teenager 's homes . the men planned to run over a police officer and then kill him with a knife .\nchelsea manager jose mourinho has revealed how sir alex ferguson inspired him to try to be a gracious manager . the portuguese says ferguson showed him ` two faces ' during their first competitive meeting in 2004 . mourinho 's porto knocked out manchester united in the champions league in 2004 , with the portuguese sprinting down the touchline in celebration .\nnigel farage said snp was ` openly racist ' and blamed alex salmond . ukip leader said anti-english sentiment in scotland is ` biggest ' form of racism . he said salmond had made the problem worse and said it was wrong that ukip is called racist . but snp msp humza yousaf hit back at farage 's ` politics of fear and intolerance '\nrodrigo de freitas lake is set to host the olympic rowing and canoeing events during next year 's games in rio de janeiro , brazil . more than 37 tons of fish have been collected , according to rio 's waste management company , but there is still an overwhelming stench . rubbish collectors will continue to rake the decomposing fish off the water 's surface until the mass dying subsides .\n41 million tonnes of ` e-waste ' worth over # 34billion were discarded globally in 2014 . but only 6 million tonnes was recycled properly in the uk and europe . thousands of broken televisions , computers , microwaves and refrigerators are being illegally exported to african countries . they are dumped in landfills like agbogbloshie in ghana because it costs less than recycling them in their countries of origin . transporting broken or expired electronics to africa is illegal but brokers exploit a loophole by fraudulently labelling the items as reusable .\nkate upton reveals she eats lean and green meals every day . only indulges in salty fried food on ` cheat day ' the 22-year-old model is a us size 8 and uk size 12 . she lives by the abc rule : no alcohol , bread or processed carbohydrates .\na monkey was captured on camera snatching a banana from a female tourist . the primate then slapped her gopro when she got too close to it . the video was captured in the thai town of kanchanaburi . the monkey then ate the rest of the banana .\nislamist militants drove cars to a mosque in remote village of kwajafa , nigeria . told locals they were there to teach islam before opening fire on crowds . at least 24 people died in the attack , which was carried out by jihadis . comes as teenagers caught up in previous slaughters are encouraged to draw pictures of the attacks as part of their therapy .\nman , 45 , suffered from arteriovenous malformation for 20 years . had been considered inoperable by other hospitals , including harvard . but doctors at vall d'hebron hospital in barcelona ruled surgery was only option . 27-hour operation reconstructed his neck , mouth , tongue and throat . doctors say it is the most complex face transplant they have ever carried out .\nchris brynarsky was shot and killed in his custom car detail shop in october 2006 . when he was shot , he fell over a bumper he was working on and damaged it . his friend mark cosentino repaired the bumper and wrote an inscription on the inside dedicated to his slain friend before reattaching it to the car . on good friday , john brynarsky was working at his father 's body shop in charlotte , north carolina , when he found the message .\nyoutube invests in `` youtube spaces '' to help `` creators '' create better videos . tokyo space is one of five worldwide available for free to youtube partners . toei is partnering with youtube to encourage more japanese samurai dramas . the goal is to attract new subscribers in one of youtube 's biggest markets .\nizaak gillen , seven months , was taken to hospital on april 6 with a skull fracture while at his babysitter 's oregon city home . he was pronounced dead the next day . the state medical examiner 's office determined the child 's manner of death was a homicide after conducting an autopsy . no arrests have been made in the incident and investigators are still looking into what led up to izaak 's injury .\nryan mason made his senior england debut against italy on tuesday night . the tottenham hotspur midfielder celebrated with a tattoo on his arm . twitter user compared it to a photograph of himself at 12 years old . the tattoo has been retweeted more than 20,000 times . england escaped turin with a 1-1 draw in a friendly .\ncryos international , the world 's largest sperm bank , is moving to orlando , florida . the company is relocating from its offices in new york to tap into ' abundant donor opportunities ' the new offices are located next to the university of central florida . cryos supplies sperm online to all 50 u.s. states and 80 countries across the world . donors can earn up to $ 750 per month , and can be anonymous .\nbrisbane international airport has stepped up bio security measures after exotic mosquitoes were found in baggage . planes coming from south-east asian countries are being routinely fumigated before luggage is removed . the exotic mosquito aedes aegypti is responsible for an annual outbreak of dengue in north queensland . the blood suckers were discovered in the international terminal baggage on february 17 , march 30 and again on march 31 .\nruben navarrette : hillary clinton is trying to make herself seem less of a big shot . he says it 's hard to soft-launch a campaign with a superstar politician . navarrete : clinton 's campaign is disciplined and relentlessly on message . he asks : is it going to work ?\nsouth west trains cancels all services after incident in surbiton area . network rail forced to close a section of track between wimbledon and surbit on the london underground after a person was struck by a train . frustrated passengers packed the concourse as services in and out of the city centre were delayed or cancelled .\nbunny baker cafe in manila serves up customised coffee at no extra cost . owner zach yonzon uses steamed milk and froth as the canvas for his art . he has even etched the face of filipino boxer manny pacquiao into a cup of coffee .\nmanhattan district attorney releases man who was arrested for groping girl . ranulfo perez , 48 , was arrested on sunday for allegedly groping 16-year-old . he was released after police could not be sure it was him in the photo . teenager said she was ` beyond upset ' and the da 's decision was ` disgusting '\nbaby elephant took a tumble as he rushed to catch up with his mother as she crossed a road . the cute calf had been taking a stroll through the bush with his mom at idube game reserve in south africa . but when the baby elephant rushed to . catch her up he appeared to get his leg caught in the grass . eventually he fell over and landed - trunk first - down in the mud .\ndelivery driver was questioned under anti-terror laws . kieron power , 54 , was stopped in a pincer manoeuvre by a pair of police cars . his wife was given a # 110 ticket for parking behind a police car and van . a week later he went back to gather evidence of police vehicles .\nformer fbi director louis freeh nearly died after he was involved in a car crash last summer in vermont . current fbi director james comey and vermont senator patrick leahy spoke about the accident for the first time last week . they say 64-year-old freeh severed an artery in one of his legs and would have bled to death in just 60 seconds if it were n't for the quick response from paramedics and an fbi agent on the scene . freeh told police that he has no memory of the crash , but it 's believed that he fell asleep behind the wheel .\nmigrants are heading to europe from more than 20 countries . eritreans and syrians make up half of the migrant traffic to europe last year . west africans are also making the journey for economic reasons . the number of christians fleeing nigeria has increased . and french intervention pushed them back .\ncompanies including apple and the ncaa have criticized religious freedom laws . but walmart 's opposition to a religious freedom law in arkansas resonated most deeply . the company is emerging as a bellwether for shifting public opinion on hot-button issues . some prominent republicans are urging the party to take notice .\nbob greene says he stopped going to church after his brother died of cancer . he says he 's considered himself a lapsed catholic until pope francis . he 's enthralled by the pope 's approach to life and his tone . greene : pope 's words on homosexuality have reawakened his faith .\nmartyn waghorn was sent off for wigan athletic after a rash kick at dan harding . jimmy abdou came on to score millwall 's second goal in the 75th minute . magaye gueye scored a third goal in stoppage time to seal the win for the lions .\na judge ruled on thursday that marion ` suge ' knight will stand trial on murder and attempted-murder charges following a hit-and-run . the former rap music mogul struck two men with his pickup truck in january , killing one and seriously injuring the other . knight was transported to a hospital from the downtown courthouse on thursday morning .\nflorists in rural georgia are hoping their state passes similar measures to indiana 's religious freedom restoration act . jennifer williams , of jeff davis county , said that she would not sell flowers for a gay commitment ceremony or wedding but ` it does n't mean that i love them any less ' jeff davis county 's melissa jeffcoat said that ` jesus died on the cross for me so that 's the least i could do for him '\nprime minister says daughter nancy likens him to phil dunphy from modern family . pm admits comparison is ` not great ' and admits even his fashion gets the thumbs down from the 11-year-old . nancy has threatened to write a memoir of her time in number 10 .\nthe rspb has found that one in five people have never seen a hedgehog in their gardens . of those who do spot the tiny animals , only a quarter see them frequently . there are thought to be less than 1 million hedgehogs living in this country today .\nraymond billam claimed he could barely walk and needed crutches to get around . but the 40-year-old midfielder played for a sunday league team in south yorkshire . he was filmed running and jumping as he took to the pitch for his pub team . grandfather-of-four admitted benefit fraud and was sentenced to a 26-week suspended prison term .\nmuslim asif bodi and abubakar bhula were pictured praying at anfield . they were praying at half-time in the fa cup fourth round tie against blackburn . the photograph was taken by liverpool supporter stephen dodd . merseyside police are investigating but mr bodi has urged restraint .\nvolunteer firefighters in texas allegedly sexually assaulted a new recruit with a chorizo sausage in january . five men were arrested on sexual assault charges on monday . one of the men 's girlfriends is suspected of filming the attack on her cellphone . fire chief gavin satterfield , 31 , and assistant fire chief william ` billy ' getzendaner , 34 , were suspended by the department 's oversight board following the arrests . they are facing charges of tampering with a witness for allegedly telling the victim to stay quiet .\nreal madrid beat celta vigo 4-2 in la liga . nolito and toni kroos scored for the away side . javier hernandez scored twice for real . james rodriguez scored for real in the second half . real are now just two points behind league leaders barcelona . carlo ancelotti 's side have now won six games in a row .\ncharlotte li , 26 , from london , launched healthy selfie with her husband joe . they took selfies after an over-indulgent christmas left her feeling ` fat ' joe also charted his own success through a series of selfies . the couple then decided to launch the app to help others get in shape .\nprincess beatrice was visiting the maple hayes school of dyslexia in litchfield . the 26-year-old was greeted by a flag-waving crowd of children . it is her second official visit in less than four days and comes after trips to bahrain and florence .\naintree 's ladies ' day has seen over 45,000 people descend on the racecourse for day two of the grand national . seven races make up the day as they saw saphir du rheu take home the betfred mildmay novices ' chase .\nthe dogs were found in manchester , tennessee , on saturday and were rescued sunday by animal rescue corps . the dogs were living in total darkness in a barn without any windows and covered in their own waste . some of the dogs had acid burns from ammonia from their own urine and were close to death . the animals were rescued and taken to a shelter in lebanon , tennessee . the property owner , 64-year-old caroline irby , was charged with 10 counts of animal cruelty .\ntelevision presenter clare balding has married her partner of 14 years . the 44-year-old said she and alice arnold returned to the register office where their civil partnership ceremony was held in 2006 . this time they did not have a ceremony at chiswick house , west london , nor did they invite any guests .\npolitical editor nick robinson has been out of action since march . he was treated for a rare lung tumour and had surgery . he returned to the bbc 's news at six last night . but his voice sounded weak and strained after his treatment . he said he was not ready to return to the campaign trail full-time .\nkent sprouse , 42 , killed officer harry marvin ` marty ' steinfeldt iii and customer pedro moreno , 38 , in 2002 . sprouse was convicted of the murders in 2004 and sentenced to death . he died 22 minutes after being injected . spouse is the fifth inmate to be executed this year in texas .\nana figueroa , 55 , has spoken out for the first time since her son nicholas , 23 , died in a gas explosion on new york city 's second avenue . nicholas was on a blind date at a sushi bar when he was killed in the explosion that destroyed three buildings . his family says that they have not been contacted by the landlord of the building or the city 's mayor . they say they are afraid that their son 's death and its cause will be ` put under the rug '\ncarlton cole and nathaniel clyne attended ` football fighting ebola ' event in london . the west ham striker and southampton right back were in attendance at searcys function rooms in knightsbridge . qpr winger shaun wright-phillips and matt phillips were also at the event .\n10 death row inmates are to be executed by firing squad . the executions were planned for earlier this year but were postponed after several inmates filed legal challenges . the 10 inmates are from australia , france , ghana , the philippines , brazil and nigeria . the philippines ' mary jane veloso is among the 10 inmates to be put to death . . the execution date has not been announced .\ngreece demands # 204billion to compensate it for looting and war crimes . syriza party says germany owes greece nearly 279billion euros . the german government says the issue was resolved legally years ago . demand comes just days before greece is obliged to pay 450million euros .\nfor the first time in 65 years the california department of water resources has found no snow during its manual survey of the land at 6,800 feet in the sierra nevada . governor jerry brown observed the survey on wednesday , which found the lowest water level in theierra nevada snowpack since 1950 . the fourth consecutive year of vanishing snow spells trouble as california depends on it to melt into rivers and replenish reservoirs .\ncassandra fortin , 17 , was diagnosed with hodgkin lymphoma in september . she and her mother argued she did n't want chemo treatments despite the risk of dying without them . the state department of children and families took temporary custody of the teen . the connecticut supreme court ruled in december that she should undergo chemo . the teen has been in remission since march . a judge ruled on wednesday that she must remain in custody until she completes court-ordered chemotherapy for hodgkin 's lymphoma .\nmedia personality deborah hutton is releasing a new cook book of her favourite food recipes . ` my love affair with food ' is a collaboration with the australian women 's weekly . the 53-year-old has previously launched her own wellness website . hutton says she will take salt and carbs any day .\nveterans and morris men take part in celebrations across the country . temperatures reached up to 20c in parts of the country today . forecasters say warm weather will end tomorrow with rain and hail . david cameron said st george 's day was a time to ` celebrate all that was great with england '\nmary kay letourneau fualaau served seven years in prison for having an affair with a student . she and her husband , vili fuala pau , are now married and have two teen girls . abc 's `` 20/20 '' will air an exclusive interview with the couple on friday .\nmarine le pen , 46 , is leader of france 's far-right national front . she was named one of time magazine 's 100 most influential people . she said it shows her party 's brand of political change is getting attention . le pen recently announced she would oppose her father 's candidacy .\ntour guide in the australian outback shows tourists how it 's done . he lies on his back and kicks his legs in the air to lure a mob of emus . the curious birds come close to see what 's going on , then scatter . it 's thought to be an old aboriginal trick to catch an emu .\nkelly believes team sky can win one of cycling 's monuments . sir bradley wiggins will make his final appearance at paris-roubaix . ian stannard and geraint thomas are also in contention to win . luke rowe could also be another british option for the team .\ned miliband has overtaken david cameron as most popular political leader . labour leader has jumped ahead of the prime minister in personal approval ratings . labour party has also taken a commanding four point lead over the tories . the revelation comes in the wake of a furious political row over the labour leader 's personal character .\naccording to his trainer , former professional boxer terry claybon , jake gyllenhaal did 2,000 sit ups a day , 1,000 each morning and the same at night . the 34-year-old lost 30 pounds for 2014 thriller nightcrawler and had to put that weight back on plus 15lbs of muscle for southpaw .\ndeputy prime minister says lib dems will not prop up david cameron in power . he also suggested he would veto a new deal unless the tories agreed new taxes on the rich . but mr clegg defended his record in government with mr cameron . he accused the tories of ` lashing out ' at labour because they knew they could not win the election .\nthousands of newcastle united supporters stayed away from sunday 's home match against tottenham hotspur . protest group ashleyout.com had urged fans to boycott the game . several hundred gathered outside of st james ' park before kick-off . there they called for billionaire mike ashley to quit the club .\nouimette , 75 , was diagnosed with lung cancer in 1996 and sentenced to life in prison without parole . he was reportedly in control of a gangster network responsible for gambling , loansharking , extortion , and murder . he ` ran ' the federal prison in north carolina in the 1970s and even had booze , drugs and lobster dinner smuggled in on a weekly basis . ouimette was known to his associates as ` the frenchman '\n` the sun do shine ! ' anthony ray hinton , 58 , was released from the jefferson county jail in birmingham , alabama , on friday morning . he hugged tearful family members as he walked out and was embraced by his sister , darlene gardner . hinton was convicted of the 1985 murders of two birmingham fast-food restaurant managers . prosecutors said this week that modern forensic methods did not show the fatal bullets came from a revolver in hinton 's home .\nnational front members turned up to campaign for nigel farage in south thanet . the group , the east kent english patriots , were led by gary field . mr field is a former regional organiser for the english defence league . mr farage disowns the group and says he has ` no truck with them '\nukip 's justice spokesman praised russian president vladimir putin . diane james said putin is a ` very strong leader ' who has ` put russia first ' she argued he was forced into invading ukraine because of the eu . ukip leader nigel farage sparked a row last year when he hailed putin as a ` brilliant operator ' for his stance on syrian conflict .\nadam federici made a costly error in the fa cup semi-final against arsenal . the reading goalkeeper spilled alexis sanchez 's shot in extra time . the ball rolled through his legs and slowly towards the goal line . federici left the field in tears as manager steve clarke tried to console him .\njordan spieth won the masters by four shots on sunday . the 21-year-old equalled tiger woods ' 72-hole record . he was also the first man to reach 19-under par at augusta . jack nicklaus hailed spieth and rory mcilroy as the future of golf . the world 's top two players have a combined age of 46 .\nibrox boss stuart mccall wants his team to win at dumbarton . rangers dropped two points at championship bottom side livingston . myles hippolyte and marius zaliukas traded goals in 1-1 draw . mccall 's side have only won once in their last five away matches .\ntaliban claims responsibility for 108 attacks in the opening five hours of the offensive . a us air base near kabul and military outposts in nuristan were targeted . the taliban announced the launch of operation azm , meaning ` determination ' , on wednesday . the group plans to target government buildings and afghan security forces .\nscientists at ucla examined the brains of 90 women , 44 of whom took the pill . found two key regions of the brain were thinner in those taking the contraception . synthetic hormones found in the pill cause these alterations in brain structure and function . could account for increased anxiety and depressive symptoms experienced by some women on the pill .\nborussia dortmund are in tenth place in the bundesliga . jurgen klopp 's side have failed to score in four of their last five league games . dortmund face hoffenheim in the dfb pokal on tuesday . sven bender says his side need to start scoring more goals .\nhillary clinton 's 2016 campaign has reportedly signed a lease for two floors of office space in brooklyn , new york . the hipster-friendly neighborhood is among the most hipster friendly of them all . the building will feature a morgan stanley and a federal prosecutor . clinton chief of staff huma abedin has been spotted walking around the neighborhood and touring the building .\nabdul hadi arwani , 48 , was shot dead in his car on a quiet street in north west london . he was called to a job in the area days before his death . the supposed potential client asked arwani to come back another day . scotland yard is looking into whether the man was a hired killer . arwami was an opponent of syrian president bahsar al-assad .\nnew research suggests that neanderthals may have used wild herbs to flavour their food . scientists found traces of compounds in camomile and yarrow in the hardened plaque of 50,000 year old neanderthal teeth found in el sidron , spain . they say the plants were used to help ward off illness or treat a diease . there is already evidence that they cooked their food and may even have created stews in the skins of animals .\nthousands call on south korean government to raise stricken ferry . the 6,825-tonne passenger ship sank off southwest coast on april 16 last year . most of the victims , high school students , were killed in the tragedy . president park geun-hye has pledged to ` actively consider ' raising the sewol .\nmotorist attempted dangerous manoeuvre after becoming stuck behind hgv . gambled on passing lorry driver , nick townley , at a set of lights . but he badly miscalculated as road narrowed and lost control at 50mph . car ended on opposite side of the road forcing oncoming traffic to slam on brakes . moment was captured on camera by dash cam fitted to the cab of lorry .\nmail on sunday voted sunday newspaper of the year for third year in succession . a hat-trick in the prestigious london press club awards is unprecedented . judges gave the award to the mail on sunday ahead of fellow nominees the sunday times and independent on sunday . literary critic craig brown was nominated this time as arts reviewer of the year .\nfloyd mayweather has shared a video flaunting his wealth on instagram . the video shows the 38-year-old boxer 's fleet of super-cars and carpets of cash . the 15-second video was shot by director james ` jp ' dayap . it surfaces just two weeks before mayweather 's fight with manny pacquiao . the bout is expected to earn mayweather around # 120million for the bout .\ntornadoes and baseball-size hail were spotted across north and central texas sunday night . the storm started sunday evening in comanche county , texas and moved northeast towards the dallas/fort worth area . more than five tornadoes were reported in the region , including a massive funnel cloud seen forming over stephenville . nearly two dozen counties were on tornado watch sunday night through 11pm , with the storm system expected to die out by monday .\ndisgraced dj dave lee travis has claimed his indecent assault trials ` financially ruined ' him . but he will still receive # 4,000 from the taxpayer to pay for his taxis to court . the 69-year-old was convicted of indecently assaulting a woman behind the scenes at the mrs merton show . at a costs application hearing today , the former radio presenter was told he would be awarded travel and hotel fees for his time on trial .\nliverpool take on aston villa in the fa cup semi-finals on sunday . christian benteke will be key for villa in a heavyweight contest with martin skrtel . fabian delph and jordan henderson will be in midfield battle at wembley . raheem sterling will be a threat to ron vlaar and nathan baker .\npurvi patel , 33 , told medics she gave birth to a stillborn baby in july 2013 . she then disposed of the body in a dumpster behind a super target store . police found text messages on ms patel 's phone showing she had taken drugs to induce labor and end the life of the fetus . ms patel has been jailed for 20 years for feticide and neglect of a dependent .\npremier league clubs agreed to pay living wage from 2016-17 season . but man united have decided to implement the salary a year early . chelsea became the first professional club in england to pay a living wage . manchester city are also committed to paying their full-time staff the living wage .\npercy sledge died of natural causes , a coroner says . he had been in hospice care for cancer . his biggest hit , `` when a man loves a woman , '' became a cornerstone of soul music . sledge was inducted into the rock and roll hall of fame in 2005 .\neightth grade teacher tiffany jackson was arrested by police for driving while her licence was suspended . children at her memphis school shared the picture on social media . officials at highland oaks middle school suspended three students . but they later overturned the decision after a backlash from parents . the school 's ` cell phone policy ' bans pupils from using their mobile phones in schools .\njake shaw was volunteering as a climbing instructor at kandersteg international scout centre . the 21-year-old had fallen 25ft from upper floor of building in early hours of august 1 . he was airlifted to hospital in bern suffering severe injuries but died nine days later . shortly before his death , jake had been celebrating swiss national day with friends with drinking games called ` power hour ' and ` ring of fire '\nelliot daly has been named the aviva premiership 's player of the month for march . the wasps centre scored two tries in march . daly looks set to be called into england 's training squad for the world cup . the 22-year-old was educated at whitgift school in croydon .\nhigh court threw out rules introduced to stop violent prisoners being transferred out of high-security jails . policy brought in after fugitive armed robber michael wheatley walked out of an open jail in may while on day release despite a history of prison escapes . ministry of justice today announced they would appeal against the ruling .\nerika langhart died after suffering multiple pulmonary embolisms . langharts say doctors cited the nuvaring as a risk factor . megan henry , a classmate of langhart 's , had a similar scare . henry was training to compete in the olympics in skeleton .\npolice went to a home in balch springs , texas , on march 26 to do a welfare check and were told that a two-year-old child had died and a ` rising ceremony ' had been performed . the ceremony was an attempt to resurrect the child , police claimed , and took place on march 22 . the child 's parents took the body to mexico the following day . police are now investigating .\n434,775 people waited longer than four hours in hospital emergency wards . over the past year , more than 1.4 million people were forced to wait longer than target time . this is compared to just 353,000 in 2009/10 -- the worst on record since 2004 . labour 's andy burnham said the government was the blame for the nhs 's failure .\nnasa has spotted an exoplanet 13,000 light-years away . known as ` ogle-2014-blg-0124lb , ' the gas giant was detected by the spitzer space telescope and the ogle warsaw telescope in chile . it could help astronomers gain a better understanding of the distribution of planets in the milky way . most of the planets we know about are around 10-100 times closer .\na federal judge is expected to approve revised nypd training materials for cadets . the materials include directives to `` not tell or tolerate ethnic , racial or sexist jokes '' and `` not imitate the speech patterns '' of others . the revised training notes are a result of a 2013 federal ruling declaring the nypd 's `` stop , question and frisk '' practice unconstitutional .\ntate ricks , nine , was reportedly fishing with his grandma 's boyfriend when their boat capsized and he was not found at shore . the unidentified man with him attempted to save ricks but could not . the boy is believed to not have been wearing a life jacket , according to investigators . the incident is being investigated as a boating accident and that no foul play is suspected .\nformer england captains andrew strauss , michael vaughan and alec stewart are front-runners for the job . the ecb have not released the job description for the new director of cricket role . the work parameters will not appear on the ecb website or that of headhunters sports recruitment international .\nscientists in california have described how to create artificial auroras on earth . they said a particle accelerator could be sent 185 miles -lrb- 300km -rrb- up into space . it would then fire high-energy beams back at earth 's atmosphere . the beams would create artificial aurora borealis and southern lights on earth 's surface . and it could even create lightning in the atmosphere - but this is only a concept .\nthe 41-year-old australian woman was getting ready for a party on new year 's eve . she reached into her bag for her inhaler , which was uncapped in her bag . she heard a ` coarse rattle ' when she shook it , but thought it was a loose connection . she took a deep breath and immediately felt a painful scratch in her throat . she began coughing up blood , wheezing and became short of breath . she was rushed by ambulance to st vincent 's hospital in sydney , australia . an x-ray showed the earring was lodged in her right bronchus - the airway leading to the lungs . doctors removed the earrings and found large\nchris christie and marco rubio told conservative radio host hugh hewitt that they 'd enforce federal drug laws and block the sale of marijuana in colorado and washington . ` marijuana is a gateway drug , ' christie said , citing an ` enormous addiction problem in this country ' ` and we need to send very clear leadership from the white house on down through the federal law enforcement , ' rubio said .\n` liberland ' is located on the croatia-serbia border on the danube river . it is claimed by vit jedlicka , 31 , a member of the czech republic 's conservative party of free citizens . he says citizens living in ` liberland ' , which is not officially recognised , will be able to set their own individual rate of tax . the land was apparently forgotten when the balkan peninsula split into new countries following the breakup of yugoslavia in the 1990s .\nukip now equal with the liberal democrats in comres survey for mail and itv news . first time since late 2013 that the party has failed to outpoll the lib dems . poll will ease tory jitters with less than a month to go to election day . tories still have 34 % of voters compared to ed miliband 's labour on 33 % .\naxe-wielding teacher was teaching ap physics class in portland , oregon . he was holding cinder block on top of a bed of nails to test force of axe . but he missed his target and swung axe directly into his coworker 's groin . amazingly , the teacher took a second swing and crushed the cinderblock .\njessica mejia was killed in a car crash in 2009 when her ex-boyfriend lost control of the vehicle and smashed into a pole . christina mejia claims that responding deputies undressed her daughter and took photos of her naked at the scene . the sheriff 's office insists that it took the photos in order to gather evidence that ultimately helped convict nicholas sord . sord was sentenced to 56 months in prison last fall for the crash .\nmohamed morsi sentenced to 20 years for ordering arrest and torture of protesters . but court in cairo acquitted him of charges that would have seen him face death . fourteen others were convicted on the same charges , with most also sentenced to jail . morsi , egypt 's first freely elected leader , was toppled by president sisi . his muslim brotherhood has been blacklisted and targeted in a government crackdown .\ngeneral merchandise sales up 0.7 per cent in last quarter . first rise after 14 consecutive quarters of losses . belinda earl , style director since september 2012 , credited with sales success . she is also behind # 199 suede skirt worn by alexa chung and olivia palermo . celebrity underwear ranges by rosie huntington-whiteley and david gandy also helped boost sales .\nbecky schoenig of st. louis , missouri was shocked to learn that her stolen car had been located and returned to her . the brand new 2015 ford fusion had been stolen from her driveway on monday night . on april 1 , police received a tip that the car was located and that it had been returned to schoenigs with new rims and detailing . schoenig took to facebook to thank the thieves for ` pimping out ' her car .\nthe father of dave brockie , the late frontman of the eccentric heavy metal band gwar , has sued the group claiming they have stolen his son 's ashes , guitars and artwork . brockie was found slumped in a chair at his richmond , virginia , home march 23 , 2014 . a medical examiner later determined that the 50-year-old musician died of accidental drug overdose . the lawsuit alleges that the surviving members of gwar swiped brockie 's guitars , artwork , a gold record , tour souvenirs and even his ashes .\nreal madrid and atletico madrid drew 0-0 at vicente calderon on tuesday . both players will miss the second leg at the bernabeu next week . marcelo and mario suarez were both booked and will miss game . suarez has blasted the performance of referee milorad mazic .\ntracey taylor went on a violent rampage following the breakdown of her 20 year relationship . she smashed her ex-fiance 's porsche and his new girlfriend 's bmw . her two daughters were in the back of the luxury cars at the time . she admitted burglary , criminal damage and two counts of common assault . she received a 12-month jail sentence suspended for two years .\nlandslides have exposed trails of dinosaur footprints running along a near-vertical rock face in bolivia . boliva 's cal orcko paleontological site is the result of tectonic activity , forcing earth upwards and preserving the precious trackways . the wall , which is the largest dinosaur trackway in the world , is approximately 390 feet -lrb- 120 metres -rrb- tall and features tracks made by at least eight species of dinosaurs . the attraction , at fancesa limestone quarry in sucre , comprises some 462 trails made up of 5,055 prints .\ncalifornia is suffering from a devastating drought . the state has launched an investigation into how much water farmers are taking from the sacramento-san joaquin delta . the prime suspects are farmers whose families have tilled fertile soil there for generations . delta farmers do n't deny using as much water as they need . but they say they 're not stealing it because their history of living at the water 's edge gives them that right .\nin his first public comments on his wife 's 2016 presidential bid , bill clinton said ` i 'm proud of her ' while on a visit to oklahoma city . he was speaking at a ceremony marking the 20th anniversary of the car bombing that killed 168 people including 19 toddlers at the alfred p murrah federal building in 1995 . hillary clinton launched her presidential campaign last week in iowa and will move on to new hampshire on monday .\nlance corporal leonard keysor served in the trenches of gallipoli in world war i . the 30-year-old was awarded a victoria cross for his 48-hour effort . he threw live , palm-sized , iron grenades back at the enemy to save the lives of his comrades . the victoria cross is the highest military honour an australian can receive . lcpl keysor even caught some of the bombs in mid-air .\ndallas cowboys star greg hardy had to abandon his bentley in flash floods in dallas when it got stuck . the 25-year-old was seen returning to the vehicle to collect some of his possessions before leaving in another luxury car . hardy was suspended by the nfl on monday for 10 games after being found guilty of domestic abuse last year . he was convicted by a judge in charlotte , north carolina of beating , strangling and threatening to kill his ex-girlfriend nicki holder .\nedinson cavani is a target for serie a champions juventus , according to reports . the uruguayan has admitted he is frustrated at being played out of position . manchester united are also interested in signing the striker . cavani 's agent says his client is most likely to move to england or spain .\nking felipe and queen letizia stepped out for the first time since the scandal . they were at the university of alcala de henares to present the cervantes prize . a new book claims king juan-carlos had a decade-long affair . it also claims he contemplated divorcing his wife queen sofia .\nliverpool winger raheem sterling would cost in region of # 50million . everton midfielder ross barkley would command a hefty fee . southampton striker jay rodriguez has not played this season . frank lampard was one of six homegrown players on city 's squad list . city are preparing bids for sterling , barkley and rodriguez .\n` beach body ready ' poster created by unknown internet source . protein world poster caused outrage after being posted on london underground . campaigners and body image campaigners branded it body-shaming . transport for london are removing the poster following complaints . now , a parody has been created showing curvaceous women in a bikini .\nthe a-listers have revealed their beauty secrets . shailene woodley uses roasted beetroot as a lipstick alternative . kate moss submerges her face in cucumber water to perk up her skin . blake lively says mayonnaise is the secret behind her glossy blonde locks .\nmanchester city stars joined 100 local schoolchildren for unveiling of mural . the 64metre mural depicts ` the football effect ' at the club 's academy stadium . players including vincent kompany and gael clichy helped youngsters add the finishing touches to the design .\nmanchester city and manchester united stars dined together on sunday . angel di maria , pablo zabaleta and marcos rojo were among the stars at san carlo italian restaurant . victor valdes was also in attendance along with his partner yolanda cardona . united players had just returned from a 1-0 defeat by premier league leaders chelsea on saturday . city were fresh from beating west ham 2-0 at the etihad stadium .\nzeta beta tau frat members allegedly abused wounded soldiers . one veteran said they spat on him and his service dog from balconies . another said they urinated on the u.s. flag at a retreat in panama city . perry clawson , a former army colonel , protested outside the frat house . he said the members had ` p ***** d off ' servicemen across the country . the university of florida chapter has been suspended and three expelled .\ndeep sea fish washed up on the entrance of otago harbour , dunedin . the serpent like specimen was found by a local man on thursday . the fish is known to swim vertically and self-amputate its own tail . it is thought it was moved by a strong current . otago museum took tissue and organ samples to test for dna .\nliverpool defeated blackburn rovers 2-1 in the fa cup sixth round replay . philippe coutinho scored the winner to send them to the semi-finals . simon mignolet saved from ben marshall in the second half . blackburn goalkeeper simon eastwood was denied in stoppage time .\narsenal host reading in the fa cup semi-final at wembley on saturday . wojciech szczesny will start ahead of david ospina in goal . the polish international has been deposed as arsenal 's no 1 . arsene wenger admits szczezny lost his place to ospina this season .\npatrick o'flynn said ukip needs to ` work harder ' as it is ` lagging ' with female voters . polls suggest around 15 per cent of men are planning to back ukip , compared to only 10 per cent of women . he was forced to defend its ` blokeish ' image under nigel farage .\nphoebe jo chapman , 42 , is accused of having sex with three different male students while teaching at lowndes high school in valdosta , georgia . she turned herself in to police on tuesday and was charged with three counts of sexual assault . the students have all since graduated , but investigators say there were still attending lownde high school when the alleged sexual encounters occurred .\na newborn baby girl was found dead inside a garbage can outside an ohio sorority house last week . it has now emerged the baby was alive when she was born . the child 's mother is a student at muskingum university , but authorities have refused to release her name . it is the second time a baby has died of asphyxiation at the school . in 2002 , the body of a baby boy was found in a dumpster and his mother served seven months in prison .\naround the world auction will take place at christie 's south kensington on 28 april . items include 11 restored photos of captain robert scott 's doomed expedition to south pole . 34-star us flag from the civil war era and a model of a british airways concorde also on sale . items are expected to fetch tens of thousands of pounds at auction .\ngolden state warriors beat new orleans pelicans 123-119 in overtime . stephen curry scored 40 points , including a late 3-pointer . warriors completed a fourth-quarter comeback to lead play-off series 3-0 . chicago bulls beat milwaukee bucks 113-106 in double overtime . cleveland cavaliers beat boston celtics 103-95 in game 3 .\ndylan miller , a senior studying english and philosophy at juniata college , in huntingdon , pennsylvania , decided to live in a hut for his senior project . he hopes living in his hut will teach him about living simply , away from the luxuries of the present day . miller built the hut out of fallen trees , leaves , rope and a tarp . he used oak paneling from a friend 's old barn to create the floor of his structure .\nthe atlanta hawks crushed the brooklyn nets 131-99 on saturday night . al horford and demarre carroll scored 20 points each to help the hawks match a franchise record with their 57th win of the season . paul millsap left the game early after picking up a shoulder injury in the first half .\nthe death of a 20-month-old toddler in central west nsw is being treated as suspicious . the boy was admitted to coolah district hospital on march 23rd after he was struggling to breathe . police executed a crime scene warrant on wednesday and are appealing to the public for any information .\ncolin cromie , 49 , forced nurse xara grogan , 29 , to resign , tribunal heard . he became ` increasingly hostile ' after she turned down his advances . mr cromie would snatch instruments from her in the surgery , tribunal told . he also blamed her for a fall-out with another dental practice , it was alleged . miss grogan was awarded # 16,500 compensation for dismissal and ` hurt feelings '\nrichard iii was depicted by william shakespeare as a tyrannical hunchback . but new research shows he had a slight deformity that would have barely affected his appearance . the last plantagenet king 's skeleton was found to have a distinctive scoliosis of the spine . researchers say the condition was probably not known about until after his death . they say tailoring and specially fitted armour helped to disguise the curve in his spine .\ncyle larin opened the scoring for orlando city in the first-half . kaka doubled orlando 's lead from the penalty spot in the second-half . portland timbers were reduced to 11-men when goalkeeper adam kwarasey was sent off . orlando city are now third in the mls table .\nmisao okawa died wednesday morning in osaka , japan . she was born on march 5 , 1898 . guiness world records says she was the oldest person ever . she left behind three children , four grandchildren and six great grandchildren . she had lived in a nursing home since 1997 .\nthe girl 's family set up a nanny cam thinking that something was happening to the girl . lidia quilligana was arrested in danbury , connecticut last month after police viewed a video that allegedly showed her choking and beating a 3-year-old girl . she was also caught allegedly burning the legs , arms and handsof the girl on a hot stove as she screamed out in pain . quilligana is charged with first degree assault of a child under 10 years old and criminal mischief .\nmary ann diano and dennis krauss were left homeless when the storms hit staten island , new york , in october 2012 . the 62-year-old was swept away by the waves and clung to a tree for safety . she lost her home and moved to a trailer park in connecticut , where she met her partner . the couple have now won more than $ 250,000 in the lottery and plan to buy their dream home together .\na 10 tonne ` fatberg ' was found beneath one of chelsea 's most exclusive streets . the lump , which was 40 metres long , was made up of fat and wet wipes . it was so heavy that it caused the 1940s sewer in chelsea to break . thames water have now been forced to repair the broken sewer at a cost of # 400,000 .\nmarcus bettinelli played in fulham 's 1-1 draw against rotherham united . chelsea manager jose mourinho watched the 22-year-old goalkeeper . bettinelli is the son of fulham academy goalkeeping coach vic bettinelli . thibaut courtois is chelsea 's first choice goalkeeper . petr cech is expected to leave stamford bridge in the summer .\nfour-day easter long weekend will be extended by an hour when clocks go back an hour at 3am on sunday . the time change affects all states except queensland , the northern territory and western australia , where daylight saving is not observed . clocks will spring forward again on october 4 .\nliverpool frontman daniel sturridge has played only twice since suffering a hip injury against manchester united on march 22 . the 25-year-old was challenged to a dance-off by kop kids presenter paisley back in february . sturridge hinted that his next celebration would be a new move called ` feed the ducks '\njanet street-porter posted a picture on twitter of herself with the caption ` just met nicola sturgeon lookalike out canvassing ! ' she had no idea of the outrage her ` light-hearted comment ' would provoke . the journalist has received more than 600 insults from sturgeon 's supporters .\nphilipp lahm has made a full recovery from a broken ankle . franck ribery , arjen robben and javi martinez are all out . david alaba is expected to miss the rest of the season with a knee injury . pep guardiola has warned his players to give 100 per cent . bayern face borussia dortmund on saturday .\nforecasters say temperatures will remain high until friday - and could even hit 21c in london . that would be the hottest day of the year so far , with rome expected to peak at 16c . but there will still be plenty of sunshine on sunday afternoon before the weather breaks .\nlori smith filmed her pooch boomer being repeatedly hit as she lay with her head resting on the ledge of her electronic dog door . with the door jammed , it is seen constantly moving up and down hitting her skull each time . after more than 20 seconds and numerous head taps , boomer appears resting in the same position .\nken doherty is two frames away from going out of world championships qualifying . the 45-year-old is trailing mark davis 8-1 in the third-round qualifier . doherty won the world championships in 1997 . graeme dott is also in danger of missing out on the main draw .\nhippo calf separated from its herd at sunset dam in south africa . big cat leaps on to the hippo 's back and tries to take a bite out of it . but the infant 's angry mother chases the predator away from the scene . the lion and one of its hunting partners are left with dented pride .\nwalton canonry in salisbury is on the market for # 6.95 million . the 8,147 sq ft mansion has six bedrooms , two kitchens and 1.6 acres . it backs onto the meadow where john constable took studies for his 1831 painting of the cathedral . the tate bought the painting for # 23.1 million in 2013 .\nunited airlines stopped chris roberts from boarding a california-bound flight late saturday . the airline 's corporate security stopped him at the gate . roberts was on his way to give a talk about computer security vulnerabilities at a major conference in san francisco . he was removed from a united flight on wednesday by the fbi after landing in syracuse , new york . he had jokingly suggested on twitter he could get the oxygen masks on the plane to deploy .\ncrystal palace are fifth in the premier league table . alan pardew is keen on bringing in a marquee signing this summer . pardw is prepared to let star winger yannick bolasie leave for ` between 40 and 60 million pounds ' the eagles boss is adamant he will be backed by chairman steve parish .\ncraig lister , 54 , was diagnosed with prostate cancer in 2012 . he is now well and his tumours have shrunk but is still taking hormone therapy . hormone therapy is the first treatment offered to men with advanced prostate cancer . it starves cancer cells by reducing levels of testosterone in the body .\npresident obama is celebrating earth day on wednesday . julian zelizer : obama 's climate plan is biased against nuclear energy . he says the administration 's clean power plan is an energy policy plan , not a carbon reduction plan . zelizer says the plan creates incentives for states to shut down nuclear power plants .\nsome apparently healthy meals are worse for you than demonised junk foods . asda 's piri piri chicken pasta salad contains 46.5 g of fat . this is more than 43.3 g found in a burger king bacon and cheese whopper .\nblind children in alabama hunt for plastic eggs that let off a beeping sound . david hyche came up with the idea when his daughter turned blind . he has passed on the idea to the alabama institute for deaf and blind . the children trade the eggs in for candy .\nlacey spears , of kentucky , was found guilty last month of second-degree murder in the death of her son garnett-paul spears at a suburban new york hospital . she was spared the maximum 25 years to life and instead received 20 , showing no emotion when she was sentenced . the boy 's father chris hill , wrote on facebook that he was tired of crying over the loss of his son and that he hoped his ex would die in prison .\ntiger woods has confirmed he will play at the masters this week . the former world no 1 has not played since early february with a back injury . colin montgomerie says it would be fantastic to see woods go up against rory mcilroy . woods has dropped out of the world 's top 100 for the first time in 19 years .\nmother-to-be lynn suffers from hip dysplasia and scoliosis . she has only 30 per cent mobility and needs painkillers to help her move . when pregnant , she stopped taking painkillers for the sake of her baby . she wanted a natural birth but had to have a c-section as baby was breeched .\nthe sutton arms in stockton-on-tees was found to be filthy and rodent infested . inspectors found rotting meat , mouse droppings and food past sell-by date . owner michael alan flegg , 68 , pleaded guilty to nine food hygiene offences . six people suffered gastroenteritis after eating at the pub on easter sunday .\njim culloty 's spring heeled will run in the crabbie 's grand national . nick scholfield had been expected to partner sam winner in the race . but culloty has revealed he will have two runners in the national . robbie mcnamara will ride lord windermere in the # 1million race .\nrory mcilroy and tiger woods were paired together for the final round . world no 1 mcilory hit a final round of 66 to finish on 12 under par . jordan spieth won his first ever major title with victory at the masters at augusta .\nwalter scott , 50 , was pulled over for having a broken tail light on his mercedes . officer michael slager , 33 , pulled him over and then shot him dead . slager initially claimed that mr scott had wrestled his taser from him . but video footage emerged showing the father-of-four being shot five times . slagers has been charged with murder and could face the death penalty . police have not disclosed his identity and family do not know who he is .\nboris johnson warns against snp dominating the government of the uk . he likened it to ` asking a fox to look after the henhouse ' and ' a temperance campaigner to run a brewery ' snp leader nicola sturgeon launches manifesto calling for end to austerity and abolition of trident .\nnirvana frontman kurt cobain lived in a two-bedroom apartment in l.a. 's fairfax district during the height of nirvana-mania . now its current owner , brandon kleinman , 31 , has listed it on airbnb for # 108 a night . it is located in the middle of shopping mecca the grove .\nconservative supporters are most likely to opt for light reading on the plane . liberal democrats prefer to opt out of the window seat on flights . green party supporters are the most likely group to rent a car on holiday . scottish national party supporters most likely in speedo swimming trunks .\njohn terry reveals his pfa team of the year on instagram . chelsea captain picks philippe coutinho as his player of the year . spurs striker harry kane is named young player of year . youssouf mulumbu mistakenly names kane and eden hazard as best players .\nprimatologists from iowa state university have recorded 300 chimps using tools to hunt for food in fongoli , sénégal . they found that female chimps were using tools in 60 per cent of the observations . however , the male chimpanzees tended to capture larger prey and used their hands . the research may also provide tantalising hints at how humans first learned to use weapons to hunt .\nthe u.s. ambassador to south korea mark lippert was attacked by anti-us activist kim ki-jong at a breakfast forum in seoul on march 5 . the 55-year-old was indicted wednesday on charges of attempted murder and assaulting a foreign envoy . lippert required 80 stitches to close up the wounds on his hand , arm and face that he sustained from the anti- us activist .\ntiger woods won the first major at augusta national in 1986 . rory mcilroy is bidding for his third major title and the completion of his career grand slam at the home of golf . world no 1 mcilory is ranked 111th in the world at present .\naussie the dog was killed in a puddle in the aftermath of the nsw storms . he was walking just ahead of his owners kai , seven , and sophie , 10 . the family were walking near their home at caves beach , near lake macquarie . aussie stepped into the first puddle and died instantly . the kids were traumatised after seeing their dog die .\na third of adults shun the storage possibilities of the internet . ten per cent are even more relaxed about treasured photos , letters and mementos . just 13 per cent bother to scan it to a computer , the poll found . almost half rely on a safe or filing cabinet to store documents .\n` rich ' who lives in humpty doo , northern territory , detailed his dream girl on gumtree . the 31-year-old 's advertisement included a list of requirements in his potential partner , and personal details about himself . the advertisement outlined how the successful applicant must enjoy the outdoors , but is also ` also a princess when need to be '\nfriday marks the 100th anniversary of the first ever fa cup final . 50,000 gathered at old trafford to watch sheffield united beat chelsea . many of the players and fans were already wounded from war or in uniform for training . the match was played on the same day thousands of allied troops were killed in a deadly german chlorine gas attack near ypres , belgium .\nchilean striker javier hernandez scored in the 88th minute to send real madrid through to the champions league semi-final . he was praised by his manchester united team-mates on twitter . thierry henry criticised him for not running to cristiano ronaldo for the goal .\ngeoff johnson and his sister jennifer mcshea , both 37 , left their mother 's home in omaha , nebraska in 1993 when they were 15 and 17 . they returned to the home after their mother died of breast cancer in 2013 and were shocked to find the house was still in the same condition . they were inspired to create a moving photo-series with their own children to document the reality of being a hoarder 's child . geoff , a photographer , used photoshop to superimpose his son and jennifer 's daughter onto images of the home .\nthe actor , who was critically injured in a multi-vehicle accident last june , was seen out with his family on monday , almost a year after the accident . he appeared to be improving , though he still looked strained and wince as he walked with a cane . morgan was accompanied by his fiancee megan wollover and their daughter maven for a shopping trip in new jersey . this comes a little over a month after he was forced to miss the saturday night live 40th anniversary special .\nfrancis coquelin returned from loan at charlton earlier in the season . the 23-year-old has become an integral part of arsenal 's midfield . the frenchman wants to emulate club legend patrick vieira . arsenal take on liverpool at the emirates on saturday afternoon .\ntulsa county reserve deputy robert bates , 73 , pleaded not guilty to second-degree manslaughter in the death of eric harris , 44 . harris was shot dead by bates after he ran past him during an undercover gun-sale operation on april 2 . bates claims he mistakenly pulled out his gun instead of his taser . in 2009 an internal investigation found bates had received special treatment during training and while working as a reserve deputy .\nthe rich kids of instagram have been jetting around the world . travelled to miami , new york , marbella and monaco this easter . mailonline caught up with the world 's most extravagant 18 to 26-year-olds . they include tomer sror , marcus w.a. and lana scolaro .\nsenegalese wrestlers balla gaye 2 and eumeu sene took to the sand in a crunch match dubbed ` le choc ' the two powerhouses of wrestling battled it out in the demba diop stadium in dakar yesterday . the burly sene emerged victorious in a close encounter under the hot sun .\nitalian newspaper la gazzetta dello sport score england 's players out of 10 . theo walcott receives the worst rating with five for his display . wayne rooney , andros townsend and ross barkley all receive seven . italy manager antonio conte and southampton striker graziano pelle receive high praise for their performances .\nrodrigo alves , 31 , has had 30 surgeries , including four rhinoplasties , liposuction and six-pack implants . he is set to appear on the new season of the e! reality show botched . the london flight attendant is a mentor for another patient .\nguernsey police executed search warrants at the eagle medical practice . officers raided the surgery and a private residential address on the island of alderney . health & social services department raised concerns about four patients . doctor excluded from treating patients at the mignot memorial hospital .\nprank video of ` vampire girl ' in odessa , ukraine , goes viral on social media . the video sees the girl scare late-night walkers in moon park , odessa . she waits until concerned locals walk up to her before screaming . the girl then screams , causing the walkers to run off in terror .\nwest bromwich albion beat crystal palace 2-0 in their premier league clash at selhurst park on saturday . james morrison and craig gardner scored the goals for the away side . tony pulis returned to selhurst for the first time since leaving the eagles in the summer . the former baggies boss was roundly applauded as he came out from the tunnel .\nreal madrid beat granada 9-0 at the weekend . carlo ancelotti has a dilemma to solve with his attacking options . james rodriguez is favourite to start in his place . psg 's 3-2 win at marseille is an indictment of ligue 1 , says l'equipe . inter milan are struggling with internal issues .\nlocal authorities are yet to upgrade parking meters to accept new coins . the new 5p and 10p pieces were introduced in 2012 by the royal mint . but some machines still refuse to take the new silver coins . this means drivers must overpay for parking in manchester by # 1.25 .\nauthorities say they have launched a `` vast anti-terrorism operation '' in italy . they are going after suspects associated with al qaeda . the vatican was among the targets considered , police said . some members of the terrorist cell had direct contact with osama bin laden . operation .\nmanuel pellegrini says manchester city must splash the cash in the summer . the chilean believes his side must sign a ` crack ' player like sergio aguero . city were hit with a # 49million net spending cap last summer . pellegrini 's side are currently fourth in the premier league .\nzlatan ibrahimovic has scored 102 goals for paris saint-germain . the 33-year-old scored a hat-trick in their 4-1 win over saint etienne . ibrahimovic is considered to be one of the finest strikers of his generation . but he has never played in the premier league .\ndaredevil nik wallenda says he 'll walk untethered on top of a 400-foot observation wheel in orlando , florida , this month . wallenda said monday at a new york city news conference that the orlando eye will be moving when he attempts his feat april 29 . the seventh-generation member of the ` flying wallenda ' family of acrobats has walked across the grand canyon and niagara falls .\nkelli jo bauer allegedly sold designer goods from her sprawling mansion . she was arrested after undercover officers visited her home in kansas city . bauer is accused of showing officers dozens of clothes still with tags . she told officers she was selling the items because she had lost weight . bauer , 45 , is on house arrest as a condition of bond .\nnigel pearson has praised esteban cambiasso for his performance . cambiasso scored the opening goal in leicester 's 2-1 win against west ham . the foxes boss said cambiassi was ` outstanding ' in the win . leicester remain rooted to the bottom of the premier league table .\nsouth africa bowling coach allan donald confirms he will step down . donald has been in the role since 2011 . the 48-year-old former test paceman has served his country with distinction both on and off the field . donald said : ` the last four years have been the best of my life '\ntony pulis ' west brom side beat crystal palace 2-0 at selhurst park . craig gardner scored the second goal for the baggies . james morrison headed the away side ahead before half-time . gardner says it was a ` massive ' win for his side .\nseattle startup gravity payments will offer at least $ 70,000 salary to all of its 120 employees over the next three years . ceo dan price is slashing his own salary by 93percent . he 's also taking up to 80percent of the firm 's $ 2.2 million expected profit to plow it back in to staff salaries . the policy will raise the wages for 70 of the company 's workers - more than half the staff .\ndebenhams and mothercare have called a halt to long-running promotions . experts claim prolonged sales can devalue products and encourage shoppers to delay buying . a third of all fashion purchases are now made in a sale or promotion . there have been warnings that shoppers are being ` trained ' not to buy at full price .\nellia beasley had the line ` scream your heart out ' written across her belly . she had the tattoo because she loved the song rooftops by lost prophets . but she lived to regret it after the band 's lead singer was exposed as a serial paedophile and child abuser . ian watkins , 37 , was sent to prison for 35 years in 2013 . ellia , 22 , has more than 20 tattoos on her body .\nthames valley police called to canal boat in reading , berkshire . a passer-by reported seeing a 4ft long guided missile on top of the barge . police and army bomb disposal team inspected the weapon and found it was a dummy . alongside the missile were the head and shoulders of a dummy wearing a balaclava .\npolice pulled over a replica of the car used in the back to the future films . officers spotted the car on the back of a tranpsporter between stoke-on-trent and crewe yesterday morning . officers joked that the futuristic-looking car from the 1980s had a ` leaky flux capacitor ' from the movie .\nblended learning program merges internet-based instruction with a more traditional classroom setting . it allows teachers to write the curriculum , with students giving feedback about the focus . one-third of huntley high school 's 2,700 students are enrolled in the program .\ndesflurane , isoflurane and sevoflureane are potent greenhouse gases . they have 2,500 times the impact on global warming compared to carbon dioxide . the gases are used to send patients to sleep during surgery . concentrations have been rising globally in the past decade . scientists say hospitals should consider using alternative anaesthetics .\nbecky watts went missing from bristol home in february . her dismembered body parts were found 11 days later at a house in barton hill . nathan matthews , 28 , faces a single count of murdering his step-sister . his girlfriend shauna hoare , 21 , is accused of perverting the court of justice . jaydene parsons , 23 , james ireland , and karl and donovan demetrius , both 29 , are accused of helping dispose of and conceal becky 's body parts .\nsonia and rony morales were told their daughter angela may die within hours of being born . she has anencephaly , a birth defect in which babies are born without parts of their brain and skull . many newborns with the condition die soon after birth . sonia and roney decided to ` keep her no matter what ' and celebrate every day with her .\njohn terry scored in chelsea 's 3-1 win at leicester on wednesday night . the 34-year-old has now scored seven goals in all competitions this season . terry is the club 's joint third-highest goalscorer with seven goals . only diego costa and eden hazard have more for chelsea . terry 's goal return is better than manchester city 's edin dzeko .\nkathmandu has been hit by its worst earthquake since 1934 . save the children 's chief executive says nepal has made remarkable progress on maternal and child health . he says the country 's infrastructure is in ruins and the recovery will be difficult . save the children has set up a fund to help address the immediate needs of children .\nthe mysterious young soldier known as the ` handsome man ' was featured in a 2008 australian war memorial exhibition titled icon and archive . little is known about the man pictured wearing a uniform and slouch hat , but he was a soldier of the first australian imperial force . his photograph was taken sometime between 1915 and 1918 in sydney , before he embarked for service . his image was used to front woolworths ' ` fresh in our memories ' ad campaign , which has been slammed for commercialising the centenary of anzac and forcibly shut down by the government .\ntyrus byrd was sworn in as mayor of parma , missouri last week . but the city 's police officers , city attorney , clerk and water treatment supervisor all resigned . the officials all cited ` safety concerns ' in their resignation letters , the outgoing mayor says . mrs byrd , who was sworn into office on wednesday , says she still does n't know why the employees quit .\nstate-of-the-art south glasgow university hospital opened today . it has a fleet of robots delivering linen , a children 's cinema and helicopter landing pad . snp leader nicola sturgeon said it proves party 's commitment to the nhs . but ukip said the hospital had been funded with english taxpayers ' money ` shovelled ' to holyrood .\nright back wallace has been released without charge by dutch police . the 20-year-old was arrested in arnhem on ` suspicion of a sexual offence ' wallace is on a season-long loan at vitesse from chelsea . the brazilian defender has been loaned out to fluminense and inter milan .\nlewis hamilton won the bahrain grand prix on sunday . the briton has won nine of the last 11 grands prix and is 27 points clear in the drivers ' standings . hamilton admits he feels more powerful than ever in his f1 career . but he admits he still feels there are things he can improve on .\ndetectives investigating the killing of david king , 70 , from newham , east london . pensioner retired to normandy 15 years ago and was living rough . his body was found by sniffer dogs last week in picturesque hamlet of pierres . an unnamed 28-year-old frenchman has been charged with his murder .\nsaskia 's boyfriend made her take an arsenal test and did n't dump her . the test took the form of a school exam , with multiple choice questions . saskia scored an impressive 87 per cent , but ` could have performed better ' she kept her boyfriend happy with creative answers to his questions .\nlorenzo simon , 34 , stabbed michael spalding , 39 , in the neck at his flat in birmingham . he then dismembered the handyman using a hacksaw and stuffed body parts into suitcases . simon and girlfriend michelle bird , 35 , then dumped the suitcases in the canal . today he was found guilty of murder after a jury took 15 hours to decide . bird was cleared of murder and manslaughter but admitted assisting an offender .\nkaren bell , 42 , met man on dating website plenty of fish and they exchanged flirty texts . pair met up to act out fantasy in which she spanked him with a pair of trainers . she then threatened to post footage of their sex trysts on facebook unless he paid her # 25 . she later increased demands , claiming her son had secretly filmed their tryst . bell jailed for 12 months after pleading guilty to blackmail at hull crown court .\nlack of bacteria means we are less equipped to deal with germs . our bodies often overreact when we come into contact with bugs , dust or pollen . study compared bacteria in the guts of people from the us and papua new guinea - one of the least industrialised nations on earth .\ngerman shepherd puppy named kali is seen bouncing about the decking . its adopted mother is seen relaxing on the floor as she watches the puppy . the older dog stands over the young dog during the entire walk back to its bed . kali makes a lunge for its toy bone but its mother pushes it down .\nblackpool were relegated to league one after 1-1 draw with reading . fans gathered outside bloomfield road to protest against chairman karl oyston . lee clark admits it will be hard to win back fans after relegation . jamie o'hara scored from the penalty spot to give blackpool a lead . but grant hall 's own goal earned reading a point at bloomfield .\nin 2009 a statue of lucile ball was unveiled in celoron , n.y. , but it has been vandalized since . a facebook page called ` we love lucy ! get rid of this statue ' has attracted more than 600 likes . artist dave poulin has declined comment . it would cost an estimated $ 8,000 to $ 10,000 for poulins to recast the statue .\npark inn by radisson launches ` virtual holiday ' service e-scapes . customers can travel to three destinations from their home . e-scape is the world 's first ` virtual ' holiday experience on social media . customers ' social media accounts are updated to give the illusion they 're on a trip away . berlin , cape town and abu dhabi are the first destinations .\ntiger woods practised at augusta national golf club on monday . the former world no 1 was making his first public appearance in 60 days . woods was greeted by a large crowd of fans at the first tee . rory mcilroy practised with british amateur champion bradley neil .\nhead of deutsche flugsicherung authority klaus-dieter scheurle called for system . he said it could help prevent a repeat of the germanwings crash last month . investigators believe co-pilot andreas lubitz locked his captain out of the cockpit and deliberately crashed the plane into a french mountainside .\na two-metre south american boa constrictor is on the loose on the gold coast . police mistakenly believed it was a harmless australian python and set it free . biosecurity queensland officials have now given up looking for the snake . the reptile could pose a threat to local wildlife and even people 's pet cats and dogs .\nsilvia , star of my extraordinary pregnancy , suffered from pica . pica is an eating disorder that makes people crave non-food substances . she wanted to eat rocks during her third pregnancy . pipes can cause an obstruction in the stomach and can be very dangerous .\nbrock guzman of fairfield , california was taken from his home when someone stole the family car from their driveway as he slept inside monday morning . his parents , paul and suzanne , are now filing a formal complaint against police for the way they were treated after they reported the incident . paul claims he captured on video police throwing his wife suzanne on the ground in handcuffs just moments after they called them in . this after suzanne refused to let them into their home , something paul claims she was doing for their own safety . police found brock two miles away in the car , and the young boy read a letter thanking them .\npart-time actor , 58 , was stopped at newcastle airport customs . he was carrying six # 1.80 tubs of the traditional north east delicacy . staff told him it could ` technically ' be classed as semtex . he offered to let security taste the pudding to prove it was n't semtex .\ngayla neufeld , 52 , from texas , inherited her family 's weight . she married at 19 but continued to gain weight and they divorced . she found online community of obese women called ` fat admirers ' gayla met her husband lance on the forum and they married . she now works as a webcam model for men around the world . she says men love her ` perfect belly ' and she gets approached by bodybuilders .\npensioners aged over 75 will be guaranteed same-day appointments with gp . david cameron will announce the move today as he pledges to commit # 8billion to fund the health service . move designed to demolish cynical labour claims that the tories would ` cut the nhs to the bone '\nnew york man caught on camera catcalling women in the street . was interviewed by buzz60 's patrick jones , who was covering an anti-catcalling campaign in new york city . man did n't realize he was being filmed in front of a sign that says ` no catcall zone '\njosiah duggar , 18 , has officially started courting marjorie jackson , 17 , who he met while taking spanish lessons at her house . the pair must follow the duggar family 's strict courtship rules , which include ` side hugs ' and ` saving their first kiss for their wedding day ' the pair met on a mission trip to el salvador in december .\nmaurice thibaux , 67 , stormed the catwalk at sydney 's mercedes-benz fashion week . he was escorted off the stage by a security guard after complaining about the noise . the french native said he had no problem with the music but the rumble that accompanied it . he claims the noise was as loud as a jumbo jet flying overhead . the show was held at the carriageworks in eveleigh - in sydney 's inner city .\nmartin dempsey , chairman of joint chiefs of staff , apologized to debbie lee . her son marc lee was killed in ramadi , iraq , in 2006 . he was awarded the purple heart and silver star for his bravery . dempsey had said the city was ` not symbolic in any way ' while discussing operations against isis . lee was outraged and wrote an open letter to dempsey on her charity 's website . he said he regretted that he ` added to the grief ' of the mother of a fallen hero .\nmangu ram , 82 , fled pakistan when he was 14 to escape the partition . he is one of 100,000 west pakistan refugees living in india 's jammu region . they are denied citizenship and the right to own property or vote . but now ram and thousands like him are hoping for change . prime minister narendra modi 's hindu nationalist party won a share of power .\ndeborah fuller dragged her dog tango behind her car at a speed of 30mph . the rhodesian ridgeback was left with wounds to his paws and chest after the incident . fuller , 56 , denied causing unnecessary suffering to an animal but was convicted . she has been banned from keeping animals for five years and had her 27 other dogs confiscated .\nfreddie gray 's death has inflamed tensions across the country . but gray is far from the only suspect who died after being arrested . in new jersey , police say they were responding to a disorderly person call . but witnesses say they saw police beating and kicking a man who was handcuffed .\nhome carers are being asked to perform tasks previously only carried out by nurses . these include changing catheter and colostomy bags and feeding through a tube . almost a quarter of carers giving medication had received no training . age uk said the idea is ` frankly terrifying '\nousamn jatta , 45 , married wife beryl , 88 , in gambia 13 years ago and moved to uk . he took her to a care home in february while he went to africa for three weeks . but when he returned he was told social services had intervened and ruled she could not go home with him . mr jatta had threatened to go on hunger strike unless bristol city council hand over his wife .\nbrendan rodgers insists his side are not in crisis despite defeats by manchester united and arsenal . liverpool face blackburn in the fa cup quarter-final on wednesday . rodgers denied suggestions that a training-ground meeting on sunday was designed to quell dissent among his players . liverpool will be without steven gerrard , martin skrtel and emre can .\nmanchester united beat manchester city 4-2 in their premier league clash . chris smalling scored the fourth goal of the game in the second half . smalling says united have arsenal and chelsea in their sights . united are currently third in the table , eight points behind leaders chelsea .\nmother-of-two mandy greenwood , 39 , was abused by her father as a child . keith whitworth , 61 , from rochdale , greater manchester , was jailed for 22 years . mandy carried the secret around with her for more than 20 years . it was only after she confided in her husband , dave , that she felt strong enough to seek help . m sandy has waived her right to anonymity in the hope other victims will come forward too .\nmichael bisping beat cb dollaway on points in montreal on saturday . the manchester middleweight was in action for the first time since losing to luke rockhold last year . bisped said he was disappointed not to have enjoyed an early night . the brit confirmed he would relish a uk return on july 18 in glasgow .\npensioners are seven times more likely to develop serious skin cancer today than they were 40 years ago , research shows . around 5,700 pensioners are now diagnosed with melanoma each year in the uk compared with just 600 a year four decades ago . getting sunburnt once every two years can triple a person 's risk of developing the disease .\narsenal take on stoke city in a u21 premier league clash on tuesday . jack wilshere , mikel arteta and abou diaby all start for the gunners . teenage winger serge gnabry also in the starting line-up for steve gatting 's side .\nke raleigh-anne woolley , then 7 months , was left blind , unable to talk and brain damaged . she was shaken by her mother 's boyfriend colin heath in january 2000 . the child spent most of her life in a wheelchair and could only eat through a tube . heath , now 43 , was jailed for three years and two months after admitting manslaughter .\nthe showtime video takes you inside floyd mayweather jnr 's training camp . mayweather and manny pacquiao will fight on may 2 in las vegas . the undefeated american is down to within three-and-a-half pounds of the welterweight limit . click here for more boxing news .\nkevin sinfield has announced he will leave leeds rhinos at end of the season . sinfield will join yorkshire carnegie on an 18-month contract . castleford head coach daryl powell has warned sinfield he will be a ` target ' when he makes the switch to rugby union .\ngeorge w bush , 68 , made comments at meeting with jewish donors in las vegas . said obama 's plan to lift sanctions on iran was not plausible and comes too early . said iran 's government and president rouhani appear to be caving in . said comprehensive nuclear deal would likely have negative impact on us national security . obama previously said the agreement was america 's ` best bet '\nchelsea signed juan cuadrado for # 23m from fiorentina in january . the colombian winger has failed to impress since his arrival at stamford bridge . wilfried bony has scored just one goal for manchester city this season . mauro zarate has failed in his loan spell at qpr .\nuniversity of cape town students took to social media to demand the statue be removed . they say cecil rhodes ' legacy is tainted with racism . the university says heritage authority granted it permission to remove the statue . `` this is n't confronting history , this is erasing it , '' says one protester in pretoria .\nkevin pietersen scored 170 for surrey in the parks against sussex . pietersen 's agents have helped him outplay the ecb without any help from outside experts . shivnarine chanderpaul wants to continue playing test cricket so that he can play with his son tagenarine . andy flower continues to earn # 300,000-a-year as the ecb 's technical director .\nthe custom-made piano features half a million swarovski crystals . it was created for an ` influential sheikh ' in doha , qatar . goldfinch , a cambridge-based piano maker , took six months to build it . artist lauren baker added the half amillion crystals by hand .\nthe 18-year-old inmate was booked into lower buckeye jail in phoenix two weeks ago . he is seen on surveillance video walking into a room he was not authorized to be in . two officers approached the inmate and told him to go back to his cell . the inmate then began punching the officers , knocking one to the ground . the officer , scott beaty , was taken to the intensive care unit with broken bones in his face and brain bleeding . the prisoner was eventually subdued with four taser shots .\njulian zelizer : hillary clinton 's candidacy is a litmus test for gender equality in u.s. zelizer says clinton 's loss would perpetuate myth that women can not win big elections . he says clinton is no ordinary female presidential candidate , if there is such a thing . zelizers : clinton 's campaign will have to determine which incidents to address , which to ignore .\nthe mgm grand is getting ready to host floyd mayweather 's showdown with manny pacquiao . the hotel resort on the las vegas strip will host the biggest boxing contest ever on saturday night . mayweather 's fight against pacqu xiao will take place at the mgm grand 's 16,000-capacity garden arena .\nkei nishikori beat pablo andujar 6-4 6 - 4 in the barcelona open final . the japanese world number five won his ninth career title . gerard pique and shakira were in the stands to watch the final . pique played in barcelona 's 2-0 win over espanyol on saturday .\nthe aid agency has been negotiating for a week to deliver life-saving supplies and equipment to yemen . the coalition has conducted 11 days of air strikes against iran-backed shi'ite houthis . the un last week said that more than 500 people had been killed in two weeks of fighting in yemen . but hopes of getting aid into the country by tomorrow are fading , as they seek clearance from arab states waging the air strikes .\nrandy johnston , 68 , from dallas , texas , decided to leave two ` fake poops ' on his granddaughters ' beds - and his son filmed it . but footage shows that the prank turned out to be decidedly disastrous , with his six-year-old granddaughter porter getting red-faced and dramatically crying in horror .\nrain that had doused northern california for the previous 24 hours arrived in southern california on tuesday night . thousands were without power for several hours because of the storm , and the los angeles dodgers had a rare rain delay on the second day of the season . earlier in the day , the unusually cold spring storm brought heavy rain and hail to parts of northern california and coated the mountains in snow .\narsenal and manchester united are chasing morgan schneiderlin . nathaniel clyne is also a target for the premier league giants . danny ings is out of contract at burnley and could leave for # 5m . yannick bolasie is wanted by liverpool and tottenham .\ndaspletosaurus , a close relative of tyrannosaurus rex , lived 75 million years ago . scientists found bite marks on the fossilised skull of a juvenile daspletosaurus . they believe another tyrannosaur fed on the youngster 's body after death . the findings suggest the tyrannosaurs were more intelligent than previously thought .\njamie vardy was being criticised two years ago at leicester city . the striker is now a pivotal part of their team . vardy put in a 10-out-of-10 performance at the weekend . he scored the winner in injury time against west brom on saturday . louis van gaal should be crowned manager of the year .\nbeth hall , 24 , from cambridge , plummeted to a tiny 4st 13lb . she began a strict diet regime at the age of 16 , living off black tea and coffee . would often go for up to three days without eating a single thing . after years of turmoil , she was finally admitted to an eating disorder clinic . now a healthy size 8 , she is studying graphics at university .\nfrank lampard has made 32 appearances for manchester city on loan this season from mls outfit new york city . the 36-year-old will join up with parent club in july after signing a two-year deal . lampard and liverpool captain steven gerrard will join la galaxy in the summer after spending 17 seasons at the club .\nbox-office analyst phil contrino says the film could make over $ 2 billion . star wars : episode vii - the force awakens released its trailer on thursday to a packed audience at california 's anaheim convention center . the space epic is already being predicted to rake in a global $ 500m on its opening weekend .\namnesty international says governments are using terrorism to advance executions . the organization 's annual report catalogs the use of state-sanctioned killing as a punitive measure . at least 607 people were executed around the world in 2014 , compared to 778 in 2013 . the report notes some encouraging signs , but also highlights a marked increase in the number of people sentenced to death .\nkym ackerman , 32 , saw jesus in an x-ray of her molars when she went for dental a check-up in flagstaff , arizona . ackerman plans to frame the x-rays and keep the special molar and her mouth free of cavities in the future .\nworld no 27 paula creamer has called for a masters tournament for women . creamer won the 2010 women 's us open . the american suggested a women 's event could be staged the week following the men 's showpiece in april . creamers says augusta national want to grow the game so badly .\nchelsea boss jose mourinho says eden hazard is one of the best players in the world . hazard scored the winner against manchester united on sunday . the belgian is widely expected to be named pfa player of the year . hazard says he is having the best season of his career .\nreality star will serve 18-months in prison which will run concurrently to his 41-month federal sentence for bankruptcy fraud and failing to file taxes . his wife , teresa , is serving a 15-monthfederal sentence on the fraud charges . judge adam jacobs said joe giudice has a ` general disrespect for the law , ' citing dozens of previous driving infractions and suspensions .\nsaturday 's earthquake was the `` big one '' experts were waiting for , a geologist says . the last major earthquake in the region was in 1934 . the population of nepal has exploded in recent decades , a u.s. geological survey spokesman says . a major concern for this earthquake is damage from landslides , a professor says .\nengland cricket selectors james whitaker is set to end his stint . yorkshire are unhappy with the test squad whitaker picked for the west indies tour . sam allardyce 's future at west ham is in doubt . fa cup set to be rebranded as emirates fa cup in new # 30m sponsorship deal .\n173 lots of designer brands to go up for auction on april 28 . includes issa dress worn by kate middleton for engagement photos . also 50 pairs of shoes similar to those worn by carrie and samantha in satc . chanel , louis vuitton , prada , gucci , guccis , mulberry , ferragamo and manolo blahnik .\nnew masters champion shows his commitment to the sport . spieth has competed in four events in a row as he pays back his sponsors . the european tour 's flagship event is being played at wentworth . ian poulter , henrik stenson and sergio garcia will not be present . nick faldo will be his last open after 25 years .\ncharlie barnhoorn took hundreds of cans of nitrous oxide at a party . he was found dead in his bedroom at the family home in kingsteignton . inquest heard that his death was self-inflicted after he died from asphyxiation . his mother susan has now spoken out about the dangers of taking the drug .\nanna broom , 33 , from gillingham , kent , has not worked since the age of 19 . she has claimed more than # 100,000 in benefits since then . now wants # 10,000 to fund her dream ` traditional english wedding and party in a castle ' she also wants # 2,000 for a honeymoon to mexico , paid for by the taxpayer .\nyoussouf mulumbu posted his vote for the pfa player of the year award on twitter on wednesday . the west brom midfielder has picked tottenham striker harry kane for the top prize . mulumbi also picked chelsea wideman eden hazard for the young player of the year prize .\n72 unprovoked shark attacks were reported around the world last year . three people were killed in australia and south africa , according to the international shark attack file . only a minority of sharks are any danger to humans , with great white , bull and tiger sharks accounting for the vast majority of attacks .\na japanese lawmaker asked if fighter jets were ever scrambled to meet extraterrestrial threats . defense minister gen nakatani said his jets had never come across any ufos from outer space . the lawmaker , antonio inoki , also claims to have seen a ufo with his own eyes . inoki is a former wrestler who is now a lawmaker in japan 's upper house .\nlawyer fethiye cetin discovered her armenian ancestry in her 20s . she was 9 when she was taken away from her family by ottoman soldiers . her grandmother told her that she had been called heranus , a name she kept hidden . cetin says the 100th anniversary of the genocide in 1915 excites her .\nsydney couple sharon and mike tierney set aside one evening a month for mutual grooming . sharon trims her husband 's eyebrows , waxes his nostrils and trims his pubic hairs . mike returns the favours with waxing , spray tans and eyelash tints . the couple met in london 13 years ago and have been together ever since .\ndon mclean 's original manuscript and notes to ` american pie ' sold at christie 's auction house in new york on tuesday for $ 1.2 million . the 16 pages include the original working manuscript and typed drafts of the song . the name of the buyer was not released . the original manuscript also reveals a deleted verse , which was crossed out and never recorded , where mclean , now 69 , writes about music being ` reborn '\ntwo fifths of parents are badgered by their children each week to buy food after seeing it advertised on tv . british heart foundation has delivered a 30,000 strong petition asking government to ban junk food adverts being shown before the 9pm watershed . dr sally norton criticises coca-cola 's sponsorship of the london eye .\nlu xincai takes his mother to work on the back of his motorbike every day . she suffers from alzheimer 's and used to get lost when left alone . he ties a sash around both of their waists to ensure she does n't fall off .\nrosemary taylor , communications director of city of brookhaven in georgia , made remark . she allegedly stopped photo shoot with models dominique jackson and khamlee vongvone . said to have told photographer nelson jones , ` this is not the image i want for city ' pair were then asked to leave cherry blossom festival by city official , it is reported . taylor , who had been in job for less than a month , has now been fired . but she has released statement saying she was wrongly accused of racism . also says photographer was ` unprofessional ' and ` misused city funds '\nnew york state health officials say more than 160 people have been rushed to hospitals in nine days . the patients have been treated for adverse reactions to synthetic cannabinoid , known as `` spice '' or `` k2 '' `` spice '' and other similar synthetic drugs are often marketed as legal plant material coated with chemicals .\nwilliam ` wild bill ' wilson and his wife lillian karr wilson died just two minutes apart from each other this week . both lillian , 89 , and bill were alzheimer 's patients and for the last couple of years had to live in separate nursing homes . the couple first met in corbin , kentucky and , according to their son doug , ran off and got married without either of their parents ' blessing .\nmark wahlberg will star in a film about the boston marathon bombing , deadline reports . the film , called `` patriots ' day , '' is being produced by cbs films . wahlburg is hoping to play boston police commissioner ed davis . the movie will be told from davis ' point of view .\njose mourinho 's chelsea are 10 points clear of arsenal in premier league . arsenal have won 11 of their last 12 premier league games . arsene wenger 's side are also through to the fa cup semi-finals . but wenger needs to make big signings to challenge next season .\nturkish airlines flight tk 1878 from milan to istanbul made an emergency landing at ataturk airport . the right engine of the airbus a320 caught fire on landing . the plane was evacuated safely and there are no reported injuries . the aircraft slid off the runway after its declaration of emergency landing .\nwigan came from behind to earn a 2-2 draw against fulham at craven cottage . gary caldwell , 32 , is the youngest boss in the championship . caldwell replaced malky mackay on wednesday . the former latics skipper admits his first game as manager was ` crazy '\nradio industry is calling for fm chips in smartphones to be activated . many phones , including apple 's iphones , samsung 's 4 and lg phones , come with fm chips . but nearly two thirds of these devices do n't have the feature activated . broadcasters say this would reduce demand for data used by streaming internet broadcasts . the bbc is leading a project to combine internet radio with fm radio . norway will become the first country to switch off its fm radio service in 2017 .\ndavid and margaret-ann rous were flying from dundee to tiree . they were on a secret visit to see his wife 's mother and sister . but when they failed to turn up at the island 's airstrip , a search was launched . the wreckage of the plane and the couple 's bodies were found in hills . the air investigation branch is now examining possible causes of the crash .\nthe bowl cut has been worn by celebrities including rihanna , miley cyrus and justin bieber . it was made famous by jim carrey 's lloyd christmas in dumb and dumber to . barber shops have reported a 200 per cent surge in requests for the unflattering cut .\nmanchester united beat city 4-2 in the premier league on sunday . gary neville co-commentated with martin tyler for sky sports . neville was damning in his analysis of city and freely admits he is a united fan . he was also gobsmacked by the city players ' lack of urgency .\ncake-factory worker viv nicholson and her coal miner husband keith won # 152,319 , 18 shillings and 8d on the littlewoods pools in 1961 . she announced that her life from now on would emphatically be neither sensible nor boring . viv nicholson died on saturday aged 79 .\nitalian raffaele sollecito was spotted shopping in rome , italy . 31-year-old was seen browsing through lingerie in the underwear section . comes two weeks after he was cleared of murdering british student meredith kercher . sollecito and former lover amanda knox were acquitted in march . both are reportedly planning to seek compensation for time wrongly spent in prison .\ncatholic diane greenberg and her husband bob raised their children in separate faiths . diane taught her daughter katie , 24 , while bob taught her son steven , 21 . katie attended catholic school and remains a committed christian . steven was circumcised when he was eight days old and attended hebrew school .\nqatar 's constellation group sensationally snapped up majority stake in claridge 's , connaught and berkeley hotel . gulf state 's rulers converted three prime properties on cornwall terrace in london 's regent 's park into huge mansion worth # 200million . last year , the oil-rich country became the first commercial sponsor of royal ascot . and the # 100 million restoration of dudley house , the uk 's most expensive house , was completed this year .\nstreaming music service spotify believes it has identified the average age of midlife crises at 42 . staff analysed data and found users aged around 42 drop their usual playlists . this is in favour of today 's chart toppers from the likes of rihanna and sam smith .\ndarts stars michael van gerwen and raymond van barneveld head into premier league darts ' ninth leg in manchester on thursday . world no 1 van gerwen beat countryman van barnevld 7-2 last week to remain undefeated in the competition . the pair posed with compatriots daley blind and robin van persie at old trafford on wednesday .\njewelry brand jet set candy 's marry british royalty spinner charm is available in 14k gold vermeil and sterling silver . it offers eight possibilities for a ` future husband ' - including prince george and prince harry . the charm comes in a variety of different colors and comes in sizes from 2-16 .\nthe illume arclighter uses electricity to ignite candles and paper . it 's claimed to be the first flameless gadget of its kind and lights in any direction . instead of using a spark and fuel mechanism , the device creates a ` super high-intensity ' electrical arc between two ceramic electrodes . it does n't need to be refilled with fuel but is instead powered by a rechargeable lithium ion battery . the device costs cad$ 40 -lrb- # 21 or us$ 32 -rrb- via kickstarter and is expected to ship in november .\nred dresses radiates energy and sexiness . but that can all be wrecked if the style does n't suit you . we asked kate battersby to try six looks to see which work and which do n't . here she gives them a verdict on their fit , style and colour .\nlionel messi should be fit to face celta vigo on sunday . barcelona forward has been training following a minor foot injury . celta forward nolito has urged messi to spend the day on the beach . messi missed argentina 's friendlies against chile and uruguay .\ngreen party manual for volunteers urges activists to dress in ` mainstream ' fashion . advises them to appear ` level headed ' and ` agreeable ' and compliment people 's homes . also provides stock answers to ease voters ' concerns about party 's radical platform . comes amid growing scrutiny of green party 's manifesto commitments after membership surged to 50,000 .\nbrown signs normally point to attractions or sites of historic significance . but in dornoch , tourists are pointed towards the local slaughterhouse . the abattoir is in the process of being demolished , say local butcher . the bizarre sign caused an online stir after it was posted on twitter .\nmarcel hirscher created a colourful slalom run at reiteralm near schladming . the skier teamed up with the red bull media house and starelation . biodegradable powder was packed into the poles he swerved around . the process involved 11 cameras , a specially-enhanced slope , and three days to set up .\nmalia , 16 , will go to college in the fall of 2016 . she is already visiting colleges in preparation for when she heads to school . president obama said he 's ` sad ' and he ` starts tearing up in the middle of the day and i ca n't explain it '\ntravelmail brings you an expert guide to holidaying like millionaire . from private islands and aston martins to castles and 75ft yachts . no six-figure salary or coutts bank account necessary . if you know where to look and when to book you can save thousands .\nbarcelona trio lionel messi , luis suarez and neymar have scored 102 goals together this season . messi scored twice , while suarez and his team-mate neymar also netted in 6-0 win over getafe on tuesday night . barcelona are five points clear at the top of la liga after their win .\nbritish no 2 aljaz bedene has switched allegiance from slovenia . bedene lost to czech youngster jiri vesely in the quarter-finals of the grand prix hassan ii in casablanca . the 21-year-old will play spanish veteran daniel gimeno-traver in the semi-finals .\nboobesh palani , 26 , was rescued from the water in wellington harbour on monday night . two teenage girls risked their lives to save the man 's life . they were helping a friend tow his car when they heard his screams . police released a picture of the man on news websites in the hopes the public would help identify him . mr palani was known to a new zealander travelling in sri lanka who saw his photo online and told the police of his name . he died at wellington hospital on tuesday .\ntortoise was captured on camera scuttling across the sands of the kalahari desert in south africa . big cats surrounded the reptile and attempted to scare it out of its shell . but the tortoise kept well tucked up inside its tough exterior forcing the big cats to wander off .\ncharlotte roach , 26 , from london nearly died after a car crash . she and business partner rosemary pringle , 28 , decided to give up normal clothes for lent . the pair dressed up in fancy dress for 40 days to raise money for the air ambulance service . the charity saved charlotte 's life after she was involved in a car accident in 2010 . she was left with severe injuries and had screws put into her spine .\npackages containing heroin and cannabis were cleared from the roof of hmp altcourse in liverpool . they were hurled there by friends of inmates who missed their intended targets . the hydraulic crane also recovered 22 phones , three sim cards and six chargers from the 60ft roof .\nkristi gordon , of british columbia 's news channel global bc , was joined by her fellow anchors robin stickley and squire barnes as they reflected upon the degrading comments the mom has received about her second pregnancy . the online bullies , who left no name or return address , added : ` we now turn off global . the group '\nmysterious ` ring of fire ' is illusion created by chance alignment of two galaxies . rare manifestation of gravitational lensing predicted by einstein . alma telescope in chile captured highest resolution images ever taken . sdp .81 is an active star-forming galaxy nearly 12 billion light-years away .\nvlad tarasov filmed himself skiing down the slopes at boston 's largest snow farm located in the city 's seaport district . the one-minute video gives a first-person perspective of pushing through the filthy , trash-filled ice pile that served as a dumping ground for the snow . tarasovsky recalls having to avoid junk including rusted lawn chairs , parking cones and broken bottles . he hit a dead seagull .\nsir ranulph fiennes has become the oldest briton to complete the marathon des sables in the moroccan desert . the 71-year-old explorer has previously suffered two heart attacks and underwent a double heart bypass in 2003 . he has raised almost # 1million for marie curie , previously raising # 6.3 m.\nkeith anthony allen , 27 , of columbus , ohio , pleaded not guilty monday to charges including rape , felonious assault and gross sexual imposition . allen is accused of raping two 12-year-old girls since september and fondling a third girl . the assault charges allege he raped the girls while knowing he was hiv-positive and had consensual sex with a woman without telling her he has the virus that causes aids .\nadi viveash 's chelsea u19s side beat roma 4-0 in the uefa youth league semi-finals . charlie colkett , dominic solanke and tammy abraham scored for the blues . chelsea will now face shakhtar donetsk 's u19 team in the final .\njames creag has the condition erythropoietic protoporphyria . it means he is allergic to sunlight and can not be exposed to the sun . he has to wear a special brown suncream to protect his skin from the sun 's rays . but when he wore it , he was racially abused by strangers . he is now too scared to go outside and has stopped wearing the cream .\nmother-of-three natalie prescott , 26 , nearly lost her legs after the accident . she dived 40 feet off appley bridge quarry , near wigan , in 2012 . doctors managed to save her legs , but she was unable to walk or stand . she had several operations during a three-month hospital stay . natalie is now campaigning to have the quarry closed off to the public .\nuefa has published champions league regulations for next season confirming a seeding change to reward national league winners . top-seeded teams in eight groups will be the defending champions league winner plus title holders in the seven highest-ranked countries . on current standings , arsenal , atletico madrid and porto will drop in status in the august 27 draw .\nformer londoners patrick and valerie jubb are trying to sell their home . they bought the four-bedroom property in jimena de la frontera in 2008 . but the town hall ruled the first floor , kitchen and pool were illegally built by previous owners in 1994 . patrick , 64 , said : ` we are in absolute pieces over this '\nnewly opened fiona stanley hospital in southwest perth was found to have blood and bone fragments of some medical instruments . two trainee obstetricians have been removed from the hospital over concerns about the quality of service and problems with patient safety . the hospital went on ` baby bypass ' when the maternity unit opened four months ago .\nmartin o'malley and jim webb are both toying with a presidential run . but the two democrats share little in common . o'martin is a former mayor and maryland governor . webb is a decorated vietnam war veteran and former senator from virginia . both shared a stage at the polk county democrats awards dinner in des moines , iowa .\ngary neville says chelsea winger eden hazard must become a bully to defenders if he is to be considered among the best in the world . the former manchester united right-back feels hazard is on par with arjen robben , thomas muller , neymar , gareth bale and james rodriguez . neville says cristiano ronaldo and lionel messi are ` in outer space ' by comparison .\nfour louisiana state university students were busted on interstate-10 in mobile county , alabama . harrison coogan , hunter coker , carson buckner and brandon barber were stopped for an expired tag . they told police they were heading to gulf shores for spring break celebrations . authorities found more than 2,000 cans of beer , ten litres of spirits and several litres of wine . the suspects will likely be charged with underage alcohol possession .\nmay made comments after sue perkins announced she was leaving twitter . he said top gear viewers who sent threatening tweets should ` kill themselves ' perkins was a favourite to replace jeremy clarkson after flurry of bets . may is currently touring the uk with clarkson and richard hammond . the bbc has stripped all branding from the show following clarkson 's sacking .\nworld no 1 michael van gerwen beats james wade 7-0 . gary anderson beats van gerwen 7-5 in the night 's finale . anderson lost 7-1 to stephen bunting in the opening match . raymond van barneveld came from behind to defeat dave chisnall . phil taylor drew 6-6 with adrian lewis in a thrilling contest .\nthere are up to one million free-roaming dogs on romania 's streets . ` euthanasia ' of strays was legalised by the romanian parliament in 2013 . but a group of former models called the k-9 angels have rescued hundreds of dogs from the streets where they would be savagely killed . they claim government funds for programmes aimed at neutering the animals were never implemented . the angels claim the animals are dealt with in the ` most cruel way ' they have re-homed at least 700 dogs in the uk and spayed over 2,500 .\nchelsea 's eden hazard and nathan ake took part in audi 's football challenge . hazard and ake took on blues ' team-mates loic remy and willian . the players were set a series of challenges to sink balls into cars . hazard , ake and remy won the first two rounds .\nlouis van gaal says he will discuss manchester united with sir alex ferguson . united boss hopes to have some genuine and tangible progress to talk about . van gaal 's side face aston villa on saturday in the premier league . victory would see united leapfrog manchester city into second place .\nearl arthur olander was found dead at his home in rural minneapolis on saturday . the 90-year-old was found with his hands tied behind his back and beaten to death . police say he was covered in cuts and bruises and his home had been ransacked . neighbours have spoken of him as a ` stand-up person ' and wonderful role model .\nlunch . pink top , # 125 , lkbennett.com . floral print skirt , # 109 , fennwrightmanson.com . sandals , # 34 , office.co.uk . clutch bag , # 145 , russellandbromley.co. , uk . aurora crystal earrings , # 54 , qvcuk.com , .\ngatso had enforced 30mph speed limit on residential road in handsworth , birmingham . but it has not been working for two years after every single fixed device was switched off in the west midlands . around 300 speed and traffic camera , using old technology , were turned off across the region in march 2013 .\nvideo footage of creepy doll has been wreaking havoc on paranormal enthusiasts . paranormal investigator jayne harris has received influx of messages from people describing chest pains , nausea and crippling headaches . some reported flashing visions of ` mental institutions and treatment bordering on abuse ' and overwhelming feelings of anxiety . one woman even suffered an alleged heart attack after watching a video of mrs harris and peggy in a car together on march 16 .\ntottenham host newcastle at st james ' park on sunday , april 19 . newcastle fans are planning to boycott the game in protest at owner mike ashley . a social media campaign has been launched for the match . newcastle are currently just above the relegation zone . click here for more newcastle united news .\ncctv images show man police want to speak to after ` peeping tom ' incident . woman , 19 , was changing in cubicle in aqua vale swimming pool in aylesbury . she noticed a man looking under the bottom of the cubicle and kicked him . police believe incident is linked to a similar incident at the same pool in february .\nfilipe luis insists he wants to stay at chelsea until the end of his contract . atletico madrid are considering bringing him back in the summer . the full back signed a three-year contract when he moved from the spanish champions last july . luis has struggled to make the left back position his own at stamford bridge .\nreal madrid beat rayo vallecano 2-0 on wednesday night . cristiano ronaldo scored the 300th goal of his real madrid career . iker casillas kept a clean sheet in the win at the bernabeu . the spain international has been subjected to heavy criticism this season .\nimages show the chaos caused by a sandstorm in the united arab emirates . flights bound for dubai international airport have been diverted . people have been forced to wear masks to protect their lungs . forecasters say the sandstorm is set to continue over the weekend . in abu dhabi , a 24-year-old man was airlifted to hospital after his car crashed .\nsome airports are known for their long queues and lack of facilities . but travellers are also complaining about the lack of food and services . lax in los angeles has been named the worst airport in the world . new york 's laguardia airport has been described as ` unforgiving '\nbusiness leaders have labelled surfers paradise meter maids as outdated and no longer providing a service . started in 1965 , meter maid 's were the brainchild of gold coast developer bernie elsey . they were introduced to stave off the bad publicity associated with newly installed parking meters . but local business owners say they are no longer performing a public service as parking meter technology has improved .\nlewis hamilton won the chinese grand prix in shanghai on sunday . his mercedes team-mate nico rosberg criticised him for his tactics in the race . the briton insists he is prepared for further criticism from his team-mates . hamilton leads rosberg in the drivers ' championship by 13 points .\nnew england patriots coach bill belichick was caught ogling model chrissy teigen 's derriere at the white house correspondents ' dinner on saturday . his girlfriend linda holliday tweeted that she ` even looked ' at teigen . teigen posted a picture of herself with the president and first lady on instagram on monday .\nfern britton , 57 , reveals how close she came to suicide after divorce from clive jones . mother-of-four had first experience of depression as a child and has suffered attacks since . she has been married to tv chef phil vickery , 53 , for 15 years .\nphilippine embassy welcomes reprieve . mother of two mary jane veloso is spared execution . indonesian president joko widodo says he 's cooperating with the philippines . veloso was arrested in 2010 after $ 500,000 worth of heroin was found in her luggage . the mother of two was sentenced to death by firing squad .\nmax is a 18.5 in high fully-grown husky corgi cross . he was abandoned and is now looking for a new home . he has been taken in by the dogs trust in basildon , essex . there are currently 54 other wolf-like breeds being cared for .\ncastellon baronale , is situated just 31 miles -lrb- 50km -rrb- from rome . the castle was once used as a fortress by napoleon bonaparte . it has nine en-suite bedrooms , a lavish ballroom , library , gym and even a theatre . the property was built in the 12th century by pope urban viii 's nephew , cardinal barberini .\na dress worn by vivien leigh when she played scarlett o'hara in the classic 1939 film gone with the wind has fetched $ 137,000 at auction . the gray jacket and skirt , featuring a black zigzag applique , plus more than 150 other items from the academy award-winning film at auction on saturday in beverly hills , california . the dress - a jacket and full skirt ensemble - was worn in several key scenes in the 1939 movie but has suffered a little with age and has faded to light gray from original slate blue-gray color .\negyptian court sentences 71 people to life in prison for burning of a christian church . the virgin mary church was torched and looted by a mob in august 2013 . it was one of at least 42 churches and many more businesses and homes targeted . some blamed the church and other attacks on supporters of the muslim brotherhood .\nmichelle williams , questlove and janelle monáe among those to tweet about the shooting . south carolina senator tim scott also added his thoughts on the killing . officer michael slager was charged with murder on wednesday and could face the death penalty . scott was shot dead by slager on saturday morning in charleston , south carolina . the 50-year-old was unarmed and running from the cop when he was shot . slager initially claimed that he feared for his life and scott wrestled a taser from him .\nthe gr20 trail runs down the mountainous spine of corsica and is the toughest trek in europe . wendy was following the ancient sentiers de transhumance , footpaths used for more than 1,000 years by shepherds leading their animals to summer pastures . she hiked for ages without meeting another person .\njamyra gallmon , 21 , of washington d.c. , was arrested on wednesday . she has been charged with first-degree felony murder while armed over the killing of 30-year-old david messerschmitt . police had released surveillance video of a ` person of interest ' who was seen entering the donovan hotel shortly after messershmitt texted his wife kim vuong . the married lawyer was found dead in his hotel room the next day . police sources said gallmon was in the video and that she went to the hotel that evening for a ` sexual encounter '\nthe coachella valley music and arts festival costs an average of # 187 per day . it is the most expensive festival in the world , followed by tommorowland . england 's glastonbury is the third most expensive with a # 113 per day cost . exit serbia is the cheapest festival with daily costs reaching just # 54 .\nhuma abedin , 38 , was spotted with her husband anthony weiner and son jordan , 2 , in new york on saturday afternoon . they were dining at the quaint tortaria restaurant off union square . it is just days after the couple were caught on camera eating at a chipotle in iowa .\na new report from suncorp bank suggests australian 's have spent 50 per cent more on digital devices than they planned in the last year . men spent twice as much as women on computers , digital accessories , mobile apps , and streaming services . families with children living at home are spending 50 per per cent . more than one third of households do n't budget for technology or wildly underestimate how much they will spend .\nclaire nugent , 43 , and nigel morter , 47 , have been married for 14 years . they restored a 1940s airfield control tower in norfolk and now run it as a b&b . they spent # 200,000 getting it back to how it used to be .\nparents of boston marathon bombing victim urge justice department to drop death penalty . they say they understand `` heinousness and brutality of the crimes committed '' they say dzhokhar tsarnaev should spend rest of his life in prison without parole . tsarnaev was convicted last week on all 30 charges related to the 2013 bombings .\nchildren who spend an extra 40 minutes a day in the sunshine improve their sight . scientists had thought reading or looking at a screen could cause shortsightedness . but they now think it could be down to a lack of natural light . in china , where four teenagers in five are short-sighted , transparent classrooms are being tested in a bid to increase pupils ' exposure to natural light .\nryan burns of eureka , california , went out to investigate where the beeping was coming from and caught the pooch in action . footage shows the animal standing up with his front paws firmly pressed on the horn . he refuses to get down from the device even when the camera zooms in . burns later uploaded the video clip online with the dog 's owner stepping forward .\nswansea host everton in the early premier league kick-off on saturday . veteran full-back angel rangel is in line for his first swansea start for over two months at home to everton . romelu lukaku remains a doubt for everton 's trip to swansea city with a hamstring injury .\nbelinda bartholomew says she was racially abused by a man at a bondi butcher on monday night . the young woman was buying a chicken for her and her roosters star boyfriend aidan guerra to have for dinner . she claims she was told to ` go to a f *** ing aussie butcher ' when she asked for a different chicken . but the butcher who was working at the shop has hit back saying ms bartholew is ` lying ' and trying to ruin the business .\nproud aussies have taken to social media to remember the sacrifice of the anzacs . record numbers gathered at dawn services across the country to commemorate the 100th anniversary of the gallipoli landing . social media has been flooded with images of anzac day services across australia .\ndawn and jamie appeared on the jeremy kyle show on monday . jamie refused to take one of the show 's famous lie detector tests . he then admitted to having sex with one of dawn 's friends . but dawn then revealed she had also had a fling with someone else . she then threw the ring in his face and stormed off the stage .\noliver pareece jones , 37 , was caught on surveillance camera checking out of the four points sheraton hotel in los angeles on april 5 at 6.26 am . he then took out $ 800 in cash before making a stop at a walmart in rancho cucamonga , california . jones then was seen in surveillance footage at the walmart on foothill boulevard around 8.45 am where he purchased items including clothes , a radio , backpack and camping gear . after he left the store , he withdrew another $ 100 in cash , police said . jones , who owns a pecan business in chihuahua , mexico , has not been heard from since .\ntomas berdych advanced to the semi-finals of the monte carlo masters . the czech advanced after opponent milos raonic retired with a foot injury . raonic called a trainer after dropping serve for the second time to trail 5-2 in the first . berdych will face either grigor dimitrov or gael monfils in the semi .\nsocial media users have been left scratching their heads over some of the manipulated snaps being shared during new south wales ' worst storm in a decade . a crocodile was spotted in flood water at lewisham station , a shark was spotted at the bottom of a train station escalator and a man was seen surfing in front of the opera house . a trampoline believed to have blown into the sky in the cyclone-strength gusts in nsw was actually a victim of hurricane sandy in milford , connecticut , usa .\nfabio lovato , 30 , proposed to his girlfriend laura knight , 29 , in a cineworld in gloucester . he created a short video showcasing pictures of their time together in australia . the video played at the end of the trailers of fast and furious 7 . fabio then got down on one knee and popped the question to his shocked girlfriend .\nreal madrid beat rayo vallecano 2-0 on wednesday night . cristiano ronaldo was booked for diving in the box by antonio amaya . the portuguese was suspended for one game but will now be free to start against eibar . real madrid boss carlo ancelotti said he would appeal the booking .\nresearchers conducted one of the world 's largest studies into hrt . women 's health initiative in the us and million women study in the uk found strong evidence that hrt increases a woman 's risk of breast , womb and ovarian cancers . women who take combined hrt have an increased risk of cancer up to eight years after they stop treatment . if women use hrt for more than 10 years , their risks are even higher .\nunion barons gave more than # 700,000 to ed miliband 's party in second week . labour received # 1.1 million in donations between april 6 and april 12 . more than twice as much as the conservative party which received just # 492,512 .\nloved-up couples around the world share their intimate proposal moment via the website howheasked.com and instagram account howheask . alongside the thousands of pictures are the couples ' touching proposal stories . one parisian proposal was captured by a photographer secretly hired by the gallant groom-to-be .\npatients at wolfson children 's hospital are able to remotely play with animals at the jacksonville humane society shelter . the system uses high-definition cameras and interactive toys . children can control three different cat toys at the shelter with the push of a button , and then watch on the tv in their room as the animals react and play with them .\nthe hilti dd350 was used by thieves during the brazen heist over easter weekend . gang used the power tool to cut through the wall of the secured vault . they raided 72 security boxes before escaping with wheelie bins full of gems . scotland yard released a photograph of the drill tonight as it offered # 20k reward . detective superintendent craig turner said crime had been carried out by ` ocean 's 11 type team '\ngroup included four children , a turkish official says . the nine were arrested at the turkey-syria border , the turkish military says . it did n't say why the group allegedly was trying to get into syria . the british foreign office says it is aware of reports of the arrests .\nmedical professionals at the university of arkansas for medical sciences in little rock ruled out several causes for a 56-year-old man 's kidney problems before blaming the 16 cups of iced tea he drank daily . black tea has high levels of oxalate , a chemical known to produce kidney stones and even lead to kidney failure if consumed in excessive doses .\nshibu inu puppy filmed conversing with a young husky dog at an american kennel club centre . the two dogs begin yapping , whining and barking at one another as passers-by laugh . the video concludes with the husky losing interest and chewing on its handler 's sleeve .\nresearchers at imperial college london have found a protein which helps boost the body 's immune system ten-fold . the protein promotes the production of immune cells called cytotoxic t-cells . they have the ability to detect cancerous cells , hunt them down , and destroy them . team has already applied to patent the therapy , which they say could be ready for human trials within three years .\nandrew anderson , 43 , ` strategised ' his shopping and grabbed a 32in tv at tesco . but social worker julie mcgoldrick , 53 , grabbed the same one at the same time . she slipped her hand behind cable and tried to hang on but fell to floor in pain . mr anderson was arrested and mrs mcgoldricks taken to hospital with wrist injury . but judge has now cleared him of any wrongdoing , saying chaotic scenes made it hard to blame anyone .\njane laut , 57 , shot dead her husband david laut outside their california home the night of august 28 , 2009 . prosecutors dropped their case against her then refiled it immediately on friday . it came after a judge denied for the third time a request to delay trial . laut claims she wrestled a gun from her abusive husband after he became intoxicated and said he was going to kill her after he killed their 10-year-old son and their dogs .\nex-army tank driver ian gibson had his kneecap blown off in combat more than 30 years ago . he is suing his employer after he was nicknamed ` hoppy ' by a colleague . mr gibson claims he was subjected to a tirade of ` horrible harassment ' while working at h and g contracting services ltd at heathrow airport .\nnedum onuoha is being targeted by hull city and west ham united . qpr centre back is one of several players poised to leave the club . the 28-year-old has 15 months left on contract at loftus road . stoke , everton and west ham are also interested in the defender .\nrachelle owen , 16 , died after being struck by a train on friday night . her mother kay diamond , 44 , was found dead in a flat in toxteth , liverpool , in february . a 52-year-old man has been charged with her murder and is awaiting trial . friends of miss owen said she ` just wanted to be with her mum '\nusain bolt says he wants to break his own 200-metre world record . the jamaican sprinter ran the distance in 19.19 sec at the 2009 world championships . bolt is currently in rio de janeiro , acclimatising ahead of next year 's olympic games . he will compete in the ` mano a mano ' 100-metres event on sunday .\nnext has overtaken marks & spencer on profits . britain 's biggest fashion retailer has an impressive line in designer copies . they sell for a fraction of the price of the big labels . last year next began selling designer labels , including dkny and dolce & gabbana .\ntimothy rogalski , 30 , called the school on tuesday morning and left four messages on its office answerphone . the fifth time he called , he spoke to an administrative assistant . in the calls , he accused staff of being behind the december 14 , 2012 shooting that left 20 children and six female educators dead , according to police in monroe , connecticut . he also said the boston marathon bombings in april 2014 were fake , police said . the calls were traced to his home in wallingford , connecticut , about 40 miles from where the shooting unfolded in newtown in 2012 . he was arrested and charged with harassment and disorderly conduct .\ntwo 17-year-old boys from dewsbury , west yorkshire , believed to have fled to syria . one of the boys is believed to be a relative of hammaad munshi . munshi was just 15 when he joined a cell of islamic fanatics targeting the royal family . he was found guilty of terror offences at the age of 18 in 2008 . the pair have not been in contact with their families for several days . they are thought to have boarded a thomas cook flight from manchester airport to dalaman in turkey on march 31 .\nmindful meditation practice has similar recurrence rates as drugs . study found mbct could be an ` alternative treatment ' for those averse to drugs . mbct teaches people to focus on the present moment and not worry about the future . study was published in the lancet journal .\nwe vetted a list of organizations working in nepal that have created specific funds for relief efforts . actionaid usa , action against hunger , adventist development and relief agency international are among those involved . the salvation army , samaritan 's purse and seva foundation are also on the list .\nsportsmail counts down 20 greatest shots ever seen at augusta national . arnold palmer , sandy lyle and phil mickelson feature in top 10 . gene sarazen 's shot on the 1935 masters will be remembered forever . greg norman 's shot to win the 1987 masters is also included .\nacademy of country music awards celebrated its 50th anniversary on sunday . the show was held at the dallas cowboys stadium . it was the biggest audience for a live tv awards show ever . here 's our breakdown of the 10 best and 5 worst moments at the 2015 acms .\ntories claim russian leader vladimir putin would be happy with ed miliband as prime minister . defence secretary michael fallon led a ferocious assault on the labour leader . claims he is a ` backstabber ' who can not be trusted not to sell out in a ` grubby ' deal with the snp .\naaron hernandez is sentenced to life in prison without parole . he was convicted of first-degree murder in the death of odin lloyd . the former new england patriots star appeared upset but calm as the verdict was read . lloyd 's family says they forgive hernandez for his actions . .\nlib dems want to seize control of the department for education . nick clegg says it would be a key demand of any new power-sharing deal . he said he wanted to avoid a repeat of ` ideological gimmicks ' of michael gove . mr gove was the first tory education secretary when coalition formed .\nmichelle heale , 46 , of tom 's river , new jersey , found guilty of aggravated manslaughter and child endangerment . she was acquitted of murder but faces 30 years in prison for killing 14-month-old mason hess . heale claimed she was trying to burp the boy when he began choking on applesauce . but when she pulled him off her shoulder his neck snapped backwards , killing the boy .\nboxing legend manny pacquiao has two platinum albums to his name back home in the philippines . he also has his own sitcom , show me da manny , plus a game show , manny many prizes . he is being pursued for # 33m in unpaid taxes but remains a twice-elected and popular congressman .\n60 minutes correspondent lara logan is back home and recovering after being hospitalized for the fourth time this year . she was attacked by a mob of 200-300 men in cairo 's tahrir square in february 2011 . the foreign affairs correspondent has digestive diverticulitis , which could have been aggravated by stress . she has since returned to the middle east and reported on isis persecution of iraqi christians .\nfriday is the 10th anniversary of the bali nine drug smuggling operation . myuran sukumaran and andrew chan were sentenced to death in 2005 . the pair are currently on execution island in java awaiting their fate . sukumarans ' cousin is holding an exhibition of his paintings in london . the talented artist 's birthday could well be his last . the court has previously recommended a life sentence for reformed inmates .\nmario balotelli was not included in the liverpool squad to face arsenal . the striker picked up a ` slight knock ' in training on friday . brendan rodgers said balotlli felt ` too sore ' to travel to london . the italian has scored just four goals in 25 appearances for liverpool .\nformer lecturer martyn reuby claims he was sacked by the union for complaining about being hired on a zero-hours contract . tribunal rules he was employed to teach unite courses . unite has led the campaign against the use of zero-hour contracts . labour leader ed miliband has received more than # 13million from unite since becoming leader in 2010 .\nchinese scientists are said to have modified human embryos . the changes were made to the dna of sperm and egg cells . this means the changes can be passed on to future generations . scientists have described the move as ` dangerous and ethically unacceptable ' they fear it could be used to ` select ' the genes passed on . but others argue that the technology could also be used for curing diseases .\njeremy clarkson will return to bbc but not on top gear , says bbc2 boss . kim shillinglaw said there was ` no ban on jeremy being on the bbc ' she also revealed that clarkson 's final moments on the show will be aired . clarkson was sacked from top gear last month after hitting a producer . he was suspended by the bbc and his contract was not renewed .\nmayor of london urged ukip voters to ` swing behind the conservatives ' warned of ` nightmare ' of labour government propped up by snp . insisted ukip supporters are in ` increasing psychological conflict ' over vote . said a vote for ukip is a ` vote for ed miliband ' in the election .\nmanchester united beat manchester city 6-1 in the derby on sunday . wayne rooney was handed the captain 's armband by louis van gaal last summer . the england captain has revealed he is captaining the team ` his own way ' rooney has played alongside leaders steven gerrard and john terry for england .\njapan plans to put an unmanned rover on the surface of the moon by 2018 . the country 's space agency has revealed the plan to an expert panel . the mission is expected to be used to perfect soft-landing technologies . china and india are the only other nations to have so far landed craft on the moon .\nkenneth stancil iii , 20 , was found sleeping on a florida beach on tuesday morning . he was arrested nearly 24 hours after he allegedly shot dead his former work-study supervisor ron lane at wayne county community college in goldsboro , north carolina . stancil 's mother said lane had fired him without notice and claimed that lane had ` made inappropriate sexual advances toward ' him . police are investigating the shooting as a possible hate crime . lane had been in a relationship with a man named chuck tobin , who was found dead last year . stanceil faces one count of open murder .\nphotographs taken with the first ` secret ' handheld camera will go on display on saturday at the state library . the crowd source collection holds around 150 photographs taken by arthur syer , a 27-year-old man living in sydney . the detective camera gave amateur photographers the opportunity to capture the true essence of life on sydney streets . it was the first time people were confronted with the idea of being photographed without their knowledge .\nlelisa desisa of ethiopia won the boston marathon in 2013 and donated his medal to the city after the terrorist bombings . he finished with an unofficial time of 2 hours , 9 minutes , 17 seconds and beat his previous winning time by more than a minute . caroline rotich of kenya won the women 's division with an unofficial time of 2.24:55 . she edged out ethiopian mare dibaba of ethiopia in a sprint finish on boylston street .\nthe modern family actress and her then fiancé nick loeb , 39 , are embroiled in a legal fight over her frozen eggs . a magazine claims loeb has filed a lawsuit against his ex-fiancee sofia in a bid to prevent her from destroying two cryopreserved female embryos created through ivf . it is claimed she was ` physically and mentally abusive ' to loeb . the couple had planned to use a surrogate in 2012 but the procedure failed .\nhealth worker has been placed in isolation at canberra hospital . she developed symptoms which could be the deadly ebola virus . the woman worked at an ebola treatment clinic in liberia . she arrived in australia on april 5 . she is being treated in complete isolation in a single room . doctors and nurses are wearing full protective clothing . health officials say it 's most unlikely she has ebola .\nyener torun has been photographing the colourful new buildings in istanbul for 14 years . the 32-year-old photographer has more than 50,000 followers on his instagram page . he aims to show a clean minimalistic view of the city , as it contrasts with the ornate , ottoman architecture .\nmario balotelli was delighted after sergio aguero opened the scoring for manchester city against manchester united . the italian striker tweeted : ` yeeeees city @aguerosergiokun !!! 1-0 old trafford ... stand up and shut up ' balotlli and his liverpool team-mates face newcastle united on monday night .\nwayne rooney was substituted in the 88th minute after injuring his knee . manchester united lost 2-0 to everton at goodison park on sunday . louis van gaal says it is too early to know how serious the injury is . rooney was replaced by robin van persie in the closing stages of the game .\ndutch hosting company transip hired the robots for an event in shoreditch . the dancers , which cost around # 2,500 to hire , were made out of old car parts . they were designed by british artist giles walker , with their moves controlled by a computer .\nthe 5.45 acre estate in san clemente , california , was bought by nixon in 1969 . he entertained 17 heads of state at the home , which overlooks the pacific ocean . among his guests were soviet leader leonid brezhnev and henry kissinger . nixon retreated to the home after his resignation in 1974 after the watergate scandal . he wrote his memoirs at the house , and filmed famous frost-nixon interviews . he then sold it to political ally gavin s. herbert , who has now put it on the market .\nbuddhist monk wu yunqing was preserved at lingquan temple in anyang . he was put in a crystal display case sitting in the traditional lotus position of prayer . now 17 years on , his facial features and wispy beard are still clearly visible .\nformer inkster police officer william melendez is charged with assault and mistreatment . he is seen in police car dashcam video punching unarmed motorist floyd dent . dent , 57 , was arrested after the january traffic stop on charges of drug possession . police chief vicki yost has resigned , the inkster city manager says .\ndea agents in colombia were taking part in alleged ` sex parties ' with prostitutes funded by drug cartels . several dea agents were taking . part in these parties in bogota as early as 2001 , said a summary of a dea report released by the . house committee on oversight and government reform at a hearing on the misconduct . this news comes two weeks after a report found that at least 7 agents admitted sleeping with prostitutes while on overseas assignments .\nthe sorority housekeeper at the university of southern california has worked at the gamma phi beta sorority for 24 years . fannie randle was driving to work every day in an old car that was held together with duct tape . former gamma phibeta president alicia jewell wanted to give her one last gift before graduation in may . miss jewell enlisted her sorority sisters and several former gamma phi beta alumni to raise money for ms randle 's new car on the crowdsourcing website gofundme .\nlast week , california gov. jerry brown ordered mandatory statewide restrictions on water use . julian zelizer : the california drought has significance for the whole nation . he says the state is leading the way in recognizing that population and growth must respect limits . zelizer says the drought is not a consequence of climate change , but it could have been worse .\nrachel lehnardt , 35 , was arrested last saturday after she allegedly hosted a party at her home in evans , georgia , for her teenage daughter and her friends . she allegedly allowed them to drink and smoke marijuana before they played naked twister , she had sex with an 18-year-old man and used sex toys on herself in front of them . she then allegedly awoke to find a 16-year old having sex with her . her daughter , 16 , has now defended her mother , saying : ` everyone makes mistakes ' she also denied that the boy was her boyfriend , as previously reported and claimed by lehnar 's lawyer .\nteaching watchdog is investigating current and former staff members at schools in birmingham . allegations include an al-qaeda style video being copied and pupils punished . teachers also alleged to have exchanged 3,000 messages in a whatsapp group . they included offensive comments about british soldiers and claimed murder of lee rigby was a hoax .\nnicola sturgeon said labour had no chance of winning majority on its own . party is on course for landslide north of the border and could hold balance of power . miliband yesterday insisted he would not agree to ` confidence and supply ' deal . but he refused to rule out relying on snp votes for key legislation .\nthe california department of corrections has set up a unit for former gang members . the sensitive needs housing unit is set to protect former members from the gangs . the units are located in level iv maximum-security facilities . the most dangerous inmates serve their time in these facilities . as much as 97 per cent of the inmates in these prisons are gang affiliated .\nrussia lifted ban on supplying iran with air defence missile system . move likely to anger both the u.s. and israel at time of heightened tensions . moscow blocked deliveries of the surface to air missiles in 2010 . but ban lifted after tehran struck deal with britain and five other countries .\nmick schumacher made his formula 4 pre-season test debut in germany on wednesday . the 16-year-old is the son of seven-time f1 world champion michael schumachers . mick signed a contract with van amersfoort racing to drive in the formula 4 in march .\nnasuwt says children drink ` excessive ' amounts of red bull , monster and relentless . general secretary chris keates likened the drinks to ` readily available legal highs ' 13 % of teachers surveyed cited use of energy drinks as a driver of poor behaviour .\nreverend robert schuller , 88 , died early thursday in california . he was diagnosed with a tumor in his esophagus in 2013 and began treatment . schullers ministry was part of the reformed church in america . he and his late wife , arvella , started a ministry in 1955 with $ 500 when he began preaching from the roof of a concession stand at a drive-in movie theater southeast of los angeles . in 1980 , he built the towering glass-and-steel crystal cathedral to house his booming tv ministry . at its peak , in the 1990s , the program had 20 million viewers in about 180 countries .\nauckland coastguards receive unusual call out to a homemade boat race . about 5 homemade ` boats ' were taking part in an annual fishing event . the attendees included a couch strapped to a stack of tyres and a floating subaru car . one vessel capsized outside of the harbour , causing three people to have a bit of a paddle . two men on a dodgy dingy were transported back to the shore .\nfederal indictment names fedex as defendant in war on drugs . david frum : can companies be charged with crimes ? he says yes , they can ; they are prosecuted like people . he says law allows them to be liable for `` possessing '' drugs , but not for marijuana . frum says fedex is innocent ; it 's not a criminal offense .\ndr unt tun maung , 43 , fondled teenager 's breasts during a routine exam . father-of-one was working as a locum gp when he assaulted the patient . he asked the vulnerable teen to remove her bra before cupping and squeezing her breasts . maung was jailed for 18 months and placed on sex offenders ' register .\nthe former australian prime minister and his wife therese rein have said goodbye to their brisbane home after 20 years . the tropical queenslander home still managed to sell for over three times what the couple paid when they bought the house just over two decades ago . kevin rudd and his family bought the norman crescent property for $ 384,000 in december 1994 . the house was snatched up by applied economics professor uwe dulleck , who already owns a home in the area with his wife monica .\nsome 1,500 migrants were rescued by italian navy and coast guard ships in less than 24 hours . coast guard ships came to the aid of five boats in the southern mediterranean on saturday and managed to save all passengers . rescues made as newly released figures show an increase of 43 per cent of migrant arrivals into the eu via italy on the same period last year .\njose alberto , 58 , was found dead next to a scarecrow in san jose de balcare , argentina . prosecutors believe he died while having sex with the scarecrow . the shepherd had dressed it up in a long-haired wig and lipstick . the rotting remains were discovered after neighbours called the council .\nmemories pizza in wisconsin was mistaken for a pizzeria in indiana . the indiana business made headlines after it refused to cater a same-sex wedding . the wisconsin business owners say they were shocked by the online backlash . they are now trying to defuse the controversy with a facebook post .\nfa chairman greg dyke wants to save money to improve grassroots football . england c team has been around since 1979 . paul fairclough selects players under 23 from outside the football league . dyke must find # 30million to fund his masterplan to reform grassroots football with more 3g pitches in urban coaching hubs .\nneighbours say they had suspicious power cuts a week before raid . also claim to have heard ` drilling ' noises on good friday night . but thought it was simply a continuation of road works in the area . it has also been alleged that the thieves returned a day after the robbery .\nmother-of-five clare van santen , 37 , has been told her breast cancer is terminal . she was first diagnosed with breast cancer in 2005 , but it has since spread to her liver , shoulder , and brain . the perth woman was first told she was in remission when she was pregnant with her fifth child , elijah , now aged nine . but in october 2013 , she learned her cancer had spread to the brain . she has a bucket list of things she wants to do with her children : keisha , 20 , susan 17 , nikita , 14 , jack , 12 , elijah , .\nenglish tomatoes and asparagus are already on the shelves weeks ahead of usual . waitrose announced early arrival of its first british tomatoes of the year . strawberries are also already on shelves - far earlier than normal . english raspberries saw their earliest ever appearance in the last week of march .\nthe attack killed 142 people , mostly students , at garissa university college . kenyans used social media to share stories , hopes and dreams of the victims . kenyan churches mourned the dead during easter services sunday . the islamist extremist group al-shabaab has killed muslims in recent attacks .\naustralian actress nicole kidman has been slammed by an american union representing 25,000 flight attendants for her new ad campaign with etihad airways . the association of professional flight attendants argues the etihad deal was at odds with kidman 's role as a united nations women 's goodwill ambassador . etihad has rejected the allegation , arguing its commitment to its employees is one of the airline 's top priorities .\nzac efron , 27 , is starring in bad grandpa . he 's one of few child stars to have grown into stunning adults . ryan gosling , justin timberlake and taylor lautner also on list . but many cute boys and girls have failed to grow into hunks .\ndavid cameron accused the bbc of peddling ` b ******* ' after claiming his favourite sport was foxhunting . tory leader hit back at presenter andrew marr , after being left baffled by questions . came as mr cameron turned the clock back to ape john major 's election soapbox . but he was heckled by someone claiming ` the nhs is dying '\nbrazilian supermodel was seen walking for colcci at são paulo fashion week on wednesday . the 34-year-old has announced she is retiring from the runway but will continue to work in the industry . she was joined by her husband tom brady and her parents .\naustralian designer akira isogawa showcased his rainbow collection at mercedes-benz fashion week australia on wednesday . models walked the runway with their faces covered in sequins . hours later , models at bondi bather also showcased the sequinned beauty look . steven khalil showcased bridal couture and stunning evening wear in his show on wednesday at carriageworks .\nimage shows one of saturn 's outer moons , measuring 255 by 161 miles -lrb- 410 by 260km -rrb- named hyperion , the moon 's porous surface can be seen in incredible detail in this image taken by cassini . it appears that hyperion 's surface becomes electrostatically charged as it is bathed in charged particles . cassini was around 38,500 miles -lrb- 62,000 km -rrb- from hyperion when the image was taken almost a decade ago .\npolice urge homeowners to report any suspicious markings on their properties . the symbols are thought to be a ` code ' for crooks to identify potential victims . lanarkshire police tweeted : ` breaking the housebreaker 's code ' the code has only been spotted in east kilbride , lanarksshire .\nbrian the lar gibbon is europe 's oldest lar gibbons and is 50 years old . he was filmed walking across a feild at lake district wildlife park in scotland . the video was shared over 130,000 times before being picked up by the lad bible . it has been viewed over nine million times and compared to running across the landing naked when you forget your towel .\nemma forbes , 49 , bought the mansion in chelsea with husband graham clempson , 51 . the four-storey home has five kingsize bedrooms , five bathrooms and an underground pool . but neighbours have described it as looking like a ` down-market mortuary ' it comes after ms forbes made a handsome profit on the sale of her previous flat .\ntim howard joined everton in the community 's medicash powered wheelchair football team for a training session at croxteth sports centre last week . the toffees goalkeeper was provided with his own wheelchair . howard joined in with some short skills and shooting practice with the team before taking his place in goal for a short game .\ntito vilanova died aged 45 last year after a long battle with cancer . vilanova was part of a golden spell for the club including three la liga titles . he was pep guardiola 's assistant during the club 's most successful era . vilova 's memory was remembered at a memorial service at barcelona cathedral .\npetr cech looks certain to leave chelsea at the end of the season . the chelsea stopper has lost his no 1 spot to thibaut courtois . arsene wenger must make a swift decision on petr cech this summer . liverpool , psg , roma and inter milan are all interested in signing cech .\nthe country of sweden has one of the world 's most generous parental leave policies . mothers and fathers can take up to 480 days off to care for their newborns . fathers have to share that leave with mothers . photographer johan bavman has photographed 35 fathers who have taken advantage of the policy .\non thursday , trey moses , a senior at eastern high school in louisville , kentucky , asked ellie meredith to be his date to the upcoming prom . he surprised her during her p.e. class with a bunch of flowers and a sign reading : ` let 's party like it 's 1989 ' - a reference to an album by taylor swift , ellie 's favorite singer . the 6ft9 basketball star committed to ball state in september after receiving 12 scholarship offers .\ncastleford winger justin carney dislocated his elbow in the tigers ' 25-4 win over hull kr last saturday . australian winger will be sidelined for up to two months after being told he needs to undergo elbow surgery . james clare is expected to take carney 's place against widnes on sunday .\nraheem sterling is currently on # 35,000-a-week at liverpool . the england star has been offered a new contract at anfield . sam allardyce believes sterling 's team-mates will demand more . the west ham manager believes there are too few talented youngsters in the game .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call .\niranians celebrate after nuclear deal with u.s. , other world powers . young people wave flags , blast music , chatted online with hashtag #irantalks . the agreement was struck on the final day of persian new year festivities . iranian foreign minister javad zarif received hero 's welcome as he arrived in iran on friday .\ngloucestershire police tweet picture of lorry after it was left hanging in the air . officers urge drivers to check height of their vehicles on country roads . officers considering pursuing driver for a driving offence . the incident happened between the a417 and cowley in gloucestersshire .\nliam marshall-ascough is standing for stoke-on-trent central in 2015 . he is pictured on facebook appearing to lick a female friend 's breasts . underneath the picture a friend commented ` drunko ' mr marshall-ascough insists the photos were taken seven years ago . he said they show he is able to interact with people - important to the job .\nwigan athletic sacked malky mackay after just five months in charge . the latics are currently eight points off championship safety . mackay was sacked by cardiff city in november after a series of text messages were exposed by sportsmail . the 43-year-old remains under investigation by the fa . gary caldwell is expected to be handed the job on a temporary basis .\ncatholic bishops : christians face persecution for their faith . they say isis has destroyed communities in iraq , syria , libya , pakistan , india , egypt , kenya . they ask that we pray for those who have been killed for their religion . the bishops say christians are an integral part of the middle east 's past , present and future .\npresident barack obama says he 's committed to making sure israel has a military advantage over iran . his comments come amid criticism from israeli prime minister benjamin netanyahu of the deal that the u.s. struck with iran . tehran agreed to halt the country 's nuclear ambitions , and western powers would drop sanctions that have hurt the iran 's economy .\nadam johnson was arrested on march 2 at his # 1.85 million mansion . the sunderland winger has been charged with three offences of sexual activity with a 15-year-old girl and one of grooming . the 27-year old will appear at peterlee magistrates court on may 20 .\njulie creffield was told she was too fat to run when she was a size 18 . completed a marathon in 2012 and has done numerous other races since . now encourages other women to take up the sport regardless of size and ability . appeared on this morning to launch run for your life campaign .\nchanges partially lift veil of secrecy enshrouding policy . travelers can now petition tsa once to find out if they are on no-fly list . second time for an unclassified explanation of why they are banned . in some cases , the government will not be able to provide an explanation .\ntwo-year-old tommy cox is a lookalike of prince george of cambridge . people regularly stop tommy 's mother to take a photo with his lookalikes . tommy 's parents are regularly stopped by people who want to have their photograph taken with the prince 's lookaliked .\ntwo-year-old ronnie tran was abducted by his grandmother and mother . the pair were taken from their home in des moines , washington , on tuesday . police say the mother was stunned with a taser and bound with plastic ties . she managed to untie herself but had to flee without her son , police said .\nnorth charleston , south carolina police officer michael slager shot dead walter scott , an unarmed black man , on saturday . slager 's personnel file shows little evidence that he was considered a rogue officer . residents of the city say they have had numerous complaints about the police in the past , but they were dismissed .\njermain defoe scored the opening goal in sunderland 's 2-1 win over newcastle . newcastle keeper tim krul congratulated defoe on his goal at half-time . sportsmail 's jamie carragher criticised krul for his half - time actions . andrew flintoff also criticised krumul for the half-way celebration .\nsaido berahino could leave west brom for # 20million in the summer . berahinos wants to play in champions league football . berhino is likely to be away with gareth southgate 's england under 21 side in the czech republic until late june . west brom manager tony pulis has begun his pre-season preparations early .\nchildren who ate a diet higher in saturated fats and cholesterol had slower reaction times and a poorer working memory , a new study has found . the university of illinois study found that children who ate the fatty diet performed worse when they were given a task-switching game to complete . researchers at virginia tech college of agriculture and life sciences claim that eating fatty food for just five days can change the body 's metaboilsm for the worse .\neerie scene was captured by a russian youtuber on april 1 . the video shows snow-covered soil flowing down a bank at the side of a road . it 's a rare type of landslide called an ` earthflow ' and is triggered by heavy rainfall . the earthflow crushed trees and left toppled power lines in its wake . it is thought to have happened in the kemerovo region of russia .\nstunning 1961 ferrari 250 gt swb california spider is widely regarded by many as the most beautiful convertible ever made . it was used as the car for the 1986 film ferris bueller 's day off starring matthew broderick . in one of the film 's best-known scenes , the beloved ferrari crashes into the ravine below after cameron accidentally knocks it off the jack . this car , however , is in significantly better condition and has recently undergone a full restoration by ferrari in maranello . it will be sold next month at rm sotheby 's auction in villa erba , italy , and has a guide price of around # 8 million .\npuncheon struck by flying object during second-half of crystal palace 's 2-1 win over manchester city . midfielder sarcastically claps in the direction of city fans after incident . puncheon scored the winning goal in the 48th minute at selhurst park .\ngary bowyer believes blackburn should brace themselves for interest in their players . the championship side were eliminated from the fa cup by liverpool . bowyer has rejected advances for jordan rhodes and rudy gestede . the blackburn boss is considering starting goalkeeper simon eastwood in attack against reading this saturday .\nrunbase is a combination clubhouse , interactive museum and retail store . it is just a few blocks from the marathon finish line , and even nearer to the spot where the second bomb exploded during the 2013 race . the boston runbase scheduled to open april 16 will allow visitors to learn about the world 's most prestigious road race .\nrepublican gov. sam brownback signed the ` kansas unborn child protection from dismemberment abortion act ' into law on tuesday . the law bans the so-called ` dilation and evacuation ' procedure and redefines it as ` dismemberment abortions ' it takes effect july 1 .\nsaturday night live poked fun at hillary clinton 's decision to announce her presidential bid via social media . the show portrayed the former secretary of state as aggressive and driven . she is expected to announce on sunday that she is running for president . bill clinton also made a cameo appearance in the sketch .\njoel edgerton 's great grand-uncles served in gallipoli 100 years ago . nicole kidman 's great-grandfather worked as a private in the military . naomi watts ' great - grandfather served in the indian army as a captain . geoffrey rush 's great uncle , james thomas rush , served in 15th infantry battalion of the australian army . service records for albert jacka - the first australian to be decorated with the victoria cross during wwi - have also been uncovered . ancestry.com is opening the 12 million wwi records for australians to search .\nsamantha and david cameron 's home has been put into the spotlight . but do his belongings live up to etiquette expert william hanson 's expectations ? use his short household audit to see how many of the below items you own . william says that there are several items that you are required to own for your home to be ` posh '\nformer barcelona captain carles puyol is training with a view to a return to football . the 36-year-old retired last may after 15 years at his boyhood club . he struggled to return from a persistent knee injury . puyol could join up with frank lampard or xavi in the us .\nvietnam veteran arnold breitenbach of st. george wanted to get ` cib-69 ' put on a license plate . he was wounded and awarded a purple heart in 1969 . the utah dmv denied his request , citing state regulations prohibiting the use of the number 69 because of its sexual connotations .\nsergeant edwin mee , 46 , ` raped hopefuls because it made job more exciting ' he is accused of abusing his position of power while interviewing recruits . alleged victims were new to the country and unaware of their rights . mee denies 17 counts of sexual assault , three counts of rape and one count of assault by penetration relating to 11 young cadets .\ncuban beauty kathy ferreiro has become a social media hit . the 21-year-old is being tipped by the miami fashion crowd to rival kim kardashian . she has a huge following in colombia and other latin american countries . the aspiring star says that her pictures are ' 100 percent real '\nwedding planners have been seen carrying trees into dunblane cathedral . trees lined the aisle at prince william and kate middleton 's wedding . the scottish tennis star and his girlfriend exchange vows in his hometown . the inhabitants of dunblan have gone into overdrive for wedding .\nindian pm narendra modi has called for `` make in india '' to boost economy . modi and chinese president xi jinping are at the helm of the world 's two most populous nations . but is india ready to overtake china as the next economic miracle ? not so fast , says china watcher and india today correspondent ananth krishnan .\njose mourinho has the best clean sheets percentage record in premier league history . the chelsea boss has kept 101 clean sheets in 189 games , 53.4 per cent . rafa benitez has 13 more , 114 from 254 matches with liverpool and chelsea . roberto mancini and arsene wenger also have impressive defensive records . mourinho heads the list of managers with the lowest average of goals conceded .\nreading defeated arsenal under 21s 1-0 at the emirates stadium . martin keown 's son niall scored the winner for the visitors . jack wilshere made his long-awaited comeback from injury . german forward serge gnabry and abou diaby also played .\nscar booth is available from the apple itunes store for 79p . offers a gallery of 77 wounds - purportedly real ones - superimposing them onto selfies . app 's makers boast : ` your friends and family will be convinced that you have suffered a painful beating ' anti-violence charities have hit back at the disturbing app .\naaron finch has had surgery on his left hamstring and will be out for three months . the batsman sustained the injury playing for mumbai indians in the ipl . finch has never played test cricket and was not included in the australia squad for june 's series in west indies or the ashes tour which follows .\nasbestos is a bigger killer than road traffic accidents . around 20 tradespeople die each week as a result of past exposure . over 50 families have contributed heartfelt messages to the art project . created as part of hse 's beware asbestos campaign . currently on display in covent garden , london .\nvictim was hit over the head 20 times with a rock and raped in leeds . she was dragged into a garden and left for dead in the beeston area of leeds . the 18-year-old will speak out in tonight 's episode of crimewatch . she says she is too scared to sleep for fear of reliving the ordeal in her dreams . west yorkshire police have released a new e-fit of the attacker .\nonline pre-orders began on friday at 12.01 am pdt -lrb- 8am bst -rrb- apple said the devices will ship on 24 april within just an hour . but a leaked memo from apple 's angela ahrendts has confirmed otherwise . she said customers wo n't be able to buy an apple watch in store ` through the month of may ' due to ` high global interest combined with our initial supply '\ngiant turnip was grown in china 's yunnan province by mr li . he said it had become a big attraction and pictures of it have gone viral . it is so big it had been nicknamed the ` fat little girl ' in the village . the world 's heaviest turnip was a mammoth purple top and weighed 17.7 kg .\nmo farah will race over 1500 metres at the sainsbury 's birmingham grand prix . double olympic champion will step down in distance for diamond league event on june 7 . farah is unbeaten at the alexander stadium for seven years . he will join jessica ennis-hill and greg rutherford at anniversary games .\ngwyneth paltrow and chris martin split amicably . tracey cox says the couple 's split is a refreshing change . she says there are lessons to be learnt from the couple . tracey says there is no point in sniping at each other . she also says that you should not criticise your ex 's new partner .\nthe sheriff who had former new england patriots player aaron hernandez in custody for more than 18 months said tuesday that he 's a master manipulator . bristol county sheriff thomas hodgson said hernandez knows how to use his charm and manipulate better than anyone he has ever seen . hernandez was convicted april 15 of the 2013 killing of odin lloyd , who was dating the sister of hernandez 's fiancee .\nsupreme court justice ruth bader ginsburg , 82 , will hear case tomorrow . it will determine whether states can ban same-sex unions and refuse to recognize those made in other states . ginsburg has spoken out in the past about her support for gay marriage . she has even officiated at a same - sex wedding in washington , d.c. opponents have demanded she be removed from the case .\npolice found drugs and guns inside their van during a gig at georgia southern university . rappers quavious marshall , 24 , kirschnick ball , 20 , and kiari cephus , 23 , were escorted off the campus and taken into custody . they reportedly face charges of drug possession ; possession of firearms in a school safety zone ; and possession of firearm during the commission of a crime . all of the band members have been denied bond - meaning they might not fulfill their upcoming tour dates . migos were next due to perform at the ksu convocation center in georgia before traveling on to a number of other states including wisconsin , ohio , michigan , pennsylvania and new york .\nstephen munden , 54 , has been missing since 6.15 pm on tuesday . he was last seen leaving a hospital , near hook , hampshire . officers believe he may have shaved off his beard before leaving the hospital . munden was detained under the mental health act after sexually touching a three-year-old girl . he has been described as having a ` fanatical obsession ' with small girls .\narnhem tv station loses expensive drone after chimpanzee attacks it . craft was supposed to capture footage of royal burgers zoo chimp enclosure . incident happened during filming for a reality show set in the zoo . programme makers had hoped to use the drone to capture the enclosure from above .\nsarah jewell , 25 , was expecting to find a tax refund in her mailbox . instead she received a letter from the irs informing her that she had ` died ' she went to her local social security office and announced ` i 'm alive ! ' the staff told her that someone had filed her social security number as deceased in november 2014 . but three months later she still has n't received her tax refund and her number has yet to be reinstated .\ngary mabbutt 's diabetes caused an artery in his left leg to be clogged . the 53-year-old was rushed to hospital after waking up at 1am to find it had gone cold . doctors warned him it was ` touch and go ' on whether the leg would have to be amputated . surgeons were required to replace the main artery in the leg with a vein . he needed 112 staples to seal the horrific wound and is left with a 30inch scar .\nprivate jet travel is a growing trend with 2.5 million flights in 2013 . the super bowl and monaco grand prix are the busiest weekends for private jets . haneda airport in tokyo is the most expensive airport for private flights . salzburg airport in austria charges # 2,530 to land a 767-400 jet .\nswitzerland , iceland and denmark are the happiest countries in the world , according to the world happiness report . the report is released by the sustainable development solutions network for the united nations . the u.n. general assembly declared march 20 as world happiness day in 2012 .\nserial killer ivan milat 's brother , boris , has confessed to knowing of his sibling 's first victim . neville knight was shot by milat in 1962 , when he was 17 years old . alan dillon was convicted for the shooting and spent five years behind bars . mr milat said he lied to protect dillon , but was confessing to bring closure to dillon . a new report claims milat could have been caught before he murdered seven backpackers .\nthree raiders burst into esso petrol station in caterham , surrey , last wednesday . they forced their way into the manager 's office looking for cash . police have released cctv images of two of the raiders in their 20s . a third man , aged in his 20s , has been arrested and released on police bail .\na 1973 e-type jaguar was involved in a head-on collision with a toyota kluger . the crash happened on warringah road in frenchs forest , northern sydney . the classic jaguar was completely written off in the crash . all three adults were taken to hospital as a precaution . nsw police are investigating the circumstances surrounding the crash .\nnantwich town beat caldy by 500 runs in national club championship . liam livingstone scored a reported world-record 350 for nantwich . lancashire believe it is the highest-ever individual score in a one-day match . the 21-year-old all-rounder has yet to make his first-team debut .\nfloyd mayweather has earned more than $ 400m throughout his boxing career . the undefeated boxer has a vast collection of super cars , private jets and jewellery . sportsmail looks at his extravagant purchases on social media . mayweather has bought over 100 cars over the last 18 years , including 16 rolls-royces .\njamal kiyemba , 36 , was detained in the ugandan capital kampala . he was arrested in connection with the murder of top female prosecutor joan kagezi . kiyamba was held at guantanamo bay for four years and awarded the huge payout after being released . he is one of 16 former prisoners awarded a # 20million payout from the british taxpayer over claims of false imprisonment and human rights abuse .\nthomas cain 's mother ora mae died in 1943 when he was just 12 years old . he assumed there were no surviving photographs of her . but his granddaughter found an old image of her from the 1920s . she gave it to him as a present , and he cried when he realized what it was .\none of the hillsborough samaritans has come forward after an appeal was launched to identify fans . investigators hope supporters may be able to supply crucial evidence for the ongoing inquest . photographs show men and woman rushing towards those crushed in tragedy . officers say the images are 26 years old but may help track down key witnesses .\nangelika graswald , 35 , has been charged with second-degree murder in the death of her missing fiance vincent viafore , 46 . the couple were kayaking on the hudson river on april 19 when viafore 's vessel overturned , sending him into the frigid water . gras wald was later picked up by a passing boat and treated for hypothermia but viafore has not been found . last monday , she asked friends on facebook to keep praying for her partner and hoped for a miracle .\nkelsi langley , 19 , claims she lied about being assaulted by davon durant , a promising linebacker at arizona state university . durant was arrested march 7 after langley claimed he hit her in the face and grabbed her neck during an argument in his car . langley said she lied because she was jealous of girls trying to talk to durant . she has now recanted her story and said she was ` angry ' durant was suspended from the football team indefinitely and could be facing expulsion .\njonathan pitre was born with epidermolysis bullosa - or ` butterfly skin ' he has deep blistering wounds that will never heal . one in every 17,000 people suffer from the genetic condition . unless a cure is found , jonathan will likely only live to 25 .\na u.s. army general says obesity is becoming a national security issue . he says the military will be unable to recruit enough qualified soldiers . more than one-third of u.s. adults are obese . dr. sanjay gupta : we just do n't care about our weight .\nbelle gibson has admitted she faked her cancer diagnoses . model jesinta campbell says she was ` shocked ' and ` disappointed ' in the blogger . ' i followed her on her blog , on her app , it 's really disappointing , ' she said . gibson 's confession was published in this month 's australian women 's weekly . the magazine claims penguin books is due to meet with gibson . but a company spokesman said there was no meeting planned .\nmanchester united 's players visited sick fans at their training ground on monday . wayne rooney , david de gea and ashley young were in attendance . the manchester united foundation is working in disadvantaged areas . louis van gaal and his players also signed memorabilia for the fans . united travel to everton in the premier league on sunday .\naaron hernandez is accused of killing two men and wounding another person . the former new england patriots star pleaded not guilty at his arraignment . he potentially faces three more trials -- one criminal and two civil actions . hernandez is also being sued by a man who claims he was shot in miami .\nrafa benitez 's napoli side beat cagliari 3-0 at the sant ` elia stadium . jose callejon , antonio balzano and manolo gabbiadini scored the goals . napoli are now in fourth place in serie a , five points behind roma .\njim murphy scored the winning goal in the friendly match against the tories in edinburgh today . match organised to help motor neurone disease campaigner gordon aikman . mr aik man was diagnosed with terminal condition less than a year ago . he has raised over # 250,000 for research into a cure through his campaign .\ncouple in oregon awarded $ 240,000 compensation for more than a decade of disquiet . dale and debra krein filed suit against neighbors and their tibetan mastiffs . jury ruled that the dogs should have their vocal chords removed . john updegraff and karen szewc tried to argue they needed the dogs for their livestock .\nborder collies ace and holly were filmed performing a balancing act . they stood up on their hind legs , with their front paws up . the trick was performed by their owner and trainer , dai aoki . aoki runs the waterloo , australia-based positive dog care .\ncandice bergen , 68 , was the highest paid actor in television for a lot of years after playing the title role in the hit cbs sitcom , murphy brown . she kept that fact a secret from her mother and her famous father , edgar bergen . edgar ber gen was best known for as ventriloquist who 's sidekick was dummy charlie mccarthy . when he died in 1978 , her penurious father left his only daughter out of his will - but not charlie .\nnew book claims bradford city fire was not an accident . author martin fletcher points finger at late stafford heginbotham . hegin botham was chairman at the time and had been linked to eight previous blazes . four members of fletcher 's family died in the fire in 1985 .\nal-shabaab militants killed 147 people at a university in kenya on thursday . the kenyan government says mohamed mohamud is the mastermind . mohamuda is `` credited with having an extensive terrorist network within kenya , '' a document says . another terrorist involved in the attack is abdirahim abdullahi , the government says .\nthe image was captured over jaibru in australia by an off-duty emergency services officer . he dubbed the phenomenon ` looping lightning ' and it appears to rise and loop . but storm chaser dan robinson believes it is simply a trick of perspective . upwards lightning is very rare - estimates suggest less than 1 % of lightning travels in an ` upwards ' direction .\nliverpool lost to aston villa in the fa cup semi-final on sunday . steven gerrard 's final game for liverpool will be at stoke on may 24 . the captain is expected to join la galaxy in mid-july . gerrard was hoping to end his liverpool career in the final at wembley .\nzodiac aerospace have unveiled their new design for cabin crew sleeping areas . the lower deck area aims to maximise the sense of space and privacy . the company spoke to 30 flight attendants from four different continents . the new design was revealed at aircraft interiors expo in hamburg .\nthe collector 's paradise in horfield , bristol , has gone untouched for more than 80 years . the three-bedroom home comes complete with the original bathroom , kitchen , stained-glass windows and even oil-fired central heating . the semi-detached property has a guide price of between # 200,000 and # 250,000 .\npesticide methyl bromide is suspected to have been used improperly several times in the u.s. virgin islands . the governor of the virgin islands says his condominium complex was fumigated with it in 2013 . a delaware family fell ill and suffered seizures at a resort on st. john .\nwedding season is upon us and for brides on a budget , there 's plenty of ways to save thousands of pounds on your special day . femail has compiled the best budgeting tips for bridal-to-be . from scrimping on bar costs to avoiding hefty food bills , femail offers you the top tips .\nthreat received on sunday evening against flight 826 from cologne bonn to milan 's malpensa airport . tower in cologne immediately alerted pilot of the airbus a320 , which was taxiing toward runway at the time . instead of taking off , pilot steered plane to a different part of airport where passengers and crew were evacuated .\ntottenham hotspur are currently sixth in the barclays premier league . the club are hoping to qualify for the europa league next season . christian eriksen says the lure of europa league football was important in his move . spurs have been linked with marseille 's florian thauvin and dynamo kiev 's andriy yarmolenko .\nthe suzy lamplugh trust has slammed the offensive t-shirts . they are sold in us and uk stores including zazzle and look human . the charity says the shirts play into people 's fear of being laughed at . this prevents victims from seeking help to deal with stalkers .\nbritish scientists spent 18 years developing the robotic ` chef ' hands . they are each governed by 24 motors , 26 micro-controllers and 129 sensors . the hands can chop , stir , whisk and baste well enough to recreate almost anything you would care to eat . the # 10,000 -lrb- $ 14,000 -rrb- device will be sold from as early as 2017 .\n`` modern family '' star sofia vergara is accused of destroying two embryos . the actress and her ex-fiance nick loeb are suing to keep the embryos , both female . loeb says he wants to implant the embryos in a surrogate and bring them to term .\nhannah mcwhirter engaged in threesome with co-worker dionne clark and her husband shaun . she even exchanged texts with couple after the ménage a trois telling them how much she enjoyed herself . but when mr clark told her boyfriend about their hookup she claimed she had been raped . mcwhire admitted wasting police time and rendering couple to suspicion under sexual offences act .\nthe prosecution has rested in the murder trial of former new england patriots star aaron hernandez . the 25-year-old has pleaded not guilty to shooting odin lloyd five times in the chest and back . lloyd , who was dating his fiancee 's sister , was found dead in an industrial park less than a mile from hernandez 's home on june 17 , 2013 . prosecutors have presented hundreds of pieces of evidence since testimony began on january 29 .\nwest ham face leicester city in the premier league on saturday . sam allardyce has confirmed winston reid will be fit for the game . enner valencia will not be available after suffering a toe injury in march . the hammers boss says nigel pearson is ` pulling out his hair '\nsuzy howlett , 54 , marked up ukip leaflet with red pen for two minutes . she specialises in teaching foreign-born children english . husband and wife team derek tanswell and sharon snook defected to ukip . mrs howlett said : ` there is no shame in having difficulties with spelling ' but mr tans well says lib dems ` hacked ' his emails to create the leaflet .\ndaisy goodwin , from london , has suffered with head lice since she was 19 . she says she has had nits at least 100 times and has never been affected as a child . she was lucky to have a few nit-free years in her early twenties . but the parasites returned when she became a mother and she had to spend a fortune on louse-busting treatments .\ntomas berdych defeated juan monaco 6-3 , 6-4 in the miami open quarter-finals . eighth seed berdych will now face andy murray in the last eight . the czech will be looking for his first meeting with murray since the australian open semi-final .\nindiana 's new religious freedom restoration act is under fire . the law was passed in 1993 . so far , 20 states have some version of the law . some cases have involved religious minorities , not christian denominations . but some have been controversial . the u.s. supreme court has ruled in favor of a jewish prisoner in florida .\nnicholas tooth , 25 , was playing for the quirindi lions against the narrabri blue boars in mid-north nsw on saturday . he collapsed after hitting his head on an opponent 's shoulder during a tackle . the young man was treated at the ground before being airlifted to newcastle 's john hunter hospital . he died in hospital late on sunday .\nlabour leader 's ` sexy tie ' and grey streak in his hair proved a hit with viewers . one twitter user compared him to hansel from zoolander , adding : ` he 's so hot right now ' swedish health minister gabriel wikström , 30 , has also been dubbed ` the handsome minister ' by fans .\nthe australian charities and not-for-profits commission has revoked get rid of sids project 's charity status . the organisation is run by prominent anti-vaccination campaigner stephanie messenger . it had been organising events featuring anti- vaccination campaigner sherri tenpenny . dr tenp penny had to cancel a number of seminars in australia due to threats of violence .\nof the 446 people on board the italian rescue vessel , the navy said 59 of them were children . they were dropped off in the sicilian port of augusta today after their smuggler boat was picked up off the coast of the italian mainland . hundreds of migrants have been arriving on italian shores for days after being rescued at sea when their overloaded boats run into problems .\nthe family of molly parks has written an honest obituary about her struggle with drugs . she was found dead in the bathroom of the pizza restaurant where she worked in manchester , new hampshire on april 16 . her father , tom parks , said she had abused alcohol and prescription pills before moving on to heroin . he pleaded with other families to ` stay right on top ' of loved ones with addictions .\nus girl saige is ` mad ' at her mother and the state of their house . the five-year-old says she will move out and stay with her mum 's best friend . her mother refuses to take the threat seriously and just laughs at her daughter . ` i 'm moving on , i 'm going to jenn 's ! ' she says .\nthomas muller , manuel neuer and pep guardiola pictured at airport . bayern munich lost 3-1 to porto in champions league quarter-final first leg . arjen robben , franck ribery , bastian schweinsteiger and david alaba all out injured .\ntottenham 's kyle walker was injured in 0-0 draw with burnley . england defender sustained the injury following a heavy collision with kieran trippier at turf moor on sunday . scans have revealed that walker has not broken his foot . but more tests are planned this week .\nmemories pizza in walkerton , indiana , closed its doors after receiving abuse over the phone and online . owner crystal o'connor said she would refuse to cater a gay wedding . her father kevin o ' connor said he could n't tell if orders were real or fake . the pizzeria has raised $ 500,000 on gofundme to help the family . they plan to re-open soon but do n't know when .\ncompany boss heads a global recycling company with # 16m turnover . ronan ghosh , 39 , was filmed attempting to smuggle goods out of store in bag . court heard he was caught shoplifting after having argument with girlfriend . judge imposed 12-month community order and told him to pay # 575 costs .\nuss independence was found off california 's farallon islands . experts found the giant u.s. ship standing upright and listing only slightly . it is resting 800m underwater with its hull and deck very well preserved . there also appears to be a plane in the hangar bay of the vessel . veteran ship even survived an atomic bomb test in 1946 .\nisis fighters have taken over parts of ramadi , west of baghdad . the only safe route from baghdad to neighboring anbar province is via a bridge across the euphrates . isis fighters have already blocked off access from the south months ago . thousands of people have fled on foot into the city .\ncraig gardner put west brom ahead after eight minutes at the hawthorns . darren fletcher equalised for the visitors in the 20th minute with a glancing header . david nugent equalised in the 80th minute to put leicester back in the game . robert huth scored a late equaliser to give nigel pearson 's side hope . jamie vardy scored an injury-time winner to secure a 2-1 victory for the foxes .\nprince george 's birth in 2013 sparked a # 247m sales bonanza . experts say the second royal baby is unlikely to have the same effect . a more modest sales increase of between # 60 and # 70m is predicted . most of that will be spent on champagne and cake rather than royal souvenirs .\njacob church , 21 , and joe tobin , 29 , were at an exhibition in cardiff . they were locked in a vault at the abacus art space at 1am on saturday . fire crews had to drill through the wall to create a hole for them to escape . the pair were fed water through a tube to prevent them becoming dehydrated .\nfour men collapsed on a party cruise on sydney harbour on good friday . they were rushed to st vincent 's hospital and are now stable . police believe they may have taken a dangerous strain of ecstasy pills . the men - two 21-year-olds and a 25 and 22-year old - collapsed on the vessel . the boat was hosting a ` dirty funken beats ' party . police say they discovered cocaine , marijuana and mdma before the boat left the wharf .\nexperts warn being socially isolated can lead to health problems . campaigners say local councils should draw up maps of ` danger zones ' two county councils , essex and gloucestershire , have already implemented the maps . they work out which areas ' residents are most at risk of loneliness .\nindonesian prosecutors want a queensland man to serve up to 12 years in jail for smoking a marijuana joint . nicholas james langan , 24 , from townsville , was arrested about 1.00 am on january 27 at a beach in canggu , north of kuta . police seized the 0.1 gram joint and a small bag of marijuana weighing 0.86 grams . also arrested was hanung pekik hermantoro , 25 , a driver for the green room villas where the queensland painter was staying .\njon `` bones '' jones is wanted for questioning in a hit-and-run crash in new mexico . a pregnant woman in her 20s suffered minor injuries in the accident , police say . police say they can not confirm whether jones was involved in the crash . jones is the reigning ufc light heavyweight champion .\nthe u.s. government is changing its policy on the no-fly list , court documents say . americans on the list will be given more information about their status and the opportunity to dispute it . a june ruling said the old process violated the fifth amendment 's guarantee of due process .\nwarning : graphic content . ian gibson , 55 , was killed by a young bull elephant in zimbabwe . he was measuring its ivory tusks for an american client who was also present . the animal charged at gibson and knelt on him until he died . gibson was a celebrated big game hunter in south africa .\nthames bath lido should open in two years with backing of a crowdfunding project . david walliams has said he will be the first to jump in the new pool . the plan is to incorporate two pools , a 25 meter lap pool and a training pool .\nmillie-belle diamond , 14 months , has 115,000 instagram followers . her mother schye fox started posting cute photos of her online . the toddler is the most followed baby under two on instagram . she is regularly offered modelling jobs and has her own mini mercedes benz .\ntoni maticevski presented his couture collection at mercedes-benz fashion week australia on tuesday . each front row guest was given an $ 899 lenovo tablet with their gift bag . celebrities including lindy klim , and jordan and zac stenmark were pictured fawning over their personalised tablets before the show started . the tablets were customised with wallpaper bearing their name .\nsaudi arabia launched air strikes on yemen a month ago to stop rebel advances . the saudis said on tuesday that they would stop and focus on finding a political solution . but the raids appeared to resume on wednesday , with fighting taking place in taez . prince alwaleed bin talal has promised to give each of the 100 fighter pilots involved in the month long raids a free bentley . he made the pledge on social media but the post has since been deleted .\nkim roberts , 58 , admitted stealing antiques and paintings from her employer . she stole the art from the countess of bathurst 's mansion and london home . the haul included a sketch by picasso and pewter plates worth # 500,000 . roberts was warned to expect a lengthy jail term after admitting three charges .\nharold henthorn was charged with the murder of toni bertolet , 51 , last november . police have since reopened their investigation into the suspicious death of his first wife , lynn rishell , some 20 years earlier . both women died in ` freak accidents ' to which henthorn , 59 , was the sole witness . he was the only beneficiary of their life insurance policies totalling $ 500,000 in the case of his . first wife and $ 4.5 million in the . case of dr bertolets . now , newly filed documents have revealed that he is fighting for a $ 1.5 m pay out from the policy taken out in july 2001 . he\npretty little liars ' shay mitchell and a lady in london 's julie falconer are among the best . german adventurer sylvia matzkowiak has more than 227,000 followers . wild junket 's wild junkets posts stunning images of rarely-seen locales .\nreverend creflo dollar launched appeal last month for 200,000 people to each donate ' $ 300 or more ' to buy a gulfstream g650 to replace his damaged aircraft . the wealthy televangelist , who is known to own two rolls royces and multi-million dollar homes , came under heavy criticism for the appeal . he has now defended his appeal by claiming ` the devil is trying to discredit ' him .\nrex cinema in berkhamsted , herts , has banned babies from special screenings . manager james hannaway said it was due to ` whingeing , bitching , snitching and the law ' he added that staff had enjoyed collecting nappies from under tables . the cinema has been closed for 30 years and reopened in 2004 .\nnew instagram integration lets users add their latest snaps to profile . tinder will only display the last 34 pictures of a person 's instagram feed . firm also said it had improved its mutual friends feature . tinder has set a limit on the number of ` likes ' a user can perform in one day .\na video uploaded by youtube user shkesi shows a baby girl mesmerized by a toy mothering hen . as the motorized plush bird bounces up and down and pops out an egg , the infant can barely believe her eyes . when the first egg emerges she cries for joy and when the third comes she lets out a shriek .\nburton albion beat morecambe 2-1 to secure promotion to league one . lucas akins scored both goals in burton 's win at morecam be . shrewsbury are one win away from a return to league two after beating york city . bury set a new club record of seven straight away wins by beating portsmouth 1-0 . carlisle secured their football league status with 2-0 win against plymouth .\nthe masters begins on thursday at augusta national golf club . sportsmail counts down the 20 greatest shots ever seen at the tournament . mark o'meara 's winning putt in 1998 is included in the top 20 . billy joe patton 's hole-in-one in 1954 also makes the list .\nvolunteer police officer danny eckhart was arrested saturday night after allegedly drunkenly stealing a patrol boat and taking it for a joy ride . police say he smashed it into pilings outside the t-rivers bar in madisonville . no one was injured in the crash . eckhart faces charges of unauthorized use of a vehicle and operating a vehicle while intoxicated .\ntabby george was last seen running off in the direction of a caravan park near his home in north wales . he was found on a doorstep in west yorkshire five weeks later . the 18-year-old tabby was found by julia hill , who posted on facebook . he has now been reunited with owners steven davison and his wife susan .\ngeorge clooney and amal alamuddin chose venice as the place to get married . the city is a magnet for lovers of art and is hosting the biennale art festival this may . george and amal 's wedding celebrations lasted over the course of a whole weekend and were at some of venice 's most exclusive venues .\nmartin skrtel 's contract expires at liverpool in 2016 . the defender has been linked with a move to wolfsburg and napoli . but the slovakia international has rejected the rumours . skrtle has made over 200 league appearances for liverpool since arriving in 2008 . the 30-year-old is preparing to finalise a contract extension at anfield .\nbenito gonzalez jr. , 46 , pleaded guilty to a lewdness charge after allegedly masturbating in a starbucks . gonzalez says his post-traumatic stress disorder is to blame for the incident . the father-of-three was found guilty of the offense last month and is currently suspended without pay . a surveillance photo posted to the cherry hill police facebook page led to the 17-year camden police veteran 's arrest . gonzalez claims he was intoxicated and in a blackout state as a result of the trauma and only remembers drinking before going to the starbucks and returning home that night .\nwith thousands of apps on the market , how do you know which are the best ? planning your meals need never be a chore again with these ten apps . where chefs eat has more than 3,000 chef recommendations . love food hate waste will store details of all the foods you have at home .\nbarcelona defeated getafe 6-0 in la liga on tuesday night . lionel messi , luis suarez and neymar scored all six goals . neymar posted a photo of himself with his team-mates in the dressing room . the brazilian captioned the photo : ` buena victoria chavaleeeeees ... . daleeee ! '\njuventus beat monaco 0-0 at the stade louis ii on wednesday night . the result means massimiliano allegri 's side progressed 1-0 on aggregate . patrice evra believes juventus played the italian way in the quarter-final . the former manchester united defender believes french clubs could learn from juventus ' combative style of play .\nwilliam snyder , 34 , charged with abuse of a corpse and evidence-tampering . his wife kelley jo snyder , a mother of three , was last seen alive on easter sunday . body of kelley jo , 34 was found in a river near to their home on saturday . snyder has admitted to moving the body and sending a ransom note .\nforms were bought by rare book dealer ian brabner at an ephemera show . they were intended to be sent out to people whose friends had identified them as suitable recruits . the form asks a further 19 questions ranging from the mundane , such as ` what is your age ? ' , to the overtly sinister -- ` do you believe in white supremacy ? ''\nbarry bonds has been cleared legally after 11 1/2 years in court . a federal court of appeals threw out the career home run leader 's obstruction of justice conviction on wednesday . the court ruled 10-1 that his meandering answer before a grand jury in 2003 was not material to the government 's investigation into illegal steroids distribution . ` today 's news is something that i have long hoped for , ' bonds said in a statement .\nian harris is a member of church of the flying spaghetti monster . his followers regard the pasta strainer as a religious garment . he is challenging the dvla over his rights to wear the metal bowl in his licence photo . he says it is equivalent to muslim women being pictured in hijabs . mr harris has already been turned down once by the government agency .\nworld cup-winning forward david villa spent a year at vicente calderon last season . new york city fc posted photo of villa cheering on former club . real madrid drew 0-0 with atletico in champions league quarter-final first-leg . gareth bale missed glorious chance to give home side the lead .\naround 2500 passengers are stranded on a cruise ship , the carnival spirit , outside sydney harbour because of the wild weather . the ship has suffered damage in wild weather conditions off the nsw coast . waves of nine metres have been battering the ship for the past 24 hours . carnival spirit was returning from a 12-night cruise to new caledonia , vanuatu and fiji but has been stopped by the huge waves .\nsqueal van persie filmed scoring in his back garden . the seven-year-old performed a ` scorpion kick ' in a video posted on instagram . robin van persi 's dad was in stitches with the goal celebration . the manchester united forward is set to be offered # 5million to leave the club .\ndradam cobb , 45 , was taken into custody on friday in portsmouth , new hampshire . he was arrested for receipt and distribution of child pornography . cobb was a research professor and director at the prestigious us naval war college in rhode island . he worked for the federal government , the raaf and governor-general sir peter cosgrove in east timor . if convicted he faces 20 years ' jail in the us .\njames rebanks is a sheep farmer in the lake district . he studied at oxford before returning to his roots . he has written a book about his experiences on the farm . the shepherd 's life : a tale of the lake district is published by allen lane . it is out now .\nholland winger memphis depay has held talks with paris st germain . manchester united and liverpool are both interested in the winger . psg are understood to have made a better offer than liverpool . depay is good friends with gregory van der wiel , his team-mate at psg .\narsenal host chelsea at the emirates stadium on sunday . arsene wenger wants ` respect ' for his former players . cesc fabregas will return to the club for the first time since leaving in 2011 . wenger says he wants the spaniard to be shown the ` respect he deserves '\ntwo men arrested in beating of man on train . video of the beating went viral . victim says he was asked about michael brown . police say the suspects were black . no hate crime charges will be filed . the victim was treated at the scene for injuries . . the beating was caught on surveillance cameras and a passenger 's cell phone camera .\neden hazard starred for chelsea as they beat stoke city 1-0 at stamford bridge . cesc fabregas won and scored the penalty before charlie adam equalised for stoke . diego costa was forced off with a hamstring injury after 10 minutes . loic remy scored the winner in the second half after an asmir begovic error .\nmanchester city face chelsea in the first leg of the fa youth cup final . the match will take place at city 's 7,200-capacity academy stadium . city have twice lifted the fa cup - in 2008 and 2010 . chelsea have made their own final in recent years and this is their fifth final in six seasons .\nsean bowen maintains his three-winner lead over nico de boinville in conditional jockeys title race . bowen scored on abidjan at newton abbot while de boinvill won on one lucky lady at kempton . us trainer wesley ward is to aim hootenanny and sunset glow at royal ascot .\ncomedian sarah silverman is encouraging women to understand their worth and ask for equal pay in a new campaign . the 44-year-old is a part of levo league 's ask4more campaign , which calls for women to request the salaries that they deserve . on average , women only earn 78 cents for every dollar made by men .\nrachel sandridge , 29 , from maryland , was due to undergo gastric bypass surgery . had to lose weight to qualify for the surgery and then underwent a routine endoscopy . during the procedure her doctor was concerned at signs of inflammation and took a biopsy to sample her stomach . she was then told cancer had been found in her stomach and had to have a second biopsy . she is now cancer-free and has dropped her weight from about 430lbs to about 288lbs .\njohnny depp 's latest film , black mass , is based on the life of boston gangster james ` whitey ' bulger . the first trailer for the biopic was released thursday and shows depp as a menacing figure . bulger was on the fbi 's most wanted list for 16 years before he was finally arrested in 2011 . the crime drama also stars joel edgerton , benedict cumberbatch , kevin bacon , peter sarsgaard and dakota johnson .\nnew mothers receive plenty of visitors shorty after giving birth . many of them are well-intentioned , but they often have annoying habits . blogger emily-jane clark has compiled a list of ways to avoid annoying a new mother . she says visitors should bring gifts for the mum and not chocolate and coffee .\ngeorgia fans twice invaded the field of play during sunday 's 2-0 defeat by germany in tbilisi . uefa has opened disciplinary proceedings against the georgian football federation . scotland will discover on may 21 if september 's euro 2016 qualifier with georgia will be played behind closed doors .\nsecond children are left with hand-me-downs , and around # 500 less spent on them in their first year of life . more than a third of mothers clothed their second baby in one or more hand-me-downs . only 23 per cent have a keepsake for their second , a report by debenhams found .\na single-decker coach burst into flames on the a2 slip road to the m25 near dartford in kent this morning . fire crews were sent to tackle the fire and spent an hour trying to douse the flames from the vehicle . the fire is believed to have started in the engine compartment before it quickly spread to the body of the coach .\nstan collymore believes liverpool must stick with brendan rodgers . the reds boss has come under-fire following a disappointing third season . liverpool lost 2-1 to aston villa in the fa cup semi-finals on sunday . the merseysiders are currently seventh in the premier league .\nemmanuel sithole was brutally attacked by a mob in alexandra , johannesburg . the mozambique-born man was stabbed repeatedly and beaten with a wrench . he was left bleeding to death in a gutter because a medical centre was closed . doctors tried in vain to save mr sithole 's life after he was found dead . his cause of death was later established as a direct stab wound to the heart .\ngrey and white cat marv got stuck in a five inch gap in between two garages . he was left dangling upside down for two hours and the rspca were unable to coax him out . firefighters were called and they had to chisel through a wall to free him . he is now recovering and was reunited with his owner 's daughters .\nholland 's biggest city was classed as a village until 1806 . the hague is home to the vermeer , rembrandt and hals galleries . the mauritshuis was restored last year . it is also the home of girl with a pearl earring , the ` dutch mona lisa '\na landmark ruling on piracy and privacy on the internet means thousands of australians could be getting letters threatening legally action if they illegally downloaded and shared hollywood film dallas buyers club . internet companies will have to reveal names , ip addresses and residential addresses of 4,726 people who uploaded the film online illegally . but internet law experts say the company behind the letters will have a hard time following through on the threats because it is very difficult to prove who is legally responsible for the downloading .\na man driving to work in alabama noticed his stolen pickup truck following him last week . that set off a chain of events that included a deputy 's pursuit , a crash , and an arrest . the truck was stolen from the victim on the man 's birthday . terry proctor , 29 , was arrested after a foot chase .\nthe usc women 's tennis team won the pac-12 championship on thursday . the team defeated the women of the university of california - los angeles by a score of 4 - 3 for the win . usc now finishes the season 21 - 2 while ucla is 18 - 4 .\nkim and kanye visited st james cathedral in jerusalem 's old city . archbishop aris shirvanian , an armenian church official , said the family had arrived for a baptism ceremony . khloe kardashian is north 's godmother . the family are in jerusalem for what was described as a private two-day visit .\ngerry adams made comments about jean mcconville 's murder in us . he said incidents like her abduction and murder happened ` in every conflict ' comments have angered relatives of the mother-of-ten . she was abducted from her belfast home in 1972 and shot dead .\nfloyd mayweather and manny pacquiao will fight on may 2 in las vegas . the mega-fight is set to become the biggest pay-per-view in sport . sports interaction have put together a graphic showing how much the pair will earn . mike tyson features in four of the top 10 highest grossing pay - per-view fights .\ntoto wolff reveals mercedes may have to make ` unpopular call ' in f1 . mercedes are under pressure from ferrari in the title race . nico rosberg complained about lewis hamilton 's driving during chinese grand prix . mercedes boss wolff says team may have ` to manage them more '\nbody of charmain adusah discovered by hotel staff in a bath . husband eric isaiah adusahs is being held on suspicion of murder . he was alleged to have left the hotel hurriedly on the day she died . he married her suddenly last september after a whirlwind romance . the couple had travelled to ghana to preach at a religious conference .\nnorthern territory 's chief minister adam giles and minister for children and families john elferink made the threat . the threat comes after a recent rise in youth crime in alice springs . 42 people were taken into protective custody and 34 young people were driven home after a group of 50 young people threw ` large rocks ' at police . parents will also be fined $ 298 if their child is found on the streets during school hours .\nanimal liberation victoria broke into wagner 's poultry farm in coldstream , victoria . the farm sells caged , free-range chicken and duck eggs . activists said they found birds living in terrible conditions . two weeks earlier government health officials inspected the farm , but gave it the all clear . but several hens were in such a bad state that they had to be removed from the cages by the activists .\nmost impressive wipe-out went to australian surfer josh kerr when he plunged head first into the reef . kerr was surfing the notorious ` box ' at margaret river which is renowned for its world-class waves . adam melling , owen wright and john john florence also succumbed to the powerful break with extraordinary crashes . thousands of spectators watched as the reigning world champion , brazilian gabriel medina lost to local wildcard jay davies in an enormous upset .\nloveday jenkin is running for mebyon kernow - the party for cornwall . she said michael foster launched an outburst at her during a hustings . mr foster was asked about ed miliband 's plan to impose a mansion tax . he said not many people would be hit by the plan in the constituency . ms jenkin then pointed out that mr foster lived in a # 1.5 million house . mr foster then allegedly turned to her and said : ` you c *** '\nhaley fox , 24 , allegedly fractured the skull of her online boyfriend samuel campbell , 26 , with a baseball bat . the couple had been dating for two years after meeting online . fox told police that she did n't want to date campbell anymore . she has been charged with first-degree assault .\nkevin wimmer has impressed for cologne this season . the 22-year-old defender is wanted by tottenham in a # 4.4 m deal . austria boss marcel koller says wimmer will move to england in the summer . wimmer says it would be a ` dream ' to join a top club like tottenham .\nsunderland beat newcastle united 1-0 in the tyne-wear derby on sunday . jermain defoe scored the winner with a stunning volley at the stadium of light . newcastle have now lost five consecutive tyne/wear derbies . the magpies returned a club record profit of # 18.7 million last week .\nrotherham are one point above the championship relegation zone . the millers fielded an ineligible player against brighton on easter monday . farrend rawson was on loan from derby but the paperwork was n't handled properly . rotherham have until may 1 to appeal the decision . the football league have also fined the club # 30,000 .\njay hart , 24 , was sacked by clitheroe fc after he was filmed having sex . he was filmed romping with a mystery blonde in the manager 's dugout . hart was dismissed after the sex clip of his tryst was shared on social media . his girlfriend bryony hibbert slammed those responsible for filming and sharing the clip .\nmalcolm turnbull will feature on the front cover of gq australia 's may issue . the minister for communications is set to be interviewed about his childhood and political stance . he also confirms rumours that he planned to run for prime minister if tony abbott had been successfully toppled in february 's leadership spill .\ngenti rustemi , 45 , attacked lollipop man john doyle , 79 , as he helped children cross road . mr doyle was helping two 12-year-old girls cross road to get to school in timperley , greater manchester . he was left with a broken rib and punctured lung after being punched in the chest . mr rustemi escaped jail and was handed a six-month suspended sentence .\nben morgan has not played since breaking his left leg in january . the gloucester no 8 is hopeful of playing in england 's world cup warm-up games . morgan last played for england against australia in november . the 26-year-old has had final surgery to remove a pin from his leg .\nhaji bakr , a former iraqi army colonel , was close to isis leader abu bakr al-baghdadi . he was executed by a rebel group in january 2014 . documents detailing isis plans to take over syrian villages have been found . they include blueprints for an isis secret service and instructions on how to infiltrate and take control of local villages . isis ' leadership is dominated by ex-members of the late iraqi dictator 's military .\na man who died in texas of the human version of mad cow disease last year likely contracted it from eating beef raised in britain , a cdc report has revealed . the unnamed man , who died from variant creutzfeldt-jakob -lrb- vcjd -rrb- disease in may 2014 , just 18 months after he first showed symptoms , was a naturalized u.s. citizen originally from the middle east . the extreme rarity of the disease , especially in the united states , led the man -- who was in his 40s -- to be misdiagnosed with psychiatric symptoms before ultimately receiving the vcjd death sentence .\nthe five students were on their way to finish their first set of clinical rotations . they were killed in a multivehicle wreck near savannah . a truck driver is not charged in the crash . the women were juniors at georgia southern university in statesboro .\nfive chinese feminists may face up to five years in prison over their campaign for gender equality . the women were detained on march 6 and march 7 in three chinese cities . they had planned events for international women 's day on march 8 . the five were initially held on suspicion of `` picking quarrels and provoking trouble ''\n20-year-old british tourist claims she was molested by a taxi driver . the driver , known as salim , is accused of assaulting the woman on friday . he has been arrested and is being held in custody by rajasthan police . the incident comes after a number of sexual assaults reported in india .\nmelanie and vanessa iris roy decided to each carry a child one year apart . they took photos at each stage of their respective pregnancies . the couple then uploaded the images to instagram and they quickly went viral . the women say they are shocked and overwhelmed at the support their photos have garnered . they hope the pictures will inspire others to start a family .\njohn carver says he is enjoying his role at newcastle united . he has won just two games since replacing alan pardew as manager . newcastle have lost their last five premier league games . carver insists he is getting the best out of his players . newcastle face tottenham at st james ' park on sunday .\nhawaii is the first state to raise the legal smoking age to 21 . the bill would prevent adolescents from smoking , buying or possessing both traditional and electronic cigarettes . governor david ige has n't yet decided whether he will sign the bill . 90 percent of daily smokers begin the habit before age 19 .\nlady penelope and her faithful chauffeur aloysius parker have been given slight tweaks for the 2015 remake of thunderbirds . lady penelope is this time voiced by gone girl actress rosamund pike . she has also lost the twin-set and pearls and looks a much more modern , dressed down lady secret agent .\nbrentford beat fulham 4-1 in the west london derby at craven cottage . stuart dallas scored twice for the bees , while alan judge and jota also netted . brentford move up to fifth in the championship with six games to play .\nsix leeds players pulled out of saturday 's match against charlton . mirco antenucci , giuseppe bellusci , dario del fabro , marco silvestri , souleymane doukara and edgar cani were among those to withdraw . the players were accused of going ` on strike ' by some fans . but leeds president massimo cellino insists he had nothing to do with the events that led to the players pulling out .\npolice in texas were seen running around armed with lassos as they attempted to catch the stray shetland foal . incident took place around 10am on tuesday along interstate 35w in fort worth , with traffic backed up as a result . sheriffs were eventually able to corral the pony and return him to his owner .\n18-month-old harry was out with his parents in cambridge on bank holiday monday . he was caught under the wheel of a cyclist and dragged along the path . youngster was left with blood pouring from his face and inside his mouth . police have urged cyclist to contact officers over the incident .\nabba sang ` my , my ! at waterloo napoleon did surrender ' but the swedish band were visiting a museum in the french half of belgium . the french-speaking world is less convinced about napoleon 's defeat . 2015 marks the 200th anniversary of the battle of waterloo .\naidan turner will return for a second series of bbc period drama poldark . the 31-year-old has won legions of dedicated fans since stripping off . the cornwall-set drama will be coming back for eight more episodes . about 8.1 million people on average have watched each episode .\ngerman inventor patrick priebe built a working iron man-style arm and hand that fires beams from the back of the wrist or from the wearer 's palm . in a video , the contraption is shown popping balloons and lighting matches from feet away . it was created by wuppertal-based mr prie be , who designs and builds metal laser gadgets to order online . his laser gloves and laser gauntlet/arm are available to order in varying wavelengths .\nthe tejano star 's family is creating a hologram-like figure . the project is being called `` selena the one '' the hologram will be `` walking , talking , singing and dancing '' the project will launch in 2018 . selena died 20 years ago .\nbikini-clad models took to a narrow pathway 2,000 metres up a mountain . the challenge was part of the annual miss bikini of the universe contest . the girls were competing in luoyang , in the henan province of china . the uneven footpath is only one-metre wide and has potholes .\nluke brett moore overdrew his st george bank account 48 times . the 27-year-old was receiving centrelink payments while he was spending the money . he spent the money on luxury cars , a power boat and celebrity memorabilia . nsw police found his haul after raiding his home in december 2012 . moore was found guilty of knowingly dealing with proceeds of crime and dishonestly obtaining financial advantage by deception . he will be sentenced on friday in a sydney court .\nnaunihal singh , 54 , woke up great-grandfather ujjal singh at manchester home . he then slit his throat with kitchen knife at son and daughter-in-law 's home . attack came after heated argument over couple 's lack of children . ujjal accused naunihal 's son yawinder-pal ` monty ' of ` firing blanks ' naunical jailed for at least 17 years and 39 days after admitting murder .\nxabi prieto opened the scoring for real sociedad with a 31st minute penalty . lucas perez equalised for deportivo la coruna with a second half strike . gonzalo castro scored a superb goal for david moyes ' side . verdu nicolas headed home a late consolation for depor . the la liga clash finished 1-1 at the anoeta stadium .\nformer indy racing league driver sam schmidt became paralyzed from the neck down after crashing during testing in orlando in 2000 . schmidt conquered the 11-turn circuit sunday in a modified 2014 corvette c7 stingray . the vehicle allowed schmidt to navigate the car independently using only his head and mouth .\nus envoy mark lippert said if north korea improves its human rights record and takes steps to end its nuclear program , it will be rewarded . the north 's committee for the peaceful reunification of korea said lippert 's remarks were proof that washington was intent on hostility . the 42-year-old needed 80 stitches to the deep knife wound to his face after the attack . south korean police charged lipper 's attacker with attempted murder .\nhenri morris drugged a female employee during a business trip in order to take naked photos of her . the 67-year-old was caught in an fbi sting after investigators were approached by one of his victims in 2012 . he was jailed for 10 years after admitting drugging and abusing a female worker . morris was the president of edible software solutions in houston , texas .\nangela postle from maroochydore in southeast queensland has been experiencing purple colouring in her oranges . the mother-of-five sent the fruit of to queensland environmental health branch for testing , but their first round of scientific tests were to no avail . ` i 'm very worried because i feed my kids a lot of oranges and fruit . we need answers because this could be a more widespread problem , ' ms postle said .\ncarwyn scott-howell fell to his death while skiing in flaine , france . he was on holiday with his mother , sister antonia , nine , and brother gerwyn , 19 . police said they were led to the boy 's body by footprints in the snow . carwyn 's family described him as an ` adorable , caring person ' who gave so much love .\ndavid hibbitt , 33 , was diagnosed with advanced bowel cancer in july 2012 . he had surgery to remove his large bowel and chemotherapy . in february last year , he was told he had 18 months to five years to live . in desperation , he tried cannabis oil as a last resort and bought it for # 50 . now says he has been cancer-free since his last scan in january .\nsportsmail brings you the latest squad news and stats from the premier league . arsenal host liverpool in the premier league at 12.45 pm on saturday . manchester united take on aston villa in the afternoon . chelsea take on stoke city in the evening kick-off at 5.30 pm .\nfarryn johnson was fired from a maryland hooters in 2013 . she sued the ` breastaurant ' and is now set to receive thousands of dollars from an arbitration ruling . johnson has claimed a supervisor at the hooters where she worked had an issue with her getting blonde highlights . an arbitrator determined johnson was let go illegally and as a result of racial discrimination .\nnumber of ethnic minorities in uk to more than double between 2011 and 2051 . one in four britons will be from a minority background by the middle of the century . rise due to baby boom among pakistani , bangladeshi , and african immigrants . campaigners fear sudden increase will put pressure on schools and nhs .\nben hiscox , 30 , was playing home game for stoke gifford united in bristol . slipped on wet ground following tackle and crashed into clubhouse building . striker knocked unconscious and rushed to intensive care for urgent treatment . but three days later , he suffered two seizures and died in hospital .\nnewcastle united face liverpool at anfield on monday night in the premier league . john carver says his players need to show ` character ' to prove themselves . newcastle have lost four in a row and are in relegation danger . carver is planning a major overhaul of his squad this summer .\nslovakia beat the czech republic 1-0 in zilina on tuesday . ondrej duda scored the winning goal after the interval . it was the third victory for slovakia in the 10th match against the czechs since czechoslovakia 's split in 1993 .\nshadow chancellor dismisses infamous labour note admitting the party blew the nation 's finances . liam byrne left the note to his successor as treasury secretary in 2010 . mr balls said the letter was just a ` jokey note ' and the money had n't run out . the tories said the remarks showed he had not learnt lessons from economic crash .\ndanny alexander could be given a peerage in a bid to keep him in treasury post in a second coalition . the high-flyer and close ally of nick clegg is on course to lose his seat to the scottish nationalists . he would be one of the highest-profile casualties of the snp surge .\neuropean rugby champions cup is set to get underway on saturday . bath , leinster , northampton and saracens are the eight teams left in the competition . sportsmail 's nik simon gives you a run-down of each of the sides . the tournament will be held in france and germany .\nblocked access to twitter , facebook and youtube in turkey . turkish court imposed blocks because of ` terrorist propaganda ' images . pictures of mehmet selim kiraz with a gun at his head were shared online . prosecutor died in hospital after he was taken hostage by far-left extremists .\nvictim richard kerr says he was abused by ` very powerful ' figures . claims he was taken from children 's home in belfast to london in 1970s . he says he and two other boys were trafficked to capital in 1977 . allegedly abused at dolphin square and elm guest house in london .\nraymond townsend , a manager at us limousine , sent geralyn ganci lurid messages . the woman , who sat near his wife in their office , repeatedly refused his requests for sex . he sent her a text saying she lost her job because she ` refused to have sex with the general manager ' a jury found townsend liable for sexual harassment in 2010 . a judge has now ordered him to pay $ 700,000 in damages and fees . ganci , now 32 , will also be awarded $ 550,000 .\nleicester city host west ham united at the king power stadium -lrb- saturday 3pm -rrb- foxes defender matt upson will not feature with achilles problem . jeff schlupp could be rested by nigel pearson 's side . winston reid could return for west ham after hamstring injury . enner valencia back in training for hammers but andy carroll , james tomkins and doneil henry all miss out .\ncolin shearing , 70 , was convicted of indecent assault on a six-year-old . he was given a week on bail to ` put his personal matters in order ' but he fled to paris and booked a room at the hotel des nations . he then moved to a second hotel and then a third to evade police . judge huw davies issued a european-wide warrant for shearing 's arrest .\npolice raided lo yen city restaurant in southern tijuana on wednesday . a customer called in the cops after witnessing staff butchering a dog . the dog was intended to be served up as a pork dish on the menu . five people were arrested , including three chinese workers . owner yu yu chou said the meat was for his own personal use . authorities have closed six chinese restaurants in the local area .\nzulu king blamed for sparking violence against foreigners in south africa . king goodwill zwelithini has previously labelled homosexuals as ` rotten ' he has also courted wrath of women 's rights and hiv/aids campaigners . king is said to have told followers in a speech that foreigners were ` lice ' and ` ants ' and should be expelled from south africa - a charge he denies .\na dramatic road rage incident between a truck driver and two young men has been caught on camera . the footage was taken last monday in forrestville in northern sydney . the incident started on warringah road and continued on for 8.5 km . the truck driver was tailgating , yelling and flashing his lights aggressively , nearly crashing into the back of a small subaru car . the passenger in the car claims the truck driver even spit on their car .\nlabour leader said it was unacceptable to abandon thousands of immigrants boarding makeshift boats in africa . he also called on the uk to take a ` fare share ' of refugees fleeing civil war . around 1,300 people are believed to have drowned in the past two weeks while trying to reach europe in boats launched from libya .\nbob arum says the contracts for manny pacquiao 's fight with floyd mayweather have yet to be signed . the filipino 's promoter says that the draft contract he received on april 15 was not what he agreed with mayweather promotions and mgm when the term sheet was signed a few months ago . mayweather promotion ceo leonard ellerbe said that arum ` is n't willing to live with the agreement ' the mega fight will take place at the mgm grand in las vegas on may 2 .\ndetroit mother charged with murder , torture in deaths of her two children . mitchelle angela blair is accused of killing her 13-year-old daughter and 9-year old son . the bodies were found wrapped in plastic inside a freezer by a bailiff performing a court ordered eviction .\nnew england patriots quarterback tom brady missed thursday 's white house ceremony because of ` family commitments ' obama made a joke about deflategate during his speech on the south lawn . head coach bill belichick gave the president a thumbs down . brady won his fourth super bowl ring in february - and his first since obama took office .\nwang pingan has cycled around china for 460 days . his bike was stolen in the southern city of shenzhen . police tracked down and recovered the bike . wang is now heading to hainan island . he had earlier turned down offers from across china to help him get a new bike .\nfbi 's goal is to prevent `` homegrown attacks '' before they happen . when acts of domestic terror do occur , the fbi investigates and tries to catch those responsible . these are the fbi 's most-wanted domestic terrorist fugitives . the fbi considers donna joan borup `` armed and dangerous ''\nhamilton college , 40 miles east of syracuse , new york , was placed on lockdown monday morning . campus officials said someone called in a bomb threat and the threat of a shooting at kirner-johnson building before 10am . police evacuated mcewen , milbank , babbitt , cafe opus and schambach buildings while k-9 units were brought it to search the campus . a suspicious package was found in the kirner johnson building , and k - 9 dogs were on scene . by 3.30 pm , officers examined the item found at the kirners johnson building and found it to be harmless .\nmitchelle blair , 35 , from michigan , is charged with with felony murder , premeditated murder and torture . court officers carrying out a march 24 eviction at the family 's apartment found the frozen corpses of 13-year-old stoni ann blair and 9-year . old stephen gage berry . blair used an expletive wednesday in juvenile court as visitation between her two living children and their fathers was discussed . blair also said alexander dorsey was ` never there ' for his children . dorsey is the father of blair 's 17-year old daughter and was the father for stoni .\nresidents in stratford-upon-avon named among best recyclers in england . council chiefs left red-faced after leaflet promoting recycling could not be recycled . leaflet attached to green bins told residents what items could go in them . but footnote said : ` this is not recyclable '\nfacebook page mocking returned australian servicemen and women has sparked outrage on social media . ` the diggers are dole bludgers ' has attracted more than 360 likes since the page started in late january . the page claims that the australian armed services promotes the thoughtless killing of innocent civilians . despite multiple reports to facebook as ` hate speech ' , the page remains live .\naaron cresswell gave west ham the lead with a free kick after seven minutes . marko arnautovic equalised for stoke city in the 95th minute with a header . hammers had two goals ruled out for offside before arnautovi 's late strike . hammer boss sam allardyce admits his side are suffering from a psychological problem .\nluke shambrook went missing from the candlebark campground at lake eildon national park , northeast of melbourne , on friday . the 11-year-old autistic boy was found on tuesday , just three kilometres from where he went missing . his parents revealed he has been going to the campground since he was one year old and vowed to take him back for more holidays . luke was found by a police helicopter on tuesday after four days in the bush . he was suffering from dehydration and hypothermia when he was found .\nrebecca lowe was at turf moor to present burnley 's premier league match against arsenal . lowe was joined by former wimbledon midfielder robbie earle and retired mls star kyle martino . the trio , plus pitchside analysts lee dixon and robbie mustoe , will also be at the manchester derby at old trafford on sunday and at anfield for liverpool-newcastle on monday .\neric lanlard is the master patissier on board p&o 's britannia cruise ship . the ship is the largest ship built for the british market . tamara shows off her cooking skills in the cookery club . she also takes a tour of cartagena in spain and corsica .\nmichael buckley , 60 , died after being hit by a shopping trolley at m&s . melanie buck , 33 , from bromley , is accused of killing the frail widower . she allegedly became frustrated because the food aisles were gridlocked . it is alleged she knocked him over with her trolley , breaking his wrist and thigh bones . mr buckley , who suffered from diabetes , died three months later in intensive care .\ntop gear took up first , second , third and fifth spots in the top five . four episodes in february were watched a total of 9,047,000 times . episode two alone was watched 2,645,000 time on the bbc 's iplayer . figures for march are expected to see a sharp decline as only two episodes were shown before jeremy clarkson 's suspension .\nlewis hamilton won the bahrain grand prix on sunday to extend his lead in the championship . the briton was interviewed by three-time world champion sir jackie stewart after the race . hamilton could learn a few things from and about sir jackie . bernie ecclestone is hiring a public relations veteran to help promote formula one .\nst george new generation show was held at mercedes-benz fashion week australia on thursday . models strutted down the runway in delicate sheer creations by marriam seddiq . sex appeal played a major role in the show , whether through the sheer mesh fabrics or racily cut gowns with thigh-high slits .\nrory mcilroy is set to tee off at augusta national on wednesday . the northern irishman will be caddied by one direction 's niall horan for the first time . mcilory is bidding to complete a career grand slam at the masters .\nadnan januzaj was at the world championship in sheffield . the manchester united winger turned up to watch shaun murphy . januzaja turned out for united under 21s in 4-1 win at fulham on tuesday . the 20-year-old showed off his pool skills on a mini pool table .\njon hamm , 44 , was allegedly involved in a hazing scandal at the university of texas at austin in 1990 . court documents claim he and seven other frat brothers beat and set fire to a 21-year-old pledge and beat him with a paddle during a haazing ritual . hamm was eventually charged with assault but the charges were dismissed . the actor was then allowed to return to his family and start his acting career .\nsummer robertson died after being overpowered by currents off south africa . the 21-year-old had been helping youngsters in one of the country 's poorest townships . she was with three other british members of a team on a 10-week charity adventure . her parents have now paid tribute to their ` bubbly tomboy ' and launched appeal .\nbobbi anne finley , also known as bobbi ann house , married at least 14 servicemen and drained their bank accounts . she was arrested in 2010 for fraudulently writing a series of bad checks worth at least $ 13,500 . she and her new husband zackerie house , 27 , are wanted for check fraud in marion county , oregon . the two are believed to be camping and have bought a stolen car .\ncourt shown footage of deadly incident in compton on january 18 . cle ` bone ' sloan tells police suge knight growled ` i 'll kill you ' before ` everything went black ' police say that was the moment before knight killed terry carter and tried to kill sloan by ramming over them in his pick-up truck . court also released an image of the truck the rap mogul was driving when he ran over the two men .\nmichele bachmann compared president obama to the co-pilot of a doomed germanwings flight . she said obama is for the u.s. `` 300 million souls '' what andreas lubitz was for the 150 people who died . bachmann is no stranger to voicing her opinion on the president 's dealing with iran .\nstoke city host chelsea at stamford bridge -lrb- saturday 5.30 pm -rrb- diego costa may not be risked for chelsea following hamstring injury . jonathan walters set to return for stoke after calf injury . victor moses will not be available for stoke as they are on loan from chelsea . chelsea have won 10 and lost just one of the 13 premier league meetings with stoke city .\nben thurlow was drunk when he attacked rebecca hudson . the 23-year-old was suffering from a suspected concussion . he shoved ms hudson as he tried to get out of the stationary ambulance . police were forced to escort thurlow in the ambulance while he was taken to hospital . on the journey he once again attacked ms hudson by knocking her over . thurlows was given a four month sentence , suspended for 12 months .\ndavid lammy says the snp is a party labour could ` do business with ' in a hung parliament . admits party would look to ` forge a common alliance ' with snp in event of hung parliament . comes amid warnings from tories that snp will hold labour to ` ransom ' if it holds balance of power . polls suggest snp are on course to win up to 50 seats on may 7 wiping out labour majority .\njurgen klopp will leave borussia dortmund at the end of the season . manchester city have met klopp to assess him for the manager 's job . but it was back in 2013 when they were seeking a replacement for roberto mancini . txiki begiristain concluded that klopp was not the right fit for city . the club went on to appoint manuel pellegrini .\nsebastian vettel won the second race of the season in malaysia . lewis hamilton and nico rosberg finished second and third . james allison believes mercedes will lead the way in china . the german driver won in malaysia for the first time in two years . allison is not expecting back-to-back ferrari wins .\nthe mistley thorn in essex has been around for ten years . the hotel is a two-minute walk from mistley station . the menu includes oysters , chowder and local chicken . the rooms are a bargain at # 20 per night . the restaurant is open on weekends .\nwade lange and his team living dead clothing have been over-run by orders and enquiries since launching their new line this week . the brisbane-based company beat a who 's who of global clothing manufacturers last year to win the marvel licence . there are almost 50 garments dedicated to the movie , ranging in price from $ 45 to $ 100 . the company 's website crashed due to the demand from around the world .\nheather mack avoided the death penalty last week after she was sentenced to 10 years for the murder of her mother in bali . the 19-year-old brutally killed sheila von wiese-mack with the help of her boyfriend in august and dumped the bloody suitcase in a taxi outside the upscale st. regis bali resort . andrew chan and myuran sukumaran were executed on wednesday morning after they were convicted of trying to smuggle heroin from bali to australia in 2005 . the bali nine ringleaders spent 10 years in kerobokan prison working to reform themselves with chan becoming a priest and sukumaru being an accomplished artist .\nsamantha fleming , 23 , was found dead in a plastic bin in a closet at the home of geraldine r. jones , 36 , in gary , indiana . police say jones pretended to be a social worker in order to steal fleming 's daughter , serenity , and claim the child as her own after faking a pregnancy . jones has been charged with murder , kidnapping and criminal confinement .\nthe cheapest apple watch is available to pre-order in nine countries . the 38mm sport version costs # 299 in the uk , while the same model in the us costs $ 349 . but the most expensive version of the 38mm edition in the british is # 13,500 . this compares to $ 17,000 in the u.s. and # 957 in australia . the most expensive 38mm edition in china costs # 2,665 compared to the uk . the watch is also more expensive in canada and quebec than the us . apple told mailonline : ` uk prices include vat . us prices do n't include sales tax . '\ncomey said last week that ` in their minds , the murderers and accomplices of germany , and poland , and hungary , and so many , many , other places did n't do something evil ' he originally delivered the remarks on wednesday at the u.s. holocaust memorial museum in arguing for the importance of holocaust education . the polish reaction was swift . on sunday , the u-s . ambassador to poland was called to the foreign ministry in a formal act of protest on the 72nd anniversary of the warsaw ghetto uprising .\nsome adults are buying coloring books for themselves . coloring books are popular with adults who want to unwind . the trend is growing in the u.s. , too . colouring books are a form of art therapy for many people . they can help relieve stress , improve moods and help with depression .\npolice chief terry rozema spoke out on wednesday to defend his officer . officer michael rapiejko was filmed running into mario valencia , 36 . he was driving his patrol car and hitting the suspect with a rifle . valencia was rushed to hospital in serious condition and booked into jail . police have defended rapiejo 's actions , saying he was justified . the incident has stirred debate about the type of force police can use . it follows cell phone footage earlier this month of south carolina police officer michael slager fatally shooting water scott , 50 , five times in the back as he was running away .\nrandy and jodi speidel , from bellefontaine , ohio , created online fundraisers on givefroward.com and gofundme.com in late february begging good samaritans for financial help . mrs speidel wrote that they had been living without gas all winter , had no running water and were close to having their electricity and internet service shut off . the couple 's landlord found a note warning passersby of carbon monoxide poisoning inside their home on tuesday .\na magnitude 3.1 earthquake caused a sharp jolt to be felt in the san fernando valley and parts of northern los angeles county . the quake happened just before 9pm last night , according to the us geological survey . it was centered about four miles north of san fernando near interstate 210 .\nangel di maria has a new tattoo on his left arm . the number seven stands out among others on the 27-year-old 's arm . di maria wears the no 7 shirt at manchester united . the midfielder joined the club for a club record # 60million last summer .\npaul and laura elliott married at the london marathon on sunday . couple ran 26.2 mile route together and were showered with confetti at the finish line . couples have raised # 7,000 for cancer research uk so far . paul lost his father to bowel cancer 19 years ago and so ran in his memory .\neddie hearn has offered carl frampton # 1.5 m to fight scott quigg . the fight would take place at manchester arena on july 18 . but frampton 's promoters cyclone promotions have refused to renew negotiations . hearn said he has offered no options or rematch clause .\nchurchill downs in louisville , kentucky has banned selfie sticks . the track hosts the annual kentucky derby on may 1st and 2nd . it has also banned selfie stick use during live racing at the track . the pole-like devices are used to take pictures of themselves with phones . the ban will extend beyond derby day and will include other events .\nadam lyons , 34 , is in an open relationship with two women . brooke shedd , 26 , and jane shalakhova , 25 , say they are in a ` unique ' situation . they say they do not ` share ' adam but are in love with each other . the trio appeared on this morning to set the record straight .\nlouis van gaal is said to be interested in signing memphis depay . psv director marcel brands admits depay will leave the club . depay has scored 19 goals in 25 league games so far this season . tottenham , manchester city and psg are also interested in depay .\narsenal beat burnley 1-0 at turf moor on saturday night . aaron ramsey scored the only goal of the game in the first half . arsene wenger said he hopes burnley escape relegation from the premier league . the gunners boss has been praised by burnley boss sean dyche this season .\ntim krul appeared to congratulate jermain defoe on his goal before half-time at the stadium of light . sportsmail 's jamie carragher said krul 's actions were ` not good sportsmanship ' sunderland beat newcastle 1-0 in the wear-tyne derby on sunday .\nthe storm prediction center upgraded to its second-highest advisory level - a moderate risk - wednesday . strong storms swamped indianapolis , cincinnati and charleston , west virginia , at midday wednesday and forecasters said more severe weather could form as far away as the plains of west texas . 57 million people were at an ` enhanced risk ' of seeing storms nearby , including residents in chicago , detroit and st. louis .\n`` lost river '' is ryan gosling 's first film as a director . the film is set in detroit , the motor city . gosling says the city 's dereliction is part of what detroit is dealing with . the actor says the film shows the city is undergoing a rebirth .\ngeorgina rojas-medina , 41 , was shot and killed by her common-law husband , gerardo tovar , 44 . tovars ' 4-year-old daughter was also found dead in the house . the couple had been together for 13 years .\npablo mandado and ilze zebolde have been cycling around the world for the past year . the spanish couple have been through 16 countries and have covered almost 7,000 miles . they have been living on less than three euros a day and have no plans or agenda . they are currently in greece and plan to continue on to asia .\nreport : chinese nuclear experts say north korea may have as many as 20 warheads . peter bergen : the key takeaway is the type of warhead , not the number of warheads . he says pyongyang could be in a position to double its arsenal by next year . bergen says the u.s. may have downplayed the threat north korea poses once again .\nnick clegg and miriam gonzalez durantez were interviewed for itv 's tonight programme . they were asked why they chose to remain in their family home in putney . mr clegg was given the option of moving to a government mansion after the last election . but his wife vetoed the move and said the best thing was for their children to stay at home .\ngeorginio wijnaldum says he wants to play in a ` great club ' in europe . the psv captain has been linked with a move to manchester united , arsenal and newcastle . wijnalum says the lure of playing in the premier league appeals .\nnick clegg urges labour and tory supporters to vote tactically to stop salmond . former scottish first minister hopes to make return to commons as mp for gordon . lib dems have held the seat for more than 30 years . polls suggest lib dems face near-wipeout in scotland .\njustin rose battled back from a nightmare start to finish on seven under . the 2013 us open champion is now in contention at augusta . rose is seven shots behind runaway leader jordan spieth . ian poulter was par for the round after bogeying the 18th .\nreanne evans is taking on ken doherty in a world championship qualifier . doherty won the opening frame 71-15 but evans hit back to take the next three . the former world champion led 3-1 at one stage but evans fought back . doleton won four of the final five frames of the morning session to lead 5-4 .\nbadou jack defeated anthony dirrell on points in chicago on friday . george groves will fight jack for the wbc world super-middleweight title . groves took to instagram to reveal his winning bet on jack to win by a points decision or via a technical one .\nleonardo dicaprio and a partner bought blackadore caye , a 104-acre island off the coast of belize , in 2005 for $ 1.75 million . the actor and his partners are now planning to build a luxury eco-resort there . the resort will have villas on a platform over the water , as well as artificial reefs with ` fish shelters ' and other features that hope to rehabilitate the area . it is set to open in 2018 .\nnathan priestley , 21 , from norwich , was once dubbed ` jabba the hutt ' by bullies . he was just 18 when he took an overdose of 30 pills , but survived . he became so depressed over his size that he refused to leave his house for a year . after his suicide attempt , he made the decision to stop wallowing in self-pity . within two years , he had shrunk to 14 stone .\nblue-eyed australian doctor tareq kamleh has been identified as the man who appears in the latest isis propaganda video . the video shows him calling himself abu yusuf and introducing the islamic state health service . kamleh was known to practice medicine in adelaide , mackay and finally in perth before he took up working for is . he was reportedly a ` womaniser ' who did n't shy away from drinking alcohol .\nformer manchester united star paul scholes co-owns salford city . scholes , phil neville , nicky butt and ryan giggs also own the club . salfords are currently top of the evo-stik league first division north . win at home to ossett town on saturday and they are up .\nlewis hamilton says his mercedes contract has not been signed yet . british driver claims it is ' a pain in the backside ' to deal with paperwork . hamilton is favourite to win this weekend 's chinese grand prix . the 30-year-old is currently leading the world championship .\njohn higgins will face ding junhui in the quarter-finals of the china open . higgins defeated judd trump 5-4 to move into the last eight . mark selby beat david gilbert 5-2 in a low-quality clash . shaun murphy beat jamie jones 5-3 in the masters final .\nphoto of civil war ironclad css georgia revealed to be fake created in teenage hoax using a 2ft model . john potter , from savannah , admitted forging the picture with his brother in the 1980s . he then passed on the image on to the georgia historical society . the photo became an unofficial part of the ship 's history even though it was never authenticated .\nparty has highly targeted strategy , effectively fighting 60 by-elections . senior party sources admit current 57 mps will be slashed to ` in the thirties ' nick clegg today admitted his party was fighting ` tooth and nail ' in fewer than a tenth of westminster seats . he stopped off in hampshire where lib dems held eastleigh after huhne jailed .\nashy bines admitted 10 of her clean eating diet plan recipes were stolen . she said she ` outsourced ' the recipe component to an unnamed nutritionist . sydney personal trainer allie dodds , 24 , alleges her sushi and cauliflower recipe and others were placed in ms bines ' book without permission . ms bine 's instagram account has almost one million followers . ms dodds said she was ` devastated ' to find her work had been taken .\nespn suspends reporter britt mchenry for a week . she was recorded berating a towing company employee . mchenry says she allowed her emotions to get away from her . she is one of several espn on-air talents to be suspended in the past 12 months .\ndavid billing , 48 , had to have 14 hours of surgery after being diagnosed with cancer . surgeons sawed through his jawbone and removed part of his tongue to remove tumour . they replaced the lost tissue with muscle from mr billing 's arm , which still has hairs . he is now preparing to run the london marathon to raise money for cancer research .\noutspoken 70-year-old says women are only of average intelligence . tv presenter also says no politician is equipped to be prime minister . he says baroness doreen lawrence ` treats blacks as victims ' claims ethnic minorities and disabled people should not ` assume victim status '\nkevin pietersen signed a new deal with surrey on thursday . the 34-year-old is determined to restart his test career . paul downton was sacked as england cricket boss in february 2014 . chris tremlett has backed pietersen to make an international comeback . click here for all the latest cricket news .\nformer great british bake off contestant , iain watters , is back to revive easter classic , the simnel cake . the belfast-baker puts a modern twist on the easter favourite with pistachios , nutmeg and chopped figs . the cake is decorated with orange zest and edible rose petals .\npaula duncan , 62 , is best known for her role as a bubbly housewife in the early seventies and eighties . she has revealed she attempted to commit suicide at age 43 . duncan says her marriage breakdowns contributed to her depression . her daughter jessica orcsik was the one who found her . duncan credits charity work as her salvation and finding self worth again .\nchris gayle is currently in india ahead of the ipl tournament which starts on wednesday . the batsman posted a picture on instagram of himself behind the dj decks . gayle will be hoping to help royal challengers bangalore win their first-ever ipl crown .\nroxanne jones : isis and boko haram use women as slaves in their brutal campaigns . jones : the treatment of women is part of a larger plan to build a `` caliphate '' she says the women are not simply abused and discarded , but incorporated into daily life . jones says the brutality of the new jihadis is more than mere sadism .\natletico madrid take on real madrid in champions league quarter-final second leg on wednesday night . diego simeone believes english clubs need to ` wake up ' after poor showing in europe . chelsea , arsenal and manchester city were eliminated at the champions league last 16 stage . everton were dumped out of the europa league in the same round . sime one of the best teams in europe , according to the atletico boss .\nmalia obama , 16 , reportedly was taught how to drive by secret service agents . first lady michelle obama told celebrity chef and daytime talk-show host rachael ray in an interview that it was the armed agents who provide around-the-clock security for the family . mrs. obama has n't driven herself in seven or eight years , she said .\nbritain struck oil in the falklands yesterday , likely to escalate tensions with argentina over ownership of the islands . after nine months of exploratory drilling , a group of british companies found oil and gas in a remote field north of the island . the bonanza could be worth billions of pounds , adding to fears of renewed conflict over the british overseas territory .\ntennis star caroline wozniacki congratulated jordan spieth on twitter . spieth won the first major of his career with a four-shot victory at augusta . woznniacki was quick to ensure fans it was n't a dig at her former love interest rory mcilroy .\nreal madrid and atletico madrid drew 0-0 in champions league quarter-final first leg . atletico goalkeeper jan oblak made a string of excellent saves to keep real at bay . carlo ancelotti and diego simeone both praised oblaks ' performance .\nradical muslim preacher trevor brooks refused a passport by home office . the home office said it was not in the public interest for him to have a passport . it said he was seen as a terror risk and had planned to join islamic state . brooks , 39 , is an associate of islamist firebrand preacher anjem choudary .\nformer flame , artist and hospitality manager in coterie with chef . he has also been meeting up with british landscape artist lynne moore . he is also dating debbie spivey izo , an american divorcee in her 60s . he started dating nataliya lutsyshyna after his divorce from cheryl . he was due to cook at andy murray 's wedding in scotland .\nuniversity of bristol study found drinking a glass of wine makes you more attractive . but too much booze leads to ` excessive and unattractive ' facial expressions . alcohol has ` positive pulling power ' but only if the person is n't too intoxicated . study is first to show drinker themselves ` becomes more attractive ' to others .\n`` these are not thugs , these are upset and frustrated children , '' rev. jamal bryant says . baltimore mayor stephanie rawlings-blake says she was speaking out of frustration . `` thugs '' is the 21st century word for the n-word , bryant says , and it 's offensive .\nalexsandro palombo is an italian activist and artist . he has turned his hand to photography for his latest project . in what kind of man are you ? , he asks women to share their thoughts on machismo by writing them on pairs of pants and sharing via social media .\nterror group al qaida has seized control of a major airport , sea port and oil terminal in southern yemen . it came amid wider chaos pitting shiite rebels against forces loyal to the exiled president and a saudi-led air campaign . today , shiite rebels took part in a demonstration against an arms embargo imposed by the u.n. security council on tuesday .\nthe pfa premier league team of the year was unveiled on sunday night . eden hazard was named player of the season for the third straight season . sergio aguero replaces diego costa up front for manchester city . cesc fabregas is a surprise omission from the ea sports xi . everton defender phil jagielka and arsenal 's santi cazorla make the xi .\na wallaby has been caught on camera delivering a swift punch to a wombat who approached him while he was grazing . the wallaby turned around and gave the wombat a crack on the nose after it got a little too close for comfort . the incident happened at wilsons promontory national park , in the gippsland region in southeast victoria .\nnew zealand family of 14 walk out of christian commune . james and hope ben canaan left gloriavale christian community . the commune was founded by australian-born preacher neville cooper . it is home to around 500 residents who reject the outside world . the ben canaans are adapting well to life in the wider community . they are now allowed to wear ` modest ' clothing . the family have moved to timaru , 320km south of gloriavale .\nqueensland teenager billy-anne huxham was allegedly forced into a car at gunpoint by an ex-partner . the 18-year-old was reportedly attacked with a machete and taken from her home in caboolture at 6am on tuesday . police have found the car and are searching for the alleged abductor . carl garry chapman , 32 , is believed to be the victim 's former boyfriend .\noxford scientists say a mercury-like body struck the young earth . the object would have been the heat source for our planet 's core . the same object could have been responsible for creating the moon . it also explains where some rare-earth elements came from . study was published in the journal nature .\njurgen klopp has told borussia dortmund he wants to leave at the end of the season . the 47-year-old manager believes he has taken the bundesliga club as far as he can . klopp has won two bundesliga titles and the german cup in seven years at dortmund . the news will have arsenal and manchester city on alert .\noscar has been criticised by chelsea boss jose mourinho in recent weeks . juventus and liverpool are interested in signing the chelsea midfielder . brazil boss carlos dunga has advised juventus to buy oscar . dunga said the 23-year-old reminds him of roberto baggio .\nstaffordshire terrier izzy set to be destroyed after she bit a woman in august 2012 . the dog escaped from her owner tania isbester 's backyard in east melbourne . the woman who izzy bit suffered a 1.5 cm cut to her finger . izzy was seized by knox city council in june 2013 . lawyers for ms isbesters appealed to the high court hoping to have her staffordshire terriers saved from being put down . this is the first time a dog on death row is having its case heard in australia 's highest court .\nspencer bell , 71 , had bravely ventured on to motorway after a man fell from bridge . but as he tended victim alan tretheway , 67 , he was struck by toyota . mother-of-three iram shahzad , 32 , pleaded guilty at st albans crown court . she was sentenced to 14 months imprisonment , suspended for two years .\nbayern munich host porto in the champions league quarter-final first leg on wednesday . arjen robben , franck ribery , bastian schweinsteiger and david alaba are all out injured . but thomas muller believes the squad 's unity is stronger due to their injuries . bayern beat borussia dortmund and bayer leverkusen in recent games .\nclaudia winkleman has been nominated for her first season on strictly . the 43-year-old is the first presenter of the bbc dance contest to be nominated . she will compete in the entertainment performance category at next month 's awards . both sir bruce forsyth and co-host tess daly failed to achieve the feat .\nhillary clinton has declared her candidacy for president . frida ghitis : we call her by her first name , and her firstname only . she says it 's important to respect a leader who is in a position of power . ghitis says calling clinton by her name reinforces gender stereotypes .\nrob macfarlane captured photos of the raccoon on his crane in toronto . the critter climbed almost 700 feet up a metal ladder before taking a high-altitude poop . macfarlan shared his first picture of ` little mac ' on social media on thursday morning .\nthe east coast low is causing significant damage to property and power lines . it is the worst storm to hit the nsw coast in a decade . the bureau of meteorology issued severe weather warnings on sunday . but they did not know exactly where the storm would hit . it was forecast to form between port macquarie and newcastle . but it turned out to hit closer to newcastle than port macquarie . emergency services admitted on tuesday they were shocked by the severity of the storm .\ntwo of abubaker deghayes sons died fighting for al-qaeda in syria . his other two sons were killed fighting syrian government forces . he has now left his home in brighton to travel to the middle east . he is trying to bring home his remaining son amer , who is also in syria .\nstar reveals her daily diet in extract from book selfish . she changes her food intake every ten days . kim and kanye work with nutritionist to create meal plans . beyonce and jay z slimmed down by following a vegan diet . madonna follows a strict macrobiotic diet .\nlib dem leader 's wife said the party 's mps ` deserve ' to be re-elected in may . miriam clegg said she ` just wanted to do her bit ' for the party . she appeared alongside lib dem home office minister lynne featherstone . mr clegg was 100 miles away at a campaign event in chippenham , wiltshire .\npit crew member was hit by a car on sunday during the inaugural indycar grand prix of louisiana . todd phillips , a front-outside tire changer for dayle coyne racing , was injuried when he was struck by the car of francesco dracone . dracone spun while exiting his put box , clipping phillips ' leg .\na coyote was spotted on tuesday morning in chelsea , manhattan . it was first seen by a local walking his dog in a park near the church of the holy apostles . after the resident alerted two workers to the sighting , nypd officers arrived . however , the coyote did not surrender easily , sprinting across the grass . it took officers more than an hour to capture it with a dart gun . it is the second coyote sighting in new york in two weeks .\ndr warren weinstein , 73 , was killed in a us drone strike in january . it has now been claimed his family gave money to his kidnappers . they are said to have demanded the release of prominent afghan prisoners . they included ` poster girl ' for jihad dr. aafia siddiqui . it is also claimed he was used as a shield to protect a senior al qaeda operative .\nbill and denise richard wrote an op-ed in the boston globe , saying they oppose the death penalty for dzhokhar tsarnaev . the richards lost their 8-year-old son martin and their 7-year old daughter jane in the april 15 , 2013 , bombing . they say tsarnaev should be spared the death sentence so that they can finally get closure on the darkest chapter of their lives . last week , a jury found tsarnaev guilty on all counts related to the attack . the penalty phase of the trial starts next week , in which the jury will decide whether to sentence tsarnaev to death or life in prison without the possibility of parole .\nroberto martinez will hold talks with romelu lukaku after the striker 's agent suggested he could leave everton as soon as this summer . mino raiola said he would have never sanctioned lukaku 's # 28million move to goodison park last summer . the belgian international is just one season into a five-year contract following his move from chelsea .\nhugh owen took the images of bristol between 1850 and 1855 , nearly 100 years before much of its historic centre was destroyed by nazi bombing . the albumen prints were made in the 1870s from the original paper negatives of the early 1850s . they are due to go up for auction in cirencester tomorrow and could fetch up to # 30,000 .\nzoe gregory pleaded guilty to sending an email hoax to blow up the school where she worked . she was arrested and held in a police cell for 14 hours after the threat . holly littlefield , 16 , was too scared to return to school for two days . she said she was taunted by classmates and was ` crying and distressed ' gregory , 26 , could face up to seven years in prison due to the seriousness of the offence .\nthe painting , titled ` bomb damage , ' was drawn on a metal door in northern gaza . it formed the last remaining part of a two-story house belonging to the dardouna family . but rabie dardouna , 33 , said he has been tricked into selling it for just # 100 . he is now demanding the decorated door is returned after being told of its true value .\nceltic defeated st mirren 2-1 in spl clash at paisley on friday night . kris commons and stefan johansen scored for celtic . james forrest scored the winner for ronny deila 's side . st miren are bottom of the spl table and four points from a play-off spot .\npresident obama is calling for an end to psychiatric therapy treatments aimed at changing the sexual orientation or gender identity of gay , lesbian and transgender youth . the move comes in response to an online petition posted on the white house website following the death of 17-year-old leelah alcorn . the petition currently has over 120,000 signatures .\nrhiannon langley is undergoing a nose job in thailand . the 24-year-old from melbourne has 189,000 followers on instagram . she is sharing her experience with her followers on social media . the melbourne woman says she is doing it because she can not afford surgery in australia . she says she has received a lot of positive feedback from her followers . langley says she will not reveal the results of her nose job for six months .\ntories and labour seized on the figure , with shadow work and pensions secretary rachel reeves describing it as ` shocking ' trussell trust admitted in climbdown that ` these are not all unique users ' it emerged last night that its true number of users is likely to be no more than half a million -- and possibly lower still .\nmanny pacquiao and floyd mayweather will fight in las vegas on may 2 . pacquio 's trainer freddie roach says mayweather can not be considered the best ever . roach rates super middleweight andre ward and middleweight sensation gennady golovkin above mayweather .\nolivia munn has been cast in `` x-men : apocalypse '' she will play the telepathic psylocke . the comic book 's psylock was created by chris claremont and herb trimpe . the movie hits theaters may 27 , 2016 .\nlizzi crawford , 32 , from stoke-on-trent , weighed 20 stone . she was on a diet of takeaways , kebabs and wine and spirits . a child on a bus asked her if she was pregnant . the remark left her mortified but inspired her to slim down . she lost over 7st and is now a healthy 12.5 st.\naston villa striker christian benteke scored a hat-trick against qpr on tuesday . his goals moved belgium into third place in premier league goals scored list . belgium are now 19 goals behind leaders spain and within 19 of second-placed spain . eden hazard has scored 12 goals for chelsea so far this season .\nvictoria prosser , 33 , heckled david cameron about homeless people in the armed forces . she shouted : ' i have to speak out ' as the prime minister tried to answer a question . mother-of-two was removed from the studio and told to leave the debate . she said she wanted people to question ` the 1 per cent at the top ' who she claimed were not working in the country 's interests .\nronnie o'sullivan has admitted he would ` love ' to be the presenter of top gear . the five-time world snooker champion has an affection for cars and has appeared on the show in the past . o ' sullivan is looking for his sixth world title this year at the crucible .\nyahya rashid , a uk national from northwest london , was detained at luton airport . he 's been charged with engaging in conduct in preparation of acts of terrorism . rashid is due to appear in westminster magistrates ' court on wednesday . he was arrested as he returned to britain from turkey .\nmaria sevilla and her son , tyrone , will be deported within 28 days . the single-mother and her child have had their visa application rejected . ms sevilla 's appeal to the immigration department was unsuccessful . she and her boy will be sent back to the philippines . the queensland government has called the decision ` cold and heartless '\nnepal 's death toll rises to 3,218 , government official says . india reports 56 deaths , and china reports 20 . residents of kathmandu band together to get by . four americans are confirmed dead on mount everest . aftershock . on saturday .\ngemma flanagan , 31 , was working for british airways when condition struck . she assumed partying in six-inch heels during a stopover was the cause of her pain . but tests confirmed she had guillain barre syndrome , which attacks nervous system . she was left paralysed for seven months and had to use crutches and a wheelchair . but the aspiring model , from liverpool , is n't letting that hold her back . she is making her catwalk debut today in a wheelchair at london 's olympia .\nthe sprawling chyknell hall estate is set in 200 acres of land near bridgnorth , shropshire . it boasts a grade ii-listed manor house , 11-bedroom house and five cottages . the property also boasts a swimming pool , tennis court , stables and cricket green . the regency home was built in 1814 and has only changed hands twice since .\nred is the colour of the party that governs clubs ' constituencies . if the general election were confined to football fans , labour might win . 18 of the 20 premier league grounds are in constituencies held by labour . only chelsea and burnley , who voted tory , are any different .\nliverpool lost 4-1 at arsenal in the premier league on saturday afternoon . brendan rodgers has conceded defeat in his quest for the top four . the liverpool boss admits the slide out of the elite will damage the club in the transfer market . rodgers will instead prioritise the fa cup quarter-final replay against blackburn .\n`` scary lucy '' statue in celoron , new york , has been on display since 2009 . the town of celoron is looking for a new sculptor to fix the statue . artist dave poulin has apologized for his `` most unsettling sculpture ''\nthe eco experts has created maps plotting which countries have the most threatened mammals . the firm used the world bank 's world development indicator for deforestation and biodiversity figures . indonesia tops the list with 184 endangered mammals , with madagascar second with 114 . mexico is third with 101 , while india is fourth with 94 and brazil is fifth with 82 . uk has five endangered mammals but these are almost exclusively marine mammals .\nyemen 's houthi rebels seize the presidential palace in aden , a neutral security official says . a border guard is killed in a cross-boundary fire exchange with militants in yemen , state media reports . u.s. navy warships are patrolling off yemen in search of suspicious shipping .\ncharlie hill has lived in cuba for 43 years . he was arrested in 1971 after hijacking a plane . he is now considering returning to the united states . hill says he is still a revolutionary . he says he misses his family . he wants to see where his grandparents were born .\nthe brighton bathing box sold for a record price of $ 276,000 . the blue and yellow box was first constructed in 1862 . a mechanic 's garage in paddington sydney has sold for $ 1.2 million . a couple have put the old kilmore gaol in victoria up for sell for $ 2 million . the former maximum security goal is said to be haunted by the owners .\nthe second i saw you by lorna c. beckett is published by british library . it is the story of rupert brooke and phyllis gardner who met in 1911 . in 2000 , love letters between the two were discovered as well as her secret memoir of their relationship which was written in 1918 .\nkeurig green mountain 's single-serve coffee capsules in 2014 hit over $ 3 billion in us sales , it 's been revealed . the vermont-based company has also made $ 4.7 billion in revenue . 1/3 of homes in the us now feature single-served coffee machines .\nnine british muslims caught trying to cross into syria are no longer welcome in england . labour 's simon danczuk said it was ` unacceptable ' that they should be free to come home . it comes after nine members of the same family were arrested in turkey . they include the 21-year-old son of a labour councillor in rochdale .\na young mother will spend the rest of her life in a wheelchair after catching a serious infection from using her best friend 's make up brush . jo gilchrist , 27 , was left writhing in pain on valentine 's day when a staph infection invaded her body and eventually attacked her spine . she has been in brisbane 's princess alexandra hospital ever since and doctors are still desperately trying to rid her body of the bacteria .\ntwo alleged members of hamas-linked group aknaf beit al-maqdis beheaded . isis has taken control of up to 90 per cent of yarmouk camp in damascus . the camp has been subjected to intense shelling and airstrikes by government . activists say as many as 2,000 people have fled the camp amid fighting . un says 18,000 civilians , including a large number of children , are trapped in camp .\nformer man united defender patrice evra says sir alex ferguson told him he would make a great coach one day . evra left old trafford on a free transfer in 2014 after eight years at the club . the 33-year-old says he got passed some of his coaching badges .\njoey barton said west bromwich albion 's players 's *** themselves ' during defeat to qpr . barton was commenting after west brom surrendered a two-goal lead to lose 3-2 in december . tony pulis believes barton ` probably had a point ' about the players ' behaviour .\ngerald whalen visited kfc with his wife april and their two young children . but the family meal was interrupted by sounds of a pornographic film . scene from risque stars network show ` outlander ' was screened . kfc has since apologized for the incident and pledged to ensure certain channels will no longer be able to be accessed .\nhungarian architect matyas gutai has developed a house that uses water to heat and cool the building . the house is able to reheat itself and can be modified using a monitoring system . gutai is working with factories and companies across europe on projects using this technology .\npoundland 's founder steve smith , 52 , grew up helping his father run a stall . he opened his first poundland shop in burton-upon-trent at the age of 18 in 1990 . mr smith sold the company for a staggering # 50million 10 years later . he gave his parents half the profit from the sale when he did so . mrsmith also lives in a 13-bedroom mansion in shropshire with his wife .\nphotographer graeme oxby captured dozens of elvis impersonators at events across britain . the 50-year-old documented the dedicated fans at events including europe 's tribute to elvis in blackpool . he also visited their homes to capture images for his photo series , called ` the kings of england '\nporche wright was scheduled to appear in court on tuesday afternoon on attempted murder charges . neighbors reported seeing wright pour gasoline on her daughter then light her with a match . the seven-year-old girl was covered in serious burns and was rushed to the hospital .\nwoman flew to southern france twice after falsely claiming to be a victim 's cousin . police are investigating the possible fraud and the alleged culprit will be questioned . lufthansa organised special flights for victims ' families after the crash . all 150 people on board the flight were killed in the march 24 crash . andreas lubitz may have spiked his captain 's coffee to force him into the toilet , investigators have now said .\naustralian writer says gallipoli campaign is being over-emphasized in australia . he says the great war was divisive and australia 's participation was contested . he argues that war remembrance is played like it is a zero sum game . the unassailable fact is that the first world war ripped australia asunder , he says .\nmötley crüe singer vince neil butchered the national anthem . neil 's performance was at an arena football league game . neil is not the first to be criticized for his rendition of the anthem . whitney houston , roseanne barr and jimi hendrix have all done it .\nbhadreshkumar chetanbhai patel , 24 , faces a federal charge of fleeing to avoid prosecution and the fbi announced on wednesday that a $ 20,000 reward is being offered for information that leads to his arrest . patel is to believed to have beat his 21-year-old wife , palak bhadreskumar patel , to death with a knife inside the fast-food chain . patel was last seen on surveillance footage at a best western in newark , new jersey , near the newark liberty international airport on april 13 .\nerik de vries , 24 , and josephine egberts , 22 , were separated back in 1999 after their parents ' messy break-up . erik moved back to the netherlands and joined tinder . he swiped ` right ' on josephine 's profile and they were reunited .\nisis documents give a window into the bureaucracy of the self-declared caliphate . the group sees itself as a government operating under a rule of law . some subjects would be banned -- democracy and political thought . but hotels and tourism are banned . isis health department runs hospitals for anyone feeling ill , not just wounded fighters .\ncustoms officials seized the animals from a woman travelling from indonesia to russia . they were packed in 27kg bag and were found in a hold of the aircraft . among them were 55 snakes , 35 lizards , seven turtles , six lemurs and two monkeys . two baby crocodiles died on the journey from jakarta to moscow . the animals were packed into tiny cages and plastic boxes .\nhouse owner smacks a female wolf spider with a broom in hallett cove , south australia . after giving the spider a few whacks , hundreds of babies come out of its body . the man sweeps up the babies and the spider that was left on the floor .\nthe plane , carrying 59 passengers and eight crew , landed in khajuraho , india . the boeing 737-800 came to a stop , with its left engine touching the runway . passengers were forced to exit the plane via its inflatable evacuation slides . jet airways described it as a ` technical problem with the landing gear '\nauction house in new jersey has canceled a sale of 450 photos and artifacts from world war ii internment camps . the items were slated for public auction on friday at the rago auction house in lambertville , new jersey . thousands of japanese-americans , groups and sympathizers posted their opposition to the sale on social media and the auction house 's facebook page . the auction was halted thanks , in part , to the efforts of takei , who lived in an internment camp in arkansas as a child .\nolivia wilde and garrett hedlund are set to return for disney 's `` tron 3 '' the pair will reprise their characters from 2010 's `` tron : legacy '' `` legacy '' was the sequel to the 1982 sci-fi film that took place inside a computer world .\nthe nine foot bull shark was captured swimming past a condo back yard on hickory island in florida . the predator is one of the most dangerous in the world , and is among the most likely to attack humans . residents say fishermen throwing bait into the water nearby are attracting the predators to their homes .\nvictoria hiley , 30 , has collaborated with london-based ice-creamery the licktators to launch the dessert . royal baby gaga ice cream is made with donated breast milk - screened in line with hospital standards . a 500ml tub of royal baby lady has an rsp of # 19.99 and is available in pink and blue tubs .\nneymar 's sister rafaella joined him and team-mate dani alves for el clasico . barcelona beat real madrid 85-80 in the euro league contest . neymar and his team-mates return to la liga on sunday against celta vigo .\nthe 42nd pfa awards were held at the grosvenor house in london on sunday . harry kane is nominated for player of the year and young player of year . liverpool 's philippe coutinho and steven gerrard also in attendance . manchester city midfielder frank lampard and dele alli made up an all-star cast .\nreal london estate agents were invited to value a house in enfield . the house was rigged with special effects to give the appearance of being possessed by a ghost . installed with secret cameras , microphones and booby traps , the unsuspecting estate agents are subject to cruel , but hilarious , pranks .\nstudy found eating out raises the odds of having high blood pressure by six per cent . eating out is associated with higher calorie , saturated fat and salt intake . 27.4 per cent of the population suffered from pre-hypertension . of these , 38 per cent ate more than 12 meals out per week .\n` halal ' sex shop set to open in islam 's holiest city , mecca , it has emerged . shop will stock ` islamically approved ' adult items , it is claimed . owner abdelaziz aouragh says idea was approved by saudi arabian clerics . he says shop will encourage ` improvement of sexual relationship between husband and wife '\nlee garlington says he had a three year relationship with rock hudson from 1962 until 1965 . the two would sneak over to the actor 's house after work , and leave first thing in the morning . hudson would then bring a female date with him to social events so people would not know they were dating . the actor would later call garlington his ` true love ' in his biography , released after he died of aids in 1985 .\n`` the late show with david letterman '' has announced some of its final guests . oprah winfrey , george clooney and tina fey are among them . letterman 's final `` late show '' will air on may 20 . stephen colbert will take over the show in september .\nlawyer : erica kinsman accuses jameis winston of sexual battery , false imprisonment . winston 's attorney says the `` stunt was expected '' kins man revealed her name in a documentary about rape on college campuses . a prosecutor decided against bringing criminal charges in the case .\nmanchester united duo marcos rojo and angel di maria flew out to portugal on easter sunday . rojo posted an image of himself posing alongside di maria and their families . the pair played the full 90 minutes against aston villa on saturday . ro jo made headlines on saturday evening after mail on sunday revealed he had an affair with fitness instructor sarah watson . watson claims she was offered money to spend the night with rojo but declined .\ntwo dogs got loose and mauled a jogger to death in michigan . sebastiano quagliata and his wife , valbona lucaj , pleaded no contest to owning a dangerous dog causing death in the fatal mauling last summer of craig sytsma of livonia . sytsma , 46 , was attacked by two cane corsos last july in metamora township , 45 miles northwest of detroit . lucaj and quaglyata could be deported after serving their sentences .\nqpr host aston villa in the barclays premier league on tuesday . qpr are without eduardo vargas and yun suk-young . alan hutton , scott sinclair and ashley westwood all ruled out for villa . philippe senderos and kieran richardson are doubts for tim sherwood 's side .\ndani alves is out of contract at barcelona this summer . the brazilian defender is yet to sign a pre-contract agreement with another club . alves ' agent revealed last week that the 31-year-old has rejected barca 's latest contract offer . manchester united and paris saint-germain are reportedly interested in signing alves .\nworld war ii veteran cpl. william benn lost them in 1939 at a coastal artillery placement on salisbury beach . metal detector enthusiast bill ladd found the missing dog tags after a storm last year . he returned them to the vet 's son , william benn of rhode island .\nzipporah lisle-mainwaring is the daughter of a second world war hero pilot . she is accused of painting red and white stripes on her # 15million kensington townhouse in a bitter planning row . critics say she ordered the dramatic overnight paint job ` to get her own back ' when they objected to her plans to demolish the property . her family claim she has failed to pass on cash and property worth millions after her late husband robert died in 2007 .\njonathan crombie was best known for his role as gilbert blythe in the `` anne of green gables '' movies . he died wednesday from complications of a brain hemorrhage , producer kevin sullivan says . `` anne '' debuted in canada in 1984 and became a cultural touchstone .\nfifa presidential candidate luis figo does not believe all 54 african nations will back sepp blatter . figo is in egypt to canvass for votes at the caf congress . the former portugal international is running against blatter and prince ali bin al hussein of jordan .\nairbus a380 to add extra seat in middle section of cabin . new configuration will see 11 seats incorporated into same space as current 10 . new ` choice economy ' class will be introduced in 2017 . emirates airlines rejected the configuration over quality concerns . but two manufacturers have agreed to deliver the seats .\ncar and van driven into side of first group buses in chester over three years . passengers on the bus were mainly friends and relatives complicit in scam . ringleader john smith , 45 , from connah 's quay , north wales , earned # 159,000 . he stage-managed the crashes to create new claimants for his business . smith personally processed 218 personal injury claims totalling more than # 1million . nine other defendants , who police said played a major role in organising the collisions , were all found guilty of conspiracy to commit fraud .\npolice say the man robbed the taylors hill store last month . he allegedly confronted a female cashier with what appeared to be a homemade machine gun he pulled out of a bag . a 23-year-old taylor 's hill man was arrested on thursday and charged with one count of armed robbery . he was remanded in custody to appear in melbourne magistrates court at a later date .\nliving near congested roads can increase the chance of developing dementia . us researchers examined the brains of more than 900 people aged more than 60 . they found evidence that living near polluted areas can lead to ` silent strokes ' which in turn cause shrinkage of the brain .\nsean dyche 's burnley side are in the premier league relegation zone . but the clarets boss has complete confidence that his side will avoid the drop . burnley face tottenham hotspur on sunday in the league . dyche also believes his side are capable of beating arsenal in the fa cup .\nsergey burkaev , 16 , and konstantin surkov , 17 , accused of murder and rape . pair ` stabbed third victim to death after arguing about their mobile phones ' then killed four girls they were with so they could n't tell police about murder . pair doused all five bodies in petrol and set them alight at a flat in south-west russia .\njoyce rosemary bruce impregnated herself using robert preston boardwine 's sperm and a turkey baster in 2010 . she thought that the absence of intercourse would give him no parental rights . pair fell out after she rejected his suggestion for a name for their son . virginia court of appeals ruled that boardwine is more than a sperm donor and is entitled to be a part of his son 's life .\nroy keane will stand trial in june over an alleged road-rage incident . the former manchester united captain is accused of harassing a taxi driver . keane will face trial at manchester magistrates ' court on june 19 . the 43-year-old has denied a public order offence .\nalvaro morata signed a five-year deal at juventus in the summer . the 22-year-old joined the italian giants for # 15.8 million from real madrid . morata has scored seven goals in 22 serie a matches so far this season . real have a buy back option on the forward but his agent says he is happy at juventus .\nmore than half of uk children do n't have any veg . 44 per cent of children have no fruit on a daily basis . annabel karmel has shared her tips on how to make children love eating vegetables . she says parents should keep trying out new ideas with their children .\nan apple tablet that pope francis once owned sells for $ 30,500 . it had the pope 's name and address engraved on the back . the proceeds will go to a school in uruguay . last year , a motorcycle signed by the pope sold for $ 284,000 at auction .\nbbc documentary explores the cost of cosmetic treatments on harley street . michael pulman , 33 , from walsall , spent # 7,500 on a hair transplant . he believes it will boost his self-esteem and happiness . andrea carter , 72 , from leighton buzzard has her baggy jowls removed . emma tallon , 27 , paid # 3,100 for liposuction on her thighs .\nthe ocean-going tug mv hamal was intercepted by the frigate hms somerset and border force cutter valiant . french customs tipped off british authorities to board the tug 100 kilometres east of scotland . the crew of the hamal , nine men aged between 26 and 63 , were detained for questioning . they were later charged with drug trafficking offences and remain in custody .\nfour world war i soldiers ' writings have been found underneath battlefields . the writings are written in chalk and date back almost 100 years . photographer jeff gusky has chronicled the area in a portfolio he calls `` the hidden world of wwi '' the underground city dates back centuries but was sealed up in the 18th century .\nbear hunting salmon in the brooks river , katmai national park , alaska . the fish leaps straight at the bear , but he lets it slip away . the salmon is swimming up stream in order to reach its breeding grounds . photographer juergen sohns captured the moment on camera .\nirish challenge for next week 's crabbie 's grand national looks like being eight strong . trainer robbie hennessy confirmed rubi light is a definite runner for aintree . lord windermere and spring heeled also confirmed as runners for the race .\nthomson will launch a new ship in the thomson fleet next summer . the mid-size ship will be familiar to seasoned cruisers who have sailed on royal caribbean 's splendour of the seas . magellan , ` new flagship ' of the cruise & maritime fleet , recently christened in tilbury .\n`` furious 7 '' hits theaters friday . vin diesel says the film will probably win best picture at the oscars . the cast is diverse , unlike other nominated films . the franchise has done a good job of reflecting its audience . the film is one of the most diverse in hollywood .\nmore than one million albums sold on vinyl last year for first time in 20 years . sales expected to hit two million this year and uk 's first official weekly vinyl chart established . inaugural top spots in album rankings and two top places in singles list have been claimed by noel gallagher .\nkendall schler crept onto the go ! st. louis marathon 's course last weekend after the last checkpoint . she was spotted at the beginning of the race and the end of therace . her finish time that qualified her to run in monday 's boston marathon has now been erased , and her spot in the event has been vacated . her third-place finish last year also was wiped out after officials could n't find evidence that she crossed any of that event 's checkpoints . schler claims to have removed both the magnetic strips meant to record her times from her race -lrb- violation of race protocol -rrb- and since no photographs of her were taken along the way there is no proof she is the rightful winner\nkenya and al-shabaab have been at war since 2008 . kenya invaded somalia in 2011 , and al/shabaa retaliated with mass killings . al - shabaab has killed many more kenyans than al qaeda . the 1998 bombing of the u.s. embassy in nairobi remains the bloodiest attack on kenya .\nnewcastle face sunderland at the stadium of light on sunday . jonas gutierrez has been a substitute in each of newcastle 's last three games . the argentinian has been welcomed back into the fold after his return from testicular cancer . gutierrez is desperate to make amends for recent derby disappointments .\nchief medical officer dame sally davies is said to be concerned at the number of children suffering from rickets . the disease is caused by a deficiency in vitamin d and is a scourge of victorian britain . it was virtually eradicated after the second world war but is returning . experts blame lack of sun exposure and overuse of sunscreen for the rise . professor davies has ordered a cost review into giving free vitamin d supplements to all under-fours .\nlos angeles judge richard fruin jr. awarded shelly sterling most of the nearly $ 3million she had sought . lawyers for sterling had claimed that money used to buy v. stiviano a house , luxury cars and stocks was her community property the couple had acquired over six decades of marriage . v.stiviano 's lawyer had argued that the gifts were made when donald and shelly were separated and that shelly could n't seek them from a third party .\n`` if you can , call me , '' marleni olivo writes on a mango . she tosses it at venezuelan president nicolas maduro . maduro picks up the mango and says she will get an apartment . `` my dream is to own a home before i die , '' olivo says .\nmarc and shanon parker have built a fleet of movie-inspired vehicles . they include batman 's tumbler and ghostbusters ' ecto-1 . also made optimus prime truck and tron-inspired bike . the brothers have won a world record for their creations .\nfiona ` kitty ' carroll had been playing with her father at kemah boardwalk marina in texas on wednesday when she disappeared . her bucket was found in the water but there was no sign of her . authorities launched a search for the girl and her body was found on thursday morning . she had celebrated her fifth birthday earlier that day .\nchinese researchers used crispr/cas9 gene editing technique to change genes of human embryos for the first time in history . team tried to tweak the gene responsible for a potentially deadly blood disorder . but the researchers involved said that their results revealed ` serious obstacles ' in using the technique on human embryos . some scientists have already reacted with horror at the idea , for fear it could be misused to allow parents to ` select ' the genes they will pass on to their grandchildren .\ngareth bale was verbally abused by real madrid fans after their 0-0 draw with atletico madrid . the welshman was singled out by those waiting for the players to leave the training base early on wednesday morning . it comes almost a month after the world 's most expensive footballer 's white bentley was attacked by fans at the valdebebas base .\npalestinian authority becomes 123rd member of international criminal court . the move gives the court jurisdiction over alleged crimes in palestinian territories . israel and the united states opposed the palestinians ' efforts to join the body . the icc opened a preliminary examination into the situation in palestinian territory in january .\nthe broadway allotment association has been growing fruit and veg for 10 years . but the group 's old site has been bulldozed to make way for a car park . gardeners say the soil at their new site is so poor they ca n't grow a bean . the drainage is also so bad that their seedlings are rotting in the ground . they are demanding oldham council pays out compensation for the problems .\njenny eclair travelled with her other half on a painting in venus break . staying in treviso , just outside venice , jenny stayed in a nine-strong crew of wannabe artists and keen cooks . although it was in the middle of nowhere , the farmhouse was comfortable , by car and within easy striking distance of both trevisa and venice .\nbritons are buying luxury items amid falling prices and rising wages . spending in restaurants has increased by 17 per cent in the last 12 months . entertainment is up 12 per cent as people visit the theatre and cinema . a fifth of people are delaying a major purchase until after the general election .\ntony blackburn says jimmy savile 's abuse ` tarnished ' his era at the bbc . he says his fellow colleagues ' names were ` dragged through the mud ' during probes . bbc is still reeling from a string of allegations levelled against former staff . several media personalities were investigated and arrested following operation yewtree .\n` scooby ' the motorcade hit 73 mph in claremont and 92 mph in concord . clinton 's first official event was a small-business roundtable in keene . she dined and partied at the home of former new hampshire state senate president sylvia larsen . larsen hosted a ` ready for hillary ' house party in february at the same home that hillary hosted herself on monday night . a political operative close to new hampshire sen. jeanne shaheen said clinton 's visit to her home was meant to include a discussion about nudging the senator toward a presidential endorsement .\nformer california governor blasts indiana 's religious freedom restoration act . says the law is ` distracting and divisive ' for the republican party . claims it is a move that will only hurt the gop and alienate voters . says republicans are focusing on the wrong issues . claims the law legalizes discrimination against lesbians and gays .\nlane bryant is launching a campaign for its cacique lingerie line . the company is poking fun at victoria 's secret 's angels line . lane bryant 's campaign is getting positive buzz on social media . the retailer is encouraging women to `` redefine sexy '' in their own way .\npm issues plea for ukip voters to ` come back home ' to the conservatives . vows to respond to concerns about immigration and the economy . warns it is ` not the time to send a message or make a protest ' in election . has previously dismissed ukip supporters as ` fruitcakes and loonies '\nvote for your favorite cnn story about climate change . john sutter will report on `` 2 degrees '' for the rest of the year . the number 2 degrees is the `` north star '' for climate negotiations . sutter : `` this is gambling with the planet '' with that number .\nuci president brian cookson wants hein verbruggen to resign . the former head of international cycling is unhappy with the circ report verdict . verbrugger has sent the report to swiss lawyers . he says cookson is ` in for a surprise ' if he thinks he will accept the ` scandalously biased ' report .\nbritish photographer john daniels has captured some adorable images of puppies posing for the camera . the 61-year-old from dunsfold in surrey has decades of experience working with animals . he used both clean white studio backgrounds and comedy props to capture the heart-warming shots .\narsenal boss arsene wenger branded the obsession with jurgen klopp 's next move as a ` ridiculous circus ' klopp confirmed on wednesday that his intention was to leave borussia dortmund at the end of the season . wenger branded klopp 's departure as ` ridiculous ' and said he ` respects ' the german manager .\nnorth korean leaders have traditionally employed a ` pleasure troupe ' of young women to entertain them . the troupe was disbanded after kim jong-il died in december 2011 . but now that the country 's official three-year mourning period has concluded , the dictator has ordered the re-establishment of the troupe .\nasia siddiqui , 31 , was arrested thursday in new york for allegedly plotting a terrorist attack with her former roommate noelle velentzas , 28 . siddiquo met fellow queens native samir khan in 2006 , and he published one of her poems in an al qaeda magazine he was editing at the time from yemen . khan was killed in a 2011 drone strike . he went on to found al qaeda 's magazine inspire , which was used by the boston bombers to learn how to make bombs .\nthe average woman spends # 18,000 on skincare products in her lifetime . but many women make common mistakes that could lead to their skin ageing faster . femail asked dermatologists to share their top tips for getting the most from your skincare regime .\napril 2 is autism awareness day in australia . many people do n't realise that man 's best friend are actually ` kid 's best friends ' an ` autism assistance dog ' is used to keep a child with autism safe . it is an incredible tool to help them develop social skills and positive relationships .\nluis suarez nutmegged david luiz twice in champions league defeat . psg lost 3-1 to barcelona in champions cup quarter-final first leg . former england boss glenn hoddle says luiz is a ` liability at the back ' thierry henry questions the brazilian 's fitness after coming on .\nhorses and ponies are being abandoned in record numbers across the country . many owners are unable to afford the minimum # 3,000 cost per year to keep a horse . the rspca alone took in 1,500 horses last year , many of them former family pets .\nms anthem of the seas , is the world 's joint third-largest cruise ship . has just arrived in southampton , uk , for its naming ceremony on april 20 . the ship , owned by royal caribbean , has a capacity for almost 5,000 passengers . it has 18 restaurants , an adult-only solarium and spa and a 1,300-seat theatre .\nmadonna , 56 , was singing human nature at coachella on sunday night . the singer pulled the 28-year-old singer back to plant a kiss on his lips . the mother-of-four looked horrified when she was finished and wiped his mouth .\nnasa 's messenger spacecraft is currently 18 miles -lrb- 29.1 km -rrb- above mercury . it has spent four years orbiting the closest planet to our sun . but its fuel has run out and it is expected to smash into the planet 's surface on 30 april . as it drops closer to the surface , it is sending back some of the most detailed images ever obtained of the smallest planet in our solar system . among the features it has revealed to scientists are patterns of distinctive hollows in the bottom of a huge impact basin . it also shows how the contracting surface of the planet has also created strange formations .\ngchq unlawfully intercepted phone calls and emails from sami al-saadi , it has been ruled . the legally-privileged material was protected by strict rules . investigatory powers tribunal ordered spies to destroy two copies of sensitive eavesdropped communications . mr al - saadi has fought a legal battle against the british government . he claims it was complicit in kidnapping him and sending him back to his homeland .\nfabien le coq 's `` treesome '' photo series captures the beauty of trees . the series was shot between 2012 and 2014 . le coqu says each tree represents different feelings at different points in time . he says his photographs are meant to bring about pause and reflection .\nnew england patriots will host pittsburgh steelers in the opening game of the 2015 season . super bowl champions will play at gillette stadium on september 10 . new york giants and dallas cowboys will play in prime-time showdown in week one . seattle seahawks will play green bay packers in rematch of nfc championship game .\ninternational monetary fund said state will continue to spend more on public services than it raises in tax . projection underlines how hard it will be for next government to eliminate deficit . tories have pledged to return britain to the black in 2018-19 with a surplus of # 5.2 billion -- the first since 2001 .\nfloyd mayweather faces manny pacquiao at the mgm grand on may 2 . mayweather has defended his announcement that he feels he is the best ever . the 38-year-old has been slammed for pronouncing himself superior to muhammad ali . mayweather says he respects all the great champions of the past .\npoignant graffiti was left by soldiers from australia , canada and u.s. in naours , northern france . the site is a two-hour drive north of paris and is a former chalk quarry . it is one of the highest concentrations of inscriptions on the western front .\nsinger rita ora 's hair needs to be colored every three weeks . chris appleton has been working with rita for two years . the singer has experimented with a variety of different hairstyles . katy perry recreated two of rita 's hairstyles for her this is how we do video .\na massive fire consumed a building in flint , michigan , on wednesday afternoon . the blaze took place at a building located on a flint intersection , and started at about 1pm . a strip club used to be housed at the site . the site was not a vacant facility , fire officials said .\nmany of the dead were american , including a google executive . the avalanche that hit base camp was `` massive , '' a climber says . aftershocks are complicating rescue efforts . `` we 're going to get these guys down the hill , '' a mountaineer says .\njapanese authorities found radiation readings of up to 480 microsieverts per hour . this is nearly half the recommended annual limit of exposure for a person in japan . authorities believe radiation could be coming from something buried underneath the park . the park in toshima ward , north-east of tokyo , has been cordoned off .\nblackpool drew 1-1 with reading at bloomfield road on tuesday night . jamie o'hara scored from the penalty spot to give the seasiders a lead . but defender grant hall scored an own goal just after half-time . blackpool fans gathered outside bloomfield road to protest against the oyston family . the seasiders were relegated to league one on easter monday .\nhomaro cantu , 38 , was found hanged in the brewpub he was planning to open with his business partner . authorities are investigating the death as a suicide . cantu was hit with a lawsuit from an former investor in moto and failed restaurant ing , who accused him of using moto 's funds to keep his other business ventures afloat . the married father-of-two leaves behind his wife and two young daughters . cantu was known as a pioneer in the culinary field of molecular gastronomy .\nnew parents share their parenting tips in new video . called extra storage space , it has been viewed 600,000 times . tips include making room for date nights and getting on a schedule . viewers are encouraged to submit their own parenting advice . the video has been created by a group of parents based in the us .\na relief flight from kathmandu has arrived in melamchi , nepal , to deliver food and medicine . the mission is only the third of its kind to reach the village since saturday 's quake . the 7.8-magnitude quake left more than 5,000 people dead .\nofficer jared forsyth was wearing a bulletproof vest when he was shot . the round entered through his arm and went through his chest . he was rushed to hospital in critical condition but died several hours later . the other officer has not been identified . the shooting occurred at a gun range at lowell correctional institution .\nwoman shot dead as she tried to attack istanbul police headquarters . picture of her lying on the ground with a rifle strapped to her body has emerged . television footage showed police sealing off the street in central aksaray neighbourhood . attack comes a day after turkish prosecutor mehmet selim kiraz , 46 , died in hospital after members of the revolutionary people 's liberation party-front -lrb- dhkp-c -rrb- stormed a courthouse .\nspanish band sidonie composed the tune after experiencing a ` lack of respect ' from ryanair flight attendants . the group posted a video of their impromptu performance to facebook and youtube . ryanair has slammed the song , saying the lyrics are ` average ' and the ukulele playing ` leaves a lot to be desired '\nfbi and nypd said on wednesday that a reward of up to $ 115,000 is being offered for information leading to an arrest and conviction . no one was injured in the march 2008 bombing at the times square military recruitment station . police commissioner william bratton says people had walked past just moments before the device detonated in the early hours of march 6 .\nalison saunders ' legal adviser was a barrister at 23 essex street , it has emerged . crown prosecution service confirmed it consulted neil moore over lord janner . senior police officers probing allegations of child abuse have reportedly raised concerns about mr moore 's involvement in the decision to not proceed with his trial .\nmalcolm brabant was diagnosed with yellow fever after having the jab in 2011 . he spent two years in and out of mental institutions after developing psychosis . believes the vaccine could have dangerous side-effects that affect more people than previously thought . he is now pursuing the manufacturers of the vaccine to admit liability for what happened to him .\ntim sherwood has backed christian benteke to fire aston villa to safety . the striker scored a stunning hat-trick as villa drew 3-3 with qpr . the draw denied qpr the chance to leapfrog them in the table . villa are three points above the premier league drop zone .\nsandra malcolm was found hacked to death at her home in cape town . her grandson reportedly climbed through a window when nobody answered . reports in south africa suggest the 74-year-old 's attackers had mutilated her . mrs malcolm , originally from dundee in scotland , was found on sunday morning .\ngov. mary fallin signs a bill allowing the state to use nitrogen gas in executions . nitrogen causes a quick loss of consciousness and then death from lack of oxygen . the bill 's authors say it 's a `` humane , quick and painless death '' the u.s. supreme court is reviewing oklahoma 's use of lethal injections .\nplate was used by top gear team as they drove through argentina last year . it read h982 fkl - an alleged reference to the 1982 falklands war . maria cristina barrionuevo said they were deliberately ` provoking people ' she slammed their actions as ` arrogant and disrespectful ' in a report this week .\nronny deila is preparing his side for sunday 's scottish cup semi-final against inverness . the scottish league cup winners are eight points clear in scottish premiership with six games to play . deila believes treble success will help attract players to the club this summer .\ndorian poe , 11 , from burlington , ontario , has sent his beloved bear tikko on a round-the-world mission to raise awareness about autism . the bear has visited 24 countries and visited some of the world 's most famous landmarks . dorian 's mother christine has been coordinating the campaign since it began in january 2013 .\nwar veteran arthur townsend poured product over mercedes sprinter van . he was angry with martin carter - the son of his friend olive carter , 96 . retired antiques restorer was given a lift in car to mr carter 's address . he dumped the brown-coloured paint stripper on the van , causing more than # 2,000 of damage . townsend , 92 , supported himself with his zimmer frame as he admitted criminal damage .\npolice say ebony dickens of east point , georgia , threatened to kill white officers . she posted a facebook rant under the name tiffany milan , police said . `` i condone black on white killings , '' the post said . dickens was arrested and charged with disseminating information related to terrorist acts .\na new reddit thread asking users to submit the most horrendous baby names has attracted more than 18,000 comments in just 24 hours . femail has compiled the top 12 , including the names ` orgasm ' , ` mazen ' and ` obamaniqua '\nsouth africans rally against violence and xenophobia . twitter followers voiced their support through hashtag campaigns . attacks this week in durban alone have killed two immigrants and three south africans . one man has brought allegations of hate speech against zulu king goodwill zwelithini . the human rights commission must decide whether to investigate .\nadrian langlais , 2 , died on march 19 , the day after his second birthday , from head trauma . his adoptive grandparents , john winkler and laura martinez , say they noticed bruises on adrian last fall , when his mother started dating christian tyrrell . they reported the injuries to child protective services , but the agency closed the investigation in february , ruling out abuse from adrian 's parents or tyrrell . a little over a month later , adrian was dead . tyrrell , 22 , was arrested wednesday on capital murder charges in connection to the march 19 death .\nhibernian host livingston in the scottish championship on wednesday . rangers are four points ahead of their main promotion rivals . stuart mccall will be wearing a livingston scarf for the game . mccall believes livingston could drop points against his side . rangers beat dumbarton 3-1 on saturday .\nduncan bannatyne says ed miliband 's plan to scrap ` non-dom ' status has won him over . he tweeted : ` ed milliband says he will abolish non-dom status in uk . this gets my vote ' comes after hotelier signed letter from more than 100 business leaders backing tories ' economic record . mr bann atyne was one of the former prime minister gordon brown 's most prominent backers .\nnew zealand man accused of removing women 's teeth with pliers and a screwdriver during sex . philip lyle hansen , 56 , has pleaded not guilty to 11 charges . a woman , 47 , has told the court she was too ` afraid ' to say anything . the court watched a video of the woman talking about how hansen allegedly held her against a car door and removed six of her bottom teeth during sex in the 1990s .\n` diet pills ' thought to have killed six young people in britain are being sold online for just 70p each . the potentially fatal drug contains a toxic chemical used in pesticides and explosives . eloise aimee parry , 21 , died this month after buying it online to slim down -- despite being a normal weight .\nstamford bridge will host a victory parade on may 25 if chelsea win the premier league title . a letter from hammersmith and fulham council outlines the planned celebrations . jose mourinho 's side are currently nine points clear at the summit of the table with six games to play .\nu.s. employers added just 126,000 jobs in march , half the number expected and the worst month since december 2013 . the unemployment rate remained at 5.5 percent . the subpar job growth could make the federal reserve less likely to start raising interest rates from record lows in june .\nus senators call for russia to be removed as host of 2018 world cup . fifa president sepp blatter announced russia as the host nation for the 2018 world cups . 13 democratic and republican u.s. lawmakers said they ` strongly encourage ' fifa to move the global competition .\nradamel falcao has scored just four goals for manchester united this season . the colombian striker has also failed to have a shot on target in the premier league . falcoue started in manchester united 's 1-0 defeat at chelsea . the striker has collected # 3,080,000 in wages since joining united .\nsarah thomas is a referee for college football 's conference usa . she has been considered before for a position in the nfl . thomas , 42 , is the first full-time woman to be hired by the league . shannon eastin was the first woman to officiate an nfl game in 2012 .\na lion got its head stuck in a feeding barrel at a zoo in the netherlands . zoo keepers place food in barrels to stimulate the lions . the animal , hoping to beat two other lions to the food , reaches in too far . the lion reacts in panic and attempts to flick the barrel from its head .\nnathaniel clyne has been told he is england 's first choice right-back . the southampton defender has started the last four games for the three lions . clyne is being tracked by manchester united and chelsea . the 24-year-old has admitted he wants to play champions league football .\nstanley evans , 93 , was attacked in the entrance to his flat in soho , london . solomon bygraves , 29 , knocked him to the ground and took his wallet for # 5 . the pensioner was left lying in the lobby of the block of flats for ten minutes . mr evans said he wanted bygrave to be jailed for a ` long time ' for the attack .\nrachel lynn lehnardt , 35 , from evans , georgia , was spotted outside her house wearing a hooded jacket and workout clothes just days after being arrested . she was arrested on saturday night and has been charged with two counts of contributing to the delinquency of a minor . she allegedly threw a party at her home in evans , where she played naked twister with her daughter and daughter 's friends before having sex with an 18-year-old male . she also allegedly used sex toys in front of the teenagers and showed her daughter explicit photos of her having sex . lehnards told her alcoholics anonymous sponsor about the incident , and the sponsor alerted the columbia county sheriff 's office .\nwoman , 63 , won # 14.5 m london mansion from her 90-year-old ex-husband . property was one of five properties he bought during 14-year marriage . couple 's main marital home had been a # 26m ` palatial residence ' in jeddah . after divorce , woman moved into townhouse , claiming her right to live there . husband tried to evict her and force sale of heavily-mortgaged property . but she has now been allowed to keep it as part of a complex legal settlement .\nus researchers studied 11-month-old babies after they saw a magic trick . babies reacted with surprise when objects appeared to break the laws of gravity . when given a ball to play with , they repeatedly banged it on a table . and when given a new toy to playwith , they dropped it on the floor . this suggests babies learn from the unexpected , say the researchers .\neugene in the united states has been awarded rights to host the 2021 iaaf world championships . the decision was taken by the international association of athletics federations council . doha , home to the aspire dome , beat eugene to host 2019 event . the 2007 world championships held in osaka , japan was also awarded without a bidding process .\nashley stewart and his wife felicity found a kangaroo on the side of the road in 2013 . the couple took the joey home and named him dusty . two years on , dusty is now part of the family on their farm in western australia . he rides in the back of mr stewart 's truck , eats with the dogs , and even tries to sneak dog treats when he can .\nislamic state have started to convert local markets into military markets . the extremist group are producing vast numbers of bland tunics and military clothing . the photos come from the iraqi province of nineveh , where isis have recently been targeting historic archaeological sites . even young children appear to be allowed to browse through the market .\nconrad clitheroe , 54 , gary cooper and neil munro , 45 , arrested in dubai on february 21 . they were stopped by police for writing down aircraft registration numbers at fujairah airport . the men were taken into custody and held in a prison for two months . they have now been released after being told charges of espionage will not be brought .\ndick advocaat will not drop adam johnson despite his charges . sunderland winger johnson was charged with sexual activity with a child under 16 on thursday . the 27-year-old has been used as a substitute in the last three games . johnson is due to appear at peterlee magistrates ' court on may 20 .\nfrank ernest shepherd , iii of houston , texas , was shot dead by police after leading them on a 20 minute high-speed chase . the chase ended when he crashed into another car and after reaching into his backseat was shot by two officers . the 41-year-old father of three was unarmed and had another baby on the way . police are investigating why shepherd fled after a traffic stop which led to the shooting .\nandrew lesnie was the cinematographer for the first `` lord of the rings '' film . he also worked on `` king kong '' and `` the lovely bones '' lesnie suffered a heart attack monday . he was 59 . he worked with director peter jackson on six of the films .\nanthony ray hinton was convicted of killing two birmingham-area fast-food restaurant managers . he was freed friday after nearly 30 years on alabama 's death row . hinton , 58 , says he will continue to pray for the families of the murder victims . he will meet with his attorneys monday to start planning for his immediate needs .\nchampionships opening day moved to monday . officials say the surface is too dangerous to race on . saturday 's racegoers disappointed to find empty track . ticket-holders given option of receiving refund if they do n't want to attend . warwick farm card is unable to go ahead on monday .\neric coins , who was drinking in sunrise , florida posted the video to youtube . he accused the man of wearing the uniform to get free drinks and meet women . the young man is seen on camera asking the alleged fake service member , a series of questions including where he did his basic and boot camp training . the man apparently says he did basic training in north carolina . the incident comes after an angry army veteran called out a panhandler in tampa , florida last month for faking a military connection by wearing a camouflage uniform .\nmanchester united are considering a bid for edinson cavani . psg owner nasser al-khelaifi has ruled out selling the striker . cavani scored twice in the french league cup final against bastia . united are looking to freshen up their forward options . radamel falcao is expected to return to monaco .\nthe family of martina riccioni are pleading with the australian public to help them bring her body home to italy . they have started a crowdfunding appeal on ` go fund me ' to raise up to $ 20,000 to transport her body . the 23-year-old was killed at the scene of a horror car crash on easter monday . her best friend antoinettia caffero remains in hospital in a critical condition .\nstone age man ate mushrooms as part of their diet , a study on ancient tooth plaque has revealed . anthropologists studying the remains of a prehistoric woman nicknamed the red lady of el mirón have found spores of several mushroom species embedded in her teeth . discovered in an elaborate grave in the el mirós cave in cantabria , spain , the remains are thought to belong to a 35 to 40-year-old woman . radiocarbon dating suggests this burial took place 18,700 years ago and that the female was aged between 35 and 40 when she was entombed .\nsouth indian island of north sentinel has been uninhabited for 60,000 years . the sentinelese tribe have rejected modern civilisation and have no contact with outsiders . they have been known to fire arrows and rocks at low-flying planes . the indian government has established a three-mile exclusion zone to protect the island . the tribe is believed to be ` extremely healthy , alert and thriving '\nmelbourne fashion duo jess , 22 , and stef , 27 , dadon have teamed up with new york company ` print all over me ' the girls are also launching a shoe line ` twoobs ' in america . the photo shoot for the collab took place in sydney 's luna park . the girls admit they do n't actually like modelling .\nchair was on first class promenade deck when liner sank in 1912 . it was found bobbing on the surface of the atlantic by the crew of the mackay-bennett . ship 's log records six or seven deckchairs being picked up and taken back to port in halifax , nova scotia . one was given by a crew member to captain julien lemarteleur . it has since been owned for 15 years by an english titanic collector .\nengland 's ian poulter will be aiming to win the 2014 masters on april 14 . poulters has two top 10 finishes at augusta national in his 10 attempts . the 39-year-old admits retiring without a major would leave him unfulfilled . poulter is confident he can beat rory mcilroy and jordan spieth .\nwei guiyi , 76 , guides her blind hubby huang funeng , 80 , around with bamboo sticks . the couple have been married for 55 years but were never able to have children . guiyi became the eyes for both of them when huang was infected with a degenerative eye disease and lost his eyesight in 1985 .\nmatch of the day pundit robbie savage has been working hard to lose weight . he posted a photo on twitter showing his progress in the gym . the former birmingham player is now 12st 12 and 12.4 % bodyfat . savage appeared on bbc 's strictly come dancing with ola jordan .\ngianluigi buffon 's side reached the last four of the champions league after drawing 0-0 with monaco on wednesday night . juventus lost to ac milan in the 2003 final at old trafford . the italian champions have endured a tough few years . but they are now back were they belong among the elite of europe . bayern munich , real madrid and barcelona are on their horizon .\nmichael shepard , 35 , allegedly molested at least seven children within 18 months of his release . he was convicted of molesting two boys , age six and nine , at a roller rink in 1998 . he has a history of molestation dating back 20 years . shepard was released from prison in 2012 and was allowed to move into a new apartment complex . he posted sex offender notifications around the complex but told parents he was convicted for sleeping with a preacher 's daughter .\nroy keane will stand trial over an alleged road-rage incident with a taxi driver . the 43-year-old has denied committing a public order offence . it was claimed he behaved aggressively towards driver fateh kerar , 44 . keane will face trial at manchester magistrates ' court on june 19 .\nmark allen sanders was a brilliant student at the university of texas at austin when he was subjected to a sadistic fraternity hazing ritual . he was beaten with a paddle , dragged around a room by his genitals and had his pants set on fire . the young man was hit so hard during the warped 1990 initiation that he suffered a fractured spine and nearly lost a kidney . today sanders is a doctor and lawyer in fort worth texas .\njavier hernandez has six goals in eight games for real madrid . the on-loan manchester united striker scored twice against celta vigo . carlo ancelotti says hernandez is ` non-negotiable ' on current form . real are two points behind la liga leaders barcelona with five games to play .\nsjaak rijke was kidnapped in november 2011 from a hostel in timbuktu . he was rescued by french special forces in a raid at 5am today in the far north of mali . french president francois hollande said some militants were killed and others captured .\nmiranda ashley calvin , 19 , was arrested by gresham police on sunday afternoon . she was accused of hitting a pedestrian with her car and fleeing the scene . the woman she allegedly hit was 49-year-old jerrie ann horning . police were called to a gresam road at about 8.30 pm on saturday night where they found her dead . a white mercedes benz had been spotted fleeing the area which led to calvin 's arrest .\ndiscovery communications ceo david zaslav was compensated $ 156.1 million for his role as ceo of discovery communications it was revealed on friday . this thanks to shows like here comes honey boo boo and his running of networks like own . it is a remarkable boost from the $ 33million he received in 2013 , with $ 22.5 million of that also coming from stock awards .\nmemphis grizzlies beat oklahoma city thunder 100-92 on friday . grizzlies move into a tie for the second seed in the nba 's southwest division . san antonio spurs beat denver nuggets 123-93 . brooklyn nets beat toronto raptors 114-109 to extend winning streak to six . chicago bulls beat detroit pistons 88-82 to stay ahead of raptors . milwaukee bucks beat boston celtics 110-101 to dent celtics ' playoff hopes . portland trail blazers celebrated northwest division title with 107-77 win over los angeles lakers .\ncambridge university may bring back entrance tests for first time in 30 years . the exams would be designed to select exceptional applicants . university said recent changes to the exams system made it more difficult to decide which students to admit . under coalition reforms , as exams will be optional for cohorts starting this september .\nfriends of the deputy prime minister have previously indicated that he will quit as leader if the lib dems are reduced to fewer than 30 mps . but yesterday he insisted he would fight for his job ` in all circumstances ' he told sky news : ` i 'm really optimistic about the prospects of liberal democrats '\nparis saint-germain defender david luiz is out for at least four weeks . the 27-year-old tore his hamstring in the 3-2 win at marseille on sunday . luiz posted an instagram picture sporting a new hairdo on wednesday .\nreport reveals that younger people feel more lonely than older generations . more than 80 per cent of young people feel lonely at some point . chloe jackson , 19 , appeared on this morning to talk about how facebook makes her feel lonely . she said she often feels left out of the fun her friends were having .\nthe red lady 's remains were found in the el mirón cave in cantabria , spain . radiocarbon dating suggests she was buried 18,700 years ago . her grave provides the first evidence of an ancient magdalenian burial in the region . an engraved stone found near her remains appears to have been a makeshift tombstone . the pigment and tombstone has led researchers to speculate she was a person of status or authority and was ritualistically buried in such a way to oversee her subjects .\nchelsea have made a bid for fc tokyo forward yoshinori muto . the 22-year-old will join chelsea 's dutch partner club vitesse arnhem on loan next season if he completes a move to stamford bridge . chelsea signed a # 200million sponsorship deal with japanese company yokohama rubber in february . muto graduated from keio university in tokyo with an economics degree two weeks ago .\nshocking images show the ` horrific ' conditions inside a gold coast caravan park . the mudgeeraba caravan village is home to more than 100 people . it has been the site of a fatal house fire , stabbings , brawls , and continual violence . queensland police patrol the site daily due the extreme level of incidents . the caravan park lies just ten kilometres from the region 's famous glitter strip .\nmanchester united are reported to have put in a # 21.5 m bid for dortmund 's mats hummels . german paper bild have reported the bid has been placed . hummela has struggled for form and fitness this season . dortmund want to bring in real madrid 's sami khedira as their new captain .\ntories and labour will only be separated by 0.1 per cent , according to icm wisdom index . the lib dems are now expected to get 13.5 per cent of the vote , ahead of ukip with 12.7 per cent . the green party and independent candidates are predicted to get 10.3 per cent .\n`` grey 's anatomy '' star patrick dempsey dies . he played dr. derek shepherd . the show will continue . dempsey has a year left on his contract . he says he 's grateful for the experience . he has a development deal with abc studios . . the 11th season of the show will end in may .\nlouis van gaal has won a battle to install floodlights at the club 's carrington training ground . the meticulous manchester united boss was stunned to find that players could not train after dark at the swish complex on the outskirts of the city . he immediately ordered a raft of improvements including the installation of floodlights . sportsmail understands van gaal is very keen to replicate match conditions during sessions .\n14 % rise in number of men opting to work part-time in the last two years . men now make up one in 10 parents who care for their children or family full-time . there are now 1.02 million men in the uk who have opted to work reduced hours , compared to 4.58 million women .\njake castner , 19 , went into hiding last week after a warrant was issued for his arrest in relation to a string of thefts . he boasted on the social media site : ` we do n't talk to police ! ' the troubled teenager 's facebook page is littered with drug references including offers of ` bud for cash ' and an image of him smoking a glass pipe . on sunday , on his fourth day on the run jake castner said ` we do n't talk topolice '\nclinton is campaigning in new hampshire , a state that helped give her 2008 campaign a second wind . she 's taking aim at republicans for focusing on a new book that details sweetheart deals she allegedly made with foreign governments in exchange for speaking fees and donations to her family foundation . ` hopefully we 'll get on to the issues , ' she said .\na 13-year-old boy allegedly killed a teacher and injured four others in barcelona . the teenager is said to have had a ` kill list ' of 25 people he wanted to kill . he is saidto have told classmates of his plans last week , but none took him seriously . the boy is undergoing a psychiatric examination but will not face charges .\nmanchester united midfielder ander herrera scored a brace against aston villa on saturday afternoon . the 25-year-old appeared to have his eyes closed as he struck the ball . herrera has scored six of his seven goals for united without looking at the ball or opposition 's net .\nfanuc cr-35ia claims to be the first ` heavy-lifting industrial collaborative robot ' to work with humans without the need for safety fences . it uses integrated vision technology called irvision to keep an eye on humans and automatically stops if it touches an operator . this removes the need to use safety fences - a previous requirement for all industrial robots . the robot can lift objects weighing up to 77 lbs -lrb- 35kg -rrb- and could be used in a number of industries , from warehouses to production lines .\ndr nadeem azeez , 52 , is thought to be in pakistan but was yesterday charged with manslaughter by gross negligence . maidstone and tunbridge wells nhs trust is also accused of corporate manslaughter . frances cappuccini , 30 , died hours after giving birth to her second son giacomo . she had intended to have an elective caesarean at tunbridge well hospital . but doctors allegedly persuaded her to try a natural birth instead .\ned miliband was widely criticised for robotic performance in last week 's debate . now it has emerged he was reading from motivational notes during the leaders ' clash . his notes , found in his dressing room after the itv debate , give an insight into his mindset . labour leader urges himself to ` stay calm , never agitated ' and ` relish the chance to show who i am '\na massive brawl involving two dozen people at a queens , new york , casino was captured on video . the cell phone video shows a number of men throwing punches and even chairs into crowds of people . the fight took place in the food court area of resorts world casino .\na lawsuit has been filed against seaworld orlando by a south carolina woman . she claims the marine mammals are being kept in shallow holding pools . the resulting burns are so bad staff are forced to paint them over . she also alleges that the chlorine used in their tanks is ` stronger than bleach '\nmarilyn zuniga , a third-grade teacher in orange , new jersey , has been suspended without pay . she had her students write letters to mumia abu-jamal and then sent them to him in prison . abu-jama was hospitalized last week for complications from diabetes . he was released from hospital on april 1 and returned to prison . a history professor at baruch college delivered the letters to abu - jamal . abu jamal is serving life behind bars for the 1981 murder of white philadelphia police officer daniel faulkner .\nlance futch , 26 , of lehi , utah , was told he was meeting with a white house official to discuss jobs for veterans . instead , he was sitting at a table with president obama , senator orrin hatch , and salt lake city mayor ralph becker . the white house had asked a company with military affiliation to send a representative to the base during obama 's visit last week . the company chose futch who designs solar cells and is serving his fourth year in the utah air national guard . futch said he was shocked but honored when the senior official turned out to be obama .\nwatford beat birmingham 1-0 to go top of the championship . craig cathcart scored the only goal of the game with a stunning volley in the 56th minute . the hornets had been second after middlesbrough 's win at norwich . matt ritchie put bournemouth ahead against sheffield wednesday . chris maguire 's stoppage-time penalty denied the cherries .\nscientists have recorded the noise more than 1,000 times . it is unique in the composition of sounds making the signal and in timing . experts are sure it is n't made by arnoux 's beaked whales or cuvier 's beakers , because the signal doesn 'n' t match their songs . but it could belong to a strap-toothed whale , a southern bottlenosed whale or a gray 's beaked whale , according to the study . it could also be made by a new species of beaked whale . there 're also a chance that new species could sing at different frequencies . but this ability would be unique among beaked mammal species .\nvideo shows american youtube user kentuckyfriedidiot teach baby to suck water bottle . footage shows him gnawing on the side of a drinks container before stopping and prompting his child to follow . to date the clip has been watched more than 190,000 times .\na stunning fireball that crackled across the sky near the russian-finnish border last year shared its orbit with a huge asteroid found in october . this is according to a new study which claims the kola fireball had a ` disturbingly similar ' path to asteroid 2014 ur116 . the study does not claim that asteroid 2014ur116 sent the annama meteorite directly at earth , but it suggests the two bodies are related . scientists believe that streams of asteroid fragments can travel on nearly identical orbits .\ncountryfile presenter ellie harrison says she knows she will be replaced . the 37-year-old says she would love to stay on the show for ' a long time ' mother-of-two says that as a woman ` what you get is not down to you ' she was told to tone down her blonde hair in december 2014 .\na friend recommended skydiving to anais zanotti . the 30-year-old has had 1,350 dives and is now an instructor . she has modelled for playboy , gq , esquire and maxim . anais moved to the us to become an international model .\nandrew odell tweeted aldi a picture of the rodent crawling around inside his loaf of bread . he said it was the first and last time he was going to shop at the supermarket . the company responded today by saying it was looking into the incident . mr odell 's original tweet has been re-tweeted more than 1,600 times .\nthe strange formation was photographed by amateur astronomer gordon ewen . he took the photograph using a telescope at the bottom of his garden in hertfordshire . sun spots are caused by a concentration of magnetic fields on the sun 's surface . they range in size from 10 miles -lrb- 16km -rrb- to 100,000 miles -lrb- 160,000 km -rrb- wide . they are also the source of eruptions on the sun , such as solar flares .\nnational front leader accused her father of committing ` political suicide ' jean-marie le pen defended his previous comments describing nazi gas chambers as a ` detail of history ' ms le pen has blocked her father 's return to the party following accusations he was trying to sabotage her party 's efforts to move into the political mainstream .\nburnley striker danny ings is a top target for manchester united . louis van gaal wants to sign the 22-year-old in the summer . ings has scored nine goals in his first season in the premier league . the futures of robin van persie and radamel falcao are uncertain .\nparis saint-germain face barcelona in the champions league on tuesday . javier pastore has been hailed as ` the best player in the world ' by eric cantona . but the argentine has dismissed the former manchester united forward 's claims . pastore believes lionel messi and cristiano ronaldo are a class above him .\nmother-of-three sgt louise lucas , 41 , was killed by a bus in swansea . she had pushed her daughter olivia , eight , out of its path and saved her life . sgt lucas was off-duty and on a shopping trip with her daughter at time . hundreds of police officers lined the roads in a guard of honour at her funeral today . her husband gavin lucas , 36 , read a poem and said she would remain in his heart forever .\njason cotterill , 42 , plagued his victim with abusive messages over the internet . he also emailed the woman a link to an online sex video she was in - and threatened to post it on her facebook page . he knew his victim from childhood and knew she had been involved in making sex tapes . the 42-year-old was jailed for 12 weeks and banned from contacting his victim .\none of australia 's most loved cooks , lyndey milan , has teamed up with aldi to create easter lunch recipes that will easily feed six people for less than $ 6 each . the home cook icon put her skills to the test by trawling the supermarket aisles to find healthy , fresh produce to turn into an easter feast . the results of her aldi experiment include greek lamb with salad and zucchini pilaf and herb crusted salmon with pea puree , smashed potatoes and carrots .\neric liu : 8 out of 10 american taxpayers get a refund when they file their taxes . liu : the average amount is close to $ 3000 . he says tax filing has gotten rather simple for most people . liu says the u.s. income tax system is increasingly a wage tax . it 's biased against modern families and wage earners , he says .\nthe ` kick and kill ' strategy aims to eradicate the virus by stimulating the immune system - the body 's natural defence mechanism - with a vaccine . researchers believe the injection could flush out dormant hiv hiding in white blood cells with a chemical ` kick ' the theory is based on a single patient case study .\nremie had a bar put in her ear as an act of teenage rebellion . but when the piercing became inflamed , she was forced to remove it . the resulting wound healed into a hazelnut-sized lump known as a keloid scar . remmie , 18 , says the lump is ` vile ' and has knocked her confidence .\nfernando alonso has said mclaren-honda will be his last team . spaniard says he will retire from formula one once his deal with the team ends . alonso won the world championship with renault in 2005 and 2006 . the 33-year-old says he is happy to be back at mclaren for 2015 season .\npressure on education system has intensified following baby boom . local government association warns they may not be able to create more places . two in five local authorities in england will have more children ready to start school than there are places . this will increase to more than half by 2017/18 and to three in five by the following year .\nworld no 1 rory mcilroy is seven shots behind first-round leader jordan spieth . mcilory and phil mickelson go out in the penultimate group on friday . ian woosnam , erik compton and kevin stadler are in the opening group .\nkelly ripa was looking morose as she left her new york city apartment on tuesday . the live with kelly & michael co-host wore a frown as she walked out of the building . dr fredric brandt was found dead by suicide at his miami mansion on sunday .\nsky sports will pay # 11million a game to broadcast premier league football for three years starting in 2016 . barney francis addressed staff to present his way forward - ` fit for the future ' sky will concentrate on their live rights in every sport while reducing the support programming . fa continue to micro-manage the supposedly free-for-all media interview mixed zone which players have to go through after matches .\nlydia millen and ali gordon met on instagram after he liked one of her pictures . the couple have now been dating two years and live in milton keynes . ali , 26 , helped to teach lydia , 27 , how to train hard and eat clean . the pair have a large following on instagram and often train together .\ncarlo ancelotti says he will remain in charge of real madrid next season . anceloti has been linked with a return to the premier league . real madrid face malaga at the bernabeu tonight . karim benzema is ruled out of the match with a knee injury .\nmoses kipsiro is a regular training partner of british long-distance running legend mo farah . he claims to be living in fear of his life after raising allegations with the authorities in his native uganda that a coach has been sexually abusing female runners . kipsiro successfully defended his commonwealth games 10,000 m title in glasgow last year . he has since received death threats after reporting the allegations to his national federation and the police .\nin afghanistan , girls are not allowed to ride bikes , but they are allowed to skateboard . australian skateboarder oliver percovich created skateistan , a program that connects girls with education through skateboarding . in 2012 , photographer jessica fulford-dobson took pictures of the girls skateboarding in kabul , afghanistan .\na sydney mother has braved this week 's severe storm and handed out waterproof clothing , blankets and sleeping bags to the homeless . sacha whitehead received donations after posting a call to action on facebook . the financial adviser spent the night with her sister lexi handing the generous contributions out to the homeless . whitehead is collecting more donations today and handing them out at a popup shelter in milsons point .\na german climber posts a video of the avalanche that hit base camp . at least 17 people have been killed , with dozens injured and several missing . helicopters are bringing stranded climbers off the mountain . the icefall at camp 2 is `` impassable , '' a climber says .\nfireman stephen hunt , 38 , died tackling blaze at paul 's hair world in manchester . the girl - who was just 15 at the time - is said to have dropped a cigarette to the floor . it rolled underneath the shop 's fire exit and set boxes alight . she was originally charged with arson but was cleared today . judge said she was ` guilty only of being careless '\natletico madrid beat real madrid 1-0 in the champions league quarter-final first leg at the vicente calderon . mario mandzukic clashed with sergio ramos and dani carvajal and played rough all night . the 28-year-old committed seven fouls , compared to 11 in total by real madrid .\na survey of 600 employers and senior executives has revealed the biggest cv blunder . worst cv blunders are spelling or grammar mistakes , according to yougov survey . brevity is valued , with 46 per cent of senior execs finding long waffling cvs irritating .\nhot dudes with dogs features men looking hot while posing with dogs . the account was started by writer kaylin pound and relies on submissions via direct messages . now boasting 148,000 followers , the account relies on . submissions via direct messages , and is dedicated to finding and posting images of the hottest guys with the cutest pups .\nbritons spend # 815m a year to ` social media proof ' their wardrobe . men spend more than women on clothes to avoid being tagged in the same outfit . almost a fifth of those polled said they would refuse to wear an outfit again if they knew there was a chance of appearing wearing the same thing online .\nthe town of buzim in north west bosnia has a population of 20,000 . local journalist nedzib vucelj noticed the number of twins during the civil war . he has identified at least 200 sets of twins in the town . local politicians want an annual twin festival for people in the area .\naston villa travel to liverpool in the fa cup semi-final on april 19 . jack grealish saw villa lose twice at wembley in 2010 . the 19-year-old winger made his first premier league start on tuesday . grealish : ` to start for my boyhood club was a dream come true '\ngreg scott , 51 , a basketball coach at cass high school in georgia , was diagnosed with leukemia on monday . the married father of two and grandfather unexpectedly succumbed to the deadly disease wednesday morning . for the past eight years , scott had taught special education and social studies at cass and was the school 's head basketball coach .\nmarc wabafiyebazu , 15 , has been arrested for felony murder after a gunfight erupted during a drug deal on monday . his brother jean , 17 , was killed in the incident . their mother is roxanne dubé , the recently appointed canadian consul general in miami . the boys had reportedly agreed to purchase two pounds of marijuana at a cost of $ 5,000 , and driven to the house under the guise of making said purchase in their mother 's bmw with diplomatic plates . police claim that their plan was to then rob the drug dealers . gunfire broke out soon after they entered , and jean and joshua wright were killed , while anthony rodriguez was wounded .\nlenny mordarski , 68 , was viciously poked with the blue ballpoint before take off on the southwest airlines flight from chicago to manchester , new hampshire on thursday . he compared the attack to ` being stung by bees ... owww ! ' the woman was removed from the flight following the air rage incident and put on a later flight out of chicago .\nrussian draft resolution does n't call for political talks , diplomat says . red cross : many more wounded in airstrikes and ground fighting will die if not tended to soon . a pause is needed especially in and near the southern yemeni port city of aden . the u.n. security council meets late saturday morning to discuss the situation .\nswiss physicist jean-pierre wolf is working on using focused laser beams to affect the weather . laser is a cleaner version of cloud seeding , a form of weather modification that has been used for several years . laser seeding can create new clouds where there are none , by inducing condensation .\npolice investigating claims made by former royal footman christopher lawler . he claims clarence house aides tried to force him into an orgy in the 1970s . mr lawler worked at clarence house when queen mother used it as her london residence . he was allegedly groped by a male member of staff on his first day . the ordeal left him in tears and he left the job the same day .\ngolfer russell henley tweeted his frustration to united airlines . the airline misplaced his golf clubs when he flew to georgia . he was playing in the master 's tournament this week . kim kardashian , maisie williams and naomi campbell have also had bad experiences . henley 's clubs were returned to him six hours later .\nmoose toys ' cheltenham office in melbourne is the hq of global company moose toys . the office comes complete with toy testing rooms , table tennis table , aerobics room , gym and a custom staff lunch room . staff can scribble their ideas on walls made out of whiteboards while the employee of the year gets a gold crown and cape .\nchef sam longhurst created the burger after a customer challenged him to create a burger containing three kinds of meat . the whole damn farm burger features two beef burgers , homemade bacon jam , ham chunks , a whole chicken thigh , barbequed pulled pork and bacon rashers . the meal costs # 13.50 and is the equivalent of six big macs .\nnational counterterrorism center advisory group , ordered by the white house , is expected to recommend a radical shift in us hostage policy . the nctc interviewed families of hostages , including the parents of journalist james foley , who was killed by islamic state fighters . foley 's mother diane said that officials from president barack obama 's administration repeatedly told her family it was illegal to try to raise a ransom to free her son .\ngp dr arfon williams has been left with just one doctor in his practice . he is the only doctor available across two rural practices in north wales . his partner and colleague of 20 years retired at the end of march . he said it is now going to prove incredibly difficult to provide a realistic , safe service for his patients . health bosses responsible for north wales said difficulties recruiting gps is a national issue .\nprince harry took part in exercises with royal australian artillery troops in darwin . he is expected to return to britain in july after a month-long attachment . the 30-year-old has been training with the australian 1st brigade . he has been briefed on operations and trained in bush survival lessons .\nthe typhoon is powered by two eurojet ej200 engines . it is 49ft -lrb- 15 metres -rrb- long from tip to tip and the material is ` no more than the thickness of a match stick ' this helps its ` fly by wire ' computer system to accurately control the aircraft , designed to be unstable but hugely agile . to counteract even the slightest shifts in gravitational pull , engineers build the jet on ` floating ' concrete rafts . these rafts measure 59ft -lrb- 18 metres -rrb- long and 9.8 ft -lrb- 3 metres -rrb- thick . two laser trackers and nine jacks are positioned on a single surface , to make sure all movement is relative . this means the jet\nthe 29-year-old american tourist drove into oncoming traffic in thailand . she drove the wrong way down a busy road and crashed into 13 vehicles . police chased her for 30 minutes before they shot out three of her wheels . officers broke the front passenger window of the vehicle to arrest her . she was bundled into a police car - to protect her from an angry mob .\nlouis van gaal thanked manchester united fans for their patience . the dutch manager said it is a great time to be a united supporter . united beat manchester city 4-2 at old trafford on sunday . the win moves united four points clear of city in third place in the table .\nprincess salwa aga khan has given birth to her first child , a boy named prince irfan . the baby was born in geneva last saturday and both mother and child are doing well . ms spears married prince rahim aga kahn in 2013 following a four month engagement .\nlewis hamilton took pole for sunday 's chinese grand prix . nico rosberg will start second on the grid behind his team-mate . sebastian vettel is third on the list , nearly a second adrift of hamilton . rosberg was visibly angry after the mercedes pit-wall put him under unnecessary ` pressure '\nless than 100 , a pittsburgh-based pop-up shop , is charging female customers only 76 per cent of the retail price of items . the shop is not-for-profit and aims to highlight the disparity in salaries between the sexes . in the united states , women earn an average of 78 cents for every dollar that men make .\nlizzie borden and her family are buried in fall river , massachusetts . the borden family burial monument was defaced with black and green paint . it was discovered on monday , the day after a lifetime miniseries , the lizzieorden chronicles , premiered on sunday night . borden went on trial for brutally murdering her father and stepmother with a hatchet in their fall river home in 1892 .\nkimi raikkonen finished fourth at the chinese grand prix on sunday . the finn is confident ferrari can challenge for the title this season . raikkenson finished fourth in the last two races for the italian team . the 35-year-old is looking to claim his first podium place for 19 months .\nmatthew kenney , 34 , ran naked through traffic in fort lauderdale , florida . he said he was fleeing imaginary killers who he believed stole his clothes and wanted to murder him . he told police he smoked flakka before he streaked though traffic early on saturday evening . flakka is a designer drug that can be even stronger than crystal meth or bath salts .\nworld no 1 novak djokovic beat tomas berdych 7-5 4-6 6-3 at monte carlo . djokovich is the first player to win the opening three masters 1000 events . the serb beat rafael nadal in the semi-finals on saturday .\nthe eossc2 is described as an ` ultra flexible micro-car for mega cities ' and is designed to connect to others to form a train . it can turn on the spot , shrink in size and even move sideways , like a crab , so it can park itself . the car has a top speed of 40mph -lrb- 65 km/h -rrb- and its semi-autonomous features are possible because of inbuilt cameras and a lidar sensor on its roof .\nformer arsenal forward andrei arshavin set to be released by russian side zenit st petersburg . arsh gavin 's contract expires at the end of the season . ukraine midfielder anatoly tymoshchuk 's deal is also set to expire . zenit coach andre villas-boas says club are not holding talks to extend contracts .\nhundreds of duke university students and faculty members march . they chant `` we are not afraid . we stand together '' a rope noose was found hanging from a tree on campus at 2 a.m. wednesday . duke officials have asked anyone with information about the rope nooses to call campus police .\nesa 's rosetta probe flew to within 8.6 miles -lrb- 14 km -rrb- of comet 67p on saturday . it was able to capture a four image montage showing the two lobes of the icy comet in incredible detail . the top right frame offers a stunning view onto hapi , the comet 's ` neck ' region littered with boulders . the view also gives a detailed look at the numerous , curved markings visible on the smooth surface .\ncolombian forward dairon asprilla scored in the 79th minute to lift the portland timbers past new york city fc 1-0 . city have now won just one of their seven games and lie seventh , five points behind the red bulls . teal bunbury scored one and set up another as the new england revolution beat the philadelphia union 2-1 in major league soccer on sunday .\ncrystal palace beat manchester city 2-1 at the etihad stadium . city spent # 500m on players but were outclassed by palace . eliaquim mangala and yaya toure were both left on the bench . glenn murray cost palace nothing when he joined from brighton in 2011 . jason puncheon scored the winner for palace with a fine free-kick .\nsnp leader nicola sturgeon was the star of the tv debate . she was self-assured and poised in her stilettoes and new hairstyle . judy murray , mother of tennis star andy , tweeted about her triumph . sturgeon has the most experience of governing of any of the seven politicians .\nask reddit thread invited members of the disabled community to list all the ways able-bodied people think they are being supportive . ` do n't call me an inspiration . be your own damn inspiration , ' one user wrote . others said it was insulting and patronising to be ` praised ' for doing normal things , like going to university .\nshinjiro kumagai is a clergyman at a local buddhist temple in kitakyushu . he dresses up as iconic japanese sci-fi tv hero kamen rider 1 . he then takes to the streets to lay down the law on drink driving . kumagai has the full support of police and even dons an armband .\ngeorge mason university student was expelled for violating its sexual misconduct policy . he claims he was role playing with his girlfriend when he assaulted her in his dorm room . the woman only filed a complaint after the couple broke up and she found out he was cheating on her . the lawsuit claims that the appeal was handled improperly . it seeks an order that would strike the violation from his student record , and $ 3 million in damages .\nbeatriz paez says she was recording police activity when a deputy u.s. marshal approached her . she says he grabbed her cell phone and smashed it with his foot . the incident was recorded by another woman with a smartphone camera across the street . paez filed a complaint with police in south gate , california .\nmarcus called 911 after a fire broke out on the first floor of his home in clinton , maryland on sunday morning . he and his sister aaliyah were trapped in a second-floor bedroom because it was too hot to get out through the hallway . the boy stayed calm throughout the 11-minute call and got himself and his little sister rescued .\njason gillespie has signed a two-year deal with adelaide strikers . gillespie will combine his role with his duties as yorkshire coach . the 39-year-old led yorkshire to the lv = county championship title last year . gillespie played in 71 tests and 97 one-day internationals for australia .\nmr miliband wants to bring in ` use it or lose it ' powers allowing councils to encourage building by putting up taxes on undeveloped land . sites still left idle could be compulsorily purchased for use by another developer . institute of directors describes the land grab as a ` stalinist attack on property rights '\nthe chernobyl exclusion zone was devastated by a nuclear explosion 29 years ago . the area is still not habitable for humans , and has been closed off to the world . but a scientist has been visiting the site to measure the radiation levels . she has attracted thousands of subscribers to her youtube channel for her videos . the ` superhero ' researcher says she has exposed herself to more radiation going into hospital and swimming in the sea .\ndozens of people fell ill at cooden beach hotel in bexhill-on-sea , east sussex . health officials say 100 people have been affected by the ` winter vomiting bug ' owner james kimber has issued an apology to guests and staff . he has vowed to steam clean the 41-room hotel , which is now virus-free .\ncaptain niloofar rahmani , 23 , is the first female fixed-wing air force aviator in afghanistan 's history . she and nine other women were awarded the u.s secretary of state 's international women of courage award . first lady michelle obama honoured rahmani 's bravery , commitment , and empowerment of women and girls in afghanistan . captain rahmani and her family have received death threats from the taliban .\neden hazard scored chelsea 's opening goal against manchester united on saturday . john terry 's strong challenge on radamel falcao led to the goal . thierry henry , jamie redknapp and graeme souness agree terry fouled falcato .\nconner sullivan , of cupertino , california , went missing on monday morning . the 17-year-old spent the first day hiking at a park where he would train for cross country races . he also spent the day under the bleachers at monta vista high school . police and 250 volunteers had searched frantically for the 5 ' 5 '' 150lb boy . sullivan said that he slept under the school bleachers every night .\nalan smith was injured during manchester united 's fa cup fifth round exit to liverpool nine years ago . smith suffered a broken leg and a dislocated ankle as a result of the incident at anfield . reports circulated that liverpool fans tried to disrupt smith 's journey to hospital by throwing bottles , beer glasses and stones at the ambulance . smith has denied that was the case .\nwhen mesut ozil is at his best he is worth paying to watch . ozil was at his brilliant best against liverpool on saturday . eden hazard is already the man chelsea seek out when they need something special . newcastle have declined badly since alan pardew left the club . jermain defoe 's goal was fantastic but sunderland deserve better .\ntyler macniven won the ninth season of the amazing race . he and fiancee kelly hennigan have announced their wedding will be september 26 , 2015 . the couple made a three-minute video to give friends and family a heads up on their fast approaching nuptials .\nglen walford has spent two years fighting worcestershire county council over whether the # 205,000 house should be used to recover the cost of her mother 's care . theatre director has invested # 40,000 in renovations to house . council argued that house was not her home at time when her mother went into care because she rents a flat in london . court of appeal ruled in favour of council in january . miss walfords said she will ` almost certainly have to sell ' house .\nfrench ace franck ribery limped off during bayern munich 's champions league win against shakhtar donetsk . ribery says he has no chance of playing against borussia dortmund this week . the winger admits he ` ca n't even run ' and is ` in pain ' bayern face bayer leverkusen in the german cup quarter-finals on wednesday .\nformer friend alexander bradley appeared in bristol county superior court on wednesday for a hearing on what he could testify about . he will be allowed to testify that aaron hernandez had access to a black glock pistol . but he can not reveal that he claims hernandez shot him in the face in a february 2013 incident . the judge also blocked bradley from testifying that hernandez was ` unreasonably suspicious ' and would not allow him to use iphones around him . hernandez is accused of killing semipro football player odin lloyd in june 2013 .\ntom mctevia , 42 , was traveling with a group and driving his friend tina hoisington near an overlook at lake pend oreille in bonner county on sunday when he accidentally drove his atv over the edge . he was left paralyzed in another atv accident in 2004 , when he was an orofino police officer , and had to leave the force . he had campaigned for wheelchair users to get better access to outdoor activities .\nkevin bollaert , 28 , was facing 20 years in prison for running a website that allowed people to anonymously post nude photos of women . he charged victims $ 250 to $ 350 to have the images removed . bollaert earned about $ 30,000 from his site . he was convicted of 21 counts of identity theft and six counts of extortion . he broke down in tears in court on friday . the landmark case was the first time a person had been tried for a running revenge porn ring in the united states .\n60 minutes returns to italy to interview the two older sisters of the vincenti family . the four sisters were removed from their mother 's sunshine coast home in the middle of the night in 2012 . they were taken to their father 's villa in florence and returned the next day . the girls ' mother , laura garrett , claimed she was returning them to italy for their own safety . the story was that the girls had been taken from their abusive father back in italy to hide out in australia . now aged 12 to 17 , the girls are living a happy and happy life in italy .\nthe body of samantha fleming , 26 , was found on friday in gary , indiana . she and her newborn daughter serenity were last seen on april 5 . the three-week-old was discovered unharmed at a home in gary . police were led to gary after fleming 's cell phone signal was picked up in the city . in the same home , police found a body doused with bleach , wrapped in plastic and stuffed in a plastic storage bin .\nmercedes driver lewis hamilton takes pole position for sunday 's chinese grand prix . hamilton beats teammate and title rival nico rosberg by four hundredths of a second . rosberg refused to shake hamilton 's hand after the session . sebastian vettel will start third on the front row .\ngeorgian chess grandmaster gaioz nigalidze has been banned from the dubai open . nigalidzes ' opponent grew suspicious when he kept darting to the toilet . officials found his smartphone hidden in toilet paper . the phone was logged onto a chess analysis app , the dubai chess and culture club says .\nreal madrid are keen on signing manchester united goalkeeper david de gea . but they are prepared to wait until next summer if louis van gaal wo n't negotiate . de gea 's contract expires in 2016 , and he is yet to sign a new deal . real are also interested in chelsea 's petr cech , according to as .\npolice estimate 275,000 protesters marched in sao paulo . it 's the second day of nationwide anti-government demonstrations in less than a month . protesters are pushing for the impeachment of president dilma rousseff . they are angered by a corruption scandal that has implicated politicians in rousseff 's party .\nmegan huntsman , 40 , given six terms of five years to life in prison . admitted strangling six of her children moments after they were born . stashed their bodies in the garage of her home in pleasant grove , utah . one of the babies was stillborn - but huntsman strangled the rest . her meth addict mother took to the stand to defend her daughter . huntsman 's estranged husband darren west is not considered a suspect .\nmaickel melamed , 39 , crossed the finish line at 5am tuesday morning . he has a rare form of muscular dystrophy that makes it hard for him to just walk or move . his physical trainers and friends and supporters cheered him on . melamed has completed races in chicago , new york , berlin and tokyo .\na perth family have turned to crowdsourcing to find an egg donor . sharon and nick chalwell have been trying for seven years to conceive . they have had nine failed rounds of ivf and one failed egg donor attempt . a call-out on their local radio station put them in touch with shannon mann . ms mann , 22 , has a two-year-old son and wants to help others experience the miracle of having a child .\njordan rhodes has scored 70 goals in the last three seasons for blackburn . nottingham forest are keen on signing the 25-year-old on loan with view to a permanent deal . the reds have so far resisted all bids for the striker . blackburn boss gary bowyer expects further interest in rhodes ' strike partner rudy gestede .\ntigers boss steve bruce reveals that players will have their salaries cut if they do n't beat the drop . hull city are currently fourth-bottom of the premier league . bruce says all players ' contracts have been set up to protect the club financially in the event of relegation .\nricky hatton expects floyd mayweather to win the fight of the century . the hitman says manny pacquiao has the style to beat mayweather . hatton says having freddie roach in his corner gives pacquao an advantage . but he warns mayweather to stay away from bolton boxer amir khan .\nreddit user wrote an incredibly sarcastic resignation letter to their boss . the letter was posted with the caption ` two weeks notice ' the writer apologises for a number of unfortunate incidents . they include the death of a step-mother and sickness . the writer is believed to be from the u.s. .\nbaltimore police said freddie gray , 25 , was taken into custody ` without incident ' on sunday morning . he was arrested for having a switchblade knife after being stopped because he ` fled unprovoked after noticing police presence ' gray died sunday after he ` had his spine 80 per cent severed at his neck ' during an arrest . six officers have been suspended , but investigators say they still do n't know how it happened . baltimore mayor stephanie rawlings-blake said , ` whatever happened happened in the back of the van '\nariel castro kidnapped and imprisoned michelle knight and amanda berry in his cleveland home for years . a new book by john glatt reveals that lillian roldan dated castro from 2000 to 2003 . roldan describes castro as a gentleman and romantic in the book . she says he was ` completely normal ' in the bedroom and even bought her a ruby ring . castro was convicted of kidnapping the three women in 2013 and committed suicide in prison .\nthe davis high school english teacher brianne altice , 35 , is accused of having sex with three students from early 2013 . she was ordered last month to stand trial on 14 felony charges , including rape , sodomy , sexual abuse and sex with a minor . in mid-march , one of the alleged victims brought a $ 647,000 lawsuit against the utah school district accusing officials of negligence for failing to fire the ` flirtatious ' teacher . the latest lawsuit describes how altice began flirting with the student , then 16 , and other boys in her class . court documents state that altice 's dalliances were an open secret at davis high , where the running joke among students\njulie mckenzie , 53 , thought scoliosis was the cause of her bad back . she was told by her gp that her pain was down to a mild curvature of the spine . but an mri scan revealed she had a tumour in her coccyx . back pain is ` very often under-investigated ' , says surgeon robert lee .\njeni 's splendid ice creams of ohio announced on thursday that it has initiated a voluntary recall of all of its ice creams , frozen yogurts , sorbets and ice cream sandwiches . the company is ceasing all sales and closing all scoop shops until all products are ensured to be 100 per cent safe . the nebraska department of agriculture found the listeria in a sample of jeni 's ice cream it had randomly collected at a whole foods in lincoln , nebraska . the action follows a similar recall by texas-based blue bell creameries on monday night . blue bell 's ice cream was linked to ten listeriosis illnesses in four states , including three deaths , and l\nceltic face kilmarnock in the scottish premiership on wednesday . if they win they could go eight points clear of nearest rivals aberdeen . the parkhead side will not play a saturday league tie this season . aberdeen will play st johnstone in their final game , with the top six completed by a dundee derby .\nbritain has been ranked only the 27th best country in the world for health and wellness in an international league table . obesity levels were the main factor pushing the uk down the health rankings . overall , the uk came 11th in the table of countries with the highest standards of prosperity , health and tolerance .\nchristopher whitmore , 36 , pulled up behind his wife melissa ball , 27 , and their son grayden , 8 , and shot him . he then turned the gun on himself at a gas station in varnell , georgia . police said ball and whitmore had a history of domestic issues and were separated .\nfour of mauricio pochettino 's young tottenham players played for england this week - harry kane , andros townsend , ryan mason and kyle walker . the argentine has gathered a considerable reputation since arriving in england just over two years ago . the mail on sunday looked at premier league clubs in the past three years to see where homegrown talent was getting the most opportunities to play .\nleo bernal , 8 , was shot in the head as he lay in bed at his home in culver city , california . doctors had to open the child 's skull to extract the bullet , leaving him with a partially shaved scalp and 23 staples . the boy 's father heard the unlocked security door and front door open and thought it was his 20-year-old son returning , police said . instead , a stranger wearing a hooded sweatshirt entered , exchanged a few words and then began shooting at and chasing the father , according to the family 's account .\ntexas was reportedly hit with two inches of rain in 15 minutes . cars were left floating in harris county in half a foot of rain water . hundreds evacuated from a circus big top after rain ripped through the sides . more than 1000 homes lost power between houston and dallas . one tornado blew through granbury at 7pm on saturday night .\nmore than 100,000 britons a year suffer from blood poisoning . sepsis affects 37,000 - more than breast , bowel and prostate cancer combined . nhs study reveals 90 per cent of patients failed to get correct treatment . sepism six involves blood tests to check for infection and giving oxygen and iv fluids to protect organs .\nmanchester united lost 1-0 to chelsea in the premier league on saturday . former red devils players ryan giggs , paul scholes , gary neville , nicky butt and andrew cole went out for dinner just hours after the game . cole took to twitter to post a picture of himself with the quartet . the former united striker said he was in ` great company ' with ` great team-mates '\noklahoma roommates jiaro mendez and elias acevedo were both found to be ` highly intoxicated ' by tulsa police following the fight that broke out in the parking lot of their shared apartment . the men were arguing over which phone was better , police said . the pair , covered in blood , were taken to hospital where they were treated for lacerations to their body . aceveda , 21 , has since been arrested and charged with assault with a deadly weapon .\njordan spieth leads masters by four shots going into final day . spieth 's 15 birdies are just 10 away from phil mickelson 's masters record set in 2001 . rory mcilroy and tiger woods both drop two shots late on in third round .\nwojciech szczesny says he feels sorry for adam federici . arsenal goalkeeper says federici was ` the best player on the pitch ' arsenal beat reading 2-1 in the fa cup semi-final at wembley . federici let alexis sanchez 's shot slip through his hands .\nyoung job seekers are filling in application forms using text speak . insurance giant admiral said many youngsters lose out at the very beginning of looking for work because they failed to string a normal sentence together . cardiff-based insurer with more than 5,000 staff voiced their fears in evidence to the welsh assembly 's enterprise and business committee .\njonny bucknell , 58 , was enjoying his roast duck dinner in the council chamber . labour rival theo blackwell spotted him and alerted other councillors . he was forced to put down his cutlery when the mayor told him off . mr bucknell claims he was unaware eating in the chamber was forbidden . he now says he wants a rule change so he can eat a roast dinner at meetings .\n26-year-old anamarie shreeves lives a zero waste lifestyle . shreeve 's six month 's worth of garbage is similar to what the average person generates in half a day . she composts , makes her own shampoo , toothpaste and even uses reusable feminine products .\nthe chevrolet-fnr car was unveiled at the shanghai general motors gala night this week . it has ` dragonfly ' swing doors that open upwards and ` crystal laser headlights ' the car is self-driving , electric , and the front chairs can swivel round . and using iris recognition software you can start it using only your eyes . chevrolet said the car offered a ` glimpse at mobility of the future '\nmanchester united were beaten 3-0 by everton on sunday . goals from james mccarthy , john stones and kevin mirallas condemned united to their third successive premier league loss at goodison park . louis van gaal accused his players of lacking desire . gary neville has slammed united 's performance as ` toothless '\neight-year-old christopher furniss-roe hanged himself in a ` tragic accident ' he was sent to bed early for breaking his younger sister 's beach bucket . but 15 minutes later his father found him hanging in his room . father jason desperately tried to save his son 's life but he died the next day . coroner ruled it was a tragic accident - saying he was probably looking for ` sympathy and forgiveness ' after the row .\ngeoff haigh , 61 , from oldham , greater manchester , wanted to marry his partner heather , 54 , after being diagnosed with terminal pancreatic cancer . but the couple 's special day was full of blunders and they have three marriage certificates . guests were forced to listen to the wedding song 10 times in a row and their marriage certificate was recorded with the wrong date . mr haigh died weeks after the ceremony in november last year and his wife said he felt like he 'd let her down . all 11 guests at the ceremony wrote a letter of complaint to manchester register office .\nlittle foot , an important fossil of an early human forerunner , is roughly 3.7 million years old . fossil was unearthed in the 1990s in south africa and dated at 218 million years . scientists used a gas-filled magnet detector to measure the radioisotopes .\nfor 25 years , ali addeh refugee camp has been a holding point for those fleeing into djibouti . the camp 's 10,000 residents , who mostly come from eritrea , ethiopia and somalia , are waiting to be resettled . many though say it 's been years and they 're tired of waiting .\nsacramento kings are set to sign sim bhullar to a 10-day contract . bhuller will become the nba 's first player of indian descent . the 22-year-old centre will be on the roster on friday when the kings host the new orleans pelicans .\nsupermarket has sold four of its fleet of five private jets . the final one , a hawker 800 , will be gone by the end of next month . tesco spent nearly # 29 million flying executives to different parts of the world . new chief executive dave lewis admitted the planes gave the wrong image .\ndaniel sturridge has played just 12 league games for liverpool this season . the england international has been plagued by injuries this season . liverpool boss brendan rodgers is keen on signing a top striker . divock origi will return to liverpool in the summer . rodgers is also keen on burnley 's danny ings and psv 's memphis depay .\nborussia dortmund have offered a contract extension to mats hummels . the germany international has been linked with a move to manchester united . hummels has two years left on his contract with the bundesliga club . the 26-year-old has admitted he is considering his future at the club .\nsir bradley wiggins and geraint thomas avoided being caught up in a major crash in the final kilometre of scheldeprijs . but their team sky team-mate elia viviani was not so fortunate . the italian hit the barriers in a crash which sent around 50 riders to the ground , and went to hospital for x-rays .\nromelu lukaku was racially abused by a parent as a youngster in belgium . the everton striker used it as an added motivation to score goals . lukaku is everton 's top scorer this season with 18 goals . he has hailed the work rate of strike partner arouna kone .\ndoctors accused of letting margaret hesketh die after wrongly concluding she had terminal cancer . medics told family there was little they could do for 70-year-old because she was riddled with tumours . family claim she was then put on a discredited liverpool care pathway-style treatment for the dying . had fluid and nutrition drips removed six days before she passed away .\nmetropolitan police ` missed crucial cctv footage ' of hatton garden heist . ` crystal clear ' footage was handed into force by shocked worker 50ft from crime scene . but police have refused to make images public despite claims it is best yet . comes after force was criticised for ignoring alarm that went off on good friday .\nsportsmail has produced a guide to the top five leagues in the country . chelsea are likely to win the barclays premier league . the blues will be joined in the champions league by manchester city and arsenal . the gunners and manchester united are likely in the europa league . bristol city are automatic promotion to league one . barnet are promoted to the vanarama conference .\neach egg is 30cm high and made entirely from cake . inspired by faberge 's famous jewelled eggs . created by 14 of the uk 's top cake artists . each of the intricate treats is entirely edible . features a union jack egg and one dedicated to mary berry . the eggs were created as part of a feature for cake masters magazine .\ndavid and samantha cameron were on the campaign trail in yorkshire . the prime minister 's wife visited growing zone , an allotment project . she was introduced to activities by june perkin , who founded the project . mrs cameron was campaigning with conservative candidate alec shelbrooke . meanwhile , boris johnson and david cameron were playing with jigsaw .\nsportsmail 's jamie redknapp picks his top five goals of the weekend . jermain defoe 's volley in the tyne-wear derby was the best . alexis sanchez 's goal against liverpool was the other top goal of the week . click here to see how sportsmail rated the premier league goals .\ncolorado became the first state in the nation to allow the sale of recreational marijuana . brian rogers and caitlin mcguire own the breckenridge cannabis club . the pair 's journey to build a legal marijuana empire is documented in the new cnn original series `` high profits ''\ntaliya gabrielian , 33 , from sydney , has created healthy versions of all the classic chocolate bars . she has recreated the mars bar , snickers , bounty , twix and cherry ripe . gabrielian 's recipes are available on her best-selling food app , hippie lane . she grew up on a diet of milo and nutella , but converted to healthy food .\nxana doyle , 19 , was a passenger in the stolen toyota avensis . driver sakhawat ali , 23 , was more than twice the drink-drive limit . toyota flipped and landed on its roof in accident in early hours of the morning . miss doyle suffered a ` blunt head injury ' and was pronounced dead at scene . ali admitted causing death by dangerous driving and aggravated vehicle taking .\nwomen typically take and delete five pictures before deciding on selfie they like . two in three women feel anxious just having their photo taken , survey finds . men are also guilty of taking multiple selfies before they post one they like , survey found . itv 's good morning britain show is encouraging viewers to share first selfie on social media .\nerica ann ginneti , 35 , was sentenced to 30 days in jail for having sex with a 17-year-old student . the married mother of three from philadelphia , pleaded guilty in december to institutional sexual assault and disseminating sexually explicit materials to a minor . judge garrett d. page made the ` dangling candy ' comment as he chastised ginnete for sending the student explicit photos and videos of herself . the former math and calculus teacher at lower moreland township school district had been facing seven to 14 years in prison .\ndomenico rancadore fled to britain in 1995 and was convicted in his absence . he was given a seven-year sentence by an italian court in 1999 for being a member of the cosa nostra . in february he lost his year-and-a-half battle against extradition . but today it emerged that the 65-year-old 's case expired last october . his european arrest warrant is to be withdrawn and he will remain in uk .\ngov. nathan deal signs bill to legalize low-thc cannabis oil for certain conditions . the bill will create an infrastructure , registration process and research program . haleigh cox , 5 , has been the face of the bill . her mother moved her to colorado , where medical marijuana is legal , in hopes of saving her life .\ntia sharp was sexually assaulted and then brutally murdered at her home . the two-bedroomed terraced house - number 20 the lindens in new addington , near croydon south london - was bulldozed in june 2013 . in its place , two new houses have been built , which will be numbered 19a and 19b , completely wiping number 20 from the map .\npoppy smart was wolf-whistled at by builders on her walk to work . 23-year-old marketing co-ordinator said it was a daily ritual for a month . she recorded the constant whistling using her smartphone 's video function . miss smart also contacted one of the construction companies working at the site to complain of sexual harassment .\nscientists and biologists are examining the 50-foot sperm whale 's decomposing remains at sharp park state beach in pacifica , california . the marine mammal was discovered bleeding from its head on tuesday and is one of 17 to be found along the north coast of california in 40 years .\nmichael phelps is entered in five events in arizona this week . it will be his first meet since serving a six-month ban following a drunk-driving conviction . the 18-time olympic gold medallist was suspended by usa swimming last year after his arrest on drunk driving charges .\nflorida a&m drum major robert champion died in november 2011 . he was beaten aboard a school bus after a football game . a jury deliberated about 2 1/2 hours before returning guilty verdicts . a total of 15 defendants were charged originally , but most took plea deals .\naston villa defeated liverpool 2-1 in the fa cup semi-final . fabian delph scored the winner in the 54th minute at wembley . tim sherwood 's side will face arsenal in the final on may 28 . delph says it will be a dream come true to walk out as captain .\nnicola sturgeon denies she cut the hair off her sister 's barbie doll . the politician was accused of hacking the hair of from dolls as a child . the accusations sparked a twitter trend with mocking photographs of beheaded dolls . the snp leader has two weeks to go until voters go to the polls .\n14-year-old playmaker evangelos patoulidis is attracting interest from manchester city . the belgian starlet rejected a move to barcelona 's la masia academy when he was 12 . city have held discussions with anderlecht chairman roger vanden stock . arsenal and barcelona have also been linked with the youngster .\npolice say blaine boudreaux ran a red light and slammed into a honda civic carrying joshua medrano , 6 , sunday evening . the boy died at the scene ; his mother , cynthia , was hospitalized with a punctured lung and broken bones . boud reaux also allegedly killed homeless man leonard batiste , 61 , two hours earlier . the 34-year-old , who has a history of duis in louisiana , is also accused of crashing into another car carrying a woman and a toddler .\nlindsey vonn spoke about her relationship with tiger woods on the late night with seth meyers . the 30-year-old has been dating golf 's former no 1 since 2013 . vonn has become close with woods ' children and says they are ` great kids ' the us skier has been training for the 2018 winter olympics in south korea .\nolder workers are risking redundancy and long-term unemployment , it is claimed . experts said training was ` heavily geared ' towards young people . this left them vulnerable when companies start ` shedding ' jobs , study warns . over-55s had same literacy and numeracy skills as those aged 16 to 24 .\nprince andrew visited the offices of paint firm akzonobel in slough . visited as part of his work with the outward bound trust . visits come five days after sex claims against him were thrown out . allegations were made by virginia roberts , now 31 , who claimed she was the sex slave of disgraced financier jeffrey epstein . duke has always denied the claims .\nthe federal government has pledged to scrap the religious exemption from welfare benefits . social services minister scott morrison announced the changes on sunday . parents will no longer be able to access childcare benefits simply by signing a form that says they object to immunisation based on ` personal , philosophical or religious ' reasons . parents who refuse to immunised their children are set to lose up to $ 15,000 a year for every child .\njoseph o'riordan , 73 , stabbed his wife amanda eight times in october last year . she was left with life-threatening injuries to her torso , chest , arms and back . o'riordan rang an ambulance after the attack and admitted what he had done . four months later , while on remand , o'riordan wrote to his wife from jail . he asked her to ` get my things together ' before for his trial .\nleicester city beat west bromwich albion 3-2 on saturday . the foxes are now just three points behind hull city in the premier league . nigel pearson believes his side 's fate is in their own hands . leicester have found an attacking potency with eight goals in three games .\ndick law has flown to south america to finalise a deal for maxi romero . the 16-year-old forward has been compared to lionel messi . arsenal are in advanced talks with velez sarsfield over a # 4.5 million swoop . romero is expected to remain with velez on loan for at least two more seasons .\nmarathon runner maickel melamed is battling muscular dystrophy . the 39-year-old walked down boylston street in the pouring rain tuesday . he was the last participant to complete the race , cnn affiliate wcvb-tv reports . his perseverance was celebrated by crowds at the marathon finish line .\nhole appeared on the outskirts of urumqi , in north-western china . experts think a coal seam may have spontaneously combusted below ground . the temperature has been measured at 792c - but that was from two metres away . video footage shows locals igniting branches and grass by pushing it to the rim .\nzara phillips revealed she was surprised at how difficult it was to regain her fitness after the birth of her first child . the queen 's granddaughter has committed to a strict exercise and diet regime to get back in shape . the 33-year-old is vying for a place on team gb at the rio olympics .\nlian doyle , 24 , agreed to hide her boyfriend justin robertson 's shoes . he was paid # 1,500 by benjamin carr , son of victim 's ex-lover . robertson killed pennie davis , 47 , in a paddock in the new forest last year . doyle pleaded guilty to perverting the course of justice and was sentenced today . she was released immediately because she has already spent six months on remand . robertson was jailed for life yesterday after being convicted of murder .\ntwo fugitives from london captured in europe with 24 hours of each other . jayson mcdonald was found hiding under a bed in amsterdam in the netherlands . paul monk was captured at his luxury villa in alicante on the spanish coast . both men are wanted by the metropolitan police on suspicion of drugs offences .\nbuenos aires woman posted raunchy pictures of herself on facebook . she then flirted with unsuspecting men she had contacted on the social network . 21-year-old would spike their drinks and wait for them to fall unconscious . she would then rob their homes after they fell unconscious .\nthursday will mark three weeks since saudi arabia began airstrikes on houthi rebels . there is as yet little sign that the rebels are being driven back . the houthis forced yemeni president abdu rabu mansour hadi from power in january . fears grow that saudia arabia and iran are fighting a proxy war in yemen .\nmuhammadu buhari , 72 , won nigeria 's presidential election , defeating incumbent goodluck jonathan . buhar won by about two million votes , the first time the opposition has defeated the ruling party in democratic elections . nigeria is the biggest economy and most populous country in africa .\njohn and karen copleston claim paul phillips ` constantly harassed ' them . they moved a gate at the back of their # 210,000 house in poole , dorset . retired mr phillips accused the coplestons of putting the gate up on communal land . when the couple challenged him they say claim embarked on a campaign of misery . they installed cctv cameras to catch him in action . covert footage caught mr phillips fiddling with the gate 's lock .\narchaeologists have uncovered a ritual burial of 2,000-year-old human skulls . the discovery has led to the theory they could be the remains of boudicca 's rebels . experts are questioning whether they were part of a gruesome ceremony . the bones were found at the side of the historic river walbrook in london .\nfiorentina drew 1-1 away to dynamo kiev in the europa league . club brugge and dnipro ended in a goalless stalemate . sevilla beat zenit st petersburg 2-1 in their europa league quarter-final tie . denis suarez scored a late winner for sevilla . aleksandr ryazantsev had given the visitors the lead in the first-half .\nstunt performer antti pendikainen attached a parachute to his snowmobile . the finnish driver took to the skies after racing his vehicle off a mountain . instead of plummeting 1500 metres to his death , pendikaine defied gravity . the brain child of finnish extreme sports group , stunt freak team . the group spent just three hours conjuring up the plan before beginning test flights .\nchris jans has been fired by bowling green university . the married father-of-two was seen on cell phone footage touching an unidentified woman 's behind . he was also accused of grabbing a ` woman 's head and moving it toward your crotch ' and calling another woman a ` b **** ' the incident was so heated a woman slapped him before he was asked to leave .\na sydney-based university lecturer has revealed his top tips for mastering wine tasting . dr alex russell has worked in the wine retail industry for over 10 years . he completed a phd on ` the taste and smell perception of wine ' his tips include setting aside four hours to learn how to taste wine .\nonline site airline codes explains the origin of airport codes . it lists 438 airports from 94 countries with their three-letter codes . some are very random , such as agp for malaga airport in spain . others have been chosen for their unusual acronyms .\nthe chernobyl nuclear explosion site has seen an increase in tourist interest . the site is one of the world 's most famous ` dark tourism ' sites . in 1986 , reactor 4 in the chernobyl power plant exploded , sending radioactive particles into the air above the city of pripyat , north of kiev . in recent years , visits to the nuclear explosionsite have increased exponentially . kiev-based tour company soloeast estimates that it takes approximately 10,000 tourists there each year .\nliana barrientos has been married 10 times , sometimes within two weeks of each other . she is accused of lying on a marriage license application about her first marriage . prosecutors say the marriages were part of an immigration scam . she pleaded not guilty friday . if convicted , she faces up to four years in prison .\nsebastian rode opened the scoring for bayern munich in the 38th minute . hoffenheim captain andreas beck added an own goal in stoppage time . bayern are 13 points clear of second-placed vfl wolfsburg with five games left . pep guardiola 's side host porto in the champions league on tuesday .\nno man 's land fort is a victorian sea fort in the middle of the solent . the fort was built between 1867 and 1880 to defend the coast from french attacks . it has been transformed into a luxury hotel with a rooftop hot tub . the hotel has 23 luxury suites and can sleep 44 guests , with prices ranging from # 450 per night . the luxury hotel is set to open on april 23 .\na large-scale brawl broke out at a zara store in philadelphia on friday afternoon . at least five women got into a fight that lasted for multiple minutes . the police were called , but all of the women who were involved had fled by the time the cops arrived .\ndavid cameron took a photograph with staff at pirate fm in cornwall . the prime minister used a selfie stick for the first time during a visit to cornwall . he was on a visit there to lay out conservative plans for the southwest . mr cameron arrived in penzance yesterday morning after spending eight hours on the sleeper train from paddington .\nthree british citizens were found plane spotting near fujairah airport in the uae . they were arrested on february 22 and have been in jail since . their lawyer says the case against them has been dropped . the men will not face deportation and there will be no travel ban , he says .\nhailey baldwin , 18 , stars in a new shoot for elle magazine . she revealed that she used to sleep over at kim kardashian 's apartment when she was working in new york . the model is known for her close friendship with fellow fashion star kendall jenner . hailey is the face of topshop denim .\nwashington man clark elmore confessed to raping and killing his 14-year-old stepdaughter in 1995 . elmore claimed his rights were violated during the trial because his attorney gave him bad advice and the jury saw him in shackles . the 9th us circuit court of appeals confirmed that the washington supreme court did not act unreasonably . el more is now effectively serving a life sentence due to a moratorium on executions .\ndeputy president william ruto says kenya will move refugees from dadaab camp to somalia . he says the u.n. has three months to relocate the refugees or `` we shall relocate them ourselves '' al-shabaab gunmen stormed garissa university college in eastern kenya this month , killing 147 people .\ncollege student jannik andersen was struck and killed on saturday . he was hit by a union pacific train in indio , california , at 3am . police are investigating the incident , which happened just a few miles from festival . friends have paid tribute to the 23-year-old , calling him ` happiest dude in the world '\nwilshere posted a photo of his overflowing waitrose shopping trolley on his day off on monday . the arsenal midfielder is closing in on a return to full fitness after ankle surgery . wilshere is reportedly on the shopping list of manchester city . the 23-year-old posted the photo on his instagram account .\njoseph getty was caught driving through belgrave square , west london , while double the legal drinking limit . he pleaded guilty to drink-driving and received a 20-month ban and a fine of # 1,000 . his conviction came just a day after his relative andrew getty was found dead at his hollywood home .\nman , who has not been named , fell onto tracks in washington , d.c. , tuesday afternoon . he was pulled up from the rails by two men who leaped down after him . the man only had minor face injuries . it is unclear exactly what sent the electric wheelchair tumbling over the edge of the platform .\nus-born thrill-seeker jeb corliss jumped over the 562m high ball 's pyramid at lord howe island , just off the australian coast . the volcanic stack is located in the tasman sea between australia and new zealand . corliss shared the moment he flew over the stunning location on social media . the 39-year-old has been base-jumping since the age of 22 and has dedicated his life to human flight .\nresearchers isolated bacterial dna from mummies found in 18th century crypt . found 14 different strains of tb bacteria that had infected eight of the bodies . traced them all back to a single source . mummies were discovered during restoration work at dominican church in vác , hungary .\nnicholas pence , 25 , and his father david , 56 , shot dead in new orleans home . they were celebrating football game in their garage when they were killed . david pence was shot three times in the chest while sitting in an armchair . nicholas was shot in the face and back and found lying on the floor . police have charged haraqyon degruy , 18 , and dexter allen , 17 , with murder .\njohn avlon : sen. bernie sanders is a long shot to win the presidency , but he 's worth the shot . avlon says sanders has been a strong advocate for vermont 's farmers , hunters . he says sanders is an authentic voice who speaks without fear . avlon : sanders would not be wall street 's best friend . he 'd work hard for universal health care , he says .\nthe city of naypyidaw was built in 2002 after the government decided to move the capital from yangon . it is a secluded city of 1,200 four-storey apartment blocks and super-sized highways . the city was developed for government staff , but locals only come to live there for work .\n`` finding jesus '' viewers tweeted questions about mary magdalene . mark goodacre , professor of new testament and christian origins , answered them . goodacre : the gospel of mary is not mentioned in any of the extant works of christian history . he says there is no evidence that jesus had a wife .\nsergio aguero scored his 100th goal for manchester city in the derby defeat at the hands of rivals manchester united . the argentine has scored 19 premier league goals this season . but city risk losing him if they slip out of the top four . real madrid and barcelona are both fans of the striker . city are reportedly targeting juventus midfielder paul pogba .\njimmy anderson will play his 100th test on monday in antigua . anderson is on course to overtake sir ian botham as england 's leading wicket-taker . the 32-year-old says he wants to play test cricket for as long as possible . anderson admits he could be dropped from the 50-over team .\naddison russell was playing his first game at wrigley field on monday night . the rookie , 21 , was batting for the chicago cubs in the seventh inning . he was trying to catch up to a fastball when his bat slipped from his fingers . the bat went flying and struck a fan sitting several rows behind the on-deck circle in the face .\nrangers held to a 1-1 draw by championship bottom side livingston . myles hippolyte gave livingston the lead with a superb free-kick in the second half . marius zaliukas equalised for the home side two minutes later . rangers move one point clear of hibs in second place .\npresident barack obama and bill nye ` the science guy ' will ride aboard air force one on earth day . nye held court with press before boarding the airliner , telling them , i love the smell of jet fuel . the president 's plane will travel nearly 2,000 miles round-trip to the florida everglades and back , a 1,836 mile flight . ny told press it was his first time on the president 's private jet , but he once rode af2 with former vice president al gore .\ntyecka shanta evans , 28 , charged with manslaughter in death of her 3-month-old daughter taliya richardson . evans initially told police she was sleeping at home when her child stopped breathing . but she later admitted that she had left her two children , ages 9 and three months , and her 1-year-old nephew home alone at 1am to go to a club with her sister and the woman 's boyfriend . when she returned home at 2.40 am , taliya was found unresponsive .\nsouth yorkshire police missed opportunities to tackle child sex exploitation . at least 1,400 children were abused in the town over 16 years . national crime agency review examined three current investigations . it found that south yorkshire police did not use ` alternative strategies ' to protect victims or gather evidence .\nmathieu bastareaud and ali williams crossed for toulon in the second half . will helu scored a second try for wasps but it was cancelled out by a late penalty . dai young 's side are the third english side to be knocked out of the champions cup .\nthe 20ft-tall 30ft-wide billboard was positioned on the side of the a34 in walsall , west mids . it featured pictures of the couple and the words : ` tara you 've changed my life . will you marry me ? ' paul bakewell , 35 , from walsal , arranged for his partner tara barber , 32 , to be driven past the billboard by her boss . he then got down on one knee and proposed to her .\npunter liam sandham , of fleetwood , filmed the prank from his camera phone . he films himself and the vehicle 's wing mirror through a magnifying glass . he then films his friend , who sits in the passenger seat and looks at his phone . a beam of sunlight can be seen dancing on the man 's knuckles . the video has gone viral after receiving over one million views .\nmanchester united face everton in the premier league on sunday . marouane fellaini will make his first return to goodison park since joining . louis van gaal has spoken to fellaine about keeping his cool . robin van persie is not expected to return to the starting xi .\nrapper denis cuspert has released a propaganda video for the islamic state . he calls on jihadist sleeper cells in europe to carry out terrorist attacks . the 39-year-old sings about planning attacks in britain , germany and france . he raps : ` we want your blood ' and ` kill the polytheists wherever you find them ' this follows reports that british police have raised security levels ahead of world war i commemorative events taking place next week .\npeter reece and family were parked on ocean shores beach on thursday when the tide came in and trapped the family . reece 's fiancee , mother and six-month-old daughter were trapped in the car because of the wet sand . reeces and his fiancee got out of the car , but his mother and daughter were stuck inside . seconds after ocean shore police officer kyle watson saved the grandmother and baby , a wave hit the car and pulled it out to sea . the car was recovered shortly after the incident and a bulldozer was used to flip it on its right side before it was towed to the road .\nmay 2 fight between floyd mayweather and manny pacquiao is set to be the richest in history . tickets for the fight will go on sale at 8pm on thursday . the fight was delayed by a dispute over the number of tickets and hotel rooms available to each camp .\ntim sherwood 's aston villa beat tottenham 1-0 at white hart lane . christian benteke scored the winner in the 35th minute . tottenham defender vlad chiriches was sent off in stoppage time . sherwood was visibly delighted at recording a victory .\npsg face barcelona in the champions league quarter-final on tuesday . david luiz is a doubt for both legs of the tie after injuring his hamstring . the brazilian defender was injured during psg 's 2-0 win over marseille . laurent blanc 's side could be forced to play eight matches without luiz .\nformer director of public prosecutions keir starmer was in charge of operation elveden . operation elveen began tainted ` witch hunt ' into tabloid journalists . starmer pushed use of 13th century law to go after journalists for informing public . he is likely to be returned to the safe labour seat of holborn and st pancras .\nthe historic carlton tavern was bulldozed by developers without warning . landlady patsy lord was told by owners on easter monday to close for an ' inventory ' but she returned two days later to find the pub , built in 1921 , was no longer standing . it was the only building in its road not destroyed by hitler 's bombs during the blitz . developers cltx ltd was denied planning permission to turn it into flats by westminster city council in january . red dwarf actor danny john-jules blasted the bulldozing as ` another nail in the coffin ' for the community .\nsarah brady died friday from pneumonia at the age of 73 . her husband jim brady was shot in 1981 during an assassination attempt on ronald reagan . the couple helped pass the brady handgun violence prevention act in 1993 . the bill , named after the couple , has blocked an estimated two million prohibited gun purchases in the united states .\njake tapper is the next anchor of cnn 's sunday morning political interview program `` state of the union '' he 'll take over the program in june . tapper will remain the channel 's chief washington correspondent and the anchor of the weekday afternoon newscast `` the lead ''\nsarah stage gave birth to a healthy baby boy named james hunter on tuesday afternoon . the 30-year-old gave birth at 8lbs , 7oz and 22 inches long . the model came under fire last month as critics claimed her trim figure could be harmful to her unborn child .\ntim sherwood believes harry kane 's rise at tottenham is too fast for the club . sherwood says spurs must keep pace with kane 's progress . the former spurs boss also praised the form of christian benteke . sherwoods side take on aston villa at white hart lane on saturday .\nfinal episode of back in time for dinner sees family sample food of the future . includes mexican spiced cricket tacos , asian worm stir fry and buffalo worm tart . two billion people worldwide already supplement their diet with insects . un report identified edible insects as a sustainable food source for the future .\narsene wenger says post season tours are a ` nightmare ' for managers . arsenal opted against an extended pre-season trip . tottenham will travel to australia and malaysia after the season . chelsea are also set to travel abroad when the current campaign finishes . manchester united have successfully lobbied for a shorter tour of the us .\ntoddler suffered horrific facial injuries after the alaskan malamute crossed with a siberian huskey clamped its jaws around her head . she was playing in the garden on thursday afternoon when her family heard screams and ran to find their eight-year-old dog ` gripping ' the three-year old by her head . the dog was taken to a nearby vet and the family gave permission for their pet to be destroyed .\nresearch suggests that in trying to conjure up inspiration , most of us end up suppressing it . neuroscientists john kounios and mark beeman have written a book on how creative insight works in the brain . they suggest ways to unleashing your creative potential -- both at home and at work .\nthe woman , believed to be in her 20s , was standing on a punt in cambridge . she lost her footing and fell into the river cam after her vessel hit another boat . two of her friends leapt in to save her and staff at a punt hire operator manoeuvred one of their craft alongside to help pull her out . meanwhile , brits were given their first taste of spring with temperatures reaching nearly 21c - marking the hottest day of the year so far .\nmatt kemp had an episode of sbs 's heat in the kitchen in 2004 . he called his pregnant wife a ` c *** ' during an expletive-ridden tirade . the chef said he regrets the incident and how it made him feel . kemp said he would work himself into a ` frenzy ' because of his rage . he said he missed out on the births of his children because of the anger . kemp and former nrl player mark geyer will appear on insight on sbs on tuesday .\n18 paintings and three luxury cars were found in a caretakers garage in sydney 's wiley park . the works were stolen from property investor , peter o'mara 's darling point home in 2010 . the artworks were delivered to the art gallery of new south wales and have been ruled to chubb insurance for possession .\na kentucky grand jury indicts nine people in the theft of 65 cases of pappy van winkle . the bourbon was reported missing from a kentucky distillery in october 2013 . the alleged ringleader is gilbert `` toby '' curtsinger , a loading dock worker at buffalo trace .\narsene wenger was quizzed about an april fools ' day gag at his press conference . the gunners boss was told that per mertesacker would give a ` live ' team talk . the story was a hoax and there was no basis of truth to it . arsenal take on liverpool at the emirates on sunday afternoon .\nmatthew whelan has spent # 40,000 on tattoos and body modifications . he says he has been unable to find work because of his looks . the 35-year-old is now planning to set up his own business . he has officially changed his name to king of inkland king body art the extreme ink-ite but goes by body art for short .\nthe freezer trawler sank in the sea of okhotsk 205 miles off russia 's kamchatka peninsula . 63 crew members of the dalny vostok were rescued with the sea 's temperature near zero degrees celsius . a further 15 are still missing . the ship was carrying 78 russian nationals and 54 foreign nationals .\ncctv footage shows a man carrying a van on the back of his tricycle . the unusual scene was captured in yangzhou city , jiangsu province . police believe the driver was carrying the van to the garage after it had a flat tyre . the silver minivan is estimated to weigh around one ton .\nsupporters of memories pizza have raised more than $ 842,000 for the business . the pizzeria in walkerton , indiana , refused to cater a same-sex couple 's wedding . the family-run restaurant is at the center of the debate over indiana 's religious freedom restoration act .\nemergency services are preparing for damaging winds to hit large parts of new south wales . nsw state emergency service anticipates calls across sydney metropolitan , hunter and illawarra regions . the ses had responded to about 15 jobs on monday morning , mainly in sydney metro area . rainfall could be 40-60mm across most of those areas , with up to 100mm in some places . victorians are set to endure a cold week until anzac day with lows of 7 degrees and highs of 19 degrees .\nfreddie gray 's death sparked riots in baltimore . john sutter : police were blamed for doing too little and for doing much . he says police deal with criminals every day , and they wo n't be gone tomorrow . sutter says it 's too easy to blame police for all our problems . we can improve police and society should improve policing , he says .\nan improvised bomb explodes near a u.n. vehicle in somalia . four of the victims are foreigners and two are somalis , a police chief says . the terrorist group al-shabaab claims responsibility for the attack . the attack follows a separate incident sunday in which three african union troops died .\nmindy kaling 's brother vijay chokalingam is writing a book about his experience pretending to be african-american . he applied to 14 medical schools under his childhood nickname `` jojo '' and received only one offer . peter bergen : chokaledam 's story is sad and shows the unfairness of affirmative action .\njennie anne kehlet , 49 , and raymond keith kehlets , 47 , were last seen on march 22 in remote bushland in western australia . police are searching disused mine shafts up to 20 metres deep . the couple are understood to be amateur prospectors and had set up a well-stocked campsite about 30km south of sandstone .\nb bryan santana found guilty of first-degree murder in the death of his roommate , shelby fazio , 23 , in october last year . he strangled her with a belt , stabbed her with hunting knife , mutilated her dog and had sex with her corpse . he was sentenced to two life terms in prison on thursday . the jury took just two hours to deliberate . santana 's family cried in their seats as the verdict was handed down .\nharry kane is nearing the 30-goal mark for the season . tottenham boss mauricio pochettino has compared kane to gabriel batistuta . pochettinos played alongside batistutas at the 2002 world cup . kane scored on his full england debut against lithuania . roy hodgson wants kane to play for england under 21s this summer .\nsiem de jong played 45 minutes for newcastle under 21s on his comeback from a collapsed lung . the 26-year-old made way at the break after coming through the first half of united 's 2-0 defeat to derby county at st james ' park . de jong has made just one premier league start since his # 6million arrival from ajax last summer .\nnotebook containing calculations by alan turing sold at auction for # 700,000 . 56-page document is believed to be the only extensive turing manuscript . it was written in 1942 at government code and cypher school at bletchley park . turing is best known for his contribution to cracking the code used by the germans in their enigma machines during the second world war .\njake castner went into hiding last week after a warrant was issued for his arrest . the 19-year-old boasted on facebook on his fourth day on the run : ` we do n't talk to police ! ' on monday morning victoria police say they arrested and interviewed castner ` in relation to burglary and theft related offences allegedly committed in the bacchus marsh and ballarat areas ' the troubled teenager 's facebook page is littered with drug references including offers of ` bud for cash ' and an image of him appearing to smoke a glass pipe .\nchina has built a runway on disputed fiery cross reef in the south china sea . the philippines , vietnam , malaysia , brunei and taiwan all claim the area . images reveal fierycross reef was virtually untouched in march 2014 . but by march this year , it had been transformed into an artificial island . china 's building activity in the spratly islands has infuriated neighbouring countries . u.s. president barack obama has accused china of using its military might to reclaim the contested territory .\nfire crews called after huge blast ripped through farmhouse in lincolnshire . susan house , 55 , was walking her dogs at the time of the explosion . she returned to find her home looking like a bomb site with rubble strewn across garden . police are not treating the blast as suspicious .\ncommercial diver johnny debnam was free diving in the ocean off the coast of western australia when he had his encounter with the ray . the stingray swam over him three times , enveloping him under his body as he glided on top . the video shows the swimmer completely motionless in the seagrass , with the enormous 150 kilogram ray rubbing itself back and forward over his body .\nmichael schumacher 's son , mick , will make his formula 4 debut this weekend . the 16-year-old will drive under his own name for the first time in his career . schumachers will race in the adac formula 4 series in germany . schumsacher jnr finished second in the world , european and german kart championships last season .\njoe allen admits the challenge of playing for liverpool was sometimes too big for him at times . the midfielder has impressed recently with steven gerrard no longer the first name on the teamsheet . allen believes liverpool have performed well against the big teams in the last two seasons . liverpool face arsenal in the premier league on saturday .\nmike holpin , 56 , has three # 450 ps4 consoles and three 48in tvs . he claims he has received # 675,000 in benefits and other costs . his 40 children by 20 women have cost the taxpayer # 4.3 million in benefits . 16 of his children were taken into care by social services .\nthe alarm failed at the former president 's houston residence in september 2013 . it took until december 2014 for the secret service to install a new alarm system . the oversight was revealed in a report by the department of homeland security office of inspector general . it came despite an agent 's recommendation in 2010 that the alarm be replaced because it ` had exceeded its life cycle ' the request was denied for an unknown reason . bush tweeted that he and his wife have ` great respect ' for the agency .\nnewcastle boss john carver will strip fabricio coloccini of the captaincy this summer . carver says he will give the armband to daryl janmaat , should he remain at the club . coloccinis has been captain since 2011 but will be stripped of the honour .\nargentina 's esperanza base recorded a temperature of 63.5 degrees fahrenheit on march 24 . the temperature is possibly the highest ever recorded on antarctica . a u.n. agency is setting up a committee to collect relevant evidence . the committee will make a recommendation to the world meteorological organization .\nthe cat is the muse of chanel creative director karl lagerfeld . choupette is a three-year-old birman cat and the pride , joy of lagerfield . she has her own six-strong team at her beck and call to cater for her faddy diet . choupeette has over 100,000 followers on twitter and instagram .\nchurch of england plans to use ancient spring water to heat the abbey . engineers are digging 13 ft -lrb- 4 metres -rrb- below ground to determine feasibility . the idea is to divert warm water from the roman baths into a network of pipes . the system would heat the abbey using waste water from roman baths . the scheme would be the world 's first natural underfloor heating system . it would also help the ab abbey reconnect with the city 's roman roots . the project is being funded by the church of england . it is expected to cost # 18million and will be completed by 2018 .\nkingsley burrell , 29 , was arrested in birmingham city centre in march 2011 . he called police to say he was being threatened with a gun while out shopping . but cctv showed no armed men had approached him , and he was sectioned . mr burrell died four days later at the queen elizabeth hospital , birmingham . his sister kadisha brown-burrell told inquest he was handcuffed for six hours . she said he was also denied access to a toilet , and was punched by officers .\nmartina hingis was defeated 6-4 , 6-0 by agnieszka radwanska in the fed cup . hingis made her first tour-level singles appearance for eight years . the former world no 1 was playing for switzerland against poland .\nsadie the german shepherd was filmed at home in alberta , canada . the six-year-old pup switched on an electric keyboard with her nose . she then sat down to play some tunes , before taking a bow . to date the video has been watched more than 12,000 times .\nrosie huntington-whiteley , 27 , models new lingerie range for autograph . she follows a strict clean and lean diet to maintain her toned body . her new range is full of mix and match pieces featuring sophisticated hues . rosie is also starring in the soon-to-be-released mad max - fury road .\nbob greene was a copygirl at the chicago daily news in 1945 . he says he was assigned to the city desk when the news of roosevelt 's death broke . he recalls the editors rushing to the library to get the story on harry s. truman . greene : the story was quickly typed up and sent to the rewrite desk .\nreserve deputy robert bates turns himself in to authorities . he is charged with second-degree manslaughter in the death of eric courtney harris . video shows bates announcing he is going to deploy his taser . he then shoots harris in the back with a handgun . the sheriff 's office says a sting operation caught harris illegally selling a gun .\namerican chemical society explained the science behind avengers . it looks at the composition of iron man 's suit - said to be a gold-titanium alloy in one of the movies - and captain america 's shield . the video also explains the science of super-healing abilities .\nthai wildlife officials have begun a headcount at wat pha luang ta bua . the temple is home to 147 tigers in the care of monks . a vet complained earlier this week that three tigers had disappeared . the tigers were led out in groups of four and tied to a tree .\nmanchester united defeated manchester city 4-0 in the derby at old trafford . ashley young , marouane fellaini , juan mata and chris smalling scored for louis van gaal 's side . angel di maria and radamel falcao were left on the bench by van gaal .\nat least 18 people have died in an avalanche on mount everest sparked by a powerful 7.8 magnitude earthquake in nepal . the avalanche buried part of base camp , raising fears for the safety of hundreds of climbers who are in the area . a number of britons are among those who have not been heard from since the quake .\nleicester tigers centre manu tuilagi is taking his recovery ` week by week ' tuilaga has been out of action since october with a groin injury . england centre missed the autumn internationals and the rbs 6 nations . the 23-year-old is hoping to be back in time for the world cup .\na secret service member was arrested friday in washington . arthur baldwin , 29 , was arrested at a woman 's residence in southeast washington . he is charged with first-degree attempted burglary , a felony , and one misdemeanor count for destruction of property . he has been placed on administrative leave and his security clearance has been suspended , the secret service says .\naudrey nethery has diamond blackfan anemia , a life-threatening bone marrow condition that affects her body 's ability to circulate oxygen . her parents are posting videos of her dancing to raise money for the diamond blackfan anemia foundation . the videos have already been viewed more than 2.8 million times . audrey was also born with a hole in her heart and a cleft palate .\nreal madrid beat eibar 3-0 at the bernabeu in la liga on saturday . cristiano ronaldo scored his first free-kick in over a year to put madrid ahead . javier hernandez doubled real 's lead with a header in the 31st minute . manchester united loanee jese scored his fifth goal in his fifth game for the club .\nnathaniel clyne is yet to agree a new deal at southampton . the england right-back is yet-to-sign a new contract at st mary 's . the 24-year-old is expected to leave the club at the end of the season . manchester united , chelsea and liverpool are interested in signing the defender .\nlisa and james tuttle moved to geldeston in norfolk in 2005 with their five children . they thought their big house with a large garden would be a peaceful and idyllic family home . but their happiness was shattered in 2014 after their dogs marley and lily were shot . they escaped on to their neighbour 's farmland where they were accused of killing his birds .\nthe south korea ambassador is now wearing a dynamic exoskeletal brace . mark lippert , 42 , suffered deep gashes to his cheek and hand in the attack . he was assaulted by knife-wielding nationalist kim ki-jong at breakfast function . the envoy required 80 stitches to the wound on his face and two-and-a-half hours of surgery .\nfranco di santo has scored 13 goals in 22 games for werder bremen this season . the argentine striker has been in superb form for the bundesliga side this season . sunderland are interested in signing the 26-year-old striker . the black cats are trailing the former wigan striker in a # 8million bid .\neurope 's sentinel-1a satellite captured images of kathmandu before and after earthquake . the information has been transformed into an interferogram , which shows the land 's deformation . mount everest shrank by one inch due to land shaking in nepal . an area 75 miles by 30 miles has lifted up 3.2 ft -lrb- 1 metre -rrb- from the ground .\nephedra foeminea waits for the full moon to bloom and produces a sugary droplet to attract pollinating insects . the non-flowering relative of conifers secretes tiny droplets of sugary fluid to attract insects . when a nocturnal butterfly or insect lands on one of the transparent orbs at night , the pollen it 's carrying is used to fertilise the seed . researchers from stockholm university noticed the droplets at the same time of the year having conducted four years of research . it ' 's unknown how the plant ` knows ' when it ` knocks ' the moon out of its cycle . but they can detect different intens\nharry panayiotou has won the barclays premier league u21 player of the month award . the leicester city striker scored three goals in march . panayiotsou also netted a hat-trick for st kitts and nevis on international duty . the 20-year-old is looking to make an impression under nigel pearson at the king power stadium .\nsabeen mahmud , a prominent women 's rights activist , was shot dead on friday . her car was sprayed with bullets and her sandals remained in the footwell . the exterior of the white vehicle was left stained with her blood . police have declined to speculate on a motive for the killing .\nkorea 's buddae-jjigae is a traditional `` army stew '' made with canned meat . the stew dates back to the scarce years of the korean war . anthony bourdain will feature the dish on `` parts unknown '' on sunday , april 26 .\nsouthampton left back ryan bertrand has been in superb form for the saints this season . he has made 26 premier league appearances since joining from chelsea . the 25-year-old has also forced his way back into the england squad . bertrand took to instagram to post a snap of himself and his daughter .\npatrick bamford has scored 19 goals on loan at middlesbrough this season . he won the championship player of the year award on sunday night . the chelsea loanee hopes his long-term future lies at stamford bridge . bamford hopes to be part of gareth southgate 's england under 21 squad .\ncoachella festival in indio , california , attracts nearly 580,000 attendees . but some of the outfits paraded around the sunny campus were woeful . from the couple who wore matching american flag leotards to the man who sported a loincloth over speedos , could this be the worst year for coachella street style yet ?\npilates instructor cassey ho , 28 , has been bombarded with cruel comments on her youtube channel from people who say she is too fat . the fitness expert has released a video in which she shows viewers how she has been affected by the comments . she strips down to her underwear and manipulates her body to show how she feels about her appearance .\nmartin and jessica castillo lost their wedding ring while scuba diving in playa del carmen , mexico , in february 2013 . they were reunited with it in september 2014 , after massachusetts resident daniel roark , 22 , started a facebook campaign to find the ring . the couple renewed their vows in the same town as their honeymoon . mr roark was invited to serve as the couple 's ` padrino de anillo ' or ` godfather of the ring '\nabba star bjorn ulvaeus has unveiled his new musical project . mamma mia inspired eatery will open in stockholm in january 2016 . the restaurant is situated near the abba-museum in central stockholm . the musical will include all the abba classics from the show .\nwin a pair of nike magista obra boots signed by england and manchester city goalkeeper joe hart . the lucky prize winner will also receive a gillette fusion proglide razor and shaving foam . the competition closes on sunday april 19 . click here to be in with a chance of winning this special prize .\nthe prime minister will set out the conservative case for people keeping more of their own money -- because they ` know best ' how it should be spent . he will make a bold argument for continued lower taxes , with less spent on ` bureaucracy ' and ` crackpot government schemes ' treasury analysis shows the changes will benefit 14million working households to the tune of # 17 a month . middle income households earning around # 23,000 a year will benefit the most , and the top ten per cent of earners the least .\nsunderland boss dick advocaat has concerns about the strength of his players . the black cats are two places and three points above the relegation zone . advoca at has never been relegated during 28 years as a manager . sunderland face stoke city on saturday and arsenal and chelsea next .\njessica brown and zakk satterley were stuck in traffic on the i-65 in louisville , kentucky , on thursday . they were waiting for president obama 's motorcade to pass , but he had been caught up in washington d.c. . a nurse sitting in her car nearby saw something was happening up ahead and ran over . she helped deliver the baby boy , arley , safely . both mother and baby are doing well .\nmartin richard , 8 , was the youngest victim to die in the april 15 , 2013 attack . his family and others gathered at the site to unveil four memorial banners . they were joined by survivors and boston officials including mayor marty walsh and governor charlie baker . the city has declared april 15 ` one boston day ' and urged residents to perform random acts of kindness . at 2.49 pm , a moment of silence was held to mark the moment the first of two bombs exploded near the finish line two years ago . the surviving bomber , dzhokhar tsarnaev , is currently on trial for the bombings .\nsearch for missing flight mh370 will be extended . officials from australia , china and malaysia decided to double the search area . the expanded search will ` cover the entire highest probability area identified by expert analysis ' the mission to recover the plane could go on for another 12 months . the airplane , which spectacularly vanished last year with 239 people on board , is believed to have crashed in the indian ocean off australia 's west coast .\njames ward-prowse is a rising star at southampton . the midfielder has starred for england u 21s and saints . ward-prowse scored the winner in england u21s ' 3-2 win over germany . he admits he was up until 4am thinking about his goal on monday night . the 20-year-old has been given tips from ronald koeman .\na heritage-listed 1830s colonial georgian residence with three storeys and six bedrooms is set to sell for $ 4million . whaling captain george grimes built the home along with a row of early 1840s terraces depicted in artist conrad marten 's work in 1843 . the 416sqm inner city block property boasts stunning views of the sydney harbour bridge from the front lacework terrace . the sandstone and brick home has a formal lounge and dining room with original fireplaces , high ceilings and an open-plan kitchen .\nband have not paid back # 20million they owe the taxman . gary barlow , mark owen and howard donald were told to pay back cash 11 months ago . taxpayers ' alliance has criticised delay , saying band are dealing with hmrc . group embark on latest uk tour tomorrow , which will include shows in scotland and wales .\nbritish isis fighter omar hussain makes videos about life in syria . he has warned ` sisters ' to choose wisely when searching for a spouse . hussain , 27 , from high wycombe , regularly posts videos on social media . he accuses fellow jihadis of running away from the frontline in syria .\npolice have arrested a 21-year-old man on suspicion of murder . the man has been named locally as 54-year old james gregoire . mr gregoires was killed following a late night ` altercation ' in clacton . a second man was seriously injured in the brawl . a large area of clact on 's town centre has been cordoned off .\ncesc fabregas scored a late winner to give chelsea a 1-0 victory over qpr . fabrega 's goal was the blues ' first shot on target in the game . the win moved jose mourinho 's side seven points clear at the top of the table .\na new way of talking about climate change is emerging , linking it to public health issues . president obama joined u.s. surgeon general dr. vivek murthy for a roundtable discussion . the world health organization estimates climate change will cause an additional 250,000 deaths per year .\nmarli van breda was struck several times on the head and her throat was slashed in an axe attack in her family 's south african home in january . the 16-year-old suffered severe brain damage and is now suffering from retrograde amnesia . her extended family said in a statement on sunday that she is able to walk and talk and still has her sense of humour . marli 's father , mother and eldest brother were killed in the brutal attack . her other brother henri , 20 , escaped with light injuries and rang police to report the deaths .\namanda holden reveals that her sister is trapped on mount everest after earthquake . tv presenter said her sister , debbie , had managed to contact family to say she was safe after 7.9-magnitude quake struck nepal on saturday . she said debbie had not yet reached everest base camp , where a deadly avalanche hit , because she was ill and had stopped off to recover .\nofficial : washington is `` not putting a timeframe on '' a possible invasion of mosul . the iraqi city was the target of an attack by isis last year . a u.s.-led military coalition has carried out airstrikes in the area . officials say the campaign for mosul has begun . but they say a ground assault is not imminent .\nhollywood-inspired experiment to help dementia patients is taking place in new york . residents are woken up each morning with a video recording from a loved one . the hope is that the videos will ease their confusion , forgetfulness and agitation . idea borrowed from 2004 adam sandler film 50 first dates .\niain duncan smith says zero-hours contracts should be re-named ` flexible hours ' work and pensions secretary says only 2 % of workforce have them . future of zero-hour deals is one of key issues of election battle over jobs . labour pledges to ban exploitative deals , while unions want them scrapped .\nmichael phelps won 100 metres butterfly at the arena pro swim series in arizona . the 18-time olympic gold-medallist was suspended by usa swimming for failing a drink-driving test . phelps is aiming to compete in a fifth olympics next year in rio de janeiro .\nderek lawrenson gives his predictions ahead of the 79th masters at augusta . the tournament kicks off on thursday and will be played from the first round . dustin johnson is the favourite to win the tournament . rory mcilroy will be hoping to complete a grand slam at augusta on sunday .\ntether unlimited has revealed a system of robo spiders that can construct solar panels , trusses and other parts of spacecraft in orbit . system uses arachnid-like robots to construct large objects in orbit around the earth by ` spinning ' building material into shape . spiderfab could cut construction costs by only launching raw materials such as carbon fibre into orbit .\ntottenham are in talks over a bumper new contract for nabil bentaleb . the algerian international 's current deal expires in the summer of 2018 . clubs from across europe are monitoring the situation at white hart lane . bentaleb 's new deal is likely to see his wages rocket to around # 35,000-per-week .\ngwyneth paltrow tweeted a photo of her food budget for one week on food stamps . she will spend just under $ 30 on groceries . the #foodbanknycchallenge is an attempt to live on a food stamp budget for seven days .\nengland beat st kitts and nevis invitational xi by an innings and 59 runs . alastair cook scored 95 and jonathan trott made 72 . england face the west indies in the first test in antigua next week . ben stokes took three wickets in five balls for england .\nchinese fireman xu weiguo was filmed climbing out of his apartment window to grab the woman 's arm . he had been trying to talk her down after she had threatened to jump from a 10-storey tower block in shanghai . she was eventually bundled back through the window kicking and screaming by the firemen before being restrained by police officers .\nhartlepool united fans are planning to dress up as bob marley for carlisle game . kick it out have warned carlisle united to refuse entry to any fans who decide to ` black up ' for the final league two game of the season . the anti-racism body say they have acted on complaints from some hartlepool fans .\ncnn reported tuesday that russian hackers reportedly accessed president obama 's non-public schedule . the white house acknowledged suspicious activity on its unclassified network in october 2014 . the breach prompted system shutdowns and security upgrades . a six-month investigation into the breach reportedly uncovered evidence pointing to hackers working on behalf of russian president vladimir putin 's government . the hackers wormed their way into the white house system by breaching first the state department 's network .\nrobert durst was indicted wednesday on the two weapons charges that have kept him in new orleans . his lawyers say he wants to go to los angeles as soon as possible to face a murder charge there . a grand jury charged durst with possession of a firearm by a felon , and possession of both a firearm and an illegal drug : 5 ounces of marijuana . durst 's attorneys could not be immediately reached for comment .\naaron schock , 33 , resigned from the house of representatives last month . he attracted scrutiny for his lavish lifestyle and spending habits . his office was redecorated in the style of downton abbey . marshall county board voted to send a bill for $ 76,000 to schock . the county wants him to promise to pay for this summer 's special and general election costs .\nfootage shows group of masked fighters in desert training in yemen . the group , called soldiers of the caliphate in yemen , claims to have established a ` caliphate ' in the country . the location of the video , released on friday , has yet to be confirmed . but it is claimed to have been filmed near the yemeni capital , sanaa .\nenvironment agency says it has a legal duty to protect water voles as an endangered species . # 135,000 spent trapping and moving 55 of the creatures from somerset levels . the voles were moved to new riverside homes in hampshire and cornwall . residents abandoned their homes after rivers burst their banks following years of insufficient dredging .\na silicon valley-based start-up is offering an at-home dna saliva test . called color genomics , it is priced at just $ 249 -lrb- # 167 -rrb- it tests for mutations in brca1 and brca2 , along with 17 other markers . all are linked to an increased risk of breast and ovarian cancer .\nliverpool have not won a trophy since the carling cup three years ago . the fa cup represents their last chance of silverware after a disappointing season . liverpool face blackburn in the fa cup sixth round on wednesday . brendan rodgers ' side are currently fourth in the premier league .\n19-month-old rosannah gundry has a seven kilogram cancerous tumour in her belly . she was diagnosed with stage three neuroblastoma cancer in december last year . the football-sized tumour is pressing against her spine and vital organs . her family is seeking treatment in the united states in the hope that it will shrink the tumour .\nthree leaders ' wives were on parade yesterday , marching across the country in support of their men . samantha cameron , justine miliband and miriam clegg proved once more that they are the ones who wear the trousers . samantha and justine marched out in almost identical uniforms ; dark slacks and blazers , paired with crisp shirts and sensible shoes .\ncher lair from apex , north carolina , did not know the sex of her baby and gave the scan results to a baker . she and her husband , stephen , had given up on ever having a daughter . lair is set to have her seventh child in august .\nmother-of-two louisa steckenreuter was diagnosed with osteosarcoma last year . the 35-year-old is now trying to raise $ 100,000 to try a new cancer drug called keytruda . the drug works differently to chemotherapy , which attacks all the cells in the system , even healthy ones . ms steckanreuter said she hopes the drug will give her more time with her children , darcy , 13 , and tilda , 2 .\nkenya has bombed two al-shabaab camps in somalia , a source said today . the bombings are the first major military response to last week 's attack . gunmen killed 148 people on thursday when they stormed a university campus . kenyan elite troops were called in to aid in the pre-dawn massacre . but they did not arrive until just before 2pm , local media claims . one of the four gunmen responsible for the mass-murders has been identified as a lawyer son of a kenyan government official .\nthe images were taken by a new york teenager who goes by the name of dark.cyanide . he climbs up some of the city 's tallest buildings without ropes or harnesses , before sitting on precarious ledges . many of the 18-year-old 's vertigo-inducing images show his feet dangling hundreds of feet above the city streets below . he says he is fascinated by the views and different vantage points he comes across from the rooftops of new york .\ntoya graham , a single mother-of-six , was caught on camera whacking her son michael , 16 , and dragging him home from the riots . she said she ` just lost it ' when she saw her son carrying a rock and walking towards police officers . the baltimore police chief said : ' i wish there were more parents out there who took charge of their kids tonight ' graham said on wednesday : ` my pastor is going to kill me '\nformer prime minister speaks out about his multi-million pound earnings . insists he is not in ` the league of the super-rich ' and is ` very lucky ' insists the money he generates pays for the ` infrastructure ' around him . claims he has left british politics behind and is now working at a ` global level '\nyoungsters are being brainwashed into fighting for a separate white state . they are pushed to their physical limits with assault courses and self-defence lessons . then subjected to vile racist indoctrination by far-right afrikaner resistance movement . more than 2,000 teenagers have attended the awb camp in the last two years .\nbbc apologises after hoaxer appeared on world service programme . godfrey elfwick was recruited via twitter to talk about star wars films . he said the franchise was full of social problems and was anti-women . he also claimed that darth vader listens to rap music . but the bbc has now said that the guest was not actually a fan of the films .\njaclyn pfeiffer , 29 , and kelly bardier , 33 , have been together since october . they worked at the aloma methodist early childhood learning center in orange county , florida . the two were fired after the director heard rumors about their relationship . the church said they ` felt the need ' to let both women go . the couple are now suing the church for firing them .\nuntil two years ago roxy wallace was a bodyguard called bob . bob , who lived a reclusive life , was plagued by depression . condition made it impossible to bond with his son william , nine . roxy , 50 , struggled with depression after secretly wanting to live life as a woman . she told her wife jo , 44 , about her feelings two years last . with jo 's full support , roxy started on journey of gender reassignment .\nhuman rights watch interviewed 20 yazidi women and girls who escaped isis . they say the brutal islamist group is guilty of war crimes and crimes against humanity . women and children as young as eight have been abducted and raped . they were also forced to marry and convert to islam , the study says . one child said she was raped by seven different men in three days . another said she tried to kill herself to avoid being raped again .\nvandal smashed the front window of foxtons branch in brixton , south london . he then spray painted ` no evictions ' and ` yuppies ' on the estate agent 's housing ads . thousands of people turned up for the event organised by the reclaim brixton group . they were demonstrating against rising house prices in the trendy area . one man has been arrested on suspicion of criminal damage , police said .\nengland 's top three are exceptional players but they are very one-paced . the west indies bowling was so disciplined on the first morning of the first test . england 's top order will be exposed against better teams like australia if they crash to 34 for three in the first session as they did here . ian bell and joe root put on 177 runs for the fourth wicket on day one in antigua .\npaddy power backtracks after tweeting that newcastle has suffered more beatings than unarmed black man . the tweet alluded to recent controversial incidents in the united states . the company is well-known for its use of publicity stunts . paddy power has since deleted the tweet , but social media users have condemned it .\npolice add attempted murder to list of charges against nyia parler . she is accused of leaving her quadriplegic son in a philadelphia park for days . parler can not be extradited until she completes unspecified `` treatment , '' police say . a man walking through the woods found the man friday .\nphotographer conor mcdonnell has amassed over 25,000 followers on instagram . his most popular post , a photo of kim kardashian and kanye west at their wedding , has 2.4 million likes . mcdonnell shares his top tips for growing your instagram fan base . from finding the right lighting to which filter to use , play the videos below .\nchristine baranski and laurie metcalf will return to `` the big bang theory '' on thursday . the pair will play the mothers of leonard and sheldon on the hit comedy . the tom selleck drama `` blue bloods '' has its season finale this week .\nbook will be called the shepherd 's crown and will feature witch tiffany aching . she has featured in four of sir terry 's books to date , first appearing in the wee free men in 2003 . the novel , which is based in the fictional realm of discworld , will go on sale in september .\nwest ham will be moving to the olympic stadium in 2016-17 . the hammers ' current season tickets cost # 620 at upton park . the club 's vice-chairman karren brady announced a reduction in prices . the move is being offset against increased television revenue . manager sam allardyce says filling the stadium is the most important thing for any premier league club .\ninstagram users can now search for hashtags using emoji on the app . when they try to search for the eggplant emoji , no posts appear . this is even though posts have been tagged with it in the past . the anomaly was discovered by katie notopoulos from buzzfeed . it is believed to be because the emoji is commonly used to represent male genitalia . this means it could be attached to images containing nudity . but searches for other emojis such as the gun and needle and syringe are allowed . instagram told mailonline it is not commenting on the egg plant anomaly .\nchislehurst home was built as a cold war bunker for government officials in the event of a nuclear attack . the property , known as the glass house , has been transformed into a contemporary luxury home with a swimming pool and atrium . it took two years to completely renovate the property as workers were forced to carve windows and doors out of five foot thick concrete .\nceltic beat rangers 2-0 in the glasgow cup final at hampden . josh kerr and mark hill scored the goals for the hoops . rangers keeper robby mccrorie made two mistakes in the match . celtic have won the trophy four times in eight seasons .\nstephen hawking has sung monty python 's galaxy song . the song is being released digitally and on vinyl for record store day 2015 . it is a cover of the song from 1983 film montypython 's meaning of life . professor hawking , 73 , appeared on film alongside professor brian cox .\nluke shambrook was found alive after five days in the bush . he was found by police helicopter in the fraser national park north-east of melbourne . the 11-year-old was found 3km from where he first went missing on friday . luke was found in thick bushland off skyline road , eildon , 3km away from campsite . he is suffering from dehydration and hypothermia but has been reunited with his parents .\ngoogle 's patent details a cloud-based system where a personality could be downloaded to a robot , in the same way one might download an app . the personality could replicate the robot 's owner , ' a deceased loved one , ' or ' a celebrity , ' . friends will even be able to clone their robots and swap aspects of its personality . google already owns several firms developing robotic technology , including atlas .\nbrazil striker hulk dressed up as the superhero at the avengers premiere . the 28-year-old recently signed a new long-term deal at zenit st petersburg . the striker has netted 15 goals in 33 appearances for the russian giants . zenit did not provide any financial details of the new contract .\nlucian faggiano , 60 , bought a building in lecce , puglia , and planned to open a trattoria . but renovations were put on hold when he discovered a toilet on the site was blocked . in a bid to fix the toilet he dug into a messapian tomb built 2,000 years ago , a roman granary , a franciscan chapel , and even etchings thought to be made by the knights templar . the search for the pipe began at the turn of the millennium and revealed a subterranean world dating back to before the birth of jesus .\naaron hernandez , a former nfl star , was convicted of murder in the death of odin lloyd . ruben navarrette : hernandez was arrogant in court , but that 's not the point . he says the nfl and patriots did everything right in how they handled the case . navarrete : there was no way to predict hernandez would end up a murderer .\nana charle , 36 , was shot dead on monday evening in the bronx . west spruill , 39 , has been charged with murder . he allegedly tried to rape charle at gunpoint and shot her as she ran away naked . charle lived in queens with her two young daughters .\nmisty machinshok , 33 , jailed for 15 to 30 years for the abuse in pennsylvania . she ` coached ' her husband gary machins hok , 29 , on best positions to conceive . he also admitted to sexually assaulting her 11-year-old sister .\ngilberto valle , 30 , was convicted of conspiring to kidnap , torture , and eat his wife and other women online . he was sentenced to time served in november for illegally accessing a federal database . the former new york city police officer was cleared of the charges in july . in the hbo documentary thought crimes , valle talks about his 2012 arrest and the claims that allegedly plotted to kidnap and eat women online in a ` death-porn ' community .\nsally betts , the mayor of waverley , wrote a reference for luke lazarus . the liberal councillor asked for him to be spared jail for raping a teenager in an alleyway . she said she did it ` out of loyalty to the family ' and supported him . now she is developing a program to teach young women about ` risky behaviour ' lazarus was jailed for at least three years on march 27 for raping an 18-year-old at his father 's soho nightclub in sydney .\nthe european parliament is set to vote on whether alcoholic drinks must include calorie counts on their labels . but european winemakers say the new rules would lead to a rise in production costs . they fear a fall in sales if consumers realise that a bottle of red wine has the same amount of calories as six digestives .\nelliot kear has spent most of the year playing rugby union for london welsh . the 26-year-old winger or full-back has spent the last year playing for bradford . kear moved to premiership rugby from bradford last season . he will return to the championship with london broncos .\nliverpool winger raheem sterling has rejected a # 100,000-a-week deal at anfield . chelsea , arsenal and manchester city are all said to be interested in sterling . michael owen , like sterling , started his senior career at liverpool but eventually moved on to real madrid in 2004 . owen feels that sterling is in a great place to develop , having done the same during his time at anfield .\nitalian political candidate stefania la greca has posted dozens of pictures of herself in skimpy bikinis . the 36-year-old is running for local elections in campania , southern italy . she is standing for the lega sud ausonia party which wants independence for the region . but she has defended her pictures and denied she was using her looks to get votes .\nu.s. ambassador mark lippert was stabbed in the face and jaw in seoul last month . the attacker , kim ki-jong , has been charged with attempted murder , a court official says . kim 's trial must begin within 14 days of receiving the indictment , the official says , according to south korean law .\nseven people , including illinois state university associate men 's basketball coach torrey ward , died . ward and deputy athletic director aaron leetch were on board a cessna 414 , authorities say . the plane was coming back from the ncaa final four championship game in indianapolis , an isu spokesman says .\nin 2012 , a gunman opened fire at a midnight movie showing in aurora , colorado . twelve people were killed and 70 injured . shooter james holmes is on trial for 165 counts , including murder and attempted murder . survivors and those who lost loved ones will attend at least part of the trial . the trial begins monday .\njolyon palmer will drive in every friday practice session this season for lotus . the 24-year-old will be given the chance to prove himself to the team . the gp2 champion is determined to claim a place in formula one next year . palmer is the son of former f1 driver jonathan palmer .\nchelsea manager jose mourinho says he is unconcerned by possession stats . mourinho 's side had just 29 per cent possession against manchester united . eden hazard scored the only goal of the game in the first half . chelsea are now 10 points clear at the top of the premier league .\nmanchester city under 21s lost 2-1 to west ham united at upton park . an own goal and a dan potts header gave the hammers a two-goal lead . olivier ntcham pulled one back for city but it was not enough . patrick vieira 's side are preparing for the fa youth cup final .\naudrey hepburn voted the most stylish brit of all time . princess diana came second and david beckham third . kate middleton , twiggy and queen elizabeth i also in top five . victoria beckham comes in at number nine , while kate moss is in tenth .\nprime minister this morning faced first serious criticism of the campaign . tory donors rounded on party 's lacklustre message and failure to pull away in polls . but defiant mr cameron pledged to continue focussing on bread-and-butter issues like jobs , business and childcare .\ndeep brain stimulation is already used to treat parkinson 's disease . now researchers have found it can be used to improve memory in humans . device is inserted into the brain through holes drilled in the skull . it sends electrical impulses to specific parts of the brain , causing new brain cells to be formed . tests on rats found the therapy improved their powers of recall .\ncharlie austin signed for queens park rangers in the summer . he was ignored by joey barton on his first day at the club . the pair have since become good friends . austin is currently fourth in the premier league goalscoring charts . qpr take on west brom on saturday before travelling to aston villa .\nbayern munich thrashed porto 6-1 in the champions league on tuesday night . the win takes their goalscoring tally to 115 for the season . pep guardiola 's side have five bundesliga matches to play and could reach the final in berlin . bayern have scored 141 goals so far this season , an average of 2.61 per game .\ntemperatures could reach 23c -lrb- 73f -rrb- in the south this week on unseasonably warm week . bookmakers have cut odds on this spring being the warmest on record to 4/6 . ladbrokes is offering 2/1 on this summer being the hottest ever .\nglenn murray scored crystal palace 's winner against manchester city on monday night . the cumbrian striker scored a hat-trick against gerard pique in 2005 . pique was playing for manchester united 's reserves at the time . murray now boasts the fifth-best goals-per-minute ratio in europe 's top five leagues .\nsteven gerrard was seen at boujis nightclub in kensington on sunday night . the liverpool captain spent the evening in the vip room with friends . liverpool lost to aston villa in the fa cup fourth round at wembley . gerrard will end his final year at anfield without a trophy .\nfa have formed a concussion experts panel to help make football safer . eight medical professionals will advise the fa on what can be done . jeff astle died in 2002 after suffering a number of heavy blows to his head . the fa 's head of performance services dave reddin believes the panel will help take safety in the sport to the next level .\nmothers and fathers should use ` carrot and the stick ' approach , says judge . sir james munby says parents should confiscate mobiles and gadgets . he said ` threats falling short of brute force ' are suitable way to get their way . sirjames gave advice in case of two teenage girls who have refused to see father for six years .\nluca railton , 11 , was born with bones missing from his legs . he has the rare condition bilateral tibial hemimelia , which affects just one in three million people . at 10-years-old doctors said nothing more could be done for him . they recommended he have his right leg amputated or fused straight . but his family refused to give up and found an american surgeon . dr dror paley assured luca 's parents his leg could be saved . luca underwent a series of operations , including one to break his right legs . now , luca is walking unaided and can even play cricket and tennis .\njason cotterill sent explicit photo of mother to her daughter , 18 . he also threatened to post a sex video of the mother on facebook . the 42-year-old bombarded victim with abusive messages over the internet . she said her life became a living ` hell ' and she considered suicide . cotterll was jailed for 12 weeks and banned from contacting woman again .\ncristiano ronaldo showed off his skills during real madrid training . the world player of the year was wowing karim benzema and luka modric . real face atletico madrid in the champions league quarter-final first leg on tuesday . carlo ancelotti 's side are seven points clear of their rivals in la liga .\nrobert bates , 73 , killed eric harris , a suspect in a police sting operation . a tulsa world report says supervisors were told to forge his training records . the sheriff 's office denies the allegations . bates ' attorney says the accusations are based on an affidavit . . the sheriff 's office has said bates was properly trained .\nlib dem danny alexander released details of what he claimed are secret plans to cut child benefit and child tax credits . prime minister ` flatly rejected ' the plans , claiming they were drawn up by civil servants on the orders of mr alexander . lib dems hit back , claiming mr cameron himself had asked officials to examine ways to curb access to benefits .\naston villa beat tottenham hotspur 1-0 in the premier league on saturday . christian benteke scored the opening goal of the game in the 35th minute . carlos sanchez was sent off for the visitors in the final exchanges . jan vertonghen missed out on the game through illness .\nthe skeleton of a camel was found in an austrian cellar . it is the first intact camel skeleton found in central europe . genetic analysis shows the beast was a bactrian-dromedary hybrid . it was most likely used as a riding and transport animal by the ottoman army during the siege of vienna in 1683 .\narsenal defeated reading 2-1 in the fa cup semi-final on saturday . the gunners will face manchester united in the final at wembley on may 30 . alexis sanchez 's low shot squirmed through the legs of reading goalkeeper adam federici in extra time . arsenal boss arsene wenger accepted his side were ' a bit lucky '\nliverpool have agreed a new three-year kit sponsorship deal with standard chartered bank . the deal will run through to the end of the 2018-19 season . standard chartering signed up as liverpool 's main sponsor in july 2010 . the financial terms of the agreement remained confidential .\nborussia dortmund defender mats hummels is considering his future . the germany international has been linked with manchester united . franz beckenbauer believes hummela is at the right age to leave dortmund . hummels has demanded a stronger dortmund team for next season .\nrenault suffered two engine failures in sunday 's chinese grand prix . red bull 's daniil kvyat and toro rosso 's max verstappen were forced to retire . red bulls owner dietrich mateschitz threatened to pull out of formula one unless renault raised their game . renault boss cyril abiteboul says there will be ` no surrender '\nchampionship leaders birmingham city were two goals down after 21 minutes . bournemouth fought back to draw level with a callum wilson goal . steve cook and yann kermorgant scored for the cherries in the second half . charlie daniels scored a late winner to seal the win for eddie howe 's side .\nnico rosberg and lewis hamilton attended mercedes ' brackley base . the pair are hoping to find a winning formula at the next race in china . rosberg was beaten by ferrari driver sebastian vettel in malaysia . mercedes boss toto wolff was surprised by vettel 's victory in malaysia .\njuventus defeated monaco 1-0 in their champions league quarter-final first leg on tuesday . ricardo carvalho was booked for a challenge on alvaro morata in the penalty area . arturo vidal scored the winner from the spot after the referee hesitated . monaco manager leonardo jardim described the decision as a ` huge injustice '\necuador 's leader rafael correa posed for picture next to boy wearing ` i 'm with stupid ' t-shirt . the 52-year-old seemingly failed to pick up the meaning of the message on the shirt . picture was shared thousands of times on social media and is now trending .\na handwritten note left by passenger ` bethanie ' to the pilot has gone viral . the note was posted by airline pilot jai dillon on twitter . it was sent in the wake of the germanwings plane crash that killed 150 people . the woman thanks the pilot and the airline for ` taking her home safely '\ned miliband faced further embarrassment after plus-sized blogger backs greens . callie thorpe signed letter backing labour leader but later withdrew support . she tweeted praise for green leader natalie bennett during the debate . labour had published letter signed by 100 people ` from all walks of life ' but plan quickly unravelled as it was revealed they were all ` working people ' one of the signatories was a benefit fraudster convicted of # 27,000 fraud .\nmanchester city need to buy more english players to meet quotas . roberto mancini was unhappy with the quality of players bought by city . city must have eight homegrown players in their squad of 25 . they have six premier league homegrown players . liverpool bought jordan henderson , daniel sturridge and raheem sterling . manchester united signed wayne rooney and luke shaw as teenagers .\npastor creflo dollar responds to critics of his campaign to buy a luxury jet . in march , a video was posted on his ministry 's website soliciting money for the jet . the gulfstream g650 sells for a reported $ 65 million . in a new video , dollar says the devil is trying to discredit him .\nthe model and actress has repeatedly said in interviews that she worked as a stunt driver on furious 7 . but a stunt supervisor on the film said lafontaine was just an extra on the set . the 5-foot-5 , 95-pound actress told a blogger during the furious 7 premiere in la last week that she raced at speeds reaching 140mph on set .\njoy webb , 17 , took her 80-year-old grandfather james drain to prom this weekend . drain enlisted in the navy in 1951 at the age of 17 and would have been serving in the korean war when his own prom happened . webb asked her principal for permission to bring her grandfather to the dance and he agreed .\ngemma , 23 , has two children under five by two different fathers . handed both infants over to her 52-year-old mother debbie when they were four months old . debbie is threatening to ban gemma from seeing the children at all . says her daughter 's constant drinking and partying is getting out of hand . also claims gemma stole an ipad from one of the children .\nformer state district judge g. todd baugh of billings was chosen for the award by the group 's board of directors . baugh , 73 , sparked widespread outrage in 2013 over comments suggesting that 14-year-old cherice moralez shared some responsibility for her rape by a teacher . baug sentenced former teacher stacey rambold to just one month in prison in the case .\nst george was a foreigner born in turkey and was a dragon slayer . ukip insists he would have been welcomed to britain because of his skills . party announced it would make st george 's day a bank holiday in england . but economic spokesman faced questions on whether st george would have welcomed by a 3rd-century ukip .\npolice in beijing have ruled the tragedy an accident . cui hongfang 's family said she was knocked over by a canadian tourist . the 73-year-old hit the back of her head on a corner of the stone wall . police decided not to charge the canadian woman after interviewing her and witnesses . she has since returned to canada .\nchelsea allowed premier league trophy to be displayed at stamford bridge for the bbc on the strict understanding that the big prize was not seen by members of the public . jose mourinho has warned players and fans to concentrate on first beating crystal palace on sunday before celebrating . leicester tigers are being provocative with their rugby world cup planning at welford road .\nade adebayo booked a trip to las vegas back in december in anticipation of the big fight . the brighton man was shocked when he got a ticket for the fight last week . he paid # 5,141.68 for the ticket and is now hoping to see floyd mayweather vs manny pacquiao . adebayan and his friends are staying at the cosmopolitan on the vegas strip .\nlaurene jobs , the widow of apple founder steve jobs , said hillary clinton has ` judgment and wisdom ' based on her public service . she said : ` it matters , of course , that hillary is a woman . but what matters more is what kind of woman she is ' clinton was blasted for her ` staged ' visit to a coffee shop in leclaire , iowa on tuesday . three young iowans were driven to the event by her iowa campaign 's political director . one of them , austin bird , is a democratic party insider who interned for president obama in 2012 .\nrory mcilroy finished fourth in the masters at augusta national . jordan spieth won his maiden major title on sunday . graeme mcdowell believes there are a lot of young players coming through . mcdowell says spieth is ` difficult to compare ' to mcilory .\nliverpool host arsenal at anfield on saturday in the premier league . raheem sterling has been linked with a move away from the club . brendan rodgers insists sterling is going nowhere . sterling has admitted he is ` flattered ' by interest from arsenal . the england international is yet to sign a new contract at anfield .\ntop 14 side clermont face saracens at stade geoffrey-guichard in semi-final . france legend serge betsen tells sportsmail where he thinks clermont will be won . betsens picks his team for the clash between saracens and clermond .\njonah willow , 12 , drew with russian grandmaster alexander cherniaev , 45 . the match lasted two hours before cherniae suggested a draw . proud dad simon scott said the chess champion was left thinking for 15 minutes after one of jonah 's opening moves .\ntottenham hotspur goalkeeper hugo lloris will miss sunday 's game against burnley . llor is recovering from a gashed knee suffered against leicester city . michel vorm will deputise for the france international . mauricio pochettino could be without striker roberto soldado .\nkevin pietersen could play in this summer 's ashes test series . the 34-year-old has not played for england since the fifth test in sydney . pietersen was described as ` disengaged ' from his team-mates . australia captain michael clarke believes pietersen can play for his country .\nfarouk younis is imam of mosque used by relatives of hassan munshi and talha asmal , both 17 , from dewsbury , west yorkshire . he said muslims must talk to other teenagers who ` might be looking at them and thinking this is the way ' the 17-year-olds are believed to have travelled to war-torn syria after going to turkey on tuesday last week .\nnasa 's mars reconnaissance orbiter spotted its robotic companion on the surface of the red planet . the orbiting spacecraft captured a shot of curiosity near the base of mount sharp in gale crater . but interestingly , the rover 's tracks are not visible - possibly because they have been swept away by the martian weather . the hirise camera is able to take images of the surface with a resolution of 10 inches -lrb- 25cm -rrb- per pixel , allowing it to see curiosity .\ncecily strong of `` saturday night live '' hosted the white house correspondents ' dinner . david bianculli : the entire affair seemed like five of c-span 's longest hours . he says there were some genuinely funny moments , but the ratio was low . bianculla : the event was a wonderfully american exercise in tolerance and good humor .\nprime minister will amend working times regulations to allow three days off . workers will get paid for volunteering or serving as a school governor . will only affect firms with 250 or more staff , including 10 million in private sector . but business leaders have criticised the move as ` heavy-handed government intervention '\neden hazard reached 100 premier league games for chelsea on sunday . chelsea star has scored 35 goals and made 25 assists in the league this season . graeme souness believes hazard should be named pfa player of the year . souness compares belgian to lionel messi and cristiano ronaldo .\nhillary clinton announced her presidential bid on sunday . social media responded in a big way . terms like `` hillary clinton , '' '' #hillary2016 , '' and `` whyimnotvotingforhillary '' were trending . some tweeted their immediate support , with one word : `` hillary ''\nbilly vunipola was cleared of intentionally headbutting mathew tait . the england no 8 had been cited for striking leicester full back matehw tait with his head . vunipola is free to face clermont auvergne in saturday 's champions cup semi-final .\nparis saint-germain travel to nice on saturday in ligue 1 . zlatan ibrahimovic , marco verratti and thiago motta all out . captain thiago silva will miss the game with a thigh injury . silva was substituted in the defeat by barcelona in midweek . david luiz is still not fully fit as he recovers from a thigh problem .\nrobert tomanovich , 55 , is under fire from neighbours in livonia , michigan . he first hung a noose from a tree and a confederate flag on a fence at his home . when neighbours complained , a second noose appeared on a tree outside his business . tomanovic has denied his actions are racist and said he simply liked the colors of the confederate flag .\nchelsea have led the premier league for 230 days since august 30 . jose mourinho 's side are on course to break the record of most days at the top of the table in a single season . manchester united led the way for 262 days during the 1993/94 season . arsenal 's invincibles of 2003/04 led the table for 216 days .\narabtrust and the federation of dundee united supporters clubs say they are ` shocked ' that 25 per cent of # 6.3 million worth of transfer fees for ryan gauld , andrew robertson , stuart armstrong and gary mackay-steven were paid in commission to unnamed parties . the supporters groups also disputed chairman stephen thompson 's alleged level of investment in the club .\nformer australia captain richie benaud has died aged 84 . he passed away peacefully in his sleep surrounded by his wife daphne and family . the cricket commentator had been receiving radiation treatment for skin cancer since november when he was admitted to a sydney hospice on thursday . prime minister tony abbott offered his family a state funeral . daphn benaud declined the offer and has reportedly settled on a private gathering with only immediate family .\nsenator rand paul shared a snapchat video of himself learning how to play poker from the infamous ` king of instagram ' dan blizerian . the 10-second video , obtained by daily caller reporter kaitlin collins , is titled ` lessons from dan bliserian ' the pair were playing liar 's poker - a game where players use dollars bills instead of cards and track the serial numbers on the banknotes .\nvideo maker captured the storm engulfing the yenisei river in krasnoyarsk . snowstorm moved at a speed of 45mph and engulfed the kommunalnyi bridge . warm weather is thought to have caused the cyclone , which swept through the city centre in less than a minute .\naaron hernandez was found guilty of first-degree murder on wednesday and sentenced to life in prison without the chance of parole . his fiancée , shayanna jenkins , sobbed and hugged the killer 's mom in the massachusetts court on wednesday . just feet away across the aisle in the packed courtroom sat her 23-year-old sister , shaneah jenkins , the girlfriend of victim odin lloyd . the once-close sisters , who shared an apartment in their native bristol , connecticut , have not spoken since it became clear that hernandez had a role in lloyd 's brutal death .\njohn and stipe are calling for equal rights for transgender inmates . they are calling on georgia to end the ` culture of violence and discrimination ' the musicians released a joint statement on tuesday . last week , the us justice department said prison officials must treat an inmate 's gender identity condition just as they would treat any other medical or mental health condition .\nandy , from sw3 , lives in one of london 's most exclusive postcodes . he has enjoyed many holidays , but also stays at travelodge and corinthia . his favourite hotel is the tryall club in jamaica , where he has stayed with family . the singer wants to surf in the arctic one day .\nscientists at brandeis university in massachusetts believe all-nighters to cram before an exam wo n't work because the process converting short-term memory to long-term is best carried out when a person is asleep . they focused their research on dorsal paired medial neurons , well-known memory consolidators in fruit flies . when the neurons are activated , the flies sleep more , but when they are deactivated , the fly 's buzzing .\njean sharon abbott , 38 , was told she had spastic diplegia , a form of cerebral palsy , when she was just four-years-old . she spent three decades suffering from muscle spasms , weakness , near immobility , as well as undergoing painful surgical procedures . at the age of 33 , she was diagnosed with dopa-responsive dystonia -lrb- drd -rrb- , a rare , yet treatable , muscle disorder . she was given a daily dose of l-dopa , which she says has cured her of almost all of her symptoms .\nfemale asian elephant became stuck in a muddy quagmire in southern china . locals discovered the animal lying on its side and raised the alarm . more than 20 villagers and police officers teamed together to free the animal . the five-ton animal was eventually dragged out of the swamp after three hours .\na total lunar eclipse occurred on saturday night in australia . sydney was predicted to miss out on the event due to bad weather conditions . brisbane , darwin , canberra and hobart were also promised slim chance of viewing the phenomenon . adelaide , melbourne and perth residents had the best night skies . the event was predicted by experts to be one of the shortest lunar eclipses of the century .\npaul sturrock was appointed as yeovil town manager on thursday . the glovers were relegated on his second day in charge . yeovils drew 1-1 with notts county in their last game of the season . garry thompson 's equaliser condemned the glovers to back-to-back relegations .\nmillie elia , an eighth-grade student from oak mountain , alabama , died following the accident at mount cheaha state park around 4.40 pm on saturday . the teenager had been rappelling on pulpit rockpark with her family and a friend when she fell .\nprince diana 's will among 41 million available to order at the click of a button . will is among archive of wills dating back to 1858 now available online . those of winston churchill and george orwell can also be seen . in her will , diana 's butler paul burrell was bequeathed # 50,000 .\nnearly 12 million parents in the united states are raising kids on their own . jody farley-berens started singleton moms to help single parents with cancer . do you know a hero ? nominations are open for cnn heroes 2015 . click here to nominate your hero .\nliverpool lost 4-1 against arsenal at the emirates in the premier league . raheem sterling started up front in a central role for liverpool . the england winger struggled to impose himself on the game . sterling was brought down by hector bellerin for liverpool 's penalty .\ndata shows 231 million international migrants live around the world . more than 7.8 million of these live in the uk , according to the united nations . u.s. has the most immigrants , followed by russia and saudi arabia . countries with the fewest number of immigrants include morocco and mongolia .\na&e , lifetime and history will simulcast a remake of `` roots '' the miniseries is about an african-american slave and his descendants . it will air in 2016 . the original had a staggering audience of over 100 million viewers . the new version is `` original '' and `` contemporary ''\ntim sherwood says aston villa striker christian benteke could be sold in the summer if he wants to leave . the 24-year-old has two years left on his contract but harbours ambitions to play in europe . sherwood said there would likely be talks over bentekes ' # 50,000-a-week contract during the summer .\nyaya toure has been criticised for his performances this season . manchester city boss manuel pellegrini has admitted he is disappointed . sportsmail revealed city will listen to offers for the ivorian . pellegrini has vowed to support toure until at least the end of the season .\nquade cooper will join toulon on a two-year deal this summer . the fly-half has won 53 caps for the queensland reds . cooper will link up with former wallabies playmaker matt giteau at the french club . toul on sunday play clermont auvergne in the european champions cup final .\njames paul harris , 30 , originally was charged with first-degree murder in the 2011 garroting death of 49-year-old james gerety . he pleaded no contest in december to involuntary manslaughter . the victim 's brother , tom gerey , called the justice system ' a joke ' after learning how long harris would serve . prosecutors allege harris kept gerety 's head for months for some type of religious practice , identified earlier as voodoo .\naround 16 million tourists visit florence every year , clogging the streets and damaging historic sites . prince ottaviano de'medici di toscana is trying to reclaim the city from mass tourism . he wants to attract visitors with its lesser known museums and smaller hotels . he has proposed adding florence to unesco 's endangered list .\ndale cregan is on hunger strike in bid to be moved to a secure psychiatric hospital . the 31-year-old was reportedly transferred to solitary confinement in hmp manchester a month ago . he was caught smuggling a mobile phone and cannabis into his prison cell . cregan was jailed for life after shooting police officers fiona bone and nicola hughes in 2012 .\nxie hong feng was found dead after falling five floors down an elevator shaft . her neighbour and property manager yang shao told police the 45-year-old had been pushed by her toddler son . ms xie had dropped her keys in the gap between the elevator and the fourth floor , and went to the property manager for help retrieving them . property manager yang said ms xie 's three-year old son pushed her down lift shaft to her death .\ncorey edwards , five , was born with a complex congenital heart defect . he endured eight traumatic open heart surgeries in a bid to save his life . his greatest wish was for his parents jemma and craig to tie the knot . the couple had been engaged for years but delayed tying the knot because of corey 's ill health . staff at bristol children 's hospital pulled out all the stops to allow his parents to marry at his bedside .\nteen 's name will be removed from israeli memorial after his family complains . mohammed abu khdeir , 16 , was beaten and burned alive by three israelis in july . abu khdeir 's family objected to his inclusion on the memorial wall . his father , hussein abu kh deir , said no one asked for his permission to put his son 's name on the wall .\na writer for the archers has revealed that keeping a bed in the studio is essential for realistic sex scenes . keri davies said having a divan is vital to make post-coital conversations sound convincing . he added that parties in the fictional ambridge are limited to nine attendees because of budgetary considerations .\ndisgruntled customers have taken to social media to complain about qantas ' new ` smart casual ' dress code . cassandra hann said she was refused entry to qant as she was wearing havianas . alex koeninger was also turned away from the perth lounge . sex worker estelle lucas saw the upside to the situation . qantas warned back in february that it would begin strictly enforcing its business class lounge dress code from april 1 .\nlania roberts , 18 , is an art student at syracuse university and specializes in self-portraits . she recently gave a speech on learning to love one 's self unconditionally . the louisville native made a new year 's resolution to lose weight and love herself more in 2012 . she lost 50 pounds , but gained the weight back over the summer .\ncharlie adam scored a wonder strike for stoke against chelsea last saturday . the potters midfielder then celebrated by imitating peter crouch 's robot celebration from england 's 6-0 win over jamaica in 2006 . crouch gave his verdict on adam 's dance on sky 's soccer am .\njuventus held to a 0-0 draw by monaco in their champions league semi-final second leg . arturo vidal scored the only goal of the game from the penalty spot in the first leg . the result sees juventus through to their first champions league final since 2003 .\none of 11 white art deco houses with private beaches on hove 's western esplanade cul-de-sac is on sale for # 4million . the cul - de-sac has been home to celebrities including david walliams , norman cook and nick berry .\nroot showed plenty of grit , as well as talent , in yet another big innings for england . root has bounced back from a difficult ashes tour to prove himself as a quality test batsman . the young batsman has been superb in his middle-order role , and should not be moved up the batting card .\njimi manuwa takes on jan blachowicz tonight in the ufc . londoner is looking to bounce back from his first defeat to alexander gustafsson . the 29-year-old believes his ` aggression and killer instinct ' will help him finish blachiewicz .\nlibyan convicted of 78 offences can not be deported from britain because he is an alcoholic . judges rejected home secretary theresa may 's attempt to deport the 53-year-old serial criminal . he successfully argued he would be tortured and imprisoned by the authorities in his homeland because drinking alcohol is illegal .\nkell brook will defend his world welterweight title against frankie gavin at london 's o2 arena on may 20 . amir khan has been lined up to fight chris algieri in new york on the same night . khan 's father shah says the fight could have been made if promoter eddie hearn had been more patient .\nsummer elbardissy was partying at beta theta pi fraternity house at wesleyan university . 19-year-old reportedly tried to reach makeshift roof deck , but fell out of third-story window . she was found lying unconscious on floor with face covered in blood , police reports say . suffered brain swelling , broken skull , hip and pelvis and lung bruising in september fall . had to relearn how to walk , swallow food , get dressed , brush teeth and wash herself . now , she has filed lawsuit against university and beta theta pi fraternity for safety violations . it alleges the college turned a blind eye to a number of safety violations at the house .\nzuriel oduwole is a 12-year-old filmmaker from california . she has made four documentaries , all of which focus on african issues . her most recent film , `` a promising africa , '' has been released in five countries . oduwole is also an education advocate .\nbob greene : robert bates , 73 , shot and killed eric harris , who he thought was a cop . he says bates was a reserve deputy sheriff who worked with a violent crimes task force . he was too old to be policing the streets , greene says . greene : police departments should not turn away from auxiliary police .\ndanny nickerson , six , was diagnosed with diffuse intrinsic pontine glimoma in october 2013 and fought through 33 radiation treatments . last july , his request for a ` box of cards ' for his sixth birthday went viral and he received more than 150,000 cards from around the world . on friday , his mother , carley nickerson shared that her ` precious sweet boy earned his angel wings ' after a ` courageous 18 month battle '\nuk 's biggest payday loans firm wonga racked up a # 37.3 million loss last year . revenues declined to # 217.2 million in the period , down by almost # 100million . city watchdog has forecast that just three or four payday lenders will be left standing following the introduction of the rules in january .\nleoie granger , 25 , lured mehmet hassan , 56 , to his death in london . she spotted him flashing a roll of # 50 notes at a casino in the west end . granger befriended the poker player and he gave her gifts and cash . but she left the door unlocked for her boyfriend and a second thug to get in . kyrron jackson and nicholas chandler , both 28 , were convicted of murder .\narsenal drew 0-0 with chelsea at the emirates on sunday . cesc fabregas was booed by the arsenal fans but given an applause . the gunners are third in the premier league , 10 points behind chelsea . arsene wenger 's side have been boosted by the signings of nacho monreal , francis coquelin and hector bellerin .\nloretta lynch was approved by a 56-43 vote , with 10 republicans joining with senate democrats to approve her . curiously absent from the final vote was texas senator ted cruz - a key opponent of lynch 's nomination . he was the only member of the senate who did not cast a vote . a copy of a cruz for president invitation later began flying around twitter that showed the gop presidential candidate had skipped town early to make an appearance at a fundraiser . the first black woman to become the top u.s. law enforcement . official , lynch , 55 , was approved on thursday .\nhannah brierley , 16 , found the snake on a bath mat hung up to dry at her home . she thought her mother was playing a prank but it was real and moved . her mother karen marriott , 40 , could n't get hold of the rscpa so called 999 . det con craig wallace , who keeps snakes , overheard the call and offered to help . he used a pillowcase to capture the snake and took it to rspca .\nnuri sahin claims arsenal tried to lure him from borussia dortmund with a ` great bid ' in 2005 . the turkish midfielder says his family did n't want him to go to england . sahin spent five months on loan at liverpool before returning to dortmund .\nufo researcher scott waring claims to have spotted an extra-terrestrial spacecraft in a 55-year-old photo from nasa 's mercury project . the image was taken by unmanned space probe mercury-redstone 1a on december 19 , 1960 . scientists say claims such as this are a simple case of pareidolia , which is the psychological response to seeing significant items in random places .\nproperty buyers expert frank valentic gives his tips on how to create a great kitchen on the block . he says a good balance between design and practicality is key to a great design . the block judges were largely unimpressed by the kitchens on sunday night 's episode .\nmajor general james post iii was fired on friday after making a treason comment . he was the vice commander of air combat command . his words to some 300 airmen at nellis air force base on jan. 10 may have had a ` chilling effect ' on some of them , convincing them not to speak with lawmakers . the incident added fuel to a controversy over efforts to retire the a-10 , low-flying , tank-killer aircraft .\ncatherine nevin was allowed out on day release on wednesday afternoon . the 62-year-old was permitted to attend an addiction studies course in dublin . she was jailed for life in april 2000 for arranging to have her publican husband shot dead . tom nevin , who was shot dead in their pub in 1996 , was shot in the head in 1996 .\narsenal are looking to strengthen their squad ahead of the 2015-16 premier league season . arsene wenger has been keeping track of several targets including petr cech , bernd leno , aymen abdennour , hector moreno and geoffrey kondogbia . the gunners are also interested in signing a holding midfielder and a striker .\nin a tweet , paddy power appeared to make light of recent police shootings . it read : ` newcastle have suffered more kop beatings than an unarmed african-american male ' the bookmakers have been slammed for their ` disgusting ' and ` deplorable ' tweet . paddy power 's advert about the outcome of the oscar pistorius trial was the most complained about advertisement in britain last year .\nsebastian thrun is the founder of the google x laboratory . he says that computers may soon be able to transmit personalities . google has already developed a system to allow robots to download new personalities . system would allow machines to download them in a similar way to an app .\nsmugglers in tripoli lure arab and african migrants with discounts to get onto overcrowded ships . an estimated 1,600 migrants have died so far this year on the dangerous mediterranean crossing . a cnn producer secretly filmed a smuggler in tripoli who offered a $ 100 discount for each syrian she brought with her .\njoel parker , 33 , was arrested for battery after threatening and disrupting the driver during the ride through st johns county , florida . he was issued a trespass warning and never allowed to use the bus again . the driver was not injured but called the police and parker was arrested .\nnew # 3.7 million ` skywalk ' observation deck in yunyang county , southwest china , has opened to the public . the cantilevered platform in chongqing has a 720 degree view from a vantage point that stands nearly 4,000 feet above sea level . its viewing area protrudes nearly 90ft from the cliff face at the longgang scenic area .\naudrey dimitrew , 16 , of virginia accepted a spot on the under-16 chantilly juniors club in november believing she would get playing time . but she was benched first two tournaments of the season and was told her skills were not up to par to compete with her team . she was offered a spot to transfer to another club but the league said she could not . the teen and her family have filed a lawsuit against the league , chesapeake region volleyball association , seeking for audrey to transfer teams .\nswansea face everton in the premier league on saturday . garry monk is hoping to continue his side 's impressive form . he believes a strong finish will put a different twist on everton 's season . monk also holds no ill feeling towards roberto martinez . the spaniard criticised swansea 's ` strange ' tactics and style of play .\njellyfish numbers have increased in the uk as the days get longer and warmer . tourism group stay in cornwall has reassured swimmers that the water is fine . not all jellyfish found off uk beaches can sting humans . for the majority of cases , stings are mild or are easily treated .\nlizzy hawker entered the 2005 ultra-trail du mont-blanc on a whim . she 's since gone on to become britain 's most distinctive female ` ultra runner ' hawker has set a new women 's world record for 24 hours on the road in the 2011 commonwealth championships .\nyoutube videos show four-month-old noah monte perfectly balancing on the palm of his father 's hand as he 's lifted through the air . as he whizzes up and down , the infant manages to keep his legs and body upright . noah apparently started performing the ` circus act ' when he was just one-month old .\nsheffield wednesday beat brentford 1-0 at hillsborough on saturday . kieran lee scored the only goal of the game in the 75th minute . the win puts the owls in the play-off places and puts them level on points with brentford .\nmany teens are tempted to try e-cigarettes , but few adopt the electronic devices as habit , scientists have discovered . in fact , they found most of those teens who do try e.-cigarettes are also smokers . this suggests young people are not using the electronic alternatives to try and quit their habits - nor are they getting hooked on them after initially trying them .\nthe first daughter to be married from `` 19 kids and counting '' has become the first mother . jill -lrb- duggar -rrb- dillard gave birth to a 9-pound , 10-ounce son she and husband derick have named israel david . the baby was a bit tardy , going past his due date by more than a week .\narsene wenger is yet to decide whether to offer abou diaby a new contract . the arsenal boss hinted that the midfielder could have a future at the club . diaby has suffered 42 injuries during his arsenal career . wenger also hopes to secure contract extensions for mikel arteta and tomas rosicky .\ntoday show correspondent jenna bush hager announced that she is expecting her second daughter with husband henry hager on this morning 's show . she asked her one-year-old daughter mila to help announce the news . jenna and henry already have a daughter , mila , who turns two later this month .\ntwo-time grand national winner ruby walsh appears to jump a speeding car . the irish jockey is riding ballycasey in saturday 's grand national at aintree . paddy power claims he jumped straight over the car , which was said to be travelling at 40mph .\nlord janner signed over the deeds of his # 2m flat to his children in march . the move was made at the height of the police paedophile case against him . it puts the luxury apartment out of reach for potential child abuse victims . his legal team claimed he was unfit to stand trial due to his dementia .\npreviously it was thought the woolly mammoth died out from climate change . but new evidence from russia suggests bone disease was to blame . more than 23,500 mammoth bones were found to be riddled with osteoporosis . the disease caused a deficiency in calcium , leaving the animals unable to walk . this meant they could not forage for food or flee hunters . experts spent a decade analysing bone and teeth samples from mammoths that roamed western europe and russia between 10,000 and 30,000 years ago .\nthe actor was asked what he thought of alejandro gonzalez inarritu 's claim that superhero movies were ` cultural genocide ' the hollywood star said : ` look i respect the heck out of him . i think for a man whose native tongue is spanish to be able to put together a phrase like ` cultural . genocide ' just speaks to how bright he is ' the comments sparked a furious backlash on twitter , with some calling it ` racist ' and ` ignorant '\na texas businesswoman says hillary clinton should n't be president because of her hormones . peggy drexler : hormones are a legitimate concern , but male candidates have also had problems . she says the real problem is bias against women in the workplace . drexle : we need to end gender bias and have a discussion about equality .\n` team pardew ' would sit eighth in the premier league with his record . alan pardw 's crystal palace beat manchester city 2-1 on monday night . the eagles were in the relegation zone before pardews ' return to the club . pardew is a contender for premier league manager of the year .\nan unidentified man was caught on the nbc sports channel wandering across the green at the ko olina resort in oahu and plunging into a pond . he went into the water to retrieve a hat that had blown off in the wind and proceeded to lose his beer at the same time . the drinks can was seen popping out of his pocket and floating away . the man - dressed in camel-colored shorts and a green t-shirt - was then seen putting one leg up on the shoreline in a bid to haul himself out .\ndale cregan reportedly moved to ashworth hospital , a high-security psychiatric unit . 31-year-old has been transferred from hmp manchester after going on hunger strike . cregan was jailed for life after shooting police officers fiona bone and nicola hughes in 2012 . sources said he was ` playing the system ' after being moved to solitary confinement .\nit entrepreneur mike cannon-brookes has bought a stunning property in sydney 's east . the 35-year-old is australia 's equal richest self-made billionaire under 40 . he shares the title with his business partner scott farquhar after they established software company atlassian 12 years ago . cannon - brookes is reportedly the mystery buyer who spent $ 12 million to make a stunning 1918 centennial park mansion their home . the property was originally designed by architect donald esplin for former lord mayor of sydney sir allen taylor .\na pair of three-month-old western lowland gorillas have made their debut at the bronx zoo . they were born to mothers layla and kumi on january 17 and 19 , but keepers do n't know either of their genders yet . the duo have been spotted roaming around the zoo 's congo gorilla forest exhibit with their mothers .\n`` furious 7 '' is expected to open in the $ 135 million - $ 138 million range . it 's set to be the largest opening in north america since fall 2013 . the film is getting the widest release in universal 's history . it earned a record-breaking $ 60 million internationally on wednesday and thursday .\na group of nevada sex workers have come out in favor of democratic contender hillary clinton for president . the group , calling themselves hookers for hillary , all work at dennis hof 's infamous moonlite bunny ranch in carson city . the legal brothel , which was the subject of hbo 's cathouse series , has drafted a four-point platform explaining their endorsement .\nwilliam shatner revealed the plans in an interview with yahoo news . he wants to build a 4ft-wide pipeline from seattle down to california . the pipeline would transport water and solve the state 's ongoing drought problem . he is planning to run a kickstarter campaign and is hoping to raise $ 30 billion -lrb- # 20 billion -rrb- but the proposal to build the pipeline has been declared ` highly illogical ' by some experts .\nairbus a319 aircraft diverted to stuttgart after suspected oil leak . passengers had to wait for replacement plane to pick them up . yesterday another germanwings flight diverted to venice . passenger and flight attendant were treated for ` an acute feeling of sickness ' comes less than two weeks after germanwings plane crashed into french alps .\ngerman chancellor angela merkel and president joachim gauck among 1,500 guests at cologne cathedral . cardinal rainer woelki urged forgiveness for all of the victims - including co-pilot andreas lubitz who is blamed for bringing down plane . small wooden angels were placed on pews to comfort the 500 bereaved relatives of the doomed flights . flags have been flown at half-mast across the country as political and religious leaders join hundreds of bereaved families .\nliverpool face arsenal at the emirates on saturday . the reds are currently fourth in the premier league . a defeat could leave brendan rodgers ' side eight points adrift of the top four . champions league qualification is vital for liverpool . uefa have announced significant increases in prize money for their top competition from next season .\ndonald dewitt , 65 , is a human sexuality and biology teacher at bergen county academies in hackensack , new jersey . he was arrested monday and charged with attempted sexual assault , child endangerment and criminal sexual contact . the victim 's sister discovered dew witt 's raunchy emails and told their mother , who then called police . the 16-year-old girl allegedly admitted to her relationship with the married teacher nearly 50 years her senior .\nprince harry will arrive in australia on 6th april for a four-week secondment . he will spend time in canberra , sydney , darwin and perth . will pay respects at the australian war memorial on arrival . will then report to australia 's defence chief and army boss for duty .\ncell phone footage has emerged appearing to show actor dennis quaid having a diva-esque meltdown on the set of his latest movie . the video surfaced on reddit on monday evening . quaid , 61 , is famed for roles in blockbusters such as wyatt earp , any given sunday and the day after tomorrow .\naustralian anne-louise van den nieuwenhof , 31 , died suddenly in canada . she was with her husband and their two children when she collapsed . she had been diagnosed with a rare bone and soft tissue cancer aged five . doctors told her parents she had just three months to live . she defied the odds and moved to canada to work as a nurse . she died six days after giving birth to her second child .\nsuma , a 36-year-old orangutan , was first diagnosed with arthritis in 2013 . she was initially given daily medication to help relieve the pain . on thursday , surgeons at melbourne zoo gave her a full health check-up including her ears , teeth and eyes . surgeon associate professor marino pirpiris gave the ape a steroid injection which will reduce her pain for months and perhaps even years .\nlouis jordan , 37 , was stranded 200 miles off the coast of north carolina . he was rescued by a german-flagged container ship on thursday . he left hospital in good health on friday and refused treatment . the coast guard crew who rescued him said he had a small smile on his face . they were expecting him to be covered in blisters and have severe sunburn .\npensioners and neighbours have criticised the # 750,000 refurbishment of sheltered accommodation in penarth . graham white , 76 , said the changes to the property looks ` more like a children 's playscheme ' than sheltered accommodation . but the local council defended the colour scheme , claiming it will help residents with poor eyesight find their way home .\nlibya 's army head says he was not consulted about eu plans to stem migration . gen. khalifa haftar says libya will not cooperate with any eu military intervention . he says libya is open to other kinds of cooperation on the issue of migration . eu leaders are considering a plan that would involve military action against people smugglers .\ntom poynton has signed a new one-year contract extension with derbyshire . poyton missed the entire 2014 campaign due to leg injuries sustained in a road accident in which his father keith died last april . the former england under-19 international had to undergo an ankle operation but he made his playing comeback during derbysire 's pre-season tour of abu dhabi .\nclermont auvergne face saracens in the champions cup semi-final . jonathan davies says clermont are relishing the prospect of facing northampton . clermond thrashed english champions 37-5 in the last-eight tie at the stade marcel-michelin .\nliverpool face blackburn in the fa cup quarter-final on wednesday . tom cairney has sympathy for raheem sterling 's contract negotiations . the blackburn midfielder has been compared to justin bieber . cairny says he would love to face liverpool in a semi-final .\na series of billboards posted around new york city are seeking to encourage residents to consider a move east to detroit . the ads are the brainchild of a trio of people opening a new thai restaurant in the motor city . they want exposure for their new business but also to promote detroit as an alternative for new yorkers who feel that city has got too expensive for them . there are four billboards -- two in manhattan and two in bushwick in brooklyn -- which went up about a month ago .\nthe oscar winner put on white makeup to portray the clown prince of crime . twitter users got their first look at leto in character friday night . `` suicide squad '' is based on the dc comics series . it also stars will smith , margot robbie and viola davis .\nmatthew weathers is a maths teacher at biola university in la mirada , california . he often posts videos of himself tricking his class on his youtube channel . in this clip , he shows his class a video of himself explaining a lesson . the teacher then appears on the screen and confronts his virtual counterpart . the pair then fight and shove the video box from left to right . the video concludes with the teacher announcing a quiz and the class clapping in admiration . the clip was uploaded to youtube on november 2 .\nesteban cambiasso joined leicester city on a free transfer last summer . the argentine midfielder says beating relegation would be like winning a trophy . cambiasso won five serie a titles at previous club inter milan . leicester are currently bottom of the premier league table .\ndavid powell , 73 , to appear in court today charged with murder of his mother . pensioner 's body was discovered at her home in penkhull , stoke-on-trent . body has not yet been formally identified but understood to be his mother celilia powell .\nwest ham have announced a reduction in season ticket prices . the hammers are the first premier league club to do so . manager sam allardyce has labelled it the best business in a long time . the club will move to the olympic stadium next year . west ham 's cheapest adult season ticket will cost # 289 .\ngrigor dimitrov beat stan wawrinka 6-1 , 6-2 in the monte carlo masters . dimitrov will play gael monfils in the quarter-finals . wawrinka is the defending champion in monte carlo .\nsportsmail 's alternative table shows every club 's total points gained against the current top seven teams -- chelsea , united , city , liverpool , arsenal , tottenham hotspur and southampton . louis van gaal 's team sit top of the pile with an average of two points per game after 10 matches .\nsenior islamist party official mohammad qamaruzzaman was executed in bangladesh . he was convicted of crimes against humanity and was hanged on saturday . the assistant secretary general of the jamaat-e-islami party headed a militia group that collaborated with the pakistani army in the 1971 independence war . he is believed to have been behind the killing of around 120 unarmed farmers .\ned miliband accused of snubbing britain 's army of self-employed workers . labour leader prompted claims he was worried about upsetting ` union paymasters ' in special election edition , magazine carries tributes from nearly every major party leader . david cameron , nick clegg , nigel farage and nicola sturgeon all feature . but there is no message from mr miliband in the magazine .\nvijaya gadde , twitter 's top lawyer , admitted it has been ` inexcusably slow ' in tackling online trolls . she said the social network had let internet abuse go ` unchecked ' because it did not recognise the scope and scale of the problem .\nthe german grand prix has been axed from the 2015 schedule . bernie ecclestone could not guarantee the future of the italian grand prix . the 2015 season will be shortened to 19 races . former world champion jackie stewart wants europe 's ` essential races ' to remain unchanged .\nsurveillance cameras caught a woman taking $ 9,000 from the account of kate sullivan at chase branches in commack and freeport on september 23 , 2014 . state police say the female suspect then racked up $ 4,000 in bills after opening four store credit cards in sullivan 's name in new haven , connecticut . the 50-year-old , who had lung cancer , was informed of the fraud while fighting for her life at memorial sloan kettering cancer center in new york . she died five days later .\nthe mail 's exclusive story about safari park visitors ' cars being protected from monkeys with bubble wrap was , sadly , made up . simon cowell is set to be put on the # 5 note , according to reports . the leaning tower of pisa is to become a luxury hotel , the telegraph claims .\njessica sey has spoken of her devastation after learning of her nephew 's death . baboucarr ceesay is believed to have died on the fishing boat in libya . his aunt says he was ` exploited by criminals ' who are responsible for deaths . she says he wanted to seek a new life in the uk but was not granted a visa .\nmanuel pellegrini has struggled this season for manchester city . the chilean has been criticised for his performances by yaya toure 's agent . dimitri seluk has called pellegrini a ` weak manager ' he has also criticised the club 's chief executive ferran soriano and director of football txiki begiristain .\nlance corporal albert duffy had served three tours of afghanistan in the army . but he was attacked at a bus stop by drink-crazed keith anderson last year . the 28-year-old punched him to the ground and left him in a coma for 14 days . he was jailed for seven years at teesside crown court this week . judge said it was unlikely the soldier would ever return to the military .\nbrock guzman , 8 , was last seen inside his parents silver 2001 toyota corolla . authorities said the northern california boy fell asleep in the backseat of the car and was kidnapped when the vehicle was stolen . police said a hapless car thief likely stole the 2001 toyota after the boy 's father left it running and briefly unattended in front of his home .\nnigerian president muhammadu buhari is the first peaceful transition of power in history . buhar ran on an anti-corruption platform , says femi kuti . kuti : nigeria 's poor have been victims of their country 's enormous wealth . he says the cancer of corruption has to be cut out .\nofficer who fired gun at suspect was under stress , investigator says . police sgt. jim clark says reserve deputy robert bates `` inadvertently '' shot eric courtney harris . clark says bates ' actions were a case of `` slip and capture '' the suspect was shot after running from police during an undercover sting .\nshaun andrew mckerry , 31 , was arrested after he burst into post office . he was armed with an axe and demanded cash from the terrified assistant . but shopkeeper sab dhillon heard mckarry 's demands and ran in . he rugby tackled him and his wife then hit him with a baseball bat . mckerry was dubbed ` boomerang boy ' because he always returned home . he has been unmasked as the axe wielding thief in the attempted robbery .\na new study suggests the martian night could be filled with salty brine . researchers say they 've found evidence of brine in gale crater . the study does n't change the picture for life on mars . but it does support the theory that water could have once existed there .\nlauren bacall 's art collection sold for $ 3.64 million . 750-piece collection includes works by some of the greatest artists of the 20th century . items sold at bonhams auction house in new york . bacall died in august 2014 at the age of 89 .\nfloyd mayweather takes a break from training with girlfriend doralie medina . manny pacquiao is also in los angeles with his family . the pair are preparing for the richest fight in history on may 26 . mayweather and pacquao will weigh in at 154lb at the seven-day check .\ned miliband is paying an argentinian company which has attacked ` vulture ' american bankers to help him become prime minister . left-wing , buenos aires-based tectonica is responsible for the websites of more than 200 labour parliamentary candidates . tory mps last night claimed labour 's argentinian link was an ` embarrassment ' for miliband .\ndr lin xikun walked in on nurse long yufang being threatened with a knife . immediately offered himself up as an alternate hostage - allowing her to go free . the man had been brought in by police the night before . he had injured his leg in the process and was unable to get home .\npeter moore received letter from hm revenue and customs last week . letter was addressed to ` representative ' of peter william john moore . it apologised for family 's ` recent bereavement ' and said officials needed to sort out whether mr moore had paid enough - or too much - tax . the 47-year-old pottery factory worker has demanded an apology from the government .\ndaniel sturridge will miss liverpool 's trip to hull city on tuesday night . the striker has been struggling with calf and thigh injuries this season . brendan rodgers insists he will do ` what is best ' for the england international . liverpool boss is keen on signing memphis depay this summer .\ntiger woods is said to have returned to augusta national for a practice session . the former world no 1 has not played since withdrawing from the farmers insurance open on february 5 with a recurrence of his back problems . woods has won the masters four times and is a 14-time major winner . woods dropped out of the top 100 in the world rankings on monday .\ncarolyn thorpe , 62 , was killed and her daughter sarah wright was injured by the tree . the 20-foot ash tree was planted to mark the birth of napoleon i 's first son . an investigation found it was ridden with parasites that had rotted the wood . the town hall of hiers-brouage has now paid more than $ 100,000 in compensation .\nbaylee almon was one of 19 toddlers killed in the oklahoma city bombing on april 19 , 1995 . her mother aren almon-kok , now 23 , saw the picture on the front page of the local paper the next day . she said : ` it gets harder every year '\nthe phone belonged to bella crooke from melbourne . she lost it at a friend 's birthday party on saturday night . it was handed in to albury police station on the nsw-victoria border . police officers on duty realised the phone was unlocked and used it to post selfies and puns on the woman 's facebook page .\nmanchester city beat west ham 2-0 at the etihad stadium on sunday afternoon . james collins own goal gave city a first half lead after a james collins miss-timed clearance . sergio aguero doubled the lead with his 20th league goal of the season in the 36th minute . yaya toure and david silva were both on target for manuel pellegrini 's side .\nfeline tried to attack a bird in china but lost its footing on the icy ground . hilarious moment caught on camera by photographer libby zhang . the tiger flipped onto its back and the crowd burst out laughing . it took place at the hengdaohezi siberian tiger park in northeast china .\nphotographer ernst haas was a member of the magnum photos cooperative . he was a regular on movie sets , and his work is often overlooked . a new book , `` ernst haas : on set , '' documents his work on film sets in the '50s and '60s .\nhector bellerin has impressed in the absence of mathieu debuchy this season . the spaniard scored his second premier league goal against liverpool last weekend . but it is his speed that has earned him the nickname ` speed king ' at arsenal . bellerins set a new club record over 40 metres in august .\nthe family of ` bou bou ' phonesavanh has settled with habersham county , georgia for nearly $ 1 million . the georgia toddler suffered serious burns to his face and had his nipple blown off in the may incident . the settlement is n't enough to cover the continued medical care bou bou will require as he gets older .\nst ivan rilski church in zapalnya , bulgaria , is the only remaining evidence of the community of zapalneya . residents lived there until they were forced to leave their homes to make way for a dam built by the communist regime . the crumbling stone structure now cuts a ghostly figure in a few feet of water at the zhrebchevo reservoir , near tvardica .\nceltic lost 1-0 to inverness in the scottish cup semi-final . david raven scored the winner in extra-time . virgil van dijk had given celtic the lead in the first half . greg tansey equalised for the highlanders . craig gordon was sent off for invernesses . celtic will play falkirk in the final on may 30 .\nraheem sterling pictured with liverpool team-mate jordon ibe . the pair are seen holding a shisha pipe in a london bar . this is the second time sterling has been pictured with a pipe in the past few days . the pictures will heap further embarrassment on liverpool . sterling is considering his future at the club .\nmysterious white lights spotted hovering near chilean volcano on wednesday . volcano calbuco erupted for the first time in 40 years forcing 1,500 people to flee their homes . hundreds filmed the eruption and its deadly ash cloud which caused all nearby flights to be grounded for safety . one amateur cameraman was surprised to see what appeared to be white lights close to the enormous plume of ash and smoke rising from the volcano .\ntoxicology results show linden , new jersey police officer pedro abad had three times the legal limit of alcohol in his system when he crashed his car last month . abad and fellow officer patrik kudlac were critically injured in the crash while another cop frank viggiano and friend joe rodriguez died . abads blood alcohol content was 0.24 ; the legal alcohol limit in new york is 0.08 . hours before the crash , abad posted a photo of three whiskey shots to his instagram page .\ntottenham are keen on signing andre ayew in the summer . the forward is out of contract at marseille at the end of the season . the 25-year-old fits into mauricio pochettino 's transfer plans . but spurs face stiff competition from inter milan and real madrid .\ntwo cubs were taken in by retired farmer pauline kidner . one escaped death after being carried away in a jack russell 's mouth . nursed originally on milk , custard creams were introduced to see whether the cubs are ready for food . first of the cub 's , named little star , was half the weight of an apple .\nforget tap water , we 're now being sold a raft of infused and health-boosting h20s . sweet tasting birch water contains saponins which can help your body absorb less fat . charcoal water reduces chlorine , reduces chlorine and balances the ph.\nandrew chan and myruan sukumaran will be shot in the heart at the stroke of midnight on tuesday . the pair will be led through the jungle on nusakambangan island in java . they will be given white clothing to wear and a choice whether to be blindfolded . the men will be lined up in front of 12 riflemen who will fire at them . three shooters will have live rounds while nine other rifelemen will have blanks . a chilling reenactment of the execution was aired on indonesian tv the day before five foreign drug traffickers were killed in january . the executions were played out on national tv .\nbayern munich host porto on wednesday night in their champions league quarter-final first leg . julen lopetegui 's side are the only undefeated side in the competition . the former barcelona boss says porto have room for improvement . he says the team ` has n't stopped growing ' and is looking to give their best .\nsunrise host samantha armytage made the comment during a broadcast last month . she was interviewing non-identical twins from the uk , lucy and maria aylmer . she congratulated lucy on ` getting her dad 's fair skin , ' saying ` good on her ' the 37-year-old 's comment was dubbed as ` racist ' by some viewers . a change.com petition has since been signed by 186 people .\naj hadsell , 18 , was last seen on march 2 while on spring break from longwood university in farmville , virginia . remains were found outside a residence in franklin on thursday morning . fbi is now involved in the investigation . her stepdad wesley hadsell was arrested for breaking into a home two weeks after the teenager 's disappearance , but he says he was looking for her .\nsmall owl captured on camera trying to interrupt brotherly cuddle . tugs at his sibling 's wing , prompting amusing game of tug-of-war . scene was photographed from just six metres away by dean mason , 48 . he hid away in a camouflaged shelter , known as a hide , in beaconsfield , buckinghamshire .\nnew book documents the evolution of italian fashion from the post-war years to the 21st century . italian glamour : the essence of italian fashion , captures the evolution through 300 iconic dresses and archived images . the book was compiled by enrico quinto and paolo tinarelli - the two men who were the first to introduce the concept of vintage style in italy .\noversized ornate bed was left in car park of former redland house hotel . construction workers dismantled it and left it to be picked up by auctioneers . it was snapped up for # 2,200 by a four-poster bed specialist from northumberland . tv historian jonathan foyle has spent years trying to prove the artefact 's historical roots . dna testing on the bed 's timber proved it once belonged to king henry vii . he traced it back to 1495 , when henry vii went to lathom in lancashire . henry viii may have been conceived in the bed , which was reportedly created for the first marriage of henry vi and elizabeth of york .\ncardboard gnomes were used in the iconic sgt pepper 's lonely hearts club band cover art . the gnome was signed by all four members of the beatles after the shoot in march 1967 . the model has emerged for sale almost 50 years later after being listed for auction by a private collector .\nhippopotamus stood its ground against hungry lions in zimbabwe 's hwange national park . the three-year-old lions were trying to catch the large mammal in the depths of the reserve . the hippo attempted to scare off the predators before charging towards them . the dramatic altercation was caught on camera by researcher brent stapelkamp .\nclarence david moore , 66 , escaped from a north carolina prison three times in the 1970s . he was captured in texas in 1975 but escaped again in august 1976 . moore has been living in kentucky since 2009 . he has been on the run since 1967 . he had a stroke last year and has difficulty speaking . he called police this week to surrender . the deputy who answered thought it was a prank . moore broke down in tears and told the sheriff he needed medical help .\njessica cleland took her own life on easter saturday last year after being bullied on facebook . the 19-year-old was bullied by two teenage boys who called her a ` f *** ing sook ' and ` f ****** sook ' , and her parents say they were not prosecuted . the cleland 's are now campaigning for cyber bullying to be taken more seriously in victoria . they say the victorian police failed to investigate the death and have called for harsher enforcement of anti-bullying laws .\ndoug hughes , 61 , was arrested after crossing the no-fly zone with 535 letters for all 535 members of congress . he is now under house arrest at his home in ruskin , florida . the secret service has decided not to prosecute his wife , who claims she was not aware of the plan .\nsurvation poll for mail on sunday shows a swing towards tories . it shows a three point lead for david cameron over ed miliband 's labour party . but the tories are also losing support from nigel farage 's ukip . the poll also shows concern over the influence of nicola sturgeon . it suggests english voters would rather scotland was given independence .\nthe navy says a second seal has died following a training accident in a swimming pool at a base in virginia . special warfare operator 1st class brett allen marihugh of livonia , michigan , died sunday . the 34-year-old marih hugh and 32-year , old special warfare . operator 1th class seth cody lewis of queens , new york , were found unresponsive on friday at the bottom of the combat swimming training facility at joint expeditionary base little creek-fort story . lewis died friday .\neverton boss roberto martinez admits he wants to keep aaron lennon . lennon has impressed martinez since joining on loan from tottenham . martinez will hold talks with kevin mirallas over his future at the end of the season . mirallas has made no secret of his ambition to play in the champions league .\na new type of flexible wing has been tested by nasa on a plane in california . the wing can bend from -2 degrees up to 30 degrees . it means that regular flaps are n't needed - and it is much lighter . the breakthrough could also increase fuel efficiency up to 12 per cent , and reduce noise at take-off and landing up to 40 per cent .\nashley x was caught on camera driving his honda sports car at 67mph on m11 in 2009 . he initially ignored essex police 's attempts to confirm who was driving the car . tried to fight the speeding charge in six different courts , concocting various stories . finally admitted perjury and perverting the course of justice at ipswich crown court . judge martyn levett sentenced x to nine months imprisonment .\nbritain 's prince harry will spend four weeks with the australian military . the prince will work and live with colleagues in sydney , darwin and perth . he has already served with australian troops on a number of occasions . the 30-year-old prince is leaving the british armed forces in june .\nilyse hogue : is america divided ? has ohio found a better way to bridge those divisions ? she says the state has made big changes and is much stronger today . hogue says the leadership style that helped ohio is needed in washington . she says great leaders bring teams of people together , challenge them to innovate .\nmanchester united host chelsea in the premier league on saturday . louis van gaal 's side have won three of their last four games . gary neville believes united can beat chelsea with their current form . the former england coach believes united will be tested at stamford bridge . click here for manchester united transfer news .\nunusual black-coloured bird was spotted feeding in a salt lake in cyprus . the migratory bird was feeding among a group of pink flamingos . experts believe it could be the only flamingo of its kind in the world . it was spotted near the british raf base at akrotiri on the island 's south coast .\nresearchers found local networks of neurons are layered like the shells in a russian nesting doll . the internet has countless local area networks that then connect with larger , regional networks and ultimately with the backbone of the internet . the brain operates in a similar way , the researchers found . ` the cerebral cortex is like a mini-internet , ' said larry swanson , professor at the usc dornsife college of letters , arts and sciences .\nproperty in farm street , central london , was built in 2011 after developers knocked down the original structure . it was once used as a milking parlour but was knocked down in the 19th century . the four-bedroom mansion has an indoor swimming pool , gym , lift , cinema room and roof terrace .\nnew york father and daughter have tongues a whopping 8.6 cm and 7.3 cm wide respectively . byron schlenker only discovered his tongue was the widest in the world when he picked up a copy of the guinness book of world records . his daughter emily , 14 , is not far behind at 7 . 3cm and hold 's the record for the widest female tongue .\nzara phillips has pulled out of the rolex kentucky horse park after high kingdom suffered an injury . the queen 's granddaughter was due to make her debut in the three-day event . phillips won silver in the team equestrian section of the eventing at london 2012 on board high kingdom .\nesher and walton constituency has highest income tax bills in the country . average tax bill is # 16,900 , four times the national average of # 4,363 . residents are home to gary lineker and frank lampard . other top five highest income-tax paying constituencies include windsor and beaconsfield .\nmare nostrum was launched in 2013 to rescue migrants trying to cross the mediterranean . the operation proved expensive and politically contentious . without european support , the italian government cut back naval assets dedicated to rescuing migrants . in 2014 , 170,000 migrants arrived in italy by sea ; 11,000 have been picked up in the past week .\nroseanne barr said she suffers from macular degeneration and glaucoma . the actress said smoking marijuana is `` good medicine '' for relieving the pressure in her eyes . doctors have not given barr a definitive timeline on when she can expect to lose all visibility .\nmichelle filkin charged with breaking and entering , larceny over $ 250 , and malicious destruction of property . she was discovered at the court street property in edgartown by owner mark conklin on april 17 . when he confronted her she claimed that she owned the house .\nsecret service supervisor accused of making sexual advances at female employee . the incident occurred at a party for xavier morales , the agency 's new field office head . the agency has been embroiled in scandal in recent months . the secret service director called the allegations `` very disturbing '' and said violence in the workplace is unacceptable .\nlabour leader announced plans to overhaul britain 's non-domicile regime . it allows 116,000 foreigners and people with foreign links to pay tax only on money that they bring into britain . miliband initially suggested he would ` abolish ' non-doms status . but it later emerged that labour is effectively proposing a time limit on it of between two and five years .\nhillary clinton is finally announcing her candidacy for the 2016 presidential election . julian zelizer : for democrats , there is ample reason to be excited about clinton 's run . zelizer says she has extensive political and policy experience , but some weaknesses have been exposed . he says she needs to avoid following al gore 's path and become the inevitable nominee .\nandy erlam said he will stand as an ` anti sleaze ' independent candidate . the 64-year-old said he wants to end years of ` rotten borough ' politics . he led four ordinary voters in high court victory to oust crooked mayor . lutfur rahman was found guilty of rigging his election for mayor in may 2014 . he was banned from office for five years but has many acolytes .\ntaxi driver ` uncle teng ' has taken 30,000 selfies with passengers . he started the unique tipping system ten years ago . the 58-year-old is one of the most recognised faces in shenyang , china . he has been awarded the ` shanghai big world jinisi record ' for his collection .\njames oliver , 48 , was left with a serious leg injury after being allegedly hit by a car driven by linda currier , 53 . police report that they found oliver in the driveway of a home in noblesboro , maine , on saturday night . they said that the pair had argued inside the home after currier caught him allegedly trying to sexually assault the young girl . the dispute moved outside the home and then currier allegedly hit oliver with the car .\nleigh griffiths says celtic have been ` robbed ' by officials . celtic lost 1-0 to inverness in the scottish cup semi-final on sunday . griffiths believes josh meekings ' handball should have been a penalty . celtic goalkeeper craig gordon was also sent off in the second half . invernesses won the match after extra-time .\nraymond van barneveld beat world no 1 michael van gerwen 7-3 . robin van persie watched the bout on a camel tv . phil taylor beat dave chisnall and drew with stephen bunting . gary anderson fought back from 6-2 down to earn himself a draw .\npresident barack obama 's recent explanation of how his administration will engage with the middle east is far from reassuring to the region . in an interview with tom friedman , obama explained u.s. foreign policy moves on iran and cuba , which friedman described as the `` obama doctrine '' he stated that `` we will engage , but we preserve all our capabilities ''\ncalifornia judge m. marc kelly has reduced a child rapist 's mandatory 25-year sentence down to only 10 . he said that kevin jonas rojano-nieto ` did not intend to harm ' the three-year-old girl he raped at his family home in june . prosecutor have said they will appeal the controversial decision and will be pushing for the minimum sentence of 25-years to life to be reinstated .\npiano teacher john goodwin , 75 , shot himself outside of rockingham county superior courthouse in brentwood on friday . he was airlifted to a hospital , where he died from his injuries . the jury was not aware of what had happened outside the courthouse when they decided they could not reach a verdict in the 75-year-old 's case . prosecutors said that goodwin repeatedly sexually assaulted an 11-year old student from 2002 to 2005 .\n489 holidaymakers were stranded overnight on the mv azores in lisbon . they were due to leave lisbon at 7pm on tuesday for bristol avonmouth . but lawyers slapped a court order on the ship over an ` unresolved ' wrangle . harbour master then refused to let the ship leave for bristol . legal dispute was between owners and one of the ship 's former staff . uk cruise firm eventually came to arrangement with portugese authorities .\nferguson 's police department was accused in a doj report of racial discrimination , excessive force . julian zelizer : the doj is negotiating with the city to restructure the police department . zelizer says the doj report will help change the law enforcement system in ferguson . but he says community activists must ensure that the mayor and town manager represent their vision .\nbaltimore police say freddie gray did not get timely medical care . gray was not buckled into a seat belt while being transported in a police van , police say . police commissioner anthony batts says there are no excuses for the mistakes . a protest organizer vows to `` shut this city down '' on saturday .\nv valerie rutty altered invoices by increasing the prices of work . then paid difference into her own bank account by cheque from school fund . 60-year-old stole almost # 3,500 from fund at irlam primary school in manchester . cash collected by children aged three to 11 and their families through fundraisers .\nnew york judge says facebook is acceptable way for woman to serve her husband divorce papers . ellanora arthur baidoo has been trying to divorce her husband for several years . baido 's attorney says she has been unable to find victor sena blood-dzraku to serve him papers .\namerican jennifer stewart says she lost her pet cat , felix , on a recent flight to new york . etihad airways says the cat escaped from its carrier after the plane landed at kennedy airport . the carrier is investigating the incident and is working with ground handlers to help locate the cat . the airline shipped more than 200 pets last year .\ncctv shows gang breaking into aviary in walsall , west midlands , on january 12 . they bundled 200 rare birds into bags and dumped them on the floor . men then kicked them and forced them out of barely open windows . birds were also jammed into drawers , squeezed to death and chased by dog . three men and a youth have been convicted of their involvement . they will be sentenced next month .\nposters promoting a ` straight pride ' week were removed from campus at youngstown state university in ohio . student leaders said that they went ` way further than a free speech issue ' and included profanity . they said that the posters were meant as satire , but missed the point of activism . university officials are investigating possible student code violations and disciplinary action may follow .\nneymar posted a video to instagram showing off his footballing skills . the barcelona ace was dressed in just his shorts as he showed off his skills . neymar will be hoping to impress when barcelona travel to face sevilla on saturday . barcelona are currently four points clear at the top of la liga .\nchristopher eccleston 's turn as the doctor was among the shortest in show 's history . the 51-year-old actor played the time lord for just 13 episodes in 2005 . he has suggested he quit the show after falling out with show bosses . ecclestone grew up in manchester and was brought up in salford .\nmh17 was shot down over eastern ukraine on july 17 , 2014 . investigators have renewed their search for body parts and debris . they have found more body parts at two ` burn sites ' in the area . in all , 16 containers of fragments of the malaysia airlines plane were filled . mailonline also found a charred passport of a malaysian mother killed in the horror .\nnational union of teachers calls for a ` positive portrayal of same sex relationships ' in lessons . mps have a duty to tackle ` homophobia , biphobia and transphobia ' in schools . critics accuse nut of ` thought control ' and say proposals risk ` oversexualising ' children . christian institute says it would force christian teachers to choose between faith and job .\natacama desert is one of the driest places on earth . photographer andres figueroa documented religious festivals there . he photographed the festivals in a series of photos called `` dancers of the deserts '' the photos highlight the uniqueness of andean culture .\nmodern family actress sofia vergara and her ex fiance nick loeb are embroiled in a legal fight over her frozen eggs , a new report claims . loeb has filed a lawsuit in california in a bid to prevent the modern family actress from destroying two cryopreserved female embryos created through ivf , according to intouch . court documents detail how the couple fertilized embryos using her eggs and his sperm six months before their split in november 2013 . verg lara 's representatives declined to comment on the allegations .\nteam of researchers studied 40 million posts by 1.7 millions users on news site cnn.com , political news site breitbart.com and gaming site ign.com . they then divided users into those most likely to be banned , called future-banned users -lrb- fbus -rrb- , and others dubbed never-b banned users -lrb- nbus -rrb- trolls are less likely to use positive words than other users , they swear more , and use less tentative or conciliatory language . they also make more comments each day , and post more times on each thread .\ncassidy fortin , 17 , has finished the treatment a court ruled she must undergo at connecticut children 's medical center for hodgkin 's lymphoma . she was diagnosed with the disease last year but did not want to receive the recommended treatment . she ran away during a home visit in november and the state 's department of children and families gained temporary custody of her . she said she was ` happy ' to be heading back to her hartford home after spending five months undergoing chemotherapy to save her life .\nhans-wilhelm muller-wohlfahrt left bayern munich this week . the 72-year-old said the club 's medical staff had been blamed for defeat by porto in champions league quarter final . pep guardiola has denied a rift with the former doctor .\nchelsea beat stoke city 2-1 at stamford bridge on saturday . cesc fabregas was caught in the face by charlie adam 's arm . spain international was left with a bloody nose and needed treatment . fabreg as took to instagram to show off the result of the clash .\nwest brom are monitoring nice forward alassane plea . tony pulis believes the 22-year-old represents better value than bryan dabo . plea has scored three goals this season and can also play as an attacking midfielder . former lyon trainee has been capped at various levels by france .\nsaracens beat leicester tigers 14-6 at allianz park . tom youngs sin-binned for a barge on chris ashton . billy vunipola scored after youngs ' exit . marcelo bosch scored after the break . chris wyles went over for a third try .\naxe-wielding robber tried to rob a post office in county durham . but he was stopped when he was jumped on and wrestled to the floor . owner sab dhillon 's wife sam then hit him with a baseball bat . shaun andrew mckerry , 31 , was jailed for six years today .\nbishop robert finn , 62 , offered his resignation under code of canon law . he waited six months before notifying police about reverand shawn ratigan . ratigan had a computer containing hundreds of lewd photos of young girls . he was eventually sentenced to 50 years in prison after pleading guilty to child pornography charges . children 's rights advocates are urging pope francis to do much more to deal with clergy who become embroiled in child sex scandals .\nscientists from yale and the university of bath have made a breakthrough in the development of clean hydrogen power . it uses a newly designed molecular catalyst to split water in an electrolyser . this creates clean and storable hydrogen fuel , which can then be stored . the breakthrough could be used to store energy from renewable sources like solar power . this could make hydrogen fuel cells for cars much more economical .\nsupporters ' group ashleyout.com are encouraging supporters to ` stand up to ashley ' when swansea visit st james ' park on saturday . at least 10,000 supporters boycotted the match in protest at a lack of ambition and investment from owner mike ashley . newcastle manager john carver says his players were affected by the protest during the 3-1 loss against spurs .\npeter morris was devastated when his sister , claire , died in a car crash . he believed she had died in an accident in aberdeen , scotland , in 1994 . but it took two decades for the truth to be revealed - she had been murdered . her husband , malcolm webster , had drugged her and set her on fire . peter reveals the shocking details on britain 's darkest taboos . he also reveals how his second wife was poisoned by webster .\nlouis jordan , 37 , had been drifting on a sailboat for more than two months . he was rescued by a container ship after being lost at sea for 66 days . jordan was dehydrated and hungry , but he was able to walk to a hospital . his father says he was expecting his son to look different .\n"
  },
  {
    "path": "output/test.cnndm.reference",
    "content": "juan arango escaped punishment from the referee for biting jesus zavela . he could face a retrospective punishment for the incident . arango had earlier scored a free kick in his team 's 4-3 defeat .\ngary gardner confirms he 'll report to aston villa for pre-season training . the 22-year-old is out on loan at championship side nottingham forest . tim sherwood is keen to asses gardner ahead of next season . the midfielder would prefer a move back to forest if villa does n't wok out . click here for all the latest aston villa news .\ncurrent federal government guidelines dictate the people should limit their salt intake to 2,300 milligrams . scientists now believe a typical healthy person can consume as much as 6,000 milligrams per day without significantly raising health risks . the same skeptics also warn of the health risks associated with consuming less than 3,000 milligrams . average american ingests about 3,500 milligrams of salt per day .\nmichigan micro mote is a complete computer system less that 5mm across . contains solar cells that power the battery with ambient light . can be equipped with cameras , temperature and pressure sensors .\nbritons finding they can not pick up hire cars after driving licence change . dvla is scrapping the paper counterpart that accompanies uk licences . information about penalty points will be held on the dvla 's database . fears foreign car hire firms will not be able to check motorists ' details .\nfilmmaker michael könig from cologne , germany has created an amazing video showing solar activity . it was made by stitching together footage from nasa 's solar dynamics observatory over five years . the footage includes loops of ` coronal rain ' showering the surface of the sun . transits of the moon , venus and earth are also seen - and a comet breezes through the outer solar atmosphere .\njustin rose finished joint runner-up at the masters 2015 on 14-under-par . rose 's final total has only been bettered six times at the the masters . rose hopes to build on his display and take some big titles across the year . click here for all the latest news and reaction following the masters .\njames best , who played the sheriff on `` the dukes of hazzard , '' died monday at 88 . `` hazzard '' ran from 1979 to 1985 and was among the most popular shows on tv .\naudrey alexander wanted her neighbours to chop down their huge hedge . she claims the 40ft leylandii was blocking sunlight from reaching her home . feud started in 1980 when it blocked light from reaching a vegetable patch . council finally rules that the hedge can stay - but must be cut back to 20ft .\na lawyer for dr. anthony moschetto says the charges against him are baseless . moschetto , 54 , was arrested for selling drugs and weapons , prosecutors say . authorities allege moschetto hired accomplices to burn down the practice of former associate .\naround 30 people live a floating life in seattle 's sodo -lrb- south of downtown -rrb- area in their rvs . there is one parking lot in particular where the owner lets them act as watchmen in exchange for a spot to live . visual journalist anna erickson , who photographed the community , said they are just grateful to have a home .\nnewcastle boss john carver is under huge pressure to perform in his role . toon fans are planning to protest against club owner mike ashley . carver could also be targeted for his poor record in his job so far . he has turned to predecessors alan pardew and alan shearer for advice .\nroger federer believes rafael nadal is still the favourite for roland garros . world no 1 novak djokovic has lost just two matches this year . but federer feels that nine-time champion nadal is still the man to beat . federer is competing in the inaugural istanbul open this week .\nsarah stage , 30 , welcomed james hunter into the world on tuesday . the baby boy weighed eight pounds seven ounces and was 22 inches long . during her pregnancy sarah was criticised for her trim figure and abs .\nfor more than 40 years , the lyrics of american pie have been puzzled over . this week the handwritten lyrics sold for more than $ 1 million at auction . the verses contain hidden references to seminal events of the 50s and 60s . it includes nods to buddy holly , charles manson and martin luther king .\nbinmen refused to empty bin because it had empty crisp packet on lid . they also left bin full because there was a scrap of cellophane on top . enraged residents have branded waste collection squads as ` little hitlers '\njeffrey williams , 20 , is accused of shooting and wounding the officers on during a rally on march 12 . despite warnings at the start of prison phone calls that they can be used as evidence , he spoke free about the incident to his girlfriend . williams said he was being harassed by a group of people outside ferguson pd and was n't aiming at the cops . he also expressed remorse . ` even though i was in the wrong , though , i should have just went the other way , ' he said . ` oh man , now i 'm looking at 10 years '\n`` no challenge poses more of a public threat than climate change , '' the president says . he credits the clean air act with making americans `` a lot '' healthier .\ntwo parrots were home alone when a fire erupted in boise , idaho . started calling ` help ! ' and ` fire ! ' , crew thought they were human voices . both were pulled from the wreckage and treated with oxygen masks .\nmarouane chamakh , fraizer campbell and jordon mutch ruled out . suspended crystal palace skipper mile jedinak joins them on the sidelines . yaya toure back from an achilles injury for manchester city . james milner expected to be available for champions despite knee trouble .\nthe president took a jab at the wisconsin governor during an interview with npr morning edition host steve inskeep . obama was responding to walker 's claims that he 'd ` absolutely ' cancel or ` disown ' a deal with iran on ` day one ' if elected to higher office . jab at walker departed from the white house 's general strategy of staying out of the race to replace the sitting president . walker fired back on twitter : ` americans would be better served by a president who spent more time working with governors & congress rather than attacking them ' obama defended the informal agreement his administration made with iran and the shift toward cuba , which it may take of its list of terrorist countries .\nbillion dollar bully , an upcoming documentary , focuses on the review site 's impact on small businesses . filmmaker kaylie milliken spoke to several business owners who believe their yelp ratings went down after they declined to advertise on the site . the company has denied the allegations , citing court rulings , an ftc investigation and a harvard study as validation of their business practices .\nalvaro morata had attracted interest from arsenal before joining juventus . spain international made move to italy in # 15million deal from real madrid . manchester city are monitoring the 22-year-old after impressive season .\nstacey tipler , 33 , and partner scott chaplin , 34 , are already in jail for thefts . tipler stole money from royal marsden nhs trust over several months . cash she spent on designer handbags and wedding was for cancer drugs . tipler was ordered to pay pay back just # 28,737 within six months or spend another 18 months in prison . she is already serving four years . chaplin claimed he ` made nothing ' but was ordered to repay # 115,000 .\ngary locke will be confirmed as kilmarnock boss on friday . the club went unbeaten during locke 's first six games in charge . the 39-year-old former killie defender has paid tribute to his players .\nthe 54-year-old actress covers marie claire 's career-oriented supplement , which is featured in the may issue of the magazine .\nmusk unveiled powerwall device at press conference in california . daily use version will be able to store 7 kilowatt-hours of electricity . it will let users store renewable energy , or pay lower , off-peak rates . also revealed a larger model which is a ` infinitely scalable system ' .\npresidential hopeful 's video , featuring gay couple , gets mature rating in russia . russian tv channel feared airing it would break the country 's anti-gay propaganda law . clinton announced her support for same-sex marriage in 2013 .\nsteven finn was left out of the england squad for the west indies tour . the middlesex quick bowler has regained form after a tough 12 months . finn said he 's back to bowling like he was as ' a carefree 21-year-old ' his last of 23 test caps came for england back in 2013 .\n96 people died at the hillsborough disaster on april 15 , 1989 . liverpool players and fans have started paying tribute to the victims . a memorial service is to be held at anfield on wednesday . click here for all the latest liverpool news .\nraheem sterling 's contract with liverpool expires in the summer of 2017 . the forward could buy-out the final year of his deal for # 1.7 million . liverpool may be forced to accept a much lower bid for the 20-year-old . slaven bilic is in the frame to replace sam allardyce at west ham . southampton set to make summer bid for man united 's javier hernandez . tottenham still interested in move for aston villa 's christian benteke . west ham determined to keep hold of chelsea target aaron cresswell .\nraul reyes : in seeking latino vote , marco rubio his own worst enemy on two key issues : immigration reform , cuba relations . he says on health care , climate change and other issues , he breaks from latinos ' positions . polls show they do n't favor him .\nwarning graphic content . many seals who are just a few weeks old are shot , impaled and clubbed to death on ` sealing ' vessels for their fur . ` they are dying a violent death for fur products that nobody wants or needs , ' said sir paul mccartney who backs the charity who took chilling photographs . demand has diminished after purchase of seal products was banned by both european union and the united states . newfoundland government has pledged millions of pounds worth of subsidies to prop up country 's ` dying industry '\naston villa and reading both charged with failing to stop spectators encroaching on to the pitch during fa cup quarter-finals . villa 's victory over west brom was marred by chaotic scenes . reading 's win over bradford saw fans invade the madejski stadium pitch . clubs have until thursday to respond to fa charges .\nvideo shows the lions scaling the cage to look at the people inside . lions jump up on the side of the bars and eats meat through them . the encounter took place at the orana wildlife park in new zealand .\nengland needed to beat france in their final euro 2015 qualifier . but goals from sehrou guirassy and gnaly cornet won it for the hosts . late response from fulham 's patrick roberts was n't enough .\nswansea 's gerhard tremmel in goal behind the free agents ' 4-4-2 . glen johnson , kolo toure , ron vlaar and luke garbutt at the back . james milner , mikel arteta , tom cleverley and jonas gutierrez in midfield . burnley 's danny ings and manchester united 's james wilson up front .\npresident barack obama in jamaica for a meeting with caribbean leaders . he made an unscheduled visit to the bob marley museum in kingston . said the museum was ` wonderful ' - and he still owns all of marley 's records . he is first u.s president to visit the country since ronald reagan in 1982 .\nbritish teenager arrested on suspicion of helping to plot a terror attack on anzac day commemorations . the 14-year-old allegedly communicated with an australian man over plot . five men arrested by australian police after tip-off from uk officials . police are reviewing security arrangements for anzac day events in britain .\nteresa james , 40 , believes the pain involved is worth it for a bright smile . lisa arbiter , 33 , has bought high-strength bleach from america for 13 years . donna billson started before her wedding last year and is already a convert .\njustin rose posted photo on twitter of his high-tech indoor simulator . the technology is worth # 30,000 and offers player high-definition golf . rose impressed during masters 2015 and finished in joint second .\ncritically acclaimed series `` orphan black '' returns . `` turn : washington 's spies '' starts a second season . `` game of thrones '' is back for season five .\nthe ramp agent fell asleep in the plane 's cargo hold . he can no longer work on alaska airlines flights .\ncampaigners claim benefits paid to staff are higher than corporation taxes . critics say handouts allows companies to get away with paying low wages . citizens uk is calling for london living wage to be spread to rest of britain . it claims rolling out # 9.15 an hour wage would reduce benefits by # 6billion .\njacob king has been identified as man who stood up to anti-islam protester with swastika tattooed behind his ear . in a photo of mr king holding his arms out and going toe-to-toe with aggressor was snapped by kenji wardenclyffe . the anti-racism protester told daily mail australia he had asked the neo-nazi to back down and not fight his group .\ndante de blasio , 17 , to make his decision by the end of the month . his father has said that despite his six-figure salary the family will struggle to meet cost to send son to ivy league school .\nrj jackson is one of around 70 sufferers of netherton 's syndrome . four-year-old 's skin appears red and scaly , and can be itchy and painful . mother valerie jackson is regularly accused of ` scalding or burning ' him . says rj faces cruel taunts from bullies - most of whom are ignorant adults .\nalexis tsipras , greece 's prime minister , will meet vladimir putin in moscow . the meeting comes amid reports russia is considering bailing out greece . reports kremlin may offer loans and discounts on supplies of natural gas .\nlorraine valentine , 42 , suffers from erythropoietic protoporphyria -lrb- epp -rrb- rare condition means she burns , itches and swells in sunlight or uv light . was hospitalised for 6 days with burns after a family holiday in lanzarote . has to cover herself completely as small amounts of light leave her in pain .\njessica hardy , 23 , has tattoo with ex-boyfriend 's name on her forearm . did n't read kit instructions and applied chemical to skin without diluting . caused her skin to blister and burn but still left her with unsightly tattoo . mother-of-one 's story featured on tattoo disasters on channel 5 . tattoo disasters is on channel 5 's spike tuesdays at 9pm . extreme beauty disasters is on tlc thursdays at 8pm . tattoo nightmares is on trutv on mondays at 9pm .\nwales climbed to 22nd place in the recent fifa world rankings . england are currently 14th the current standings . chris coleman 's side are unbeaten in euro 2016 qualifying . aaron ramsey 's side face belgium in crucial clash in june .\nrobert lewandowski scored twice as bayern munich claimed 3-0 victory . thomas muller scored with eight minutes remaining to complete win . bayern munich maintained their lead at the top of the bundesliga .\nmullah omar , the reclusive founder of the afghan taliban , is still in charge , a new biography claims . an ex-taliban insider says there have been rumors that the one-eyed militant is dead .\noxford scored for under 21 side in 3-2 loss to man united on tuesday . the goal will push 16-year-old 's claim for a first-team debut . centre-back has trained with west ham first team this season . click here for the latest west ham united news .\nalison sharland agreed a # 10.34 million settlement with her ex-husband . but ex-husband charlie had lied about the value of his share in appsense . it 's claimed his value in the company may be worth up to # 132million . she has won the right to reopen their divorce battle in the supreme court .\nhbo is the us network behind game of thrones and the sopranos . service is available on apple tv and ios exclusively for three months . apple has also cut the price of apple tv system from $ 99 -lrb- # 65 -rrb- to $ 69 .\nkelly parsons injected herself twice a day with drugs for painful process . her eggs have created five kids so far - twin girls , twin boys and a baby boy . 35-year-old also frozen a number of her eggs for future use . mother-of-two has told her daughters they have brothers and sisters .\nterrorists beheaded the man in a public square in salah al-din province . huge crowds gathered in the streets to watch the group 's latest atrocity . the victim is believed to have been killed after he was accused of sorcery . gruesome image shows victim 's dead body surrounded by prayer beads .\nnew pictures show raheem sterling and jordon ibe with shisha pipes . the liverpool pair are dressed in casual clothing and have a pipe each . pictures emerged last week of liverpool star sterling smoking shisha . footage also emerged of him inhaling nitrous oxide from a balloon . the pictures create a fresh problem for liverpool boss brendan rodgers . the images will be a concern for any potential suitors of the liverpool star .\nthe two disturbing videos were uploaded to facebook on wednesday . a woman unleashes a racist tirade on her neighbours from over the fence . she swings a crowbar at the group of men and a tussle breaks out . the woman is struck in the face during the fight and is visibly bleeding .\nharry kane has been in superb form for tottenham this season , netting 30 goals for the club while also scoring on his senior england debut . fa chairman greg dyke has revealed that kane wants to play for england 's under 21s side at the european championships this summer . however , tottenham are concerned about the striker overplaying .\njon huxley , 46 , hopes to cash in on the fifty shades of grey effect . plans for complete transformation of westward ho ! in folkestone , kent . describes the expected environment to be ` civilised and friendly ' .\nasmir begovic is entering the final year of his contract with stoke city . the 27-year-old goalkeeper has been linked with other clubs previously . stoke are hopeful they can arrange a new deal to warn off potential suitors . click here for the latest premier league news .\nour beauty expert says ` frizz nightmare ' hair like deborah 's can be a battle . she sent her to the taylor ferguson salon in glasgow . had the nanokeratin system hair relaxing treatment -lrb- from # 195 -rrb- ` the coarse texture has gone and my hair has never felt so smooth ! ' .\nwest ham 's poor 2015 form has led to rumours sam allardyce could exit . but allardyce has already led west ham past last season 's points total . allardyce is planning for next year but unsure if he will be at west ham .\nconcierge service bluefish are offering dives to journey to the magnificent ship on the atlantic floor . the unique experience will let you see the famous grand staircase along with many other rooms and areas . the dives form part of valuable research , with data being relayed to scientists worldwide . so far 40 people have done the service compared to over 500 people visiting space .\ntomas berdych defeated gael monfis 6-1 , 6-4 on saturday . the sixth-seed reaches monte carlo masters final for the first time . berdych will face either rafael nadal or novak djokovic in the final .\ngloucester scored tries though bill meakes , tom savage and jonny may . exeter replied through a solitary elvis taione touchdown . the cherry and whites will contest their first european title since 2006 .\nwarren sapp was arrested night after the super bowl in phoenix , arizona . sapp , 42 , admits he paid for oral sex after meeting two women at hotel . said they met at bar and ` everybody got naked ' when he put $ 600 on table . sapp took pictures of them in bed ` because i 'm silly like that sometimes ' alternated between laughing and crying after going to jail was mentioned . britney osbourne , 23 , denied being paid $ 300 to perform sex act on sapp . quying boyd , 34 , pleaded not guilty to not having a license to escort count .\nselina dicker , 38 , from fulham , london , survived mount everest avalanche . climber ran for her life as a wall of snow and ice tore through base camp . she was in same group as google executive dan fredinburg who died . amanda holden 's said sister survived because she had altitude sickness .\naydian dowling has 40,000 votes - 30,000 more than the man in 2nd place . he transitioned in 2009 , lives in oregon with his wife of 3 years jenilee . men 's health competition looks for a ` well-rounded , health-conscious guy who has overcome some challenges in his life and can teach others '\nbalthazar king and ballycasey fell on first circuit at aintree on saturday . balthazar king needed veterinary treatment on the course after the fall . ruby walsh acted as flag man to warn riders to avoid the horse .\nlesley jonathon cameron was just 19 when he committed the crimes . he bludgeoned and stabbed maureen , 67 , and tamara horstman , 26 . he entered their perth home in broad daylight in december 2013 . he also raped tamara but it is not known if she was alive or dead . cameron described himself at the time as a ` walking time bomb ' . claimed he had taken ice and speed on the day of the murders . tamara 's twin brother said ` no sentence will ever be long enough ' justice heenan said ` it shows the insecurity and vulnerability of everybody in the community to random crime ' .\nmark and carrie are reprising their roles as luke and leia , respectively , which were introduced in 1977 . harrison , 72 , was not at the star wars panel in anaheim but he did appear at the end of the episode vii trailer . ford crashed his vintage airplane on an la golf course in march and suffered several injuries . producer kathleen kennedy said the veteran actor was a ` hero ' was at home ` resting '\namerican women look to celebrities for hair inspiration , often uneducated about the potential dangers of beauty procedures . many celebrities who wear weaves , such as beyonce , selena gomez and paris hilton , could be doing serious damage to their hair . jennifer aniston , sandra bullock and jennifer lopez were revealed as having the three most popular celebrity hairstyles .\nthe defense petition to return jamie silvonek to the juvenile facility she was initially sent to was denied on friday . jamie silvonek has been charged as an adult with homicide and criminal conspiracy . her boyfriend caleb barnes , 20 , is charged with homicide . cheryl silvonek 's body was found stabbed in a shallow grave about 50 miles northwest of philadelphia . authorities said silvonek met barnes when she was 13 but said she was 17 . before the killing silvonek allegedly texted barnes ' i want her gone '\ncrystal palace beat manchester city 2-1 on monday night . england boss roy hodgson and ex-rolling stone bill wyman were there . chairman steve parish posts picture with them and alan pardew .\nradical claim was made by 58-year-old canadian , andre gignac . spotted ` bunker ' in an image taken by the nasa rover opportunity . ` you can see a person behind the bunker 's window , ' gignac claims . nasa expert says the ` bunker ' is simply effect of shadows in the image .\nmark hawkins , 49 , allegedly barricaded himself inside a vintage blue bus . wanted for failing to appear in court for ` delivery of controlled substance ' during seven-hour standoff , hawkins ` shot and wounded police dog ' swat team fired over 12 rounds of tear gas in bid to force him out of bus . they finally decided to ram armored car into vehicle , punching holes in it . at about 6.30 pm friday , hawkins was shot nine times by cops ; later died . officers involved are on administrative leave ; an investigation is ongoing .\nwellington silva signed for arsenal in 2011 for # 3.5 million from fluminese . he was ineligible for a work permit and has had five loan spells in spain . he has been granted spanish nationality , allowing him to play for arsenal . read : theo walcott will open arsenal talks in next fortnight . click here for all the latest arsenal news .\nwelsh wizard gareth bale opened the scoring in sunday 's stunning win . real madrid put nine goals past granada to keep pressure on barcelona . bale treated himself to a bbq in the spanish sun following victory . cristiano ronaldo scored five goals in the sensational team performance .\nmap 's based on ufo sighting dataset from the national ufo reporting centre and open source mapping software . it shows 76 years of ufo sightings all over the world , with more being spotted in recent years . surge in us sightings in the 1950s and 1960s may be explained by the testing of the u2 spy plane , cia said . the internet and rise in drone use could explain why there are more ufo sightings than ever , experts claim .\nraheem sterling has not signed new liverpool contract . sterling gave an interview last week suggesting he might want to leave . but brendan rodgers insists the forward has never expressed desire to go .\ntiger woods drilled an iron into a tree root on the ninth hole at augusta . revealed his wrist bone popped out as a result - so he forced it back . this is the latest of a string of unfortunate injuries for the 39-year-old . he ended the tournament tied for 17th , his best finish in over a year . 21-year-old texan jordan spieth became the youngest winner since woods .\ndavid bulman , 55 , left his wife with a black eye and a lump on her head . a row had broken out after bulman condemned her for not doing chores . she threw the managing director 's shirts outside before he attacked her . bulman was given a 12-month community order at bristol crown court .\nloren mathieson filmed her dog performing the gravity-defying stunt one day at home after he tried on a set of new booties . footage shows him taking a few steps forwards before planting down his front feet and launching his back legs vertically in the air .\nadam federici lets alexis sanchez 's extra-time effort through his legs . sanchez 's goal made it 2-1 to arsenal who will now play in the fa cup final . federici left inconsolable after error but says he will come back stronger .\nalbert is breed of cat called selkirk rex known for its wild , tufty fur . he is named after albert einstein thanks to his untamed grey coat . his owners live in salt lake city and regularly post pictures of their cat .\nkarl oyston will face charges next month over shocking text messages . oyston faces a ban from footballing activity if found guilty . he could also be handed a fine and mandatory fa education course . blackpool chairman send abusive messages to a fan before christmas .\nthree russian ships that docked in olavsvern naval base for the entire winter . base which was shut down in 2009 is nestled deep inside mountainous region . norway 's military fears russian presence on ` strategically important ' coastline .\nsheriff stanley glanz told a press conference on monday that the fbi investigation had cleared his department over the april 2 death . robert bates , a 73-year-old reserve deputy , continues to face second-degree manslaughter charges over the death of eric harris . the two full-time deputies seen in the videotape of the incident have been reassigned for their own safety . sheriff glanz said he does n't believe reports that bates ' training records were falsified and that he has in intention of resigning over the incident .\nalison saunders decided against pressing charges against lord janner . she was persuaded against taking a case by the labour peer 's dementia . two of britain 's foremost legal experts recommended pressing charges . political sources want the decision overturned over ` whitewash ' fears .\nmanchester united captain wayne rooney says his side are focused on qualifying for the champions league . man utd are currently fourth in the premier league table after a 2-1 win over rivals liverpool at anfield last time out . the red devils take on aston villa in their next game at old trafford . rooney has just captained england in an international friendly against italy . his man united team-mate michael carrick has been singled out for his performance for the three lions in turin . click here for the latest manchester united news .\ngold coast city council will be able to shut down illegal party houses . more than 700 party houses across city that regularly attract loud parties . party houses are just short-term accommodation rental properties . police are often called in to handle noise complaints and lewd behaviour .\nwladimir klitschko will match joe louis ' record of 27 heavyweight bouts . he is set to take on bryant jennings at madison square garden . klitschko has dominated the heavyweight division for nearly a decade and says he is still fighting fit , shrugging off any talk of retirement . jennings insists he is not intimated by his opponent 's record .\nthe prime minister travelled from london to penzance on the sleeper train . he looked stressed and exhausted as he got off the train this morning . cameron was sporting jeans with smart black shoes and a navy jacket . tories are keen to drive the lib dems out of the south-west at the election . labour are still ahead in the polls nationally , with 34 % set to back the party . tories are 1 % behind , on 33 % , with the lib dems on 7 % and ukip on 14 % .\namanda berry , 29 , and gina dejesus , 25 , described in their own words how they were raped , tortured and chained up by ariel castro for a decade . amanda found out from tv news that her mother had died of a heart attack in 2006 and a month later , discovered she was pregnant by castro . she recalled : ' i think my mom sent me this baby . it 's her way of giving me an angel ' she gave birth on christmas day . amanda recalls mixed emotions at learning castro killed himself in prison . the two survivors have written a memoir being published on april 27 .\nmonaco face juventus in champions league quarter-final second leg . ligue 1 side have moved on expensive stars while bringing through youth . coach leonardo jardim is proud after his player 's eliminated arsenal . dimitar berbatov : champions league semi-final is within monaco 's reach .\njohn lord , 86 , was found dead close to where he and wife june , 81 , walked . his family said he had left a note before he disappeared on april 6 . wife of 63 years died from ` catastrophic bleed ' to the brain six days earlier . police found mr lord 's body in river trent near couple 's favourite beauty spot .\nlily sharp convinced her mother that she had been kidnapped . she text her mum pretending to be a kidnapper demanding a ransom . unsurprisingly her panicked parent did not find the trick funny . twitter post received 18,000 retweets and 25,000 favourites .\nmessi completed a light training session at barcelona on thursday . he has almost recovered from a foot injury sustained in clasico with real . argentina star sat out friendly matches with el salvador and ecuador . barcelona hoping to maintain la liga lead against celta vigo . luis enrique 's team remain on course for the treble .\njournalist jonathan maitland is confident the public is prepared for drama . an audience with jimmy savile to open in june starring alistair mcgowan . the actor is best known for his comedic impressions of celebrities . previously portrayed savile in his popular bbc series the big impression . lawyer acting on behalf of savile 's victims said they were happy with play . but some critics condemned subject choice as ` not right ' and ` unbelievable '\ncesc fabregas flag currently adorns arsenal 's ken friar bridge . arsenal fan tv 's claude callegari believes it should be taken down . fabregas left arsenal for barcelona in 2011 before signing for chelsea . 27-year-old midfielder is enjoying a fruitful first season at stamford bridge . arsenal vs chelsea special : cesc fabregas to make emirates return .\nmichelle maclaren is no longer set to direct the first `` wonder woman '' theatrical movie . maclaren left the project over `` creative differences '' movie is currently set for 2017 .\nbritish tabloid releases video it says shows the robbery being carried out . british police say they did n't respond to a burglar alarm in jewelry district . police give no value of the amount taken in the heist in london 's jewelry district .\npor-bajin was discovered a century ago and is still a mystery for experts . the 3.5 hectare site is located in a siberian lake near the mongolian border . the unexplained site is estimated to have been built between 744-840 ad .\nvideo of toya graham going to a protest and forcefully removing her son went viral , drew a lot of praise . the single mother of six tells cnn her son was scolded that he was n't brought up that way . michael singleton says he knows his mom was trying to protect him .\nobsidian can produce cutting edges many times finer than even the best steel scalpels . some surgeons still use the blades in procedures today .\nsaudi general says more than 1,200 airstrikes since campaign began march 26 . three saudis were killed in attack on border position , source tells cnn .\nandrew chan and myuran sukumaran 's last wishes have been released . sukumaran wishes to spend his last days painting for as long as possible . andrew chan has requested to visit the church with his family . it has been confirmed that they will be executed at midnight on wednesday . myuran sukumaran has been painting morbid self-portraits . in one painting sukumaran has a black hole where his heart should be .\nresidents in oldham were confused over growing pile of rubbish in alley . they had begun receiving letters from the council threatening legal action . one home owner installed cctv to find out who was fly-tipping in street . the video revealed council workers had been discarding bin bags in alley .\nnaoki ogane claims that chelsea have made a bid for yoshinori muto . the fc tokyo forward says he is still considering a move to london . muto 's former manager , ranko popovic , says his potential is ` amazing ' jose mourinho has admitted that he is aware of the japan international .\ncourt rules american bulldog winston must leave his home this month . pet 's attacks led to 14-month ban on deliveries on two blackburn roads . his owner hayley sandiford claims winston is ` not a danger ' to anyone . ` unfortunately he does have a thing about postmen but it is the mail they carry and not the postmen themselves ' , she said . winston 's eviction means that postal deliveries will resume on may 1 .\nthree vehicles collided on the brisbane valley highway , near fernvale . a 40-year-old man with chest and shoulder injuries was airlifted to hospital . also flown out was a six-year-old girl suffering from abdominal pain . six others - including an infant and two young girls - had minor injuries . one person involved in the crash was found trapped inside their vehicle .\nteller lake in boulder , colorado , is overrun with 3,000-4 ,000 goldfish . officials believe four or five fish were dumped two or three years ago . will potentially destroy the natural ecosystem by eating resources and introducing foreign diseases . the lake will either be drained or the fish removed using electroshocking , where an electrical current is put in the water , paralyzing the fish .\njordan spieth set a masters record 54-hole total of 16-under-par . the american carding a 70 to take a four-shot lead into the final round . justin rose collected five birdies on his final six holes to go 12 under . rory mcilroy and tiger woods were among those at six under after 68s .\ninter milan are keen to sign manchester city midfielder yaya toure . the ivorian is open to a move if the right challenge presents itself . toure insists that he will not remain at city just to pick up his wages . the 31-year-old could be sold by city as they look to reshape their squad . read : manuel pellegrini is ` weak ' , says yaya toure 's agent .\nmikel gonzalez own goal puts atletico madrid ahead inside two minutes . antoine griezmann adds second after goalkeeping error . champions could have scored more as real sociedad offer very little .\npension firms said britons remain baffled about how radical changes work . over-55s are now able to withdraw all or part of their pension pots . some customers in their 20s have been trying to withdraw retirement savings , despite being three decades too young . others do not know they face hefty tax bill if they remove all cash at once .\nthomas piermayr has been training with the championship club this week . blackpool sit bottom of the table and are set to be in league one next year . piermayr is a free agent and had been playing for colorado rapids .\nbarcelona temporarily opened up a seven-point lead over real madrid at the top of la liga . argentina superstar lionel messi opened the scoring with a trademark curled finish after 33minutes . second-placed real madrid play rayo vallecano later on wednesday evening to close the seven-point gap . luis suarez doubled the catalan 's lead with a similarly curling left-footed stunner after the interval . barca defender marc bartra netted the third with a far post header from xavi 's whipped in cross . former liverpool striker suarez tapped in a late goal from pedro 's cross in injury time to complete the rout .\nvideo seems to show militants in libya holding one group of at least 16 captive on a beach and 12 others in a desert . before the killings a masked fighter in black brandishes a pistol as he vows to kill christians if they do not convert . ethiopia unable to confirm its citizens were killed by militants in the footage but condemned the ` atrocious act ' it comes two months after 21 egyptian christians were beheaded by extremists in a similar video from libya .\nphil taylor suffered his fourth loss of the season with thursday 's defeat . peter wright lost 7-4 to adrian lewis , while kim huybrechts drew 6-6 with stephen bunting on ` judgement night ' in manchester . results meant wright suffered elimination due to leg difference . league leader michael van gerwen romped to a 7-4 win over james wade . raymond van barneveld drew 6-6 with gary anderson in the other clash .\nharry kane captained tottenham for the first time in 0-0 draw with burnley . it came after he played and scored for england for the first time . kane has hailed the spell as the ` best week of my life ' in a brilliant season . spurs boss mauricio pochettino has not given up hope of top-four place . but they are now seven points adrift of fourth-placed manchester city .\nalena hughes , the wife of the florida postal worker who landed a gyrocopter on the lawn of the u.s. capitol says her husband is a patriot . doug hughes performed the risky stunt wednesday to protest campaign finance laws . the man has received support from the public and his wife says what he did was very brave .\nmost americans say businesses should not discriminate against same-sex weddings . public opinion has shifted on the issue since last fall . indiana passed and later changed its religious freedom law after public outcry .\ntory leader later insists there will be not ` bodily contact ' during debate . cameron expected to clash with farage on immigration and europe . seven-way debate will be broadcast live on itv from 8pm tonight . strict rules decided who will speak and when during two-hour show .\nchelsea can secure the league title if they beat arsenal and leicester . jose mourinho and arsene wenger have had a decade of touchline battles . mourinho has hit back at wenger 's ` defensive ' jibes ahead of sunday . he said : ` if it was easy , you would n't lose 3-1 at home to monaco ' .\naboriginal model management australia has 40 female clients so far . new national casting call is now looking for both sexes aged up to 60 . founder is expecting the numbers to take off as interest rapidly grows . target , bonds and big w are very interested in hiring aboriginal models . kira-lea dargin says demand for indigenous models is slowly changing in the high fashion market but should be moving faster .\nmirko filipovic aims to avenge 2007 first-round defeat to gabriel gonzaga . filipovic was beaten by a head-kick from the brazilian eight years ago . he admitted revenge is a motivating factor ahead of saturday 's bout .\nlaura wells is a successful plus-sized model who has worked in new york . she revealed agents tell models to eat a biscuit a day before fashion week . wells also revealed the first time she was approached by talent scouts . they asked the australian beauty if she wanted to be a plus-sized model . wells said she felt like she wanted to punch them in the face for asking her . her misconceptions about plus-sized models led her to think she was being called fat .\namy , 24 , has designed a summer range full of pretty pastels . amy says her garments are ` definitely ' for real women . has faced the wrath of twitter trolls .\nswiss international ricardo rodriguez nets penalty in second half . kevin de bruyne and andre schurrle miss chances in win . borussia dortmund also reach last four of german cup on tuesday .\nsarah appeared on monday 's jeremy kyle show to have dna test . wanted to find out if phil was her real father . he had raised her but mother cast doubt on his paternity . they were heartbroken to discover they are not related .\nrafael ramos and wenjian liu were murdered on patrol in december . their families threw out the ceremonial first pitch at the mets ' home opener . they were joined by mayor de blasio , who was booed when introduced . tom brady and ` american sniper ' widow tara kyle also threw first pitches .\nkay hafford was shot in the head after a confrontation with an angry driver . she survived the shooting on north freeway in houston and called 911 . hafford has faced dietrich evans who was arrested on suspicion of attack .\nwitnesses reported massive plumes of smoke billowing above the building . famous for being used a filming location for tv show inspector morse . firefighters have been battling fire at five-star gothic hotel since 4.30 pm . blaze is not believed to be suspicious and is thought to have started in ground floor kitchen .\naustralian tourists are planning to holiday abroad between may and august . most of the holiday destinations are in europe , number one being greece . seven out of the top ten destinations for aussie are in europe . others include toronto in canada , ho chi minh city in vietnam and colombo in sri lanka .\ncraze has taken off thanks to owners posting pictures on social media . initial idea was to give the pets a more eye-grabbing and clean-cut look . one dog salon worker in taipei has insisted that ` the dogs do n't mind ' .\njohn goodwin , 75 , of atkinson , new hampshire , went on trial this week on six counts of aggravated felonious sexual assault . he had pleaded not guilty in the case in which prosecutors said he repeatedly sexually assaulted a student , who is now 24 . the former student said he did n't come forward until 2013 because he was embarrassed . court officials said he shot himself outside his car while not in custody . he was airlifted to a hospital with life-threatening injuries but his condition has not been disclosed .\nnike have launched the new world cup uniforms for the us women 's team . fans have been outraged because it does n't represent stars and stripes . company has defended the style and players have been positive .\nwolves beat nottingham forest to continue their push towards the playoff places and all but end their opposition 's chances of promotion . wolves are seventh , level on points with sixth-placed ipswich . kenny jackett believes his side must maintain their focus to stay in touch . they face leeds united in their next encounter , on easter monday .\njamie pettingill avoids prison time after charged with armed robbery . pettingill threatened to slice off the face of one of the people he robbed . judge sandra davis did not jail pettingill , due to fears over his surname . pettingill 's father , trevor , linked to infamous walsh street murders in 1988 . the pettingill family inspired australian underworld film , animal kingdom .\npatrick o'melia flagged down by kelly boan after her brother took heroin . justin braddock was unconscious and it took seven minutes to revive him . the 34-year-old had taken heroin and was taken to hospital by ambulance . but when officers arrived to question him , braddock tried to run away .\nsaracens lead 6-3 at the break thanks to two charlie hodgson penalties . wesley fofana raced onto a brock james chip for the opening try . a late owen farrell penalty kept saracens in the hunt . but brock james struck a 72nd penalty to seal the win .\nmclaren driver jenson button ran the london marathon 2015 . he finished with a time of 2 hours 52 minutes and 30 seconds . button praised the ` amazing atmosphere ' and collective spirit of the runners at the event .\nthe taxpayer-funded temporary assistance for needy families program , currently provides payments of up to $ 497 per month for a family of four . the list of do n'ts , included by the republican-dominated kansas legislature in a bill that gop gov. sam brownback planned to sign thursday , runs to several dozen items . the number of cash assistance recipients in kansas has dropped 63per cent since brownback took office , to about 14,700 in february . brownback said the decline confirms the success of his policies , but critics note that u.s. census bureau figures show the state 's child poverty rate remaining at about 19per cent through 2013 .\nbritish transport police are clamping down on ` casual thuggery ' on trains . this season alone , there has been 630 football-related incidents recorded . chief constable paul crowther said crimes may be ` under-reported ' . a summit has been organised to determine the scale of the problem .\narsene wenger is a great admirer of raheem sterling , while both he and theo walcott are struggling to negotiate new deals . sterling has scored more goals and provided more assists this season . walcott is an example of unrealised potential that sterling must avoid .\ndug and owner lindsay castro were hiking in fontana , canada . lindsay heard a rattle sound and backed away but dug ran toward it . snake jumped out , bit him , his face swelled to twice its size . after two days of intensive antidote treatment , he is going home .\naston villa earn 2-1 fa cup semi-final victory over liverpool . mario balotelli 's late goal was incorrectly ruled out for offside . brendan rodgers believes the goal should have stood .\nin new york city , opt for free attractions , like central park or the highline . stay just outside the city centre in zurich and toronto to save . tripadvisor offers plenty of low-cost accommodations , all for under # 100 .\nvideo emerged showing two french tourists torching a quokka . footage sees men laugh after igniting the creature with aerosol and lighter . the men were given the choice of paying $ 4000 or spending a week in jail . the pair were released from jail on thursday after choosing the latter . the stay cost taxpayers $ 1810 a day despite them having $ 12,000 savings . animal rights activists have said that the punishment was too lenient .\nintrepid travel cancels all trips to nepal until at least may 11 . customers with bookings offered full refund or trip somewhere else . nepal expert at kuoni warns tourists to expect a ` frenzy , ' and that they wo n't be ' a priority ' foreign office 's main focus is ensuring britons keep themselves safe . helpline set up to offer advice for anyone caught up in the disaster . warning to tourists heading out to the region to be aware that the area is always ` at high risk ' of earthquakes . queues begin to build at tribhuvan international airport as tourists look to leave nepal as soon as possible .\nseven years ago , insurance saleswoman katia apalategui lost her father . her grieving mother coped with loss by sniffing late husband 's pillowcase . inspired her to come up with permanent way to capture person 's scent . but bottles of loved ones perfume will set customers back # 400 a bottle .\nsusannah ross , 20 , went on a trek last week and has not been heard from since the earthquake on saturday . other missing britons include a married couple and a climber who was apparently caught in an avalanche . around 40 travellers from the uk are listed as being missing in the wake of the deadly disaster .\ncharli , from queensland , australia , has turned charliscraftykitchen into youtube 's largest food channel in less than three years . the channels earns an average of 29 million views per month . charli 's five-year-old sister ashlee also stars in the how-to cooking clips . one of their most popular videos , which demonstrates how to make frozen-themed popsicles , has received 57 million views in less than a year .\nman was cutting the grass with a ride-on lawnmower when it overturned . richard clements was trapped under machine in pond outside farmhouse . family pulled him from water but he died at the scene after cardiac arrest . it comes just two years after man died in similar circumstances in village .\narsenal won all four of their premier league games in march . striker olivier giroud scored five times in four appearances . spurs ' harry kane was bidding for a third straight monthly award .\ncyber experts reconstructed searches on pilot 's tablet from march 16 to 23 . lubitz locked captain out of cockpit and crashed jet a day after last search . he ` lied to doctors by saying he was on sick leave when he was still flying ' co-pilot was prescribed ` anti-anxiety drug that can increase risk of suicide ' . dna has been found from all 150 people on board . 40 ` very very damaged ' mobile phones also found at the site .\nsix-year-old lucy howarth completely unfazed by the prime minister . youngster pulled a series of faces as mr cameron tried to read to her class . he had visited primary school in bolton to unveil new tory schools policy . pupils who get poor sats will be forced to resit them in secondary school . pm said he wanted ` more rigour and zero tolerance of failure ' in schools .\nmaryland start-up promises to turn lager into craft beer with ` tea bag ' infusion sachet contains a blend of hops , fruit peels and natural spices . after two minutes in a pint , the hop theory bag has created ` craft beer ' criticised by breweries for being misleading about what craft beer is .\nspurs have won only two of their 10 premier league lunchtime clashes . mauricio pochettino believes playing in europa league could be a factor . spurs face pochettino 's old club southampton in saturday 's early game . click here for the latest tottenham hotspur news .\ngabriel ng filmed the scenes during a three-month solo trip to visit family . his video includes shots of picturesque beaches and religious sites . most of the scenes were shot on ko samui island in the gulf of thailand .\nopening statements are scheduled monday in the trial of james holmes . jury selection took three months . holmes faces 165 counts in the movie theater massacre that killed 12 people .\nleroy fer has not played since damaging knee ligaments in mid-february . qpr boss chris ramsey hopes he will make the squad to face west ham . defenders richard dunne and yun suk-young have returned from injury .\nbec and bridge showcase bikinis as part of spring/summer16 at mbfwa . designers becky cooper and bridget yorston showcase swim line . the collection featured metallics , jewel tones and signature boho charm . jecinta campbell , carissa walford , rebecca judd all sat front row .\npåhoj was designed by swedish designer lycke von schantz . once a cyclist arrives at their destination the seat can be used as a stroller . it has a ` lightweight chassis ' and is 3.2 ft tall -lrb- 1 metre -rrb- product will launch on kickstarter next week but prices are not known .\nus network hbo has pledged to cut off aussies who access their shows . hbo has warned users via email they will deactivate accounts on april 21 . the service offers popular tv shows including games of thrones and girls . hundreds who use getflix , unlock.us or unotelly will be affected .\nqueens park rangers twice threw away a lead in clash with aston villa . tony fernandes experienced a range of emotions during 3-3 draw . rangers chairman watched the game from afar on his iphone . richard dunne and leroy fer could return for sunday 's visit of chelsea . click here for all the latest qpr news .\nturkish court imposed blocks as images of siege shared on social media . images ` deeply upset ' wife and children of hostage mehmet selim kiraz . prosecutor , 46 , died in hospital after hostages stormed a courthouse . two of his captors were killed when security forces took back the building .\ninterest in the hit bbc series poldark has given cornwall 's tourism and housing market a boost . estate agents said they have seen a rise in interest from fans who are interested in purchasing a second home . beachfront property near portreath has seven bedrooms , six reception rooms and seven bathrooms .\ngroups such as california-based wings of rescue or south carolina-based pilots n paws , recruit pilots to volunteer their planes , fuel and time . the two non-profits say their concept has been a roaring success with the numbers increasing year-on-year . all dogs have to be spayed or neutered , microchipped and vaccinated before they take off . it 's reported that most pooches sleep in the air and do n't get sick .\nvaccine named rts , s could be available by october , scientists believe . will become the first approved vaccine for the world 's deadliest disease . designed for use in children in africa , it can prevent up to half of cases . experts hail ` extraordinary achievement ' for british firm that developed it .\nkyle naughton ruled out for six weeks with ankle ligament damage . david meyler was sent off the tackle and will serve a suspension . angel rangel could replace naughton for their home game versus everton . click here for all the latest swansea news .\nserena williams struggled to beat sara errani during fed cup clash . world no 1 williams eventually defeated errani 4-6 7-6 -lrb- 3 -rrb- 6-3 . williams lost doubles match alongside alison riske 6-0 6-3 .\ndeath toll in nepal climbs above 4,600 , officials say , with more than 9,000 injured . shattered villages near epicenter are hard to reach , says aid worker in the area . more bad weather is forecast for the region in the coming days .\nthe cheeky cards were given by men to women in 19th century america . some were romantic in tone , others more blunt - but they were always very polite . many men would ask for the card back in return if they were rejected .\nedinho has been hired as coach of the second division side . rivaldo currently serves as mogi mirim 's president . edinho is the son of brazilian legend pele . he is appealing a 33-year prison sentence .\nfirst broadcast hosted by a man with an american-sounding accent . the news bulletin spends almost 10 minutes going over the day 's events . boasts of ` roasting the flesh ' of opponents and ` martyrdom operations ' isis commanders already have an english magazine to communicate . comes days after announcement that all isis nurses must speak english .\nplant geneticists at pennsylvania state university discovered that a single gene called tcsad1 is responsible for the melting point of cocoa butter . discovery could lead to chocolate with unique textures and new drugs too . research could also be used to create new varieties of cocoa plants . experts hope find could profit the farmers who grow cocoa .\nchelsea pranksters play practical joke outside the emirates stadium . four masked men replace arsenal sign with blue and white letters . chelsea signing is removed by club staff after just 10 minutes . premier league rivals go head-to-head at the emirates on sunday . chelsea are currently 10 points clear at premier league 's summit .\nmethyl bromide was improperly used in u.s. virgin islands resort that family was staying in when they were poisoned . steve esmond , his wife theresa divine and their two teenage sons fell seriously ill while staying at the sirenusa resort in st. john . u.s. environmental protection agency said the toxic pesticide may have been improperly applied in locations in puerto rico as well . epa regional administrator judith enck said she is not aware of anyone sickened by the pesticide in puerto rico .\nlib dem leader makes desperate attempt to distance party from allegations . claims obese mp did not belong to lib dems at the time of his abuse . ruled out inquiry into claims liberal party offered hush money to activist .\nlawyers for the parents of michael brown announced wednesday night that they planned to file a civil lawsuit against the city of ferguson . attorneys for the family said in a statement wednesday night that the wrongful death lawsuit would be filed thursday . brown was unarmed when he was fatally shot by a white police officer in a st. louis suburb in august 2014 . the shooting led to sometimes-violent protests and spawned a national ` black lives matter ' movement calling for changes in how police deal with minorities .\nin baltimore , after the death of freddie gray , riots erupted , cars were set on fire and 200 arrests were made . eric liu : liberals and conservatives react predictably , see the riots as confirmation of their views . it 's time to push each other out of our ideological and identity comfort zones and change the status quo , he says .\nharry kane captained tottenham for the first time in 0-0 draw with burnley . it came after he scored and won his first two caps for england this week . kane has hailed the spell as the ` best week of my life ' in brilliant season .\ncraig dawson to serve ban following gareth mcauley 's incorrect red card . wba keeper ben foster ruled out for six months with knee injury . qpr have no fresh injury concerns with richard dunne and leroy fer out . queens park rangers teenager darnell furlong also ruled out .\nlucas holds record of playing more liverpool games without winning a major trophy than anyone else in 50 years . liverpool face aston villa in fa cup semi-final at wembley on sunday . fa cup final next month could be steven gerrard 's last liverpool game .\nthe controversy over indiana 's religious freedom law is complicated . some factors you might have not considered .\nmr stevens accused of not giving information over to macpherson inquiry . today he told channel 4 news : ` i 'm not putting up with any more c ** p ' was deputy commissioner from 1998 to 2000 when report was being made . it 's almost 22 years since stephen lawrence was murdered in racial attack .\nthomas bjorn 's wayward shot flew into crowd of spectators . ball flew into lap of female fan but was able to take free drop . tom watson hit shot of the day from greenside bunker . masters 2015 golf : friday 's tee-off times at augusta national . click here to follow the day two masters 2015 action .\nthe design comes from scientists at the university of wollongong . they won a us$ 100,000 grant for a next generation condom in 2013 . it 's made from a strong and flexible material called hydrogel . the groundbreaking design can offer functions like self-lubrication . the scientists will run biometric tests to maximise the pleasurability .\nfloyd mayweather takes on manny pacquiao in las vegas on may 2 . but no tickets have been sold for the event at the mgm grand . briefs are on sale on ticketing websites but the sellers do not have them . less than 1,000 are expected to go on public sale priced from $ 1,500 . mayweather-pacquiao weigh-in will be first ever with paid-for tickets . click here for all the latest floyd mayweather vs manny pacquiao news .\nlewis hamilton over half-a-second clear of team-mate nico rosberg . sebastian vettel was a further second adrift of the mercedes pair . jenson button was 13th and fernando alonso 17th for mclaren .\nit has been revealed the government began secretly tracking phone calls under a program created for the drug enforcement agency in 1992 . the program forced phone companies to hand over all communication on a daily basis between any americans calling any 116 watch list countries . the data collected included phone numbers and time calls were made , though actual content was not included . the program was approved by every administration beginning with president george h.w.bush . it was only shut down in september 2013 , this after attorney general eric holder became nervous in the wake of the edward snowden leaks . the program also served as a blueprint for the national security agency .\nnancy kanwisher works at the massachusetts institute of technology . she used her bare scalp to explain what the different brain regions are . the short video was posted on the scientist 's brain talks website .\nliana barrientos allegedly used an emergency exit door at a bronx subway station instead of paying her fare just hours after leaving court . barrientos spat at reporters and swung her arms as she left the court for a second time on friday where she was released without bail . married 10 men in 11 years - with six in one year alone . alleged scam occurred between 1999 and 2010 . her eighth husband was deported back to pakistan for making threats against the us in 2006 after a terrorism investigation . the bronx woman plead not guilty to two fraud charges friday . caught after describing her 2010 nuptials as ` her first and only marriage ' , sparking an investigation . the department of homeland security was ` involved ' in barrientos ' case , the bronx district attorney 's office has said .\nattorneys for lesley mcspadden and michael brown sr. , filed the complaint at the st. louis county courthouse on thursday . lawsuit alleges that officer darren wilson destroyed evidence after he shot their son on the street of the st. louis suburb last august . civil suit claims brown did have his hands up in surrender when he was killed - a claim strongly disputed during last year 's investigation . they are seeking $ 75,000 in compensation , as well as unspecified punitive damages . also called for a court order prohibiting the use of police techniques ` that demean , disregard , or underserve its african-american population ' .\nlee tomlin 's superb solo effort gave middlesbrough a 50th minute lead . patrick bamford doubled the hosts lead on 66 minutes . bamford could have made it 3-0 but saw his penalty saved late on . win moves middlesbrough on to 78 points in the championship in fourth .\ntipper lewis , 43 , has been consuming superfoods for over 20 years . has glowing skin , high energy levels and no doctor . would love to see children in schools eating superfoods .\nfree app is available on facebook , android , ios and on desktop browsers . it starts with four squares and asks you to identify the different shade . board grows to up to 81 squares and differentiation is subtle each time . and a score of 31 or above is a considered a sign of ` great eyesight ' .\nalfred guy vuozzo , 46 , shot dead brent mcguigan and his son , brendon . he carried out shooting last august to avenge nine-year-old sister , cathy . cathy was killed in a car smash involving brent 's father , herbert , in 1970 . herbert given nine-month sentence for dangerous driving ; has since died . vuozzo , from prince edward island , said the sentence had ` haunted ' him . knew victims , who lived near montague , were not involved in fatal crash . defendant pleaded guilty to first - and second-degree murder in february . he was jailed for life on monday ; he is not eligible for parole for 35 years .\ncheryl howe , 32 , was diagnosed with polycystic ovary syndrome at age 12 . morecambe mother-of-two fought for six years for treatment on the nhs . even conchita wurst sent her a note of support after abuse from trolls . has now been told she 'll receive more than # 10k in funding .\nsix people taken hostage in a kosher market siege say media outlet endangered their lives . they hid in a cold room during the attack in paris by gunman amedy coulibaly .\ncyclone strength winds have lashed parts of nsw as heavy rain continues to fall . commuters using umbrellas have abandoned them in bins and gutters after the wind destroyed them . workers have posted pictures of broken brollies around sydney with the hashtag #umbrellageddon . manufacturers say if damage is caused by the wind that does not constitute a faulty frame . ` always carry your umbrella into the wind and not over your head , ' umbrella expert advised .\ncrowds cheered as pema lama was pulled , dazed and dusty , from rubble . placed on stretcher with an iv drip in his arm and a brace around his neck . comes as mother is reunited with baby rescued after 22 hours in rubble . medic said teenager became ` pancaked ' between two floors when quake hit . another survivor rescued after 82 hours has had one of his legs amputated .\ntracy walters , 48 , and husband ian , 51 , had been on a ` make or break trip ' he is accused of driving his 4x4 into a tree at 84mph and killing his wife . giving evidence , he told jurors their sex life had been ` very fulfilling '\nwigan confirmed sam tomkins is to re-join the club during thursday 's derby against warrington . the 26-year-old full back is to cut short his stay in the nrl with new zealand warriors .\nthe research looked at pomc neurons that work toregulate appetite . when pomc neurons are absent , animals and humans grow obese . this also happens when genes inside the pomc cells are n't working .\nandre cole , 52 , became the third convicted killer put to death this year in missouri and was executed by lethal injection on tuesday . he was given the death sentence for the 1998 murder of anthony curtis . cole was angry that a payroll withholding order was issued to his employer , taking the money out of his check for child support . he confronted ex-wife terri cole on august 21 , 1998 and used a kitchen knife to repeatedly stab curtis and terri cole ; she survived the stabbing . he declined a last meal and had inmate tray meal of turkey and bologna sandwich , a cookie and fruit punch .\nthe bayern munich boss has yet to commit his future to the german giants . pep guardiola has been linked with a switch to manchester city . former bayern boss ottmar hitzfeld says lucien favre should replace him . borussia monchengladbach set for champions league football next year .\ntim tebow signed with team monday after news of the deal leaked sunday . he inked deal in time to participate in team 's voluntary offseason program . 2007 heisman trophy winner played for patriots , jets and broncos in nfl . has thrown 173 completions , 17 touchdowns and nine picks in 35 games . terms of the deal with the 6-3 , 236-pound player have not been released .\nlewis hamilton won the chinese grand prix ahead of nico rosberg . niki lauda is fully expecting nico rosberg to turn ` nasty ' at some stage . lauda accused rosberg and hamilton of being ` egocentric b ******* '\nap mccoy will retire immediately if he wins the grand national . he rides favourite shutthefrontdoor in the # 1m race on saturday . the champion jockey won the famous race on do n't push it in 2010 .\nlos angeles angels are close to deal sending outfielder to texas rangers . hamilton admitted to relapsing and abusing drugs and alcohol in february . still has $ 83m left on five-year , $ 125million contract with angels from 2012 . filed for divorce from real housewives of orange county 's katie hamilton . 33-year-old was all star during five-year span with rangers from 2008-12 .\neddie hearn made offer to carl frampton live on television . talks for a fight against scott quigg have stalled , leading to hearn 's offer . but ibf super-bantamweight world champion was scathing in reply . hearn then hit back at frampton on twitter . click here for all the latest boxing news .\nben parsons , 34 , from brighton , proposed to girlfriend anna jefferson , 36 . parsons had already run 24.5 miles of the 26.2 mile marathon . parson still managed to beat his personal best and finished in 3hrs 36mins .\nformer 2day fm host mel greig penned an open note to the media . greig became infamous in 2012 when she was involved in a prank with her co-host which resulted in the suicide of a nurse in london two days later . ` have we not learnt enough from the royal prank call ? ' , greig asks . she asks the media to be sensible when covering the birth of baby # 2 . greig speaks of being on the receiving end of aggressive journalists and says that there are certain lines that should never be crossed .\nmichael slager , who shot scott in north charleston , is n't eligible for death . prosecutors said his actions do n't include the ` aggravating circumstances ' that south carolina law requires for execution . came as an excessive force lawsuit from 2014 was filed against officer . julius wilson is shown on dash cam being hit by taser after traffic stop .\ndave sim has spent months training to ride tour route on a chopper . the 36-year-old personal trainer hopes to inspire people to begin riding . his raleigh chopper is the 2004 revival of the classic 1970s kids ' bike . he said it had ` always been a dream ' to ride the famous tour de france .\npolice officers escort the funeral procession to the service . scott 's family did not attend his visitation ; they need privacy , mayor says . police meet with the man who was a passenger in his car when it was pulled over .\narsenal beat burnley 1-0 on saturday to move four points clear in second . but chief executive ivan gazidis is ` not happy ' to miss out on title again . gazidis fears arsenal may struggle to make champions league in future .\npolice questioned the group about an alleged assault of a walmart employee . a man put a police officer in a headlock and fighting broke out .\njordan henderson has committed his future to liverpool with new deal . the england international has agreed terms worth over # 100,000 a week . new contract will keep henderson at liverpool until the summer of 2020 . henderson ` over the moon ' after agreeing to stay on merseyside . the 24-year-old is keen on adding to his trophy cabinet after penning deal . read : man utd and liverpool target memphis depay holds talks with psg .\nabdul hadi arwani was found dead in his car on tuesday in wembley . counter terrorism police were drafted in to lead investigation into death . a 46-year-old man has been arrested on suspicion of conspiracy to murder .\nian poulter dressed all in purple for the final round at augusta . the englishman finished tied for sixth on nine under par . prize money for this year 's masters was $ 10m , a 10 per cent increase . phil mickelson dressed all in black for his pursuit of a fourth green jacket . rory mcilroy and tiger woods paired for final major round for first time .\nwabc reporter lisa colagrossi died march 19 while covering a story in new york city . at her funeral on march 23 , her mother lois reportedly blamed her death on station news director camille edwards .\nalex elenes persuaded his cousin to go to the amazon over machu picchu . he booked many exciting tours including a jungle trek and piranha fishing . the traveller slept through the entire trip , missing sloths and monkeys . his cousin roxy de la rosa posted the hilarious pictures on reddit .\nlouise redknapp and stylist emma thatcher try the wide-leg trouser . they say it makes a good replacement for ever-popular skinny jeans .\nqpr unlikely to face disciplinary action over the incident . queens park rangers to review cctv and promise to ban anyone involved . cesc fabregas scored a late winner for chelsea at loftus road .\nlouis van gaal has led manchester united into a great run of form of late . after their surge up the table , united have their sights on next year 's title . edwin van der sar says van gaal can win trophies after united 's drought .\nmit 's algorithm reveals how effectively someone is striking keys . it does this by studying how long key is pressed before being released . team are working on an app that gathers same data from a smartphone . it could detect other problems that affect movement , such as arthritis .\nformer first lady told white house usher she wanted to see him alone . new book makes claims she spent hours reading and looking ` heartbroken ' president bill clinton admitted to affair with monica lewinsky that year . account is by former white house correspondent for bloomberg news .\nliverpool goalkeeper simon mignolet has returned to england after serving on international duty with belgium . he was an unused substitute in belgium 's euro 2016 qualifiers against cyprus and israel with chelsea 's thibaut courtois playing instead . mignolet posed for photos with pilots in the cockpit of the plane on the way back to england and posted them on his official facebook account . the 27-year-old was in the cockpit as the plane landed .\nmineral veins were found at a site called ` garden city ' on mount sharp . they formed in mars ' watery past above the now eroded , softer bedrock . two-toned minerals were created from two wet periods on the red planet .\nthe post office failed to properly investigate why money went missing . many subpostmasters were sacked , stripped of savings and even jailed . leaked report says discrepancies could have been caused by it systems . former tory mp says post office workers were ` dragged through the mud ' .\npaul mccartney honors ringo starr at rock and roll hall of fame induction ceremony . green day , lou reed , joan jett & the blackhearts also honored .\nkiwi jihadi mark taylor posted a video inciting terror attacks on anzac day . australian and new zealand authorities have increased security measures . he told is followers to ` stab ' police officers or soldiers at anzac services . ` now is the time to commence your operations , even if it means you have to stab a few police officers , soldiers on anzac day and so be it . ' . nz police commissioner ` satisfied ' appropriate measures are in place .\nrifle was stolen overnight while agent 's car was parked at a salt lake city hotel across the street from the state 's fbi office . gun was ` secured properly ' in a case and truck safe with padlocks and chains . police believe thief tied a rope around the case and used another car to break the handle off by ripping the case through the car 's window . agent 's stolen backpack and gear bags were recovered at a nearby hotel , but the gun has not been found .\njohn carver says his players must lift the pressure with a victory . newcastle travel to anfield to face champions league chasing liverpool . rolando aarons and siem de jong are back training but unavailable . click here for all the latest newcastle news .\nthe pm said the snp and labour presented a ` clear and present danger ' he said the two parties were ` really on the same side ' in the election . mr cameron said ed miliband can only become pm with the snp 's support . comes ahead of tonight 's live tv debate between the main ` challengers ' mr cameron and the lib dem leader nick clegg will not take part .\nit is being developed by pixium vision with trials scheduled for 2016 . a surgeon implants a small silicon chip with 150 electrodes on the retina . an integrated camera on goggles sends images to a portable computer . a ` pocket processor ' converts that recording into an infrared image , which the goggles then beam into the eye .\nchina is building artificial islands on coral reefs in the south china sea . five have been built in the spratly islands - with two more in development . the latest island is a huge 1.5 square miles -lrb- four square km -rrb- in size . but experts told mailonline the activities could be hugely damaging .\nukip leader said he would accept the result of any future eu referendum . rejected claim ukip would become ` redundant ' if the country voted to stay . insisted a lost referendum would not deter him from trying to pull out of eu . mr farage was interviewed for a special question time-style programme . comes after cameron , clegg and miliband faced questions on live tv .\nsouthampton are currently five points behind fourth-placed man city . ronald koeman has not given up hope of finishing inside the top four . the south coast outfit face stoke at the britannia stadium on saturday .\nangela linton , 47 , was banned from school after row about a pupil outing . she used her son 's pass book to abuse gay teacher thomas o'brien . mother has been sentenced to community order and fined # 185 .\ngina maria schumacher took part in an event in the german town of kreuth . she appeared at the 2015 nrha european futurity horse show yesterday . rode several different horses and wore a variety of cowboy-style outfits . her father michael remains under the care of medics at his home on lake geneva following a catastrophic ski accident in the swiss alps in 2013 .\ndoctors believe low fluid intake led to david crossley 's kidney stones . ultrasound and ct scan revealed two very large stones in his right kidney . one in ten of us will develop a kidney stone , and the numbers are rising . changing diet trends such as low-carb are also pushing sufferer figures up . ` animal proteins break down into uric acid - a known stone-former '\nformer tsa agent daniel boykin , 33 , videotaped his female co-worker in the restroom , authorities say . authorities say they found 90 videos and 1,500 photos of the victim on boykin 's phone and computer . boykin worked in an administrative capacity and did n't do public security screenings , tsa official says .\nlucy , 24 , stars in very.co.uk 's #cantwaitforsummer campaign . shows off ibiza-inspired designs and her enviable figure . femail caught up with the star and her trainer to discover her regime . trainer says lucy shows women you can enjoy life , train and reap rewards .\ncancer stricken basketball player lauren hill has already raised over $ 1.5 million for cancer research . in high school , lauren was diagnosed with diffuse intrinsic pontine glioma , a rare form of brain cancer . lauren still managed to play a full season of college basketball at mount st. joseph university in cincinnati .\na man has died after being crushed by a garbage truck in melbourne . the man was collecting garbage when the truck rolled and crushed him . another man has died after the car he was travelling in crashed into trees in melbourne 's east on friday .\njay kantaria , 38 , leapt onto tracks at sudbury hill station in nw london . he had recently left investment firm to start property development career . family say he had ` everything to live for ' and death was ` out of the blue ' coroner records open verdict as case ` just does n't seem to make sense '\nwilliam paul was ` revving his engine ' while sitting alone in the truck sunday when passersby alerted authorities in lexington , kentucky . paul failed field sobriety tests before being taken to a hospital for facial injuries - authorities say suspects in that situation are not arrested . paul had two previous alcohol-related run-ins with the law before turning 21 in 2013 . the 22-year-old is a senior studying communications at the university of kentucky .\nraf jets escorted two russian military aircraft close to uk airspace . the typhoons were scrambled from raf lossiemouth in scotland . hms argyle also monitoring three russian ships in english channel . it comes at a time of heightened tension between britain and russia .\ndelta said the flight crew reported an odor while taxiing to the gate . the crew shut down both engines and notified the airport fire department . passengers remained on board as firefighters checked for a heat source . plane was towed to the gate and passengers allowed to disembark .\npilot zachary cain stickler , 34 , charged with domestic violence . intentionally crashed plane into a field day after pleading not guilty . texted friends and family before crash of his plans to kill himself . for confidential help , call the national suicide prevention lifeline at 1-800-273-8255 or click here . for confidential support on suicide matters in the uk , call the samaritans on 08457 90 90 90 , visit a local samaritans branch or click here .\nthere are now more people of faith who favor marriage equality than stand against it , according to a new poll . if the u.s. supreme court has been paying attention , it likely saw this trend coming .\nthey cheered calls for more public spending and defences of immigration . when ukip leader nigel farage said they were prejudiced , he was booed . host david dimbleby pointed out that audience wad n't selected by the bbc . but by a ` reputable polling organisation ' , later to be revealed to be icm .\nmanchester united have shown interest in signing edinson cavani . psg striker has been out of favour at times in paris this season . cavani bounced back to score in 4-0 win over bastia in league cup final . striker says ` there is too much talk about my future but i will remain here '\nclaim was made by the commander of russian space command . oleg maidanovich said someone was hiding satellites as space junk . but in a film he refused to name the country behind the ruse . comments came on the anniversary of yuri gagarin 's first spaceflight .\nwe are handsome designers jeremy and katinka somers chose real-life fitness influencers above models . lindy klim , amanda bisk , juliette burnett , kate kendall and sjana earp were among the athletic stars . klim told daily mail australia that she exercises two hours a day in bali ... but barely makes it to the gym in oz .\nrajee narinesingh , one of the victims of ` toxic tush doctor ` oneal ron morris , stepped out showing her new face over the weekend . rajee was recently treated by dr terry dubrow and dr paul nassif in a process that will be featured on the premiere episode of botched . this after a 2005 procedure in which her cheeks , chin and lips were injected with cement and tire sealant .\nwendy wei mei wu has purchased the private 217 hectare slipper island . her daughter claims her mother is undecided on future plans for the island . it offers two airstrips and six houses with ocean views and nearby beaches . the sale divided the needham family , who owned the island for 45 years .\nivan balashov took selfie in phone shop in novokuznetsk , southern russia . but he decided it was not good enough and walked out with another model . police caught the 22-year-old after finding his picture on the first handset .\nviviana keith , 27 , reported to be drunk at a nail salon in red rock , texas . officer ben johnson arrived and found keith walking to her car . he noticed she was drunk and moved to arrest her , claiming she resisted . video shows him slamming her to the concrete of the car park . she was knocked out and suffered a black eye . charged with dwi with a child younger than 15 and interfering with pubic duties . incident being investigated but johnson remains on the job .\nthe ashton canal became filled with heavy suds due to a 6ft wall of foam created by fire crews tackling a blaze . the fire at a nearby chemical plant saw water from fire service mix with detergents that were being stored there . the foam covered a 30 metre stretch of the canal near manchester city 's etihad stadium in clayton .\nwasps no 8 nathan hughes was given a three-match ban for a late challenge on george north which left the northampton winger concussed . the club will appeal the decision on the grounds that it was an accident . as the hearing is scheduled to be held next friday , it means hughes will not be available for wasps to face toulon in the european champions cup .\nage-old game of cat and mouse is brought to life in these quirky pictures taken in shepton mallet in somerset . the pair are seen battling it out on the roof of a shed in a real life take on an episode of tom and jerry . ironically , the cat 's name is mouse . the pictures show the dangers small rodents have to be aware of in the area .\nchelsea forward tammy abraham nets first-half double for chelsea . dominic solanke adds a third late on as chelsea look set to win trophy . manchester city struggle without injured star thierry ambrose . read : mourinho warns his young chelsea players he can not play them all . click here to read our match report from man city 's academy stadium .\nman utd fan gives louis van gaal transfer memo with six possible targets . dutchman urged to sign gareth bale and paul pogba in summer spree . southampton defender nathaniel clyne ` would cost # 15 million ' mats hummels , jackson martinez and memphis depay also make the list . total expenditure would hit # 300m if all signings were pulled off . read : manchester united must keep david de gea , insists phil neville .\nalanna and stephen goetzinger lost their daughter rana when she was stillborn during a waterbirth at their home in 2012 . rana was found to have died of meconium aspiration , a condition where a foetus inhales their faeces before birth , preventing them from breathing . a coroner 's report found that their midwife failed to recognise signs of the meconium , changed the time of birth , and whether there was signs of life . she handed in her resignation at the end of 2014 after the report said her actions during the birth were ` grossly inadequate ' the goetzinger 's have spoken out against the findings and claim that the midwife did nothing wrong and that the death could not have been stopped . the want an apology from the coroner 's office who conducted an autopsy without their permission and the reinstatement of their midwife 's licence .\nrobbers may have taken advantage of a four-day holiday weekend . estimates of the value of the items taken rage from hundreds of thousands of pounds to 200 million pounds . the heist took place in a historic heart of london 's jewelry business .\nangelina santini from san diego , california , filmed her son marcus getting carried away in his bouncer one day . the comical clip shows the youngster lurching back and forth with the device almost touching the floor .\nlauren crawley had surgery for a benign brain tumour behind her left ear . while the op was a success , it damaged a facial nerve . the left side of her face consequently appeared droopy . but a new platinum implant has ` made her look more normal '\nchelsea were n't awarded a penalty for david ospina 's clash with oscar . arsenal goalkeeper clattered oscar inside the box . brazilian was taken off at half-time , with didier drogba replacing him .\nlexy wood , 13 , apologized after ruining cinderella for rebecca boyd . offended moviegoer , whose husband was recently laid off , approached teen after movie and said that she should be more considerate . they were ` loud , rude and obnoxious ' throughout the movie . mother kyesha wood found out about behavior and searched for boyd . she eventually found the mother after social media post went viral . mothers now share a bond and families have had dinner together .\nap mccoy wins second feature race at grand national festival . rides don cossack to victory in melling chase on friday . set to ride favourite shutthefrontdoor at aintree on saturday .\nstudents stampeded ; some jumped from a fifth story at a dorm ; one student died , school officials say . the blasts were caused by faulty electrical cable , and kenya power is at the school . the panic came less than two weeks after terrorists attacked kenya 's garissa university .\nformer yemeni president ali abdullah saleh will leave , a source says . ousted leader abdu rabu mansour hadi promises to return . next phase , called `` operation renewal of hope , '' will focus on political process .\ncnn team finds a man at `` unofficial '' displaced camp willing to provide children to be `` fostered '' he says he ca n't take money for them , but eventually demands $ 500 for two girls .\nfacebook deemed the abc1 trailer to contain ` potentially offensive nudity ' the video had 30,000 hits when it was removed after three days on sunday . two elderly aboriginal women painted in ochre are seen in the advert . the makers of the new comedy tv series , 8mmm aboriginal radio , based around an alice springs radio station called the move ` bewildering ' .\naustralian doctor who joined isis is still registered to practice medicine . adelaide doctor tareq kamleh has n't been deregistered despite publicly supporting terrorist cult . he appeared in isis recruitment video calling for support of foreign medics . medical board can deregister doctors convicted of crimes or misconduct . it comes after colleagues revealed dr kamleh was ' a womaniser who slept with a sex worker after checking her medical records ' .\n` clever marketing ' makes patients spend up to ten times more , say experts . an investigation found britons spend # 100million on cough syrup a year . but some doctors say there is no need to spend so much on remedies . the truth about medicine , 9pm bbc1 , april 9 .\nbrian karl brimager , 37 , was indicted by a grand jury in san diego . is accused of murdering clothing designer yvonne lee baldelli in 2011 . allegedly dismembered her body and disposed of it in a military backpack . then engaged in an elaborate scheme to cover up the crime . sent emails from her account to make people think she was still alive . he has been in custody since june 2013 on charges including obstruction of justice and falsifying records related to the investigation .\nas william and kate await the arrival of their second child , speculation is rife as to what he or she will be named . royal expert victoria arbiter argues that naming a newborn princess after diana would put too much pressure on her .\n` churchill 's toyshop ' operated out of london at first in world war two . eventually it moved to a mansion in the countryside to avoid air raids . the top-secret weapons lab developed some groundbreaking weapons . these included the human limpet mine and a rocket-powered wheel .\njudd trump beat stuart carrington 10-6 in the first round at the cucible . trump led 7-2 overnight but made hard work in finishing carrington off . the 25-year-old will face marco fu in second round of world championship .\nmunira khalif from minnesota , stefan stoykov from indiana , victor agbafe from north carolina , and harold ekeh from new york got multiple offers . all have immigrant parents - from somalia , bulgaria or nigeria - and say they have their parents ' hard work to thank for their successes . they hope to use the opportunities for good , from improving education across the world to becoming neurosurgeons .\ntwo-year-old oratilwe hlongwane can wow fans by playing music on dj kit . performing under dj name of ` aj ' , toddler plays house music from a laptop . he still wears nappies and ca n't yet talk but has a legion of fans for dj-ing . parents believe his ability stemmed from dj app he taught himself to use .\nandy lee defends the world title he won against matt korobov last year . the irishman has had a renaissance working under adam booth . but lee faces a tough challenge in unbeaten former champion peter quillin . lee insists he is ready for whatever ` kid chocolate ' can throw at him .\ncartel violence helped make juarez the murder capital of the world five years ago . but the murder rate in the city has declined rapidly since 2010 . now city leaders are working to bring visitors and foreign investment back to juarez .\nalan roberts wrote to bournemouth borough council about fly-tipping . 65-year-old signed off his email with : ` that 's why i 'll be voting ukip ' councillor ben grower responded and said he would delete further emails .\ngerman car manufacturer used renewable energy to convert carbon dioxide and water into ` blue crude ' oil which was then refined into diesel . the carbon dioxide can be removed from the air or from power plants . audi claims its e-diesel is carbon neutral without adding to climate change . tests suggest it allows cars to run quieter and produce fewer pollutants .\ntoby escaped out the back gate from his wendy stokes ' garden in kent . he was picked up by a driver on a nearby road and taken to a rescue centre . six months later he was re-homed with a couple in margate - 22 miles away . toby had ` stokes ' written on his shell so the couple tried calling every stokes in kent before reuniting him with wendy 11 months after escape .\naltamura man was discovered in a cave in 1993 in southern italy . skeleton 's calcium formations suggest it is 128,000 to 187,000 years old . scientists have successful extracted dna and are trying to sequence it . they say dna might reveal new details about the evolution of hominids .\nbranislav ivanovic 's contract at chelsea expires at the end of next season . 31-year-old has yet to open talks over a new deal at stamford bridge . petr cech is poised to leave chelsea at the end of the season .\njapanese species of fish found inside the remains of floating vessel . latest of one million tons of debris dispersed in the pacific by tsunami . oregon authorities plan to tow the 25-ft piece of fiberglass . 18,000 died in the disaster with waves reaching 128-ft above sea level .\nthe nypd detective has been accused of shouting abuse at an uber driver . patrick cherry of the joint terrorism task force is now under investigation . detective cherry was on his way back from visiting a colleague in hospital . the uber driver ` honked ' det cherry as he reversed into a parking space .\nliz clark , 34 , was working as a bartender in her hometown of san diego , california . but a professor suggested she use his boat to live out her dream and sail around the world . ten years later , liz is determined to continue her adventure , although she admits it can be lonely . she sails alone in a cal 40 sailboat , and has travelled about 25,000 nautical miles to date .\nduke officials are attempting to work out who hung the noose on the tree . officials said the rope was tied into a noose at about 2 a.m. wednesday . the shocking incident comes just two weeks after another race attack . officials said anyone found responsible will be held accountable .\njenny wallenda , 87 , the matriarch of the famous family of high-flying circus performers , died late saturday at her home in sarasota , florida . her nephew , rick wallenda , said his aunt died following a lengthy illness . wallenda was the oldest daughter of high wire walker karl wallenda and grandmother of daredevil performer nik wallenda . nik wallenda has walked over the grand canyon and over chicago . jenny wallenda walked the high wire as an adult and performed on bareback horses as a child . she also advocated for causes important to the circus community in her later years and helped create the circus ring of fame .\nthe fire brigades union say practice is irresponsible and dangerous . but becoming more common as ambulance service is so overstretched . ambulance service facing huge demand from rising and aging population . led to them relying more on firemen to attend life threatening emergencies .\n54 % want sturgeon kept out of uk government , 59 % oppose the snp . sturgeon launched manifesto with # 140billion demand for more spending . cameron warns labour-snp government is a ` match made in hell ' for uk . lib dems are most popular smaller governing party in hung parliament .\nmajority of british public does n't want to camilla to be queen , poll reveals . nation is completely split on whether prince charles should become king . princes william and harry are the most popular members of royal family . prince andrew languishes at the bottom of the popularity table .\ndanny welbeck met up with sportsmail 's martin keown . welbeck thanks fans and staff for making him so welcome at arsenal . former manchester united striker talks about scoring at old trafford . welbeck wants to be a striker , but says playing on the wing is easier in a front three than when part of a midfield four . arsenal take on reading at wembley on saturday evening .\nlondon mayor appeared with mr miliband on bbc1 's andrew marr show . mr johnson said ed would damage uk more than he 'd damaged his sibling . but he conceded : ` i 'm not saying your brother had dagger in the back ' labour leader laughed off row , saying : ` boris , you 're better than that '\nraheem sterling was pictured on social media smoking from a shisha pipe . the revealing image was accompanied with the caption ' 1 down 3 to go ' . the liverpool star recently turned down a # 100,000-a-week deal with reds . sterling is the second england midfielder to be snapped smoking a shisha this year alongside jack wilshere .\namanda butler , 42 , had normal pregnancy until waters broke at 25 weeks . son callum was born weighing just 1lb 9oz and needed much treatment . she was later told common infection , bacterial vaginosis , was to blame . affects a third of women and is often mistaken for thrush , but can cause fertility problems , miscarriage , premature labour and raise the risk of stds .\naldi has requested the ability to make employees work more than 38 hours in a submission to workplace relations productivity commission . supermarket giant was slammed by union secretary tony sheldon . he accused aldi of reintroducing serfdom and ` trying to strip workers of their rights '\nprofessor john warren discovered avocado trees switch gender in hours . the botanist said the tree displays ` unique flowering behaviour ' . however , trees are usually successful in avoiding polinating themselves .\npeople who have never been divorced can expect an extra # 2,100 a year . survey found one in five divorcees who stop work this year will have debts . debt of divorced retiree averages at # 22,100 , according to prudential report .\nstone 's biggest priority is to nourish his children with healthy food . he and wife lindsay have two boys , hudson , 3 , and emerson , 7 months . ` i do n't want him to have the nitrates and c *** that 's in a hot dog , ' he says . he wants parents to expose their children to a range of healthy food . stone is in australia to promote his cookbook , good food , good life . photos of stone cooking and gardening with his wife feature in the book .\nkite 's total length is 6km -lrb- 3.7 miles -rrb- and is made of 2,000 sections . but only half was allowed to fly after concerns from air traffic control . appalling weather conditions meant visibility at kite flying festival in chongqing was down to 50 metres at times .\nemmanuel adebayour looks set to leave tottenham in the summer . the north london club would prefer to receive a fee for the forward . however due to his high wages and daniel levy may let him leave for free . click here for all the latest tottenham news .\nluis suarez scored twice in barcelona 's 3-1 win over psg . suarez nutmegged david luiz on his way to scoring both goals . the striker says the tie is not over despite barca 's two-goal advantage .\nofficer michael rapiejko said he needed to use lethal force to stop the suspect . mario valencia was carrying a rifle and fired one round into the air . rapiejko said two options crossed his mind and it was too far to shoot valencia .\ngeologist ran 150 chemical tests on ossuaries and ` jesus family tomb ' claims chemical signature proves james ossuary was at jerusalem site . chalk box bears inscription ` james , son of joseph , brother of jesus ' . find suggests jesus fathered a child and was married .\nthe health secretary said the mail 's campaign exposed abuse of funds . promised a future conservative government would stop abuse as priority . labour health spokesman andy burnham vowed to investigate findings . other senior politicians said nhs trusts should be ` hauled ' before mps .\nfc porto star jackson martinez came close to joining ac milan in january . 28-year-old scored in their champions league 3-1 quarter-final first leg win over bayern munich . martinez 's goal against bayern was his 23rd strike in 31 games this season .\ncharlie chaplin , 35 , married his second wife lita grey in 1924 . divorced three years later with grey branding ex ` cruel and inhumane ' salacious details of their married life revealed in 50 page legal document . divorce papers set to fetch # 15,000 when they go under the hammer .\niraqi source said he was wounded after his three-car convoy was attacked . air strike is thought to have taken place on march 18 near syrian border . he is slowly recovering but reportedly does not have reins of the group .\njose mourinho praised chelsea 's consistency since the opening fixtures . the portuguese said the premier league 's competitiveness is like no other . chelsea face qpr on sunday as they look to maintain league stronghold .\napplicants must measure 5ft 6in and have a 25 1/2 in waist . casting request gives the star 's head and wrist circumferences . hopefuls must n't have tattoos or body piercings and may have to cut hair . previous adverts have featured keira knightley and claudia schiffer .\nrilwan oshodi , 31 , bought karen budow 's bank details and spent her # 1million life savings on a luxury lifestyle . he was jailed for eight years and has now been ordered to repay his profits . insists he has nothing left and did not personally gain from the huge scam . but judge suggests he has hidden money abroad and tells him he will be jailed if he withholds payment .\nluis suarez 's wife admits that her husband denied biting giorgio chiellini . the barcelona star was given a four-month ban following the incident . the shocking bite was caught on television cameras during the world cup . click here to see who suarez will face in the champions league . click here for all the latest barcelona news .\npc luke stanwick , 30 , is fighting for his life in a medically-induced coma . he has been left paralysed after breaking his neck on holiday in portugal . his father said he may be permanently disabled after ` horrendous ' accident . colleagues at sussex police have rallied together to raise more than # 8,030 .\nalan greaves owned almost 700 of the worst type of child abuse images . he also had more than 100 indecent videos stored at his lancashire home . greaves told detectives that he did not have any sexual interest in children . the father of eight was jailed for 21 months by burnley crown court .\nconor mcgregor takes on champion jose aldo in las vegas on july 11 . the two men recently completed a world-tour to promote the fight . mcgregor is unbeaten in the ufc and insists he will be the next champion . he grabbed aldo 's belt when the pair came face-to-face in dublin . click here for all the latest ufc news .\nparents phillip and gaby beckle-raymond discovered a leak in roof . hired builder to fix problem at their three bed london home . he took roof off and then disappeared with # 10k of their money . sub contractor botched efforts to give them loft conversion . he charged # 7,000 for parts and labour but left them with unsafe building . family had to live in one room for six months as home had no roof . rain water got in causing ceilings to collapse . britain 's horror homes is on channel 5 tuesdays at 8pm .\nboth chelsea and manchester city were keen on signing nathan . the attacking midfielder has been in contract dispute with his current club . nathan has been in london for talks and passed a medical on tuesday .\nspurs tracking dynamo forward andriy yarmolenko . tottenham scouts have watched the ukrainian star in recent weeks . psg also interested in signing yarmolenko . kevin mirallas also on tottenham 's radar . click here for all the latest tottenham hotspur news .\nunbeaten championship leaders leigh beat super league side salford . centurions twice come from behind to beat red devils in challenge cup .\ncenter for campus involvement announced cancellation tuesday in response to complaints about portrayals of arabs in the film . sophomore lamees mekkaoui started a petition saying the subject of the film , late navy seal chris kyle , was ` mass killer ' and ' a racist ' university apologized and said american sniper will be replaced at friday 's mixer with pg-rated children 's film paddington . conservative student group started competing petition calling on u of m to screen the iraq war drama . football coach jim harbaugh weighed in and said the team was ` proud ' of chris kyle and would screen the film for players .\nsingle father simon wood , 38 , fulfilled childhood dream of becoming a chef . he beat mother-of-four emma spitzer and tony rodd , 33 , from london . three finalists were challenged to cook a three-course meal in three hours .\ndaryl murphy was second to patrick bamford for the championship award . young player of the year dele alli behind joe garner in league one . shrewsbury town had three players in league two 's top 10 players . football league player of the year awards given out on sunday . top ten from votes by football league managers released on thursday .\nashley young 's brother lewis plays for crawley town as an attacker . the manchester united man went to watch him play against oldham . crawley are battling to get out of the relegation zone in league one .\nthe ex-partner of disgraced queensland mp billy gordon has opened up . kristy peckham has spoken out about the years of abuse she endured . he imprisoned her in her own home for three months in dubbo , nsw . after mr gordon 's dark past was revealed he resigned from the labor party . he refused to retire from parliament and vowed to take care of his family . until now , the mother of his two children has been in hiding . the violence escalated after their second child . mr gordon has refused to comment on the allegations .\nemily thornberry has criticised conservative ` right-to-buy ' policy . family bought housing association property for # 572,000 in 2007 . three-storey property in north london now worth almost # 1million .\nvideo has emerged showing the moment 2 french tourists torch a quokka . footage sees men laugh after igniting the creature with aerosol and lighter . the marsupial survived by scampering away , but was singed by the flame . both men received $ 4000 fines and had their passports confiscated . they were on a working holiday , spending three months in rottnest island .\nkickstarter campaign claims to have developed way to sterilise planes . bacteria can linger in aeroplanes for up to seven days . there are no cleaning regulations for the interiors of aircraft . robot created by father and son team arthur and mo kreitenberg . project involves using uv light to kill bacteria .\na photographer has captured images of amazing caves near a volcano in the russian far east . denis budkov , 35 , trekked inside the dangerous caves to capture the colourful scenes on show . in the images pink , yellow and green ice can be seen on the roof of the cave . the fantastic colours are the result of sunlight streaming through the glacial ice .\nrobert knowles , 68 , from plymouth , first broke the law when he was just 13 . he was jailed for 16 weeks for stealing watch and cuff links in recent crime . pensioner has broken law so many times prosecutors lost track of record . knowles has now clocked up nearly 350 offences in his lifetime .\nmatty taylor could make first burnley appearance since august . but dean marney and kevin long both remain long term absentees . laurent koscielny and wojciech szczesny face fitness tests for arsenal . jack wilshere , mikel arteta & abou diaby back in contention for gunners .\nroof of silverstone race track was damaged by high winds . a section of the # 27m building was affected by weather earlier this week . upcoming races and events at silverstone will not be affected .\nfuneral for murdered school teacher stephanie scott was held outside eugowra in central-west nsw on wednesday . fiance aaron leeson-woolley sat between ms scott 's parents merrilyn and robert during the service . her sister kim , parents , and leeton high school vice captain grace green spoke at the funeral . hundreds of yellow balloons were released following her funeral service to the tune of ` home ' earlier in the day people in eugowra and canowindra painted the town yellow with balloons and streamers .\nmindfulness for travel series includes meditative videos and other tips . for the programme , british airways teamed up with expert mark coleman . the endeavour is in celebration of the new london to san francisco route .\nbrian gewirtz , 20 , left his home in brooklyn , new york , on february 17 . he did n't return , sparking a frantic search from his family . his body was found in a creek near the marine park golf club . police said he may have walked into the park and got disorientated .\nbiologists at goethe university frankfurt , germany , studied skin healing in fruit fly embryos using an electron microscope to watch what happened . skin cells use microscopic tubes to pull towards each other and interlock . researchers hope it may help develop new treatments to speed up healing .\nkim sears married andy murray yesterday in a jenny packham gown . she opted for a traditional style for her wedding dress . increasingly , celebrities are shying away from traditional gowns . keira knightley wore a prom dress and angelia jolie 's kids decorated hers .\ntwo men had made the diy boat at their home using scrap wood and glue . but the pair became stranded from the shore after their oars snapped . rescuers were stunned to see a homemade boat being taken out to sea .\nnicholas salvador accused of beheading palmira silva in her garden . he pleaded not guilty on grounds of insanity at london 's old bailey today . also pleaded not guilty to a separate assault charge , citing same reason . mrs silva was found dead in a garden in edmonton in september 2014 .\nclare verrall was randomly attacked while walking her dog on wednesday . the melbourne woman was just streets from her prahan home . she suffered a black eye , broken nose , broken toe , and other injuries . ms verrall managed to get away by kneeing her attacker in the groin . she credits the kickboxing and self-defence classes for her escape .\nwitnesses said zana the apewoman had the ` characteristics of a wild animal ' she was allegedly trapped in caucusus mountains and covered in thick hair . had ` enormous athletic power ' and she could infamously outrun a horse . a genetics professor has analysed dna of six of her living descendants .\nrow broke out between andrea trunfio , 36 , and mario bretti , 64 , last july . argument was over ownership of a new housing development in wiltshire . mr bretti said rival cut him off and then punched him through window . trunfio was handed a 12 month community order at magistrates ' court .\nander herrera impresses with two goals for manchester united in victory . wayne rooney also finds the back of the net against aston villa in 3-1 win . brad guzan the best performer for tim sherwood 's side at old trafford .\nbosses of over 5,000 small businesses sign a letter praising the tories . self-made candle entrepreneur jo malone among the bosses to sign . the signatories together employ nearly 100,000 people across the uk . a change to a labour government the letter warns ` would be far too risky ' .\npresident defended negotiations that will lift sanctions on iran . claimed measures will make it less likely for iran to acquire nuclear bomb . admitted that the discussions had taken a toll on u.s.-israeli ties .\nfbi investigating after intelligence information indicated possible terror plot . tsa involved although possible threat not necessarily related to aviation . no arrests have been made and it is unclear whether this is a new threat . in addition to los angles , some other us cities have increased security .\na 6ft chocolate sculpture of benedict cumberbatch has been unveiled . toothsome statue has been placed inside a london shopping centre . but shoppers reactions to the creations were decidedly unenthusiastic . one woman glared at it while others just looked thoroughly baffled . it did manage to win the approval of pair of police sniffer dogs . it weighs 40kg and took eight people 250 man hours to create . other celebrities to get culinary tributes include jennifer lawrence . her 6ft cake won an award - and the 24-year-old 's approval . actor kevin bacon has also been immortalised - in bacon .\nusain bolt will compete at the iaaf/btc world relays on may 2-3 . six-time olympic gold medalist says he 's ` fit , healthy and ready to run ' . bolt was part of the jamaica team that won gold at london 2012 .\nengland captain alastair cook has n't scored a test century for 33 inning . cook became england 's second highest test run scorer on wednesday . stuart broad said his skipper can put england in a winning position . cook -lrb- 37 -rrb- and jonathan trott -lrb- 32 -rrb- were not out at stumps after day two . england are 74-0 , 225 runs behind , after bowling west indies out for 299 . broad said an action change overnight gave his bowling an added 10mph .\nian wright presented tony mccoy with champion jockey trophy . mccoy finished third on box office in last-ever race on saturday . the 40-year-old also finished third on mr mole in penultimate race . mccoy was reduced to tears as he competed professionally for last time . racing legend has been champion jockey 20 times . sandown filled with punters to bid mccoy farewell .\njurgen klopp will leave borussia dortmund at the end of the season . german boss has enjoyed success with club during seven-year stint . he has been linked with manchester city , manchester united and arsenal . per mertesacker says he would like to see klopp in the premier league .\nzoe o'connell , 37 , is bidding to become britain 's first transgender mp . lives in a three-way lesbian relationship with her two canvassers , sarah brown and sylvia knight . ms brown , 41 , and ms knight , 39 , were once a straight married couple - when ms brown was a man . parliamentary candidate for maldon , essex , said : ` we 're in a relationship and we 're not ashamed of that ' .\nchris ryves set up find boston bombers thread after the 2013 bombings . within hours , millions of users had taken to subreddit to identify bomber . they analysed photos and videos of spectators at marathon on april 15 . slung false accusations at those wearing backpacks or acting strangely . claims led to sunil tripathi , 22 , being wrongly identified as the suspect . frenzy only halted after dzhokhar and tamerlan tsarnaev were named . now , ryves has told of regrets about reddit thread in new documentary . in film , the thread , he says the subreddit ` became almost its own beast '\nher husband admits the pair had been arguing minutes before the accident . she came to the driver 's door while her husband drove away and she fell . police say they believe the husband 's story and have not charged him . doctors were able to deliver her 36-week-old baby in houston , texas . the pregnant woman , who has not been named , died later in hospital .\njemma gawned was on australia 's first season of reality show big brother . now runs a raw food empire called naked treaties based in byron bay . insists secret to her success ` spreading the vibration of love through food ' the 40-year-old tried for ten years to get jemma cosmetics off the ground . she described that experience as an ` apprenticeship ' for current business .\nyoutube user serpentor filmed his feline friend in action . footage shows the tabby producing bizarre noises as she is petted .\nrickie fowler responded to online troll who abused his girlfriend . bikini model alexis randock had posted a photo on her instagram account . randock was pictured on the beach alongside her sister nicole . a troll called ` fatalsplash ' then accused alexis of being a ` gold digger ' fowler told the hater to ` get your facts straight ' following comment .\nmamadou sakho limped off in liverpool 's win over blackburn rovers . french defender looked to be suffering with hamstring trouble in first half . brendan rodgers forced to use pairing of dejan lovren and kolo toure .\nkelly nash , 25 , went missing from his buford , georgia home january 5 . nash left the house without his wallet , car keys or id , but a 9mm handgun went missing from his house that night . a fisherman came upon kelly nash 's decomposed body in lake lanier in early february . sheriff 's officials said the 25-year-old accounting student suffered a gunshot wound and drowned .\neileen dee was being treated for cancer when she caught the lethal bug . her husband rené has spoken of watching her die just five days later . several hospital rooms , including eileen 's , found to have traces of bacteria . mr dee is now suing the hospital trust in brighton for clinical negligence .\nmanny pacquiao held a media workout at the famous wild card gym . he is just over two weeks away from facing floyd mayweather on may 2 . pacquiao will earn more than $ 120m from the richest fight in boxing . but pacquiao says he is not materialistic and fights to please the fans . ricky hatton : pacquiao has style but mayweather ` will find a way to win ' .\njanet faal , 57 , was out with a friend as part of her rehabilitation in crawley . she moved wooden pallet with foot to help friend reverse and slipped down . grandmother-of-two smashed face on pallet and left doing ` splits ' in hole . miss faal says it has set her back in battle with debilitating agoraphobia .\ncape verde seeking to tap-into rich cultural heritage . tiny island nation wants to grow creative economy .\nvenessa harris was diagnosed with rare bone cancer at the age of 12 years . she found out about illness just months after she won modelling contest . mum karen monaghan said daughter was determined to become a model . venessa 's modelling agency started a fundraising campaign to support her . it comes as new research shows more young people are surviving cancer . childhood cancer survival rate has risen by six per cent over past decades .\nmore than 1,000 properties are listed in cuba on the home-rental website . forty per cent of the listings are located in the capital of havana . airbnb has been signing up cuban property owners for three months . for the time being non-us travellers will not be able to book with airbnb .\nman with bandages covering head robbed bank in new milton , hampshire . threatened staff before making off with a ` significant ' amount of money . police have arrested a man , 56 , from the town on suspicion of robbery .\nbeauty high 's rolly robinson uses a wig , contouring , and a fullips suction cup to achieve kylie jenner 's infamous big-lipped look . kylie has spoken out about teenagers trying to look like her by using the lip-swelling device advising them to avoid using the controversial tool .\ned miliband says he spent his childhood obsessing over computer games . labour leader reveals he is a fan of ellie goulding and the band bastille . poor hand-eye coordination but spent childhood playing manic miner . says he mother calls him ` edward ' if she does not like one of his policies .\nkabul faces uncertain future as nato presence -- and the money that came with it -- fades away . interpreters are out of work , nato trucks sit idle on roads , restaurants are empty .\nfather from milton keynes says he has a physical reaction to the politician . he says he has to turn tv off when farage appears or he becomes sick . wife tells how sufferer 's hands shake when he hears ukip leader 's voice . expert says the symptoms are similar to that experienced in a phobia .\na dispute broke out between lewis hamilton and nico rosberg on sunday . hamilton finished ahead of his team-mate to win the chinese grand prix . the british driver said that he is a ` racer ' and rosberg is not . both mercedes drivers are en route to sunday 's bahrain grand prix .\nit was claimed sunday that the food network star has been cheating on his wife with assistant elyse tirrell for three years . flay 's business partner lawrence kretchmar dismissed the report , saying he 'd have known if the chef was having an affair with an employee . tirrell , who is 28 , used to work as a hostess at one of flay 's restaurants before being promoted to be his assistant . the celebrity chef has filed for divorce from march , 40 , after 10 years of marriage but she is contesting their prenup .\nthis week 's talks on an iranian nuclear deal framework are historic . the negotiations demonstrated diplomacy at its best , but also at its most hectic . reporters resorted to ambushes to talk to officials ; negotiations were `` sometimes emotional and confrontational ''\nandre schurrle and mario gotze enjoyed evening out with girlfriends . germany duo were joined by montana yorke and ann-kathrin broemmel . schurrle and gotze both enjoyed bundesliga victories on saturday .\nrowing team at washington university attacked by flying carp . member of the team caught the attack on video .\nisis claims the horrifying list of punishments is a ` warning ' to disbelievers . it pertains to syrian province aleppo and claims to be based on sharia law . penalty for insulting god , his messenger or the religion of islam is death . thieves ' hands are chopped off , adulterers are publicly killed by stoning . list says committing ` calumny ' - or slander - is punishable by 80 lashes . islamic state 's brutal executions are common on its social media channels .\nusa face italy in a fed cup world play off in brindisi . world no 1 serena williams defeated camila giorgi 7-5 , 6-2 . lauren davies will play sara errani in the second singles match .\nfrench investigators : flight data recorder reveals andreas lubitz acted deliberately to crash plane . he used autopilot to set altitude at 100 feet and then used the controls to speed up the descent .\nqueen of spain , 42 , attended conference at science museum , cosmocaixa . she delivered speech at opening of 2nd congress of uncommon diseases . wore silk blouse , nude heels and accessorised with woven clutch .\nfootage shows a traffic stop and early interactions between officer michael slager and walter scott . the two men speak , and then scott gets out of the car , running . slager , charged with murder , was fired from the north charleston police department .\nformer playboy model georgina gosden is facing an assault charge . ms gosden allegedly punched two women in the face on separate occasions at the same north queensland pub . she was charged with assault occasioning bodily harm and being drunk and disorderly in a licensed venue . police are pursuing the latest charge despite her victim withdrawing .\na boston-area dog ate three of her owner 's wristwatches . a veterinarian removed about 1 lb . of watch parts from her stomach . mocha the doberman is now doing well .\ngoogle partnered with catlin seaview survey and the loch ness and morar project to capture the street view shots . site has launched to mark the 81st anniversary of the ` surgeon 's photograph ' - an image of the mythical monster . it lets people virtually explore above and beneath the water of the iconic waterway to the southwest of inverness . there are more searches for loch ness than any other uk institution , and google 's doodle also marks the occasion .\nthe women of japan swear by the ` beauty from within ' philosophy . mahonia is a traditional herbal treatment for acne . berry native to the rocky mountains that 's been used by tribes for years . its compounds give it antibacterial and anti-inflammatory benefits .\nviolet pietrok was born with congenital facial malformation called frontonasal dysplasia . only 100 cases of the condition have been reported . it caused a widening of her facial features , including nose and space between the eyes , making her vision more like a bird 's . plastic surgeon made five different molds of violet 's skull using 3d printer . allowed him to plan the cuts and incisions he needed to make and helped him find solutions to problems during surgery .\ndaniel andersson , helsinborg 's 42-year-old kit man , kept a clean sheet . the emergency stopper played in season opener against kalmar . henrik larsson 's first-choice goalkeepers were both out injured . the former goalkeeper earned one cap for sweden back in 2001 .\nmanchester city can still mount a title challenge , insists sergio aguero . premier league champions face manchester united in sunday 's derby . argentina ace has praised old trafford misfit radamel falcao .\nstudents who shared an ipad scored around 30 points higher on the test . courtney blackwell worked with 352 students in america for the research .\nliz norden , whose sons paul and jp each lost right leg , blasted plan . said victims and families of 2013 bombing are still faced with daily pain . boston-born wahlberg announced film during trial of dzhokhar tsarnaev . other bostonians weighed in on the planned dramatization .\nmike whitehead was standing for the tories in hull west and hessle . he resigned as a councillor last week in ` disgust ' at local party politics . the tories claim mr whitehead was sacked as a candidate last week . but nigel farage this morning insisted it was a ` hammer blow ' for cameron .\nthe 12 jurors and 12 alternates were chosen on tuesday after a selection process that began on january 20 . experts say the jury selection in centennial , coloradp was among the largest and most complicated in u.s. history . holmes is charged with shooting dead 12 people and wounding 70 others in the july 2012 attack at a movie theater in aurora . his attorneys do n't dispute that he pulled the trigger but say he was in the grips of a psychotic episode when he opened fire . among the 19 women and 5 men chosen , are a schools employee , a person with depression and a businesswoman who cares for her elderly parents .\namber anderson , 27 , has been arrested on suspicion of having sex with a 15-year-old freshman two years ago . during questioning by detectives she admitted to the relationship and apologized for ` taking the victim 's innocence ' the victim 's mother contacted authorities earlier this month after a former student told her what had happened . she had seen suspicious texts in 2013 and had approached the school , christian life academy in baton rouge , at that time . anderson is facing a charge of felony carnal knowledge of a juvenile over the sexual relationship which took place in july and august of 2013 .\nentertainer yousef saleh erakat posed as a homeless man in los angeles . most people responded to his offer of a $ 10 bill angrily , cursing at him , giving him the finger and calling him names . one man brags about his black card and points to his mercedes benz , telling the seemingly homeless man he needs to ` earn his way up ' only two people in the video actually stop and offer erakat money instead .\nkris commons fired celtic into the lead on the stroke of half-time . partick thistle 's james craigen was sent off before the penalty . stefan johansen doubled the home side 's advantage in the 63rd minute .\nzach birnie films his descent of mountain with a helmet-mounted camera . snow begins falling around skier while he negotiates the off-piste slope . after being buried alive zach manages to fight himself free from the snow . the terrifying incident occurred on the slopes in revelstoke , canada .\nman is seen swaying and then barging into a 63-year-old outside aintree . the man stumbles and then falls backwards to the floor into the road . onlookers helped and he was taken to hospital and treated for bruising . police confirmed that the 34-year-old perpetrator in the video has come forward and been interviewed under caution for the alleged assault .\nchelsea have a successful academy playing in the fa youth cup final . but as yet there have been few graduates into the blues first-team side . jose mourinho has pledged to bring players through but issued a warning . portuguese coach says he can not absorb all young players into his squad . ruben loftus-cheek has been promised a chance , plus two to four more . chelsea recruit youth from around the world for profit and their squad .\npolice said a 37-year-old man was in custody tuesday following the deaths of his wife and their two children at their home in suburban detroit . the victims have been identified as christie fradeneck , her daughter celeste fradeneck and her son timothy fradeneck . the man was held for questioning and the causes of the deaths have n't been released , a police spokesman has said . officers discovered the bodies at the home in the eastern suburb after the woman 's sister called police . police went inside and found the woman and children dead . the children 's birthdays were less than two weeks away .\narda turan was pictured in the cockpit of a turkish airlines flight . he used the pa to announce his congratulations after team 's 2-1 win . crew are facing sanctions because only pilots should be at controls . image comes amid heightened safety concerns after alps plane crash .\nmyuran sukumaran 's friend ben quilty says he will face his execution with ` strength and dignity ' ` myuran always said to me he would never take this lying down ... that he would stare them down , ' the artist said . sukumaran and chan have selected ` spiritual advisers ' to accompany them on their final journey . both men refused to sign their execution warrants three days before their execution , saying that the process was unjust . as his final request , chan has asked for a final church service with his family . sukumaran has also requested as much time as possible to paint . the men have both nominated spiritual witnesses to their execution .\nnigerian muslims threw 12 christians overboard when he refused to stop . surviving refugees on dinghy looked distressed when they arrived in italy . italian ships have rescued 10,000 refugees fleeing war in africa this week . among them was boat of libyans who were suffering from severe burns .\nashley james joined forces with peta to star in the grisly campaign . harvey nichols abandoned its strict fur-free policy last year . liberty london , selfridges and house of fraser are still anti-fur .\nkevin pimentel , 12 , shot his brother brady pimentel , 6 , dead on wednesday march 25 at their mobile home in hudson , florida . he also wounded 16-year-old brother trevor pimentel in the leg before killing himself . trevor attended the boys ' funeral in a wheelchair on wednesday . kevin and trevor had been cooking about 6pm but officials said they had not been arguing before the shootings . their mother , helen campochiaro , 38 , was working one of her two jobs . relatives say she was a single mom who kept a gun for protection and that the boys had been brought up with gun safety . on a gofundme page set up one day before the shooting , campochiaro asked for help in raising a deposit for a new home .\nemergency services were called to the kosciuszko bridge at about 11.50 am monday , where a woman had climbed over the bridge 's railing and was standing on a section of metal piping . officers tried to calm her down as nypd patrol boats cruised under the bridge on newtown creek , which connects greenpoint in brooklyn and maspeth in queens . a witness said the woman was a 44-year-old polish mother-of-one who was going through a tough divorce . she agreed to be rescued after police talked to her about her daughter and was taken to elmhurst hospital .\nwigan twice came from behind to force a draw . ross mccormack gave fulham an early lead on four minutes . jermaine pennant equalised for wigan with a stunning free-kick . matt smith restored fulham 's lead before half-time . jason pearce pulled the visitors level from a corner after the restart .\nthis week , turkey was gripped by a massive power outage and a deadly hostage crisis . reactions reveal contemporary turkey is tense and confused after years of political crises . censorship has pushed critics to fringes in country cited as democratic model for mideast .\ndeath row records mogul appealed to reduce $ 10m bail , was denied . but he is sure floyd mayweather will win on saturday and bail him out . the boxer is already worth $ 420 million , set to get record pay this weekend . knight had to be wheeled out of court after being denied bail cut .\nal qaeda fighters attack a prison and other government buildings , freeing many prisoners . government troops clash with the fighters , most of whom flee . yemen is descending into chaos as a shia-sunni conflict draws in regional rivals saudi arabia and iran .\nman united are willing to pay robin van persie # 5m to leave old trafford . van persie has 14 months left on his current contract . united want to free up wages as they search for another striker . dutch striker has scored 10 premier league so far this season .\nmanchester united beat manchester city 4-2 at old trafford on sunday . ashley young , marouane fellaini , juan mata and chris smalling all scored . internet pranksters ripped into the barclays premier league champions .\ndani alves has spent seven seasons with the catalan giants . alves has four spanish titles to his name with barcelona . the brazil defender has also won the champions league twice with barca .\nbayern munich beat porto 6-1 at the allianz arena on tuesday night . german giants were without franck ribery , david alaba and mehdi benatia . arjen robben was also sidelined and did some punditry for the tie .\narnold palmer has been struggling with a shoulder injury . but the 85-year-old legend hit the first drive of the 2015 masters . gary player , 79 , and jack nicklaus , 75 , also hit ceremonial opening drives . player took the bragging rights with a 240-yard tee shot . click here for the masters 2015 leaderboard .\nbelgian is determined to lift the premier league trophy for chelsea . they currently have a seven-point lead at the top of the table . courtois has won silverware in each of his last five seasons . he already has a league cup winners ' medal in his collection .\nines dumig 's photo series `` apart together '' follows a somali refugee living in germany . the underlying themes include isolation and `` otherness '' and the search for human dignity .\nthe wedding of murdered stephanie scott had been booked at the picturesque eat your greens venue on saturday . the venue is 2km outside the tiny town of eugowra , in new south wales ' central west region . 120 people had been invited to ms scott and her fiance aaron leeson-woolley 's wedding . instead the guests had to make their way to ms scott 's memorial service on the couple 's big day . the popular teacher was last seen on easter sunday and a body was found on friday . police have charged school cleaner vincent stanford , 24 , with the 26-year-old teacher 's murder .\nadam rushton took advantage of being a beat officer in stoke-on-trent . staffordshire police says he has ` brought shame on himself ' and force . said he never expected to end up in dock after oral sex with a woman . tells court : ` it 's not very professional , i fully accept that , and it 's wrong '\na zookeeper at the zoological center in tel aviv recorded the footage . he placed a gopro at the bottom of the animal 's respective water troughs . the final footage was cut down to four minutes from total of 30 hours . zookeeper said it offers a ` completely unique perspective ' to the animals .\ndog molly had been on a walk with her owner jane tipper in eype , dorset . the dog suddenly disappeared from view after chasing a lamb over cliff . owner 's daughter saw molly survived fall but had no way of reaching her . coastguards could n't find her after extensive search , but molly was found days later by a dog walker a mile away .\nthree teenage boys from north-west london detained in turkey last month . their parents phoned 999 in britain after realising they were missing . authorities quickly made contact with turkish counterparts to block them . now it has emerged that one of boys ' fathers worked for the mod .\nrspca officers discovered five illegal pit bull terrier-type dogs at farm . footage shows the scarred animals were held in electrical shock collars . they were covered in injuries and kept in appalling urine soaked cages . three men involved in illegal dog fights have been fined a total of # 40,000 .\nmiranda was far from happy with milorad mazic 's display on tuesday night . the brazil international believes officials from ` minor leagues ' should not officiate important champions league ties . mazic failed to penalise sergio ramos for elbow on mario mandzukic . read : atletico ace mario suarez says referee mazic was ` very bad ' .\nmarcelo bosch kicked penalty with last play of the game for victory . saracens took a half-time lead of 6-5 despite racing 's dominance . penalties from charlie hodgson -lrb- two -rrb- and alex goode for sarries . racing 92 scrum-half maxime machenaud scored the game 's only try . saracens will return to france to face clermont auvergne in the semi .\ngang in north-west allegedly beating up and blackmailing string of men . they pose as children online and attack those who agree to meet them . man punched in church car park and another loses teeth in high street . two victims have also been arrested by police on suspicion of grooming .\nten physicians across the country have banded together to tell columbia they think having oz on faculty is unacceptable . radiology professor says that he just wants oz to `` follow the basic rules of science '' tv 's `` dr. oz '' holds a faculty position at columbia university 's college of physicians and surgeons .\nair raid shelter in stockport was dug out of caves along the river mersey and intended to be a car park . with the advent of the second world war , the space became a shelter which could hide thousands of people . the air raid shelter was so popular the authorities had to issue season tickets in order to control numbers .\nandrew mogni , 20 , from glen ellyn , illinois , had only just arrived for a semester program when the incident happened in january . he was flown back to chicago via air on march 20 but he died on sunday . initial police reports indicated the fall was an accident but authorities are investigating the possibility that mogni was robbed . his cousin claims he was attacked and thrown 40ft from a bridge .\nbrad jones , glen johnson and fabio borini attended day one at aintree . the star accompanied their wives dani , laura and erin to the races . the liverpool players turned out the day after making the fa cup semis . click here to print out sportsmail 's grand national sweepstake ahead of the big race on saturday .\nsam allardyce warned aaron cresswell about moving to manchester city . the full back has been excellent for west ham following his summer move . allardyce used scott sinclair and jack rodwell as examples of moves to the bigger clubs that did n't work out for british players . click here for all the latest west ham news .\ncristiano ronaldo scored 300th goal for real madrid on wednesday night . portuguese star headed home against rayo vallecano in 2-0 victory . who else have made their mark with goals at one particular club ? pele and gerd muller lead the way , while lionel messi makes the top 10 . read : ronaldo scoring breakdown shows just how ruthless he is .\nauthor anthony horowitz has accused david walliams of dumbing down . claims walliams fails to challenge young readers with unambitious books . horowitz argues authors should not be afraid of ` powerful stories or ideas '\nactive ingredients in creams were found to cure multiple sclerosis -lrb- ms -rrb- . they prompted stem cells to reverse the nerve damage caused by ms. cells regenerated myelin , the coating around nerve fibres that ms destroys . team is looking for ways the creams can be safely used as treaments .\nnabil fekir and alexandre lacazette scored in lyon 's 3-1 win at guingamp . lille got back to winning ways with a 3-1 triumph over strugglers reims . modibo maiga 's hat-trick earned metz a 3-2 win over toulouse . nice and evian both picked up another point in their battles for survival . paris saint-germain face marseille in le classique on sunday night .\nwigan posted a 30-20 win against warrington on thursday night . ben flower was making his first appearance for wigan in six months . flower was banned following his red card in last year 's grand final . the wales forward was sent off for an attack on lance hohaia . sam tomkins is also returning to wigan on a four-deal next season .\nthe deadly h5n2 bird flu virus has been found at a farm in northwest iowa . up to 5.3 million hens must be destroyed in the state to contain outbreak . seven other midwestern states have also been hit by the deadly virus . minnesota , the top turkey-producing state has been severally effected . nearly 7.8 million turkeys and chickens have died or been culled since march .\njohn burns has come out to deny he called footy player a ` terrorist ' the 3aw host allegedly made the comments against bachar houli . houli became the first muslim man to play top league afl in 2006 . he is the multicultural ambassador for the afl . john burns says he does n't recall the comments being made . he said he is ` mortified ' by the allegations .\nchristie 's is holding a magnificent jewels auction next month in geneva . overall , it is expected to raise in excess of # 53million . includes pink diamond worth # 8million and sapphire worth # 2.7 million .\nvegetables sold in uk are grown by workers ` denied basic hygiene facilities ' in almeria , spain . almeria workers use bushes near where vegetables are being grown as toilets . some live in filthy shacks made of wood and plastic sheeting near fields in almeria . claim to be sprayed with pesticides and be left unpaid for hours worked . watch the full film tonight on channel 4 news at 7pm . an article of 15 april reported on a channel 4 investigation into the treatment of salad and vegetable workers in southern spain who live and work in filthy conditions without basic toilet and hand washing facilities , forcing them to urinate near produce . those allegations were not made against agroherni group in murcia but relate to separate companies elsewhere in spain , in almeria . we apologise to the agroherni group for any damage caused .\njack butland voted for harry kane to win young player of the year . stoke keeper says there is not a player of the same age on kane 's level . butland is hoping kane can help fire england u21s to glory this summer .\nkim kardashian was dining out with kanye west and jerusalem 's mayor . mayor posted photo of him and the famous couple on twitter on monday . image then printed on an ultra-orthodox news site - but kim was left out . instead , photo only showed kanye and mayor nir barkat chatting at table . ultra-conservative jewish news media consider photos of women sexual . news site , hakikar , condemned mr barkat for dining at non-kosher venue . it also reportedly criticized the $ 692 bill -lrb- including tip -rrb- at mona restaurant . kim and kanye baptized toddler daughter , north , in jerusalem 's old city .\nvolvo says it will begin exporting chinese-built cars to the u.s. in may . it 's the first time `` made in china '' cars will be available in u.s. showrooms . but it 's unlikely that chinese car brands will take on developed markets .\nalso in danger are over 400 public venues and dependent care facilities . study estimates 77 % of communities have the 15-25 minutes required to evacuate safely after an earthquake hits . some communities in washington , the most at-risk state , could increase chance of survival simply by walking faster . but certain communities along the coast are too far from high ground for a safe evacuation - no matter how fast they walk . they will need to build special evacuation structures instead .\naeman presley , 34 , faces charges stemming from a string of murders that officials say he committed last year . his alleged victims were calvin gholston , 53 ; dorian jenkins , 42 ; tommy mims , 68 ; and karen pearce , 44 . presley had reportedly moved from los angeles to atlanta to restart his acting career , but bought a gun with the stated intent of using it for robbery . instead , after presley killed gholston , he began seeking out others to kill .\nbayern munich boss pep guardiola ripped a hole in his trouser leg . his underwear were on show during the european match in germany . the german giants booked place in the semi-finals thanks to 6-1 rout .\ndonor 7042 carries defective gene known as neurofibromatosis 1 -lrb- nf1 -rrb- ten of the donor 's offspring have already been diagnosed with nf1 . can increase risk of cancer , cause learning difficulties and reduce lifespan . four families are suing the nordic cryobank that supplied the sperm .\nper mertesacker says that suffering embarrassing defeats hurt the squad . losing heavily forced the players to bring back the ` arguing culture ' since then arsenal have improved and could still finish second . click here to follow all the live updates of arsenal vs liverpool . click here to read all the latest arsenal news .\nsara martin , from lititz , pa. , had n't spoken for weeks after health declined . but one day recently , the dying mother-of-three uttered the word : ` florida ' now , devoted family is driving her there for what will likely be final holiday . they are leaving for the city of sarasota in south-west florida in rv today . mrs martin , 37 , was diagnosed with inoperable brain cancer five years ago . she is married and has three children ; carlie , 12 , gretchen , 11 , connor , 9 . she has not spoken again and has been told she does n't have long to live .\nthe new horizons spacecraft captures image of pluto and its largest moon . it 's set to reveal new details as it nears the remote area of the solar system .\nresearchers said during security conference that payment devices by unidentified global vendor came with password ' 166816 ' while researchers did not identify the vendor , google search points to verifone , which said its devices in the field come with password ` z66831 ' verifone claimed sensitive payment information or personally identifiable information can not be captured .\npaul nungesser says he was target of gender-based harassment campaign . the case drew national attention after his accuser started carrying a mattress around campus .\npippa , 31 , strolled through the sunny streets of london . looked chic in tweedy skirt , black blouse and cropped black blazer . will become an aunt for the second time when kate gives birth this month .\nflu strains h3n2 and b/phuket triggered spike in deaths in u.s. and europe . modified vaccine which includes these two strains is coming to australia . including the strains has delayed stocks of the vaccine arriving by a month . high-risk groups in australia will be able to get free flu shots from april 20 .\nbrazilian teams are on alert because of a dengue fever outbreak . the mosquito-borne disease has already affected some top clubs . corinthians striker paolo guerrero one of three players diagnosed .\njurors are scheduled to begin deliberations tuesday morning . if tsarnaev is found guilty of at least one capital count , the trial will go to the penalty phase . prosecutor during closing argument : tsarnaev `` wanted to awake the mujahideen , the holy warriors ''\nnorth carolina political also-ran also called rep. renee ellmers an ` idiot ' aiken also placed second on the second season of american idol . ellmers ' spokeswoman says his ` crude language ' shows ` why he is a runner-up ' entertainer also vented about finding gay lovers in new york city and claimed he has slept with at least one fellow celebrity . promised to run for office again ` within the next decade '\nthe pentagon announced tuesday plans to identify the remains of hundreds of sailors and soldiers killed on board the uss oklahoma . the uss oklahoma sank during the december 7 , 1941 japanese assault on pearl harbor , the american military base and port . the attack on pearl harbor resulted in the death of over 2,000 americans and marked the united states ' entrance into world war ii .\nsol campbell is part of a campaign to encourage minorities to vote . he joins david harewood , tinie tempah and ade adepitan . campbell has often said he is interested in a career in politics . he ruled out standing for the conservatives in kensington .\nrye silverman , from los angeles , was chosen as one of the brand 's monthly fashion truth campaign stars . the 32-year-old comedian often posts pictures of herself wearing modcloth clothing on the brand 's open fashion forum , which is how she was spotted .\njodie bredo has been a kate middleton lookalike for six years . gets hair trimmed regularly and spends # 30 a month on black eyeliner . has done shoots with toddlers and been fitted with a baby bump .\nmanua kea mountain was burial ground for native hawaiians and is sacred . construction recently began for $ 1.4 billion thirty meter telescope . native groups calling for 30-day moratorium as discussions continue . thirty-one people arrested on thursday as they sat on road to the site . game of thrones actor jason momoa joined protests in his home state .\nmanny pacquiao fights floyd mayweather at the mgm grand on may 2 . pacquiao took to instagram on thursday to thank spike lee and tito mikey . 36-year-old was also visited by nba legend karl malone at his boxing gym .\nthey will be included in 2018 flight of orion and space launch system . nea scout will fly by a small asteroid , taking pictures and getting data . lunar flashlight will illuminate moon 's craters and measure surface ice . biosentinel will use yeast to measure the impact of deep space radiation .\njury shown interview that woman gave police two days after alleged attack . she claimed that mansouri picked her up as she tried to hail cab in chester . woman sent messages to friends saying she had been kidnapped and was ` literally scared ' as he drove her to his house , court heard . masood mansouri , 33 , from saltney , denies rape , kidnap and sexual assault .\nat the namale resort & spa in fiji , couples can be ` kidnapped ' for a picnic . the kimpton hotels provide a complementary pet goldfish in guest rooms . there 's a ` best man for hire ' at the wild dunes resort in south carolina .\nderby had failed to win any of their previous seven games . goals from chris martin and darren bent lift them up to fifth . wigan now eight points from safety with just five games left .\nchinese property conglomerate dalian wanda bought 20 per cent of atletico madrid for # 32.8 m. deal was announced in january but ratified after two egms . dalian wanda hope the deal will develop the club in asia .\nphotographer dustin wong , 31 , travels the world with no company but his camera . the hawaiian-born photographer . his images are inspired by ancient hawaiian beliefs in the sacredness of nature . he aims to encourage viewers to interact with nature and help save the planet . images range from the national parks of the usa to the snow of norway and australian caves .\nharold ekeh , 18 , was editor of his student paper and ceo of the model un . celebrated being accepted to 13 colleges with a chipotle burrito bowl . moved from nigeria to long island at the age of eight , got 2270 in his sats . credits his success to his parents ' resilience and positivity . he is leaning toward yale , has until may 1 to decide . plans to be a neurosurgeon to find alzheimer 's cure for his grandmother .\nlewis hamilton won sunday 's barhain grand prix ahead of kimi raikkonen . hamilton is out of contract at the end of the year and is yet to sign new deal . it has been suggested that hamilton could replace raikkonen at ferrari . but team principal maurizio arrivabene says he is happy with driver line-up .\nanderson silva met with brazilian taekwondo officials on wednesday . silva is currently suspended by ufc after failing drug tests . however , the former ufc champion will fight for olympics taekwondo spot .\ndele alli is hoping to be selected to play for england under 20s next month . the midfielder was signed by tottenham in january for # 5million . alli was loaned back to former club mk dons for the rest of the season .\nlionel messi faces tests on thursday to see if he will be fit for barcelona . argentine star missed both games for his country with a swollen foot . chelsea and manchester city could be keen on valencia 's jose luis gaya . real madrid 's signing of danilo shows an intention to gamble on the future . l'equipe speculates that radamel falcao could return to play for monaco .\ngeoff whitington , 63 , had diabetes and was on the verge of losing a leg . his sons anthony and ian helped the father-of-four shed six stone . he now loves to cycle , never eats take-aways and chooses healthy options . doctors mr whitington is no longer diabetic -- and he is off medication .\nstephen ward in contention for burnley after overcoming ankle injury . matt taylor close to return having been out since august . tottenham hotspur without goalkeeper hugo lloris through knee injury . danny rose and roberto soldado also fitness concerns for spurs .\npolice are investigating suspected arson attacks on three melbourne churches with links to paedophile priests . firefighters were called to st mary 's , dandenong , at 2am on april 1 . the church is said to be the site of child sex attacks perpetrated by now-deceased father kevin o'donnell . police have released an image of ' a man that may be able to assist with their enquiries ' comes after two separate suspicious blazes were lit on march 30 .\nphotographer anthony barbour , 33 , from liverpool , turns parks , village and beaches into their own little worlds . he spends hours slowly rotating in one spot taking the 50 pictures he needs to create just one ` planet ' . uses a canon 1100d dslr with either a 18-55mm kit lens or a tokina 11-16mm to shoot the photographs . then uses photoshop to stitch and layer the photos together to create incredible and mind-bending shots .\nap mccoy will race at sandown for the last time before retiring on saturday . mccoy is to be presented with his 20th champion jockeys trophy . ian wright will hand mccoy , an avid arsenal supporter , the award .\na jury has found ex-new england patriots star guilty of murder . aaron hernandez also charged with murder in 2012 double homicide . ` golden boy ' had just inked $ 40 million contract when troubles began .\nemma watson celebrated her 25th birthday on 15 april . the actress has been centre stage since the age of just 11 . femail charts her journey from child star to a feminist icon .\nthe reopening of two nuclear reactors has been blocked by a japanese court over safety fears . the reactors had previously been cleared to reopen by the country 's nuclear watchdog . japan 's 48 nuclear reactors have been offline in the wake of the 2011 fukushima disaster .\narsenal beat burnley 1-0 in the epl . a goal from aaron ramsey secured all three points . win cuts chelsea 's epl lead to four points .\nchelsea entertain manchester united in the premier league on saturday . chelsea boss jose mourinho and united manager louis van gaal are pals . pair enjoyed a successful relationship together at barcelona in the 1990s . mourinho has since won trophies in portugal , england , italy and spain .\nmarie hunt of wisconsin would have been in the class of 1928 . she dropped out after completing eight grade because she was unable to travel six miles to the local high school . friends and family watched as the cap-and-gown-clad centenarian walked to ` pomp and circumstance '\ncarlos tevez played for manchester united , manchester city and west ham . argentinian striker scored 84 premier league goals and won three titles . but tevez says in england ` the midfield is non-existent ' . tevez insists his juventus side can win the champions league . striker won the trophy with manchester united in 2008 .\nowner of white havana cob cody said her horse looked like black beauty . tracey hannant believes the animal wanted to go for a dip to cool down . it took 18 firefighters to free the horse following its six-hour ordeal . no one could believe it when cody turned out to be white after hose down .\ndane bouris was charged with the alleged assault of his model girlfriend . the 33-year-old was arrested at his watsons bay home - in sydney 's east . he appeared in waverley court on tuesday and pleaded not guilty . bouris is the son of businessman and the apprentice host mark bouris .\nyassir ali , 29 , flew through red lights during the two-minute chase . ali was pulled over by police who suspected that his bmw was stolen . ali , of no-fixed-abode , sped off on a two-minute-long car chase . he crashed the bmw into a bollard in front of a shop and was arrested .\n`` the americans '' ends a critically acclaimed third season wednesday . academy of country music awards holds its 50th ceremony sunday on cbs .\nbonnie 's skill at playing call of duty has gained her thousands of devotees . followers pay a subscription to join her live stream and give donations too . it has enabled her to give up her job working in hospitality . she has more than 52,000 global followers on streaming platform twitch . currently her twitch channel has had almost one million views . subscribers talk to bonnie through team speak or snap chat as they play . but she 's had to deal with online trolls and fans who are obsessed with her .\nabdirahman sheik mohamud , 23 , is charged with supporting terrorism and making false statements by federal prosecutors . classmates expressed shock , remembering him as a normal and likable high school student who was not deeply religious . mohamud , 23 , a naturalized american , had been instructed by a muslim cleric to return to the united states and carry out an act of terrorism .\nmario valencia took a rifle from a walmart in tuscon , arizona on february 19 and was able to start firing it as soon as he left . the stolen weapon should have still been locked and police chasing the men were told he could not fire the loaded gun . he was later taken out by an officer who hit him with his vehicle . the gun was found to be locked with loose wire that was not wrapped enough when police recovered it from the scene . walmart claims the wire could have been knocked loose because of the impact from the car .\nkyle wittstock crashed into a garage door when his paraglider was swept to the ground by a strong wind . the 22-year-old was taken to hospital and pronounced dead . he leaves behind a fiance and nine-week-old daughter . mr wittstock posted pictures of himself in the air hours before the crash . friends and family were quick to express their grief over his death .\nthe 20-year-old signed for # 16million from southampton in july 2014 . calum chambers has made 36 appearances for arsenal so far this season . chambers sees his club and international future playing centre back . arsenal face reading in the fa cup semi-finals on saturday evening .\nlabour leader accused of ` offensive ' behaviour during visit to sikh temple . worshippers were banned from using cameras and phones to take pictures . ed miliband 's team also banned national media journalists from the event . community leader said the rules went against the ` ethos ' of their faith .\nwoman slipped and fell from hassans fall lookout at lithgow on tuesday . the 44-year-old was bushwalking with her two children and a male friend . she is believed to have suffered serious head , spinal and chest injuries . mother slipped and fell trying to retrieve her mobile phone at lookout .\nsan antonio police officers issued a fine to local chef and activist joan cheever for feeding the homeless at maverick park april 7 . cheever founded the chow train non-profit food truck in 2005 to feed the city 's poor . has a commercially licensed mobile food truck where she prepares her meals , but she serves them out of her personal pickup truck . cheever accused city officials of violating her freedom of religion because she considers cooking and feeding the poor a free exercise of her faith .\noperators are charging up to 20p a minute - even if 0800 numbers are free . some are important services run by government and nhs departments . watchdog ofcom published proposals to put an end to the rip-off in july .\nmore people have been displaced than live in moscow ; more people lost their homes than live in greater boston . the wfp has cut food ration sizes by 30 % for lack of donations .\ndavion only , 16 , captured hearts around the nation in 2013 when he made a plea in front of church congregation for a family to ` love him forever ' he was adopted by a minister in ohio but sent back into the system a few months later when he fought with one of the minister 's children . in the next year he was shuttled between four different homes and four schools in florida before calling his old caseworker , connie bell going . davion called and asked miss connie if she would adopt him last july . going agreed , and in february they signed court papers to officially make davion her son , which should take effect april 22 . ' i guess i always thought of you as my mom , ' davion said to going last december .\ngreece is due to repay # 330million loan to the international monetary fund . there were concerns heavily indebted nation would default on payment . deputy finance minister dimitris mardas claims greece will meet demand . it was reported nation did n't have funds to repay debt without agreement .\nwolverhampton-based mensa has created an exclusive test for mailonline . it tells you if you might be smart enough to join the elite society . the puzzles stimulate memory , concentration , agility and perception . mensa welcomes anyone who is in the top two per cent in the country .\nprince charles and camilla will celebrate their anniversary later this week . the couple were married in april 2005 after their engagement in february . in 2005 , only seven per cent of people thought camilla should be queen . almost half are in favour of queen camilla when charles takes the throne .\nnatalie whitear , 35 , suffers from prosopagnosia : facial blindness . rare condition means she is unable to recognise faces , even her own . she confuses her daughters and walks past lifelong friends in the street . has developed coping strategies like recognising people 's hairstyle or walk .\nwitness who took video of shooting said when he arrived officer was on top of walter scott . feidin santana says walter scott did n't take michael slager 's taser . santana said he never saw officers perform cpr before he left the scene to go to work .\nfreddie gray 's death has fueled protests in baltimore . demonstrators accuse police of using too much force and say officers should face charges .\nreal madrid playmaker james rodriguez fractured his foot in february . carlo ancelotti has revealed rodriguez will start against granada . real madrid are currently four points behind league leaders barcelona .\nreports claim samsung will make the a9 chips for apple 's next iphone . a7 and a8 were mostly made by taiwanese semiconductor manufacturing . apple moved away from samsung as a substantial chip partner in 2013 . samsung has previously made flash and working memory for iphones .\ndustin irons was appearing in court via video-link on a large tv screen . indecently exposed himself when he was unhappy with court proceedings . unamused judge added 30 days to his sentence for the lewd gesture .\nstephan lichtsteiner played alongside eden hazard at lille in france . paul pogba is another who stars alongside lichtsteiner at juventus in italy . he has tipped 18-year-old juve forward kingsley coman to be the next star .\nman proposes to his girlfriend in front of the food counter . she quickly says ` yes ' and they engage in a passionate embrace . woman was wearing her mcdonald 's uniform when he proposed .\nsherry arnold , a 44-year-old math teacher from sidney , montana , was on a morning jog on january 7 , 2012 , when she was abducted . michael keith spell , 25 , of parachute , colorado , confessed at the time to pulling her into a car while his friend , lester van walters jr , strangled her . arnold was then buried 50 miles away near williston , north dakota . defense experts said spell did not understand the case against and was mentally unfit to stand trail . prosecutors agreed he was mentally ill but said he could stand trial , recommending 100 years prison .\n` black mass ' is a $ 65 million crime thriller set to be released in september . steven davis says it glamorizes bulger 's crimes and profits from the tragedy of his victims . his sister , debra davis , was allegedly killed by bulger in 1981 . however the jury returned a ` no finding ' verdict at bulger 's murder trial .\nhull 's steve bruce has revealed the club have reapplied for name change . the fa blocked previous attempt for club to become hull tigers . previous attempt to change name by owner assem allam angered fans .\nandy murray is getting married to kim sears in dunblane on saturday . british no 1 looked a little apprehensive at the wedding rehearsal . former wimbledon champion is set to jet off after the wedding to take a look at prospective new assistant coach jonas bjorkman .\nst. louis blues forward ryan reaves was checked into the glass on sunday by chicago blackhawks defenseman brent seabrook . he went to the bench after the play and calmly pulled his tooth out . st. louis won the game 2-1 , putting them at the top of the central division .\nthe bike washing machine replaces the front wheel with a washing drum . it is being developed by designers at dalian nationalities university , china . it means cyclists can save electricity by washing clothes as they exercise .\npoland 's cities are tourism favourites - but its lake district is less known . wigry national park , in the north-east , is one of poland 's prettiest areas . encompassing part of the masurian lakes , it is great for family breaks .\nabou diaby 's arsenal contract expires at the end of the season . france international has suffered 42 injuries since signing for the gunners . arsene wenger hinted at an extended pay-as-you-play deal for diaby who will be allowed to train at the club even if he has to move on .\nmicha stunz , has enhanced his penis with several silicone injections . it is 9 inches long , 3.5 inches wide and weighs up to 9.5 lbs -lrb- 4.3 kg -rrb- , he says . the size of his manhood makes sex difficult , although it is not impossible . he worries that future partners might only love him for his body .\nqasr al-farid or ` the lonely castle ' has been standing strong since the first century ad . the single-rock tomb is incomplete and abandoned , but fascinatingly reveals structures were carved from top down . the striking castle is one of 131 tombs from the nabatean kingdom , located in the al-ula sector .\nchristian trousedale was seen helping elderly man home from shops . aldi worker , 18 , held 95-year-old 's hand as he carried his shopping bag . his act of kindness went viral and has been ` liked ' by more than 250,000 . one customer saw trousedale at work and hugged him in the aldi store . mr trousedale said he 's ` blown away ' by the reaction to the simple act .\nsix infrared cameras around the jet give pilots a complete 360 degree view . its price tag is millions over original budget due to development problems . state-of-the-art helmet allows pilot to share information with nearby f-35s . f-35 lightning ii one of the most complicated weapons systems ever built . programmed with over 8 million lines of code , four times more than f-22 .\nvillagers in ansai , central china , spent # 1,000 digging new 46m well . but when they pumped water to surface they said they could smell petrol . discovered that the water is so badly polluted that it can be set on fire . blamed leak at local petrol station , but owner has denied he is to blame .\nlouis van gaal is closing in on a deal for midfielder ilkay gundogan . manchester united have agreed # 20.5 million fee with borussia dortmund . germany international has scored nine goals in 75 games for dortmund . arsenal were also linked with a move for the 24-year-old midfielder .\nnew model accurately predicted patients ' progression from hiv to aids . inspired by similarities between hiv and computer worms such as the highly damaging ` conficker ' worm , first detected in 2008 . model found early treatment is key to staving off aids .\nmarie d'argent was injured when elevator at melbourne apartment complex dropped suddenly in october . she says she suffered vertebral disc trauma and loss of libido as a result . the 55-year-old is suing building and elevator company for compensation . ms d'argent has filed a statement of claim at the county court of victoria .\n`` twin peaks '' creator david lynch announced he was departing the showtime revival of the cult series sunday . cast members of the show posted a youtube video wednesday pleading for him to return . wednesday was the series ' 25th anniversary .\nthe one-touch-911 app was developed by researchers at mit , harvard . users call the police , fire service , report a car crash or seek medical help using buttons on the phone 's home screen . it automatically sends a person 's location , identity and any medical details . this works even if the user does n't have mobile signal or ca n't speak .\ned miliband will today pledge to scrap the controversial ` non-dom ' status . the rule allows britain 's richest to avoid uk tax on their worldwide income . labour will claim it 's open to abuse and offends the moral basis of taxation . but critics will say it is another example of labour 's anti-business agenda .\nukip leader ` confessed ' that he preferred some migrants to others . he said immigrants from commonwealth countries settled more easily . mr farage also called on refugees fleeing to europe to be sent back . he said the royal navy should be sent to patrol the mediterranean . mr farage also accepted that he used explosive language to get noticed .\ntrain suddenly stopped on 7 line between queens and manhattan . passengers evacuated to grand central station with rescue train . riders spent roughly and hour and a half trapped underground . no injuries , though one woman requested attention after feeling faint .\nravel morrison training with lazio ahead of summer switch . signed pre-contract agreement with serie a side in january . left west ham after falling out of favour under sam allardyce .\nlib dems want only ultra low emission vehicles and electric cars from 2040 . clegg says he wanted to tackle ` dangerous levels of air pollution ' in cities . launches # 100million ` prize ' for firms who build first ultra low emission car .\njeffrey sachs : raw capitalism is the economics of greed . last year was the earth 's hottest year on record , he says .\nthe nephew of president john f kennedy attended the screening of a anti-vaccination documentary tuesday in sacramento , california . the california state legislature is currently deciding a bill that would make vaccinations mandatory for all children - no matter their parents ' beliefs . rfk jr is a vaccine skeptic and believes there is a connection between an immunization chemical called thimerosal and autism . the scientific community at large says vaccines are not dangerous .\nwarning : graphic content . traditional chinese medicine claims to cure all sorts of ailments including back ache , poor memory and cancer . markets in guangzhou stock exotic and rare animals destined for restaurant menus , pharmacists and pet cages . but beliefs drive # 13billion illegal wildlife network , the world 's third-largest elicit trade behind arms and drugs . network of fledgling organisations are now challenging centuries of tradition in bid to change consumer appetites .\nsketch mocked network 's coverage of air disaster and other major stories . brooke baldwin stand-in admitted network had no actual footage of news . instead played awful 80s cgi recreation of inside of doomed passenger jet . illustrated iran nuclear talks with puppets , and danced out controversial indiana religious freedom law with don lemon chiming in . audience - including a cnn producer - tweeted their amusement .\nopulent palace in tripoli - which once had a zoo , fairground and pool - was razed to the ground during revolution . libyans were ` even afraid to look at walls of palace ' , for fear of being arrested while gaddafi was in power . now his former strongholds lie in ruin , after civil war which devastated country and saw gaddafi killed by rebels .\nbarcelona president josep maria bartomeu praises ` leader ' lionel messi . bartomeu reveals messi will always have a place at barca . messi scored his 400th career goal for barca last weekend . click here for all the latest barcelona news .\ngary saurage , 45 , who runs the gator country wildlife park in beaumont , texas , was called out on monday morning to catch a giant 400lb , 11ft-long alligator from a family 's backyard pond . a photograph of the capture - later posted to facebook - shows saurage approaching the giant reptile with his bare hands stretched forwards . he appears to looking at the creature directly in the eyes as it lurks just a few feet away .\ndavid de gea and victor valdes enjoyed an afternoon off at a theme park . spanish duo donned shades as they made the most of the rare sunshine . it has certainly been a rollercoaster season for manchester united . united are third in the premier league after an impressive recent run .\njurors have started deliberations in the case against pedro hernandez , the man accused of killing 6-year-old etan patz in 1979 . assistant district attorney joan illuzzi-orbon asked jurors in the ten week trial to convict hernandez of murder . she described him as a calculated killer who committed a terrible crime and then spent three decades trying to hide from it . the defense says hernandez 's admissions are made up , the ravings of a mentally ill man who sees visions and has a low iq .\n272 children left disabled by alcohol exposure were hospitalised last year . the figures , for the past 12 months in england alone , spark new warning . experts say actual number affected by mother 's drinking could be higher . who : at least one in 100 babies , 7,500 every year , could suffer problems .\nkenyan agency : 147 dead , plans underway to evacuate students and others . garissa university college students wake to explosions and gunfire . reports : gunmen storm the kenyan school , attacking christians and letting muslims go .\nstaff at restaurant in chengdu heard crying and found a newborn baby . the tot still had the umbilical cord and placenta attached but was otherwise fine . woman who had been in toilet returned to her table ` like she was in trance ' she was arrested after cctv showed her visiting the restroom .\npassengers joined 1km-long queue outside tribhuwan international airport . guards unable to control sheer number of people attempting to flee kathmandu . many had already booked journeys but wanted to board next possible flight . airport was briefly closed down yesterday due to aftershock from quake .\ncrystal palace beat manchester city 2-1 at selhurst park on monday night . win all but secured palace 's status in the premier league for another year . chairman steve parish says the club have funds to improve the squad . but he wants investment to carry out necessary stadium improvements . click here for the latest crystal palace news .\nsewol ferry sank a year ago off the coast of south korea , killing 304 people . families hold protests , vigils , say not much has been resolved since sinking . government has yet to decide whether to raise the ferry .\nmonaco were held to a goalless draw with montpellier in their ligue 1 clash . lucas barrios missed a penalty to give visitors the lead in the second half . principality side failed to break into title chasing pack of marseille , lyon and leaders psg .\nhadas had the barbaric practice in eritrea , africa , where fgm is common . her mother believed putting her through the ordeal as a baby was best . in her village ` uncut ' women will be sluts and even grow up to be clumsy . woman , who wants to remain anonymous , was sex trafficked to the uk .\nanthony clark reed was driving around detroit on monday night . was pulled over and handcuffed by police when he got out of the car . complained he could n't breath , then collapsed and suffered a heart attack . his father claims he was ` driving erratically ' because of his asthma . is planning to sue the police force for their role in his death .\njennifer aniston , 46 , showed off her well-toned arms at the oscars . she works out three times a week with her long-term trainer , mandy ingber . what to try : the medicine ball overhead press is great for upper arms .\nchelsea players train at their cobham headquarters on friday . jose mourinho 's side face arsenal at the emirates on sunday . chelsea looking to extend their 10-point lead over second-placed arsenal . mourinho has never lost to arsenal manager arsene wenger . cesc fabregas chose chelsea over arsenal for trophies , says mourinho .\nofficials start to clean up scores of dead fish from the lagoon rodrigo de freitas . pollution was a problem even before the preparations for the olympic games began . last week video showed a separate incident , where floating trash caused a sailing accident .\nmesut ozil failed to deliver against chelsea despite a perfect opportunity . cesc fabregas would have had a bigger impact at arsenal this season . ozil showed poor technique when he had the chance to be a match winner . he may be a juan sebastian veron , andriy shevchenko or fernando torres . read more : brendan rodgers is ruining rickie lambert 's career . read more : manchester united need to raid borussia dortmund .\nnutritionist sarah flower recommends vitamin-rich foods we should eat . vegetables retain more nutrients when you steam , stir-fry or eat them raw . eating the correct portions of these foods will ensure good health .\nwalter scott owed over $ 18,000 in back child support payments , documents show . walter scott had four children and served in the coast guard , his brother says . he was shot in the back and killed by a north charleston police officer .\ndriver crashed his uninsured sports car into a tree on wednesday night . the ferrari was reportedly purchased by the owner only a week ago . a male passenger was also seriously injured in the crash . the 1991 ferrari 348 is worth between $ 90k and $ 110k . the passenger was conscious and was taken to flinders medical centre .\nelspeth mckendrick was left shattered by asperger 's syndrome diagnosis . her parents said she was ` very much in denial ' about her condition . she had a small circle of friends at school but wanted a ` close best friend ' gifted teen had scored a string of gcse a * s and won a place at art college .\nthe recruiting tactics used by isis differ from those traditionally employed by al qaeda . isis benefits from a media environment that amplifies its propaganda , officials say .\nshell has filed a complaint in federal court in alaska seeking an order to remove greenpeace activists who climbed aboard an oil rig in the pacific . the environmental group said in a statement its team would occupy the underside of the main deck of the polar pioneer . the six activists are camping on the 38,000-tonne polar pioneer platform , which they boarded using inflatable boats from the greenpeace vessel ` esperanza ' ` we made it ! we 're on shell 's platform . and we 're not alone . everyone can help turn this into a platform for people power ! ' tweeted aliyah field .\ncar crashed into melbourne lake just before 4pm on wednesday . three young children died and another is in a serious condition in hospital . a sudanese mother of seven was behind the wheel of toyota kluger . she was released from hospital and has been interviewed by police . the woman , 35 , has been released from police custody . the father of the three children who died says he believes the mother is innocent .\nstella , 24 , is irish and one of ten new victoria 's secret angels . her father worked as a diplomat so she travelled all over the world as child . scouted in new zealand and has starred in major campaigns . recently partied in las vegas with miley cyrus .\njacksonville jaguars will get a uk fan to announce their nfl draft picks . their sixth and seventh round selections will be revealed live on television . it will be the first time part of the nfl draft has taken place outside the us .\nmanuel pellegrini won the premier league and capital one cup last season . city currently sit fourth in the league table - 12 points behind chelsea . pellegrini 's contract expires at the end of the 2015-16 season . city players have been impressed with vieira 's work with the youth team . pep guardiola is city 's first-choice to succeed pellegrini at the etihad .\npattie boyd and rod weston , 61 , have been together for almost 25 years . pair were accompanied by their dog freddie at chelsea register office . this is pattie 's third marriage - her first was to george harrison in 1966 . bentley took couple to wedding breakfast at beaumont hotel in mayfair .\nles abend : there were likely warning signs during the co-pilot 's training . he says andreas lubitz had to go through many challenges to qualify to be a co-pilot .\nhoesik is the korean tradition of eating and drinking together . anthony bourdain travels to korea for the season five premiere of `` parts unknown ''\nremains were discovered saturday on fourth avenue in san francisco . body is believed to be that of anna ragin , who lived with daughter carolyn . police said the case of hoarding is the ` worst they had ever seen ' . authorities struggled to open the door of the home because of the debris .\nfloyd mayweather jnr hit the swimming pool as he continued his training . boxer did laps of the pool as well as water resistance muscle work . mayweather jnr is training ahead of mega-fight with manny pacquiao . it is now less than a month before boxing duo meet in las vegas .\nraquel d'apice , a comedian and mother-of-one from new jersey , has created a series of comedy posts called yelp reviews of newborns .\nthe prisoner who rode in a police van with freddie gray on april 12 in baltimore says gray was trying to hurt himself . prisoner 's statement to investigators was part of an affidavit obtained wednesday by the washington post . gray was arrested on april 12 for carrying a switchblade and transported to the hospital shortly after arriving at jail . he died a week later from spinal injuries ; how he received the fatal trauma is still under investigation . the fellow prisoner 's statement is the first detail released about what happened during the ride . report was released as family member of one of the six suspended police officers came forward to defend the cop . the anonymous relatives says she believes gray was injured before he was put in the van , and that not all six officers are to blame .\nshocking footage has emerged of a thief allegedly taking a donation box . cctv captures the woman bringing her vest over the anzac badges . the incident took place on wednesday at the caulfield rsl in melbourne . the video was posted on facebook in a bid to track down the women .\nfc united of manchester was set up as a club in protest of the glazer family 's takeover of manchester united . their 1-0 over stourbridge on tuesday night has sealed their fourth promotion as evo-stik northern premier champions . it means that the club are just two promotions off the football league .\namber phillips of los angeles expressed her support for the right to die law introduced in california on tuesday . phillips said she regrets not allowing her mother connie phillips to stop her chemotherapy treatment against her will . ` had she had the choice to end her own life she might have been able to reclaim some of her autonomy and dignity , ' phillips told dailymail.com .\ncalum chambers has played 35 times already for arsenal this season . eric dier has become an important first-team player at tottenham . john stones has impressed for everton after being moved to the middle .\ndani alves has a barcelona contract which will expire in the summer . manchester united and liverpool among clubs chasing his signature . player 's agent dinorah santana says barca deal is far from done . read : hector bellerin tops poll to replace dani alves at barcelona . read : dani alves releases charity single with ex-barcelona keeper .\npupils are taught manual called kim jong-un 's revolutionary activities . perhaps unsurprisingly , it contains no mention of the country 's history . text also claims kim can draw well and knows how to compose music .\nmore than 400 items from rick baker 's cinovation studio will be auctioned . artist has worked on hits like men in black , batman forever and gremlins . baker worked on michael jackson 's moonwalker film and thriller video . this is first time these items from 64-year-old 's collection open to public . auction will be held in los angeles , california , on may 29 and also online .\nstate department has banned safer hassan 's license plate ' 370h55v ' . it has been on his lamborghini for three years without any problems . now texas department for motor vehicles have banned ` offensive ' plates .\nchelsy , 29 , wore ripped jeans and chic blazer on night out in london . it was the second consecutive night out for prince harry 's ex . joined friends on tuesday at launch of the ivy club , chelsea .\nnational institute on drug abuse admits cannabis has medicinal benefits . us guidance states drug can help kill some cancer cells and shrink others . cannabinoids - chemicals in marijuana - currently used in medication to treat ms patients in both the us and uk . autoimmune diseases , including hiv and aids , multiple sclerosis and alzheimer 's disease . inflammation . pain . seizures . substance use disorders . mental disorders .\nfrancis bakvis , from clifton beach in queensland , discovered dead python . mr bakvis had been searching for his pet cat which had gone missing . when he tried to move the snake its skin split open and his cat spilled out . the 3.5 metre long python died while trying to digest the 16-year-old pet . he had never seen pythons on the property in 15 years of living there .\nrochelle coulson , from new milton , gets equivalent to # 22k taxable salary . that is more than a nurse 's starting wage and the same salary as a teacher . ms coulson claims she can not work because she falls asleep unexpectedly . doctors said she must lose weight , but ms coulson wants a state-funded support worker to help her write meal plans . rochelle 's story is featured in benefits and bypasses : the billion pound patients on channel 5 at 9pm tonight . .\njack henry doshay , 22 , was arrested at a residential facility wednesday where he was receiving treatment for depression . authorities say he tried to kidnap a 7-year-old girl from a solana beach , california elementary school on march 23 . on friday , doshay pleaded not guilty to charges of kidnapping , false imprisonment with violence and child cruelty in his first court appearance . he is the son of prominent san diego businessman glenn doshay , who is a minority owner of the san diego padres baseball team .\nkevin sinfield made his 500th appearance for leeds . warrington registered tries through gene ormsby , joel monaghan , ashton sims , ben currie and roy asotasi . leeds replied with kallum watkins and mitch achurch .\na victim of bega cheese boss maurice van ryan read her impact statement . she told sydney district court on monday she felt scared and ashamed . ' i did n't know it was against the law , ' the victim said .\nwidow of a patient who died has defended gp at the centre of police probe . yvonne deegan 's husband bernie died this year following cancer battle . she said she was ` perfectly happy ' with the care provided by dr rory lyons . her husband 's death is one of four being investigated as part of probe .\nengland are reigning champions having beaten holland in last year 's final . the young lions have been placed in group d of the tournament . england will compete against holland , italy and the republic of ireland .\nparis saint-germain striker zlatan ibrahimovic picked up a four-game ban . the sweden international was caught on camera swearing about a referee . marseille 's dimitri payet also received a two-game ban for swearing at a closed referee 's door after a match against lyon . both have had their bans reduced by one match after appealing .\nmoses yitzchok greenfeld died while swimming in hampstead . he was seen in difficulty in water at 5.30 pm and body recovered at 11pm . eyewitnesses claim emergency services crew watched as boys dived in . family pay tribute to ` wonderful ' and ` friendly ' teenager .\nfloyd mayweather is brash , he can be crass , and when it comes to being a braggart , he is the undisputed world champion . previously known as money mayweather , he took to referring to himself as tbe , or the best ever in the build-up to his fight with manny pacquiao . he said this week he is better than muhammad ali and sugar ray robinson ever were . he is scorned as a great vulgarian and yet more than any other modern fighter he embodies the mastery of some of its finest skills . you might want him to lose to manny pacquiao but you better accept that he probably wo n't . he is as close to genius as it gets in modern boxing .\nlebron james scores 30 points as cleveland beat boston . cavaliers beat celtics 99-91 to extend their lead in series to 2-0 . washington wizards beat toronto raptors 117-106 in canada . houston rockets take 2-0 lead over dallas mavericks with 111-99 win .\nfor the most elite travellers , vacations are rarely planned far in advance . there is an an emphasis on travel ` experiences , ' which happen on a whim . a-list wedding and event planners from the us and uk share their stories .\nkevin bowes lost several teeth , had four ` avoidable ' root canal treatments and five ` avoidable ' crowns fitted by dr nicholas crees over a decade . second dentists said he will need extensive treatment to repair decay . awarded # 30,000 out-of-court but dr crees has not admitted liability . mr bowes , said : ' i was devastated . i had no idea my teeth were so bad '\na girl is seized by authorities who thought she was the daughter of a woman in houston . dna tests show she is not . the mother of alondra luna nuñez says : `` they stole my child ''\nwest ham are currently top of the fair play rankings in the premier league . should they finish there at the end of the season , they could qualify for the europa league next term . sam allardyce is well aware of the benefits of being able to offer european football to players in the transfer market . allardyce led bolton wanderers to uefa cup qualification in 2005 .\nprelate 's online lover approached church about alleged improper conduct . claimed to have evidence italian priest was having sex with prostitutes . also said the priest took part in explicit gay web chats and sexual role play . he allegedly made lovers pretend to be judas so he could ` punish ' them .\njordan henderson says his team will not give up hope of top-four finish . liverpool were beaten 4-1 at arsenal in a massive blow to their hopes . defeat left liverpool eight points off fourth place with seven to play . liverpool face blackburn in fa cup quarter-final replay on wednesday .\nvideo of little girl firing several rounds ` towards isis ' has gone viral . the girl , dressed in pink , tells man off camera she has killed 400 fighters . the man encourages her by saying ` kill , kill ' as she shoots machine gun . kurdish known for their female fighters - but isis known for using children .\nimf europe head says bail-out negotiations with athens are ` not working ' some greek officials appear to be preparing themselves for a default . eurozone member is beginning to run out of time for making fiscal reforms . finance minister said country was committed to changes at last repayment .\nthe video was filmed over 45 minutes at bardwell park station in sydney . it shows the rising flood water taking over the train tracks . sydney 's two-day total rain fall totalled about 225mm on wednesday . the flooding caused a partial closure of the airport train line .\ndax internet addiction treatment centre in beijing has welcomed 6,000 patients since it opened its doors in 2006 . the military-style bootcamp claims to have cured 75 per cent of their addiction to electronic gadgets . internet addiction or wangyin is said to affect 24 million of the china 's 632 million web users .\nclaudia martins convicted of the manslaughter of her newborn baby girl . the 33-year-old killed the infant by filling its mouth with toilet paper . convicted of manslaughter on the grounds of diminished responsibility . avoids jail as judge says she suffered ` momentary abnormality of mental functioning '\ntina sinatra , 66 , laughed when he asked if mia farrow 's son ronan , 27 , was her brother . she said : ` could n't be . frank had a vasectomy before that . i do n't know whose son ronan is ' in 2013 , mia farrow admitted that frank sinatra may be the father of her son , instead of woody allen .\ndivock origi signed for liverpool last year but went back to lille on loan . he will join up with liverpool properly after the end of the season . origi is impressed with the progress of jordon ibe and raheem sterling . sterling insists contract criticism ` goes in one ear and out the other ' . click here for all the latest liverpool news .\nsabrina broadbent tetzner escaped the colorado city , arizona fundamentalist mormon sect headed by warren jeffs eight years ago . last week , the 32-year-old mother gained full custody of her four children , ages 8 to 13 . when she tried to pick up the kids from their aunt 's house , she was physically barred by hundreds of cult members . sheriff 's deputies had to take out a search warrant to reunite the mother with her two daughters and two sons .\nchelsea travel to arsenal as they close in on the premier league title . eden hazard has scored 13 goals during another impressive season . ex-man united star paul scholes says hazard needs to be more ruthless . then he 'll compete with cristiano ronaldo and lionel messi , says scholes .\nisis fighters destroyed ancient ruins of iraqi assyrian city of nimrud dating back to the 13th century b.c. . the attack , near mosul , took place last month , but a seven-minute video of destruction has now emerged . it shows militants hacking and drilling away at 3,000-year-old relics and blowing up the ancient ruins . the u.n. secretary-general ban ki-moon has called the destruction of the nimrud ruins ' a war crime '\nnicola bonn , a journalist and broadcaster , shares her candid account . says she 's found becoming a new mother ` exciting yet utterly petrifying ' is fed up of other mothers judging her and giving her advice .\nchelsea are considering a pre-season tour to japan this summer . if it goes ahead , the 12,000-mile round trip would likely last for two weeks . but international bosses will require chelsea players in june .\nandrew getty 's death appears to be from natural causes , police say , citing coroner 's early assessment . in a petition for a restraining order , getty had written he had a serious medical condition . police say this is not a criminal matter at this time .\ntim sherwood paid tribute to his bamboozling side after wembley win . aston villa came from behind to beat brendan rodgers ' liverpool side . sherwood feels liverpool did not expect how his side approached game . christian benteke and fabian delph starred as villains booked final place .\ntokyo researchers have proposed a laser system to attach to the iss . it would be used to shoot down pieces of debris in earth orbit . would have a range of 100km and could target things less than 1cm in size . the team says their proposal could remove ` most ' of the debris in orbit .\ngroup of young thugs are terrorising high green estate in sheffield . youngsters are using bb guns and air rifles to shoot at cars and homes . terrified residents on estate say they are being ` held to ransom ' by yobs . claim woman was shot at and concerned someone will be seriously injured .\nemir spahic sacked with immediate effect by bayer leverkusen . the defender was seen brawling with security officials last weekend . spahic has accepted responsibility and leaves the german side .\nandrea dossena arrested on suspicion of shoplifting on tuesday . italian dossena was later bailed with a 31-year-old woman . the 33-year-old plays for league one strugglers leyton orient . dossena was informed by police on april 10 that no further action would be taken in relation to the incident . since publication of this article , representatives for the player have informed us that the incident was down to an oversight when he forgot to pay for honey and dried beef . dossena was informed by police on april 10 that no further action would be taken . .\nthierry henry praised francis coquelin 's performance at turf moor . the former arsenal striker was speaking on sky sports ' coverage . henry referred to coquelin as ` the detective ' and ` columbo ' .\nvijay das : so-so jobs numbers contain truth that worries labor experts : too much american job growth is in part-time low-income work . he says erratic work schedules tied to customer traffic wreaks havoc with low-wage workers ' lives . congress can fix this .\ntyler grant claims a whataburger in texas denied service because grant was wearing a dress . the whataburger says they did not let grant enter because the outfit in question was see-through . ` if it were see-through , then she would have seen my brightly colored underwear , ' grant said on facebook . grant claims the outfit consisted of five pairs of tights . grant is still deciding whether or not to pursue legal action .\ncheryl rios of dallas posted her views on her facebook page on sunday after hillary clinton announced that she was going to run for president . ` with the hormones we have , there is no way -lsb- a woman -rsb- should be able to start a war , ' she wrote in her post . rios , the ceo of go ape marketing and says she women can be successful in business , but does n't think a woman can run the country . rios said she would move to canada if hillary clinton became president .\ndawn williamson , 39 , had been petrified of snakes since the age of 9 . she shook and cried when presented with a plastic one . therapists nik and eva speakman cured her with ` logic ' they made dawn realise her fear was completely irrational .\ned miliband is trying to build his ` leadership skills ' using psychology . he has hired a leadership coaching firm to help him feel less anxious . the firm extendedmind also tries to make its clients seem ` more authentic ' miliband had a note to remind him to be a ` happy warrior ' during a debate .\n` chris ' , who worked with sas and marines , was shot near home in khost . 26-year-old says taliban have attempted to kill or kidnap him several times . but he says british government has dismissed his fears on ten occasions . immigration scheme says he can not live in uk because of his dates of service .\n55 dead greyhound carcasses found dumped in coonar , queensland . a joint rspca and queensland police task force is investigating . early investigations suggest the dogs were young dogs that were killed as they were too slow . they were found in various states of decomposition in an area with no other training facilities or connections to the industry . rspca spokesperson says they believe they may be young dogs that were n't fast enough .\ndonny ray williams on friday was given a suspended sentence and 5 years probation for two 2010 sexual assaults . prosecutors spared williams jail time largely because of his severe medical issues stemming from an unrelated 2013 acid attack . williams was once a staffer for the senate homeland security and government affairs disaster recovery subcommittees .\nmanchester city fined # 50million for breaking ffp regulations in 2014 . vincent kompany insists the rulings only help the elite clubs . city take on neighbours manchester united in the derby on sunday .\nsally kohn : supreme court seems to have increasingly become a place for partisan theatrics . she says marriage equality arguments seemed even more shaped by politics than the law .\neverton held an open training session at goodison park on tuesday . the toffees are preparing to face swansea city at the liberty stadium . midfielders steven pienaar and kevin mirallas both involved after injuries . gareth barry wants to continue winning run after three victories in a row . click here for all the latest everton news .\nmiss sturgeon made the call in debate at king 's college , aberdeen , tonight . said she wants powers ` as quickly as the other parties agree to give them ' scots labour leader jim murphy said move would ruin country 's finances . drop in value of north sea oil would mean a # 7.6 bn hole in the budget . mr rennie , who openly admitted the libdems had broken a promise not to raise tuition fees , cautioned miss sturgeon against breaking her promise that last year 's referendum was a ` once-in-a-generation ' vote . miss davidson was forced to accept the uk government could not stand in the way of another referendum . mr harvie called for the end of north sea oil extraction -- in a city where thousands of workers rely on its future .\n15 animals escaped from a farm in schodack in upstate new york on thursday evening then crossed the river . they safely crossed roads and made it onto the thurway which links up the major cities in the state . however authorities took the decision to gun them down because they posed a danger to the public . police say the decision was made after experts agreed tranquilizers would not be effective .\nthe turin club are 14 points clear of roma at the top of serie a. juventus are aiming for a fourth straight scudetto title . the bianconeri are on for a potential treble , playing in the champions league quarter-finals and the coppa italia semi-finals .\njust four in 10 renters aged 20 to 45 are saving for a deposit to buy a home . this is compared to almost half a year ago , according to halifax research . also found that three-quarters of uk renters fear they will never be able to afford to buy their own house .\nsteve bruce has promised wife janet to go on a diet and lose some weight . hull boss was pictured lapping up the sun with pal alan shearer . bruce was enjoying a short holiday during the international break .\naustralia will face england and wales in pool a at the world cup . the wallabies pack was taken apart by england at twickenham last year . michael cheika cites mike brown and jonathan joseph as key threats . sam burgess will feature for england at tournament , says cheika . cheika met matt giteau this week to discuss his involvement .\nsocial media and smart phones cause a minefield of problems while dating . being clingy on facebook or constantly on your mobile can be off-putting . femail provides ten tips for stress-free dating .\nliverpool and manchester united are set to battle for memphis depay . but bayern munich have now joined the race for his signature . holland international depay has scored 23 goals for the club this season . read : liverpool set for summer overhaul with ten kop stars on way out .\nandy murray beat novak djokovic in straights sets to win at sw19 in 2013 . jose mourinho said he could feel the emotion of what it meant to murray . mourinho also hails wimbledon as ` more than a grand slam ' . read : mourinho critics do n't have a leg to stand on as he gets job done .\niran 's first supreme leader made a bitter peace with iraq 's saddam hussein . nazila fathi : is current leader ayatollah khamanei trying to put iran on right track before he dies ?\njurgen klopp will leave borussia dortmund after seven years in charge . he has denied that he wants to take a break because of exhaustion . premier league clubs could make a move for klopp this summer . but he is unlikely to replace manuel pellegrini at manchester city . klopp has won two bundesliga titles and the german cup at dortmund . he has admitted that he is no longer the perfect manager for the club .\ncentral arizona project invested $ 1 million to research cloud seeding . process involves seeding clouds over the rockies with silver iodide . some scientists are concerned about silver building up in river basins . there are also legal uncertainties over who should get additional water .\njake malone , 60 , met woman who calls herself ` rili ' on social website . after seeing her photograph the canadian claims it was love at first sight . flew to shenzhen , but ca n't contact her as social website has shut down . so he wanders the streets with her picture and appeal attached to his chest .\nhillary clinton seen as honest and trustworthy by just 38 per cent of americans , new poll shows . new headaches include revelations about foreign funds flowing into the clintons ' family foundation while she was secretary of state . $ 2.35 million came from family foundation of company chairman involved in selling canadian uranium company to russian state-owned firm . hillary helped approve that $ 610 million sale in 2010 , which gave vladimir putin-linked company control over one-fifth of america 's uranium . bill clinton received $ 26 million in speaking fees from foundation donors , including $ 500,000 from an investment bank tied to putin and the kremlin . chelsea clinton defended the foundation that now bears her name , saying it 's ` among the most transparent ' philanthropies in the us .\ncobbles will be lifted from their current place , cut in half and relaid again . the paving stones run alongside the 19th century bristol floating harbour . council tested technique on small area and had ` overwhelming ' support . bristol industrial archaeological society claim it will change appearance .\ndavid messerschmitt , 30 , who met his wife in college , had been using craigslist to solicit men , according to an affidavit on tuesday . jamyra gallmon , 21 , ` contacted victim using a masculine-sounding email address and went to hotel with the intention of robbing him ' the pair got into a struggle on february 9 and she stabbed him repeatedly in the abdomen , back and groin . the lawyer was found dead at the upscale washington dc hotel after being reported missing by his wife . gallmon made an initial appearance on the murder charge superior court in dc on thursday .\ninterior designer abigail ahern has written new style bible about colour . says her own colourful home gives her a ` squishy feeling of contentment ' . being bold with colour is easier than you think , according to expert .\niran 's military held annual national army day parade over the weekend . top military official says he hopes u.s.-iranian enmity will fade . u.s. has welcomed limited iranian help in fight against isis but neither side plans full coordination .\nvictorino chua , 49 , wrote 13-page document describing his battle with depression and physical injury . described note as ` bitter nurse confession ' and said he had a ` devil in me ' claimed he had contemplated suicide but thought he 'd go ` straight to hell ' chua denies murdering three patients at stockport hospital in 2011 .\ncarla suarez navarro beat venus williams in the miami open quarter-finals . the spaniard fought back from a first-set bagel to win 0-6 , 6-1 , 75 . german no 9 seed andrea petkovic beat karolina pliskova 6-4 , 6-2 . click here for all the latest from the miami open .\naustralian mp andrew robb says he would put a pen in his mouth to smile . government minister did so to trick his brain into releases endorphins . mr robb battled depression much of his life , before seeking help in 2009 . prevention and treatment of mental illness is key , says labor 's anna burke .\nanthony stokes died on tuesday after he crashed a stolen car into a pole while fleeing from the scene of an attempted burglary in roswell , georgia . he had fired at an elderly woman after breaking into her home . less than two years ago , he was given a life-saving heart transplant . he was initially denied the surgery because doctors said he had previously failed to take medication so would be ` non-compliant ' with the treatment . but they changed their minds following pressure from civil rights groups and the boy 's family , who said he had been stereotyped as a troubled teen . after the transplant , he said he was grateful for a second chance at life .\npaul nungesser was accused of raping former friend emma sulkowicz . the case attracted international attention as she paraded her mattress everywhere she went in protest , calling for nungesser 's indictment . a judge threw out the case which branded nungesser a ` serial rapist ' he is now suing the school for failing to protect him from backlash . nungesser , who is german , says the school presented the claims as fact .\nleeds fans , kevin speight and christopher loftus , were killed before the uefa cup semi-final first leg against galatasaray in istanbul in april 2000 . leeds are marking 15th anniversary with a minute 's silence on saturday . wesley sneijder tweeted on the morning of the match : ` finally my galatasaraysk knife set is now available and can be delivered everywhere ' the striker later deleted the tweet after receiving angry responses . sneijder replied to one supporter : ` very sorry . i did n't know this and deleted our promotion for the merchandise kitchen item . #respect '\npolice caught baggage handlers at miami international airport stealing from passenger luggage after installing a hidden camera . this as it is revealed that airline customers have reported $ 2.5 million in lost property from 2010 to 2014 . 31 employees have been arrested for theft at miami international airport since 2012 , including six this year . there have been 30,621 claims of missing valuables since 2010 , with most claims coming from john f. kennedy airport in new york . since 2002 , the tsa has fired 513 workers for theft , though it is now known how many of them faced criminal charges . last year , 16 employees at los angeles international airport were fired for theft after police searched their homes and found luxury items .\nholidaymakers are willing to travel the world to take in stunning views from man-made or natural vantage points . brave souls can hang over the edge of toronto 's cn tower , which stands 1,815 ft tall . pulpit rock in forsand , norway has a flat top that provides a setting for the ultimate selfie at 1,982 ft.\nmanchester united lead manchester city in premier league ahead of derby . manuel pellegrini 's side are in poor form ahead of old trafford clash . louis van gaal has found a system to suit his man united squad . ander herrera , juan mata and wayne rooney are in fine form . the defence may struggle , but our xi has plenty of playmakers and goals . manchester united vs manchester city : the experts view of the big derby .\nuk oil & gas investments described discovery as ` world class ' last week . they claimed the site in sussex could yield up to 100 billion barrels of oil . company 's share price increased by 200 per cent following ` breakthrough ' but it has today admitted there may not be as much oil there as suggested . they based their estimates on the 55-square-miles they have licence for . it makes up for less than two per cent of the entire weald basin .\nan unnamed woman was shot by police after she allegedly opened fire on them while sitting in the back of a cop car . the incident happened near the fulton county courthouse in downtown atlanta on thursday . the woman had been taken into custody after being found sitting inside a stolen car . at one point the woman fired at least two shots at the officers , and they returned fire , fatally wounding her .\namanda holden is presenting news heartbreaking series on itv . show highlights plight of rspca 's newbrook farm animal centre . hopes animals featured will find new homes each week .\nlabour leader 's secret cribsheets revealed his peculiar set of reminders . included words ` happy warrior , calm , never agitated ' and ` me versus dc ' labour defended notes calling them evidence of miliband 's ` positive vision '\nalice barker danced in legendary apollo and zanzibar clubs during the 1930s harlem renaissance , as well as movies , tv and commercials . but she had lost her old photographs with time , and no one could find her videos because of a misspelling of her name . david shuff , who met barker years ago , reunited her with some of her short musical films known then as ` soundies ' the videos now play in the common room of her retirement home , where shuff says she is a ` rock star ' .\n`` the muppets '' might return to television on abc . `` the big bang theory '' co-creator bill prady is co-writing a pilot script . the old muppet gang would return for the variety show .\nnew mothers under more pressure than ever to ` bounce back ' after birth . experts warn that doing too much too soon could do long term damage . camilla lawrence , women 's health physiotherapist , says safety is key .\nvictims were found inside home in princess anne , maryland , monday afternoon . dead children range in age from six to 16 and were all brothers and sisters . relatives named the adult victim as 36-year-old rodney todd sr . todd and his children - five daughters and two sons - had not been seen or heard from since march 28 . grandmother named the children as cameron , 13 ; zycheim , 7 ; tynijuiza , 15 ; tykira , 12 ; tybree , 10 ; tyania , 9 ; and tybria todd , 6 .\ntrainer oliver sherwood already has one eye on the 2015 grand national . many clouds romped to success at aintree in saturday 's big race . and the winning horse is in ` a1 condition ' , according to sherwood .\njean nidetch started weight watchers in 1963 . nidetch 's philosophy : `` it 's choice -- not chance -- that determines your destiny ''\narsenal beat reading 2-1 in the fa cup semi-final at wembley on saturday . footage apparently taken by a fan beforehand shows homophobic chant . it appears to show fans singing about ashley cole to a lily allen song . roma defender cole left arsenal to join london rivals chelsea in 2006 . a metropolitan police spokesman confirms they are assessing the video .\nkate middleton is expecting her second child in the next week . in her first pregnancy , she chose to cover up bump with stylish coats . some choose comfort over style , while others ignore they 're pregnant at all . kim kardashian remained glamorous in strappy heels and tight dresses .\nlacey spears of scottsville , kentucky , was found guilty last month of second-degree murder in the death of garnett-paul spears . the 27-year-old spears was found guilty of force-feeding heavy concentrations of sodium through the boy 's stomach tube . judge who sentenced spears on wednesday said she suffers from a mental illness and said the crime was still ` unfathomable in its cruelty ' she showed no emotion when she was sentenced .\nthe person climbed the fence on the south side of the white house complex . charges are pending .\nreanne evans is bidding to make snooker history . she is three matches away from reaching the world championship . no woman has ever played in the finals at the crucible . evans 's first qualifier is against 1997 world champion ken doherty .\nrangers legend john brown insistent ally mccoist can return to the club . the former gers boss left the club following speculation over ownership . brown says that fans love him and would welcome him back at ibrox .\nargentine president cristina fernandez de kirchner said islands not british . she said : ` we will see the islands form part of our territory again ' also publicly attacked plan to boost defences on the south atlantic islands . claimed she would sue oil firms drilling in the waters around the islands .\nstana , 37 , has been on the hit series castle for nearly six years . she wed over the weekend in the dalmatian coast in croatia . the new husband and wife shared a photo of their wedding rings . she has been dating brkljac for several years but was only spotted with him once in 2012 .\ngoldsmiths university students organised meeting to ` diversify curriculum ' the student union 's diversity officer said white men were not welcome . after anger over the move , organisers backed down and overturned ban .\npaul aldridge joined the club as vice chairman and ceo in january 2011 . aldridge had before worked at west ham , leieceter and manchester city . glenn roeder and adam pearson are part of a new management team at sheffield wednesday .\nstar reader was diagnosed with biliary atresia within days of being born . the baby 's bile ducts were blocked - a condition which can prove fatal . neither of her parents were suitable candidates for partial liver transplant . her maternal aunt shanell was the best chance she had at survival . star underwent operation in leeds in november and has since recovered .\nrugby league star james lockwood has been banned for two years . featherstone prop tested positive for growth hormone releasing factors . former dewsbury player was part of team that lost 2014 grand final .\nper mertesacker twisted his ankle in fa cup semi-final at wembley . scans revealed the stand-in arsenal captain escaped serious injury . arsenal beat reading 2-1 after extra-time in saturday 's match . they host premier league leaders chelsea on sunday at 4pm . click here for all the latest arsenal news .\nraheem sterling , jordan henderson and steven gerrard are liverpool 's top scorers in the premier league this season with six goals each . seventeen of 20 premier league clubs have top scorers with more goals . liverpool are paying for failing to properly replace goals of luis suarez .\nivan rakitic and wife raquel mauri shared instagram selfie from the beach . barcelona midfielder is hoping for la liga and champions league glory . lionel messi is expecting a second child with antonella roccuzzo .\ngofundme told daily mail online ` that after review , the campaign set up for officer slager was removed due to a violation of terms & conditions ' fundraising site indiegogo allowed the ` michael t. slager support fund ' to raise $ 393 of a $ 5,000 goal at 11am on thursday . an indiegogo spokesperson said : ` we do n't judge the content of campaigns as long as they are in compliance with our terms of use '\nmr osborne was shown around the henry the hoover factory in chard . chancellor met his vacuum doppelganger at a campaign stop in somerset . tory minister was highlighting the government 's apprenticeships drive .\naston villa host qpr on tuesday night in a crucial relegation battle match . managers tim sherwood and chris ramsey to put their friendship aside . a win for qpr puts them out of the bottom three and above aston villa . alan hutton , ashley westwood and scott sinclair are all out for villa . in-form eduardo vargas out for qpr while bobby zamora 's on cotton wool . click here for aston villa vs qpr team news , probable line ups & more .\nheather mack ,19 , tells bali court she did not kill sheila von wiese-mack . on trial for mother 's murder with 21-year-old boyfriend tommy schaefer . mack gave birth to baby stella schaefer last month in prison hospital . couple facing a nervous five day wait for judge 's to return their verdict .\ndavid axelrod masterminded two obama presidential election victories . he was hired by labour leader ed miliband amid great fanfare last year . revealed at a book launch that he is not resident for tax purposes in uk . labour confirms it pays mr axelrod in dollars through consultancy firm .\ntiffany sical , 21 , and bryan rodriguez-solis , 23 , were driving on highway . they were heading home after watching fast & furious 7 in rhode island . but they died after ` drunk ' joel norman , 24 , reportedly drove up exit ramp . norman ` drove wrong way up providence highway for 1.2 miles at 1.35 am ' he then smashed into couple 's car , leaving their daughter , six , an orphan . now , suspect is facing charges of driving under influence , causing death . grieving relatives said they did not know how to tell little girl about crash . comes nearly a year and a half after the fast and the furious star paul walker was killed when porshe he was traveling in crashed in california .\ndenise chiffon berry , 44 , was driving in hawthorne , california with her unidentified 12-year-old son on wednesday . around 12:30 pm , her son saw a man riding in a cadillac with his feet handing out the window and the two laughed at the scene . when the cadillac began following their vehicle , ms berry pulled over to ask a police officer for help . that 's when raymond washington , who was in the front passenger seat , got out of the cadillac and started shooting at ms berry and her son . ms berry died at her scene while her son survived ; washington was shot dead by the police officer helping the mother and son . washington , 38 , was a father-of-two and had a previous felony conviction .\n2006 big brother winner pete squandered prize money on ketamine . he is now clean but homeless - and tells jeremy kyle he wants act . we look back at the fates of other winners of the reality tv show . some work in showbiz , while others returned to everyday life .\ncounty championship 2015 season to begin on sunday . yorkshire looking to defend their division one title . mark butcher backs sussex to win division one this year . kevin pietersen and surrey will be focus of attention in division two .\nwolfsburg are showing interest in manchester united 's javier hernandez . the german club have also considered edin dzeko at manchester city . united , meanwhile , have made a revised contract offer to andreas pereira . paris saint-germain are very interested in angel di maria and paul pogba . liverpool have been watching fiorentina goalkeeper norberto neto . nedum onouha is being tracked by west ham , stoke , everton and hull . burnley are among clubs monitoring newcastle loan star haris vuckic .\nthe iron throne was forged from 200 swords melted by dragon breath . california 's loo version was built by prop makers using plywood . it was presented to game of thrones superfan john giovanazzi . the incredible loo was then installed in his bar in glendale , california .\nbuckingham palace guard slipped and fell in front of hundreds of tourists . thought to have stumbled on manhole cover during changing of the guard . embarrassed young soldier ended up on the floor still clutching his rifle . unfortunately for him the entire incident was caught on tourist 's camera .\nin july 2010 , joyce bruce got pregnant in an unusual way -- with repeated attempts using a turkey baster . the man who gave her his sperm wanted to have a role in his son 's life . they ended up in court , and he has won joint custody and visitation rights .\nkefalonia is stunning and does n't play the captain corelli 's mandolin card . island has n't been tainted by the crowds its greek counterparts get . it 's a quarter of the size of spain 's majorca but with a 20th of the tourists . the one must-do outing in kefalonia is to fiskardo , a lovely harbour .\naustralian couple who abandoned baby knew they were breaking the law . documents reveal the australian government had knowledge of the ordeal . couple told staff they only wanted a baby girl to ` complete their family ' it was feared the abandoned boy may have been sold .\ndairy factory in red sea port city of hodeida was destroyed earlier today . 35 people were killed in airstrike that prompted houthi rebels to return fire . attack comes as saudi issues new warning of imminent ground invasion . general hinted that ongoing airstrikes may require support on the ground .\nnearly 3.8 million crimes were recorded by the police last year . this represented an increase of 2 per cent from 2013 , figures revealed . record number of rapes and other sex crimes were logged - 220 a day . experts chalked the surge down to high profile cases like jimmy savile 's .\nsaba and sheikh amari run luxury car dealership in preston . the couple sell sought-after new and classic cars to the rich and famous . saba she uses her feminine wiles to get clients to part with their cash . salesman tom hartley and son carl sell # 4million worth of cars each week .\njoseph koetters has been sued by an unnamed marlborough student , 30 . lawsuit alleges that koetters took part in a year-long sexual relationship with a 16-year-old student , which began in the 2000-2001 school year . lawsuit also claims unnamed teachers and school officials are held responsible for not ending the relationship . woman came forward after another former student wrote an online essay accusing koetters of acting inappropriately toward her .\nwashington , dc company united space structures wants to create a new space station . it rotates four times a minute to create artificial gravity - with the ` stem ' and ` dome spinning in opposite directions . it would be 1,300 ft -lrb- 400 metres -rrb- long , cost # 200 billion -lrb- $ 300 billion -rrb- and take 30 years to build . ` we believe artificial gravity is required to support long term living in space , ' bill kemp from uss told mailonline .\ndavid alderson , 72 , was found dead in a cornish copper mine last january . police thought he had died in a cycling accident but kevin cooper and trewen kevern and now accused of murdering him . court hears they lured victim to mine by offering to sell him illegal guns . defendants ` beat pensioner around head and left him face down in pond '\naston villa 's gabriel agbonlahor throws a flurry of punches in training . attacker is closing in on return to fitness following hamstring injury . agbonlahor missed aston villa 's semi-final victory against liverpool . the 28-year-old will be hoping to return against manchester city .\nmother must complete `` treatment '' before she can be extradited , maryland police say . mom told police son was with her in maryland , but he was found friday alone in woods . victim being treated for malnutrition , dehydration ; mother faces host of charges after extradition .\nwarning : graphic content . child left with horrific scars by adopted mother over homework she set him . biological mother had sent her son to live with cousin for a better life . adoptive mum now in custody after incident that sparked outrage in china .\nhubble has helped make major discoveries but there are limits to how far it can see into space . the james webb space telescope will work in the infra-red and be able to see objects that formed 13 billion years ago . scientists also believe the new telescope will be able to detect planets around nearby stars .\ncctv towers will monitor the border between poland and kaliningrad . towers will range from 115ft to 164ft and cost # 2.5 million to build . moscow has announced they are set to place missiles in the exclave . both nato and russia are carrying out military exercises in the baltic .\nwatford took the lead after just four minutes through odion ighalo . defender matthew connolly doubled the hornets ' advantage . almen abdi scored a third following gary gardner 's goal for the home side . watford climbed to third , one point off top spot in the championship .\ncheryl prudham , 33 , from kent , planning to renew vows with husband rob . pair splashing out on hotel , gown , limousine and casino gambling money . even wants to try for 13th child there so she can boast it is conceived in la. . comes just weeks after pair reunited following split over mr prudham 's indecent facebook messages .\nshocking footage has emerged of three young thugs threatening a driver . the red ute appeared frustrated as they attempted to overtake a slow car . when the ute pulled up in front of another car , three people got out . an armed woman was seen stabbing the car 's bonnet on a melbourne road . the ute driver has been suspended for 12 months and hit with a $ 2000 fine . police are investigating the woman who was armed with a weapon .\npolice were called after a neighbor saw south walking through a field behind a louisville middle school while pointing a gun in the air . police asked south to put the gun down but instead he pointed it at them . after shots were fired by police , south shot himself in the head and died .\ntiffany williams and jessica versey became friends during treatment . both posted images on facebook to celebrate going into remission . but were ` upset ' to hear pictures were reported for being ` offensive ' . 19-year-old girls from chester had hodgkin lymphoma and leukemia .\nrange rover vogue was stolen from surrey property belonging to former chelsea midfielder michael essien . burglars stole the # 75,000 4x4 in early morning raid . a neighbour had a mercedes and bmw stolen on same day . ghana international essien left chelsea for milan in january 2014 .\nmanny pacquiao took time out from training to meet mark wahlberg . floyd mayweather shared a picture of him holding a weight with his head . the due meet in las vegas in a # 160million encounter on may 2 .\nnew video features an australian doctor called abu yusuf al-australi . the doctor calls on foreigners with training to join the isis health service . he is seen handling babies while dressed in western-style surgical scrubs . the video appears to be mimicking britain 's national health service . nine british medical students recently travelled to syria to join isis .\nparts of nsw are being hit with the worst weather in half a decade . social media users have taken to snapchat to share their adventures . some are boogie boarding down floodwaters after beaches were closed . others decided to try their hand at windsurfing on a skateboard .\nrafa benitez has won 12 trophies with valencia , liverpool , inter milan , chelsea and napoli since 2002 . benitez 's contract at napoli is up in the summer and he is set to a manager in demand . manchester city and west ham are two clubs who could be interest in him .\nalejandro valverde won ahead of julian alaphilippe and michael albasini . chris froome finished 123rd after a crash during the final 12 kilometres . team sky 's sports director gabriel rasch praised froome for finishing . rasch said froome was ` banged up ' but expects to ride tour de romandie .\nblack cat rademenes snuggles with dogs and cats at the polish shelter . he was brought in to the animal hospital with a respiratory infection . after surviving the illness as a two-month-old kitten he now helps others . rademenes comforts the strays after surgery and even licks their ears .\nwarning graphic content . aracely meza , who is not the child 's mother , was arrested on monday . she is the wife of pastor daniel meza who presided over church services held at a balch springs , texas residence where ceremony occurred . aracely meza has been charged with injury to a child by omission . witness identified child as benjamin who said pastors said he was possessed by demons ; he also went 25 days without food before he died . police went to the home on march 26 to do a welfare check and were told by residents that a two-year-old child had died . march 22 ceremony was an attempt to resurrect the child , police claimed .\njack colback admits he feels sorry for the newcastle united supporters . john carver 's side have n't won a game since the end of february . newcastle were outclassed by liverpool on monday night at anfield . siem de jong could boost the club with his imminent return . click here for all the latest newcastle united news .\ndawn bainbridge , 47 , and her daughters made # 50,000 from shoplifting . three women stole clothes and sold them on facebook page for profit . bainbridge was described as ` fagin ' character and the ` villain of the piece ' women do n't own any assets so were ordered to pay back just # 1 each .\ntwo men got in an argument about noise levels on thursday night . a scuffle broke out and phillip pama struck leon yeaman once in the head . mr yeaman could not be revived and was announced dead at the scene . pama has no history of violence and is reportedly ` beside himself ' . his defence lawyer said he hit out ` blindly ' and did n't see his punch connect . pama was granted conditional bail and is set to return to court may 18 .\nmay wong 's four-year-old cockapoo , miss darcy , has travelled the world . destinations she has visited include new york , berlin , milan and paris . the seasoned traveller took 12 trips with her owner last year alone . now , pair have been joined on their trips by miss wong 's new dog george .\nreading are 18th in the championship while birmingham city sit in 15th . clayton donaldson 's 83rd minute header secured the three points . the fa cup semi-finalists dominated possession but were made to pay .\nanand iyer , 36 , was earning six figures at threadflip in san francisco . he realized he did n't get much time to see his daughter , 2 , ava . he felt awkward at the playground and ava was asleep when he got home . quit his job to be house-husband , says it 's ` the best investment ' his wife shreya , 34 , now supports the family as a recruitment manager .\nflight centre founder geoff harris sells home for $ 5.5 million . the sprawling melbourne mansion is located in port melbourne . he accepted the offer from a couple at an auction on saturday . the self-made millionaire is reportedly worth $ 975 million . he is known for his work with charities and his involvement in afl .\nrecorder philip cattan , 65 , cheshire , fell asleep during evidence of abuse . young victim had to tell her story for a second time after the trial collapsed . lord chancellor and lord chief justice reprimand the judge for his actions .\nmanchester city have made little progress since manuel pellegrini arrived . despite last year 's title win , city have again failed miserably to retain it . vincent kompany no longer capable of producing top performances . city 's squad , constructed carefully and expensively , is too old , too foreign .\nemma dickson was taking the contraceptive pill and then was taken to hospital after suffering with sharp pains last november . doctors said she had developed blood clots , which can be caused by synthetic hormones in the pill , and clots had moved up to her lungs . clots , or pulmonary embolisms , were wedged in mrs dickson 's lungs and caused pleural effusion - where fluid starts to build up around the lungs . fluid caused her left lung to collapse and she thought she would die .\nfollows outbreak of h5n1 virus which can be deadly in humans . chickens culled and eggs buried in pits in bid to contain virus . virus has caused deaths of nearly 400 people worldwide since 2006 .\nauthor of ` into the wild ' spoke to five rape victims in missoula , montana . ` missoula : rape and the justice system in a college town ' was released april 21 . three of five victims profiled in the book sat down with abc 's nightline wednesday night . kelsey belnap , allison huguet and hillary mclaughlin said they had been raped by university of montana football players . huguet and mclaughlin 's attacker , beau donaldson , pleaded guilty to rape in 2012 and was sentenced to 10 years . belnap claimed four players gang-raped her in 2010 , but prosecutors never charged them citing lack of probable cause . mr krakauer wrote book after realizing close friend was a rape victim .\nthe body of a new york woman was left dangling from a fire escape for more than an hour sunday after she hung herself . the unnamed woman was discovered around 8.20 am sunday hanging from the third-floor fire escape of her apartment building . one neighbor said the woman had mental health issues .\ncarrick made just his 33rd appearance for england in italy on tuesday . the midfielder has been overlooked by a succession of england managers . this is despite being the main man at manchester united for years . roy hodgson seems to have realised the importance of carrick . but england may have won a major tournament with him in the side .\nwomen routinely ask for # 4,000 less for a typical job , new research finds . this can widen to # 10,000 in more senior industries such as accountancy . east anglia and east midlands had largest difference in expected salaries . findings released to coincide with equal pay day to show gender pay gap .\ncustomers are treating over-loved bags at handbag clinic in chelsea . set up to rejuvenate high-end accessories in need of a face-lift or repair . company say they are now repairing bags worth # 20,000 every day . famous clients include imogen thomas and made in chelsea stars .\nnhs labial reduction procedures risen five-fold in the last 10 years . more than 2,000 of the cosmetic operations were performed in 2010 . trend is reflected in australia with ops more than doubling in same time . experts call for more information to help women understand what 's normal .\nman city bounced back from derby defeat with 2-0 win over west ham . sergio aguero scored his 20th league goal of the season during victory . jesus navas impressed on the right-hand side of city 's midfield . manuel pellegrini 's side have moved to within one point of rivals united .\ndzhokhar tsarnaev is on trial for his alleged role in the boston marathon bombings . tsarnaev 's sister , ailina , was in court in december related to aggravated harassment charges . tsarnaev 's mother is wanted on felony charges of shoplifting and destruction of property .\nthe modern family star ` is content to leave her fertilized eggs frozen indefinitely ' her attorney says . loeb has filed a lawsuit to stop the actress destroying two frozen embryos , according to legal documents obtained by in touch . embryos were fertilized using her eggs and his sperm in november 2013 , six months before they split up , it is claimed . former couple previously tried to use surrogate to have children twice during their relationship , but procedures failed , according to the lawsuit . recent reports suggest that the colombian-born actress insisted her 44-year-old assistant be a surrogate despite her now ex 's objections . lawsuit also claims that vergara was ` physically and mentally abusive ' to loeb during their almost-four-year relationship .\nthe world has been paying tribute to richie benaud , the ` voice of cricket ' former australia captain and legendary cricket commentator died aged 84 . in november , benaud revealed he was being treated for skin cancer .\nstephen dodd photographed asif bodi and abubakar bhula praying during half-time at anfield last month . he captioned the image : ` muslims praying at half time #disgrace ' liverpool fc now say they will take action against dodd over the post . but mr bodi says he does n't want to see dodd banned from the ground .\nraheem sterling hopes the liverpool fans will soon be chanting his name . sterling has been stalling on a new # 100,000-a-week contract offer . the 20-year-old admits he ` loved ' the song fans had for luis suarez . read : sterling pictured smoking shisha pipe as star courts controversy . read : jordon ibe on the verge of signing new liverpool contract .\nsome 276 girls were kidnapped from their school in northeastern nigeria by boko haram a year ago . despite a global outcry , one year on , only a handful have escaped and returned home . isha sesay : we should all feel shame that our collective attention span is so fleeting .\nluke tingey and kyran wiltshire to spend time at united 's carrington hq . tingey , 18 , became youtube sensation after stunning 40-yard free kick . wiltshire , a central midfielder , was involved in mk dons ' pre-season squad . united keen to bring in talented younger players to boost squad numbers ahead of next season 's uefa under-19 youth league competition . read : what has louis van gaal changed since man utd sacked moyes ? . read : manchester united gareth bale to give his side needed dynamism .\nliverpool 's squad were in attendance at anfield to remember the 96 supporters who died at hillsborough . they were joined by families of the victims , club legends and thousands of fans . liverpool and everton captains steven gerrard and phil jagielka released 96 ballons into the sky . raheem sterling and jordon ibe were with the first team squad at the hillsborough memorial service .\nneil macgregor to leave job he has held since 2002 at the end of the year . sixty-eight-year-old said it was ' a difficult thing ' to finally decide to leave . previously ran the national gallery and has also worked as a broadcaster . history of the world in 100 objects series inspired by museum collection .\nobada has been signed by the cowboys despite playing just five games with the britbowl champions . the 22-year-old londoner only started playing american football last year . he has been mentored by warriors defensive co-ordinator aden durde , who spent last summer as a coaching intern with the cowboys . obada will give up his job in a welwyn garden city factory and head to rookie mini-camp in texas in may .\nsophia adams has been named winner of curvy kate model competition . the ` star in a bra ' winner will feature in their next campaign and has also landed a modelling contract with plus-size agency bridge models . launched in 2009 , curvy kate offers d-k cup lingerie , designed especially for a fuller bust . . 21-year-old adams , from north west london , has a 32jj bust .\nlee joon-seok had sentence extended from 36 years to life in jail . judge ruled his actions were ` homicide by willful negligence ' he was one of the first rescued and never ordered evacuation . most victims of the sewol disaster were high school students . follows protests from victims families who are calling for ship to be raised .\nst. joseph middle school in battle creek , michigan , had dismissed rose mcgrath for low attendance and poor academic performance . rose mcgrath was diagnosed with leukemia in 2012 and even though she just finished her treatment , she still feels ill a lot of the time . rose 's mother barbara mcgrath wo n't say if her daughter will return to the school , and says is sounds like ` they 're not going to pass her anyway ' school says rose attended just 32 full days this academic year out of 134 . rose is now attending lakeview middle school , a public school in the area .\nwalter scott shouted obscenities at a man and pushed a deputy , was jailed . report also shows he was $ 7,500 down on child support when he was shot . had already been jailed three times for missing payments in 2011 and 2012 . there was nothing directing officers to bring him to family court . dashcam footage shows scott running from his car after being pulled over . minutes later officer slager shot him in the back in a nearby park .\nfree movement rules allow eastern european gangs to run with ` impunity ' . human traffickers operate huge benefit frauds in the uk , report warns . vile trade also includes sale of girls for prostitution and sham marriages .\nthe 79th masters got underway on at augusta national on thursday . but who are the wives and girlfriends who will be cheering the players on . here , sportsmail brings you the lowdown on the masters wags .\nglenn murray was man of the match and scored fifth goal in five games . midfielder james mcarthur also put in a superb , full hearted performance . manuel pellegrini 's time is surely up after another disappointing defeat . click here to read neil ashton 's match report .\nwoman had been left clinging to the hull of overturned trimaran yesterday . partner had ensured she was safe before diving under boat to find flare . their trimaran had overturned more than a mile off the coast of kent . coastguard spokesman said pair were ` cold and shaken ' but unharmed .\nsienna miller , 33 , is ` not a gym person ' but loves yoga . mother-of-one works with a personal trainer , power-walking and jogging . try hip rolls , a pilates move that targets the ` oblique ' abdominal muscles .\ndaisy fell 10ft from quay into sea during holiday in caernarfon , north wales . westie was rescued by passing fisherman after disappearing below waves . owners dave rickard and his wife brenda gave lifeless pet the kiss of life . mr rickard , 72 , said he acted ` instinctively ' to save their beloved pet .\nfive men arrested as part of massive anti-terrorism raids in melbourne . asio warned families of the men they were targeted by isis recruiter . sevdet besim charged with committing acts to prepare for terrorist acts . police allege the men planned to target an anzac day ceremony . it is thought police and public would be attacked with swords and knives . another 18-year-old man was also arrested and remains in custody . three men had been released by police late on saturday night . more than 200 officers raided seven properties in melbourne on saturday .\nousted egyptian president mohamed morsy is convicted of charges involving violence against protesters . but he is acquitted of murder . `` we promise you unexpected revolutionary surprises , '' a muslim brotherhood spokesman says .\nmackey predicted what would happen to iraq if the u.s. invaded and deposed saddam hussein . she also wrote a book credited with helping bridge gap between arabs and americans .\nthe actor , 61 , appeared on good morning america to promote the forger . was asked about controversial scientology documentary going clear . film alleges church elders hold a ` blackmail file ' to keep travolta with them . travolta insists he has ` loved every minute ' , it is ` misunderstood ' and it has helped him get through hard times over 40 years . tells his critics to ` read a book ' and not to ` speculate ' .\neve addison developed strange swelling in her collarbone after gin . switching brands did n't help and she felt dreadful on nights out . after suffering night sweats , tests revealed she had hodgkin lymphoma . one symptom is swollen lymph nodes in neck , which can hurt after alcohol .\nchelsea scored late winner to beat qpr 1-0 at loftus road on sunday . cesc fabregas scored with chelsea 's only shot on target . chelsea move seven points clear at the top of the premier league . chris ramsey 's qpr remain in the premier league relegation zone .\nwestern gray whales were tagged seven years ago to monitor migration . the then nine-year-old female called varvara swam from russia to breeding grounds near mexico during five-and-a-half months in 2011 . gray whales typically do n't feed during migration , which has led researchers to believe she did n't eat during the long journey . previous record was held by a humpback who swam 11,706 miles in 2011 .\nquinton ` rampage ' jackson returns to the ufc after two year absence . former light-heavyweight champion takes on fabio maldonado in montreal . he had to come through protracted legal battle to feature at ufc 186 .\nxavier morales , 48 , allegedly told the woman he loved her while they attended a party and then tried to kiss her later that night in the office . the woman alleged morales did not relent until a brief struggle . the party was celebrating morales ' new assignment to head the louisville secret service field office , considered a stepping stone in the agency . morales had to turn in his gun and badge and lost his security clearance . he was a manager in the security clearance division and decided which agents lost their jobs because of misconduct .\nin a new poll , diana was the favourite name for the second royal baby . alice and charlotte were the second favourite names if it 's a girl . if it 's a boy , then the favourite name is james , followed by alexander .\nronald pearson and his wife miriam met and were married during wwii . he was a sergeant in the raf police while she worked as a driver for ats . the ` inseparable ' couple settled in broughton near chester to raise family . they died last month within two days of each other at the ages of 94 and 95 . their marriage was described as ` greatest true love story ' at joint funeral .\nsale remain seventh in the aviva premiership despite their defeat . london irish scored tries through alex lewington -lrb- two -rrb- and andrew fenby . exiles fly half chris noakes adding two penalties and two conversions . the sharks replied with tries from tom arscott -lrb- two -rrb- and mike haley . danny cipriani added eight points from the boot .\nastronomers have used a telescope in new mexico to watch a star form . named w75n -lrb- b -rrb- - vla2 it is 300 times brighter than the sun . images from 1996 and 2014 show how it is beginning to take shape . it could provide unprecedented insight into how huge stars are born .\ntop gear 's website previously featured all three presenters at top of page . it now shows a single image of racing driver the stig in his white helmet . bbc say change is to ` reflect that all three presenters are out of contract ' but it 's yet to confirm whether richard hammond or james may will return . jeremy clarkson was sensationally sacked from the show over a week ago .\npuno is not the most famous place in peru - but it is one of the most fun . it sits on the west bank of the famous -lrb- and spectacular -rrb- lake titicaca . visitors can sail on the lake to visit the fabled artificial uros islands .\npolish prince jan zylinski has challenged ukip leader nigel farage to a duel . in a video , zylinski says he is sick of poles being discriminated against in britain .\nphotographer timothy bouldry spent time at a massive landfill in guwahati , india . about 100 families live inside the boragaon landfill , but bouldry said they are `` content ''\nattack occurred wednesday at alverta b. gray schultz middle school in hempstead , new york . mother annika mckenzie , 34 , breached security by getting into building . believed math teacher catherine engelhardt had touched her daughter , 12 . mckenzie allegedly attacked her , with students joining . one of them was allegedly mckenzie 's 14-year-old niece . mckenzie and the niece were arrested at the scene and charged . engelhardt was unconscious for several minutes and taken to hospital .\nderry mathews was due to face richar abril on april 18 in liverpool . abril was due to face mathews on april 18 in liverpool . it was set to be the cuban 's second defence of his wba lightweight belt . click here for all the latest news from the world of boxing .\ndaphne selfe has been modelling since the fifties . she has recently landed a new campaign with vans and & other stories . the 86-year-old commands # 1,000 a day for her work .\njonathan brownlee won the second race of the itu season in auckland . brownlee also prevailed in australia , seeing off mario mola by 19 seconds . his brother alistair is expected back from injury in cape town on april 25 .\n12 protesters were arrested after blocking road leading to construction site of one of the world 's largest telescopes , thirty meter telescope . critics believe location on mauna kea , the highest point in the state , is considered a home of deities . the protesters who were arrested were released after posting $ 250 bail .\nthe women were traveling near savannah in two vehicles mangled by the when a tractor-trailer plowed into an suv , then rolled over a small car . killed were emily clark , morgan bass , abbie deloach , catherine pittman and caitlyn baggett - all juniors at georgia southern university . the georgia state patrol said three people also were injured and seven vehicles were damaged .\nhospital gowns have gotten a face-lift with help from fashion designers such as diane von furstenberg . what patients wear needs to be comfortable yet allow health professionals access during exams . patient satisfaction is linked to the size of medicare payments hospitals get .\nthe designer diffusion line went on sale sunday morning but was nearly sold out online before noon , with stores selling out minutes after opening . re-sellers initially tried to unload merchandise at crazy prices including $ 799 for a $ 150 hammock ; now thousands of pieces are available on ebay with smaller markups .\nthree-year-old choupette , the white siamese cat , is ` richest cat in world ' she did advert for cars in germany and beauty products in japan last year . both earned her # 2.18 million and was first cat to front a beauty campaign . this is just under the # 2.4 million cara delevingne earned last year . in new york karl lagerfeld 's moggy had her own room in # 400 a night hotel .\nmichael j from michigan filmed his 11-month-old daughter leighton in floods of tears . footage shows her immediately cheering up when she 's handed a french fry to lure over the family pup , zayla .\nlas vegas ' nickname of sin city relates to a building prostitutes used . london known as the old smoke owing to the 1952 great smog . singapore literally translates as lion city after founder said he saw a ` merlion ' - a cross between a mermaid and lion .\nbritish world dressage champion charlotte dujardin wins at world cup . 29-year-old victorious on horse valegro at grand prix in las vegas .\nsofia abramovich took to instagram to create a motivational post . she said she had been criticised since people found her account . the teenager said she would turn the negativity into positivity . sofia has also vowed to be more healthy and look after her body .\nmanchester united midfielder picks wayne rooney as his best finisher . michael carrick crowned the best passer to have played alongside him . phil jagielka named as the toughest tackler belgian has faced .\nrussian scientist says distant ancestor of humans had tentacles . they lived more than 540 million years ago and used them for food . it 's likely they also had a complex nervous system like we do today . challenges another theory that says our ancestors were more worm-like .\nalastair cook has gone 33 test innings without hitting a century . the 30-year-old remains england 's leading century maker despite blip . cook has been watching old footage of himself to study his technique .\nchristian benteke 's superb hat-trick against qpr secured a vital point for aston villa in their fight against relegation . fabian delph also gave an assured performance for villa in midfield . matty phillips is proving similarly key for the hoops and notched his sixth assist of 2015 . charlie austin scored his 17th premier league goal of the campaign .\nleighton baines and luke garbutt visit children 's hospital in liverpool . everton defenders hand out easter eggs to young patients and families . toffees face premier league clash against southampton on saturday .\nchancellor faces calls to rule out further tax cuts for the uk 's top earners . he dodged questions over plans to offer more help to # 50,000 plus salaries . instead he focused on raising the amount of tax-free income to # 12,500 . labour plans to impose 50 per cent tax rate on salaries of # 150,000 or more . the current rate for the top tax bracket is 45p with basic standing at 20p .\nabase hussen said maybe his daughter was influenced by attending a rally . amira abase was one of three teenage girls who fled to syria in february . mr hussen attended one rally alongside one of lee rigby 's killers . he said he moved to britain in 1999 for freedom and democracy .\nthe moon skimmed across the earth 's shadow on saturday , reflecting the red glare of the sun . it was the shortest lunar eclipse this century , with ` totality ' only visible for five minutes .\nad was created by pro-israel lobby american freedom defense initiative . federal judge sided with the group , ordering metropolitan transportation authority to run the posters because it is protected speech . mta officials claimed in lawsuit the ` killing jews ' ad could incite violence . the judge wrote in his decision mta and chairman thomas prendergast ` underestimate the tolerant quality of new yorkers ' .\nclare hines , who lives in brisbane , was diagnosed with a brain tumour . she found out she was pregnant a week before scheduled surgery . the 27-year-old had to decide to keep the baby or remove the tumour . ms hines went against warnings from doctors to give birth to son noah . she has since had many operations but has lost hearing in her right ear . ms hines , originally from the uk , is trying to raise money for a hearing aid .\nwoman 's body found in the water at derby motor boat club on sunday . discovered just hours after children 's easter egg hunt in the grounds . a 65-year-old man arrested in connection with her death has been bailed . police say they are treating unidentified woman 's death as ` suspicious '\nbayern munich face barcelona in the champions league semis . it means pep guardiola will travel back to the nou camp . bayern boss guardiola wants to find a way of stopping lionel messi . click here for the uefa champions league draw .\nbrendan rodgers has hit out at those advising raheem sterling . sterling has refused a big-money deal to extend his contract at anfield . rodgers claims sterling would be more likely to stay if not for his advisors . liverpool boss believes the player is being manipulated by outside forces .\njohn massung witnessed the scene thursday as he was parachuting near sebastian inlet . the sharks pictured swarming 100 feet off the beach are thought to be blacktip or spinners - which migrate this time of year to breed .\ncesc fabregas and nemanja matic will miss games against arsenal and manchester united if they are booked against qpr . jose mourinho will start the midfield duo despite the risks involved . chelsea boss expects a hostile atmosphere at loftus road on sunday .\nrelatives of eight anzac veterans where photographed across australia . they are the grandchildren , great-grandchildren , sons and daughters of those who fought at gallipoli . one hundred years since the great war , they proudly displayed their relatives ' medals and photographs . amongst the keepsakes , are letters sent by soldiers informing their loved ones of their discharge .\nfather-of-two paul doyle moved family into # 820,000 home in altrincham . he bought it after seven-year jail term for cocaine and cannabis dealing . admitted supplying drugs , money laundering and benefit fraud offences . teenage son rode quad bikes and got asbo for terrorising local children .\namanda chatel explained that nationwide adoption of the law is just one step in battling society 's prevalent rape culture . the ` yes means yes ' law defines consent as ` affirmative , conscious , and voluntary agreement to engage in sexual activity ' from each partner . it was passed in california last year , and state officials in connecticut are now considering the adoption of a similar ` yes means yes ' bill .\nchancellor paves the way for further cuts to payments with # 1,000-a-year . challenged to ` rule out depriving more people of child benefit ' at briefing . refuses to rule out rolling child benefit into universal credit system . labour says osborne has put middle income families ` in the firing line '\nprincipal andrew barr was caught viewing porn at work . a student took a photo of him watching pornography in his office . an investigation was launched after the photo was shared on snapchat . the geelong college principal has now resigned . the college council called his actions ' a breach of our standards '\npersonal trainer james staring advises how to achieve a flat stomach . says eating carbohydrates after exercise will stop them being stored as fat . exercises that use more muscle groups will help speed up the metabolism . writing down how a you feel after food stops you eating mindlessly . what is my energy level like ? how full do i feel ? i have a high energy level/i feel satisfied and not hungry . i have a moderate energy level/i feel just a bit peckish . i have no energy/i could easily gnaw off my own arm i 'm so hungry .\njehovah 's witness and her baby have died after refusing blood transfusion . the 28-year-old suffered from leukemia but refused treatment due to beliefs . over 80 per cent of treated pregnant leukemia sufferers go into remission . doctors and staff have described the distressing scene after the baby died and then the woman suffered a fatal stroke and multi-organ failure .\ndr. anthony moschetto , 54 , arrested for selling drugs and weapons , prosecutors say . authorities allege moschetto hired accomplices to burn down the practice of former associate . attorney says client will `` vigorously '' defend himself .\ngeologist claims the site in west java could be 9,000 to 20,000 years old . dr danny hilman says man-made hillside hides a pyramid structure . tests have established parts of the structure date to 7,000 bc . could re-write pre-history , but other experts claim excavation is flawed .\nvideo narrated by british jihadist fighter emerge from syrian frontline . shot by al-nusra group after capturing city in north-western province . man can be heard claiming to have ` liberated ' the city from ` oppression ' . syrian government carried out 20 airstrikes on city day after it was shot .\njose mourinho opted against watching a champions league fixture . instead , the chelsea boss saw fulham u21s ' 3-0 defeat by porto u21s . mourinho was at fulham 's motspur park along with his son jose junior . real madrid and juventus join bayern munich and barcelona in semi-finals .\nwilliam smith was 15 when he fell in love with marilyn buttigieg , then 44 . met after he was invited round to play computer games with her son . pair , from crawley , west sussex , say they have proved their critics wrong . marilyn 's children have all but cut off contact with the loved-up pair . marilyn , now 54 , left her then husband to be with william , now 25 .\nandy lee was set to defend his middleweight title against peter quillin . the bout is now a non-title fight after american missed the 160lbs weight . billy joe saunders is the next mandatory challenger while there is also talk of a lucrative contest with miguel cotto .\ninfamous limbs in loch killer william beggs was attacked in prison . serving life for murdering and dismembering barry wallace in 1999 . scalded when fellow prisoner threw hot water on him in revenge attack .\nmanuel pellegrini believes his youth players are not ready for the first-team . his homegrown quote will be depleted when frank lamapard leaves . pellegrini may lose james milner , forcing him to invest in home talent .\ntowie 's jake hall scored on first touch in boston 's 2-0 win over tamworth . his towie on-screen girlfriend chloe lewis watched from the stands . co-star james ` arg ' argent tries to climb over barrier to celebrate with him . semi-pro footballer hall rejoined lincolnshire club last week . hall recently denied rumours of relationship with actress lindsay lohan .\n#thisdoesn ` tmeanyes captured images of 200 women across london . it aims to stamp out the myth that women are to blame for rape . they have asked women to share their own photos using the hashtag .\npoll of ftse 100 bosses reveals overwhelming support for the tories . seven out of 10 said ed miliband fearful of a labour government . comes after 100 business chiefs signed an open letter in support of tories . mr miliband said letter only showed pm backed his rich friends in the city .\n20-year-old american dancer makes $ 240 a month at kremlin ballet theatre . joy womack studied at bolshoi ballet academy but left in cloud of controversy .\na fan re-edited `` batman v. superman : dawn of justice '' trailer with classic scenes from older `` batman '' and `` superman '' tv and film . adam west and christopher reeve replace ben affleck and henry cavill in the re-imagined trailer .\nvw westfalia camper was designed in the 1950s and discontinued in 2003 . new electric version is set to get batteries hidden under the floor . design has n't yet been revealed but it will share details with the original . engineers are making a concept but it 's not certain if the van will be sold .\ncnn 's dr. sanjay gupta says we should legalize medical marijuana now . he says he knows how easy it is do nothing `` because i did nothing for too long ''\nanalogue watch was released in 1997 to promote apple 's mac os . has a circular face and colourful hands , unlike apple 's modern watch . vintage timepiece is listed for $ 2,500 -lrb- # 1,707 -rrb- on ebay . shoppers could buy five of the new apple watch sports for less cash .\ntammy abraham scored twice against manchester city on monday . dominic solanke was also on target in the fa youth cup final first leg . the chelsea duo have been in brilliant form so far this season . both will be hoping to earn some playing time if chelsea clinch the title . solanke could be involved against arsenal at the emirates on sunday .\npm appeared weary with bags under eyes at event in plymouth yesterday . in one day pm visited all four home nations in bid to secure votes . turbulent week also saw ed miliband overtake him as most popular leader .\nthe queen is the most followed royal on twitter with 970,000 followers . next most popular is prince charles , then spain 's king felipe . prince harry and the duke and duchess of cambridge also popular . spoof @queen_uk tops the lot with 1.25 m - more than the real queen . top celebrities include katy perry , justin bieber and taylor swift . uk 's top politician is david cameron and australia 's is tony abbott . us president obama is the world 's most followed politician .\nzaur dadaev is accused of shooting the kremlin critic , close to red square . suspect had reportedly confessed to murder but later retracted statement . claims he was abducted , beaten and pressured into confessing to murder .\nreport claims ivan milat shot first victim years before backpacker murders . the ` wrong man ' jailed for attack , which left milat free to kill , report says . milat 's brother , boris , says he has kept the shocking secret for 52 years . milat brutally murdered seven backpackers between 1989 and 1992 . he is serving seven consecutive life sentences at goulburn supermax jail .\nronald koeman took over southampton last summer after mauricio pochettino left for tottenham . koeman has praised his predecessor for the ` great job ' he did on the south coast , although had to cope with a mass exodus of players when he arrived . the dutchman has actually managed to improve things southampton and the club find themselves just one point and one league place behind spurs now . both sides have ambitions of qualifying for european competition next term .\nthe sentencing phase in dzhokhar tsarnaev 's trial begins in a federal court in boston . prosecutor shows pictures of the four victims and tsarnaev flipping his middle finger . victims testify about the impact of the bombing on their lives .\ndoctors , teachers and psychologists being trained to cope with rising tide . the exorcist film left cinema audiences green more than 40 years ago . experts are teaching ordinary catholics how to recognise possession . course aims to help would-be exorcists distinguish demonic possession from psychological or medical conditions .\nmystery man wandered into polish embassy yesterday with no memory . the only clue to his identity is a distinctive flower tattoo on his right arm . he ca n't recall his own name , how he lost his memory or came to be in uk . all he could remember that he was from poland and his daughter lenka .\nstuart broad was dismissed for a duck in england 's first innings . the 28-year-old has had a complete demise in his batting . broad must not let his batting woes must not affect his bowling . he is still is the enforcer and combines well with james anderson .\nmemo damningly states uk may no longer be ` centrally relevant ' to the us . congressional research service , which gives confidential analysis , warns of turmoil if there is a hung parliament following general election . organisations such as the g20 group of major economies has led to a decline in the ` influence and centrality of the relationship ' .\nrachel cole-fletcher is a teaching fellow at durham university - and works with students looking at cognitive traits associated with anorexia risk . argues that rather than skinny models being to blame , other factors are . states that people with anorexia tend to have a certain personality type . and that images of thin women are unlikely to have much of an effect .\njia huaijin aspires to bring back 2,000-year-old sword making technique . each sword is worth 18 times the monthly salary of the chinese president . blades are hand-crafted from steel that is 3mm thick and are razor sharp . sword fanatics from as far as canada have bought the expensive replicas .\ndavid cameron to announce extension to right-to-buy housing policy . pm will extend the right-to-buy to all housing association tenants . discounts of up to 70 per cent to allow all families in housing association properties to buy their home .\nthe los angeles , california-based company has shuttered all of its 94 locations after switching to a web-only retail model .\nin 1915 , 1.5 million armenians were killed by ottoman turks in what historians have described as the first genocide of the 20th century . obama refused to call the mass killings a ` genocide ' in official statement despite promising as a presidential candidate that he would . turkish officials furiously deny there was a genocide , and obama has shied away from offending the close u.s. ally . kim kardashian - who is armenian on her father 's side - has called the killings a genocide and says obama should too . kasdashian recently traveled to the country for the first time with her husband kanye west , sister khole and cousins kara and kourtni .\na statement claiming to be from an anti-vaccination lobby group has compared immunisation to rape . the post was in response to new laws which penalise those who do n't immunise their children . the image has been removed and group blamed it on an ` outside ' poster . the avn has issued a statement saying it does not support the ` message or its sentiments ' the group also said the facebook page is not affiliated with the group .\ndurst , 71 , was arrested in new orleans hotel room day before hbo finale . police ` found revolver , marijuana , $ 42,000 cash , latex mask in the room ' he is waiting to be extradited for murder trial in california where he is accused of killing his longtime friend susan berman in 2000 . durst dozed off in courtroom as shouting match erupted between his lawyers and the judge because no witnesses turned up . two fbi agents and a state trooper allegedly ignored court subpoena . durst attorney claims there was not a legitimate search warrant .\n`` the breakfast club '' script was found in a high school filing cabinet 30 years later . school officials hope to display the draft script .\ndr sahar hussain was unable to get through the gates at leicester square . she lashed out at two staff members , grabbing their arms and chasing one to a control room . the 53-year-old gp said she was worried about being left on her own in london because she is a muslim woman . hussain has been convicted of assault and fined a total of # 2,250 .\nmarco verratti has hailed zlatan ibrahimovic for his off-the-field attitude . verratti reveals the swedish striker helps young players progress . paris saint-germain face barcelona on tuesday night . blanc admits progressing against barcelona is ` practically impossible ' . read : egotistic ibrahimovic will believe barcelona will be in awe of him .\njamie silvonek , 14 , was charged as adult with homicide and criminal conspiracy in her mother 's stabbing death . silvonek 's 20-year-old boyfriend , army spc. caleb barnes , is accused of stabbing teen 's mother in the neck march 15 . ` she threatened to throw me out of the house . i want her gone . ... ` just do it , ' silvonek allegedly texted barnes . cheryl silvonek 's body was buried in shallow grave near her home in pennsylvania . affidavit states silvonek and barnes when to a restaurant after the stabbing and then drove to walmart to buy gloves and bleach . police found victim 's blood-soaked car submerged in a pond and traced it to silvonek family . silvonek 's attorney said the girl tearfully told him she missed her mother and claimed she was coerced .\nluiz adriano scored nine times for shakhtar donetsk in europe this season . the brazilian is out of contract at the end of the year ... both arsenal and liverpool are interested in signing the 27-year-old . cristiano ronaldo and lionel messi have netted eight goals this season . real madrid and barcelona both in the champions league semi-finals . read : our reporters have their say on who will win the champions league . click here for sportsmail 's guide to the champions league final four .\nfans were asked to unite against cancer by donning a football shirt . it is in support of the bobby moore fund for cancer research uk . moore died from bowel and liver cancer on february 4 , 1993 .\nkeonna thomas was arrested in philadelphia friday as she tried to join isis . thomas , 30 , was preparing to fly overseas and martyr herself for the terrorist group . authorities said that she communicated with an islamic state group fighter in syria and said it would be ` amazing ' to fight with the group . she also shared her desires on twitter , writing ; ` only thing i 'm jealous of is when i see the smiles of shuhadaa -lsb- martyrs -rsb- ' . she made her initial appearance in federal court on friday in full black dress with only her eyes showing . this just one day after two women in new york were charged with plotting to wage jihad by building a bomb .\nthe u.s. court of appeals has rejected the band 's argument that the government 's refusal to grant a trademark violated free speech rights . the band say they chose their name as a way to reclaim the disparaging term . ruling could have implications for whether the national football league 's washington redskins should lose its trademarks .\nsnp leader vowed to prop up labour even if the tories finish clear winners . it means mr miliband could be pm with fewer votes and mps than the tories . he would by pm of a minority labour government kept in power by the snp . mr miliband has ruled at a formal coalition with the scottish nationalists . but he has refused to rule out working with the snp vote by vote .\nmichael vaughan wants to get new role of director of england cricket . but he says he will only do so if he feels he can make a difference . paul downton lost his job as manager director of cricket on wednesday .\nastrophysicist amy mainzer says she was was touched by malala 's story of determination . mainzer also works on educating children about science .\ntorpedo moscow fans displayed a nazi banner during sunday 's game . russian club been ordered to play two home games behind closed doors . the latest punishment is torpedo 's fourth relating to racism this season . they are already playing their next two home games in an empty stadium . after supporters aimed monkey chants at zenit st petersburg forward hulk . sunday 's game against arsenal tula was also marred by violence . only women and children under 13 can attend their next three away games .\nprize money has been increased to over # 20.2 million at roland garros . the men 's and women 's singles champions will each receive # 1.3 m . the french open remains the grand slam with the lowest top prize .\nwinnie , 19 , was diagnosed with the rare condition when she was four-years-old . condition causes a lack of melanin which forms white patches on the skin .\ntop us court is slated to hear arguments in a gay marriage case tuesday . a majority vote could make gay marriage legal nationwide . the court will publish a decision by june .\nat apo island , this green sea turtle unexpected appeared in group 's photo . as the snorkellers posed , the turtle surfaced to breathe and photo-bombed . the area is a feeding ground and well-known marine protection site .\npublic health agency confirm patient is being tested for rabies in hospital . say that the person had recently travelled to area affected by disease . rabies is a viral infection that attacks the brain and nervous system .\nhbo 's hit series , game of thrones , set to return with its fifth season , which was filmed all over europe . to celebrate , travel referral service , zicasso , is offering fans a luxury themed trip to visit all filming locations . must-visit locations for game of thrones fans include spain , northern ireland , morocco , croatia and iceland .\nmike tindall owned monbeg dude finished third in the grand national . tindall was seen making a beeline to the place marked with a number ' 3 ' the 10-year-old monbeg dude was 40/1 before the race at aintree .\njohn roberts is at judicial crossroads as high court to hear key same-sex marriage case . case could decide whether same-sex couples nationwide have constitutional right to marry . chief justice disappointed conservatives earlier when he helped uphold obamacare .\nchristian eriksen was spotted with girlfriend sabrina kvist jensen . the pair were pictured enjoying a kiss in outside in soho , london . the tottenham midfielder has been dating kvist for almost three years . eriksen played the full game as spurs lost to aston villa on saturday .\n100 passengers and crew members have been sickened on celebrity infinity . the ship , which is based on the west coast , left san diego in late march . the cdc is scheduled to board the ship monday .\nthree of the five teens released . one 18-year-old suspect has been charged , report says . australian police said the suspects were allegedly planning an `` isis-inspired '' attack .\ninverness upset celtic 3-2 in the scottish cup semi-final on sunday . caley defender david raven scored the winning goal in extra time . the 30-year-old has hailed his wining strike as a ` dream come true '\nfossils found in cave of llenes in catalonia , spain suggests neanderthals lived alongside other predators like badgers , bears , wolves and leopards . large quantities of stone tools were found in ` camps ' at the cave entrance . bones of sheep , deer and rhino that neanderthal 's hunted were also found . several carnivores used the cave as a den at the time 200,000 years ago .\ngeraldine schultz , 67 , was killed last week by vortex in town of fairdale . destructive tornado also picked up 1980 photo of her with husband , 84 . photograph was carried 35 miles to harvard , illinois , where it was found . found by alyssa murray , who posted online and was able to return it . the tornado carried some items further - one family photograph was found 70 miles away in racine , wisconsin .\nrobert dellinger , 54 , allegedly tried to kill himself in december 2013 by driving across highway , but instead he killed a young couple . amanda murphy , 24 , and jason timmons , 29 , were killed instantly in the crash in lebanon , new hampshire . murphy was eight months pregnant with their first child , a girl . dellinger pleaded guilty in february to negligent homicide for their deaths , and to assault for the death of the fetus . he faces 12 to 24 years in prison when sentencing resumes thursday . deborah dellinger , defendant 's wife , described her husband from the witness stand as a ` man of ethics , integrity and friendship '\nscientist measured the thousands of small earthquakes in yellowstone to scan the earth underneath it . they discovered a vast magma reservoir fueling a vast one scientists already knew about . prehistoric eruptions of yellowstone supervolcano were some of earth 's largest explosions .\nservice for scott , 50 , in summerville , south carolina , was attended by hundreds of mourners . dr george hamilton , chief apostle of the w.o.r.d ministries , called officer michael slager a ` racist ' and a ` disgrace ' fiery speech was given before a crowd of hundreds of mourners , and over scott 's casket , draped in a u.s. flag . distraught mother judy scott accompanied her son , who was shot dead last saturday . family were given a police escort on the way to the funeral , by a separate force to the officer who shot scott . congressman jim clyburn -lrb- d-sc -rrb- and senator tim scott -lrb- r-sc -rrb- attended , as did charleston county 's sheriff . slager , a north charleston police officer , was filmed shooting scott five times in the back as he ran . officer had pulled him over moments before on a routine traffic stop . his death was filmed by an onlooker . family said scott may have run because he owed $ 18,000 in child support , and that he routinely avoided police .\nlouis smith decided to focus on media career following london 2012 . gymnast smith competed for england at last year 's commonwealth games . max whitlock and kristian thomas also been included in six-man squad .\na couple named burger and king ? internet has a meltdown over `` vampire diaries '' departure .\nlionel messi did n't feature in either of argentina 's recent friendlies . messi suffered a foot injury in barcelona 's win over real madrid last month . barca sit four points clear of real in la liga with 10 game remaining .\nmaking calls and using the internet abroad results in very large bills . with three 's feel at home lets visitors use their phones at no extra cost . it covers 18 countries including 10 in europe .\nromanian club ceahlaul piatra neamt sacked ze maria on wednesday . but the former brazil international was reinstated the next day . he was then sacked again following a defeat on saturday .\nmourners gathered on thursday to farewell ashley johnston . he was shot while fighting with kurdish people 's protection units . mr johnston was shot in a clash with isis in february . his mother had no idea her son was at war in the middle east .\nmillie marotta 's book , animal kingdom , features detailed line illustrations . the # 3.99 book is currently # 1 on amazon 's top 100 books list . the 36-year-old illustrator resides and works in tenby , wales .\nguests attending battle of waterloo anniversary service told not to gloat . invitations to the event said it must not be seen as ` triumphalist ' the move was criticised by politicians as ` absurd ' political correctness .\npsg are considering a # 15m move for dynamo kiev and ukraine winger andriy yarmolenko . the 25-year-old is highly-rated on the continent and tormented everton during this season 's europa league campaign . psg are also interested in juventus midfielder paul pogba , but have been rebuffed in their pursuit of manchester united 's angel di maria .\nballs said he would not make ` unfunded and uncosted commitments ' tories have promised to give the nhs an extra # 8billion a year by 2020 . nhs chief simon stevens said the extra cash is needed just to stand still . balls insisted labour can be trusted to give the nhs what it needs .\nfoxtel to screen critically acclaimed us women 's prison drama . cable tv organisation will screen every episode in a full season marathon . a kink in the agreement with us studio lionsgate has created a loophole . it allows foxtel to offer episodes of the series as an on-demand option too . former mtv australia and foxtel presenter ruby rose to appear in series .\ndouglas bader recovered from having both legs amputated to become one of britain 's greatest fighter aces . was shot down over france in 1941 and ended up in german prison camp . and he was involved in a mass break-out that pre-dated the break in 1944 immortalised in the great escape . now , hollywood bosses snapped up the rights to turn military historian mark felton 's book about the escape into a blockbuster .\ndb4 put british cars back on map going 140mph and 0-60 in nine seconds . bought in 1962 after ustinov won best supporting actor oscar for spartacus . great british movie star was loved tv personality until his death in 2004 . car set to sell for double what it fetched at auction when sold four years ago .\nthe house in the sea is located in newquay , cornwall and is the perfect getaway retreat . it is connected to the mainland by a 90ft high bridge and is completely surrounded with water when the tide is in . guests can book the luxury cottage , which includes a bar , tv , wifi and billiards table .\nmorocco had been banned from the 2017 and 2019 african cup of nations . the confederation of african football imposed the ban after morocco pulled out as hosts of the tournament two months from it starting . morocco fear the health risks of fans travelling from ebola-affected areas . the court of arbitration for sport lifted the ban and reduced the fine imposed from $ 1million to $ 50,000 .\nsamantha cameron recently spoke of her love of alternative group poliça . rock band 's latest album is inspired by feminist shulamith firestone . mrs cameron even joined crowd at a recent gig in shoreditch , east london .\ndave king is bidding to become the new chairman of rangers . he must convince the sfa that he is up to the job . king ousted the previous directors from ibrox last month . the 60-year-old businessman will face questions over his 41 south african tax law convictions and previous ibrox involvement .\nteen with deadly brain tumour has raised $ 80,000 for emergency surgery . 18-year-old jackson byrnes has stage four brain tumour . he was told by doctors it was too aggressive to operate on . instead he found a neurosurgeon who would do the operation . he had to find $ 80,000 by tuesday night to pay the surgeon up front . the risky operation will likely see him end up paralysed down his left side .\nsheriff : the correctional officer is in intensive care after being beaten , choked . it appears `` somebody did n't do their job properly , '' sheriff says after the escape . kamron taylor also tried to escape a courtroom after being convicted of murder in february .\nalexis sanchez scored after 39 minutes following some clever play by mesut ozil for arsenal . gareth mccleary 's shot was deflected over the line on 54 as reading hauled themselves level . sanchez struck again before half time in extra time when his shot squirmed through adam federici 's legs .\nmila kunis ' ` childhood friend from ukraine ' is suing her for $ 5,000 . kristina karo claims kunis ` stole her pet chicken ' as children . karo , now in la , claims she has been traumatised by the event . she is suing actress for emotional distress and therapy bills .\nunnamed worker was spotted on the roof of a house in south east london . appeared to only be using rope for safety while 30-feet above the ground . health and safety executive attended and stopped the work following concerns .\ncraig sibbald 's 74th-minute header is enough to send falkirk through . fraser fyvie and scott allan both hit the post for hibs with the score at 0-0 . falkirk will play either inverness caledonian thistle or celtic on may 30 .\naston villa play liverpool in their fa cup semi-final on sunday at wembley . raheem sterling was pictured smoking a shisha pipe earlier in the season . steven gerrard will be leaving liverpool at the end of the campaign .\nrifaat al assad is facing criminal probe over how he amassed huge fortune . activists say it was stolen from syria when he was at heart of its regime . rifaat , 77 , is brother of late hafez al assad - syria 's president for 29 years . he headed notorious internal security forces during 1982 hama massacre . and was later exiled to europe after attempting to seize power from brother .\nstarbucks ran its european business - including uk - through holland . but dutch division paid just # 1.9 million tax on profits of # 300million . now details of uk company at heart of new probe have started to emerge . a starbucks spokesman said it complies ` with all relevant tax rules , laws '\ngetty 's death appears to be natural causes or accident , coroner 's office says . mother and father of andrew getty confirm death , asks for privacy .\nkevin pietersen scored 19 runs for surrey against glamorgan . mike gatting says if players are doing well for england then they should keep their place . pietersen was sacked by england following the 2013/14 ashes tour .\nphotographer rhiannon taylor , 29 , created the review site , in bed with . the australian gets paid to visit , review and photograph the best hotels . she aims to promote the unusual aspects such as biggest bed or best pies .\nbianca gascoigne was walking in marylebone when a gang appeared . muggers took her mobile phone before fleeing the scene on bikes . the phone reportedly had private texts from her troubled father paul . bianca took to twitter to brand her attackers ` lowlifes '\nyoko ono said she was ` very saddened ' by news of cynthia lennon 's death . she praised cynthia , 75 , as a ` great person ' with a ` strong zest for life ' cynthia lennon , nee powell , married john lennon after they met at college . she is the mother of the musician 's son julian lennon , who is now aged 51 . but the couple divorced in 1968 after lennon left her for artist yoko ono .\nhanan , 19 , was captured by isis when militants took the town of sinjar . she was among the women and girls separated to be sold as sex slaves .\natletico madrid 0-0 real madrid : click here for martin samuel 's report . jan oblak was the difference between a defeat and a clean sheet . the atletico goalkeeper denied gareth bale and james rodriguez . read : mario mandzukic the new diego costa for atletico madrid ? .\npolice were called to the north las vegas neighborhood at about 11.30 am on thursday . father and other family members did not know toddler was in the driveway . the incident was deemed an accident and no charges were filed . the toddler died in the hospital just days before her second birthday .\nqatar 's supreme committee unveil new 40,000-seat stadium for world cup . the al rayyan stadium is fifth 2022 venue and will be completed in 2019 . stadium features ` cooling technology ' for fans ' and players ' comfort .\ntsa agreed to make changes after aclu filed official complaint . training will begin at los angeles international airport . tsa also told aclu the new training will stress ` race neutrality ' and will emphasize ` hair pat-downs of african-american female travelers ' agency said they will also track down pat-down complaints filed by african-american women to assess if discrimination is occurring at specific airports . in 2012 solange knowles claimed she had been racially targeted for a pat-down because she wore her hair in the afro style .\ntiny chihuahua digby was abandoned on the street next to a set of bins . he was taken to rspca rescue centre where he met new best friend nero . the 9st mastiff is 120 times the size and eats his pal 's weight in pet food . digby , who was perilously close to death , has taken on a new lease of life .\nthis residence was once just a garage for a much bigger mansion called homeden . when homeden was being converted into flats the owners of the garage bought some of the original features . the blackwood and copperlight archway was taken and tastefully adapted to suit the light-filled property . the stylish 740 square-metre , four bedroom , converted residence will go to auction on 16 may .\nroger federer decided not to take part in the miami open this year . instead , the world no 2 has been enjoying some downtime in the snow . he posted a picture of himself posing with his racket and a snowball .\naccording to new app , brits are grumpiest in western world at daybreak . despite getting more sleep than most - at seven hours 22 minutes a night . only japanese , south koreans and singaporeans are moodier in morning .\nlouis van gaal handed radamel falcao a surprise start against chelsea . falcao has struggled at manchester united since his loan move . the colombian has only scored four goals all season in 22 appearances . falcao had just 19 touches in the first half at stamford bridge . the united forward struggled to deal with chelsea captain john terry .\nrobert bates said he meant to subdue a suspect with a taser but accidentally shot him . the preliminary hearing is scheduled for july 2 . the judge said bates was free to travel to the bahamas for a family vacation .\nsterling 's talks with liverpool over new deal have ended in stalemate . england star , 20 , insists he is not a ` money grabber ' after turning down # 100,000-a-week contract offer tabled by liverpool . pfa boss taylor says resuming talks in the summer is a wise move . the rise of raheem sterling : from # 60 a day at qpr to knocking back # 100,000-per-week contracts at liverpool . liverpool fc press conference : as raheem sterling hints at possible exit , find out what brendan rodgers has to say . click here for all the latest liverpool news .\nf1 fan arrested after invading track during practice for chinese grand prix . the man scaled the grandstand before running across start-finish line . he then walked into ferrari garage , believed to be shouting : ' i want a car . i 've got a ticket ' ... man was then handed over to the chinese police . chinese officials said to embarrassed by the invading spectator . click here for all the latest formula one news .\na video of the game , filmed at chilifest in snook , texas , was posted onto social media site vine . the clip shows the unidentified girl , believed to be a student at texas a&m university in college station winning the game by showing a ` rock ' .\ndani alves , neymar and adriano celebrated their victory over celta vigo . the flamboyant brazilian 's all wore matching double denim outfits . jeremy mathieu says barcelona were poor throughout the game . the frenchman praised his defensive partner gerard pique for his display . click here for all the latest barcelona news .\nms hanson slammed imposing halal certification on australians . she described the move as a ` profit , money-making racket ' . one nation leader denied that any clashes took place at rally in brisbane . ` criticism is not racism . we have a right to have a say , ' she says . protesters clashed with anti-racist activists in sydney and melbourne . twitter account claimed to be linked with group behind anti-islam protests . originally believed reclaim australia gave control of feed to a supporter . however , ` jeremy ' began to tweet jokes as the protest in sydney started . thousands attend reclaim australia rallies across the country .\nsam allardyce had his chance with west ham but has failed to take it . allardyce 's reputation is that of a man who guarantees top-flight survival . yet west ham have been playing relegation football since christmas . they must go to the olympic stadium with more than survival as the aim . napoli manager rafael benitez could be persuaded back to english football .\nunited arab emirates are interested in hosting the 2021 tournament . rugby league world cup has only been held in major countries - australia , new zealand , france and great britain . middle east country has the facilities , as well as the financial backing and infrastructure claims sol mokdad , the president of uaerl .\nliberty baker was killed as she walked to school in witney , oxfordshire . robert blackwell , 19 , was texting at the wheel at the time of the crash . the teenager had been smoking drugs the day before the crash last june . liberty 's father , paul baker , waved her off to school just moments earlier . he said the family had been left ` devastated ' by the shortness of sentence . for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here for details .\nmass cremations have been taking place next to the bagmati river , the waterway which divides the nepalese capital . plumes of white , acrid smoke were seen floating across kathmandu as hundreds of bodies were burned in pyres . city 's sacred temple overwhelmed with number of bodies while wood needed to make pyres is starting to run out . almost every space along the river 's banks is being used for rites , despite hundreds more bodies still being found .\ntwo humanitarian workers killed . two saudi border guards killed in exchange with rebels , saudi press agency reports . saudi forces in non-combat roles `` coordinating and guiding '' fight against houthis , source says .\nnew company will look after the space programs of stratolaunch systems . this includes plane which has a wingspan of 385 feet -lrb- 117 metres -rrb- it will be powered by six 747-class engines during first flight in 2016 . will initially deliver satellites weighing up to 13,500 lbs -lrb- 6,124 kg -rrb- into orbits between 112 miles and 1,243 miles -lrb- 180 km and 2000 km -rrb- above earth .\nandres iniesta suffered a bruised pelvis during barcelona 's 3-1 champions league win at psg . he had to be substituted after a clash with psg midfielder javier pastore . barcelona have confirmed iniesta 's injury on their official website . the midfielder could now miss the league game with valencia this weekend .\nhuddersfield residents began to have problems after heavy rain last year . neighbours reported issues with drains , streetlights and cracks in doors . also told of loose fence panels and have suffered problems for 11 months . harron homes admits it is ` genuinely sorry for the inconvenience caused '\ndarren stanton is a former police officer and uk 's leading human . says statistically it 's a myth that a liar ca n't look you in the eye . also explains blink rate may double or triple and liars often twitch . faster or slower breathing and becoming less animated also signs .\nrobots built by mechanical engineers at stanford university in california . geckos have small hairs on their feet to help them scurry across ceilings . could be used in emergencies or on construction sites in the future .\natheist writer david fitzgerald claims there is no evidence jesus existed . the san francisco based author instead says jesus was a literary allegory created by combining old jewish stories and rituals along with rival cults . he insists it is time to stop believing in jesus christ as a historical figure .\nrio ferdinand says manchester united need wayne rooney in attack . he believes rooney 's form has been key to their upturn in performances . ferdinand said united 's 2-1 win at anfield shows they are ` on to something ' manchester united vs manchester united : the expert view of the derby . click here for all the latest manchester united news .\ntwo teenagers arrested on suspicion of preparing acts of terrorism . boy , 14 , and girl , 16 , arrested after police raids on thursday and friday . girl was arrested in longsight , manchester , and boy was held in blackburn .\nborrowing to buy has left uk more indebted than other developed nations . britain and portugal - which had to seek emergency funds - singled out . imf 's global financial report a stark reminder that recovery is still fragile . international body says increasing the housing supply must be top priority .\njake boys , 19 , booked tickets for trip with emily-victoria canham , 18 . but blunder saw video blogger mr boys organise flights to dublin . now planning train trip to cardiff and admits he ` could see the problem ' .\nrobert butler , 43 , transported inside a shipping container from bannister house in providence , rhode island , to eleanor slater hospital in cranston . the complex operation on sunday took 7 hours and involved two local fire departments . mr butler has had a decade-long battle with his weight and depression .\nheidi bretscher , 28 , was running the marathon in raleigh , north carolina . at a point where the course splits , she ran in the wrong direction . a couple of helpful traffic cops brought her back on course for her to win first place .\ntourists posted a video of themselves dragging a shark onto shore . the clip shows them catching the huge shark with a fishing line on a new zealand beach . they stand just centimetres away from the beast who thrashes angrily . catching and releasing a shark is a legal sport in new zealand . it 's crucial right techniques are used for safety of fisherman and shark . the shark should not be touch minimally , but in the video the tourists drag the shark in and pose for photos holding the creature .\njames krainich was almost two when he toppled from second floor window . mother michelle newman ` heard a pop ' and then saw his heels disappear . james died in hospital nine years ago after losing consciousness from fall . his family play games at his grave every year and hope their story will be a warning to other parents about dangers of putting furniture near windows .\nrachel chapman , nee friedman , was left paralyzed after being playfully pushed into a pool on her bachelorette party on may 23 , 2010 . she tells dailymail.com her first question was ` can i still have children ? ' five years later , rachelle and husband chris are days from being parents . their college friend laurel humes offered to be their surrogate . the baby , a girl , is due on april 18 . click here for more information about rachelle on her website .\ncharles kane of spencerport , new york was arrested thursday as he met up with a 14-year-old girl for sex . the girl was in fact an undercover officer who had responded to kane 's online posting for sex with a young girl and a daddy/daughter relationship . kane , 46 , is a married middle school music teacher with two young daughters . he had been communicating with the officer for months before he planned the meeting at a local movie theater . kane had a full box of condoms on him at the time he was arrested . he has been charged with enticement of a minor to engage in sexual activity and faces up to 10 years in prison and a $ 250,000 fine if convicted .\nrafa nadal beat lucas pouille 6-2 , 6-1 in the second round on wednesday . spaniard got his clay court season off to a perfect start with a routine win . world no 5 made just five unforced errors as he booked third round place .\njade walters , 21 , loaned her horse magic to help a young girl learn to ride . but she was horrified to discover the family looking after him sold him . she claims it was two months before she found out he was sold for # 200 . notoriously risky horse auctions often see animals being sold for slaughter .\nchelsea will be without top scorer diego costa for at least two games . the # 32m striker suffered recurrence of hamstring injury against stoke . loic remy and eden hazard scored in 2-1 victory at stamford bridge .\neight members of corinthians ' pavilhao 9 fan group killed on saturday . armed men raided the group as they had a barbecue at the club . seven were shot in the head while one was wounded but died in hospital . police say the killings are not linked to any football rivalry . the supporters group has links to a notorious prison that is now closed .\nnoreen spendlove was 68 when she developed pain in her left side . gp referred noreen for a mammogram which revealed three tumours . mps warn that women will die as a result of the screening age limit . ` extending the age for routine mammograms would mean more lives saved '\nalmost 16 million people in yemen are in need of humanitarian aid , according to u.n. planeload of aid supplies including food and medicine was flown in to sanaa on tuesday . a rare ceasefire was negotiated to allow the plane to land briefly .\nuk spent # 11.7 billion on overseas aid last year but that is set to increase . new accounting rules could see budget increase by # 1bn over two years . changes will bring britain in line with other eu nations who donate less . ukip leader nigel farage last night called for a # 10billion cut in foreign aid .\nparliamentary candidate paul childs , 34 , revealed that he is hiv positive . lib dem felt compelled to speak after nigel farage 's comments on virus . ukip leader attacked high cost of treating foreigners with hiv during debate . mr childs is the second lib dem candidate to go public on having hiv .\njesse and melissa meek revealed they 're expecting a child in a rap video they made set to theme from ` the fresh prince of bel-air ' the clip , which features jesse and melissa meek rapping as they drive in a car , has been viewed over 1.7 million times on youtube . it took five takes to film the happy valley , oregon , couple 's video .\nyoung belgian jason denayer has impressed on loan with celtic . former hoops captain tom boyd claims the defender is ready to challenge for a place at manchester city next season . ronny deila is looking at hearts defender danny wilson to fill the void .\npsg defender zoumana camara was celebrating his birthday on friday . he posed for a photo with a cake after training ahead of facing marseille . david luiz and ezequiel lavezzi dipped camara 's face into the cake . psg face marseille in an important clash at the top of ligue 1 on sunday .\nmicahmedia uploaded the 28-second video demonstrating his method . video currently has more than 16million views on youtube . the four-step method only requires a glass and some water .\nsnp leader challenges miliband to respond to her offer of help after may 7 . sturgeon says she will put labour in power even if tories win more seats . warns the clock is ticking on her offer to help miliband get into no. 10 .\nleo grand was offered a deal : either $ 100 or lessons in coding from patrick mcconlogue , who passed him on the street every day . after daily coding lessons grand launched carpooling app trees for cars . grand said he made $ 15,000 from the app , which is no longer in stores because he does not want to pay for the server space . he said he has n't found the time to code every day anymore . grand insists he likes living outdoors , but said he should have come up with an idea that made more money .\nsportsmail has simulated an all-star battle between the premier league 's best talent from north and south . manchester city 's sergio aguero gave joe bernstein 's northern all-stars the lead in the opening minute . arsenal ace alexis sanchez scored a double in the 29th and 72nd minute , either side of a harry kane goal . sanchez was man of the match while liverpool 's martin skrtel was the game 's poorest player . the match powered by football manager was played in front of 90,000 people at wembley .\nformer everton and manchester city midfielder adrian heath is now manager of the newest mls team orlando city . the 53-year-old has been has been in the united states for eight years and witnessed the boom of ` soccer ' heath says steven gerrard and frank lampard are in for a few culture shocks when they join the mls revolution .\nwilliam kerr , 53 , was convicted of murdering maureen comfort . he was released from prison in january but has now disappeared from approved premises in hull . crimestoppers offer # 5,000 to find kerr , who is believed to be in london .\ncomplex human conversation began around 50,000 to 100,000 years ago . professor shigeru miyagawa notes single words bear traces of syntax . he says this shows the words came from an older , syntax-laden system . he believes humans combined an ` expressive ' layer of language , as seen in birdsong , with a ` lexical ' layer , as seen in monkeys .\nkaren danczuk said mps needed to speak in a language people understood . she said she would like to go into ` mainstream politics ' in the future . mrs danczuk said women did not have anything to relate to this election . she also defended her infamous selfies : ` this is me , take me as i am '\nthe public texas university first balked at disclosing the actor 's fee but has since caved , saying a confidentiality agreement is no longer binding . actor 's jk livin foundation provides ` tools to help high school students lead active lives and make healthy choices for the future '\nemma hannigan was diagnosed with the faulty brca1 gene in 2005 . a year later she had her breasts and ovaries removed to prevent cancer . but in 2007 , despite the surgery , she was diagnosed with breast cancer . since then she has battled the disease nine times - four times in one year .\na-rod returned to the new york yankees line-up for the opening day . alex rodriguez came back from a 162-game suspension for the yankees . he received a warm welcome on his comeback , with fans even holding up signs that read ` forgive ' in the crowd .\nbrendan rodgers needs a positive summer to restore confidence at anfield . liverpool 's transfer committee under pressure to sign better players . rodgers now also under scrutiny after being exposed in big matches .\nalexander blair , 28 , of topeka accused of knowing about bomb plot but not contacting authorities . fort riley 's security was never breached and the device was `` inert '' and not a threat , authorities say . john t. booker jr. , 20 , of topeka had acquired bomb parts and made a propaganda video , the justice department says .\nthere are now 120 confirmed hiv cases and 10 preliminary positive cases tied to scott county , about 30 miles north of louisville , kentucky . outbreak has occurred among intravenous drug users and primarily involves the use of the high-powered prescription painkiller opana . health officials who declared an epidemic last month have said they expect the number of cases to rise as more people are tested . gov. mike pence approved a short-term needle exchange program two weeks ago to help combat the problem .\nmonster dessert served at the wicked waffle in north end , portsmouth . customers who clear their plate within 45 minutes get the pudding for free . so far only two people have managed to finish the enormous dish .\nnac breda let slip a two-goal lead , sending boss robert maaskant wild . their manager was so upset with what he 'd seen he punched the dugout . the game on saturday ended 2-2 against last-placed team fc dordrecht .\nfrankie gavin is set to take on kell brook at the 02 on may 30 . eddie hearn says brook is up for the ibf welterweight world title fight . talks have been held between the parties , but decision yet to be reached . sportsmail understands an announcement could be made on friday .\nlloyd byfield , 48 , launched hammer and knife attack on leighann duffy , 26 . the drug dealer smashed into her flat when she did not answer his calls . stabbed her 14 times before her six-year-old daughter , who tried to stop it . court told how byfield was ordered to be deported back to jamaica in 2007 . jailed in 2005 for attacking another woman with a chisel and for burglary .\na dozen native american extras and the cultural adviser walked off the set of adam sandler 's new movie on wednesday . the film , the ridiculous 6 , is a spoof of the magnificent seven that is being made for netflix . one extra who walked off claims that the production crew and director ignored their complaints about offensive jokes . this included inaccurate costumes and referring to one woman as ` beaver 's breath ' . the film also stars nick nolte , steve buscemi , blake shelton and taylor lautner , who has previously said he has distant native american ancestry . netflix said in a statement ; ` it is a broad satire of western movies and the stereotypes they popularized , featuring a diverse cast that is not only part of - but in on - the joke '\njoshua sweet , 20 , broke into the house in the early hours of the morning . victim was psychologically scarred after being assaulted in her own bed . maximum sentence is 8 years but sweet served just two months on remand . support charity says ` victim 's deserve justice ' in reaction to lenient sentence .\nwilliam bird , 41 , captured footage as jets approached raf lossiemouth . stood underneath # 126million aircraft with seven-year-old stepson alex. video camera knocked sideways as second jet disappeared from view . he says clip taken on tuesday was ` as close to action as you could get '\nfbi revealed it has paid $ 13,000 to a man who once tried to flee to syria but was caught and agreed to cooperate . he has been protected from charges , six of his former allies are charged . families screamed as lawyers questioned the mole 's reliability . judge overruled the appeals , ordered for 4 minnesota men to stay in jail . the other two suspects were arrested in san diego , remain in custody .\nthe couple , who does not wish to be identified , is suing premiere photos for allegedly printing the caption , ` poor n ***** party ' on the bottom of photos . the couple rented a photo booth for the wedding and the bride 's sister noticed the racial slur but chose not to tell the couple on their special day . the couple allegedly called james evans of premiere photos but he issued no apology and that is when they decided to sue .\nport , phone app and photo-sharing project were barred from using anzac . the church of scientology and woolworths used it without permission . they were reprimanded by the department of veteran affairs for using it . but the afl and victoria bitter were permitted as they donated to the rsl . penalties for misuse include 12 months imprisonment for serious breaches . individuals could be fined $ 10,200 , while organisations face a $ 51,000 fine .\nthe firm lost # 37.3 million after revenues fell by a third over the past year . wonga has been hit by public controversy and forced to compensate customers over fake legal letters . new cap on payday loan interest rates is set to damage company further .\nactress , 44 , gave birth to son jaxton in september and wants to shift 2st . has sought the help of susan hepburn who helped lily allen slim 3 sizes . claire says she wants to ` sort her binge mentality ' . says she ` went on a binge at a pal 's birthday and made herself feel sick ' she has had one session so far and says she can already see results .\njoshua vaughan ` stepped in front of a train ' in sheffield in january . joshua , 17 , had suffered issues with ` on-off ' girlfriend , inquest heard . his girlfriend messaged his mother that ` he was going to end it ' for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here for details .\n2006 big brother winner pete bennett is currently homeless . the star squandered his prize money after becoming addicted to ketamine . he is now clean and wants to make his name as an actor .\nholly , 34 , and 47-year-old davina pose up for garnier nutrisse . show off their glossy locks in the shoot as they cuddle up . both are brand ambassadors and will star in a nationwide campaign .\nspoiler alert : maid gives birth to baby on sunday 's episode . only announced she was pregnant with poldark 's baby last week .\njessica bialek found ` safe and well ' after vanishing 36 hours earlier . ms bialek was last seen leaving her home at 8.30 am on wednesday . she was walking to the bank in coogee , south-eastern sydney . ms bialek 's husband pleaded for help in finding his wife . on thursday her father also made a plea for her to contact family . the mother-of-one is an accomplished arts photographer . she returned home on thursday evening to her husband and daughter .\naston villa beat liverpool 2-1 in the fa cup semi-final at wembley . midfielder tom cleverley praised tim sherwood 's impact as villa boss . cleverley believes villa can beat arsenal in the final in a ` one-off match ' .\nchelsea clinton is opening up about motherhood , life in the public eye and why the united states needs a female president in a new interview with elle . clinton says that though the us is the ` land of equal opportunity , ' that is not true about gender , and a female president would change that . this just two days before her mother hillary is expected to announce her presidential campaign . ` it is challenging to me that women comprising 20 percent of congress is treated as a real success . since when did 20 percent become the definition of equality ? ' says clinton . clinton , who is described in the magazine as ` innately regal , also appears in a fashion spread in which she looks almost unrecognizable .\nhitler ` fan magazine ' has been discovered and will be published in britain . it was found by a british soldier in a bombed german house after the war . one propaganda photo shows him in lederhosen and knee-high socks . military experts will this month publish book entitled the rise of hitler .\nthe ecb were expected to appoint a former england captain for the role . the job description for the new cricket role has yet to be fixed . sport recruitment international expected to suggest overseas candidates .\npfa have announced their six-man shortlist for young player of the year . harry kane and eden hazard will among the front runners for the award . kane has scored 19 premier league goals for tottenham this season . hazard has been instrumental for table-toppers chelsea this campaign .\nthe fa cup is usually a rollercoaster of emotions . fittingly , the famous trophy was taken on looping ride at alton towers . it was accompanied by an arsenal and a reading fan ahead of the pair 's semi-final at wembley on saturday . arsenal are the current holders of the competition and keen to retain it . liverpool and aston villa will contest the other semi-final on sunday .\na narrabeen house damaged in the sydney storms has been demolished . it began sliding down the hill it was built on , endangering homes nearby . a team of firefighters , police , and engineers to bring the property down . a cherry picker , four pressurised hoses , and a thick cable were used . neighbours clapped and cheered when it was destroyed .\ncatherine gerhardt reached out to competitors when she started business . she was ignored by most but received one nasty email from a ` flamer ' ms gerhardt chose to employ ` ice ' and ignore , communicate and exit . she teaches this same policy to children through her company kidproof . a flamer sends messages with intention to hurt the victim and get reaction .\nsilhan ozcelik , 18 , went missing from kurdish family 's home last october . court heard she travelled on eurostar to stuttgart , home of kurdish workers ' party youth movement . ozcelik , from clissold park , north london , charged with one terror offence .\ngroup are the first living veterans of 2,800 to receive the legion of honour . now in their nineties , two were just teens when they helped liberate france . medal was in recognition of their ` heroic accomplishments ' and ` bravery '\nprime minister said labour had left millions of people trapped on welfare . he accused ed miliband of having ` some brass neck ' by attacking tories . mr cameron said he wanted to ` make hard work pay ' unlike labour . he said that work rather than benefits is the best way to avoid poverty . the prime minister announced 600,000 new childcare places today .\nbali nine ringleader andrew chan has married fiance febyanti herewila . the pair wed at besi prison on nusakambangan island on monday . chan proposed to febyanti in february while he was still at kerobokan . he and myuran sukumaran are set to be executed on wednesday morning .\ngary fell from 147th most popular british name in 1996 to 1,001 st in 2013 . reached height of its popularity in 1964 , when it was ranked 16th . meanwhile , names including dexter and jenson are now in the top 100 .\ngay-friendly pub has come out in favour of nigel farage 's ukip party . the harewood arms in west yorkshire says it agrees with party 's policies . ukip wants to amend the smoking ban to give pubs and clubs the choice . also has launched ` save the pub ' campaign to support ailing pub industry .\nworld champion hurdler jana pittman has given birth to her second child . her daughter emily was born on monday , weighing in at 3.1 kilograms . just a day before , pittman was filmed in training for the 2016 rio olympics . she trained throughout her pregnancy with her first child , son cornelis . pittman aims to be back training in may and looks to compete at beijing .\nthiago alcantara scored bayern munich 's first goal in 6-1 win over porto . spanish midfielder dictated the game with precise passing from deep . one commentator said : ` thiago might well be the most technically-gifted central midfielder who has ever played for bayern . thiago followed pep guardiola from barcelona to bayern munich . manchester united made an ultimately fruitless effort to sign the midfielder .\nofficer michael slager is being held at charleston county jail accused of murdering walter scott , shooting him eight times in the back . slager 's wife jamie is eight and a half months pregnant . ` he will not be allowed to see the child , ' major eric watson of the charleston county sheriff 's office tells daily mail online . prisoners are not allowed access to the internet or mobile phone videos . no date has yet been set for his first court appearance and his full trial date could more than a year away . walter was stopped for allegedly having a faulty center stop light at the bottom of his rear windscreen . family tell says the light was an accessory and both mandatory stop lamps were functioning .\ngarment is part of an animal-skin display at national museum of denmark . it is known as a ` naatsit ' and was worn during 19th century in greenland . depending on the weather , the naatsit was often the only garment worn . other items include a diaper made from reindeer skin and fur .\nantonio di natale played alongside alexis sanchez at serie a side udinese . former italy forward claims chile star was his best ever strike partner , which have included francesco totti and alessandro del piero . di natale claims arsenal forward is better than barcelona star neymar .\nthe trackyourdose app was developed by germany-based firm esooka . it uses a mathematical model developed by scientists and meteorologists . the # 1.49 -lrb- $ 1.99 -rrb- ios app keeps a record of a user 's ` personal radiation ' . this includes exposure from medical examinations , changes in a person 's location and flights .\nwest ham no longer fear facing manchester city , says winston reid . reid was in side that beat city this season after five-game losing streak . premier league champions have lost six of their last eight games . west ham travel to the etihad hoping to replicate october 's victory . new zealand defender reid has experience to stop sergio aguero .\ncrash happened as van driver was moving along m6 slip road at junction 8 . car towing caravan tries to move into lane but two vehicles collide . as the car driver climbs out van driver unleashes his foul-mouthed tirade .\nthor dalhaug died at lincoln county hospital in september 2013 . unsupervised surgeon used forceps in an ` unacceptable ' way , report said . senior managers then tried to remove the fact forceps had been used .\njordan spieth won the 2015 us masters at the augusta national golf club . spieth won the first major of his career having led all week . the 21-year-old hit a final round of 70 to finish on 18 under par . spieth became the first man ever to reach 19 under par in the masters . the american finished second to bubba watson at the 2014 masters . spieth : winning the masters has been the most incredible week of my life .\npunk-glam stars at fashion week on tuesday bringing an edge to the show . phoenix keating , zhivago , khim hang and alice mccall rocked punk glam . while others like maticevski , ginger and smart and brunsdon play safe . collections featured metallics , jewel tones , rigid lines and new textures .\ncoutinho hit the only goal of the game as liverpool beat blackburn . they will meet aston villa in the semi-finals a week on sunday . liverpool skipper henderson had not slept the night before the game as his wife gave birth to his second daughter . boss brendan rodgers revealed henderson had no thoughts about missing the match . ` he said to me , `` boss , as soon as the baby 's out , i 'll be coming back '' , ' rodgers explained .\nauthorities have said an underground electrical fire is blamed for an explosion that sent a manhole cover flying more than 200 feet . the fire began around 11:30 a.m. sunday on tupper street in downtown buffalo , new york . police evacuated two buildings as smoke came out of manholes . a photojournalist was interviewing a man on the street when the second blast occurred about a half-block behind him and the manhole flew up .\nswedish home furnishings company have launched ` wedding online ' guests need webcams and their faces are pasted on to virtual bodies . couples choose wedding themes including fairy tale , beach , high society .\nryan wray , 26 , charged with second-degree felony forcible sexual abuse . usu pi kappa alpha chapter suspended operations after wray 's arrest . the 2013-14 president was suspended by fraternity after allegations . wray faces up to 15 years in prison and could be disciplined by school . incidents allegedly occurred between last october and wray 's march arrest .\nengland star taken off as a precaution after being hit on the hand . kevin pietersen was fielding for surrey at leg slip against oxford mccu . a sweep off gareth batty 's bowling caught the top edge and struck kp . pietersen has returned to surrey to fight for his england place .\nmedhi benatia was taken off against bayern leverkusen on wednesday . the bayern munich defender will be out for between two and four weeks . bayern face porto in the champions league on april 15 and april 21 . benatia described his injury as an ` occupational hazard ' on twitter .\ndanielle davies , 21 , from lancashire , gave birth to son harley last friday . he weighed 11lb 5oz and nurses said he was too heavy for hospital scales . danielle has had to throw many of harley 's newborn clothes away already .\npolice are hunting a woman who stole # 60 from epileptic woman 's handbag . victim collapsed and suffered a violent seizure that lasted 20 minutes . passers-by rushed to help but police believe one person took advantage . police have released cctv footage of a woman they want to speak to .\ndating website skout 's survey reveals cheese lovers more active in bed . the most popular cheese is american followed by cheddar and mozzarella . those who like their cheese sarnies grilled are also more charitable .\npensioners are being offered mortgages that will be paid off at age of 105 . nationwide is giving anyone up to 70 the chance to take out a 35-year loan . tempting for over-55s with pensions released under reforms to buy houses .\nwoman reported ` someone ' had been run over , but victim was a squirrel . another man dialled 999 to say he dropped a burger which was ` bleeding ' east of england ambulance service warned hoax calls can cost lives .\nblack book of carmarthen is the earliest surviving welsh manuscript . it contains some of the earliest references to arthur and merlin . believed ` ghost ' images were in the original , but erased by a 16th century owner of the book , probably a man named jaspar gryffyth .\ntiger woods has made his first public appearance for 60 days . he had been on hiatus to recover from injury and a dip in form . woods warmed up at the augusta course ahead of the 2015 masters . the 39-year-old was given a warm welcome back by the crowd .\ntamara pacskowska pretended to be 76-year-old georgina bagnall-oakley . tried to sell her # 1million bayswater mews home from under her nose . recruited daughter-in-law monika brzezinska to translate agent meetings . they planned to sell the home to fellow conman benjamin khoury , aged 26 .\ntalksport commentator stan collymore grew up supporting aston villa . covering villa 's 3-3 draw with qpr on tuesday , he could not hide his delight when christian benteke scored . he was pictured leaping from his seat in the villa park press box .\nnaz shah claimed to have been forced into abusive marriage aged 15 . but mr galloway says he has marriage certificate showing she was 16 . accused her of playing into stereotypes and demonizing pakistanis . labour hit back , saying there are two marriage certificates , and they have the original from 1988 showing ms shah was in fact 15 . party say they wrote to election watchdog over mr galloway 's allegation .\nsponge bobby was found with breathing difficulties in november . the six-month-old female seal was released into the wild in march . experts believe she was struck by a boat or a jet-ski off dorset the coast . the young seal had travelled more than 200 miles since her march release .\nmoussa sissoko was sent off against liverpool on monday night . john carver felt that sissoko 's second booking was worthy of a red card . midfielder could be punished by his club on top of a two-game ban . carver admits he is only concerned with results and not performances . newcastle are 13th in the table , nine points off the relegation zone .\ndavid haye stopped on arrival at dubai international airport for a holiday . he was taken to a police station and handed over his passport . cheque had been the final payment on a new property in the uae . he says the ` bounced ' cheque was down to an administrative error . the 34-year-old has n't fought since beating dereck chisora in july 2012 .\nsantiago vergini is on a season-long loan at sunderland . defender has an option for a two-year deal at black cats if they stay up . argentine admits only downside at wearside has been the weather .\ntom brady to gisele bundchen : `` you inspire me every day '' bundchen had last runway show wednesday . she 'll be focusing more on family , `` special projects ''\nfloyd mayweather jr and manny pacquiao 's fight will be the richest ever . sportsmail 's jeff powell is counting down the ring 's most significant fights . joe louis ' 1938 re-match with max schmeling is the second in the series .\nu.s. navy moves aircraft carrier , cruiser to waters near yemen . u.s. , allied ships prepared to intercept iranian vessel if they enter yemen 's waters . iranian admiral says his country 's ships operating legally .\nmcc reveals plans to replace the ` tired ' tavern and allen stands at lord 's . the redevelopment will increase the overall capacity to almost 30,000 . completion is scheduled for 2019 , in time for the world cup and ashes .\nrobby mook , hillary clinton 's soon-to-be campaign manager , distributes a `` values statement '' the memo maintains that the campaign must remain humble , disciplined and united .\nthe last mammoths died out on an arctic island around 4,500 years ago . isolated on wrangel island for around 5,000 years they became inbred . researchers found mammoth populations suffered declines in the past . dna sequencing also raises prospect of bringing mammoths back to life .\norganizers want to ban scantily-clad models at car show . the shanghai auto show is a key event for global automakers . cars are no longer the status symbol they once were in china .\nthe tony castro design is estimated to cost 40million euros -lrb- # 29m / $ 43m -rrb- to build and more to buy . the british designer has created the yacht to withstand a circumnavigation around the world . luxurious touches include a cinema , wine cellar , gym , sauna and beach club as well as the infinity pool . there is also space for submarines , supercars and jetskis on board .\nemilo izaguirre has rallied his team-mates ahead of final six league games . celtic 's hopes of winning domestic treble came to an end on sunday . ronny deila 's side were knocked out of the scottish cup semi-final . read : celtic write to sfa over josh meekings handball controversy .\nthe project accidentally mistook one african-american comic for another . they used footage of jay pharoah when promoting michael che interview . viewers of twitter were quick to point out the embarrassing mix-up . presenter waleed aly apologised for the mistake later in the program . ironically , aly was the subject of a strikingly similar mix-up this year .\nnra says although it disagreed with sarah brady , she was an honorable and respected woman . sarah brady became involved in campaigns against gun violence after her son to picked up a loaded gun . her husband died in august , having spent the last part of his life in a wheelchair from being shot .\nnew nhs guidelines urge gps to draw up end-of-life plans for over 75s . also applies to younger patients with serious conditions , such as cancer . told to ask if patients wants doctors to resuscitate them if health worsens . medical professionals say it is ` blatantly wrong ' and will frighten elderly .\nsteven allison , 37 , uploaded pictures of himself looking happy and tanned . he fled to australia after going on run from the law more than a year ago . police were closing in on him with help of interpol and australian officers . allison was given 30 month jail sentence for sexual assault of two women . he was supposed to be lying low but could n't help post clues on facebook . tracked down by authorities and flown back to uk in handcuffs yesterday .\nadd natural sun-kissed highlights to your hair with the help of lemon juice . aloe vera can be frozen into ice cubes for extra sunburn relief . place your iphone in a resealable bag for the ultimate waterproofing trick .\nchampions league quarter-finals will be settled this week . matches are : barcelona vs psg , bayern munich vs porto , monaco vs juventus and real madrid vs atletico madrid . chelsea , arsenal , liverpool and manchester city out of competition . there are 23 former premier league players still involved in latter stages .\nnumber of uk deaths per will rise by 20 % over the next two decades . funeral costs have already risen by 80 per cent over the past ten years . ` simple ' funeral , with cremation , minister and undertaker , now costs # 3,590 .\nprogress m-27m suffered a glitch moments after launch this morning . roscosmos says problem is with its antenna and propulsion system . spacecraft was scheduled to dock with the iss today to deliver food . plan is ` indefinitely abandoned ' as russia scrambles to gain control .\npolice seized rafi , 10 , and dvora , 6 , in a maryland park on sunday and their parents say they were n't reunited by cps for hours . scientists danielle and alexander meitiv believe in ` free range parenting ' meaning the children are afforded total independence from infancy . the meitivs were found guilty of neglect in march . after sunday 's incident they were forced sign a paper pledging not to leave them unattended .\n22c forecast for south east is 11c warmer than average - and would beat 2015 high of 20.7 c in aberdeenshire . among the best coastal areas for warm weather tomorrow will be hunstanton in norfolk and whitstable in kent . weather will stay mostly dry and sunny for next few days , but some showers are expected from late tomorrow . defra warns asthma sufferers and people with lung problems of ` very high ' air pollution in south east tomorrow .\n`` galaxy quest '' tv series in the works . show would be based on the cult classic 1999 sci-fi comedy .\nian rogers has spent hundreds of pounds on his collection of nine dolls . the dolls are said to be haunted with the spirits of dead people . he says each doll has their own unique story . he used to share them with his sister but she found them too mischievous .\nnasr bitar spotted google street view car driving around last autumn . decided it was ` his time to shine ' with it so followed in his car to get a selfie . sensing the perfect moment , he got out and took the snap in mississauga . picture of nasr 's selfie and the street view image shared 2.9 million times .\nwenger and mourinho faced off once more as arsenal and chelsea contested a 0-0 draw . neither boss was in a combative mood before the game despite some fiery match-ups between the pair in the past . arsenal manager yet to record a win against the portuguese in 13 meetings . the point is another significant step for chelsea in their inevitable march toward the title . mourinho hits out at ` boring ' criticism as he claims 11-year title wait for arsenal is the real tragedy .\ngoogle paid its billionaire executive chairman eric schmidt nearly $ 109 million last year . most of the compensation consisted of stock valued at $ 100 million . schmidt also pocketed a $ 1.25 million salary , a $ 6 million bonus and perks valued at nearly $ 1 million . his total pay last year soared by more than five-fold from 2013 when his google compensation was valued at $ 19.3 million . the hefty raise came in a year that saw google 's stock drop by 5 percent amid investor concerns about the company 's big spending on far-flung projects .\nmercedes driver tried to avoid a traffic jam on the m58 in merseyside . attempted to undertake the queuing traffic on the road 's outside lane . but one driver was n't happy and blocked the mercedes from getting ahead . pair repeatedly began to swerve as the mercedes tried to get past .\nthe stay occurred in the yagodina village in the remote rodopi mountains . walking up to nine miles every day there were many sights to be seen . yagodina cave features stunning luminescent stalactites and stalagmites .\nplane left indianapolis and crashed near bloomington airport after midnight . among the dead were pilot , business owner , illinois state director of athletics aaron leetch , wells fargo employee and sprint representative . there was fog in the area when the plane , a cessna 414 , crashed near airport . illinois state associate head basketball coach torrey ward was also killed . terry stralow , the owner of a bar called the pub ii , also died in the crash . ward cryptically tweeted ` my ride to the game was n't bad ' before the tragedy . faa and the national transportation safety board are investigating the crash .\nthe pm made the remark after carrying out a call-in on itv 's this morning . host philip schofield announced that the next guest was a picket pocket . cameron , who was off camera , overheard saying : ` is that alex salmond ? '\nhistorians are hoping the wanquan castle can be restored to its former glory , particularly its imposing outer wall . fortress was built in 1393 and successfully repelled every attack that invading mongolian armies threw at it . castle has huge historical , cultural and military significance and has key cultural relic status for chinese people .\npassenger jet at ben gurion airport in israel grounded by fire . six passengers filmed leaping onto tarmac to avoid being burnt . incident was declared a state of emergency level 3 - the most serious .\nbethany farrell , 23 , died during a scuba diving trip on february 17 , 2015 . young backpacker was in blue pearl bay off queensland 's hayman island . she was on a wings diving adventure charter boat for her first scuba dive . friends have claimed that staff on the boat deleted the last photos of her . her family believe the images may have helped explain what went wrong . police investigation is still underway and a report will be sent to coroner .\ndesperate father is begging people to ride him to raise much-needed cash . family is in thousands of pounds of debt from numerous rounds of chemo . little minghao , 9 , needs further treatment after leukaemia came back .\njoyce cox was aged four when she was sexually assaulted and murdered . youngster went missing on her way home from school in cardiff in 1939 . her body was found by railway line but her killer has never been caught . family accusing police of a ` cover-up ' after case file was closed until 2040 .\nlorient made it out of the ligue 1 relegation zone by beating marseille . jordan ayew scored twice to outshine his brother at the velodrome . marseille have now lost three games in a row to destory their title hopes .\nthe bodies of the six soldiers were found buried in a farmer 's field in belgium in 2008 and 2010 . efforts to identify the men were unsuccessful so their gravestones will be marked ` known unto god ' the men , who died in october 1914 , were reburied in prowse point cemetery with full military honours . their graves will sit alongside those of more than 200 other commonwealth soldiers in the cemetery .\nfinal barclays premier league live tv matches announced . twelve matches to be shown on sky sports in may , three on bt sport . manchester united vs arsenal moved to 4pm on sunday , may 17 . click here for the latest barclays premier league news .\nharvard-led study mapped taste buds on a tongue for the first time . scientists examined the different cells that are used to identify taste . they watched the cells capture and process molecules live . researchers now want to study how the brain responds to taste .\nformer model was walking in marylebone and was surrounded by gang . muggers took her mobile phone before fleeing the scene on bikes . the phone reportedly had private texts from her troubled father paul . miss gascoigne took to twitter and branded her attackers ` low lifes ' .\nthe fbi cites social media messages sent by keonna thomas , 30 . she 's accused of trying to travel overseas to join isis . thomas is one of three women facing federal terror charges this week .\nmexican restaurant has decided to tap into $ 70 billion food delivery market . fast-casual chain will work with the postmates app to allow mobile orders . app works in similar way to uber , using hired drivers to deliver the food . but the chain will add a 9 % service charge - on top of postmates ' $ 5 rate .\njamie carragher believes brendan rodgers is the right man for liverpool . rodgers under pressure after a third straight season without a trophy . liverpool are also on course to finish outside the top four this season . carragher received a beacon award for his community work on tuesday .\njared leto unveiled as the joker for the first time on twitter . leto stars in 2016 's `` suicide squad ''\na man identified as walter witt on youtube was casually filming a serene forest a short distance away from the foot of the calbuco volcano . ` beautiful , the volcano there ... ` he says just before the volcano begins to blow . volcano calbuco had erupted for the first time at 6pm local time on wednesday and has been dormant since 1972 .\nwarning graphic content . police in brazil found frozen carcasses of dozens of dogs at the restaurant . chinese owner van ruilonc admitted making pasties out of stray canines . dog meat would be sold to unwitting customers at the fast food outlet .\njohn carver has become the target of fans angry with how the club is run . his depleted and disinterested squad have lost five games in succession . supporter sites have organised a boycott of the clash with tottenham . steve mcclaren has already been tipped as a replacement for carver .\nprincess , 25 , looked chic in a white and gold dress . mingled with kelly brook and dakota fanning at the dinner . cousin of princes william and harry is working at auction house in city .\nstephanie scott , 26 , was last seen at leeton , west of sydney , last sunday . high school teacher is due to marry her partner of five years on saturday . police have grave concerns as her disappearance is ` out of character ' . ms scott could be travelling in a mazda 3 sedan with registration bz-19-cd .\nsportsmail revealed in august that malky mackay and iain moody were being investigated by fa over ` sexist , racism and homophobic ' texts . mackay became manager of wigan athletic in november 2014 . wigan are eight points from safety as they sit in the relegation zone . the championship club are on the verge of dropping into league one . read : mackay sacked by wigan after derby defeat .\ntibetan mastiffs had been status symbols for china 's wealthiest . they were given as gifts to grateful officials by businessmen . one puppy was sold for # 1.2 million to a property developer last year . but an anti-corruption drive means the breed is now shunned . instead the dogs are sold to abattoirs for their meat and skin .\nlivingston stake on alloa athletic in the final of the petrofac cup on sunday . midfielder darren cole is in mourning after the recent death of his cousin shaun , who died in miami from a suspected hit-and-run . livingston boss mark burchill believes that cole can overcome his heartbreak to play for his side against alloa .\ngreg valecce , 53 , had swastikas , stars of david , two variations of the n-word , a penis and other offensive symbols tattooed on his arms . also suffered three broken ribs , both broke wrists and fractured facial bones . incident occurred in mayfair , philadelphia , in march/april 2014 . corry ` corey ' campbell , 21 , believed valecce had harmed his cat . campbell and four others tortured valecce for three days . campbell was sentenced to 20 years prison , along with friend carl halin , 18 . his girlfriend received sandra ng , 18 , received 23 months . two others are awaiting sentencing .\nfour seasons set out to recreate their famed hotel experience in the sky . jet features plush interior and leather flat-bed seats designed by iacobucci . an all inclusive trip on private jet will set you back approximately # 63,000 . the plane , including the staff and crew , is also available for private charter .\nrapper lil wayne not injured after shots fired at his tour bus on an atlanta interstate , police say . no one has been arrested in the shooting .\nceltic were defeated 3-2 after extra-time in the scottish cup semi-final . leigh griffiths had a goal-bound shot blocked by a clear handball . however , no action was taken against offender josh meekings . the hoops have written the sfa for an ` understanding ' of the decision .\neden hazard put in a man-of-the-match performance for chelsea . mesut ozil was in fine form for arsenal as they beat liverpool . joey barton helped qpr to an emphatic 4-1 win over west brom .\nformer celtic hero billy mcneill will be honoured with a statue by the club . as both a player and a manager , he enjoyed a hugely successful 27-year association with the parkhead outfit . he won nine consecutive league titles as a player between 1965 and 1974 . in 1967 , he became the first ever british captain to lift the european cup . as manager , he delivered four more league championships to celtic .\narnold quintero , 21 , from texas was arrested and faces a string of charges . teen , 13 , said she was imprisoned , beaten , sexually assaulted and burned . told police a lighter was held to her face and she was forced to undress . her attacker took photographs and had sex with her , she told detectives .\na powerful storm capsized several sailboats participating in a regatta , and crews searched for at least four people missing in the waters . dauphin island mayor jeff collier said that at least one person was confirmed dead , but he did not know the cause . ` it 's been a very tragic day , ' michael smith , with the buccaneer yacht club . the identities of those who are dead and missing have not yet been revealed .\nemmanuel adebayor 's current tottenham contract runs out in 2016 . the striker is unwilling to take anything less than his current # 5.2 million salary before accepting a move out of white hart lane . togolese forward has made just nine league starts this season .\neva kor , 81 , embraced former auschwitz guard oskar groening , 93 . the former ss man is on trial for war crimes for his two years at the camp . kor described to court how she and her twin sister were experimented on . she suffered at the hands of dr josef mengele at the nazi death camp .\nwest ham face manchester city at the etihad on sunday , ko at 1.30 pm . cheikhou kouyate believes the hammers must not underestimate city . manuel pellegrini 's side have lost their last two premier league games . sam allardyce wants west ham to be defensively solid on sunday .\nboeing 787-8 was bound for cancun after leaving london gatwick . pilot made decision to divert to bermuda due to ` disruptive passengers . police confirm two men removed from plane and taken into custody .\ndave heeley , 57 , completed the 156-mile marathon des sables on friday . the father-of-three known as ` blind dave ' is the first blind man to do so . he previously finished the seven magnificent marathons challenge in 2008 .\nthe video depicts the 918 spyder driving down the stuart highway . the car was driven by new zealand professional racer craig baird . the stunt is part of a promotional tour to showcase the hybrid cars .\nlewis moody , danny grewcock and josh lewsey said they felt a jolt . plane was dropping them off at the start of the 60-mile trek to the pole . rugby stars are now back from expedition that raised money for charity .\nthe mail on sunday 's brilliant gp with all the health answers you need .\njack cordero , 14 , from portland , has won praise for his etiquette . he was sick in a bookshop but handwrote staff there an apology . the manager of the shop , jennifer wicka , said that the note made her day . a picture of the letter went viral after it was uploaded to twitter .\nben powers joined the cast of `` good times '' for its sixth and final season . he played thelma 's husband keith anderson .\nbarcelona have now scored 401 goals in the champions league . a double from luis suarez and another from neymar beat psg 3-1 . catalan side have achieved the feat in 202 matches since 1992 . but they have some way to go to catch the 436 of real madrid .\nroger federer won first match since losing indian wells final in march . the 17-time major champion won 6-2 , 6-1 against jeremy chardy . federer will take on gael monfils for place in quarter-finals .\nsnp said retirement age should be frozen , in a move costing billions . first minister nicola sturgeon also wants pensions to rise to # 160 a week . parts of scotland have among the lowest life expectancies in the uk .\nnathan dailo , from sydney , posted a video to his youtube channel demonstrating how he gets his three-month-old son seth to fall asleep in just 42 seconds with a single piece of white tissue paper . the clip of his son drifting off has since received more than 1.7 million views since it was posted last month . when savannah tried the method out for herself , eight-month-old vale just giggled at her .\nsean maitland has undergone surgery on his injured shoulder . the london irish-bound winger is now a doubt for the world cup . the kiwi has won 15 caps for scotland and toured with the lions in 2013 .\nkyle hargreaves was caught kissing a girl on a stretcher in the ambulance . when confronted , the 18-year-old replied ` we are just trying to have sex ' he punched paramedic michael newman three times and spat in his face .\nsouth korea has paid marvel to ensure country is shown in positive light . much of the new avengers film , released on thursday , was shot in seoul . culture ministry paid # 2.4 m to cover a third of the filming costs in the city . the government wants seoul to be portrayed as ` high tech ' and ` modern '\nlabour unveils poster claiming voters lost # 1,100 each due to tax changes . ed balls said ` millions are paying more while millionaires pay less ' claimed the prime minister was planning a cut in the top rate of tax . but mr cameron hailed a raft of tax cuts which have come into force today . he said labour is planning tax rises worth # 3,000 to every working family .\nthe organizers of the protest at mcguffey high school encouraged anyone who shared their bigoted stance to show support by wearing a flannel shirt . the event was held last thursday and students report that openly gay pupils were also physically bullied . a number of the anti-gay protesters proudly shared photos of them wearing flannel shirts on social media platforms such as instagram . thursday 's event appeared to be a reaction to a day of silence events for bullied lbgt students held the previous day .\nthe dragon king dinosaur skull is up for sale in hong kong . at 9.2 ft -lrb- 2.8 metres -rrb- long it is said to be world 's largest intact dinosaur skull . skull belonged to a male triceratops that lived 66 million years ago . the fossil - first found in montana in 1992 - is available for $ 1.8 million .\nlaura mary sumner has been ordered to leave russia within ten days . ms sumner was researching soviet rule from 1917 to 1921 in a library . officials claimed she was in russia on a commercial not a study visa . russian media branded ms sumner ' a spy ' due to her research interests .\na cambridge university professor has written a book about sex statistics . sex by numbers investigates what the real average penis size is . tracey cox takes a look at the surprising findings .\nsinger arrived at artists ' entrance to gain entry to drake 's gig . security told him area was at full capacity and denied admission . a row erupted and a coachella staffer tried to get bieber into the gig . but festival security then intervened and put singer in chokehold and removed him from the area .\npolice discovered the body of a female in bushland on friday afternoon . stephanie scott was last seen on easter sunday which sparked a search . the burnt remains is believed to be the much-loved school teacher . police will contact authorities in holland for a background check on accused killer , vincent stanford , who was charged with murder . stanford 's family led police to cocoparra national park north of griffith . forensic testing will be carried out on the remains of the body on monday .\nmuslims will increase at more than double the rate of world 's population . largest proportion of muslims likely to be in india , data showed . research was completed by the pew research center in america .\nmarlon samuels will inspire team-mates with discipline and application . the west indies batsman scored 103 in second test against england .\nronnie o'sullivan , a five-time champion , draws craig steadman . the 32-year-old steadman is playing in world championship for first time . defending champions mark selby will face norway 's kurt maflin .\nmikki nicholson , 36 , suffered daily verbal abuse on the streets of carlisle . she planned move to newcastle , where she hoped she would be accepted . but was told she would risk homelessness if she left her social housing . the former scrabble champion stepped in front of a train last november . for confidential support on suicide matters in the uk , call the samaritans on 08457 90 90 90 , visit a local samaritans branch or click here .\npupils at riverview junior school in gravesend are not allowed to run . teachers say the new rule is designed to stop them hurting themselves . parents are furious that children are n't allowed to ` let off steam ' .\na woman at an ohio walmart says an officer forced her to sit in her car after she left her dog sitting in the parking lot april 12 . last year , a truth or consequences , new mexico woman filed a complaint alleging a similar mistreatment .\nroma win at home for the first time since november . miralem pjanic completes a counter-attack to put hosts ahead . morgan de sanctis produces stunning goalkeeping display . napoli without a win for five matches after terrible run .\nthe mod accidentally published information on falklands raf base online . mount pleasant aerodrome is home to four eurofighter typhoon jets . argentina is considering leasing 12 sukhoi su-24 bombers from russia . the supersonic attack aircraft can carry 3,000 kg of bombs 650 miles .\ncressida bonas says she is happy being single after prince harry split . dancer and mulberry 's new muse says : ` i 'm a strong , independent woman ' just finished playing cecily in the importance of being ernest in london .\ngrant clarke , 45 , was left brain-damaged after a brain haemorrhage in 2012 . concerned about his welfare , his family planted a secret camera in room . vanessa kennard was one of three nurses charged with misconduct . she failed to appear at nmc hearing and was suspended for six months .\nguo kai and girlfriend dong hui , 22 , had planned to get married this month . but ceremony had to be postponed after dong was admitted to hospital . instead guo arranged for photographers to go to the ward on her birthday . family and friends helped dong get into her dream wedding dress .\nbird was spotted near the a4 flyover at brentford after flying along thames . eagle-eyed canal boat resident saw the puffin and contacted rescue agency . puffins most commonly found in iceland , but this bird ` blown off course '\nluke harris and daryl lee had their first child three months ago and are now preparing to welcome their third baby . gay couple will become fathers for a third time in a few weeks after enlisting the help of three surrogate mothers . first child phoenix blue born on january 14 while daughter willow-star arrived in 25-minute labour on february 25 . upcoming birth means the parents , from surrey , will have completed their family of three within just seven months .\ngraeme mcdowell will play ` aggressive ' golf to end his poor masters record . the 35-year-old has only made the cut twice in seven attempts at augusta . mcdowell has just recovered from an ankle injury ahead of the masters . click here for all the latest golf news .\nfinn says it is ` baffling ' he faces criticism for not hitting 90mph mark . middlesex seamer was left out of england 's tour of west indies . this was despite being one of the team 's better players at world cup . 26-year-old will chase an england recall through good county form .\naaron cook was overlooked by team gb for the london olympics . taekwondo star has received citizenship from moldova and plans to fight for them at the rio 2016 games . the british olympic association could yet block the move .\na teenager has broken the world record for completing a rubik 's cube . collin burns finished the notoriously difficult puzzle in just 5.25 seconds . he shaved 0.3 of a second off the record at an event in pennsylvania .\nleigh griffiths came off the bench to score a hat-trick at parkhead . the striker helped celtic come from behind to beat kilmarnock . celtic manager ronny deila hailed the substitute for his impact . celtic eight points clear from aberdeen at top of scottish premiership .\ndidier drogba has 15 goals against arsenal for chelsea and galatasaray . he averages a strike every 78 minutes and 20 seconds against arsenal . drogba could be chelsea 's only fit striker for sunday 's trip to the emirates . read : chelsea fans storm emirates stadium and turn arsenal sign blue . martin keown : deep down , jose mourinho admires arsene wenger 's work .\nfars news agency alleges that jason rezaian sold economic and industrial information he obtained from iran to americans . government officials said in january that rezaian , 39 , would stand trial for unspecified ` security charges ' rezaian was taken from his tehran home on july 22 and was not permitted to hire a lawyer until last month .\nivan carlos , 22 , brenda avilez , 18 , were killed along with their unborn child . avilez was expected to give birth the first week of may . the driver , christian crawford , has a lengthy rap sheet and was recently released from prison .\nthe bentley r-type continental fastback was expected to sell for # 200,000 . but an anonymous car collector bought it for # 739,212 in surrey yesterday . when the vintage car is restored , it could be worth more than # 1million . described as ` one of the rarest cars of its time ' as only 218 cars were made .\ngoncalo amaral claimed in book couple were involved in disappearance . mccanns told court they were left ` devastated and crushed ' by allegations . the couple also accuse amaral of hampering the search for their daughter .\naround 400 migrants trying to reach europe died when their boat capsized . body of one migrant on another vessel was thrown overboard to sharks . stories emerged after more than 8,000 crossed mediterranean at weekend .\ned miliband has history of appearing awkwardly in front of the camera . twitter account aims to reinvent labour leader as a symbol of cool . miliband 's face edited on to famous men 's bodies such as daniel craig .\nimage went viral after it was posted by user bobitis on reddit . the unnamed youth , from new york , knelt on a chair to reach whiteboard . the boy is the son of new york professor and drew map from memory .\nloic remy hit the decisive goal as chelsea beat stoke 2-1 on saturday . he also scored the final goal in chelsea 's 3-2 victory at hull . jose mourinho praised remy 's scoring instinct and professionalism .\nmichael phelps is hoping to compete a the 2016 olympics in rio . phelps will has served a six-month suspension by usa swimming after a second drunken driving arrest last year . 29-year-old will be competing in mesa for the first time since the pan pacific championships last august .\na los angeles judge ruled this week that v. stiviano must return $ 2.6 million in gifts she was given by former clippers owner donald sterling . shelly sterling said on wednesday that she feels vindicated by the win and will be giving the money to charity . she said that she and sterling never split and , even though she drew up divorce papers last year , she never filed them . the ruling came a year after the nba banned sterling for life over a recording of him telling stiviano not to associate with black people .\nbethune-cookman university student damian parks , 22 , drowned on sunday . he and four friends had gone swimming in daytona beach at 3am after bar-hopping , volusia county beach safety ocean rescue said . strong currents pulled parks out to sea and his body was found on monday . friends who were with him said there ` was no foul play at all ' and that parks had not been drinking nor was he impaired in any way . the five students were part of a step team called melodic stepping experience , which formed last year . parks ' mother carolyn parks , who lost another son , aged 16 , six months ago , said that her son was not a good swimmer .\nfour turkish troops were wounded in the flight , according to the country 's military . turkey president recep tayyip erdogan says clashes are attempt to halt a resolution process with kurds . violence between kurds and the turkish military has been ongoing for more than three decades .\ndavid rylance , 47 , stole thousands of pounds from his own dying mother . dying pensioner margaret rylance was suffering from alzheimer 's disease . she noticed money was missing but concerns were put down to condition . her son was jailed for two years and three months for stealing # 52,000 .\nstefan stoykov could n't speak english when he moved from bulgaria to us . indianapolis teen has been accepted into a total of 18 prestigious schools . stefan , 18 , says his mother 's hard work inspired him to achieve his goals .\nplane was flying from guangzhou , china to addis ababa , ethiopia . boeing 777-300er was forced to land in mumbai the first time to refuel . it departed but had to return due to engine trouble , indian media reported . passengers disembarked and were transferred to a hotel . what should have been a 10-hour flight turned into a day-long delay . ethiopian was recently named one of the world 's most reliable carriers .\nancient fort was built on 20-foot sea stack near stonehaven , aberdeenshire . archaeologists needed to use ropes to reach the summit for the excavation . they found remains of stone walls , ramparts and a charcoal filled fireplace . experts believe it may have been one of a line of forts along scottish coast .\npatrick revins was caught selling heroin to an undercover police officer . bungling drug dealer was identified by ` p ' and ` r ' tattoos on his forehead . revins , 49 , had hidden small amounts of class a drug inside a kinder egg . he admitted one count of supplying heroin and was jailed for a year .\nexperienced authors will reveal how they launched their careers . there will also be representatives on hand from publishing houses . the london book and screen week will be running simultaneously .\n20-year-old woman was hit by bullet at 11pm on wednesday night . window shattered and she felt blood driving down i-25 north of denver . bullet passed clean through her neck - but did not cause major injury . other drivers have reported windows shattering after potential gunshots .\ncameron thomas philp vandalised and spat on the vehicle in 2013 . the forensic officer swabbed the spit and found philp from his dna . he pleaded guilty to wilful damage of police property and was fined $ 300 . mr philp claimed it was out of character but he has similar convictions .\nhbo released a teaser video for the new season , starting june 21 . the series stars colin farrell and vince vaughn .\ndebris on carriers can get sucked into jet engines , causing deadly crashes . sailors are therefore usually required to search decks for debris by hand . but crew of admiral kuznetsov made themselves vehicle to speed up job . consists of mig-15 engine strapped to tractor to act as giant leaf blower .\njamie , 13 , reuben , 13 and finley , 10 , are on their way to becoming spooks . tv cameras allowed into london headquarters just for children 's show . trio even got to meet with security service director general andrew parker . stunt comes with mi5 busier than ever battling terrorism and rise of russia .\nlos angeles kings forward arrested friday on drug possession charges . hockey player was busted at the wet republic pool at mgm grand hotel . he was booked at clark county detention center and posted $ 5,000 bail . the charges include possession of class 1 , 2 , 3 and 4 controlled substances . he was in the news in 2013 when he had an unexplained seizure at his home . stoll celebrated the end of both the 2012 and 2014 season at the mgm grand as well with his kings teammates .\nwarning graphic content . rose devereux was in agony after years of alleged incompetent treatment . 49-year-old had all her lower teeth removed and needed bone grafts . says the treatment led to host of other health problems and pain . dentist , janakan siva , will go before a disciplinary committee .\nbinh wagner , a 3-year-old vietnamese girl adopted by an ontario family , was recovering monday following a liver transplant . earlier this year , her twin phuoc received a liver from their adopted father michael wagner but binh 's fate remained uncertain . the identical twins suffer from a genetic disease called alagille syndrome , which leads to a buildup of bile in the liver , causing damage to liver cells .\nhomes such as these in china are known as ` nail houses ' because they are difficult to remove , like a stubborn nail . one house in wenling , zhejiang province , had a main road built around it when the owner refused to move . another image shows a house sitting alone in a crater at the centre of a construction site in chongqing municipality .\npaulo dybala is being tracked by manchester united , chelsea and arsenal . inter milan , juventus and paris saint-germain are among others interested . inter boss roberto mancini was spotted at the palermo match on sunday . palermo president maurizio zamparini is demanding # 36m from psg . read : dybala says he would love a serie a stay .\nalvarado finished in fourth place in the grand national at aintree last year . fergal o'brien says the horse is in better shape this time around . alvarado has run only once this season at doncaster in february .\nracing fans dressed in their finest outfits have arrived for ladies ' day . event is one of the most anticipated of the racing and fashion calender . anxious to boost the image of event , today 's theme was ` chanel-inspired '\nchristy mack , 23 , claims ex-boyfriend jonathan paul koppenhaver , 33 , beat and raped her until she almost died at her home on august 8 , 2014 . she had been asleep next to a male friend when he ` burst in with a knife ' koppenhaver , who goes by the name war machine , claims to be innocent . mack has opened up about her recovery , now needs glasses and a wig . the case against koppenhaver , who faces 26 charges , resumes this fall .\nluis suarez scored twice in barcelona 's 3-1 win over psg on wednesday . uruguay international posed with team-mate lionel messi after victory . barcelona have now scored 1,001 goals in european competition .\ntwo former casino workers and a former model spoke out for the first time . they were aged 20 , 24 , and 27 at the time of the alleged assaults . all claim cosby , 77 , gave them either drugs or alcohol . one described ` waking up in bed naked next to him after being drugged ' . gloria allred , lawyer for many of the 38 alleged victims , represents them . she said she planned the press conference to damage cosby 's ticket sales .\nnick clegg vows to protect entire education budget ` from cradle to college ' spending would rise per pupil and also in line with inflation from 2018 . mr clegg will claim the liberal democrats are now ` the party of education ' .\nthe university of kentucky wildcats were kicked out of the ncaa tournament saturday night after a loss to wisconsin . at a press conference following the game , a reporter asked another uk player about wisconsin 's frank kaminsky . harrison covered his mouth and said ` f *** that n **** ' referring to kaminsky , and the microphone picked up the slur . in a series of tweets on sunday , harrison apologized for the statement . kaminsky has said that ` nothing needs to be made out of ' the situation .\ncarlos colina , 32 , is arraigned on charges of assault and battery , improper disposal of a body . body parts were discovered saturday in a duffel bag and a common area of an apartment building . the victim in the case is identified as jonathan camilien , 26 ; authorities say he knew colina .\nno-more-pms diet consists of anti-inflammatory foods and nutrients . the eating plan was devised by naturopathic doctor lara briden . research indicates that pms is caused by unhealthy hormone receptors . health of hormone receptors is impaired by chronic inflammation . stress , smoking , and eating certain foods are all causes of inflammation . cutting inflammatory foods can result in dramatic improvement in pms .\nwoman emerged from restaurant where she was held hostage for 7.5 hours . police were called to melbourne 's riverside quay after 10pm on sunday . a ` disgruntled ' former employee entered the storeroom armed with a knife . the 35-year-old man has been arrested but had yet to be charged .\ncross-dressing bankrobber entered u.s. bank in santa cruz on friday . cashier handed over money after being handed a note making demands . man wearing the exact same outfit was seen acting suspiciously outside a different bank an hour earlier .\nsheffield wednesday beat brentford 1-0 in the championship on tuesday . wednesday equalled club record of 17 clean sheets in a season with win . tom lees and kieren westwood in mix for club 's player of the year award .\nspoke to mailonline ahead of premiere of his new musical finding neverland . gary was handpicked by harvey weinstein to write the music for the show . said jason 's departure was ` strange ' at first but take that have moved on . promised fans an ` extravaganza ' on the new take that tour .\nmilton vieira severiano was filmed killing his wife , cicera alves de sen. the savage act took place in the garden of their rio de janeiro house . he later confessed the crime to police who found guns in his getaway car .\ncelebrity doctors are seeing an increase in demand for botox in their jowls . the nefertiti lift is a cosmetic procedure that defines the jaw line . ashley pearson takes a look at the latest trend in anti-ageing .\nanthony doerr 's `` all the light we can not see '' wins pulitzer for fiction . elizabeth kolbert 's `` the sixth extinction '' wins general nonfiction prize .\nstatue of liberty to reopen saturday . locker thought to have a suspicious package was empty , police say . statue of liberty evacuated after bomb threat , officials say . the evacuation came after a phoned threat , sources say .\nboy fell down hole in peterborough , cambridgeshire , and trapped his leg . rescue crews worked to free the boy , who remained stuck for half an hour . loose plastic drain cover thought to have been kicked out of position . do you know the boy ? email khaleda.rahman@mailonline.co.uk .\nchris lewis , 68 , of london , is suing his ex-wife nicola , 48 , for deception . tv boss believed charlie , 19 , was his and paid maintenance after divorce . but two years ago a devastating dna test revealed he was not the father . mr lewis believes teenager was born out of affair months after his wedding .\nspanish royals attended memorial for victims of the germanwings plane that crashed in the french alps last month . some 50 spaniards died on the plane which was en-route from barcelona to dusseldorf with 150 people on board . queen letizia shook hands and embraced some of the victims ' relatives and friends with her husband king felipe .\nlabour leader says speaking english is especially important in the nhs . says communities can not live together if they do n't have shared language . warns exploitation drives low-skilled migration and holds down wages . admits it was wrong to open the doors to poles in 2004 without curbs .\nin a 2012 video , bus monitor and grandmother karen huff klein , 68 , wiped away tears as she was verbally abused by middle school students . one of the bullies has been accused this week of forcing a special needs student to drink urine at greece athena high school . mrs klein said : ` they did n't learn any lessons from the other ordeal . i do n't think they ever will '\ncharlene wall jeffs , 58 , is one of a reported nine wives of lyle jeffs . the couple married in 1983 and have 10 children together . he stepped up to lead the fundamentalist church of jesus christ of latter-day saints when brother warren jeffs was sentenced to prison in 2007 . mrs jeffs says she spent years in exile before being banished last year . alleged the church only allow a group of men called ` seed bearers ' to impregnate women , and the husbands stand by holding their wife 's hand . mrs jeffs is fighting for custody of two of her children .\ndaniel ricciardo trained with martial artist in pr event ahead of formula one chinese grand prix . red bull have struggled at the start of the 2015 formula one season as ferrari have taken fight to mercedes . ricciardo finished sixth in australian grand prix and 10th in malaysian grand prix .\nkent sprouse , 42 , faces lethal injection at 6pm thursday . in 2002 he gunned down ferris police officer marty steinfeldt , 28 , at a gas station outside of dallas and a customer , pedro moreno , 38 . sprouse was high on meth , but his insanity defense was rejected . he was sentenced to death in 2004 . sprouse has not appealed the sentence recently . it could be the last execution in texas for a while . the state has a shortage the lethal drug pentobarbital .\ncar burst into flames at sydney airport 's international terminal on thursday . 4wd was completely destroyed when flames started spewing from engine . fire crews worked to put out flames as smoke covered outdoor car park . vehicle was surrounded by other cars at busy terminal car park .\nap mccoy is set to bring his 25-year career to an end at sandown . he will be joined by his whole family and thousands of devoted racing fans . his mum claire admits she will be somewhat relieved when it 's over . mccoy will be awarded with 20th champions jockey trophy by ian wright .\nwalmart supercenter was ranked the second worst in consumer reports ' annual supermarket survey . it earned 64 points along with a&p and waldbaum 's , which was ranked the worst out of 68 supermarkets surveyed . publix was ranked second best followed by trader joe 's and fareway stores .\ncameron hooker had kidnapped young hitchhiker colleen stan in 1977 . over the next seven years victim was tortured and raped as his captive . hooker , now 61 , was sentenced to a 104-year prison term jail in 1985 . he applied for early parole but was told he 'd spent at least 15 years in jail .\nappeared on russian television today looking tanned and wrinkle-free . russian president disappeared for 10 days last month with no explanation . rumours for years that president has undergone facial cosmetic surgery .\nbattle between lenders has intensified recently , causing rates to plummet . hsbc have now announced 1.99 % interest deal on a five-year fix mortgage . offer expected to spark flood of rate cuts by banks and building societies . experts have described cheapest deal ever of its kind as ` astonishing ' .\njoe root is left stranded on 182 * after james anderson is run out , seemingly not paying attention . root reacted angrily , before anderson immediately began to make amends with early wicket . west indies responded strongly with the bat , with kraigg brathwaite and darren bravo building big partnership . stuart broad finally dismissed bravo but the west indian batsmen continued to pile on the runs . brathwaite reaches his century shortly before the close , as west indies establish a lead on day four .\ncurtly ambrose 's pep talk to west indies ' bowlers on day two worked . chris jordan had a battle with former barbados team-mate jason holder . sir viv richards said jordan ` looks as though he should have a javelin ' shiv chanderpaul 's test career for west indies passed 21 years . charlotte edwards received her cbe from the queen .\ncompany in texas has been asked to develop its revolutionary engine . ad astra 's vasimr engine could apparently get to mars in 39 days . it is one of 12 advanced technology projects to be funded by nasa . others include new types of habitation and small deep space satellites .\ndrug company accused of trying to block trials aimed at promoting a ` cheap , safe and effective ' treatment for sight loss on the nhs . it ` bullied ' experts who tried to prove drug can be used to treat blindness . avastin is effective at tackling wet age-related macular degeneration . cheaper than the current treatment it would save nhs # 102million a year .\n25-1 shot many clouds wins grand national . second win a row for jockey leighton aspell . first jockey to win two in a row on different horses since 1950s .\nman identified as felix david , 24 , shot in chest by police in east village . sources say the robbery suspect hit officer over head with his own radio . two officers had head injuries , though they were not serious .\nstudy estimates yearly figure for women aged 40-59 . breast cancer is the second biggest cancer killer among american women . a critic claims there was no attempt to balance the costs with the benefits .\nchoc on choc 's chocolates come in three different flavours . the face of each politician is emblazoned on milk belgium chocolate bars . cameron 's has blueberries , clegg is honeycomb and miliband is raspberry .\nnavinder singh sarao , 36 , is accused of causing the may 2010 ` flash crash ' officials believe that he used software to make fake transactions . he was first warned about alleged illicit trading back in 2009 . sarao continued his alleged manipulation well into this year . ` how this continued for six years kind of boggles my mind ' - analyst .\ncave mimics famous caverne du pont-d'arc in france , the oldest cave decorated by man and the best preserved . the replica contains all 1,000 paintings which include 425 such as a woolly rhinoceros and mammoths . minute details were copied using 3d modelling and anamorphic techniques , often used to shoot widescreen images . the modern cave also includes replica paw prints of bears , bones and details preserved in the original cave .\ncollette dinnigan 's paddington $ 6 million home has hit the market . she and her husband bradley cocks paid $ 4.45 million for it back in 2009 . the luxury house will go under the hammer on may 23 . the four-bedroom , two-storey sandstone property was built in 1880 . the fashionista and her husband have carefully renovated the property .\nthe group called slide christchurch took on new zealand 's baldwin street . the footage was captured by spectators and on a rider 's helmet camera . one of the riders believes the group reached speeds of more than 60mph .\nthe crew were training for the boat race which takes place on april 11 . the sunken eight was recovered and returned to oxford 's base . the choppy conditions were caused by strong wind against the tide creating three successive waves that poured over the boat 's riggers .\nmichael munday posted a series of tweets for the love of his life melissa . the sydney man has posted 135 tweets about his ex-girlfriend . mr munday has about 23k followers while others remain concerned . he wrote on his twitter page that he believes he deserves a second chance . but some are n't convinced and describe act as ` creepy and inappropriate ' he has asked for retweets to help show that he deserves second chance .\nmohammad shatnawi scored a bizzare own goal in the jordanian league . his al faisaly side were a goal down against rivals al whidat . he made a brave block but overhead kicked the rebound into his own net .\nwikileaks uploads hundreds of thousands of emails and documents into a searchable online archive . documents date from last year 's crippling cyberattack against sony pictures entertainment . it 's the latest blow for the company struggling to get past the attack . wikileaks founder julian assange defended actions and said the documents were already in the public domain .\ncrown princess mary spent sunday on the farm with her children . husband crown prince frederik was absent as was prince christian , nine . spent the day out petting calves and inspecting a herd of cows . event took place in the tiny village of kirke hyllinge in zealand .\nlyon leapfrog paris saint-germain to top french ligue 1 . les gones beat bastia 2-0 at stade de gerland on wednesday . alexandre lacazette and mohamed yattara score goals . champions psg in champions league action against barcelona .\nman united and man city have over 8million followers each on weibo . both clubs have more followers on the chinese website than twitter . guangzhou evergrande taobao are the third most followed club . barcelona are fourth , but real madrid are down in 18th place . five premier league clubs feature in the top 12 on weibo . interactive map on twitter followers around the world .\nford vox : when celeb doc mehmet oz slammed by doctors for ` quack ' medicine , he hit back , but their complaint has some basis . he says oz scorned by some in medical community , at senate hearing ; comics joke about him . he serves himself at cost to his hospital .\nbrendan rodgers met with raheem sterling and jordon ibe on thursday . duo were pictured holding shisha pipes - believed to be in september . they have escaped club punishment and have not been fined . sterling has also recently been recorded on video inhaling nitrous oxide . arsenal and other clubs are now cooling their interest in sterling .\nandros townsend scored the equaliser in england 's 1-1 draw with italy . townsend tweeted to hit back at paul merson for his previous comments . townsend has been been ` desperate ' to silence his critics . merson had slammed townsend for his display against man unitedâ .\noscar-winning actress octavia spencer was at the barnes & noble bookstore at the grove in los angeles to autograph copies of her new children 's book . before the night was over people were dragging their kids out of line , demanding refunds and storming out of the store in disgust . octavia said ` no touching , no coming around the table to take a photo ' she would not engage - fans had to tell assistant their name , she wrote it on a sticky and handed it to actress . when man approached with a photo of octavia for her to sign she said , ` i 'm not doing that '\nmichael carrick made his england debut against mexico in may 2001 . the manchester united man came on against italy on tuesday night . carrick has been serving england for 13 years and 310 days . sir stanley matthews played for a staggering 22 years and 228 days .\nchelsea won the uefa youth league by beating shakhtar donetsk 3-2 . izzy brown flew in to captain side and scored twice after first-team call-up . brown was shocked but glad to have made it to both games for chelsea . dominic solanke scored chelsea 's other and hailed ` amazing achievement ' solanke also finished as tournament top scorer , netting his 12th in final .\nee shops will stock free chargers so people can revive phones while out . other smartphone users can sign up to service for # 20 . comes after research found 60 % customers said battery wo n't last a day .\nfaa backtracks on saying crew reported a pressurization problem . one passenger lost consciousness . the plane descended 28,000 feet in three minutes .\nkelly watson began having problems with coordination and speech in 2011 . despite regular trips to gps , never thought she had dementia as too young . but after tests and a brain scan , hit with horrifying news on 41st birthday . now terrified of forgetting her daughter holly , 17 , as condition will worsen . said the joys of watching her grow up had all been ` stolen ' from her .\ned miliband bored his future wife justine on their first meeting at a party . the labour leader discussed economics when she had little interest . he then failed to tell her that he was going out with the dinner party 's host . mrs miliband said she and her husband are not interested in ` kitchengate ' .\nthe nfl has reinstated adrian peterson , allowing him to participate in league activities starting on friday . this after he was suspended last september following an indictment on charges of child abuse . peterson reportedly beat his son with a switch last may . the running back in set to make $ 12.75 million this season with the minnesota vikings .\nmeghan blalock , 29 , is the managing editor for popular style website who what wear . she says that her obsession with losing weight began when she was bullied as a young child and eventually it became an ` addiction '\nformer england prop david ` flats ' flatman says the ` buzz ' around world cup is growing . flats says with the right ` constructive noise ' , competition can build rugby . england will need to play exciting rugby to capture public 's imagination . recalling the likes of danny cipriani is a step in the right direction .\nsplurge is equivalent to introducing a new law for every working day . include diving into the thames without authority and hogging middle lane . meanwhile other antiquated laws remain in force that are simply baffling .\nvincent kompany says beating manchester united can ` rectify ' the season . manchester city were beaten 2-1 away to in-form crystal palace . kompany reckons that being underdogs suits his side at old trafford . read : sportsmail identifies five problems that need sorting at the etihad . click here for all the latest manchester city news .\npeter barnett , 43 , travelled from haddenham and thame to marylebone . but pretended to have gone from wembley and tapped out with oyster card . deception places him among the ranks of britain 's biggest fare dodgers . oxford university-educated lawyer has admitted to six counts of fraud .\nmarcelo bosch secured a 12-11 win for saracens against racing metro . saracens struggled for most of the champions cup quarter-final . but bosch 's huge penalty conversion saw them make the semi-final .\nnico rosberg fought his way past kimi raikkonen and sebastian vettel . he ultimately finished third after his brakes failed in closing stages . the german is now 27 points behind title leader lewis hamilton . hamilton has out-qualified and finished ahead of rosberg at every race .\nnyc cop robert hugel discovered his parents jerry , 83 and marianne hugel , 80 , dead in their queens home with ` carbon monoxide poisoning ' . the elderly couple was found dead along with neighbor gloria greco , 70 , and friend walter vonthadden , 76 . it appeared the car was accidentally left running in the garage , but it was unclear for how long , investigators said . neighbors say the couple were happily married for 60 years .\ninvestigators have released a handful of photographs to help inquiries . they show fans rushing to tend to the dying as they lay on football pitch . police say the people photographed could address unanswered questions . a home office probe into 1989 disaster which claimed 96 lives is ongoing . anyone with information is urged to call 08000 283 284 or visit www.operationresolve.co.uk . anyone who can identify any of the people in the images should call operation resolve on 08000 283 284 or via the website www.operationresolve.co.uk .\nat waterloo bicentenary , research shows adults know little about the battle . only just over half polled knew the duke of wellington led british forces . one in eight between 18-24 said they had never heard of the famous battle . young people likely to associate waterloo with abba and london station .\nthe 12 victims were from nigeria and ghana , police said . the group of 105 people left libya , bound for italy . more than 10,000 people have arrived on italian shores from libya since last weekend .\nfaysal mohamed , 17 , pulled over along with two friends in minneapolis . the teens managed to film threatening language used by officer rod webber . claim the officers trained their guns on the teenagers but let them go without charge .\npeople magazine has named actress sandra bullock the most beautiful woman in the world . `` be a good person ; be a good mom ; do a good job with the lunch , '' she says .\ndavid silva has returned to training after being caught in the face by an elbow from west ham midfielder cheikhou kouyate . manchester city star required extensive treatment on the pitch before being sent to hospital where tests revealed no fracture . premier league champions face aston villa at the etihad on saturday .\ntaekwondo star aaron cook has changed his nationality to moldovan . he is reported to have been aggrieved at being left out for london 2012 . british olympic chief bill sweeney says cook was set on switching .\nrobert blecker : in sentencing phase , the prosecution lays out wealth of evidence that dzhokhar tsarnaev deserves penalty reserved for the worst of the worst . he predicts most of the jury will vote for a death sentence , but it must be unanimous ; therefore , tsarnaev will most likely get life in prison .\nstrung out on heroin , anthony sideri robbed a bank . he had to go through withdrawal in a jail cell . overcoming addiction is possible , he says , as he 's building a new life as a family man .\ncollege-bound basketball star asks girl with down syndrome to high school prom . pictures of the two during the `` prom-posal '' have gone viral .\nthe couple held hands as they arrived at brisbane airport . both wore their wedding bands . johnny and amber 's show of togetherness clearly aims to quash rumors that their two-month marriage is in trouble . the pirates of the caribbean star still had his injured right hand bandaged in a red bandana . a publicist for the disney film announced the return of the leading man was ` entirely dependent ' on his recovery from surgery . the pair had been the subject of several stories in the media monday about the state of their relationship .\nbrian and joan ogden were robbed as they returned to their hotel . two pickpockets worked together to snatch wallet from his pocket . the couple , aged 80 and 78 , followed thieves and confronted them . they were about to head home to wigan from hotel don pancho .\nnot all turtles can swim , said florida wildlife officials this week after concerned beachgoers tried to throw baby tortoises in the ocean . there were at least three reports of people trying to release gopher tortoises in the ocean because they were mistaken for sea turtles . tortoises have toes with claws on each toe but sea turtles have flippers with just one or two claws on each fore flipper .\nkevin rivera and amber diaz started arguing after their daughter 's party . miss diaz 's grandfather , nicolas diaz , 81 , allegedly intervened with knife . he ` stabbed mr rivera in the chest ' ; fled the scene after sunday 's killing . victim rushed to hospital with stab wound , where he was declared dead . diaz turned himself in to police in brooklyn , new york , monday morning . has been charged with manslaughter , while baby girl is now in custody .\nnoelle velentzas and asia siddiqui are arrested in connection with a plot inspired by isis . thursday 's arrests are part of a series of cases being built by the federal government .\nburlesque star , 42 , is offering workshops at canyon ranch , arizona . learn how to ` strut ' and skillfully remove garters , stockings and gloves . ` wellness experts will discuss sensuality , intimacy and sexual health .\njury selection for the aaron hernandez trial started back in january . the jury began its deliberations on tuesday . the case has a complicated cast of characters .\ndanny ings is a target for manchester united and liverpool this summer . the burnley striker does not want to move just to sit on the bench . ings keen to work with a manager who will help him develop as a player .\nsepp blatter visited sochi on monday to see one of the 2018 host venues . the fifa president also met with russia president vladimir putin . blatter backed russia to host a successful tournament in 2018 .\nmathew sitko , 23 , crashed his car and ended up hanging over a cliff edge in lewiston , idaho in an 'em otional episode ' wednesday morning . jason warnock , 29 , was nearby when he saw the car above so he climbed up a footbridge and ran to the edge of the cliff and pulled the man out . he needed to leave to go to work but was tracked down after the picture quickly spread online . ' i think maybe god put me here at the right time , ' warnock said . police are now saying that sitko crashed his suv after hearing a song on the radio that ` convinced him it was his time to die ' .\nchelsea edged closer to the premier league title after a 0-0 draw with arsenal on sunday . the blues were criticised in some quarters for an over-defensive display . jose mourinho has shrugged off those claims and said that the real boredom was in arsenal 's 11-year-wait to win a league title of their own . he hailed the individual performance of his captain john terry as the defender 's ` best ever ' in his career .\nsamantha fleming , 23 , and newborn daughter , serenity , were last seen at their home in anderson , indiana , on april 5 . police believe a woman claiming to be a child protective services employee convinced fleming she had to attend a court hearing and kidnapped the two . the three-week-old infant was discovered unharmed in the woman 's gary , indiana , home , along with a body on friday . on saturday the body was identified as fleming . the alleged kidnapper was not at the home , but found at a hospital in texas . charges are pending and she has not been identified . police believe she faked a pregnancy and planned to keep the child .\naustralia have relaxed their policy on selecting overseas players . the wallabies can now pick ` elite ' players based abroad . provided they have 60 caps and seven years of service at home . matt giteau has starred for toulon in recent seasons . the former wallabies fly half is set for a recall for the world cup .\na daily mail investigation revealed nhs bosses raked in # 35m last year . nearly 50 hospital separate bosses took home more than # 400,000 . mps and frontline staff are united in their outrage at the mail 's findings . all three of the major political parties have called for an inquiry .\nmike holpin , from ebbw vale in monmouthshire , has at least 40 children . ca n't name half of them and has family tree tattoo to help him remember . around 16 were taken into care ` because of my drinking and womanising ' but 56-year-old wants more because he ` ca n't live without them ' ` in the bible , god says go forth and multiply . i 'm doing what god wants ' . holpin has not worked for a decade and said to receive # 27,000 in benefits . documentary also shines light on 29-year-old father of 15 from sunderland .\nprincess , 25 , spotted in bowler hat on streets of new york . carried shopping bag from intermix - a designer brand store . cousin of princes william and harry is working at auction house in city .\nthe havasupai tribe are the smallest indian nation in america , with just over 600 village inhabitants . they live in the village of supai which can be visited by helicopter or mule , as it is eight miles from the nearest road . visitors can stay overnight with the tribe and experience the incredible havasu falls .\nwest ham take on qpr at loftus road in the premier league on saturday . rob green played for sam allardyce at west ham during 2011-12 season . green has 12 england caps but made calamitous error at 2010 world cup . the west ham manager believes the mistake has haunted green ever since . but thinks he is capable of challenging joe hart for the england no 1 spot .\nwriter stewart brand says warnings that the world is facing a new mass extinction may lead to a fatalistic attitude that will do more harm than good . instead he points to the recovery of species due to conservation efforts . he believes climate change is unlikely to have the feared impact on wildlife . he argues that more new species are being discovered than are being lost .\neniola aluko has been superb for chelsea this season . manchester city defender lucy bronze is the current holder of the women 's pfa players ' player of the year award . karen carney is the youngster player to have earned 100 caps for england . notts county 's jess clarke has also made the shortlist . kelly smith is england 's all-time leading scorer with 46 goals to her name .\npolice gave chase to a gang of robbers who had raided a cash and carry . they tried to escape in a car after ramming two police vehicles on the m42 . eventually tried to flee on foot but were arrested by police . the gang have now been jailed for a total of 30 years at birmingham crown court .\nconchita van der waal offered a range of ` kinky ' services for $ 450 an hour . she hinted at her high-powered role in the dutch central bank on her site . she boasted : ` if only my clients , colleagues or boss knew ... i 'm a hooker ' the dutch central bank fired 46-year-old van der waal for ` integrity issues '\ns.e. cupp : clinton making women central to outreach , but she should really focus on men . in 2014 election , overplaying to one gender failed -- particularly with `` war on women ''\nharold wilson feared the popular sit-com would cost him 20 seats in 1964 . he said labour voters might stay at home or in the pub on election night . the bbc agreed to delay broadcasting the repeat until polls closed . the corporation has released archive material about the secret deal .\nrachael bishop , 19 , at first pleaded with the man when he ordered her to hand over all the money in the lynnwood , washington store . but as he ignored her and reached into the till she punched him in the head multiple times . he punched her back and stole $ 280 but she still chased after him . other people saw bishop tailing the robber and followed , helping police arrest the man - who was a wanted felon for forgery . bishop said she loves her bosses and fighting back was ` just a reaction '\nformer secretary of state is expected to announce candidacy sunday afternoon and then hit the campaign trail . iowa sources say democrats are preparing for hillary to barnstorm the state sunday and monday . social media posts will be followed by video and email announcements . new polls suggests the former first lady is slipping behind leading 2016 republican candidates in vital swing states . new epilogue of her book ` hard choices ' reveals how becoming a grandmother inspired her to run for president . republicans launch ` stop hillary ' ad campaign .\nharvey boulter revealed former defence secretary took a friend abroad . he is now giving money to the opposition of tom tugendhat .\nbarcelona , bayern munich , juventus and real madrid make up last four . real madrid looking for their 11th title and to retain their crown . barcelona have won three champions leagues since 2006 . the two spanish giants have never met in the champions league final . their meetings this season have resulted in one win apiece . who will win the champions league ? our reporters have their say . cristiano ronaldo , lionel messi and luiz adriano battle to be top scorer .\nflamur ukshini , 23 , from kosovo , is the doppelgänger of zayn malik . the university student 's likeness has got him 40,000 instagram followers . he tells femail that he is often asked for photos in the street .\nabused muslim couple are ` hardworking , honest and kind ' they moved from pakistan years ago for a better life in australia . stacey eden , 23 , stood up for them as woman launched train rant . mr and mrs batthi 's mosque have made her an extraordinarily kind offer . they will pay for her to visit the gold coast and their mosque for a day . police sources have confirmed an investigation ` definitely ' underway . the identity of the ranter remains unknown .\nbarcelona won 3-1 at psg in their champions league quarter-final first leg . luis suarez scored twice after neymar 's opener for the visitors . gregory van der wiel pulled one back for the french side on 82 minutes . two teams meet again for the second leg on april 21 at the nou camp .\nattachment was originally devised as part of an april fool 's joke . but the la-based firm has now announced it is making the case a reality . called smart boy , it attaches to a phone and works with existing cartridges . price and release details have not yet been announced .\nstuart mccall is trying to lead rangers to championship promotion . he is confident that the club 's removal from the london stock exchange this week wo n't derail their hopes of going up . rangers this week announced six-month losses of # 2.6 million . mccall was surprised at the news rangers will have to hand newcastle # 500,000 if they are promoted to the scottish premiership .\na shop owner from mozambique has died from his injuries in a johannesburg hospital amid xenophobic violence . at least six have been killed by armed gangs wielding machetes , hammers and sticks who are targeting foreigners . the anti-immigration violence in south africa has forced thousands of people to flee their homes and the country . president jacob zuma has called for an end to ` shocking and unacceptable ' attacks on africans and south asians .\nhorse won by rugby star mike tindall at boozy auction wins him # 105,000 . former england player bought monbeg dude for # 12,000 at charity event . tindall and wife zara phillips celebrate at aintree after outsider came third . sport star tweets he is lost for words and emotions following surprise win .\nmalaysian cleric claims marital rape is ` made up by european people ' . comments came after the launch of country 's ` no excuses ' rape campaign . but another islamic scholar has now said men are also banned from refusing their wives - nor are they allowed to leave them ` unsatisfied '\ndzhokhar tsarnaev was found guilty of killing three people and injuring 264 as well as fatally shooting a police officer . his lawyers on monday argued for the jury to spare him the death penalty . called judith russell to the stand , who is mother-in-law of dzhokhar 's older brother tamerlan - who was killed in police firefight after the bombing . told how her daughter was enthralled by tamerlan and became muslim . backs up defense claims that dzhokhar was led by influential sibling . lawyers have said that tamerlan drove his brother into the bombings .\n50 per cent of australians surveyed said they 'd like to work for virgin . it beat qantas , which was in fifth place , as the most desired company . coming second in the survey was national public broadcaster the abc . but four jobs in the top ten list were in government departments .\niraq veteran stan cole filmed swirling wall of wind in loraine , west texas . vortex was gulping up dust and hurling chunks of mud around fields . landspout is technical term of a tornado not attached to a thunderstorm .\njames robarge , 45 , from saxtons river , vermont was sentenced in court on friday morning . he was convicted of second-degree murder in the death of his wife , 42-year-old kelly robarge . robarge has already served two years behind bars which means he could be eligible for parole in about 28 years .\nsharon winters , 39 , from wirral , met chef kevin hawke online in july , 2014 . he stabbed her in a frenzied attack barely two weeks after they met . her brother stephen robinson warns women about online dating dangers .\njessica ennis-hill is juggling motherhood with aiming for a gold medal . she begins her comeback in may and targets glory at rio olympics . ennis-hill admires katarina johnson-thompson but wants to beat her .\nkirkland died saturday from complications stemming from kidney failure . he and cousin carl kirkland founded kirkland 's home decor stores in 1966 . they expanded stores into chain with more than 300 locations in 35 states . he donated money to found the discovery park of america education center and tourist attraction in tennessee and it is still expanding today . memorial service will be held on wednesday at park , which will be closed .\nraheem sterling has revealed he is not ready to sign a new liverpool deal . the reds wideman has struggled to repeat last season 's impressive form . the 20-year-old liverpool star has managed just six goals this season . read : sterling insists he is not a ` money-grabbing 20-year-old ' . sterling : what he said about contract talks ... and what he meant . click here for the latest liverpool news .\nsequel to popular `` bible '' miniseries debuting on nbc . `` mad men '' premieres the first of its final episodes . netflix premieres its first marvel series , `` daredevil ''\nroyal county of berkshire polo club attracted celebrities including jodie kidd , princess tamara czartoryski-borbon and rolling stones ' bill wyman . european court of justice ruled it ca n't launch fashion label with its own logo because it 's too similar to existing beverly hill polo club 's . rival brand admits it 's not even a polo club but exploits elite sport for fashion to make customers feel they have ` membership to a club ' .\nowner had used formula 1 car and hot air balloon to deliver in the past . drone was being operated from back of a truck that followed behind . local tv filmed as bladed device carried several asparagus stalks in can . crashed shortly after recharging mid-way through the flight .\nsocial media largely supports jenner . more people seemed intrigued that he 's a republican .\ndarron gibson was injured in everton 's 2-1 win over queens park rangers . roberto martinez hopes midfielder will be 100 per cent fit for pre-season . the toffees travel to the liberty stadium to take on swansea on saturday .\nschoolboy bradley parkes , 16 , is fighting for his life in a coma in hospital . he was discovered hanging in the woods in coventry with a suicide note . mother , 35 , said he had been bullied and terrorised by a gang for months . she claimed her son was robbed at knifepoint and slashed in the face .\npope calls mass murder of armenians ` first genocide of the 20th century ' . the 1915 killings saw 1.5 m armenians slaughtered by ottoman turks . turkey said pope francis ' comments had caused a ` problem of trust ' turkey denies killings were genocide , saying both sides suffered loss .\neight-year-old boy was hospitalised after being suffocated during ` game ' in it child 's nose and mouth are held shut by another until they pass out . police in manchester are warning that ` sleeper ' prank is potentially fatal . councillor says craze must be stopped before ` we have a terrible tragedy '\ntexas a&m , galveston professor irwin horwitz sent an email to his strategic management class telling the approximately-30-person class would all fail . in the email he said he witnessed cheating , false rumors and bad behavior . he said in his 20 years of teaching he had never failed a class and rarely failed students . the university administration has said that the failing grades will not hold . department head is taking over horowitz 's class and students will be graded solely on academics .\nsir ranulph fiennes is receiving medical attention at marathon des sables . veteran explorer , 71 , has completed most gruelling stage of the desert race . forced to lie down intermittently during last few hours so he could finish . aiming to become the oldest briton to complete the six-day ultra-marathon .\nindia mayhew was on second day of a holiday when the tragedy happened . seven-year-old 's horse bolted at a riding facility in matheran , near mumbai . suffered serious head injuries and was declared dead on arrival at hospital . the youngster had been riding just metres ahead of her father gavin , 43 .\nfilmmaker michael churton said he watched as the wall of ice approached . the 38-year-old from new york then told his group to get down . he said : ` it was about 4,000 feet of snow ... there was nowhere to run ' . hoping for the best , he lay down and got into the fetal position . the force of the oncoming snow caused him to slam into a rock . he dug himself out and then looked for colleagues and other survivors . another survivor said avalanche was ` something out of a hollywood movie ' . at least 17 people who were on mount everest at the time have died .\nlazio closed the gap on leaders juventus with 4-0 thumping of empoli . win sees lazio leapfrog rivals roma into second place 12 points off juve . napoli smashed three past fiorentina to comfortably regain fourth place . palermo earned just their second away win of the season with udinese win .\nlishan wang was charged with murder in the shooting of dr. vajinder toor outside his home in april 2010 . in 2010 wang was originally ruled incompetent , but he was restored to competency after being treated at connecticut valley hospital . a second evaluation was ordered earlier this year after the public defender 's office asked the court to terminate wang 's self-representation . mental health experts said wang displayed ` paranoid thinking ' they said he was ` guarded and suspicious ' when discussing a relationship with court-appointed lawyers . wang , who represented himself at the hearing , is due back in court in may .\nvictoria mckennon , 17 , is student at plano senior high school in texas . is desperate to take part in school 's graduation ceremony in dallas in june . but officials wo n't let her unless she makes up work she has had to miss . this may not happen as she struggles with her life-threatening condition .\naquarium fish are being dumped in western australia rivers by pet owners . goldfish are growing from the regular 100g to 2kg and koi carp to 8kg . the exotic species compete with 10cm long native fish for food and habitat . they also introduce devastating parasites and diseases onto local species .\nbusinessman kim davies bought llanwenarth house in monmouthshire in 2006 and spent # 1million on renovations . he installed a whirlbooth bath with shiny tiles , put up gaudy chandeliers and ripped out antique timber windows . davies has now pleaded guilty to breaking planning laws by altering the historic grade ii-listed home . poet cecil frances alexander wrote all things bright and beautiful while staying at the house in 1848 .\nmaglev hit 375mph -lrb- 603 km/h -rrb- and travelled for 11 seconds at speeds above 373mph -lrb- 600km/h -rrb- on an experimental track in tsuru . latest test run beat last thursday 's top speeds of 366mph -lrb- 590km/h -rrb- . maglev trains hover and are propelled by electrically charged magnets . central japan railway plans to have the train in service in 2027 .\nphilip and victoria sherlock , from warrington , forced to live in ford focus . pay day loan costs went out of control after he had a stomach operation . the pair left their home and lived out of the car , washing at supermarkets . philip was handed a lifeline by local businessman who gave him a new job .\nseveral thousands of protesters gathered in melbourne at 4pm on friday . the rally forced the closure of flinders and elizabeth streets . they are against the closure of remote indigenous communities in wa .\nthird suspect identified as george davon kennedy of murfreesboro , tennessee . young woman was raped on a crowded beach in broad daylight , police say . some bystanders saw what was happening and did n't stop it , authorities say .\nhuge computer glitch prevented deals in stock exchanges across the world . bloomberg down for several hours just after trading began this morning . europe and asia thrown into chaos after server crashed in london office . and reports from inside the company say a spilt can of coke was to blame .\nwilfried zaha posted instagram photo of fifa 16 close-up shots . the crystal palace winger has been in fine form for the eagles . zaha has scored twice since making move to selhurst park permanent . fifa 16 is set to be released by ea sports later this year .\nfate of andrew chan and myuran sukumaran looks even more bleak . the only thing left now is to announce the execution date for the pair . it was another devastating setback for the pair and their families . indonesian president confirmed executions ` only a matter of time ' the pair and the other death row prisoners will be killed by firing squad . they remain in an isolated cell on nusakambangan island .\nangie donohue revealed how her husband tried to have her killed . daryl scott donohue first tried to hire a hit man to ` take care of her ' . donohue was caught convicted of inciting murder and stalking . he then continued to plot her murder from behind bars . an inmate who was approached by donohue went to police with information on how the prisoner tried to pay him to kill his wife . donohue was charged again and hit with an extra seven year sentence . he is reportedly trying to appeal the second conviction .\nvolcano already has erupted twice this week . it has spewed ash to a depth of about 23 1/2 inches in some places , chilean officials say . authorities issue an alert for two towns , and there 's a 12-mile exclusion zone .\nbaby seng , from laos , is the little boy who touched turia pitt 's heart . the inspirational burns survivor witnessed his sight-saving surgery . he reached up and poured a rice-cooker filled with boiling water on his head . turia tells daily mail australia he is ` for sure ' one of her inspirations . she has experienced more than 200 operations since she was burned . she was caught in a bushfire in the kimberley in september 2011 . turia also revealed she is fitter and stronger than she has ever been . she ran a half-marathon with a faster time this year than before the burns . she is hosting a gala night for interplast , the charity who saved seng . the event will be held on thursday evening .\ndougie fife , alasdair dickinson and ross ford return for edinburgh . trio were rested following scotland six nations campaign . edinburgh face london irish in european challenge cup quarter-final .\nthe new terminal 1 will open in 2018 spanning 700,000 square metres . the large area is set to handle 45 million passengers a year . british-iraqi architect , zaha hadid , worked with airport developers adpi . the six-tier concept aims to promote a central open communal space .\nceltic crashed lost to 3-2 to inverness in the scottish cup semi-final . the referee failed to spot a handball from inverness player josh meekings . the decision denied celtic a penalty during a crucial point of the game . van dijk was sent off against inter milan in the last 32 of the champions league in february .\ndetails of the death of dante gabriel rossetti 's muse finally unmasked . biographer kirsty stonell walker located her grave using medical records . they revealed she died penniless , suffering from dementia in an asylum . she was the muse and model for some of rossetti 's best-known works .\ndiego de girolamo 's sheffield united deal expires at the end of the season . portuguese club benfica have asked about the italy under 20 forward . de girolamo is currently on loan at league two club northampton .\nmartin burgess clock b is based on john harrison 's 18th century design . clock was strapped to a pillar at the royal observatory in greenwich . time measured using a radio-controlled clock and the bt speaking clock . certified by guinness book of records , national maritime museum said .\nitalian couple fined # 9,000 for having noisy sex in san martino apartment . neighbours took them to court in 2009 over ` deafening ' sex session noise . pair now ordered to pay damages to nearby residents for noise pollution .\nthree people were killed and seven were seriously injured in the crush . the music vans were trying to get into club tsunami in santiago , chile . police confirmed they have arrested seven people following the incident . the band , doom , are a crust punk band formed in britain in 1987 .\na new survey of newlyweds reveals britain 's changing wedding habits . religious ceremonies have fallen by five per cent in the past five years . 18 per cent of couples are now choosing to honeymoon in the uk .\nformer prime minister says nicola sturgeon 's answers are ` all evasion ' but that her party want ` constitutional crisis ' to force another referendum . warned voters on may 7 will decide scotland 's future for next few years . mr brown urged people to vote labour to end bedroom tax , food bank poverty , zero-hours contracts and the neglect of the nhs .\nremote control device had miniscule levels of radioactive substance . follows protests over plans to restart two nuclear reactors . fears over nuclear policy stem from fukushima disaster after tsunami . prime minister shinzo abe was not in residence at the time .\nvincent kompany to be assessed 24 hours before old trafford clash . manchester city looking to overtake rivals manchester united with a win . city boss manuel pellegrini insists he has no fears over his job status .\namina ali qassim 's family sought shelter in a mosque before fleeing yemen . thousands like them are boarding boats to sail to djibouti . saudi arabia has been pounding yemen in a bid to defeat houthi rebels .\nfa cup is set to be named emirates fa cup as part of sponsorship deal . emirates also sponsor real madrid , ac milan , psg and arsenal . airline also purchased naming rights emirates stadium in 2004 . la liga giants madrid sealed lucrative deal with emirates in 2013 .\nglobe trotting couple do n't always opt for super exclusive design hotels . despite their millions brangelina often stay in affordable accommodation . list includes hilton , park hyatt , intercontinental and hard rock hotels .\nthe 99.7 per cent accurate biosure hiv self test enables people to test themselves when and where they like . an estimated 26,000 people in the uk have hiv but are unaware of it . treatments available mean hiv is now a manageable disease .\npaul murray insists old board are to blame for stock exchange removal . rangers forced to delist from the alternative investment market -lrb- aim -rrb- rangers interim chairman insists plans for future will be unaffected .\nwolves hopes of championship promotion remain after defeat of wigan . benik afobe scored the winner after layching on to bakary sako 's free-kick . the latics had star player james mcclean sent in injury time .\nmichu has made just five appearances since joining napoli on loan deal . the swansea striker has one more year to run on his swansea contract . swans boss garry monk plans to contact michu before end of campaign .\ngunfire erupts after senior u.s. official meets with afghan governor in jalalabad , u.s. embassy says . afghan soldier fires at u.s. troops , afghan police official says .\nengineers from plymouth have developed a human powered vehicle -lrb- hpv -rrb- they hope it will break the women 's arm-powered record in nevada . bike is made of lightweight aluminium and is steered using the rider 's head . piloted and powered by paracyclist liz mcternan , it needs to exceed 21.39 mph -lrb- 34.42 km/h -rrb- over 656ft -lrb- 200-metres -rrb- to beat the record .\njackson was taken into police custody on saturday for assault with a deadly weapon in west lake , la. . 34-year-old is accused of stabbing a man with a knife and then running away . jackson played david hasselhoff 's character 's son hobie buchannon in the hit tv show . jackson left the show in 1999 - he admitted to suffering from a severe drug addiction .\nnew survey reveals there are six actors in hollywood who can ask for $ 20 million per movie . number one on the list is sandra bullock , with angelina jolie the only other female at number five . leonardo dicaprio leads the men at number two , before matt damon , robert downey junior and denzel washington .\nnew study reveals the average person 's friends circle peaks at age of 26 . women are most popular at 25 and men hit their friendship high at 27 . research also showed social networks facebook and twitter are crucial .\nwhat do funeral strippers , a quadruple rainbow and kylie jenner have in common ? they all trended this week !\nedinson cavani pays visit to local animal zoo day after camp nou defeat . psg striker was virtually anonymous in both legs against barcelona . cavani has been linked with a move to manchester united this summer .\nthe great grey owl was pictured swooping on the tiny rodent in ontario , canada , by a wildlife photographer . with soft feathers and heightened hearing , the bird is known as a deadly predator of mice and other small animals . it stalked its prey from snowy treetops before swooping down on it , unheard until the very last minute .\narrest warrant has been issued for alex soumbadze , 26 , a karate instructor from bethesda , maryland . soumbadze confessed to trading and uploading child porn videos that were found at his home in early april . he fled us two days after police interview , possibly returning to his native country of georgia .\nmohammad hafeez was banned from bowling after being reported for a suspect action . the pakistan all-rounder then injured his calf and missed out on world cup . but the off-spinner has recovered from the injury and can bowl again .\nfive-month-old elijah 's parents have made him a bucket list . mum jessica and dad andrew want him to see the world . little elijah suffers the fatal genetic disease type 1 spinal muscular atrophy . he was born strong but he is now ` very floppy ' and getting weaker . the list includes a trip to queensland , a ferry ride and watching the sunset . ` the hardest thing is seeing other happy families ' .\nnorway will be the first country in the world to stop radio broadcasts on fm . it says it will save # 17 million a year by the switch to a purely digital service . the decision was driven by rise in popularity of digital and internet radio . other countries are expected to follow as numbers of fm listener drop .\ncharlie adam scored goal of his career in stoke city 's defeat to chelsea . adam beat thibaut courtois from all of 65-yards at stamford bridge . courtois scrambled back but was unable to deny the scottish international . adam though was left with mixed feelings as chelsea earned three points .\naustralian study found women spend 40 % of online time on facebook . college students aged 17 to 25 said they read magazines ` infrequently ' preferred facebook to compare looks and check appearances over time .\njonathan crombie died of a brain hemorrhage on wednesday in new york . he played gilbert blythe in the anne of green gables films . the toronto actor went on to star in the drowsy chaperone on broadway .\naustralian marc leishman , who got so close to victory in 2013 , had to withdraw to be with his sick wife . masters chairman billy payne talked a lot about growing the game but he ruled out any idea of starting a women 's masters . arnold palmer , clad in his green jacket , was snapped under the oak tree in front of the clubhouse alongside niall horan . jack nicklaus showed he 's still got it at the age of 75 with a hole-in-one in the par-3 , but he could n't match camilo villegas who recorded two .\nmatilda kahl , an art director at saatchi & saatchi , owns 15 of the same white shirt and several pairs of plain black trousers . she has just had to invest in 15 new shirts from zara because the others are now too worn to wear but has no other plans to change her ` uniform ' .\nemmanuel adebayor has danced in front of a famous paris landmark . he posted a video of the dance on his official instagram account . the strange behaviour comes just days after he insisted he was prepared to fight for his place in the tottenham team . adebayor has one year left to run on his current deal at white hart lane .\nopposition to garden spanning the thames , favoured by boris johnson , gathers speed as use of funds criticised . george osborne and the mayor have promised # 60 million in funds but opponents say the public wo n't have access . critics want a parliamentary inquiry into the bridge ahead of a judicial review in may which could end the plans .\nconvicted killer brett matthew paul thomas , now 56 , has been denied parole and can not reapply for seven years . brett matthew paul thomas and his friend mark titch were convicted in 1977 after committing four murders during robbery attempts . lynette duncan , one of the surviving daughters of a victim said that the day her mother died she learned that ` the boogeyman was real '\nporto hold a 3-1 first leg advantage over german giants bayern munich . manager julen lopetegui insists porto must be on top form to progress . porto players appeared in high spirits during training at the allianz arena .\nhomes with waitrose nearby cost 12 % more than those not near a branch . study found houses cost # 38,831 more than homes without the shop . but having budget store like lidl nearby means house could be worth less .\nofficers were on the hard shoulder of the m5 when they saw the caravan . were forced to dive out of the way when they saw its back window open . jumped to safety with seconds to spare before being decapitated .\nyoung adult novels regularly feature teen heroines saving the world . books like the hunger games and divergent show unrealistic portrayals . adolescents have used hashtag to voice frustrations about real teenage life .\neight year investigation claims thousands had organs removed in china . banned religious group falun gong is key target , documentary claims . just 37 registered organ donors in china but country has the world 's second highest rate of transplants . one surgeon is said to have removed corneas from 2,000 living people . chinese government denies allegations claiming donors are volunteers .\nchancellor said show was a ` fantastic advert for britain and british talent ' he confessed to having a crush on its female lead character demelza . vowed to maintain tax relief on big tv productions which have encouraged the makers of poldark and other series to choose the uk .\ncheck it was formed by group of ` bullied ninth graders ' in the washington dc neighborhood of trinidad in 2005 . it is the only recorded gang of gay and transgender youths in america , with more than 200 members at present . new documentary , also called check it , tells how members are now trying to break cycle of poverty and violence . they are working on their own clothing label , putting on fashion shows and even doing stints as runway models . one of the film 's co-directors said : ` being gay and black ... it 's like a nightmare waiting to happen '\nthe boa constrictor is on the loose on queensland 's gold coast . police released it into the wild because they thought it was a python . snake catcher tony harrison said it was probably imported illegally . fears that if the snake is pregnant up to 30 live young could also be loose .\nraja , the king cobra , has delivered almost 500 milligrams of deadly toxin . the snake , which is at gosford 's australian reptile park , weighs 8kg . ` he 's about as thick as my legs , ' veteran handler billy collett said . its venom will be distributed between research institutes across australia .\na new facebook graph reveals the favorite baseball teams in the country by sorting through people 's likes and breaking down winners by county . the new york yankees and boston red sox , who come in first and second respectively in terms of the number of fans . the new york mets and oakland athletics did not win one single county .\ntim sherwood has a close relationship with qpr manager chris ramsey . sherwood could ask ramsey to join him at villa if he departs qpr . sherwood also revealed his wish for darren bent to be at villa park .\nlarge crowds , close quarters and heavily-trafficked public restrooms allow for illnesses to spread . attendees are at risk of catching anything from norovirus to flu . the second installment of california-based music festival coachella takes place this weekend .\njudy has undergone a makeover - but could be outshone by kim 's mother . stylish leonore sears , 53 , has long been admired on the tennis circuit . the south african bears a strong resemblance to soon-to-be wed daughter . dunblane now waiting for what is being dubbed scotland 's royal wedding .\nthe argentina legend scored the winner in the friendly match . when applauding fans diego maradona kicks steward and cameraman . was playing in the ` match for peace ' supporting colombian peace process .\nsiem de jong signed for newcastle last summer from dutch giants ajax . de jong has been plagued by injuries , playing just three senior games . the # 6m summer signing is ready to return to the newcastle first-team . newcastle are on a five-match losing run in the premier league .\njack wilshere has been linked with a move to manchester city this summer . wilshere has not played a first-team game for arsenal since november 22 . a host of arsenal players have defected to man city in the past . samir nasri , gael clichy and bacary sagna have all moved to the etihad . read : arsenal would be foolish to dismiss # 30m or more for wilshere .\njustin bieber is a good friend of floyd mayweather . bieber revealed in a video that he will walk mayweather into his mega-fight . mayweather faces manny pacquiao in the $ 300million bout in las vegas . bieber has accompanied ` money ' mayweather into the ring several times . click here for all the latest floyd mayweather vs manny pacquiao news .\ndoctors and nurses have criticised ashya 's parents in bbc documentary . consultant warns case - which saw parents ignore medical advice to take ashya to prague for proton beam therapy - could set a worrying precedent . nhs agreed to pay for ashya 's treatment , and family now say he is cured .\ngillian nelson had complications with birth before being taken to theatre . widower recalls ` blur ' of staff as she ` bled heavily ' at hospital in bromley . had blood transfusion and hysterectomy but doctors ` ran out of options ' . southwark coroner 's court hears allegations of ` gaps in her monitoring '\na trip to the town of gorkha shows the human toll of the earthquake . international teams are assisting nepalese medical staff , officials .\nlz : indiana law pushing back lgbt rights , and other states ' anti-lgbt moves , bow to far right wing that gop candidates need for 2016 . cruz , huckabee , jindal , carson , walker are reviving culture wars , he says . equality for lgbt has not yet `` won '' in america .\nfish and chips has believed to be partly portuguese and partly belgian . the tea bag was accidentally invented by a new york tea merchant . saint george himself is thought to have been born in syria .\nreal madrid wanted to sign french winger franck ribery in 2009 . ribery had fallen out with then-bayern munich coach louis van gaal . he was convinced to stay as club told him he could be as important to them as lionel messi was to barcelona .\ncui hongfang , 73 , died in front of her family after she was knocked over . she fell down a set of steep stairs and struck her head on the stone wall . police interviewed witnesses and ruled the woman 's death an accident . victim 's family sued the tourist and attempted to stop her from leaving .\nthe home also boasts a 1,400 sq ft roof deck and a 360 degree view of white rock lake and the city 's downtown . architect matt mooney wanted to stay true to the materials and thus left the ceilings exposed to show the containers . containers were also used to build a stunning two-story glass-paneled tower that mirrors the shape of the pool . 200 people watched as 18-wheelers transported the materials that would become this stunning three-bedroom home .\nunited states has deployed the aircraft carrier uss theodore roosevelt and 11 other ships off the coast of yemen . nine combat vessels are monitoring iranian vessels suspected of carrying weapons to houthi rebels in the country . pentagon spokesman said they are monitoring the nine cargo ships but refused to say whether they would engage . meanwhile intense fighting between iranian-backed rebels and saudi-led coalition rages on in the embattled nation .\nsam cam accompanied the pm to the launch of his party 's manifesto . samantha looked at ease in the # 185 emerald green wrap hampton dress . the designer behind the frock is british fashion company the fold . amanda holden and davina mccall are also fans of the work-wear brand .\nrony john drowned in the river great ouse in hartford , cambs , in july . inquest heard he was eligible for swim lessons but did not attend several . coroner questioned why swimming is not compulsory at secondary school . belinda cheney said she would write to government chiefs to find out why .\nmark clattenburg will referee barcelona vs psg in the champions league . he will be assisted by five other englishmen at the parc des princes . martin atkinson has not been chosen by uefa for this round of fixtures . referees from serbia , czech republic and spain also selected for games . graham poll : clattenburg was right to confer for vincent kompany foul .\nboko haram accused of war crimes by u.n. human rights chief . militants in nigeria accused of murdering ` wives ' during retreat . reports also say they have used children as ` expendable cannon fodder ' .\nstars ray liotta , robert de niro , lorraine bracco and paul sorvino were all in attendance for saturday 's special 25th anniversary screening . not in attendance were director martin scorsese , who was filming in taiwan , and joe pesci who had won an oscar for his role in the 1990 movie . ` joe pesci could n't be here , but he sent this email : ` f *** , f *** , f *** , f *** ity f *** , f *** ' read de niro . scorsese sent a video message and recalled how the movie upset the owner of his then favorite nyc italian restaurant . throughout the two-and-a-half-hour screening the audience cheered each major character 's first appearance . jon stewart then held a q&a with the actors and liotta recalled henry hill thanking him for ` not making me look like a s *** bag '\naction heroes would almost certainly die if they were worked in real life . medical experts have assessed several action heroes and their wounds . james bond risked death several times during skyfall and even cancer . bond 's diy bullet removal left him at great risk of infection of paralysis .\njohn truong of renton , washington says sister dropped off 2-year-old boy ronnie tran at his house tuesday . sister alyssa chang told him the boy was her boyfriend 's son and they wanted to have a date night . while scanning facebook the next morning , truong read an amber alert issued for the boy and then called police . truong 's sister was arrested for kidnapping tran and his mother , with the help of the toddler 's grandmother , 65-year-old vien nguyen . nguyen later turned herself into police for questioning . the motive for the abduction has not yet been released .\ntwo people are taken into custody , but the protests -- on the whole -- are peaceful . baltimore police commissioner sits down with the gray family .\nkeith boudreau , 42 , of quincy , massachusetts was pronounced dead on friday following the march 23 attack at home ice sports bar . paul fahey , 43 , allegedly knocked boudreau to the ground and stomped on his head before dragging his unconscious body through a back door . prosecutors are seeking to arraign fahey on a murder charge .\nbastian schweinsteiger has been suffering with a virus . franck ribery is n't yet fully fit after five-week absence with ankle injury . arjen robben , medhi benatia and david alaba are all sidelined .\nkhalid rashad , 61 , charged by police investigating death of syrian iman . preacher abdul hadi arwani found shot dead in his car in wembley in april . leslie cooper , 36 , has already appeared in court accused of murder .\nbarcelona star lionel messi says he need to be reminded of his hat-tricks . the argentine has netted 32 hat-tricks since making his debut in 2004 . messi 's favourite came in a 3-3 draw against rivals real madrid in 2007 . the 27 year old has had each of his hat-trick balls signed by team-mates .\nrita , 24 , models in colourful new rimmel beauty campaign . star has also designed her own make-up collection for brand . partied in paris last night with boyfriend ricky hilfiger .\nchristien sechrist , from houston , texas , made the decision to get the unique facial art in july last year . the 20-year-old , who is studying to be an electrician , insists that the tattoo has not prevented him from holding down a job .\nsharista giles of sweetwater , tennessee woke up on wednesday after being in a coma for five months . she was five months pregnant when she went into the coma , and a month later doctors were forced to deliver her son , who the family calls baby l . when giles opened her eyes her father showed her a photo of her son . baby l weighed just two pounds when he was born and though he is still in the neonatal intensive care unit he now weighs over six pounds . giles ' prognosis is still not known , but she has shocked doctors who believed she would not make it out of her coma or even live this long .\nbristol city held second-place preston to 1-1 draw at deepdale on saturday . robins could be first football league club to win promotion on tuesday . steve cotterill 's side face bradford at valley parade and win will be enough . city boss cotterill was happy to avoid defeat against preston after admitting he had thought about the worst case scenario .\nthe pilot scheme will initially recruit 10 people with autism . they will be based in the tech giant 's redmond offices in washington . microsoft is running the scheme with help from specialists specialisterne . the plans were announced by mary ellen smith , corporate vice president of worldwide operations , who herself has a 19-year-old autistic son .\nreading keeper adam federici made a string of saves before that howler . man of the match michael hector -lrb- 8.5 -rrb- was superb in the royals defence . arsenal forward alexis sanchez -lrb- 8 -rrb- popped up with the two crucial goals .\na jury in placerville , california , took less than two hours on wednesday to return a guilty verdict against colleen ann harris . robert harris , 72 , was found dead from a shotgun blast at the couple 's home in 2013 . colleen harris was charged in the 1985 shotgun killing of then-husband , james batten . she was acquitted on self-defense .\nthe photo shows a beautiful young tiger cub in the hands of a rebel fighter , known as ahmed shaheed . shaheed is believed to be a former bond university student from sydney . the 27-year-old considered buying an little owl and a leopard from a zoo near aleppo , syria .\nan estimated 1,000 allied soldiers died on the first day of the winston churchill 's infamous operation . historian stephen chambers has released rare photographs to mark the centetary of first world war campaign .\nrachel lehnardt , 35 , ` allowed her 16-year-old daughter and her friends drink alcohol and smoke marijuana in her georgia home ' they ` all played naked twister and lehnardt had sex with an 18-year-old man in the bathroom before playing with sex toys in front of the teens ' . she said she went to bed alone but awoke to her daughter 's 16-year-old boyfriend having sex with her ; there are no charges against him . after the incident , she lost custody of her children and told her aa sponsor , who contacted authorities .\nmchenry , 28 , berated single mother gina michelle for towing her car . she insulted her looks and social status in footage that went viral . espn suspended the sports reporter for a week amid investigation . but despite thousands of calls for her to be fired , she returned this week . covered nhl game between new york islanders and washington capitals .\njack mascitelli , 18 , stripped naked and ran through byron bay , in nsw . the student , from victoria , was handed a $ 500 fine after his 8.45 am antics . prank backfired when he ran ` screaming and yelling ' past police officers . magistrate told mr mascitelli his actions were 'em barrassing ' .\nsimon myers had asked mark lawson if he could have some of his chips . lawson agreed , but reacted angrily when mr myers took onion ring instead . incident , that started as a joke , took place at the work christmas party . lawson was given a six-month prison sentence suspended for a year .\npaula radcliffe finished in 2:36.55 but said the time did n't matter . the world record holder began at the front of the mass start . she had barely run since february due to an achilles injury . radcliffe was the 199th woman to finish the race on sunday . she was first to receive the race 's lifetime achievement award . earlier in the day ethiopian tigist tufa won the women 's elite race . eliud kipchoge won the men 's race in a kenyan top three .\nthe russian vessel caught fire in port and was towed out to sea to sink . three-mile oil slick also threatens tourist spots on tenerife and la gomera . clear-up operations ongoing on beaches near tourist town of maspalomas .\nuno the kitten was filmed this month meeting louie , an adult dalmatian . clip shows inquisitive youngster making big friend in spokane , washington . uno is tentative at first , but ends up nuzzling affectionately with louie .\nsix young minnesotans conspired to sneak into syria and join isis `` by any means necessary , '' prosecutors say . the men , ages 19 to 21 , were arrested sunday . they plotted for 10 months , the u.s. attorney for the district of minnesota says .\n`` there is still smoke on and off , '' says resident with distant view . the volcano erupts for third time since april 22 . about 1,500 people are evacuated , an official says , according to cnn chile .\nthe pair invite random members of the public to make music with them . they find an impressive singer and record a song with his vocals . brisbane dj-duo mashed n kutcher uploaded the video last week . it has had 1.25 million views and been covered by media around the globe . the pair wanted to show that musical talent can be found anywhere . the jogger in the clip , ross burbury , is a singer songwriter from brisbane who works in direct sales for media company news corporation .\naaron cresswell has starred for west ham in debut premier league term . chelsea and manchester city are reportedly interested in the defender . sam allardyce says the former ipswich star would be better off staying .\nexperts first identified the rare condition in 2000 , noting seven symptoms . sufferers first appear anxious and agitated and are consumed by a need to be clean before donning a toga-like gown often made from bed linen . they are then overcome by the need to scream verses from the bible . a procession to one of the city 's holy places is followed by them delivering a ` sermon ' in public .\ntwo mothers held the children 's heads above water amid the rising tides . aged 18 months , three , six and eight , they were trapped on a sandbank . but onlookers ignored their cries for help and instead filmed the drama . it comes days after boat race spectators were rescued from the thames .\ncaptain birdseye lookalike richard williams spent # 50,000 on his u-boat . he lived the high life splashing cash on jets and fast cars while on benefits . lied that he was selling specially-adapted beds to people with disabilities . the 54-year-old was today jailed for a total of four years and eight months .\njack white taking a hiatus from touring after brief acoustic jaunt . he 'll play five states he has yet to get to , charge just $ 3 . places and times of shows are currently a mystery .\nyoga guru bikram choudhury denies sexual assault allegations . his accusers , he says , were manipulated to lie about him . a former student says he uses his yoga accomplishments to hide the harm he 's caused .\ndean obeidallah : apple 's new emoji lineup is diverse in race , ethnicity and sexual orientation . it 's just like america , but what took apple so long ? obeidallah asks . he says change may rankle -lrb- or win over ? -rrb- conservatives who discriminate against people because of their sexual orientation .\nnorfolk southern train was traveling near trenton , south carolina , friday . it was transporting anhydrous ammonia - highly toxic , dangerous chemical . it derailed shortly after 8.30 pm after apparently hitting a tree on the tracks . up to 15 cars overturned and leaked ; haz mat crew was dispatched to site . incident sparked evacuation of 30 people with 1.5-mile radius of the scene . authorities confirmed friday night that no one was injured following crash .\nmccoy laid into his former coach , saying he does n't respect star talent . after a day with his new franchise , he said they have more of an nfl feel than the eagles , who drafted him in the second round of the 2009 draft . ' i do n't think he likes or respects the stars . i 'm being honest , ' said the 26-year-old running back .\nit only works for english-language readers using an android phone . twitter 's ` highlights ' are delivered using an opt-in push notification . works based on accounts and topics popular among people you follow . it also looks at tweets from people you 're closely tied to or in your area .\nandrew ` drew ' butler , 25 , allegedly shot mother-of-three kendra gonzalez . he was in passenger seat while pair were driving in san jose , california . dragged her body out of the car and left it lying on the street . butler told the children to get out , drove off and abandoned them .\nsix in ten full-time working brits are too ` busy ' to clean their homes . one in eight surveyed have n't vacuumed at all this year so far . unfinished diy , mould and anti-social neighbours are also embarrassing . people want to live at homes of christian grey , batman , carrie bradshaw .\nmiami police say brandt hanged himself at his home last weekend . the doctor 's publicist said brandt suffered from depression . brandt appeared recently to have been the butt of a joke on tina fey 's netflix show the unbreakable kimmy schmitt . in the series martin short plays a dermatologist called dr grant who has a shock of white hair and flawless skin -- almost a mirror image of dr brandt . brandt was friends with madonna and other celebs such as stephanie seymour , kelly ripa and joy behar .\na rampaging elephant attacked a man after invading his village in india . ramiul sheikh , 50 , survived two charges by the five-ton animal unharmed . locals were trying to coax elephants into forest when one turned violent .\nmorrisons was awarded the title of serving the best breakfast in britain . supermarket chain beat hotels , pubs and restaurants to win the title . it achieved the accolade in the menu innovation and development awards . judges sent mystery shoppers to try breakfasts nationwide to find winner .\nrussian supermodel , 29 , joins jarrod scott for linda farrow eyewear shoot . pair are filmed lustfully eyeing each other up around a swimming pool . newly-single irina looks flawless emerging from the water . styles include frosted pastels and liquid gold frames .\nhouthis call for halt to fighting and resumption of peace talks . the cessation of airstrikes lasted less than 24 hours . next phase , called `` operation renewal of hope , '' will focus on political process .\nshaquille omar hallisey attacked matthew leeke in queen street , cardiff . the 20-year-old 's victim was walking home when the assault took place . he pleaded guilty to wounding with intent to cause grievous bodily harm . judge describes attack in june 2014 as ` savage demonstration of violence ' .\nhotels around the world are now hiring top designs to craft their uniforms . narcisco rodriguez designed dresses for park hyatt new york hotel staff . at toronto 's shangri la hotel , sunny fong was inspired by the ming era . london-based nicholas oakwell created a vintage look for the rosewood .\nnine in 10 times , the first contact a patient has with the nhs is via a gp . crisis in a&e has led some to blame lack of gp appointments . weekend opening hours have been suggested as one solution . vikram pathania is a lecturer in economics at the university of sussex .\nthe scale of influence unite holds is chilling given what it seeks to impose . it remains addicted to the failed socialist policies of britain 's past . mr mcclusky denies holding too much power over labour 's ed miliband .\npolice have said they believe william tyrrell may be alive after six months . they revealed this information has changed the focus of the investigation . police have issued a strong warning for anyone found connected . the parents of the toddler released a heartfelt plea for his safe return . his mother spoke of the moment she realised he was missing . she said she searched the house in circles telling him to yell out . his mother said she knew he was missing when she could n't hear him . the toddler vanished from his home in kendall , nsw in september 2014 .\nthe dallas native will play alongside justin rose in the final pairing . has set a scoring record for the first 54 holes of 16 under par . finished runner-up last year and is now determined to win . is first player since greg norman in 1996 to have lead after each round .\nmalik ghat is a wholesale flower market in india that attracts more than 2,000 sellers each day . photographer ken hermann spent 10 days at the market photographing his project `` flower man ''\nkarim benzema missed real madrid 's win against malaga with knee injury . carlo ancelotti had hoped the french striker would n't be out for long . welsh forward gareth bale could also miss champions league clash .\nheads and loose limbs are piled up on the shelves in the doll hospital , known as ospedale delle bambole in rome . shop was built by the squatriti family sixty years ago , restoring items such as ceramic , tortoiseshell and mosaics . descendants federico squatriti , 52 , and his 82-year-old mother gelsomina have carried on the family tradition .\nceltic travelled to the united states , austria and germany last pre-season . the scottish club were then beaten in the champions league by legia .\nmauricio pochettino returns to st mary 's for first time since his departure . the argentine left southampton in order to take up reins at tottenham . pochettino admits he could be jeered on return to former stomping ground .\nruling by the new york city human rights commission is a blow for stonehenge village on manhattan 's upper west side . 60percent of the tenants pay reduced rent-stabilized rates . the rest pay market rates of $ 3,500 a month for a one bedroom apartment . most rent-stabilized tenants are over age 65 . this is the latest battle between property developers who get taxes breaks for building rent-stabilized units and the city .\naston villa drew 3-3 with qpr in their premier league clash on monday . belgium striker christian benteke scored a hat-trick for the villans . robert green was embarrassed by a nutmeg from a cheeky ball boy .\nclegg tells pupils he was better at languages and art as a youngster . lib dem manifesto to promise to eradicate the deficit ` fairly ' by 2019 . clegg 's wife miriam says her priority is making sure their sons are ` ok ' .\nbrendan rodgers is under pressure following fa cup semi-final defeat . but the liverpool boss says he will bounce back despite the criticism . liverpool owners fenway sports group maintain rodgers wo n't be sacked . jordan henderson hopes raheem sterling commits his future to the reds .\ncctv images reveal how the six-strong gang worked through the night . professional gang seen using wheelie bins to carry their ill-gotten gains . footage revealed as scotland yard admits it did not respond to the alarm . police force could now be forced to pay out millions in compensation .\na logic question about `` cheryl 's birthday '' goes viral . the clues give just enough information to eliminate most possibilities . it spread after a singapore television host posted it to facebook .\nwoman performed stunt at a birthday party in sichuan province . she initially holds two people with her legs and twirls them . she then lifts four people who cling onto the wooden plank .\nbetty johnson , 86 , of missouri has been a chiefs ticket holder since 1986 . she even lost her north kansas city home to pay for chiefs season tickets . after breaking her hip in february , her health had been deteriorating . granddaughter autumn barricks tweeted to team in bid to answer wish . kansas city chiefs sent hall of famer nick lowery on thursday and the great-great grandmother passed away shortly after , family said .\nin august , junior doctors begin training as either a gp or a hospital doctor . this year 29 % of gp training places are unfilled , compared with 8 % in 2013 . doctors warn patients may struggle to see their gp as there is a shortage . they say junior doctors worry they will be overworked as a gp .\nbrynn duncan has mast cell disease , which causes her to be allergic to almost everything . duncan has a feeding tube and is on constant doses of antihistamine .\ndisney has just unveiled their latest luxury resort : bora bora bungalows . the overwater villas are located on the shore of the seven seas lagoon . inspired by the south pacific , they 're just minutes from the magic kingdom .\ntottenham will face the mls all-stars as part of their pre-season schedule . annual fixture will be held at colorado rapids ' dick 's sporting goods park . previous teams to feature include manchester united and chelsea .\nscott dann was a fraction offside when he set up glenn murray . assistant john brooks was spot on with two close calls in same move . crystal palace beat manchester city 2-1 in premier league on monday .\nthe poet has a reputation as a ` young apollo ' who died tragically young . new letters reveal he had a string of brief relationships with women . lover cathleen nesbitt suggested that he could ` settle in the wild ' brooke was mourned by the nation and celebrated by churchill when he died 100 years ago today .\naround 300 fishermen emerged from trawlers , villages and even the jungle . had been stranded on benjina island by unscrupulous fishing company . from poor countries like myanmar and cambodia , some were promised jobs in thailand but were instead taken against their will to indonesia . many were made to work 20 to 22-hour days with no time off and zero pay . claims of abuse by beating , whipping with stingray tails and electric shock . indonesian fisheries ministry steps in after issuing a fishing moratorium .\nsouth korean adventure seekers have founded a surfing community near the country 's border with the north . the demilitarized zone , separating the north and south , features the world 's largest border military presence . the community consists of seoul 's growing jet-setting adventure class , hipsters , gangsters and ex-pats .\nthree attackers charged over vicious beating that was caught on camera . tibor racsits , 42 , and daughter kiara , 13 , were attacked on sunday night . he 'd gone to pick her up from the movies in newcastle , north of sydney . footage shows group of boys kicking mr racsits in the stomach and head . kiara ran to help her father but was slammed face-first into the concrete .\nv stiviano showed off new braces while out to lunch thursday at il pastaio in beverly hills . she was joined by an older male companion who gave her a gift when she arrived . this just days before a judge will decide if she must hand over $ 2.8 million in gifts she received from her ex , donald sterling .\nuss theodore roosevelt and uss normandy left persian gulf on sunday and are steaming through the arabian sea and heading towards yemen . they will join seven other us vessels that are prepared to block iranian ships potentially carrying weapons for houthi rebels fighting in yemen .\ndrunk teenage boy climbed into lion enclosure at zoo in west india . rahul kumar , 17 , ran towards animals shouting ` today i kill a lion ! ' fortunately he fell into a moat before reaching lions and was rescued .\ngraziano pelle has n't scored in the premier league since december 20 . italy striker did find the net against england in recent international friendly . the 29-year-old has thanked saints fans for supporting him in lean spell .\nganjendra singh , 41 , took his own life during a demonstration in delhi . farmer from rajasthan state could no longer afford to feed three children . unseasonable heavy rain and hailstorms last month ruined his wheat crop . more than 30 indian farmers have killed themselves in north and west india .\ncandlestick park , which has been home to the san francisco giants and san francisco 49ers , has been torn down . it opened in 1960 , and the last game was played there in december 2013 by the 49ers . the area is now set to become houses , a hotel and a shopping center . it is where the beatles played their last concert in 1966 . sir paul mccartney played the last concert at candlestick park on august 14 , 2014 .\njulio acevedo , 46 , was driving bmw that hit nachman and raizel glauber . williamsburg couple died instantly , baby delivered but died the next day . driver given 25 years to life because of previous felony convictions . acevedo has rap sheet including dwi , gun offences and manslaughter .\nsenate panel is set to vote tomorrow on an intensely debated bill that would give congress a say on a nuclear pact with iran . house majority leader kevin mccarthy said today he will bring the bill to the floor if the full senate approves it . administration officials as high up as the president last week made calls to more than 130 federal lawmakers during their spring break . the executive branch wants them to support the pact , and , at the very least , not to meddle in foreign affairs . white house today said administration officials would hold classified briefings with members of congress . at the white house , obama today met with jewish leaders and donors in a separate attempt to woo their support for the accord .\nsarah foot began swimming outside after a dip on hampstead heath . now goes for regular dips in the bracing 8c waters of the north sea . says nothing beats the ` silky smooth ' feeling of swimming in cold water .\na short film highlights the nasty things people say about the homeless . people who sleep rough in toronto read tweets people made about them . they include : ' i hate when it 's cold because the homeless get on the bus '\nthe singer had been off the scene for a while . she says she was bedridden for months . lavigne was sometimes too weak to shower .\njayla currie , 23 , is part of the wee ones nursery program at the indiana women 's prison . the program allows incarcerated mothers to share rooms with their babies while they serve their sentences .\naboriginal teenager arrested says police assaulted him while handcuffed . ` kicked me across the face as my hands were cuffed , ' eathan cruse says . 19-year-old was one of five arrested in melbourne anti-terror operation . his father says he was also the victim of police brutality during raid . sevdet besim , 18 , charged with conspiracy to commit an act of terrorism .\nhoda muthana , 20 , left hoover , alabama , to join extremists in raqqa , syria . business student tricked her family to escape them and fly to middle east . told how she was helped to plan escape by jihadists she met online . cashed in money meant for college courses to pay for her flight .\nmuseum : anne frank died earlier than previously believed . researchers re-examined archives and testimonies of survivors . anne and older sister margot frank are believed to have died in february 1945 .\nhailstorm equipment used by department 4,300 times since 2007 , court told . device can identify phones from 360-degree antenna from city block away . detective says department under orders from us government to withhold evidence from courts where device has been used . details resemble original plot of hbo 's series the wire , based in same city .\nletourneau and vili fualaau spoke to barbara walters in a 20/20 interview that will air friday . couple 's 17-year-old daughter , audrey , was born while her mother was out on probation . her 16-year-old sister , georgia , was born behind bars . letourneau and fualaau started a sexual relationship when she was his sixth-grade teacher and she fell pregnant with his child when he was 13 . she served a few months in jail and fell pregnant with his second child within weeks ; she was then sent back to prison for seven years . but a year after her release in 2004 , they married and are still together . letourneau said there was never a big conversation with their daughters about the scandal because they grew up with it . vili fualaau lamented that he did n't have the right support as a young father of two girls .\nbrenda finn was diagnosed with alopecia at 14 and lost all her hair . she is now calling for medical tattooing to be made available on the nhs . claims the # 300 procedure would have saved her years of anxiety , depression and low self-esteem after condition left a target for bullies . argues it would save the nhs money with alopecia patients who are reliant on expensive therapy or antidepressants .\nuefa have ordered the final 18 seconds of the qualifier to be replayed . england will resume the match against norway from the penalty spot . the elite round qualifier resumes in belfast on thursday at 9:45 pm . referee marija kurtes incorrectly awarded an indirect free-kick to norway for encroachment after disallowing england 's penalty on saturday . england were 2-1 down to norway at the time in the 96th minute . german kurtes , 28 , has been sent home following her error . three lions earn 3-1 victory against switzerland meaning a 2-2 will be enough for european championship qualification . norway beat northern ireland 8-1 to keep things tight in group 4 . it is the first time ever that a decision like this has been taken by uefa . watch video below of the controversial penalty incident . read : graham poll 's expert verdict on uefa 's bizarre decision .\nceline bisette , from canada , became an escort when she was in college . she wants to feel proud of her job , but complains that she is constantly battling the negative opinions of others . the writer , who uses a pseudonym , has her master 's degree but explains that sex work pays more than jobs in her field of study .\ntwo-year-old matheryn naovaratpong , from thailand , died in january . had battled a very rare brain cancer that affects very young children . her brain and body have been frozen by arizona-based firm alcor . family hopes body can be used for research - or she can one day live again .\ncharles dunstone backed labour in 2005 election , but now supports tories . said conservatives deserved credit for remarkable economic turnaround . admired tories for sticking with plan even when opinion was against them . said labour party under miliband wrongly saw business as ` the problem '\ndarren humphries threw mini eggs after drunkenly losing his temper . defence said he was ` driven by the emotion of wanting to see his children ' he also threw a wheelie bin at estranged wife 's car in a separate incident . humphries hurled expletives at magistrates when told of his sentence .\nmanager eddie howe does not like having away fans behind the goal . the club will install undersoil heating in time for next season . bournemouth all but secured promotion with a 3-0 win over bolton .\nlen barnes , 75 , lost three stone while battling clostridium difficile . when antibiotics failed to work specialists suggested a faecal transplant . mr barnes ' daughter debbie stepped in to help , and donated her stools .\ngang have been jailed for a total of 31 years for sexually abusing children . offences happened in cars , woods or at the defendants ' homes in banbury . lured victims to parties organised on social media and then abused them . girls aged between 13 and 16 were exploited by the gang from 2009 to 2014 .\ntimberlake and biel welcome son silas randall timberlake . the couple announced the pregnancy in january .\nthe former prime minister claimed he has ` decades ' of work left in him . joked he would ` turn to drink ' if he ever stepped down from global roles . wants to recruit former government heads to advise current leaders . he was ` mentored ' by us president bill clinton when he started in 1997 .\ngeraldine jones charged with murder , kidnapping , criminal confinement . gary , indiana , woman , 36 , charged in death of samantha fleming , 23 . fleming and daughter serenity were last seen in anderson on april 5 . police say jones fooled fleming by posing as child-welfare worker .\nresearchers claimed antibiotics could be contributing to ` obesity epidemic ' their large-scale study was published in the respected pediatrics journal . it found one third of 10 to 11-year-olds in england are overweight or obese . children who took antibiotics as babies were more likely to be overweight .\nformer west brom forward jeff astle died ` from an industrial disease ' his death at the age of 59 in 2002 was linked to repetitive head injuries . greg dyke has said fa 's reaction to his death was ` woefully inadequate ' . west brom celebrated jeff astle 's career during defeat by leicester .\npolice are still attempting to locate suspect jalin smith-walker , 19 . video uploaded this week shows the teen getting into a fight with a fellow 19-year-old in a muskegon , michigan street . the fight takes a turn when smith-walker gets into her car and then runs over her victim before speeding off down the street . this is apparently smith-walker 's second arrest in recent months for a crime involving her car . in december , smith-walker was arrested for allegedly dragging a mall security officer with her car after he tried to stop her for shoplifting .\na series of pictures show body-painted models camouflaged in woodland . the pieces of art are by jörg düsterwald , 49 , from hameln , germany . he takes hours to paint the models into every nature scene .\nrekha nagvanshi was angered that her in-laws interfered in her marriage . they had stopped her husband from doing chores around the marital home . she then began urinating in the teapot from which she served them tea . but she was caught when her mother-in-law found her squatting over pot .\nprasanna arulchelvam leapt into van as it sped away but was pushed out . his head hit the ground with a ` nasty crunch ' and he died 11 days later . a gang tried to steal cigarettes from the victim 's van before he gave chase . all three have now been jailed , including the man who pushed mr prasanna .\njosh warrington earns points victory against dennis tubieron . 24-year-old admitted to being bored during the one-sided fight . vinnie jones accompanied the featherweight to the ring .\ncase begins when police find video of what appears to be a gang rape . 2 students from troy university in alabama are charged in the case .\nfive recent deaths heighten suspicions on both side of ukraine 's ethnic divide . ukraine 's president orders an investigation of the recent killings . the opposition calls the killings `` oppression , '' but the government says moscow may be to blame .\natletico madrid host real madrid in their champions league quarter-final first leg at the vicente calderon on tuesday night . real beat atletico 4-1 aet in the champions league final last season . atletico are unbeaten in six madrid derbies this season against their rivals .\nindonesia executed eight prisoners including two australians on wednesday . two of `` bali nine '' were killed despite australia 's pleas for mercy . all around the world , innocent people being killed by the state in our name , writes mark beeson .\njoseph oberhansley ` broke into tammy jo blanton 's house last year , stabbed her to death and then cut open her skull with an electric jigsaw ' he ` then cooked up her heart , lungs and brain and ate them ' on tuesday , prosecutors asked for rape to be added to the charges against him after results from her body returned from the lab . last year , prosecutors said they expected to seek the death penalty .\ncrabbie 's grand national takes place at aintree on april 11 . shutthefrontdoor , trained by jonjo o'neill , is the race favourite . ap mccoy is expected to ride shutthefrontdoor at aintree .\na brass lamp from the nurse 's derbyshire home is to go under the hammer . she is thought to have used it to write nursing notes after crimean war . lamp was passed on to servants and handed down through generations . it will be sold by hansons in etwall , derbyshire , on june 26 .\nlyoto machida is set to take on luke rockhold in ufc clash on saturday . brazilian made weight by wearing a sauna suit beneath an electric blanket . former light-heavyweight champion is hoping to get another title shot .\nashley young has revived his career at manchester united . he signed five-year contract worth around # 120,000 a week in 2011 . the 29-year-old is now being touted for a return to the england set-up .\ndonor , josh dall-leighton said maine medical center officials informed them it has concerns about amount of money raised for them . christine royles , 24 , who has kidney failure , organized fundraisers to reimburse dall-leighton for unpaid time away from work . online fund has ballooned to more than $ 40,000 . royles painted an appeal for a donor on the rear window of her car .\njesus salas aguayo , current leader of the juarez cartel , under arrest . police say they can directly link the former hitman to more than 20 deaths . led juarez cartel against rivals sinoala in four-year war than killed 10,000 . had been boss less than six months after arrest of vicente carrillo fuentes .\narsenal earn 1-0 premier league victory against burnley at turf moor . aaron ramsey gives gunners an early lead with 12th minute strike . gunners close to gap to four points behind premier league leaders chelsea . burnley remain in the bottom three with fixtures against fellow strugglers leicester , hull and aston villa to come . click here for full player ratings as francis coquelin shines for the gunners .\ndr mohammad ali jawad allegedly bragged about treatment of katie piper . patient claims he gave her vodka during an appointment at his surgery . accused of asking her to dance before touching the top of her breasts . the plastic surgeon who is currently in pakistan denies the allegations .\noskar groening is being tried on 300,000 counts of accessory to murder . the former ss officer described how jews were marched to gas chambers . one survivor , eva kor , told of her agony as her mother was ripped from her .\njamal al-labani was a oakland , california , gas station owner , as well as a husband and a father-of-three . al-labani traveled to yemen in an attempt to extricate his pregnant wife and daughter from the civil war there and fly them to california . he was unable to because the us withdrew its diplomatic staff in february . yemen also recently shut down most of its airports . al-labani was struck by mortar shrapnel after leaving a mosque tuesday in aden and soon died . al-labani 's cousin has said houthi forces launched the mortar shelling . houthi forces have been battling to take aden , a last foothold of fighters loyal to saudi-backed president abd-rabbu mansour hadi . the us state department has said ` there are no plans for a us government-coordinated evacuation of u.s. citizens at this time '\namanda lukoff , from arlington , virginia , teamed up with her husband danny egan for their film the r-word . she was inspired by her older sister gabrielle , who was born with down syndrome . the documentary is in pre-production until she raises $ 200,000 for its creation . scrubs actor john c. mcginley and glee actress lauren potter , who has down syndrome , are among the films cast members .\nderek skyler brux , 22 , unhitched a pair of locomotives and took them on a high-speed run 13 miles down one of the busiest tracks in the country . he then crashed into an inactive train at 10mph before backing up and doing it again before he was stopped by a rail link employee . brux was a utility coal operator at the north antelope rochelle mine . he must also pay $ 63,000 in restitution to rail link .\ntwelve felony cases , 19 criminal misdemeanor cases and one juvenile case involving one or more of the officers were dismissed . officers exchanged ` inexcusable ' racist text messages , police chief said . messages referred to ` killing n ****** ' ; one said , ` i 'd have that noose ready ' alvarez also created video featuring obama sporting gold-capped teeth . other clips included pictures of attacks on minorities and use of n-word . james wells , jason holding and christopher sousa were fired in march . colleague alex alvarez , 22 , resigned in late january during investigation .\nlouis van gaal celebrated beating manchester city at wing 's restaurant . the chinese restaurant regularly welcomes celebrities and star footballers . wing shing chu owns the restaurant based in manchester 's city centre . united and england captain wayne rooney is a regular at wing 's . radamel falcao , mario balotelli and joe hart have been other visitors . the most expensive bottle of wine -- a 1983 chateau margaux -- costs # 999 .\nmanny pacquiao and floyd mayweather meet in las vegas on may 2 in ` the fight of the century ' . filipino pacquiao was given a speed ball with the face of floyd mayweather on it on monday . pacquiao then got down to business with a training session at wild card boxing gym . watch : pacquiao sings and directs his own music video for walk-out tune ahead of mega-fight with mayweather . read : ufc icon ronda rousey backs pacquiao as fast and furious 7 star visits filipino ahead of mayweather fight .\nlindsey walker booked one stay with partner and child at the rex hotel . described how the whitley bay venue ` looked lovely online ' but reality was very different and family were ` shaken and scared ' room cost # 82 and was situated above a nightclub .\nlabour leader ed miliband is superimposed over london rapper plan b. all five leaders become power rangers , but nigel farage is odd one out . david cameron and nick clegg pictured as gogglebox viewers on sofa . miliband poster compares him to kate asking jack to draw her in titanic .\njust nine points separates the bottom seven clubs in the premier league . burnley sit bottom of the table on 26 points after 33 games in the league . newcastle are 14th in the table on 35 points with five games remaining .\npossible that there is liquid water close to the surface of the red planet . substance perchlorate has been found in the soil , which lowers the freezing point so the water does not freeze into ice , but is liquid . life as we know it is ` not likely ' to exist due to planet 's harsh conditions . finding could make it easier for humans to live on mars in the future .\nshaun ingram booked his ford focus st for an mot at halfords , plymouth . went to collect his car and realised his dashcam had been recording . saw a mechanic take the car for a joyride doing 57mph in a 30mph zone . also discovered the mechanic swearing and boasting about test driving the car .\ncharlotte watts , a nutritionist , says stress drains the body of nutrients . nutrient deficiencies shows up as things like spots on nails or cracked lips . she reveals seven signs of stress and what to eat to replenish the body .\nmatthew riches allegedly spiked a woman 's drink with the drug mdma . accused of dropping the drug in her drink so he could have sex with her . the 29-year-old now set to go on trial at isleworth crown court in august .\nthe queen has distributed the traditional maundy money in sheffield . two bags of coins were presented to 89 men and 89 women during service . one was brave d-day veteran , 91-year-old denis gratton . her majesty arrived in the city on the royal train with prince philip . royal maundy tradition dates back to 1210 and the infamous king john . john , who appears in robin hood , was also forced to sign the magna carta . royals were once required to wash the feet of beggars during the service . only the nosegay , intended to hide the smell , still survives of that part .\nukip 's support has fallen in nine out of 10 marginal seats , poll shows . support for nigel farage 's party has more than halved in two seats . comes after leaked poll showed the ukip leader on course to lose in thanet . nationwide support for ukip has fallen by 25 % over the last six months .\nnew line cinema is reportedly planning a mariah carey christmas movie . carey was queen of the '90s , and that decade is totally hot now .\nfeel like a james bond villain with the most advanced submerged ocean vehicles . some convert from a yacht into a submarine , and others detached off for a speedy exploration . oliver 's travels offers a mile low package on its submarine , complete with chef and butler for # 175,000 a night .\nseptum rings are a new craze among celebrities . fka twigs started the trend after appearing at red carpet events with one . it has been used in various asian and north american cultures for years .\nare we seeing a mental disintegration of nico rosberg as a racing driver ? last season rosberg was the epitome of focus , intelligence and calculation . since his spa collision with lewis hamilton his composure has diminished . max verstappen , 17 , impressed with classy driving ability in china . rosberg : attempting to overtake hamilton could have cost me second .\nvictims and their families of a us study that infected individuals with syphilis in guatemala without their knowledge are suing johns hopkins . in a $ 1billion lawsuit , 750 plaintiffs claim the college approved and helped to plan the study , which ran from 1945 to 1956 . the victims were mostly orphans , children , prisoners , soldiers , prostitutes and mental patients . marta orellana was just 9 years old when one day at the orphanage she was ordered to go to the infirmary and infected with the disease . federico mesa was a solider who was forcibly injected with syphilis as a soldier and passed it along to his family . marta ruiz 's husband was infected , and she gave birth to one child who did not have a brain and another who is severely handicapped . another woman , victoria , claims she was born blind because he father was infected . blindness , deformities , and death are just some of the problems babies born with congenital syphilis face . a lawyer for johns hopkins has called the suit ` baseless ' .\ndashem tesfamichael , 30 , filmed dancing outside cell at coldingley prison . he was jailed for life after stabbing olu olagbaju with a champagne bottle . footage shows stash of drink and snacks and was shared on whatsapp . prison officers said to turn blind eye to the partying in december , last year .\ninter milan are keen on signing man city 's stevan jovetic on loan deal . the italian outfit want to have option of signing jovetic for # 15m . roberto mancini is also keen on sealing reunion with yaya toure . read : manchester city will miss toure when he decides to leave .\nnew video features an australian doctor called abu yusuf al-australi and an indian doctor called abu muqatil al-hindi . both doctors appear to be desperately struggling with the tide of patients , calling for any westerners with medical skills to travel to syria . poster bears striking resemblance to an nhs poster , featuring a doctor wearing blue scrubs and a stethoscope . nine british medical students recently traveled from sudan to syria and are believed to have joined isis last month . notorious british jihadi aqsa mahmood studied radiography and could be drafted into working at raqqa hospital .\ngrandparents have pleaded for the safe return of two children in syria . former melbourne woman dullel kassab fled to raqqa in syria with her four-year-old daughter and two-year-old son last year . she said her daughter likes watching is videos of ` muslims killing bad ppl ' .\nthe puppies were being transported by an ohio mennonite family of six . wendell steiner said he offered to bring the puppies to his wife 's family in pennsylvania because his father could no longer take care of them . he said he was unaware it was illegal to transport animals on the roof a car . the puppies were handed over to police , who let family go with a warning . romney admitted to driving 12 hours with his dog in carrier on top of his car .\njohn sutton jr was just 8 years old in 1940 , when his blacksmith father took him to his first kentucky derby . the 84-year-old louisville native has n't missed a race since , and has amassed an impressive collection of memorabilia over the past 76 races . churchill downs , the racing grounds that hosts the competition , has invited sutton to watch the event for free as a special guest on may 2 .\n400 extra officers drafted in by the british transport police this weekend . rivals manchester united , liverpool and leeds will all be in london . united face chelsea and leeds travel to charlton athletic on saturday . liverpool face aston villa in the fa cup semi-final at wembley stadium .\ncarl beatson-asiedu , 19 , was stabbed to death outside a nightclub in 2009 . suspected killer jeffrey okafor , 24 , had confessed to his girlfriend . he then then went on the run to nigeria for five years until last november .\ntiger woods , back in august , georgia , after missing the masters last year following surgery hopes to pull of a stunning return to greatness . his girlfriend vonn managed to come back after surgery that followed a devastating knee injury and win her 18th world cup , a women 's record .\ntwo million high school students admitted to using e-cigarettes in 2014 . that is an increase of 13 per cent from the 660,000 recorded in 2013 . traditional cigarette use has plummeted by 9 per cent , cdc study shows . experts warn e-cigarette marketing is not regulated .\nrobert penny , 83 , is charged with the murder of two women in 1991 . he has since spoken out and described his charges as ` bizarre ' . one of the victims was his wife margaret penny , the other claire acocks . pair were found stabbed , their throats cut and were wrapped in hair wraps . penny was cleared of any involvement in the initial investigation .\nmorgan schneiderlin ruled out for rest of the season with ligament damage . southampton midfielder suffered injury in draw with tottenham . manager ronald koeman admitted he may have played last game for club . schneiderlin has been linked with moves to arsenal and tottenham . saints travel to relegation-threatened sunderland at the weekend .\ntwitter user saskia , 17 , posted ` arsenal exam ' result on social media . she scored 87 per cent and her boyfriend said he would n't dump her . questions covered club history , current players and club loyalty .\nsmall businesses will be forced to close over the easter long weekend . penalty rates of up to two-and-a-half times pay are affecting employees . the inflated penalty rates allow casual workers to earn up to $ 50 an hour . the australian chamber of commerce has called on the federal government to make changes to the penalty rates to help small operators . but unions has claimed workers are being subjected to a false and misleading campaign .\ncalling himself ` volcano ' rapper is a 31-year-old from war-torn benghazi . he is seen standing in front of weapons of war and burning buildings . he poses with fighters and even carries a massive assault rifle himself . video shows volcano performing on benghazi 's rubble-strewn streets .\njoel burger and ashley king have known each other since kindergarten . they started dating five years ago , friends having stopped ribbing them . insist they are embracing the playful nickname ` burger-king ' . plan to serve drinks at wedding in personalized burger king cups .\nander herrera put manchester united ahead just before half-time with a low left-footed effort . wayne rooney doubled united 's lead with a beautiful half-volley on 79 minutes at old trafford . christian benteke pulled one back for the visitors a minute later after a rare david de gea error . herrera added a third in the closing stages of the first half to complete the scoreline for the red devils . player ratings - herrera shines as louis van gaal 's side triumph to move above manchester city into third .\neden hazard has been the best player in the premier league all season . he has eked out wins for chelsea when they have not been at their best . hazard finishing has steadily improved over the last 18 months . the belgian star has scored 17 goals for the blues this season . wayne rooney 's midfield role hindered his influence against chelsea .\nmartin tyler revealed 1996 anfield thriller is his favourite game of all time . the iconic commentator says the winning goal still gives him goosebumps . liverpool opened the scoring on two minutes through robbie fowler . newcastle equalised eight minutes later after les ferdinand 's strike . what followed was a seven goal thriller that went right to the wire . it was a chance for both teams to put pressure on league leaders manchester united .\nrabbit populations are rampant in greater sydney due to high summer rain . public land managers are now desperate to reduce population numbers due to the millions of dollars worth of damage they cause . carrots laced with calicivirus are likely to be scattered in public spaces for a second time this year after an initial attempt failed in some areas . about 70-100 % of rabbits die once infected with calicivirus , which damages the animal 's liver and gut and causes haemorrhaging and bleeding .\nmanchester united boss louis van gaal is not concerned about man city . he insists he feared facing aston villa because of their defensive set-up . van gaal dreams of beating rivals city in his first old trafford derby match . read : wayne rooney renaissance comes at perfect time for man united .\ndelroy facey is standing trial in birmingham over match-fixing allegations . the former premier league footballer denies conspiracy to commit bribery . facey formerly played for bolton wanderers , west brom and hull city . 34-year-old is alleged to have offered hyde fc 's scott spencer # 2,000 . facey stands trial alongside former non-league player moses swaibu , who also denies the charges .\nleigh griffiths gave celtic a third minute lead which lasted only 60 seconds . edward ofere levelled for inverness with a close-range finish . celtic failed to unlock the inverness defence again and had to take a point .\njavier hernandez has four goals in four in all competitions for real madrid . the striker is on loan at the spanish club from manchester united . carlo ancelotti will make a decision on his future during the summer . read : hernandez ` has won ' bid to make loan move permanent .\nconchita is star of life ball 2015 poster . shot by legendary ellen von unwerth . event is biggest charity event in europe supporting people with hiv or aids . previous guests include bill clinton and antonio banderas .\nprince ali bin al hussein launched his election manifesto on monday . he wants the world cup hosting rights rotated between continents . he rejected the idea of the tournament being expanded out from 32 teams .\nstudy of twins in the uk found voting conservative tends to run in families . voting ukip , labour and the greens also had moderate levels of heritability . however , voting for the liberal democrats is determined by environment . the study suggests there may be an underlying genetic element to politics .\nbaronelle stutzman was fined $ 1,000 for refusing to provide flowers for a same-sex marriage in 2013 . a campaign on go fund me has raised more than $ 87,000 for stutzman 's legal fund as of sunday . in february , a judge ruled that stutzman violated anti-discrimination and consumer protection laws by not working on the gay couple 's wedding .\nshay given to start against liverpool in fa cup a day before he turns 39 . tim sherwood confirmed the news as he prepares for sunday 's semi-final . given has played in all four of aston villa 's fa cup matches this term .\nchelsea are in early discussions over a possible partnership in belgium . the pro league 's royal mouscron-peruwelz are the prospective partners . chelsea already have an agreement with vitesse arnheim in holland . click here for all the latest chelsea news .\nmiliband will warn that the party faces coming to power in ` time of scarcity ' . he will insist labour would have national debt falling ` as soon as possible ' manifesto also pledges ` budget responsibility lock ' for no more borrowing . other policies include # 2.5 bn nhs fund paid for from a mansion tax and closing hedge fund tax avoidance loophole .\nwarning graphic content . domestic cats stolen off the streets and sold to restaurants for # 52 each . moggie meat served in vietnam as an expensive delicacy called ` baby tiger ' serving cat is banned - but big customers are police officers and lawyers . felines are cooped up in tiny cages then killed , skinned and filleted to eat .\nteenager was caught on cctv giving the middle finger to monkey in india . but the monkey interprets it as a threat and launches itself at his face . the teenager is left sprawled on his back and in shock following the attack .\npilot declared emergency but plane crashed in woodland just off runway . everyone on-board the piper pa-31 aircraft was killed in the tragedy . investigators in florida trying to establish what caused the plane crash .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call .\nmario gomez has been linked with a move to la liga giants barcelona . however gomez insists he would reject a transfer to the nou camp . the striker joined fiorentina in 2013 for a fee believed to be over # 17m .\nwhen tumours in lungs are suspected , patients can face a raft of tests . some even need surgery to find out before lifesaving treatment can begin . now doctors at university college london hospitals nhs foundation trust are able to start vital treatment much sooner after single procedure . it even allows them to assess instantly the type and severity of the cancer .\nabout a year after al qaeda took warren weinstein hostage , his family paid a ransom , a pakistani source says . the captors demanded that other prisoners be released , the source says . weinstein , an american aid worker , was killed in a drone strike in january , the u.s. says .\nrudy guede , 29 , is currently serving a 16-year sentence for the murder . ivorian says he will now seek a retrial after seeing amanda knox cleared . knox and ex-boyfriend raffaele sollecito served four years for the murder . but the pair were sensationally cleared by italy 's highest court last month .\neugenie bouchard crashed out of miami open to tatjana maria . she urged herself to ` relax ' after losing to lesia tsurenko at indian wells . canadian posed with sports illustrated model hannah davis and olympic medalist kerri walsh jennings .\ndigital delivery of music caught up with physical formats like cds . overall global sales of $ 14.97 billion fell marginally from 2013 . massive piracy problems in china one of biggest problems facing industry . vinyl sales now account for 2 % of revenues .\ngaza police have seized world famous street artist 's work from bilal khaled . he bought the piece painted on a door belonging to the darduna family . is accused of doing so without telling them real value of the niobe mural . it is now being held in khan yunis public library while the issue is resolved .\nmysterious history of grade ii listed asylum in the west midlands revealed in sinister looking photographs . st george 's county asylum in stafford was opened in 1818 and once housed nearly 1,000 patients . dysentery and syphilis said to be widespread , while patients were restrained in chairs and by ` iron handcuffs ' a developer is now looking to transform the haunting structure by building a block of apartments in its place .\nthe rare albino dolphin lives at the taiji whale museum in southern japan . its thin skin means it changes colour when it 's emotional like a human . the animal was captured during the annual dolphin hunt in taiji last year . activists filed a lawsuit against the museum for withholding information . but the museum claims the animal is kept ` physically and mentally healthy ' . researchers from the museum released a study on the animal in march .\nmauricio pochettino believes competing in the europa league makes things ` difficult ' for premier league clubs . tottenham were knocked out of europa league by fiorentina in february . pochettino 's side have struggled for results in recent weeks . spurs face premier league clash against newcastle on sunday .\njustin robertson convicted of murdering pennie davis in september 2014 and sentenced to life in prison with 32 years minimum . victim was found dead by her husband in a paddock in the new forest . robertson was paid # 1,500 to kill her by benjamin carr , her ex-lover 's son . carr wanted to stop her telling the police about sexual assault claims .\nasma fahmi and her family had hard boiled easter eggs pelted at them . they had just been to see a theatre performance in haymarket , sydney . 3 british men hurled racial abuse from a balcony as they walked to the car . this is the second time asma has been racially attacked in three years . her mother suffers from bells palsy and finds it hard to leave the house .\nbristol city have been promoted from league one to the championship . james tavernier opened the scoring for the robins after 16minutes . joe bryan doubled the visitor 's first-half lead with a close range header . luke ayling scored a third before aden flint added another with a header . tevernier added his second and aaron wilbraham completed the rout .\nhillary clinton developed a close relationship with the financial world as a new york senator . clinton 's allies there are eager to galvanize a broad network of potential donors . her coziness with wall street irritates liberal activists , who are a growing influence in the democratic party .\nmichelle obama combined an educational event with school children during the afternoon and a black tie event on wednesday evening . the event at the white house kitchen garden was the latest part of her ongoing let 's move initiative . she then changed into a flawless black dress for the annual grammys on the hill awards which were held at hamilton live in washington , d.c. . the first lady was on hand to present 15-time grammy winner alicia keys with the recording academy 's recording artists ' coalition award .\nthe actress briefed the council as special envoy for the u.n. on refugee issues in new york on friday . jolie lambasted the security council for their inaction over the crisis , saying : ` we are standing by in syria ' . syria 's ambassador said simply of her presence : ` she 's beautiful ' . nearly four million syrians have fled the conflict into neighboring countries , which warn they are dangerously overstretched . angelina jolie went on to speak at the women in the world summit held in manhattan on friday afternoon .\ntrading standards officials in buckinghamshire and surrey raised alarm . officers said they were ` likely to contravene food imitation safety rules ' the eggs bear a striking similarity to the sugar-coated chocolate treats .\nbritish soldier norman turgel and teenage polish girl gena met at belsen . he was sent to arrest her ss guards - and fell in love with her . commander major leonard berney took a personal interest in the romance . made sure messages to each other reached their destination amid chaos . the pair wed months later when gena , now 91 , was 20 and norman was 24 . stayed married for 50 years , living in london , until norman 's death in '95 .\ndarren goddard met first wife aggi while based in germany with the army . the pair had a son called lewis before their marriage broke down . mr goddard , of hampshire , returned to uk and never had contact with son . but lewis ' appeal to find father appeared on mr goddard 's facebook page .\ncody got stuck after wandering into ditch in belvedere , south-east london . animal rescue experts spent an hour and a half rescuing distressed horse . after being freed , the horse was seen by a vet and taken back to his stables .\ncalifornia gov. jerry brown ordered state officials wednesday to impose mandatory water restrictions for the first time in history . brown said he signed an executive order requiring measures be implemented to cut water usage by 25 percent compared with 2013 levels . state water officials found no snow on the ground at the site for their manual survey of the snowpack . snow supplies about a third of the state 's water . a higher snowpack translates to more water in california reservoirs to meet demand in summer and fall .\nsawyer burmeister , a horse-riding champion and sometimes actress , tweeted the barb on thursday evening . second twitter used forwarded it to donald trump , the real estate titan who 's a possible republican presidential candidate . a trump social media employee -- one of ten on his staff who help with twitter and other platforms -- retweeted the message . trump deleted it , but the internet is forever .\ntheia , a bully breed mix , was apparently hit by a car , whacked with a hammer and buried in a field . `` she 's a true miracle dog and she deserves a good life , '' says sara mellado , who is looking for a home for theia .\njohn terry helps chelsea earn 0-0 premier league draw against arsenal . chelsea captain has been in brilliant form for jose mourinho this season . jamie carragher believes terry is the premier league best centre back . mourinho : that was terry best performance for chelsea . if there was a pfa defender of the year category , terry would clean up ! .\nella may rudd left a scathing review on facebook for the maaco auto body shop in hagerstown , maryland after 10 visits to fix a leak . co-owner kyle kandrick told her husband rudd had ` personally attacked him ' on facebook and that he needed to ` deal with it before i deal with it ' the mother-of-two said she confronted kandrick after the voicemail and said ` my husband will not handle me at all ' . rudd said the franchise 's president told her he could n't fire kandrick because he 's a co-owner of the franchise .\npolice make dramatic arrest after woman 's body is found in man 's car . the man 27-year-old man had been on the run since wednesday night . ` show me your hands ! ' the arresting police officer screams at the man . he gives himself up without a struggle and his taken away by police . police are yet to identify body of the woman found in the car in bermagui . detectives are investigating if there 's a link to missing canberra couple . daniella d'addario , 35 , was reported missing on monday along with her boyfriend josaia -lrb- joey -rrb- vosikata , 27 . ms d'addario was a teacher at canberra high school in 2009 .\nthomas buckett , 21 , broke in to tuck shop at school in stoke in may 2010 . he fell through the roof after friends dared him to jump on skylight and suffered horrific head injuries . family sued county council saying they should have protected the building . but after a judge threw out their claim they face legal bill of up to # 260,000 .\nthe emails that resulted in the firings of two police officers and a court clerk in the city of ferguson , missouri were released on thursday . in one email a photo of ronald reagan holding a monkey is labeled ` rare photo of ronald reagan babysitting barack obama ' former police sergeant william mudd said he was getting his dogs welfare in one email as they are ` mixed in color , unemployed , lazy , ca n't speak english , and have no frigging clues who their daddies are ' in another sent by city clerk mary ann twitty , a group of tribespeople in native costumes is captioned ` michelle obama 's high school reunion . mudd also sent an email that said a black woman in new orleans got $ 5,000 after having an abortion from ` crimestoppers ' . disgraced police officer richard henke was responsible for sending the email that said of president obama ; ` what black man holds a steady job for four years ' .\njoanna biggs tells the stories of real people she has interviewedin the uk . she offers an excellent contribution to our knowledge of the world of work . confesses she hoped for more resistance to the way society is organised .\nhonza and claudine lafond are yoga teachers based in sydney . they travel the world to teach yoga , showing off their flexibility by striking impressive yoga poses wherever they go . run a worldwide studio called yogabeyond , specialising in acrovinyasa , which incorporates acrobatic flying .\ntournament performances have restored andy murray to world no 3 . but it 's wedding to kim sears that takes murray 's no 1 spot this week . murray is due to marry fiancée sears in dunblane this coming saturday . there are believed to be well over 100 names on down-to-earth guest list .\ncases have been traced to ill travelers from india and dominican republic . symptoms include diarrhea , stomach cramps and nausea . sometimes antibiotics are prescribed for more serious cases . however strain has become increasingly resistant to drugs .\nalison hall , 48 , says the nail became lodged and she started to choke . believes nail had come off in her pocket and worked way inside the inhaler . there is a 1mm gap at top of salbutamol inhaler where it may have got in . now wants to warn others about thoroughly checking inhalers before use .\npresidential candidate will face tough grilling about the 2012 terror attacks in libya . republicans sought closed-door , transcribed interview before public hearing but clinton 's lawyer said she was ready to testify . chairman predicts ` clinton could be done with the benghazi committee before the fourth of july ' former secretary of state expected to sit in the hot seat on capitol hill in the week of may 18 and again before june 18 .\nofficer michael slager is being held at charleston county jail . his 8-months pregnant wife jamie and mom karen visited him on friday . housed in housed in a room with one small window and does not have any interaction with any other detainees at charleston county jail . slager , 33 , is charged with murder after opening fire on walter scott , 50 , after reportedly stopping him over a broken tail light in north charleston . dashcam footage shows scott running from his car after being pulled over . minutes later slager shot him in the back in a nearby park .\nthe rhs has warned about the ` grey sprawl ' with front gardens paved over . around 7million grassy front gardens have been replaced with paving . rhs is calling on people to plant trees , shrubs and climbers to go green . claims seeing a green front garden boosts mood for 95 per cent of people .\ndemi moore and bruce willis purchased the south tower penthouse at the san remo in 1990 , in addition to a maisonette on the lobby floor . moore appears to have won the penthouse in the couple 's 2000 split . she is now selling the 14-room penthouse at a $ 75million asking price , since she does n't spend much time at the home anymore . if it sells at that price , it will break the record for most expensive upper west side co-op ever sold . moore and willis were married for 13 years and share three daughters .\nall incidents concerned flights coming into london heathrow . baku , azerbaijan flight turned around after only 11 minutes with issue . passenger on mumbai-london flight says ` engine was leaking ' and plane diverted to istanbul , turkey . person taken ill on uk-bound flight from angola and plane lands at paris charles de gaulle .\njoe calzage was holidaying in barbados with his girlfriend lucy . the couple swam in the sea and enjoyed a spot of jet-skiing . calzaghe has been retired for seven years with a record of 46-0 .\nmaysak has sustained winds of more than 130 mph but is expected to weaken . it 's forecast to hit the philippines during the easter weekend .\npictures show the late lamented actor laughing and joking while on set . peter o'toole continued filming despite suffering from a long-term illness . director michael redwood paid tribute to actor 's unique sense of humour . fall of an empire : the story of katherine of alexandria hits cinemas today .\nhm passport office struggled to cope with 3.6 million britons applications . ministers agreed to give urgent cases a free upgrade to fast-track service . only 2,191 compensation applications were approved totalling # 203,066 . meanwhile managers at agency were handed total of # 1.8 million in bonuses .\nanchor said that he ` made eye contact ' with egyptian government soldier on horse when the tahrir square protests became violent . williams told jon stewart that soldier then beat protesters with whip . doubts raised about whether he was actually on the square in early 2011 . his dispatches from the time of the uprising were done at balcony above it . nbc committee investigating williams is reportedly looking at the incident . review of his reporting continues after iraq experiences were inflated .\nnarrow two-bedroom home in islington , north london has sold for # 750,000 despite measuring 5ft wide in places . the estate agency describes the property as ` well proportioned ' and includes a reception room , shower and kitchen . it was put on the market for # 750,000 , almost double what it sold for in 2001 when it was previously put up for sale .\ncharlie austin set to be included after netting 17 times for qpr this season . harry kane will be with gareth southgate 's england under-21 team . austin will be monitored by roy hodgson and his no 2 ray lewington . england play the republic of ireland and slovenia in june .\npolice called after women start throwing chairs in mass brawl at pontins . ` all hell broke loose ' as 20 holidaymakers started fighting in southport . a 26-year-old man was arrested following the fracas at the holiday park .\nthe football association does not believe the competition suits their needs . wayne rooney among players who competed in previous tournaments . gareth southgate claims player development is reason behind withdrawal .\nan unnamed burglary suspect was arrested at a crime scene in birmingham , alabama , on sunday . despite being handcuffed he managed to escape by driving off in a police car . the suspect was taken back into police custody after he abandoned the car and attempted to escape on foot . the man , currently in the birmingham city jail , is expected to be formally charged on monday .\njosh mason gave tv interview thanking clegg for not visiting his seat . he is standing in lib dem-held redcar but faces labour challenge . after making scathing remarks he rowed back with statement from party . suggested that lib dem leader would be made ` welcome ' after all .\nanthony joshua will take on jason gavern in newcastle on saturday . joshua will be entering the ring for the first time in 2015 after recovering from a stress fracture in his back . this will be joshua 's 11th professional bout since his debut in 2013 . he believes that his ` hunger and determination ' will more than make up for gavern 's superior experience of 50 fights .\nnasa chief scientist ellen stofan believes we 're close to finding alien life . indications within a decade ; definitive evidence within `` 20 to 30 years , '' she said . finding water on other celestial bodies is key to determination .\npatrick bamford puts middlesbrough ahead after 20 minutes . bamford 's deflected shot takes boro ahead of bournemouth . visitors wigan remain in the relegation zone with six games to play .\na man killed in a raid in the philippines in january was a `` most wanted '' terrorist , the fbi says . marwan was a malaysian believed to have provided support to islamist terror groups . 44 elite philippine commandos were killed in the raid on his hideout last month .\nbrightly-dressed churchgoers were on display sunday afternoon in new york city . hats ruled the day - featuring huge eggs , butterflies , bubbles , bill de blasio and a sailing ship . even pets got in on the action , with a contingent of dressed-up dogs making an appearance .\nlord janner told the lords he wanted to remain a peer earlier this month . a week later the cps ruled that he was unfit to face child sex charges . janner escaped prosecution over allegations because he has alzheimer 's . but he was apparently well enough to sign his name in a note to the lords .\nhuw davies has been hunting for a permanent job for almost 13 years . 34-year-old has not been called for a single interview during that time . applied for a string of jobs - including a train driver - but with no joy . has a geography degree , three a-levels and 10 gcses on his cv . has also spent time teaching in south africa , kuwait and saudi arabia .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call . the weekly newsquiz tests students ' knowledge of events in the news .\npj spraggins was perfect match for wife tracy , who suffers from lupus . but he was told he was not eligible as his blood pressure was too high . she was placed on the seven-year-long transplant list at end of 2013 . spraggins embarked on year-long fitness regime until he made the grade . they both underwent surgery in february 2015 .\nflashing tanned shoulders and pretty decolletage is a red carpet staple . but it 's not always the easiest look to pull off for those with larger chests . claire cisotti and her 34g curves have put six strapless dresses to the test .\nleicester have won back-to-back league games to boost survival hopes . nigel pearson has urged his players to focus on their own run-in . leicester now just three points from safety heading into final six games .\nshaun worthington 's car veered into truck moments after text was sent . he was driving home from a speed awareness course , an inquest heard . the 29-year-old 's mother said his death had ` blown our world apart ' she made a plea for motorists not to use their mobile phones when driving .\nmayweather and pacquiao will fight in las vegas , nevada , on may 2 . around 500 tickets for the welterweight unification clash sold out very fast . the high pay-per-view price may lead thousands to stream bout illegally . launched by twitter , periscope used to stream hbo 's game of thrones . broadcasters showtime and hbo could miss out on millions to streaming .\nquestions tuesday centered on whether defining marriage should be left to voters in individual states or decided by judicial system . chief justice john roberts , who shocked conservatives with his swing vote to uphold obamacare , seemed to lean conservative . eyes on justice anthony kennedy , a key vote for challengers to the state bans , who has penned decisions in favor of gay rights .\nnew polls shows 39 % of voters now say they will back the conservatives . this is compared to just 33 % for labour , according to the pollsters icm . comes after tories pledged to scrap inheritance tax on homes up to # 1m . the conservatives only scored 36 % in the general election in 2010 . a separate poll published today showed the parties tied on 33 % each .\nwarning graphic content . aracely meza was charged with injury to child by omission on monday . police believe boy was dead during ceremony lasting for hours . child was only given water which ultimately caused him to die , police said . in ceremony caught on video , meza is seen using oils and reciting prayers while holding the child as she tries to revive him . police went to the home on march 26 to do a welfare check and were told by residents that a two-year-old child had died . meza along with husband daniel meza presided over church services held at a balch springs , texas residence where ceremony occurred . march 22 ceremony was an attempt to resurrect the child , police claim .\ngareth shoulder is a member of the ` generation 2015 election youth panel ' used twitter to make disparaging remark about cameron and son ivan . 24-year-old was speaking in his own capacity , a bbc spokesman said .\nauthor lisa erspamer invited celebrities and a number of other people to write heartfelt notes to their mothers for her new book a letter to my mom . stars such as melissa rivers , will.i.am , and christy turlington participated in the moving project .\nbrittany huber , 23 , was killed on impact when fiance john redman , 25 , lost control of his lexus in georgia april 28 , 2014 . the couple were heading to alabama where they were set to get married may 3 . redman suffered head trauma and multiple broken bones , and was told by his doctors he would likely spend the rest of his life in a wheelchair . the fiance only found out about brittany 's death a month later . redman regained his ability to walk and resumed coaching at dalton state college . on march 24 , he helped lead his team to its first championship title .\nsouth sydney secured a bitter 18-17 victory after a last-gasp penalty . bulldogs were leading until the referee awarded rabbitohs a late penalty . rabbitohs converted the penalty and went on to win the game . as officials made their way off the field , they were pelted with missiles . one of the officials was taken to hospital with suspected broken shoulder . canterbury coach has apologised for the actions of his club 's supporters . bulldogs ceo said the club has called for a life ban on fans involved . police have identified two people for allegedly throwing bottles . inquiries to identify others involved in the attack are continuing .\nnba player jeff green had open heart surgery to repair an aortic aneurysm in 2011 . green missed the entire 2011-2012 basketball season . now he donates time to young cardiovascular patients .\njack wilshere has not played for arsenal since november after limping off at the emirates following a tackle from manchester united 's paddy mcnair . his career has been plagued by injuries , but former arsenal midfielder ray parlour believes he is the future of the club . parlour also reckons arsenal can push chelsea for the title next season . read : arsenal will help abou diaby get back on track , even if he leaves . winterburn : klopp is perfect for arsenal but give wenger is the right man .\nan egyptian goose that lived for at least a week with an arrow piercing its neck died after surgery . the goose at first appeared to make it successfully through the operation at a bird and wildlife clinic wednesday but then died a short time later . ` the vet did everything that they could do , ' said katie ingram of orange county animal care . the cause of injury is likely a victim of animal cruelty .\nxabi alonso won uefa champions league with liverpool and real madrid . he scored the vital equaliser for the reds in his first season at the club . the spaniard was in real madrid 's triumphant side last season . he lines up for bayern munich , who face porto in the quarter-final . clarence seedorf won with ajax , real madrid and twice with ac milan .\ndeputies filmed chasing ` horse thief ' francis pusok in the california desert . pusok , 30 , falls off horse ; seconds later , two officers stun him with tasers . they then kick him in crotch and head repeatedly , before others join them . footage captured by nbc helicopter on thursday , sparked outrage online . man 's lawyer said it was ` as bad , if not worse ' than rodney king 's beating . now , 10 deputies have been placed on paid administrative leave by sheriff . international and criminal investigations are ongoing ; deputies not named . pusok 's girlfriend of 13 years said that she ` could n't believe ' graphic video .\ntottenham hotspur manager expects a good reception for tim sherwood . spurs host aston villa in the premier league on saturday . ex-spurs boss sherwood returns just 11 months after he was axed . hugo lloris and kyle walker are out , while jan vertonghen is a doubt . click here for all the tottenham hotspur vs aston villa team news .\ndickerson was announced as replacement during show on sunday . journalist is the chief political correspondent for slate magazine . revealed he is ` honored and excited ' by the new job . his veteran cbs colleague announced he was stepping down last week . texas native schieffer has been host of the show since 1991 .\nmore than a dozen australians are reported missing following the quake . julie bishop confirmed there are no reports of australian deaths . the australian government has committed $ 5 million in aid to help nepal . families have launched a desperate search for information on social media . australian actor hugh sheridan has made a desperate plea for his brother . zachary sheridan is missing after a huge earthquake rocked the country . the powerful quake has caused massive damage in the capital kathmandu . officials have confirmed about 100 new zealanders in nepal are safe . more than 1800 were killed and warned the death toll likely to rise .\nfarage claims pm has been secretly using hair dye to turn back the years . he said : ` any man who can reverse the greying process i 'm jealous of ' the pm has been accused of visiting stylists to keep hair looking youthful .\nchelsea beat stoke 2-1 on saturday to go seven points clear at the top . willian wants his side to play in the same manner in their last eight games . the brazilian has praised jose mourinho for giving his squad confidence . read : mourinho hails remy as striker stakes claim to replace costa . click here for all the latest chelsea news .\nhugh roche kelly told how pilot dispelled ` tense vibe ' with his actions . left cockpit so passengers could see him and spoke in three languages . comes week after co-pilot andreas lubitz brought down flight 4u9525 . second black box has confirmed that he did deliberately kill 150 people .\ntwo-bedroom property first rented by len and beatrice barnes in 1915 . brought it 40 years later for # 350 before passing it to daughter freda . family have now all moved away and house is on market for # 164,500 .\ntaylor davis , 20 , was seen in the kissimmee , florida store , touching himself and following a female shopper on tuesday . he told deputies he went to walmart to do some shopping and listened to audio porn on his phone while inappropriately touching himself . the disney employee engaged in similar behavior at the theme park . the 20-year-old was arrested on disorderly conduct and criminal mischief and booked into the osceola county jail .\nin the murder trial of james holmes , 12 jurors and 12 alternates have been selected . the mostly middle-aged group includes 19 women and five men . jury selection started in january ; opening statements are scheduled to begin on april 27 .\nkai windsor knew from three that he had been born in the wrong body . by four he would n't wear dresses and by six he wanted to cut his hair short . kai came out at school as a transgender and is now referred to as a boy . at age of 10 he is set to undergo hormone treatment to halt puberty .\ndavid tungate , 58 , from norwich , is engaged to a 30 year old from gambia . he has already been married three times - twice to gambian women . his last wife was a bigamist who became pregnant with another man 's baby .\nhe agreed to a plea deal on thursday where he said he 'd perform 100 hours of community service and pay $ 1,333 to the estate of a neighbor . his community service must take place at a habitat for humanity project . vanilla ice - real name robert van winkle - was arrested in lantana , florida in february on grand theft charges . cops claimed he took furniture , a pool heater and bicycles from vacant home near a property he was working on for reality show ` the vanilla ice project ' the items were later found inside his own house , according to authorities .\ndramatic footage released today shows prince harry flying two-seater spitfire over the english channel last august . the 30-year-old royal is seen howling with delight as the fighter plane is guided into expert loop by an instructor . after he lands , the former apache helicopter commander is heard saying ` all good things must come to an end ' . prince also met former servicemen accepted on to spitfire training programme supported by his endeavour fund .\nallie davis , 21 , required her boyfriend to score at least 60 per cent to pass . she posted questions and his results to twitter after he scored 80 per cent . allie insists the stunt was n't entirely serious .\nthe game was available to download as an app from amazon and android . its designers sold it as ` an amusing game ' to help people with anorexia . failure to feed the girl results in the character losing weight and dying . social media users claim the game stigmatises people with problems .\ntheo walcott 's contract with arsenal expires at the end of next season . england winger has made just five starts for his club this campaign . ian wright says it would be ' a shame ' to see walcott leave arsenal . the gunners have been linked to signing liverpool 's raheem sterling .\nalex impey is breaking the law by openly selling marijuana to customers seeking pain relief . he sells medicinal oil from the drug at about $ 100 a gram and some people use up to a gram each day as treatment . mr impey also teaches the terminally ill how and where to grow their own . his `` hemp store '' alone receives more than 20 requests for help accessing medicinal cannabis each week . patients who contact him include cancer sufferers , those with parkinson 's disease , multiple sclerosis and children with epilepsy . larisa rule , 3 , is one of his customers , and takes the drug to reduce her seizures . her father peter risked two years in jail for preparing his own crop .\nbritish company swan has unveiled a new # 279.99 super steam iron . but can it really speed up the household chore everyone dreads ? tessa cunningham puts the best steam irons to the test .\nrangers ' final game of the season against hearts pushed back 24 hours . ibrox side will face hearts on may 3 at tynecastle to accommodate tv . hibs , falkirk and queen of the south play on saturday may 2 . hibernian adamant final round of fixtures should be played at same time .\nlabour leader declines several times to say that his deputy would get job . harman suggested it was sexist of gordon brown not to make her deputy . miliband defends labour 's pink bus touring country to woo women . admits he would be hit by his plan for a mansion tax on # 2million homes .\nlobster pound and moore in nova scotia had announced ban on loud kids . parents criticized decision and began giving the restaurant 1-star reviews . owner changed policy after ` hate and threats ' against him and his family . restaurateur said he should have said ` lil diners having a moment ' and not used the word ` screaming ' in heartfelt apology .\npeter costello slammed government pledge for ` lower , simpler , fairer ' taxes . the former treasurer singled out joe hockey 's proposed new bank tax and josh frydenberg 's push for revenue from multinationals . mr hockey hit back at mr costello , saying he wished he had the tax revenue the former treasurer had when the coalition was last in power .\nbitglass created 1,568 fake details and released them on the dark web . data landed in five different continents and 22 countries within two weeks . overall , data was viewed more than 1,000 times and downloaded 47 times . some activity had connections to crime syndicates in nigeria and russia .\nchelsea boss jose mourinho had prepared specific tactics for dealing with the threat of manchester united midfielder marouane fellaini . however , ahead of the game at stamford bridge , mourinho was told by a hotel doorman that fellaini would not be playing . the doorman had seen who he had thought was fellaini pick up some tickets from chelsea forward eden hazard . a google images search revealed that person to be fellaini 's twin brother . fellaini did play against chelsea but was dealt with by kurt zouma .\ntrawler was carrying 132 crew members when it sank in sea of okhotsk . fishing boats in the area have helped emergency services with rescue . at least 56 people have died after ship sank in just 15 minutes . sea is coldest in east asia with air temperatures of -20 degrees celsius .\nvin los , 24 , poses in boxer briefs for underwear brand garçon model . the montreal native has a selection of words tattooed on his face , neck , and body that look like they were scrawled on with a sharpie . vin 's goal is to be the most famous man on earth and he insists that his body art embodies pop culture .\nmany girls in nima , one of accra 's poorest slums , receive little or no education . achievers ghana is a school funded by the community to give the next generation a better chance of success . girls are being taught to code by tech entrepreneur regina agyare , who believes her students will go far .\nbarcelona take on psg in the champions league quarter-final . the first-leg of the tie will be played at the parc des princes on wednesday . the two sides were drawn together in the group stage earlier this season . barca defender adriano has warned this time will be more intense . he has singled out lucas moura as a particular threat for psg .\nmr miliband has started taking a lectern with him everywhere he speaks . he has appeared behind the same silver lectern throughout the campaign . the labour leader even spoke from behind a lectern in the middle of a field . it is thought to be a strategy to make him look more like a prime minister . he currently trails badly behind david cameron in personal ratings . it has also emerged he has hired a ` performance coaching ' firm for help .\njoe root scored 182 * but criticises lifeless pitch in grenada . england struggled to take wickets on fourth day , as draw looks likely . root admits england ` need a very good first hour ' to force a result .\nwaheed ahmed , 21 , was held by anti-terror police at birmingham airport . student is accused of trying to take eight family members into syria . he was arrested in turkish border town with family , including four children .\nmichelle unveils sneak peak of lipsy designs ahead of launch on wednesday . star , 27 , was unveiled as face of tanning brand recently . shows off toned and tanned body in behind the scenes shoot . swears by peanut butter smoothies and alkaline food delivery service .\nyesterday the royal family led tributes to those who fought at gallipoli . the day began in london with a dawn ceremony and service at whitehall . the queen , the duke of edinburgh and prince william all attended . prince charles and prince harry led the tributes in turkey , where they were joined by thousands of people and leaders from commonwealth nations .\nthe queen recorded their favourite childhood songs in august 1990 . pianist laurie holloway was invited to buckingham palace for the taping . he said the queen and princess margaret recorded each song in one take . unfortunately , the unique tape was lost after the queen mother 's death .\narizona 's the wave and the fairy chimneys in turkey were formed by layers of rock and erosion . it was n't a stretch for iceland 's svinafellsjokull glacier to co-star as ` space ' in interstellar . grand prismatic spring in yellowstone national park looks like a volcano about to explode . the zhangye danxia landform in china are hills that take on all the colours of the rainbow .\nsaturday is record store day , celebrated at music stores around the world . many stores will host live performances , drawings and special sales of rare vinyl .\nresearchers claim using exact prices when selling goods on ebay attract higher offers than round numbers . sellers who end prices with ` 00 ' typically receive offers up to 8 % lower . however , goods with round numbers typically sell faster , the study claims .\nseals were at joint expeditionary base little creek-fort story in virginia . they were found at bottom of the pool by another service member at 3pm . personnel use base 's combat swimmer training facility for fitness training . sailor pronounced dead at hospital and other is listed in critical condition .\njenson button was set to start from the back of the grid after mechanical failure in qualifying . despite frantic work from mclaren mechanics , they were unable to get his car on to the grid leaving button to watch from the sidelines . it was only the third race of the last 272 staged that he has missed .\nbill richardson : u.s announced plan to cut greenhouse gas emissions by 26 % to 28 % below 2005 levels by 2025 . he says china , india , major corporations , cities among those already setting goals for cutting emissions . u.s. must lead in this effort .\nthe fashion police host dated actor jerry from 2003 to 2004 . in her new tell-all going off script she confessed he cheated on her . giuliana , jerry and rebecca romijn all attended a maxim party in june 2006 . o'connell went on to marry rebecca in 2007 and they had two children . he previously hooked up with spice girls member geri halliwell .\nperth glory will be excluded from the finals after breaching the salary cap . perth were found to have exceeded the cap by $ 400,000 this season alone . glory were fined $ 269,000 and relegated to seventh spot on the table . ffa chief executive said he expects perth 's management to be removed in the wake of the mess .\nsurrey sign the australian all-rounder for natwest t20 blast . moises henriques has played 3 tests , 6 odis and 4 t20s for australia . the 28-year-old will join after his stint in the indian premier league .\nthiago alcantara had n't played for bayern munich since march 2014 . midfielder plays 10 minutes in 1-0 victory against borussia dortmund .\npaul hellyer served as canada 's defence minister from 1963 to 1967 . he made the comments during a speech at the university of calgary . hellyer says aliens have ` been visiting our planet for thousands of years ' many walk among us , he claims , but it can be difficult to tell them apart .\nisis has taken credit for a bombing near the us consulate in iraq on friday . the blast in ainkawa killed two turks and injured 8 . no us consulate employees were wounded or killed .\ned royce : best predictor of iran 's future behavior is its past behavior . new framework keeps iran 's nuclear door well and truly open , he says .\ndani alves is out of contract at barcelona at the end of the season . manchester united are interested in bringing the brazilian to old trafford . they are believed to have offered a three-year contract to the defender . barcelona are however , now keen to keep hold of the 32-year-old star . read : agent confirms dani alves has rejected club 's final contract offer . click here for all the latest manchester united news .\nwest indies captain denesh ramdin confirmed devendra bishoo will play . leg spinner bishoo has 40 wickets for the west indies in 11 tests . england 's batsmen have historically struggled with leg-spin .\nrory mcilroy faced with fifty shades of grey 's jamie dornan . mcilroy and dornan took part in the first circular soccer showdown of 2015 . mcilroy finished strongly to finish an impressive fourth at the masters . read : it wo n't be too long before mcilroy wins a masters .\nan australian man has reportedly been sentenced to death in china . bengali sherrif caught at a chinese airport allegedly attempting to smuggle . allegedly caught with methamphetamine , which is used to make ice . queensland man ibrahim jalloh facing the same charge will soon face trial . three men tried in melbourne charged with smuggling drugs from china .\nnoor ellis admits planning execution-style killing of husband robert ellis . mr ellis ' neck was slashed and his body dumped at home in bali in october . noor paid $ 14,000 to five hit men to carry out the murder in his kitchen . she told a balinese court that she wanted to ` teach a lesson ' to mr ellis . the court heard she asked his killers ` to be neat ' and suffocate him .\naustralian and philippines governments given notice their nationals will be executed in 72 hours . they include philippines maid mary jane velos and australians andrew chan and myuran sukumaran . australia has repeatedly appealed for clemency for the pair .\nmolly hennessey-fiske , los angeles times reporter , received letter . messages supposedly sent from durst at louisiana prison . murder suspect discusses his time in la and the problems of traffic . durst blames ` politicos and business leaders ' for city 's lack of pro football . lawyer says it looks like his client 's handwriting , but it is different from ` cadaver ' letter after murder of susan berman , of which durst is accused .\njust 11 per cent of research funding is allocated to dementia . money comes from both the british government and charities . almost two-thirds research funding was allocated to cancer .\nap mccoy retires on saturday after riding at sandown . mccoy has been champion jockey every year he 's been a professional . he 's won two cheltenham gold cups and the grand national . mccoy was the first man to ride 4,000 winners .\nseven-week-old grace roseman died in adjustable bednest bed side crib . the cot - endorsed by the national children 's trust - has a panel which can be folded down to allow parents to be closer to their children as they sleep . but a ` safety ' ridge cut off oxygen supply to her brain , an inquest has heard .\nmovie tells the incredible story of takako konishi , found frozen to death . body was found in detroit lakes , 50 miles from fargo , in november 2001 . policeman she met thought she had been searching for suitcase of cash . steve buscemi 's crook buried one in the snow in 1996 coen brothers film . rumour spread that takako , 28 , had tragically taken the tall tale to be true . kumiko , the treasure hunter tells story of this amazing version of events .\ngraffiti artists work through the night to repaint 30 telephone booths . latest in series of baymax-themed stunts as character craze sweeps china . artists wanted to help burned-out beijing residents feel less stressed .\nrichard dunne and rio ferdinand remain out for queens park rangers . yun suk-young also absent with concussion for west london derby . chelsea without diego costa due to hamstring injury . cesc fabregas will play with protective face mask for the blues .\nmarc carn vanished while drinking with friends in irish bar on las ramblas . family grew concerned when he missed flight home to plymouth , devon . he turned up at british consulate today after walking since saturday night . 29-year-old claims he was stranded by spanish driver miles outside the city .\npreston defeat notts county 3-1 while mk dons beat doncaster 3-0 . with two games to go , preston are a point ahead of the dons . the two are competing to join champions bristol city in the championship .\n`` mad men 's '' final seven episodes begin airing april 5 . the show has never had high ratings but is considered one of the great tv series . it 's unknown what will happen to characters , but we can always guess .\nnumber of motorists to appear in court has increased by a quarter . the spike has been put down to introduction of ` smart motorways ' . conservatives are already moving to scrap controversial cameras . labour plans to repaint them yellow to make them easier to spot .\nswiss town of zermatt bans tourists taking pictures of st bernard dogs . comes after swiss animal protection agency into miserable conditions the dogs are kept in . the report says they are locked up in a condemned building or made to stand in the cold for hours at a time .\nhaunting images show the decaying ruins of holmesburg prison where scientists experimented on its prisoners . inmates were paid to test a variety of dangerous substances such as radioactive , hallucinogenic and toxic materials . renowned dermatologist who experimented on prisoners has claimed no harm was done to any of the ` volunteers ' the prisoners who led a 38-day hunger strike in 1938 were locked in ` the bake ovens ' where four ` roasted to death '\nwayne rooney insists his side can take ` great confidence ' from defeat . louis van gaal echoed his captain 's thoughts by hailing display . eden hazard scored winner during match in which united dominated .\nshadow welsh secretary owen smith made comments at a hustings event . three quarters of labour candidates back scrapping trident system . replacing deterrent with a ` like for like ' system would cost around # 100bn .\nreports claim that edinson cavani and zlatan ibrahimovic do not get on . uruguay striker says he and ibrahimovic have a respectful relationship . but former napoli striker cavani admits the pair are not close friends . cavani does , however , take issue with being played out of position .\ncampaign focuses on lack of sanitary care for women living rough . video plays voice of homeless woman saying : ` why does a woman have to rip up a cloth put between her to protect herself from bleeding ? ' trio behind the project are oliver frost , josie shedden and sara bakhaty . 80,000 people have already signed the homeless period petition .\nrange unveiled amid warmongering in ukraine and borders of baltic states . features the slogan ` polite ' - a phrase used to justify takeover of crimea . comes ahead of 70th anniversary of the end of the second world war .\npromoter : manny pacquiao 's has between 800 and 900 friends who want tickets to historic las vegas clash . kenny bayless named as referee in mayweather-pacquiao 's bout , dubbed the `` fight of the century ''\nthe snp leader also pledged to form alliances with minor parties . she said the snp could work with labour mps without a formal pact . comes after a poll showed the snp surging to a 28 point lead over labour . miliband has ruled out a coalition with the snp but not an informal deal .\n75 % of parents with children over 18 have at least one still living with them . less than half ask for rent as they feel too guilty to ask . those that do , charge considerable less than the uk average . 8 out of 10 still buy their adult children 's groceries and cook dinner .\ncamel racing is a centuries-old tradition in the gulf . modern technology is changing the sport . camels compete for thousands of dollars in prize money .\ndriver and vehicle licensing agency abolished paper tax disc last autumn . car tax now automatically cancelled whenever vehicle changes ownership . official figures show use of clamping soared from about 5,000 vehicles a month before the changes to well over 8,000 now . critics say many targeted are innocent drivers unaware of rule change .\n` retrosweat ' aerobics classes allow attendees to ` forget 2015 for an hour ' classes dress up in skimpy leotards and work up a sweat to eighties hits . classes currently run in sydney 's alexandria and surry hills . founder shannon dooley also offers ` dial-a-sweat ' class for hens parties .\nmadison crotty , from san diego in california , is seen screaming and crying . video posted online by her father buddy shows how he gets her to sleep . he copies the scuba tank breathing made famous by villain darth vader .\nobama and raul , fidel castro 's brother , shook hands on friday . white house says the two are due a ` substantive ' conversation today . they met at the summit of the americas in panama alongside other leaders . us ` is close to removing cuba from list of terrorist sponsor states ' move would automatically lift some economic sanctions on island nation . the pair had shaken hands before at the funeral of nelson mandela in 2013 . they will meet again today and discuss further thawing u.s.-cuba relations . colombian president juan manuel santos hailed obama 's push to improve relations with cuba , saying it healed a ` blister ' that was hurting the region .\ncallum ryan , 21 , will run eight marathons in each of australia 's states and territories between january and september this year . callum is running to honour the memory of his late friend , malachy frawley . malachy passed away when he was just 14 from a congenital heart disease . callum wants to raise funds for heartkids australia and awareness of the impact of children 's heart disease . he had never run a marathon before when he set himself the challenge .\njet named the resurrected veteran restored by u.s. father and son team . flown at air shows as tribute to all servicemen who have died in combat .\nstacey eden , 23 , stands up for muslim woman being bullied on the train . video shows a middle-aged woman ranting about islam to quiet passenger . ms eden said the ranter labelled the muslim commuters isis terrorists . she also brought up beheadings , a massacre and the martin place siege . ` what 's that got to do with this poor woman ? ' ms eden fumed . ` shut your mouth if you 've got nothing to say ' . ms eden said she stayed on the train to make sure they were ok . both parties alighted the train at the airport shortly before 2pm wednesday . police contacted daily mail australia encouraging witnesses to come forward . islamic community leader says incidents are becoming increasingly common . ' i always make sure i have sufficient storage space on my phone to record ' .\nsaid he can relate to ` fear a parent has when your four-year-old daughter comes up to you and says , `` daddy , i 'm having trouble breathing '' ' health scare resulted in a single trip to the emergency room for malia - who at the age of 16 now lives an active life , inhaler free . but other children are n't so fortunate ; they they find themselves in and out the emergency room several times a year , he said . white house says higher temperatures lead to increases in wildfires , which send allergy-causing particulates into the air that can lead to greater and more serious incidents of asthma . new initiative aimed at slowing the pace of global warming puts front and center the personal cost of inaction .\nmanchester united signed a 10-year kit deal with adidas last season . united 's deal earns them # 750million in total with deal beginning next term . adidas replaces nike who had supplied united for the previous 13 years . read : manchester united to tour america for just 12 days in pre-season . click here for all the latest manchester united news .\nukip leader nigel farage risks alienating those watching debate last night . complains of ` remarkable audience even by left-wing standards of bbc ' comments on housing pressure due to immigration greeted with mutters . david dimbleby says independent polling firm chose ` balanced ' audience .\nvulcan plans to use new engines , mid-air recovery and new upper stage . engines will separate after launch and be picked up by helicopter mid-air . reusable rockets could end us dependence on russian rocket engines . spacex today also attempted to prove that reusable rockets are viable .\nstephanie scott 's remains were formally identified during an autopsy . the corner will now attempt to determine the cause of her death . police discovered the body in a remote national park on friday . she went missing on easter sunday , just days before she was due to get married to her partner of five years . her father has spoken out about the family 's pain , saying it 's difficult to be surrounded by reminders of her wedding . police will contact authorities in holland as they investigate accused killer , vincent stanford , who was charged with stephanie 's murder .\nnews corp australia ceo julian clarke gave evidence at a corporate tax inquiry today . mr clarke engaged in a fiery sparring match with greens leader christine milne . ms milne expressed a dim view of the australian newspaper , which is published by news corp australia . ` you 're a minority , ' mr clarke argued . ` not according to sales , ' ms milne responded . executives from google , microsoft and apple also appeared at the hearing in sydney .\nbespoke mascara and foundation are part of the newest generation of personalised beauty products . skincare brands are also increasingly tailored to specific needs . harvey nichols says ` one size fits all concept simply does n't cater to customers ' individual needs at all times anymore '\nthe terrifying video was captured in wangaratta , northeast victoria . a man sprays insect repellent under the handle door of his holden ute . he cowers back in fear when the huntsman drops out and onto the road .\n1st lt michael alonso and 1st lt lantz balthazar have both been charged . members of missile squadron at malmstrom air force base in montana . malmstrom missile wing operates missiles armed with nuclear warheads . hearing will see if enough criminal evidence to warrant a court-martial . third officer was charged in december and court-martialed in january .\nkevin sinfield has announced he is leaving leeds at the end of the season . the 34-year-old will cross codes to join sister club yorkshire carnegie . sinfield has won six super league titles , three world club challenges and one challenge cup with the rhinos .\ntourists and locals queue for several hours to get their hands on jenny 's butter cookies . people are even hired to stand in line to buy the cookies , which are later sold at an up-to-70 % mark-up . food frenzies have also taken place in other parts of the world .\nrihanna cooper , 21 , from hull , is working as an escort to pay for genital op . became the youngest person in britain to be accepted for sex swap at 16 . part way through treatment , she decided she actually wanted to be a boy . she had hormone injections but stopped treatment after 2 suicide attempts . now she says she does want to be a woman and is paying for her treatment .\nevita sarmonikas , 29 , died in mexico in mexico after undergoing a ` butt lift ' the doctor who performed the procedure had another patient die in 2013 . ms sarmonikas ' family ordered an independent autopsy on her body . they said it revealed inconsistencies with the report which said she died of cardiac arrest . the family raised funds to bring her body back to australia . the ama has warned against having procedures in developing nations .\npolice say an inebriated sergio barrientos-hinojosa had his 13-year-old son take him to buy beer at the gas station . once there , he got into an argument and started shooting at another customer , according to authorities . investigators say the father ordered his son to drive away while he fired his gun in the air . police pulled over the car near the gas station .\nphilip dunning , 44 , from bo ` ness , west lothian won the # 8million jackpot . he turned up at 4am for his usual shift at a food factory to give boss notice . dunning checked his ticket throughout the day to make sure it was there . partner gina , 45 , who also worked at the factory handed in her notice too .\ndocuments show that officers thought robert bates got special treatment . the reserve deputy has pleaded not guilty to charge of second-degree manslaughter . bates says meant to use his taser but shot eric harris by mistake .\nrory mcilroy bidding to win his first masters title this week at augusta . the northern irishman finished tied for eighth place last year in his best finish in georgia . mcilroy looking for third straight major victory after winning the open and uspga championship last year . one direction star niall horan caddied for mcilroy in wednesday 's par-3 contest .\nauthor martin fletcher claims the devastating blaze was not an accident . book reveals fires at other businesses owned by or associated with then club chairman stafford heginbotham . mr fletcher , a survivor of the blaze , says his findings warrant investigation . an inquiry into fire found it was an accident caused by discarded cigarette . west yorkshire police will consider any fresh evidence that comes to light .\nbarclays shareholders angered by generous pay packages for top traders . investors reeling as bank 's share price has plunged since financial crisis . bank has also been hit by huge bills for wrongdoing , with another coming . chairman sir david walker defended pay out of # 1.86 billion in bonuses .\nthe israeli military says the militants were trying to plant a bomb . the men crossed from syria , israel says .\ninvestigators found photos of a young girl being sexually abused . fbi are trying to trace a man , who is not accused of carrying out abuse . he appears in image posing with the girl , but not abusing her . they want to find him to identify the girl and her abusers .\nfly initially looks satisfied as it tastes the frozen food . before realising it is stuck and beating its legs in panic . it then attempts to free itself by heaving backwards . the filmmaker eventually helps it out with a heat gun . the footage was captured in auckland , new zealand .\nbritain 's heatwave sends ice creams sales soaring - with some vendors seeing a 400 per cent rise in sales . temperatures forecast to hit 21c tomorrow , with the country set to be warmer than ibiza , athens and barcelona . but the balmy conditions could be coming to an end , with clouds , wind and a spot of rain forecast for thursday . showers predicted to hit london on sunday as tens of thousands of runners take part in the london marathon .\nmore than # 12,700 spent in overtime payments to officers during search . money also spent on accommodation , flights and parking . followed parents ' decision to take him from southampton general . he went on to have successful proton therapy treatment abroad .\na total of 39 inmates are at large from ford open prison , west sussex . ministry of justice revealed they all escaped between 2004 and 2014 . include murderer derek passmore who beat a man to death in 1996 . also on-the-run robert donovan who knifed to death a theatre manager .\ncalls have been made to overturn handing of the 2022 world cup to qatar . new mail on sunday research shows how much was spent in lobbying . michel platini and jack warner are on a list of where the money went .\nthe robots , collectively called avert , are attached to a deployment unit . unit is used to scan the area for obstacles and plan a route to the car . it then releases bogies which travel to the car and dock onto the wheels . system may help bomb disposal teams deal with suspicious vehicles .\njames haskell dresses in iron man costume and posts it on instagram . the avengers : age of ultron move hit the screens in england this week . haskell returned to london wasps for the 2012 season and is captain .\njennifer mcgirr , 61 , said windows to tower view hotel in blackpool were smashed and she received intimidating phone calls . believes it was due to remarks she made on channel 4 's ` four in a bed ' cctv footage shows a man checking he is not being watched before hurling a brick through the window of the budget hotel .\nlocals in the remote area of jharkhand state believe the ceremony has the power to protect their village . participants are tied to a wooden pole by their feet and gradually lowered into the roaring flames below . as those taking part get closer to the fire , a hindu priest throws oil to intensify the blaze ever further . those escaping injury are deemed worthy to take part in the next stage of the ceremony - walking on hot coals .\nmls team orlando city the latest team to be linked with javier hernandez . the manchester united striker has not impressed on loan at real madrid . united have made andreas pereira an improved contract offer .\nharriet harman admitted drivers could be hit if labour gets into power . deputy labour leader refused to rule out above-inflation increases on taxes . george osborne said it shows labour will bring back ` fuel duty escalator ' .\nstacey johson , 22 , was diagnosed with cancer in her brain eight years ago . her sister dannii , 20 , became her carer last year but suffered headaches . after going to the gp dannii was also found to have a benign brain tumour . stacey has found out her tumour has grown , while dannii awaits treatment .\ngraeme dott had to play three best-of-19-frame matches to qualify . he overcame ricky walden 10-8 in first-round crucible clash . but former world champion fears exhaustion will ruin his bid for 2015 title . meanwhile , john higgins impressed with a 10-5 victory over robert milkins .\njanet brown was killed at her buckinghamshire home in april 1995 . she was beaten with an iron bar and left naked at the foot of her stairs . detectives at the time said there was no sign of any sexual assault . now cold-case squad detectives said they have crucial new evidence .\nbritain is home to a grand array of wildlife , from birds of prey to dolphins . you can glimpse the most magical of marine mammals at cardigan bay . you can also glimpse the elusive red squirrel at formby in lancashire .\nno official way out for americans stranded amid fighting in yemen . u.s. deputy chief of mission says situation is very dangerous so no mass evacuation is planned .\n` soldiers ' were sentenced to death by islamic court ` for waging war on god ' masked executioner beheads the men before wiping his blood-stained blade . men and young children gathered to watch execution in isis-held al-mayadin . isis has recruited ` hundreds of children ' from east syrian city , experts claim .\nchris lane , 22 , from melbourne , was gunned down on august 16 , 2013 . family and friends broke down as they listened to an emergency call . they heard details about how two bystanders tried to resuscitate mr lane . his mother donna , walked out of court in tears after graphic testimony . chancey luna has been charged with lane 's murder . the trial is being held at duncan district court .\nred bull have endured a difficult start to the new formula one campaign . daniel ricciardo was third quickest during practice for the chinese gp . the australian 's red bull team-mate daniil kvyat was sixth fastest . but his brakes caught fire and he was forced to stop on track .\nandrea lindsay , 43 , from prescot , merseyside , transformed her appearance . downloaded # 4.99 easy loss ' virtual gastric band - lose weight fast app . dropped from a size 18 to a size ten to 12 in just six months . husband robbie 's colleagues thought he 'd traded her in for a new model .\npatrick randall was 16 in may 1990 when he held a knife to gregory smart 's throat as billy flynn shot him in the head . flynn was pamela smart 's then-16-year-old lover . flynn was paroled last month ; smart is serving life without parole after being convicted of plotting the murder . now 41 , randall won parole at his first hearing - released after june 4 .\ndejan lovren was left out of liverpool 's 4-1 defeat to arsenal . lovren could return for viral fa cup quarter-final replay on wednesday . brendan rodgers is considering replacing kolo toure with lovren . read : sterling would only be earning the same as balotelli if he signed new # 100,000-a-week deal at liverpool ... and that 's the real issue here . click here for all the latest liverpool news .\nespn sports reporter britt mchenry suspended for one week from network . she berated an advanced towing employee after her car was towed from a chinese restaurant in arlington , virginia , on april 6 . insulted the woman 's looks , education and job . ` lose some weight , baby girl , ' mchenry said as she walked away . mchenry apologized thursday after security footage surface online . said it was ` an intense and stressful ' situation .\nsaudi military official accuses iran of training and arming rebels . yemeni officials say school hit by airstrikes ; one source says three students killed . noncombatants are caught up in yemen 's fighting .\nnepal civil war aftermath inspired maggie doyne to help children . doyne 's blinknow foundation supports a home for 50 children and a school that educates hundreds more . do you know a hero ? nominations are open for 2015 cnn heroes .\nmade in chelsea star binky felstead , 24 , stars in street style video . shares five must-haves to always be in fashion in london 's sw3 area . statement jewellery , cashmere and a biker jacket are fashion essentials .\npritesh and mansi gandhi had been trying for a baby for ten years . they suffered five miscarriages and lost a baby after six months . pritesh 's sister hiral agreed to act as a surrogate to the couple . three weeks ago they welcomed their son krish .\nlisa courtney holds the guinness world record for largest collection . the 26-year-old started amassing the items after being bullied aged nine . spends seven hours a week surfing the internet looking for new characters . vast hoard ranges from cuddly toys to cornflakes made in japan .\ndesigncrowd created a project to imagine cities without famous landmarks . the virtual design studio has over 450,000 designers who contribute . designs included rio without christ the redeemer and hollywood without its famous hill-side sign .\npowers appeared in the final season of the long-running sitcom . he played the husband of main character thelma . powers died april 6 at his home in new bedford , massachusetts at the age of 64 . his family have not revealed the cause of death .\nthe tiny nipper was caught during a 2010 government research trip . its body remained frozen while biologists tried to identify it . the pocket shark measures 5.5 inches long and weighs a mere half ounce . ` it looks like a little whale , ' said tulane university biologist michael doosey .\nreal madrid had exclusivity on signing javier hernandez until friday . other clubs can swoop for striker after deadline passed . manchester united to field offers of # 10million for 26-year-old hernandez . read : real madrid to tempt psg with a # 30m offer for marco verratti .\nbarcelona outclassed psg to win 3-1 in the champions league quarters . neymar scored the opener after brilliant work from lionel messi . luis suarez netted a fabulous second half double for luis enrique 's side . gregory van der wiel 's deflected effort gave psg some hope .\nbluey 's purr has been measured at 93 decibels , which is louder than the official world record . the cat is currently in a centre in cambridge and looking for a new home . her growls are so loud they stop other animals from sleeping properly .\nteacher carol chandler , 53 , accused of indecently assaulting boy in 1980s . she taught at george osborne 's london school st paul 's in barnes . charged as part of an investigation into child sex abuse at the school . five people have now been charged by officers from operation winthorpe .\nquarter million people without power in sydney and nearby areas . a large storm system brought damaging winds and flooding to parts of australia . the flooding is affecting public transportation services , residential and coastal areas .\nkerrie armitage , 28 , from leeds , suffers from an allergy to water . external exposure to water - rather than drinking liquid - causes a reaction . condition also means sweating or crying can trigger a painful flare-up . also suffers from exercise-induced anaphylaxis , so has put on weight .\nowners of sugar pine mine called in armed guards to protect their claim . gold miners have appealed a federal stop-work order , u.s. officials said . tensions remain high with supporters complaining of federal overreach . armed guards from conservative oath keepers network among protesters . officials claim they found equipment on site indicating operations inconsistent with standard mine development requirements .\nleanne bourne , from essex , discovered her partner was having an affair . was horrified when the other woman turned out to be her sister larissa . larissa even gave birth to steve 's child in august 2011 . had initially claimed that she did n't know who the father was . more than three years on , sisters are still struggling to overcome the affair . leanne and larissa appear on my sister had my boyfriend 's baby - and other betrayals , tonight at 10pm on channel 5 .\nnikki and kyle kuchenbecker went about perfecting a routine to the toe-tapping pop song , classic by mkto . video footage shows them getting into the groove with an attentive audience watching on . at one point nikki 's father makes an appearance , in keeping with tradition . to date , the clip of them in action has been watched more than 900,000 times with many viewers giving it a big thumbs up .\nforster damaged his knee in recent 2-0 premier league win over burnley . england goalkeeper has undergone surgery but faces months out . southampton manager will wait for further news before making signings . kelvin davis will deputise until the end of the campaign . sixth-placed saints travel to everton on saturday .\nanother intimate election interview by the prime minister and his wife . mrs cameron , 43 , reveals her doctor 's advice against having more children . tory leader david quickly interrupts to say : ` that 's another story , darling '\nbarway edwin collins , 10 , went missing from his crystal , minnesota apartment complex march 18 after school . on saturday , searchers from boy scout troop found a body ten feet from mississippi river 's edge which was identified as barway . crystal police chief said electronic evidence shows boy 's father pierre collins , 33 , was in area where body was found at time he disappeared . hennepin county medical examiner said the cause and manner of barway 's death are still being investigated . mr collins was arrested monday on suspicion of second-degree murde .\nlewis hamilton sprayed liu siying with champagne after win in china . he was criticised as ` selfish and inconsiderate ' by an anti-sexism group . visual art graduate siying said she ` did not think too much about it at all ' hamilton said he would have been concerned if she was unhappy . the defending world champion spoke ahead of the bahrain grand prix .\njuventus keeper gianluigi buffon says he has no plans to retire soon . italy international says he will be the first to bow out when his level slips . but feels it would be a waste to retire now because he is still playing well .\ntombs discovered at a ceremonial site , tenahaha in cotahuasi valley . infants were kept in small containers , and others had limbs removed . in one tomb , researchers discovered 400 isolated human body parts . the movement of bodies may have helped create a sense of equality .\nyulia simonova said she wanted the teenager to suffer ` unbearable pain ' offered to pay ` hitman ' # 1,400 to murder the boy in police sting operation . now faces 15 years in prison after being charged with attempted murder .\nyoung girl in gardena , california , disappeared from car wash at 4.55 pm . discovered sitting alone in parking lot outside burger restaurant at 7pm . police searching for driver of white nissan altima with tinted windows .\njames boase was twice the drink-drive limit when he struck a car . the pub landlord claimed he went sleepwalking after going to bed . magistrates in torquay dismissed his explanation and convicted him . after his conviction , boase said : ` it is my intention to never drink again '\nlotatoa ` lota ' ward was diagnosed with a brain tumor in october 2014 . he has since had to undergo four surgeries on his brain . just before his latest surgery , lota ran in the 10th annual antelope island buffalo run outside of salt lake city , utah .\nbiologists at durham university spent four months recording gibbon calls . they recorded gibbons making 450 ` hoo ' calls from 25 animals that were impossible to distinguish with the human ear and were often inaudible . each call was found to relate to different contexts like foraging , meeting neighbours , singing to mates or warning others about a predator nearby . hoos about birds of prey were the quietest so not to alert the predators .\nchelsea are 10 points clear at the top of the barclay 's premier league table . they face second-placed arsenal on sunday , and can open up a huge gap . oscar believes that winning the title can push chelsea to further success . he admits that an in-form arsenal will pose a tough test for chelsea . watch : chelsea fans storm emirates stadium to play practical joke .\nalan pardew insists every player has a price , even yannick bolasie . but pardew says # 20m price tag on bolasie is too low . the crystal palace manager says his whole squad is under-valued .\nstar wars fan went to a star wars convention for new force awakens film . he met his hero r2d2 who began spinning around with the child . boy can be heard giggling uncontrollably as r2d2 mirrors and follows him . child was at a convention in anaheim , dressed in star wars merchandise .\npilot stopped during security checks as the flight prepared to depart on saturday night . cathay pacific runs regular flights between its hong kong hub and london . the male pilot has been bailed pending an investigation .\nap mccoy 's mount benvolio withdrawn from scottish grand national . paul nicholls pulls horse due to unsuitable drying conditions at ayr . mccoy is due to retire next week after over 4,000 career wins .\nman came to hospital complaining his thumb hurt and he could n't move it . said he had been playing candy crush saga all day for 6 - 8 weeks . doctors found he had torn his tendon - but the man had felt no pain at all . experts : pleasure associated with a game can release natural painkillers .\njoe root hit 118 not out to help england into a 74-run lead on day three . it was the yorkshireman 's sixth test century . captain alastair cook scored 76 in a century stand with jonathan trott -lrb- 59 -rrb-\nfind the fda 's official report for the recalled product . if the product is within the use-by date , it should still be recalled .\nanthony corrales claims he was driving with his wife and daughter last june near a casino in new york city when a car cut in front of him . corrales claims he got out to write down the car 's license plate number , and was then mowed down and driven for several blocks on the hood . the driver of that car , robert muller , was let off by police while corrales was charged with harassment and breaking the windshield . muller claimed it was corrales who jumped on the hood of his car after telling him ; ` get out of the car tough guy ' video footage from the casino shows corrales on the car hood while muller drives with his wife and daughter in the car . ` instead of deterring mr. muller from future dangerous acts of road rage , the police ensured that he can continue to use his car as a weapon with impunity , ' said corrales ' lawyer leo glickman .\nmario balotelli missed liverpool 's clash at blackburn due to illness . the striker has no future at anfield after brendan rodgers lost patience . the liverpool boss will concede he made a mistake in signing balotelli . read : robbie savage brands balotelli 's absence at blackburn ` pathetic ' . click here for all the latest liverpool news .\nthe bbc has made light of clarkson fracas in a comedy programme . it shows bosses holding emergency meeting after he uses the word ` tosser ' the episode was filmed last july , but the narration has been tweaked .\ntim sherwood and chris ramsey worked together at tottenham last year . sherwood 's aston villa side take on ramsey 's qpr at villa park tuesday . villa are 17th in the premier league and only three points above qpr .\na guard was shot and critically injured outside the u.s. census bureau headquarters in suitland , maryland on thursday night . authorities have connected the incident to a dc armed kidnapping that led to a police chase . the census bureau campus was briefly locked down as authorities assessed the situation . the police chase ended back in northeast dc where the suspect was shot in a popular strip of bars and restaurants .\nbbc paid for research into how smiley faces could be used in news stories . licence fee payers ' money was spent on the ` ridiculous ' 44-page document . designers told to make emojis of gary lineker and graham norton 's faces .\nthe three-year-old boy picked up gun inside a cleveland , ohio , home . he then pulled the trigger , shooting and killing braylon robinson . it is unclear whether victim was related to the youngster who shot him . baby 's mother could be heard screaming on the back porch on sunday . police are trying to determine who left weapon within the child 's reach . force chief said of accidental shooting : ` this is a senseless loss of life '\nbrazil international wants to win his place back at stamford bridge . he has not completed a full 90 minutes for chelsea since february . ' i do n't see why i would think of leaving , ' said the 23-year-old . chelsea face resurgent manchester united in premier league on saturday .\nlos angeles kings forward jarret stoll was arrested friday on drug possession charges . the nhl star was caught in the security line to the wet republic pool at mgm grand hotel . andrews surfaced for the first time after her boyfriend 's arrest on saturday . stoll 's charges include possession of class 1 , 2 , 3 and 4 controlled substances . nhl security has been notified and kings are aware of situation as well .\nnine-year-old william kulk died in hospital on sunday night . his eight-year-old sister piper died on sunday morning . they were both involved in a horrific car crash on the nsw central coast . over $ 32,000 has been raised to help the devastated family . were travelling with elder brother , mother and grandmother . they had spent the day at the royal easter show in sydney . their brother daniel , 12 , is in a stable condition in westmead hospital .\nthe night wolves biker gang has been banned from entering poland . they are pro-putin , and the russian leader has ridden with them . poland is extremely critical of russian actions in ukraine . germany has also said that the russian bikers would not be welcome .\nkentucky judge olu stevens is facing calls to be sacked after he criticized a couple 's victim impact statements . tommy and jordan gray and their three-year-old daughter were robbed at gunpoint at their louisville home in 2013 by two african american males . jordan wrote in her statement that her daughter is still ` in constant fear of black men ' . at the sentencing for one of the men , stevens accused the grays of fostering racist stereotypes in their 3-year-old daughter 's mind . ` had the perpetrator been white , i doubt it would have resulted in such gross generalizations , ' wrote stevens afterwards on facebook . friends and family of the grays have accused stevens of being racist and are calling for him to be fired .\n`` we did everything that we could do , '' kenya 's foreign minister says . despite intelligence , rapid response team stuck in nairobi for hours after massacre , official says . al-shabaab 's mohamed mohamud `` has a lot of grudges against the kenyans , '' expert says .\nfed up local slams ` tragics ' taking up carparks in wealthy sydney suburb . ` if you ca n't afford to park ... do n't come here ' letter left on windscreen reads . other locals shocked that someone in their community would leave note . ` we were horrified such a nimby culture existed in cammeray ' they said .\nincreased demand for coloured stones has seen their prices soar . value of diamonds has been vastly overtaken by sapphires and rubies . auctioneers are now branding them a better investment than diamonds . celebrities such as kate middleton have driven the craze .\nsunderland manager dick advocaat insists he is not underestimating the significance of sunday 's game against local rivals newcastle . while in charge of rangers in 1998 , advocaat made the mistake of playing down the old firm game against celtic and lost 5-1 . the dutchman does not want a repeat of that embarrassment . he is considering starting winger adam johnson for the game , for the first time for his arrest on suspicion of sexual activity with a 15-year-old girl .\nroyal baby will be born at st mary 's hospital in paddington , london . pm says he supports the right of people to choose treatment options . cameron is praying for ` happy , healthy news for that wonderful couple ' prince george was born at same hospital two years ago in july 2013 .\nforeign minister julie bishop attracted criticism and applause for move . views on social media were mixed about respecting local custom . opposition leader bill shorten supported bishop 's decision .\nfirst-team squad play head tennis with future talent at academy day . presence of phil jagielka , james mccarthy and co proves a huge success . roberto martinez and his staff also at finch farm for annual fun event . everton are unbeaten in their last six premier league games , winning five .\ndino maglio has been sentenced to six and a half years in jail . he offered the teen , her mother and her sister a place to stay at his flat . they came into contact with him in italy via the couchsurfing website . he spiked a glass of baileys liqueur the girl was drinking . he admitted drugging the 16-year-old but claims the sex was consensual . maglio was ordered to pay $ 83,000 to the victim and $ 20,000 to her mother . more than a dozen women have come forward claiming he assaulted them .\nhuddersfield have plummeted to ninth in super league after a horrible easter . paul anderson admits his misfiring side need to change going forward . they face catalan dragons , who have the best defence around , on sunday .\ngisele bundchen walked the runway for the last time wednesday night in brazil . the supermodel announced her retirement from runway modeling over the weekend . she plans to continue working in other facets of the industry .\nrelationship issues and sexual problems discussed over a pint with mates . hidden cameras recorded 70 hours of footage at lord nelson , east london . cameras did not show any mention of football and women rarely discussed .\nfrom belfies to butt implants , the kardashian clan has inspired many a trend . the latest : kylie jenner 's pouty lips spark the #kyliejennerchallenge .\ngroup released in northern iraq made up of 40 children , women and elderly . were piled onto a minibus that then drove them to peshmerga positions . prisoners spent nearly a year in isis captivity , kurdish military has said . no explanation has been given as to why the 216 yazidis were released .\ntwitter account claimed to be linked with group behind anti-islam protests . originally believed reclaim australia gave control of feed to a supporter . however , ` jeremy ' began to tweet jokes as the protest in sydney started . thousands attend reclaim australia rallies across the country . protesters clashed with anti-racist activists in sydney and melbourne .\nlucy scott is an edinburgh-born illustrator and mother-of-one . after having first child , lois , in 2012 , she decided to create honest book . doodle diary of a new mom looks at chaotic , realistic aspects .\nmauricio pochettino believes harry kane still has so much more to give . kane scored against newcastle to take his season tally to the 30-mark . he becomes first tottenham player since gary lineker to reach that tally . pochettino is convinced 21-year-old england hitman can improve further .\nsian harkin used school chequebook to pay for # 30,000 work on her home . harkin , 54 , married to bank manager , now jailed for fraud , theft and forgery . judge said she carried out a ` persistent breach of trust ' over six months . lee slocombe who carried out work at harkin 's home earlier jailed for fraud .\ncloud appeared in central china 's hunan province last friday . a university student snapped the moment on his way to the library . picture has sparked tongue-in-cheek debate on mother nature 's password .\n2005 to 2008 models of mini cooper and mini cooper s face recall . only one person injured so far because of error in passenger detection mat . bmw will offer free replacement mat for part manufactured in germany . ten per cent of models being recalled thought to be affected by problem .\nvillage watchman fought off a wild leopard armed with only a stick in india . managed to strike the big cat on the head before it dumped him to the floor . bystanders could be heard screaming as it stood at the feet of the man . managed to fend off the leopard with his stick while still on the ground .\njurgen klopp announced that he will leave the club in the summer . klopp has encouraged the players to ` keep smiling ' ahead of his departure . borussia dortmund have struggled this season and are 10th in bundesliga .\n47-year-old arrested on suspicion of perverting the course of justice . released from bail conditions almost a year after his arrest last july . police say he provided details which have progressed investigation . miss lawrence was reported missing by her father in york in 2009 .\ndr mehmet oz is vice chairman at columbia 's college of physicians and surgeons and is a professor of surgery . he said in a statement that his show provides ` multiple points of view ' , including his , ` which is offered without conflict of interest ' comes after ten top doctors sent letter to school urging for oz 's dismissal . said there 's no scientific proof his ` miracle ' weight-loss supplements work . columbia said it ` is committed to the principle of academic freedom ' university has not removed tv celebrity doctor from his faculty position .\nthe couple are in their 50s and from cleveland , ohio . ship with 1,500 passengers aboard left tampa , florida , for a two-week caribbean cruise on sunday . the bodies were discovered thursday when crew members checked on the couple in their stateroom .\nmatej vydra opened the scoring with his fifth goal in seven matches . watford could not hold on after marco motta gave away a penalty . he was shown a straight red card and darren bent scored the spot kick . in the second half , tom ince scored to complete derby 's comeback . watford were n't finished though , and odion ighalo levelled at 2-2 .\nalison saunders , director of public prosecutions , facing furious backlash . criticism over her decision to spare former mp lord janner from the dock . janner not charged despite 22 allegations of offences against nine victims . campaigners , police and mps have accused her of ignoring victims ' rights .\nelijah mckenna , 11 , was mauled by neighbor 's three rottweilers in oklahoma saturday . his 9-year-old sister , alyssa , came to his rescue by scaring off the dogs and carrying injured boy home . elijah sustained deep cuts to his head and countless bite marks all over his face and body .\njohn howard , 66 , took cash from overseas press and media association . he had been a member for 30 years but left company facing bankruptcy . father-of-three enjoyed monthly # 300 meals and sent money to his wife . howard was jailed for two and a half years at canterbury crown court .\njose mourinho was speaking ahead of chelsea 's visit to arsenal . he made an effort to play down talk of not respecting arsene wenger . but mourinho was stunned by a cleverly worded question regarding his clashes with wenger and chelsea 's title bid . mourinho : cesc fabregas chose chelsea over arsenal to win trophies . click here for arsenal vs chelsea team news and probable line ups .\nsurvey of 4,000 undecided voters found slim majority favour prime minister . 37 % of floating voters impressed with cameron while 31 % with miliband . separate poll suggests ukip 's vote is being squeezed in key constituencies .\ngrayson moore , annabel jensen and sara woodhouse are transgender . moore , formerly grace , realized in high school and takes testosterone . jensen , who was born christopher , also takes hormone treatments . mormon church will not baptize anybody who has sex change procedures . woodhouse transitioned later in life - he was married with a daughter . the three have found varying degrees of acceptance into mormon life .\n`` out of sight , out of mind '' does n't apply to communities along the gulf of mexico , philippe cousteau says . we must take the time and effort needed to understand our natural resources , he says . he says our understanding of how the gulf works remains limited .\njoni mitchell was hospitalized on tuesday after being found unconscious in her california home . mitchell has suffered from morgellons disease throughout her life , and has recently dedicated herself to trying to get it accepted as a medical condition . sufferers claim they feel the sensation of bugs or parasites constantly crawling under their skin and biting them . they also say they are constantly itching , and large sore develop on their skin from which colorful fibers grow . the medical community believes it is likely a mental illness and that sufferers are anxious , depressed or even suffering from substance abuse . mitchell , who has been a heavy smoker since she was 9-years-old and had polio as a child , has admitted she dealt with cocaine addiction in the 70s . individuals have said that taking antibiotics cured them of morgellons , though some experts say it is simply a placebo effect .\nap mccoy will struggle with his new routine now he has retired from racing . 20-time champion jockey described saturday as the hardest day of his life . his short-term list of diversions will include watching his beloved arsenal . conditional jockey champion sean bowen tipped to follow in his footsteps .\npolice : yuhei takashima , 64 , says he had sex with girls as young as 14 in philippines . officers seize nearly 150,000 photos that the former principal kept of his activities .\nbristol city 's lead at the top of the league one table was extended to eight points following a 3-0 win over swindon . kieran agard scored the home side 's opening goal from inside the box in the first-half . joe bryan made it 2-0 with a superb free-kick on 80 minutes before aaron wilbraham wrapped up the win from close range later on .\nrichie benaud passed away at the age of 84 on friday . he was as well known for his commentary as his cricket . benaud never lost a series while he was australia captain . leading figures from the sport were quick to pay tribute .\ncristiano ronaldo scored eight-minute hat-trick in first half as real madrid thumped granada 9-1 on sunday . portuguese star helps himself to two more goals in second period to make it five goals in a game . karim benzema also nets double , while gareth bale grabbed the opener at the santiago bernabeu . diego mainz scores own goal in second half while roberto ibanez nets consolation for the visitors . carlo ancelotti 's side now one point behind leaders barcelona in la liga table .\nchris sussman said particular jokes must go through ' a lot of layers ' cautiousness comes after a ` difficult few years ' at the bbc , he added . made the comments at a bafta event on free speech and television .\nreal madrid have not beaten their neighbours in six meetings this season . they will meet again in champions league last eight this week . carlo ancelotti is under increasing pressure after poor form in 2015 . he masterminded real 's 10th european cup triumph last season . but that win over atletico has n't made his job any more secure .\nu.s. navy is developing an unmanned drone ship to track enemy submarines to limit their tactical capacity for surprise . the vessel would be able to operate under with little supervisory control . advances are necessary to maintain technological edge on russia and china , admiral tells house panel .\nmanchester united have six ex-players in champions league semi-finals . javier hernandez scored the winner for real madrid against atletico madrid . paul pogba , carlos tevez and patrice evra play for italian side juventus . cristiano ronaldo set up hernandez 's goal for real madrid on wednesday . barcelona 's gerard pique helped keep out paris saint-germain . hernandez was the hero for madrid but he will need to find a new home .\nsome are child actors , others are former hollywood heartthrobs . can be attributed to poor lifestyles , career lows , or shattered relationships . renée zellweger caused controversy with her dramatically altered face .\ndefending champs czech republic beat france to reach the fed cup final . petra kvitova defeated caroline garcia in straight sets for 3-0 lead . the czech 's have reached their fourth final in the past five years .\nvatanka : tensions between iran and saudi arabia are at an unprecedented level . iran has proposed a four-point plan for yemen but saudis have ignored it . vatanka : saudis have tried to muster a ground invasion coalition but have failed .\nmark howe , 21 , researched what weapons his tv icon used on victims . sent text messages to friends saying how much he hated mum tina . the 48-year-old tackled him over cannabis use at family home in leicester . found lying dead inside flat by her father-in-law brian wardle . kris wardle said he was devastated at death of his beloved wife . kris wardle and his father brian appear on britain 's darkest taboos , sunday night at 9pm on ci .\njoseph o'riordan , 73 , stabbed wife eight times after discovering her affair . she was left with life-threatening injuries to her torso , chest , arms and back . yesterday brighton crown court heard about deal he was ready to offer her . he had told friend about the idea while in the pub just days before stabbing .\ntulip siddiq accused of failing to tell voters she met vladimir putin in 2013 . labour candidate met russian president at signing of billion-dollar arms deal . former aide to labour leader ed milbiand is standing for party in hampstead .\nnewark man , 21 , said he recognized the rapper , whose real name is earl simmons , while at an exxon station on sunday . he told police they had a conversation about rap music before man in dmx 's entourage allegedly pulled out a gun and demanded money . victim said dmx allegedly snatched the money before driving off .\neverything you need to know about how the uk election really works . things like : the candidates , the issues , who 's likely to win , the importance of bacon sandwiches . plus , if the queen is n't in charge , what does she do ?\nwas promoting avengers : age of ultron in interview for channel 4 in uk . hollywood star was furious when questioning suddenly became personal . stormed off when asked about drugs and his relationship with his father . he spent time in california substance abuse facility and prison . actor was arrested numerous times between 1996 and 2001 . downey jr 's son indio was arrested for drug possession last june .\nvladimir bukovksy will appear at cambridge magistrates next month . 72-year-old is to be charged with making indecent photographs of children . dissident spent 12 years in prisons for spreading anti-soviet propaganda .\njoel burger and ashley king have known each other since kindergarten . they got engaged and announced with a photo taken at burger king sign . chain found out and contacted couple about paying for their july wedding . bk will provide personalized gift bags , mason jars and crowns for event .\nresearchers at the american museum of natural history in new york have found 99 footprints that appear to have been left by male homo erectus . the footprints - the oldest human tracks in the world , found in in ileret , kenya - may have been left by group hunting antelope or wildebeest . it suggests homo erectus were probably sophisticated and deadly hunters .\nkendra moad of kearns , utah followed her grandfather out of the house friday morning and into the driveway . he did not see the 20-month-old toddler and ran her over as he pulled his truck up in the driveway to move the trash cans . this is now the fourth time since august that a child was accidentally run over and killed in their own driveway by a family member in utah . kendra suffered severe head trauma and was unconscious when workers arrived , and was pronounced dead shortly after at a nearby hospital . the grandfather is not facing any charges at this time , but the case remains under investigation .\nsian lloyd visited adelaide , hahndorf and clare valley in south australia . former itv weather forecaster caught the famous indian pacific to perth . she ticked off a bucket list item by cycling the clare valley riesling trail . kalgoorlie gold mine and margaret river impressed in the country 's west .\nhibernian will not form a guard of honour for scottish championship winners hearts during the edinburgh derby . boss alan stubbs believes it would cause unrest among the fans . hearts head coach and defender aim ozturk feel that stubbs ' decision shows a lack of respect .\nthe sea shepherd vessel bob barker has safely rescued 35 crew members . it comes after bob barker followed the accused poaching vessel thunder . thunder issued a distressing signal , reporting the ship was sinking . sea shepherd claims thunder deliberately sunk the ship to destroy proof . this was the world 's longest pursuit of a poacher in maritime history .\ntrip included brian lufty , 52 , of montreal , his stepson sebastien and son jason , friend neil janna , 51 , and his two sons jesse and josh . they made the trip in three days crossing over five states to visit original home of kentucky fried chicken in corbin , kentucky . lufty visited harland sanders cafe the first time in 1985 and again in 1995 . while at the restaurant they ordered their fried chicken and brought their own plates , silverware , glasses , artificial flowers and candles for the table .\ndick advocaat ` enjoying every minute ' of his time at sunderland . he has given his team five games to secure premier league future . sunderland host crystal palace on saturday and beat newcastle last week .\nlocations in ceredigion , powys and pembrokeshire being used for training . also used to radicalise mulsims , according to counter-terrorism officer . he said those involved are ` seemingly normal ' but have an ` ulterior motive '\nkate winslet submitted application for a sea wall along west sussex coast . she wants to build a 550ft-long sea wall to protect her home from flooding . but natural england has raised concerns about environmental impact . it recommended her local council refuse the planning application because of concerns wall could destroy habitat for rare birds and wetlands .\nmanchester united signed a # 750million , 10-year kit deal with adidas . but the old trafford club will have to wear old nike kit on us tour . united are expected to stage a 12-day tour of the us west coast . there is no buy-out agreement in nike 's current deal which ends in july .\njim ratcliffe is the founder and chairman of chemical giant ineos . the swiss-based billionaire said the house would be his only uk home . the house features several revolutionary energy saving measures . the home 's heating and hot water systems all use renewable energy .\nstefano pioli is enjoying the success but remains focused on results . pioli 's men reached their eighth coppa italia final with a win over napoli . third-placed lazio are a point behind roma in second with nine serie a games remaining .\ncertain products at retailer are more expensive per unit than supermarkets . comes as poundland announced sales exceed # 1bn for first time last year . company 's success has been put down to shoppers hunting for bargains .\nit was posted to twitter on sunday by an anti-islamic state activist in syria . it is believed to be the latest chapter in the group 's propaganda campaign . it follows a series of shocking posts of young boys being radicalised . the terror group grooms children to take part in jihad from a young age .\nelderly fishermen in guilin , china , keep the unusual , ancient tradition of cormorant bird fishing alive . the bird , which they have often raised from a chick , dives into the water and retrieves a carp for its owner . this is an ecologically safe way of fishing , as the birds are not harmed and the men only catch what they need .\nsouths hooker issac luke has become embroiled in a social media storm . the 27-year-old had posted a heartfelt appeal to find a young injured fan . but he was taunted by bulldog fans on instagram over his posts . he lashed out at them , calling them ` lil poofters ' on saturday . the offensive comment prompted an immediate social media backlash . the post was immediately deleted and luke has since apologised . the rabbitohs star is now under investigation by the nrl integrity unit . it comes after souths sealed a bitter win over the bulldogs on friday .\nas an island race , no one in britain lives more than 70 miles from the sea . enterprise neptune is the national trust 's campaign to save the coastline . since starting in 1965 the trust has acquired 742 miles of the british coast .\nintelligence agencies like the cia , nsa , and national counterterrorism center employ therapists to help analysts deal with emotional trauma . analysts watch graphic content to gain clues about actions of terrorists . at times terrorists will embed encrypted messages in photos and videos . clips include violent beheadings and attacks but they are ` mostly ' porn . analysts often suffer feelings of sickness , grief , anger and depression .\nimages of cricket both on the pitch and in a rubbish dump in dhaka , bangladesh , among short-listed pictures . winner of wisden-mcc cricket photograph of the year was matthew lewis ' shot of dwayne bravo taking a catch .\nricky dearman was branded cult leader in bitter battle over his children . he said : ` they 'd said we were killing babies , i was shipping them in , we would cut the babies ' throats and then would drink the blood . it 's horrific ' judge found mother forced children to lie about sexual abuse and torture . ella draper and abraham christie wanted by police but have fled abroad .\njordan spieth won the masters at augusta in record fashion on sunday . he was pictured at the top of the empire state building in his green jacket . spieth spoke of the masters legacy and how missing out drove him on .\nandy awford has been sacked as manager of league two portsmouth . decision comes after the blues disappointing 3-1 defeat to morecambe . portsmouth were tipped for promotion , but have endured a poor campaign . blues sit 11 points adrift of the play-off places with four games to play .\ngirl identified as joselyn alejandra niño was stuffed in a beer cooler . picture of her body was uploaded before it was dismembered . she gained notoriety when a an image of her holding a rifle circulated . two assassins , or ` sicarias ' , before her are behind bars .\nyesterday was officially hottest day of 2015 with a high of 22.7 c - with temperatures rising to 25c today . weather caused by warm air from azores is creating conditions we might usually experience in july or august . it is set to get cooler later in the week but temperatures will remain higher than the average for this time of year . families are warned to use suncream if they are relaxing outside while firefighters issue warning over fire risks .\nlebron james scored 23 points against his former side on thursday . miami heat 's dwayne wade injured his knee as his side lost to cleveland . golden state made it 11 straight wins after harrison barnes ' late score . houston beat texas rivals dallas thanks to 24 points from james harden .\nmanuela arbelaez handed the price is right contestant andrea a $ 21,960 hyundai sonata se for free on thursday 's show . the absentminded model revealed the correct price of the car too early . host drew carey was left with little opinion but to tell the contestant , ` congratulations ! manuela just gave you a car ! the game is over , folks '\nrajul patel stole # 30,000 worth of valuables from london gym members . today he was jailed for 32 months for carrying out eight burglaries in 2014 . the married father-of-one took wedding rings , phones and rolex watches . he was caught when he returned to locker room just after starting workout . patel tried to escape arrest by hiding behind a clothes rack in nearby shop .\nlydia ko is seven shots behind leader kim sei-young . ko had been aiming for a 30th consecutive under-par round . but the world no 1 could only finish on one-over par .\nbinge drinking when young can cause changes in dna in brain cells . the changes mean connections do not form as normal between the cells . this alters the way genes are expressed and changes behaviour . however , experts discovered a cancer drug can reverse the changes .\nesteban cambiasso says saving leicester will feel like winning a trophy . the argentinian has become a key player for nigel pearson 's side . leicester are currently seven points adrift at the bottom of the table . click here for all the latest leicester city news .\nreal madrid have n't beaten local rivals atletico in six attempts this season . they clash in the first leg of the champions league last eight on tuesday . marcelo says the players are not thinking about their recent record .\ncharlie adam stunned the premier league with a goal from his own half . stoke midfielder struck the equaliser in a 2-1 defeat at chelsea . david beckham and xabi alonso have also hit famous wonder-strikes .\nviewers took to twitter to argue over the colour of nicola sturgeon 's dress . miss sturgeon 's dress appeared blue in some lights and green in others . others thought she was wearing a grey dress during last night 's debate . the first #thedress debate was sparked by scottish student caitlin mcneill .\nwest brom owner jeremy peace is looking to sell the midlands club . he is open to offers and is understood to want between # 150m and # 200m . tony pulis says peace has given him his word that a takeover will not drag . pulis also praised saido berahino 's impact at the club this season .\nindian batsman joins division one champions until end of may . yorkshire cancelled the contract to pakistan batsman younis khan . khan instead wants to be part of pakistan 's tour of bangladesh . aaron finch will join yorkshire after the indian premier league .\nandre ayew is free to talk to foreign clubs with his marseille contract expiring at the end of the season . ghana international has received offers from swansea , newcastle and everton while wolfsburg and borussia dortmund are interested . the swans are also chasing schalke defender christian fuchs .\nteacher blunder revealed when mock exam arrived and text did n't feature . students now having to cram to learn new text in a few weeks . extra english lessons put on at wellington college in berkshire . school apologised and said investigation has been launched .\njohn tuite , 22 , and carlos santolalla , 25 , share an instagram account that their old agencies pressured them to delete . the couple claims that the world of male modeling is n't as gay-friendly as most people believe . the in-demand duo also djs at hot new york city clubs and rubs shoulders with celebrities .\neidur gudjohnsen rolled back the years to open the scoring . craig davies fired home a second-half brace to ensure his side claimed win . cardiff and bolton remain in mid-table with five games to go .\nsandal uses adjustable buckles and a strap on the toe to expand in size . kenton lee dreamt up the shoe after seeing children in kenya barefoot . he hopes the shoes will help children in orphanages in poorer countries . children from one to six years old can go up a shoe size in a few months .\njoseph o'riordan allegedly grew suspicious of wife and hired investigator . the town councillor found out amanda had an alleged affair with postman . he 's said to have knifed her chest , torso and back telling her ` it 's your fault ' court heard 999 call where he admits attack but denied attempted murder .\nraymond howell jr. 's body was found in a culvert in mckinney , texas early on thursday , around four miles from his school . police have not released his cause of death but friends on social media said he had died from a bullet wound . friends said he had been bullied by older kids and had asked for a transfer .\nthe women were traveling near savannah in two vehicles when a tractor-trailer plowed into an suv , then rolled over a small car . killed were emily clark , morgan bass , abbie deloach , catherine pittman and caitlyn baggett - all juniors at georgia southern university . the georgia state patrol said three people also were injured and seven vehicles were damaged . it could take investigators months to determine whether to file criminal charges against trucker john wayne johnson . johnson was employed by trucking company based out of mississippi whose drivers have racked up 266 violations over past two years .\nnew orleans pelicans beat the san antonio spurs 108-103 on wednesday . oklahoma city thunder 's defeated minnesota timberwolves 138-113 . new orleans pipped thunder to eighth seed in the west via tiebreaker . brooklyn nets beat the orlando magic 138-113 in the eastern conference . indiana pacers lost 95-83 to the memphis grizzlies . results meant that brooklyn took the no 8 seed via the better tiebreaker .\nduring exchanges with marr , chancellor repeatedly ducked questions . mr osborne only said it would come from conservatives ' ` balanced plan ' . labour deputy leader harriet harman said the promise was ` illusory '\nholly beard and steve hancock tipped the scales at 41st between them . after being humiliated at work holly joined weight watchers . steve switched his eating habits too and the couple lost a combined 11st .\ninspired by the aesthetic of the belle epoque era , the jacques garcia designed hotel is both opulent and edgy . a mix of arabian and napoleon iii decor , the pigalle haunt harkens back to the city 's pleasure houses of yesteryear . also available for guest use : a charming conservatory , library bar and celestial spa available for private rental .\njondrew lachaux , 39 , and kellie phillips , 38 , face child abuse charges . pair decided to turn themselves in after the discovery of three children . decomposed body of a three-year-old found in a broken-down mercedes . a baby had to be admitted to hospital suffering from severe malnutrition .\nformer olympian said he has ` always been on the conservative side ' of lgbt issues . said : ' i would sit in church and always wonder , `` in god 's eyes , how does he see me ? '' '\nmazzy was on board a southwest airlines flight over the us when the entire airplane sang her happy birthday and brought her to tears of joy . mazzy , who just turned four , suffers from spina bifida and is paralyzed from the waist down . the crew of the airplane made mazzy a crown from pretzels and a birthday cake made from toilet paper .\nit has been suggested the idea is part of move to smarten up tesco stores . industry insider says ` sweaty , overweight workers ' are putting shoppers off . among the advice tips is to get dancing in stores or have walking meetings .\ndirk kuyt agrees one-year-deal to move back to former club feyenoord . the dutchman left in 2006 to sign for liverpool before moving to turkey . kuyt made 208 appearances for liverpool , scoring 51 goals . click here for all the latest liverpool news .\nrajpal singh , 34 , had become depressed and began eating metal objects . over three years he swallowed around 140 coins , 150 nails and more . says he did n't realise this habit could be the cause of his stomach aches . has undergone 240 procedures to remove objects - but some still remain .\nphotograph showed mysterious pair of boots behind little girl . no one else was there , says the little girl 's father , who took the picture . martin springall said their picture was not photoshopped . he also said no one was standing behind the girl . sceptics believe it could be a rocky outcrop or trick of the light . ' i really do n't like dwelling on stuff like this , to be honest - it freaks me out ' ` i 'm about as skeptical as they come when it comes to the paranormal , so your guess is as good as mine '\nkellie cherie phillips , 38 , and jondrew megil lachaux , are likely in nevada , los angeles or oakland , police say . couple left another 17-year-old daughter alone with her own baby and the couple 's daughter , 3 . police found dead girl after the 17-year-old brought the critically ill baby the hospital .\nprime minister embarks on tour of alnwick high street to woo voters . follows criticism of sterile , boring campaign ignoring ordinary people . tory leader told to stop ` name-calling ' and heckled by a busker .\ncharles manuel of lamoni , iowa admitted to a review board that he traded sexual favors for his services . manuel also fessed up to performing exorcisms and to telling patients to stop taking medications prescribed to them by a medical doctor . the iowa board of chiropractic required manuel to pledge he would not apply for reinstatement of the license , but only for 10 years .\nindian premier league player says he was approached to match fix . unnamed ipl player represents rajasthan royals in lucrative league . click here for all the latest ipl cricket news .\nneymar struggled to impress in barcelona 's slender win over celta vigo . quinton fortune has questioned why neymar 's form has dipped . neymar has failed to score in his last four games for barcelona . fortune heaped praise on barca for being able to scrape vital win .\nthe body farm would be located in lithia in hillsborough county . it is a joint project between the university of south florida institute of anthropology and the hillsborough county sheriff 's office . residents fear it will bring unwanted predators and a strong odor to area . usf associate professor erin kimmerle said the project could help investigators solve cold cases and other crimes . there are more than 500 cold cases in hillsborough , pasco and pinellas counties - areas close to the research facility .\njulian zelizer : washington is gridlocked and leans conservative . but liberals can launch social programs at lower levels , zelizer says . trying programs out locally can set groundwork for washington action in coming years , he says .\ntwo schoolboys approached 12-year-old and threatened to set him alight . pair doused youngster in highly flammable wd40 in subway under road . victim sustained minor injuries in broad daylight attack over easter break . police hunting the two suspects in connection with ` unprovoked ' attack .\ntickets for mayweather v pacquiao on sale online for $ 180,000 . majority of the 1,000 tickets for the general public snapped up within minutes . the fight in las vegas on may 2 is one of the biggest in the sport 's history .\nspinner named as new ambassador for liverpool fan group pak reds . the england star has been called up for last two tests in west indies . pak reds group was founded in 2011 and attained official status in 2013 . it has six different branches across pakistan .\npaul downton became the latest casualty of england 's poor performances . his exit came a day ahead of an ecb board meeting into his future . he endured a traumatic time after replacing hugh morris after the ashes . downton 's exit is not expected to be the last following poor world cup .\ntillman spent 12 years in chicago but the new team management did not declare an interest to retain his services . a staple of lovie smith 's stingy defense , he will again link up with ron rivera , whowas the bears defensive co-ordinator between 2004-06 . tillman holds a number of franchise records and the forced fumble specialist joins sean mcdermott 's scheme . he has also been honoured for his work in the community and won the 2014 walter payton man of the year award .\nsteve bruce admits hull need to pull off ` crazy results ' to avoid the drop . the tigers still have to play liverpool , arsenal and manchester united . hull are just two points away from the bottom three of the premier league . click here for all the latest hull news .\nanimal planet captures katie the giraffe 's labor and delivery . the new baby wiggles its ears , rises , tries to nurse from its mom .\njohn terry has yet again impressed in the heart of chelsea 's defence . jose mourinho should be given credit for trusting the 34-year-old . manchester city won , but is boss manual pellegrini still under pressure ? . struggling qpr and burnley could be left to rue their huge penalty misses . mourinho : hazard is worth # 100m for each leg plus cristiano ronaldo .\nsouth sydney secured a bitter 18-17 victory after a last-gasp penalty . bulldogs were leading until the referee awarded rabbitohs a late penalty . rabbitohs converted the penalty and went on to win the game . as officials made their way off the field , they were pelted with missiles . one of the officials was taken to hospital with broken shoulder . canterbury coach has apologised for the actions of his club 's supporters . bulldogs ceo said the club has called for a life ban on fans involved . police have identified two people for allegedly throwing bottles . inquiries to identify others involved in the attack are continuing .\nthe all-gender restroom opened in eisenhower executive office building . facility is first of its kind at white house and is for staff and guests . comes after executive order on lgbt workplace discrimination took effect .\nengland have never advanced past last eight at the world cup . but striker toni duggan says they 'll head to canada in june ` without fear ' duggan has scored 11 goals in 16 matches for the three lions . she had to recover from serious knee injury earlier this year . aiming for success with both england and club manchester city this year .\nsapling was planted in january-wabash park in ferguson , missouri on saturday but by sunday , its trunk had been snapped in half . by monday , it had been replanted and the ferguson police department is investigating the incident as an act of vandalism . this is the third time a brown memorial has been destroyed ; in september , a memorial went up in flames and in december , one was hit by a car .\nvideo captures brawl between officers and family in cottonwood , arizona . police fire tasers and use pepper spray as they try to separate the group . one of the officers is put into a headlock during the violent confrontation . moments later an officer is shot and enoch garver , 21 , is killed . members of the band , called matthew 24 now , have since been jailed .\ntommy connolly had n't seen his teenage cousin angela * in 10 years . in december she told him she was homeless and 32 weeks pregnant . the 23-year-old uni student told her to move in with him and supported her . now mr connolly , who lives on the sunshine coast , is helping raise her four-week-old baby boy .\nthe nomination of loretta lynch as u.s. attorney general was announced in november . she would be the country 's first african-american woman attorney general . but as her confirmation process drags on , her supporters wonder why .\nlinda thompson , now 64 , was married to bruce jenner from 1981 to ' 86 . she has published blog detailing how he told her of his gender struggles . explains how revelations led to their divorce following births of two sons . also speaks of bruce 's painful electrolysis and surgeries to feminize face . young sons noticed father 's breasts once ; she lied to cover the changes . the pair , brandon and brody , now adults , supported bruce in abc tell-all . this is despite bruce having ` cut his sons out of his life for years ' after he stopped taking female hormones and married his third wife , kris jenner .\nronaldo scored five times in real madrid 's 9-1 win over granada . it takes his total to 11 goals in eight matches against them . but granada have got off lightly compared to some teams he has faced . ronaldo has 18 goals in 12 against sevilla ; 15 in 20 versus atletico . portuguese has 15 goals in nine against getafe and 12 in six vs celta vigo .\nukip leader asked to justify lack of black and asian faces in manifesto . but he said there was one ` half black ' person and one ` fully black person ' ukip 's immigration spokesman steven woolfe has mixed heritage . included in the manifesto was also a photo of an african receiving aid .\nif her campaign succeeds , clinton will be the second oldest u.s. president . has so far used her age to win voters posting photographs of herself as a child after wwii and also using the hashtag #grandmothersknowbest . clinton leads a global group of high-achieving older women including anna wintour , judi dench , dilma rousseff and nancy pelosi .\natletico madrid drew 0-0 with real madrid in first leg at vicente calderon . mandzukic was battered and bruised during the quarter-final match . the atletico striker came to blows with sergio ramos and dani carvajal . diego simeone says mandzukic should be fit for wednesday 's second leg .\n48 per cent of people surveyed said that parking charges should be free . they topped a table of consumers ' most-loathed fees and charges . atm cash withdrawal fees and debit and credit card charges also high up . parking charges and fines made councils in england # 667million last year .\nalbert webb , 51 , ran con with sons jimmy chuter , 26 , and jesse webb , 19 . trio targeted the elderly , accosting them in the street near their homes . gang claimed they were coming to collect money for bogus roof repairs . as victims suffered from dementia they often handed over the cash .\nelderly woman in induced medical coma after husband crashes into her . distressed bystander describes woman as ` covered in blood ' couple were there to do their shopping at tesco express . tesco worker held woman in her arms whilst waiting for ambulance . driver breathalysed by police as precaution but no arrest has been made .\nthree people killed ; five wounded in attack on attorney general 's office in balkh province . staff and civilians have been rescued as gunmen engaged afghan security forces .\nrory mcilroy is favourite to win the 79th masters at augusta national . bubba watson is the defending champion and chasing a third masters win . tiger woods returns to action but has no form and worries over his game . jason day and other big-hitters look set for strong week at masters 2015 . course guide : mcilroy and more stars take you round augusta national . click here for the masters 2015 leaderboard .\nleeds rhinos claim victory in front of sell-out crowd at castleford . the super league leaders were without captain kevin sinfield .\ngerman banking giant has been fined for its role in a vast multi-year conspiracy to rig libor interest rates . deutsche bank employees defrauded counterparties in emails , telephone calls and electronic chats . settlement agreement allows deutsche bank to keep its operating license in the united states . co-chief executive jurgen fitschen expressed regret for the rigging and said no one on the management board had known about the misconduct .\nsnp leader nicola sturgeon dismissed claims she wants a tory victory . she claimed the leaked memo is down to westminster 's fear of the snp . she called on ed miliband to commit to a deal to ` lock out ' david cameron . cabinet secretary sir jeremy heywood has announced a full investigation .\nraul hector castro passed away on friday morning while in his sleep in san diego where he was in hospice care . he also served as a u.s. ambassador to el salvador , bolivia and argentina . arizona governor doug ducey said castro lived a ` full life of exemplary service to arizona and its people ' he is survived by wife pat and his two daughters mary pat james and beth castro .\nus president barack obama said on saturday that diplomacy was the best option to deal with iran 's contested nuclear program . this just two days after a framework was agreed upon which would curb iran 's nuclear program and potentially lift economic sanctions . israeli prime minister benjamin netanyahu said yesterday this new agreement would ` threaten the very survival of the state of israel ' many americans , especially republicans , also believe this has now paved the way for iran to develop an atomic bomb .\nun 's international civil aviation organization -lrb- icao -rrb- reported ` significant safety concerns ' with thailand 's aviation safety . china , south korea and japan have banned any new charter flights . the country 's airlines now receive strict inspections in australia . thailand said it plans to inform countries about the status of its aviation safety and ` the solutions to fix the faults ... as soon as possible '\nrobin wright was married to actor sean penn for nearly 20 years . after huge success in forest gump she forfeited fame to raise her children . now 49 , she says she has ` no regrets ' following success of house of cards .\nfrancis pusok , 30 , was arrested thursday after a hours long chase with police in san bernardino county , california . a news helicopter following the chase recorded police tasering pusok , putting him in handcuffs and continuing to beat him after he was subdued . the father of three was released from jail on sunday and spoke out on monday about the scarring experience . in the wake of the attack , 10 officers have been placed on leave pending an investigation into whether excessive force was used against pusok .\nharry kane has been nominated for the pfa player of the year award . kane will have to beat off competition from eden hazard to win award . mauricio pochettino says kane deserves to win the award . david de gea , diego costa , philippe coutinho and alexis sanchez complete six-man shortlist .\nbournemouth are now second in the championship following their draw . eddie howe hits out at referee after his side give up lead in stoppage time . kieran lee fired wednesday into the lead with a 36th minute header . yann kermorgant equalised with 21 minutes remaining . matt ritchie looked to have sealed the win for the cherries late on . but chris maguire had the final say with his last-ditch penalty strike .\nanother independence vote ranks 19th on list of 23 policies for scots . comes after nicola sturgeon refused to rule out staging a second vote . snp leader has also attacked the tory pledge to hold an eu referendum . but ipsos mori poll reveals scots prefer a say on brussels to independence .\nliam ridgewell is currently playing for the portland timbers in mls . the 30-year-old came up against brazilian kaka , who plays for orlando city . ridgewell welcomed his family for a visit to the united states of america . portland take on fierce rivals seattle sounders on monday at 2:30 am uk .\nsuperfans have set up camp outside st mary 's hospital in paddington . police have also begun making final preparations and conducted a search . duchess of cambridge is due to give birth to baby number two this week . prince william has completed his air ambulance training course early . the royal will now be able to remain in london with his pregnant wife .\ndays before grandchild is due , gran carole promotes baby-shower range . mrs middleton 's goodies come in pink and blue in case the sex is unknown . items in the range include a # 2.79 set of party cups and straws for # 3.49 . multi-millionaire was criticised for ` tacky ' merchandise at diamond jubilee .\nmerger between two largest cable companies have given the new firm control of 57percent of broadband internet market and 30percent of paid tv . ` today we move on , ' says comcast ceo brian roberts . comcast has 30million subscribers and time warner cable boasts 11million ; new company would have spun off or sold 3.9 million . fcc staffers recommended the merger be sent to a judge for review - a significant regulatory hurdle . regulators questioned whether merger was in the public interest .\nthe rate of co2 released from burning fossil fuels has increased . it is now similar to levels released from volcanic rifts during triassic . this created disastrous condition dubbed ` marine photic zone euxinia ' this happens when surface ocean waters become devoid of oxygen .\nfour men have been caught on cctv robbing a service station in tecomba , melbourne . the men filled a doona cover with $ 38,000 worth of cigarettes . however they failed to get the large loot in the boot . they decided to drag it alongside the car instead and lost about a third of their stash . the men are wanted for five similar break-ins in the area .\ndr. nikita levy was fired from john hopkins health systems in 2013 . he committed suicide 10 days after the revelations surfaced . investigators found 1,200 videos and 140 images of exams at his home . attorney 's fee will come from $ 190million settlement reached in the lawsuit . a baltimore judge said the agreed sum was ` unprecedented ' .\ned miliband has admitted that he cried watching the british film pride . movie centres on the 1984 miners ' strike and a group of gays and lesbians . billy elliott and brassed off could also get the labour leader blubbing .\nnew york-based writer danielle page set out to ask every cabbie she came across to share their tips on finding - and keeping - a partner .\ndiwalinen vankar went with daughter to wash clothes in vishwamitri river . a crocodile grabbed daughter 's leg and dragged her into river in west india . vankar , 58 , tried to pull daughter - kanta - free from clutches of crocodile . but after no success , she started attacking it with her washing paddle . eventually rescued 19-year-old daughter , who only suffered minor injuries .\nchelsea winger victor moses has spent the season on loan at stoke city . nigeria international has returned to stamford bridge for injury treatment . potters are chasing daniel wass , javier hernandez and lee cattermole .\nbob barker returned to host `` the price is right '' on wednesday . barker , 91 , had retired as host in 2007 .\nvideo shows espn reporter britt mchenry berating and belittling a tow company worker . drexler : she was wrong to act that way , but are n't we too quick to judge without seeing full video ?\ngrammy award-winning artist tops uk album chart for first time in 25 years . paul simon , 73 , outsold more youthful musicians such as ed sheeran . his album the ultimate collection includes 19 tracks from a 50-year-career . simon 's recent tour with sting is thought to have propelled him to top spot .\nbruce cook put up a hay bale sculpture in front of his property in victoria . mr cook says his artwork is ' a bit of fun ' which he put up on good friday . the 59-year-old says many passersby have stopped to take photos . he says police gave him a call on wednesday , ordering him to take it down . mr cook has refused to do so , even though he could face serious charges .\ncharlesetta taylor , 79 , may have her home of 70 years torn down by the city of st. louis . this so the city can make way for a campus for the national geospatial-intelligence agency . the city may also tear down 49 other homes to make sure the nga does not leave the city , and take the 3,000 jobs it provides . there are three other sites being looked at that would not displace as many people .\nmadison hurd , from seward , nebraska , was hospitalized with sepsis . hurd had heart problems and knew she would n't make it to the prom . but nurses decorated her room in the same great gatsby-theme , did her nails , hair and makeup and laid her dress over her hospital gown . hurd 's boyfriend also flew out from alabama with a tux and corsage .\ndarren gough was kevin pietersen 's best man and is a close friend of his . pietersen has rejoined surrey , hoping to earn a place in the ashes squad . but gough believes there is still only a slim chance of an england return . gough competes in the investec ashes cycle challenge this summer .\ndirector of television wants sci-fi series to be turned into film . emails show creative team reluctant to rush for fear it could flop . messages were among 173,000 hacked by north korea .\nb.b king is now out of the hospital and back at home . bluesman suffered from dehydration and exhaustion after a 2014 show in chicago . b.b. is short for blues boy , part of the name he used as a memphis disc jockey .\ndouglas murphy scraped his leg on a bin bag while clearing up after party . 47-year-old father-of-two suffered a cut so small it was barely visible . it became infected , triggering the rare condition necrotizing faciitis . surgeons were preparing to amputate when antibiotics began to work .\nin a leaked sony email cameron crowe mocks bruce jenner 's gender transition with amy pascal . when the director is asked if he has anything to show pascal from his new movie aloha he responds ; ` does bruce jenner want boobs ? hell yes ' aloha , which stars emma stone and bradley cooper , was blasted in a previously leaked email by pascal .\nsalford sealed consecutive super league wins with victory at huddersfield . josh griffin inspired red devils wita try and three kicked goals . ben jones-bishop and carl forster scored the other tries for the visitors .\nsebastian vettel stunned rivals mercedes to win malaysian grand prix . german 's first triumph for ferrari was team 's first since 2013 . victory enabled italian outfit to carry out ritual of placing flag at team gate . click here for all the latest news from the world of f1 racing .\nmaria twomey , 42 , of watford , decided hit 40 and decided it was time for a change . wanted to slim from size 14 and signed up for personal training sessions . swapped takeaways and fatty snacks for weight-lifting and hiit workouts . in a year she went from 12st 7lb to her slimmest , 8st 7lb . she 's reduced her body fat percentage from 38 per cent to 15 per cent . now taking part in miami pro world championships fitness model comp .\nthe video first went viral after being uploaded to youtube in june 2012 . it was reposted on tuesday by popular radio hosts fitzy and whipper . youtube commenters outlined a number of visual inaccuracies in the clip . swell experts declared it is impossible for waves could reach the harbour .\nmusic streaming service spotify has analysed 2.8 million ` sleep ' playlists . ed sheeran 's single thinking out loud is the top sleep-inducing song . the brit singer-songwriter appears seven times on the top 20 list .\nthe clip , which was created by the daily share , compares near-identical products for men and women and highlights the price differences . according to the creators of the video , california is one of the few states to have put a ban on ` gender pricing discrimination '\naaron hernandez , even when on trial for murder , keeps that certain bounce in his step . hernandez seemed to watch his former boss and fiancee closely when they were on the stand .\nthe child was held by his mother when he slipped and fell between 10 and 12ft into the pit on saturday around 3pm at the cleveland metroparks zoo . he was rescued by his parents before emergency responders arrived on the scene ; he suffered from minor bruises and bumps . the cheetahs seemed to ignore the boy and his parents while in the pit . zoo plans to press child endangerment charges .\nthe teenager suffered a broken jaw in 2 places and a fractured cheek bone . mother shared a photo of jaidyn on her facebook page after his operation . kat lee says her son was at an adelaide train station on saturday night . she has appealed for witnesses to come forward and speak to police . police are still investigating the matter and no arrests have been made .\nstudy by ofcom says 4g speeds in the uk are slower than promised . mobile phone companies boasted 4g would be 5x faster than 3g . but actual figure is actually only 2.5 x faster - 14.7 megabits per second . out of the networks , ee was fastest , followed by vodafone , o2 and three .\nchimpanzees at ny university to be covered by habeas corpus writ . petition by animal rights group claims chimps are ` unlawfully detained ' university rep have been ordered to attend court to respond to petition . ruling by judge effectively recognises the chimpanzees as legal humans . update : since the publication of this story , the court order has been amended . the order is no longer a ` writ of habeas corpus ' , which has been struck out .\njulian speroni signed from dundee in 2004 and is a crystal palace legend . argentine goalkeeper triggers contract extension at selhurst park . speroni will have testimonial at the end of the season against dundee .\nlib dem mp said he 's realised it 's ` possible to be business-like ' with tories . envisaged scenario where he could ` stomach ' working with conservatives . but also quick to make clear he does not rule out working with labour . thought he was most likely to remain in a government led by mr cameron .\ncody neatis , 8 , has down 's syndrome , epilepsy and autism and is tube-fed . was admitted to hospital but has had to sleep on a mattress on the floor . needs a special high-sided bed to sleep in as he moves around in the night . mother lynne neatis says she has been battling hospital for it for two years . hospital says it is waiting for a special bed from america to be delivered .\npaul casey was the 99th qualifier in the field of 99 due to play at augusta . the englishman made the last of his eight masters appearances in 2012 . he has the tools in his armoury to do well at the first major of the year . the 2015 masters gets underway at augusta national next thursday .\nliverpool got back to winning ways with fa cup victory over blackburn . brendan rodgers will be hoping his side can close gap on man city . the reds are just seven points behind city with a game in hand . liverpool host newcastle at anfield on monday night . raheem sterling : my ambition is to have my own song from the kop .\na cairns man faces court after giving his daughter medical cannabis oil . two-year-old daughter is suffering from a rare form of cancer . the 30-year-old father claims the effects of the cannabis were miraculous . he was arrested for administering the drug to his daughter . he has since set up a campaign to highlight his situation .\nmen were executed on a dusty road in deir ez-zor , syria , isis claimed . sick video shows the executioner 's sword being sharpened before killings . prisoners were shackled in chains and dressed in orange jumpsuits . just one day after 30 ethiopian christians were shot and beheaded in libya .\niceland has become an increasingly popular filming location recently . christopher nolan 's interstellar was shot atop the svinafellsjokull glacier . europe 's most powerful waterfall , dettifoss , was featured in prometheus . game of thrones producers opted to film at thingvellir national park . warning : story contains spoilers for series four of game of thrones .\nkevin rebbie , 56 , of limerick township , pennsylvania , has been arrested . he allegedly sexually abused a girl in her home and filmed her in bathroom . the girl also claims rebbie watched her undress and when he thought she was sleeping . investigators found 41 videos , 34 of which showed victims as they showered . rebbie said that he purchased the camera specifically to watch the 15-year-old girl but captured other victims on film , too . rebbie 's is being held on a $ 500,000 bail and will appear in court on may 1 .\nryan taylor 's injury record has severely limited the number of first-team appearances he has made for newcastle . still , the 30-year-old utility player is one of the most popular at the club . taylor etched himself into newcastle folklore in 2011 by scoring the winner with a superb free-kick against rivals sunderland . he is out of contract in the summer and sunday 's fixture at the stadium of light could be his last derby in a newcastle shirt .\nthe former nbc nightly news anchor was suspended over false iraq story . an internal inquiry found that he had lied in his reporting at least 11 times . source close to nbc says he will not see job taken away without a battle .\nowner lansdown has ploughed his fortune into the club through love and nothing else . that strategy racked up enormous debts when they lost the championship play-off final in 2008 . lansdown wrote off an eye-watering # 35million worth of debt last year . he is more pragmatic with his money nowadays and city are on the brink of a return to the second tier .\npre-colonial brazilians thought twins were a product of adultery . greek mythology believed twins were the product of intercourse with gods . many of us remain baffled by the uncanny bond identical twins share .\nmark faville , of christiansburg , virginia , was found guilty of voluntary manslaughter in the death of his wife anne , who died in 2000 , on friday . it was initially believed she choked to death , but a new autopsy determined she had been suffocated in a homicidal manner . the couple 's two adult daughters testified against their father during the trial , noting his odd behavior . as he was led away , deputies began yelling , with one saying ` drop it , drop it ' the courthouse was placed on lockdown , and faville was later found dead of a self-inflicted wound . it is not known what he used as deputies do not carry guns .\nkathy bush was arrested on april 15 , 1996 on suspicion of purposefully making her 9-year-old daughter jennifer ill for attention . the mother of three was sentenced to five years in jail and her daughter placed in foster care for the rest of her adolescence . on wednesday , the 19-year anniversary of bush 's arrest , her daughter spoke out to say they are now closer than ever . jennifer bush said in a statement that she believes her mother never abused her .\nclinton was at kristin 's bakery in keene , nh in advance of a small-business roundtable event . she sat with a handful of customers and made her way to the back to greet employees . but a cashier told daily mail online that some of the kitchen staff ` did n't want to come out to meet hillary ' because ` they just do n't like her ' clinton 's communications director said it 's helpful to recruit future hillary evangelists from among democratic activists by pre-screening them to meet hillary in small settings as cameras click . ` if someone like that loves her , then they 'll talk to other people , and so on , and that 's going to help , ' she said . palmieri would n't rule out the possibility that some at the bakery on monday were asked to come .\nvideo shows the planes approaching the runway at the same speed . the two aircraft maintain this as their wheels touch the tarmac . aviation expert calls the manoeuvre ` closely spaced parallel runway operations ' .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call .\nisis leadership is dominated by former members of hussein 's iraqi army . many joined the terror group in the insurgency after the fall of the dictator . u.s. had barred the men taking government jobs or drawing their pensions . generals ' military experience has been key to the terrorists ' spread in iraq . their connections with oil smugglers also help isis raise # 2 billion a year .\ntoby alderweireld has impressed during season-long loan at southampton . ronald koeman 's side are challenging for champions league places . but atletico madrid says they are counting on alderweireld for next season . sporting director jose luis perez caminero praises belgian defender .\na random sample from a michigan store tested positive for listeria monocytogenes . no illnesses caused by the hummus have been reported so far .\n90 per cent of bets on the royal baby 's sex have been on a girl . one scottish punter in edinburgh placed a bet of # 2,000 yesterday . favourite potential birth dates include the 18th , 19th and 20th april . the duchess of cambridge 's official due date is the 25th april . popular names include alice , victoria , arthur and james .\nschool leaders warn the ` bleak ' situation is likely to get even worse . say it is due to rise in pupil numbers and greater competition for graduates . london schools have most problems , followed by north west and east .\nlewis hamilton has landed himself a cameo role in zoolander 2 . the f1 world champion was spotted on the rome set of the film . the comedy sequel stars ben stiller , owen wilson and billy zane .\nriddick bowe was once seen as best heavyweight boxer in the world . he sensationally beat evander holyfield and earned a # 15m fortune . but after retiring in 1998 bowe ended up in prison and filed for bankruptcy . former champion is now offering to tweet ` anything ' in return for $ 20 .\njack jordan proposed to girlfriend laura cant while suffering leukaemia . pair planned to marry after mr jordan received a bone marrow transplant . last week he was told he was too ill to have surgery and has weeks to live . couple have now brought forward the wedding and will marry in hospital .\nlabour candidate rupa huq accepted # 1,000 from blair earlier this year . she campaigned heavily against iraq war but said : ` elections cost money ' . three colleagues turned down cash from former prime minister in march . ms huq - sister of former blue peter presenter konnie - said candidates who turned down blair 's donation were ` sticking their noses up '\njan jones bought bottle of tesco finest garnacha wine as a present . her daughter drank a mouthful of the wine and later broke out in welts . the family inspected the liquid they found it was clear and smelt of bleach . tesco said wine was made by supplier and has launched an investigation .\na 66-year-old man has been accused of burning an australian flag . it was reportedly set it alight at the shine of remembrance in anzac square . he has been charged with public nuisance and breach of the peace . this comes only a day before thousands are set to gather to commemorate anzac day 's centenary at the brisbane landmark .\nthe care quality commission damned the nhs 's first privately run hospital . but it ignored its own inspectors ' spot check that found improvements . in january the commission branded hinchingbrooke as ` inadequate ' today the commission will upgrade this and publish a glowing report .\nsinger melissa plancarte broke into a court to film her new music video . she 's the daughter of mexican drugs lord enrique plancarte who died in a shoot out with the navy . his murderous cartel hanged victims by their necks on motorway bridges . plancarte , who has three pet tigers , posts pictures of her ` bling ' life online .\nmore than half of members of group of industrial nations reduced aid . but britain failed to follow suit - thanks to target imposed by mr cameron . its overseas spending is double the average level of other nations in group .\njosi harrison , laura lefebvre , and hailey walden were ` lured into taking naked pictures for their high school-age boyfriends ' in clatskanie , oregon . the photos were ` passed around like baseball cards ' in 2009 . but school officials told them to ` suck it up ' and warned they would be charged for ` creating and distributing child pornography ' now , 6 years later , they will each be paid $ 75,000 damages by the school .\na series of photos sees japanese dads jumping next to their daughters . they are part of a new book by japanese photographer yûki aoyama . the book 's title roughly translates as daughter and salary man .\narsenal playmaker mesut ozil was given an apple watch on thursday . the apple watch will be officially released for sale on friday . ozil is expected to start for arsenal in their clash vs chelsea on sunday . read : arsenal fans call for removal of emirates cesc fabregas flag . read : arsenal to wear blue and yellow away strip for fa cup final .\nashley young kicked off a manchester united comeback with his goal . vincent kompany endured a torrid time before being subbed at the break . marouane fellaini and juan mata both scored in manchester derby win . sergio aguero scored twice , but his teammates were not up to his level .\ngoogle has been steadily revealing some of the biggest questions its users have typed into the search engine regarding 2016 presidential candidates . many of the questions focused on candidates ' ages and heights . others have asked about where candidates are from and their political party affiliations .\nkenneth wanamaker jr , 37 , pleaded guilty and received up to year in prison . father let daughter 's teeth fall degenerate into near fatal condition . he and partner also being investigated for death of 7-month-old in 2011 . wanamaker did not enroll himself in addiction program and mother tested positive for methamphetamine when she was pregnant .\nkim sears watched novak djokovic defeat andy murray at the miami open . looked serious in a whistles black mini dress , sunglasses and straw hat . third time kim , 27 , has worn a black dress at the miami open .\nap mccoy could have ridden cause of causes in the grand national on saturday . champion jockey ultimately chose shutthefrontdoor for big race at aintree . royale knight is worth an each-way punt at more speculative odds .\nofficial who accused mr shapps of doctoring his profile a former lib dem . richard symonds , 29 , is one of the uk 's top administrators for wikipedia . however , he once described himself as a ` liberal democrat to the last ' he decided to block a user called ` contribsx ' on tuesday after concluding it was probably operated by mr shapps or under his ` clear direction '\nwarning graphic content . davy mcgregor posted the gruesome ear injury on his twitter page . the heriot 's racing club hooker had been playing against the barbarians .\nrory mcilroy admitted recently he was ` obsessed with the gym ' sir nick faldo warned the world no 1 against bulking up . the pair shook hands at augusta national during monday 's practice . mcilroy is bidding to complete the career grand slam by winning masters .\nthe royal baby could be called sam , after duchess of cambridge 's friend . sam waley-cohen , who rode in the grand national , is a close confidant of the duchess and helped the cambridges rekindle their romance in 2007 . odds on the royal baby being named sam have been slashed from 66/1 to 20/1 since waley-cohen appeared at aintree and won race on friday . royal couple have insisted they do not know the sex of their second child .\njames mcarthur joined crystal palace for # 7m from wigan last summer . west ham have been impressed by his performances in midfield for palace . hammers have concerns whether they 'll sign alex song permanently .\nchelsea boss jose mourinho has spoken in defence of manuel pellegrini . the under-fire manchester city manager has overseen a poor run of form . pellegrini won the league title in his first season but is struggling now . mourinho believes that some criticism towards pellegrini is overblown .\narsenal knocked off top spot for the first time since post-war era . gunners were promoted from the second division in the 1914/15 season . afc bournemouth will usurp them in alphabetical order at start of 2015/16 . bournemouth effectively secured promotion to premier league on monday .\nblackpool were relegated from the championship on monday . their supporters threw objects at the stadium in protest at their chairman . karl oyston is a divisive character on the fylde coast .\nrev coles sits on the board of wellingborough homes housing association . vicar is known for presenting radio 4 's human interest show saturday live . attacked tory plans to sell housing association homes as a ` right to steal ' . confessed in memoir last year that he had taken drugs including cocaine , ecstasy and amphetamines .\nwisconsin , which last won a title in 1941 , was led by birthday boy frank kaminsky . justise winslow leads duke with 19 points , while jahlil okafor has 18 . coach k says his team 's defense was `` terrific ''\nandre blackman fled from harrods after stealing jacket from store . the 24-year-old has been told he is surplus to requirements at blackpool . blackman said the incident was ` just a moment of madness ' the defender played for both arsenal and tottenham during youth career .\nthe 34-year-old also revealed that she spends five to ten percent of her day away from her daughter so she can workout and be alone with her husband . kim gave birth to north on june 15 , 2013 .\ntong shao , 20 , was an international student from china attending iowa state university . her body was found in the trunk of her car in iowa city on september 26 . police believe it had been for three weeks . she died of blunt force trauma and asphyxiation . her boyfriend , xiangnan li , 23 , was the last to see her , but flew to china on september 8 , before shao was officially missing . according to tong 's father , an arrest warrant has now been issued . however li has disappeared .\nrbs has racked up # 50billion in losses since it was bailed out by taxpayers . state-back giant warned that it faces ` another tough year ' to come . lurched to a # 446million loss for the first three months of the year .\noverloaded ship capsized off the libyan coast on the treacherous journey across the mediterranean on sunday . around 150 were brought to italy after being rescued -- but survivors said at least 400 other migrants had died . amnesty international accuses eu of ` clearly threatening thousands of lives ' after scrapping rescue operations .\nall police would record anti-muslim hate crimes if tories win the election . islamophobic attacks would be separate category , like anti-semitic crimes . at present some police forces , including met , record these crimes as such . would create accurate picture of the extent of these hate crimes in britain .\nfans are in the dark ahead of floyd mayweather v manny pacquiao fight . tickets for the most anticipated fight in years have yet to go on sale . when they are finally put on sale , only a few will be sold at the listed price . prices have tripled in the re-sale market despite tickets not being released .\ncalifornia supplies more than three-quarters of world 's almond market . but the state is now in its fourth year of drought and there is growing anger . growers - who need a gallon of water to make a nut - are still planting trees . anger that the almond industry has been left to expand its orchards .\nstan collymore celebrated aston villa 's draw wildly from the press box . yorkshire championship winning coach jason gillespie is going vegan . jockey ruby walsh stars in new viral ad ahead of the grand national . greg dyke and david gill are still at odds over homegrown players .\nmanchester united top the table with players in the best xi since 1992 . they have had 75 inclusions with gary neville and ryan giggs on six each . arsenal are second in the all-time premier league table with 42 in total . chelsea 's six representatives this year brings them to a total of 29 . manchester city have had 11 players named since 1992 -- same as leeds . only shaun wright-phillips included before sheik mansour 's takeover . liverpool 's steven gerrard has been named the most times -lrb- eight -rrb- .\nex deputy pm said there was no problem with charles writing to ministers . admitted charles had sent him a lot of letters while he was in government . released two , including one condolence letter over death of his mother . comes after court ruled charles 's letters to ministers should be published .\na new survey has revealed who britons would like as their celebrity family . david beckham was voted number one choice for father . holly willoughby was voted as the most desired mother . the survey also revealed we want adele and rhianna as our sister .\ndavid villa posted the photo of his family by the empire state building . the former barcelona striker moved to new york city on a free transfer . villa has scored one goal since his move and seems to be enjoying the us .\ndave roberts , 50 , bungee jumped from transporter bridge over river tees . his great-great-uncle daniel mcallister jumped to his death at same spot . mr mcallister jumped off bridge in drunken bet for sixpence 100 years ago . mayoral candidate mr roberts successfully completed the jump for charity .\nalison saunders position as the country 's top prosecutor looks bleak . she has faced criticism from home secretary , police chiefs and mps . mrs saunders said her job was to make legal decisions , not popular ones .\ngrandfather peter mutty was caught with alcohol on august 31 last year . the sydney man was sentenced to six months jail and 75 lashes for crime . he was released on march 19 , but a travel ban prevents him from leaving . due to this ban , mutty is unable to work as an engineer in saudi arabia . he has hit out at the australian embassy who he says has not been helpful . since speaking about his situation , mutty said they were finally listening .\ncallum wilson opened the scoring for bournemouth in the fourth minute . it was wilson 's 22nd goal of the season for the cherries . bournemouth are ahead of norwich at the top of the table by one point .\nfrench health chiefs say binge-drinking is ` anglo-saxon phenomenon ' half aged 18-25 in france admitted drinking with aim of ` getting drunk ' number of young females admitting binging has tripled in last decade . minister wants to introduce fines or prison for inciting underage drinking .\nhsbc was ordered to pay # 500 to couple for ` distress and inconvenience ' . the banking giant was criticised for refusing to grant the # 250,000 loan . bosses defended decision and argued it was ` entitled to apply maximum age policy ' .\nharoon moghul : tsarnaev found guilty in terrorist bombing of boston marathon . how to prevent future such acts by young muslims ? pew reports by 2050 , one in 4 will be muslim . many equate terror with islam . not true , but we should grasp what causes radicalization . moghul : muslims see their community besieged around world , some think solution is violence . they must be shown other way to help .\npedro has only started 12 league games for barcelona this season . the spain forward has been linked with a move away from the club . pedro says talk of a move is logical when a player is not featuring . the 27-year-old admits it is difficult but he is relaxed about his future . click here for the latest barcelona news .\nthe 34-year-old singer made the initial comments on loose women . argued that ` unhealthy lifestyles ' should not be ` facilitated ' star faced bitter twitter backlash , then appeared on good morning britain . back on loose women this afternoon , she clarified her views . janet street porter and her other co-stars leapt to her defence .\nharry kane became the youngest premier league player to be captain this season -lrb- 21 years and 251 days -rrb- tottenham hotspur could not steal the win at turf moor against relegation-threatened burnley . mauricio pochettino 's side failed to take advantage of liverpool 's loss in the race for the top four . tottenham are now seven points adrift of manchester city in fourth but have played a game more .\nlewis hamilton held off the challenge from nico rosberg to win in china . but rosberg was furious with his mercedes team-mate after the grand prix . german accused hamilton of compromising his race by driving too slowly . but hamilton , who leads the championship , has denied any wrong-doing . hamilton is already 17 points clear of rosberg in race for the f1 title .\nnadir ciftci celebrated by blowing a kiss at rival goalkeeper scott bain . however , ciftci was left blushing as rivals earned impressive victory . win gave hosts dundee their first derby win in more than a decade . goals from greg stewart , jake mcpake and paul heffernen secured win .\nformer model jennifer sky , 38 , claims that models are being asked to stuff their underwear with sandbags so they can clock in at a ` healthy ' weight . the activist says she is against france 's new law , which bars models from walking the runway if their body mass index is deemed too low .\npat ingles , 69 , from edinburgh , loves to wear high heels and party . dresses up in risque outfits and heels and has pole dancing lessons . cared for her husband before he died and is focusing on herself now . her granddaughter , 20 , thinks her nana is ` cool ' .\npatrick kramer , 33 , is a hyper-realist artist from springville , utah . works from photos and builds up layers of oil paints on canvas . each work of art takes anywhere between 50 to 300 hours to complete .\nhibs won the derby 2-0 to stay second in the scottish championship . they had lost their last three , but the win gives them momentum . ` people were asking if this was the wobble and was this hibs ; season ending again , ' stubbs said . stubbs singled out farid el alagui for special praise after the striker came back from an achilles injury .\nbarcelona squandered a two-goal lead to stumble to a draw at sevilla . lionel messi and neymar both scored stunning goals on saturday night . sevilla hit back with goals from ever banega and sub kevin gameiro . la liga leaders barca now two points ahead of rivals real madrid .\njosh meekings was given a retrospective one-match ban for a handball . the incident was n't punished in inverness 's scottish cup win over celtic . the ban , which is being appealed , would rule meekings out of the cup final . celtic wrote to the sfa asking why why no penalty or red card followed . jim boyce said he was speaking in a personal capacity , not for fifa .\nlarry mcelroy shot his 74-year-old mother-in-law carol johnson on sunday . johnson was sat inside her mobile home 100-yards away from mcelroy .\nresearchers at the lawrence berkeley national laboratory used real skin samples to study microscopic changes that resist tears when pulled apart . they found collagen fibres in dermis change structure when under strain . the fibres go from being a disorganised tangle to straighten and stretch . scientists hope their findings can help develop new tear-resistant materials .\ntrichologist philip kingsley says hair consists of protein so eating it is key . he adds that dietary changes and supplements wo n't pay off overnight . it takes more than two months for hair follicles to begin to benefit , he says .\ndj and model munroe bergdorf , 27 , from east london , was born a boy . living as a woman from 18 and started taking hormones four years ago . now speaks out to raise awareness of the issues of being transgender .\ntwo contestants on countdown came up with the same word during game . co-presenter rachel riley looked embarrassed as she spelt out ` erection ' host nick hewer failed to stifle his laughter during the awkward moment .\npoll shows 43 % think labour leader ed miliband wants to win the most . just 7 % think david cameron is enjoying the campaign more than rivals . tories step up efforts to show their leader is passionate about campaign . cameron says he is ` feeling pumped ' ahead of ` bloody important election '\nmanchester united are set to strengthen their squad again this summer . felipe anderson has attracted interest from psg and manchester city . liverpool and arsenal are also keen on lazio 's brazilian midfielder . louis van gaal hopes to sign two strikers when the transfer window opens . gonzalo higuain is unsettled at napoli with boss rafa benitez set to leave .\nright wrist of kim jong-un pictured strapped up with white bandages . filmed while visiting a pyongyang weapons factory in impoverished nation . injury is latest evidence in a string of rumours about dictator 's ill health .\ninternational monetary fund says uk economy will grow by 2.7 % this year . only the united states will grow faster among world 's biggest economies . new figures show inflation is still at 0 % , with food and fuel prices down .\nliam plunkett and mark wood both impressed in the nets on sunday . moeen ali is also appearing to bowl without discomfort after joining squad . england were missing an x-factor as the first test fizzled out in a draw . and selectors must decide whether to freshen things up for second match .\nsmall elephant me-bai is seen nuzzling her mother upon reunion . she was sold to provide rides for tourists in thailand when she was three . mother and daughter were reunited at the elephant nature park sanctuary . they caress each other with their sensitive trunks , ` chirp ' and cuddle .\nagent arthur baldwin arrested in south-east washington at 12:30 am friday . charged with a felony charge of first-degree attempted burglary . agent baldwin , posted to foreign missions branch , was placed on leave . secret service bosses also suspended his security clearance .\nalex hales was unbeaten on 222 not out for nottinghamshire who reached 393 for seven by stumps in their clash against yorkshire . it is the first double hundred of hales ' career passing previous best of 184 . and hales said it is still his ` dream ' to play test cricket for england .\ndjokovic wins monte carlo masters . defeats berdych 7-5 , 4-6 , 6-3 . djokovic had earlier beaten clay expert nadal in semis .\nfitness fan jennifer is famous for her curves , but her arms are also toned . the mother-of-two has completed triathlons . she avoids sugar and salt . try modified push-ups which activate the entire upper body .\ntom jones ' song ` delilah ' is sung by stoke fans as unofficial club anthem . mark hughes believes the hit is costing them a spot in europe league . team top of premier league fair play table could play in europe next year . west ham are currently leading the table , while stoke occupy 17th place . hughes has slammed the competition ahead of clash with southampton .\nconcept artist alex brady from cambridge has created beautiful pictures of what space travel might look like . he imagines a space station of tomorrow similar to las vegas , with neon lights and plenty of attractions . he said his designs are intended to be a bit more ` preposterous and cheerful ' than others . and he also explores what the space planes that take humans to orbit in future might look like .\nkenyans gather in nairobi to remember victims of a terrorist attack that stunned a nation . the attack at a garissa university last week killed 147 people , mostly students .\nwest brom finished 10th and 8th under roy hodgson and steve clarke . the baggies finished 17th in last season 's premier league . tony pulis wants to do extensive business in the summer market .\nsoldier had fought overseas in first gulf war , bosnia and northern ireland . family say he had struggled to adapt to civilian life after 11 years in army . he previously took overdose and told relatives he tried to take his own life . coroner records misadventure verdict and praises soldier 's bravery .\nmanchester city have identified danny rose as a transfer target . rose is a rising star and city 's squad is short of homegrown players . but spus boss mauricio pochettino is a big fan of his left back . tottenham will resist all summer offers for rose .\nofficers thought to have identified supposed ringleader of jewel thieves . meanwhile criminologist suspects raid was inspired by plot of crime novel . novel is based on real-life bank heists carried out the late 80s in la. . hole in the ground gang used drills to bore into vaults in 1986 and 87 .\nleader said she understands concerns about snp being part of coalition . miss sturgeon also suggested pm had been ` not unhelpful ' to her party . polls indicate snp is on the brink of a historic landside victory in election .\ntwo out of three versions of the apple watch have sapphire glass screens . test showed how durable the material made from synthetic crystals is . endured being sanded , keyed , rubbed , struck by a hammer and drilled .\nembarrassing defeats at kobane and tikrit has left isis feeling under pressure . fighters continue to join social media despite the threat of frequent suspensions . a series of social media blunders has previously led to fighters giving away their positions and tactics . islamic state have recently launched new offensives for the baiji oil fields and the iraqi city of ramadi .\nthe espresso maker , named the isspresso maker after the international space station , is set for lift off on monday . it was designed by italian coffee giant lavazza , engineering company argotec and the italian space agency . the experimental machine was specially designed to for use off the planet . it was originally intended for international space station astronaut samantha cristoforetti of italy as relief from the station 's instant coffee . nasa 's space station program deputy manager , dan hartman , said it is being sent as part of the goal of making astronauts feel at home .\nloretta reinholdt , 54 , and andy wasinger , 46 , were on on a hired sailboat with a captain when they were attacked . four men with guns and knives boarded the boat , demanded money and threatened the trio after waving down the sailboat by asking for gas . the men then pushed the sailboat to shore , cut the sail and took supplies . couple and captain were stranded on remote beach for four days . after being saved by hikers who saw their sos signals , they were taken to near town and met honduras president who flew couple to mexico . canada has advisory information about traveling to honduras on their government website .\nnurse deborah roberts forced a wet wipe into phyllis hadlow 's mouth . dementia patient , 96 , occasionally screamed out because of her condition . roberts , 53 , also poured water over the elderly widow in a hospital ward . she admitted wilfully neglecting frail mrs hadlow but will not be jailed .\nphone appointments replaced by doctors seeing patients on video calls . repeat prescriptions and booking appointments could also go online . # 250million from sale of nhs assets to create a ` paperless health service '\naston villa captain ron vlaar will return to the first-team from injury . manager tim sherwood has urged the dutchman to prove himself again and help villa to avoid relegation from the premier league . vlaar played a starring role in holland 's run to the world cup semi-finals in brazil last year . villa take on manchester united at old trafford on saturday .\ntwo incisors found in northern italy have been confirmed to belong to modern humans who were part of the protoaurignacian culture in europe . these people had sophisticated tool making , early art and wore ornaments . their arrival in southern europe coincided with demise of the neanderthals . researchers used ct scanning and dna analysis to identify origin of teeth .\n45-year-old released ten-minute youtube film showing him in lake district . it follows the presenter as he drinks pints and learns how to herd sheep . comes after co-host james may released series of films about jobless life . clarkson also described yesterday how bored he was with unemployed life .\naunt and cousins of waheed ahmed were arrested at manchester airport . ahmed , 21 , was held by anti-terror police at birmingham airport yesterday . student is accused of trying to take eight family members into syria . he was arrested in turkish border town with family , including four children .\ncentre matt scott will miss the rest of the season because of injury . scotland international needs more surgery on problematic shoulder . scott went under the knife last week but has been told he needs more . the 24-year-old has played just 14 games for club and country in past year .\nstephen hawking is a famed cosmologist and mathematician . he sings monty python 's `` galaxy song '' in a hilarious new video .\nmanny pacquiao has released music video named ` i 'm fighting for filipinos ' the filipino boxer directed footage which shows poverty in the philippines . pacquiao will go toe-to-toe with floyd mayweather in las vegas on may 2 . read : pacquiao takes his training to the great outdoors as he jogs in la. . read : mayweather vs pacquiao referee to earn $ 10,000 -lrb- # 6,800 -rrb- on may 2 .\nahead of an anticipated run-in this weekend in at the seventh summit of the americas , the two presidents spoke by phone on wednesday . the two nations ' top diplomats held talks at a panama city hotel on thursday night , the first meeting of its kind in as many years . white house had said a private meeting was not on the books but they could have an unscripted ` interaction ' on the sidelines of the event . adviser to obama said friday : ` we do n't have a formal meeting scheduled at a certain time , but we anticipate they will have a discussion tomorrow ' u.s. state department has now recommended that cuba betaken off the list of countries that sponsor terrorism - obama is likely to approve .\nmichael keaton hosted `` saturday night live '' for the first time in 1982 . in 2015 , his nods to starring roles in `` beetlejuice '' and `` batman '' are brief .\nit was a crucial holiday for the olympic gold medallist and husband harry . their stay would be their last getaway before the birth of their first child . the couple stayed in over-the-water bungalows at dubai 's anantara resort .\nbarcelona star xavi has managed just five starts since the turn of the year . the midfielder recently travelled to qatar to discuss possible switch . luis enrique believes xavi has vital role to play towards end of season .\nmohammad liaqat racially abused teachers at his child 's catholic school . muslim father , 34 , was furious that pupils were not allowed to grow beards . liaqat continued tirade at another school and shoulder barged headmaster . he was found guilty of racially-aggravated behaviour and assault .\npsg striker zlatan ibrahimovic will miss his side 's next four league games . ibrahimovic will be allowed to play in saturday 's league cup final . the sweden international blasted lionel jaffredo after bordeaux match .\nlewis hamilton won the chinese gp with nico rosberg finishing second . rosberg accused his team-mate of being selfish by driving too slow . mika hakkinen says hamilton was right to worry about his own race . read : hamilton insists rosberg was not trying to win in shanghai . read : hamilton ready for rosberg 's underhand tactics .\nstunning pictures show men firing rockets at rival churches ' bell towers in annual ` war ' , as part of age-old tradition . president putin attends solemn mass in moscow with the country 's prime minister and the mayor of the city . pope francis , head of roman catholic church , marks 100 years since armenian genocide with special service .\njurors begun deliberations in aaron hernandez 's murder trial on tuesday afternoon after the prosecution and defense made their closing arguments . the former new england patriots football player is accused of killing semi-pro player odin lloyd , who was dating his fiancee 's sister , in june 2013 . his defense said on tuesday that he witnessed his friends , ernest wallace and carlos ortiz , kill lloyd but did not commit the shooting himself . his lawyers said the prosecution has not proven he pulled the trigger . hernandez faces life in prison if convicted of the murder .\nmanny pacquiao and floyd mayweather meed at mgm grand on may 2 . american 's sparring partner jeremy nichols impersonated the filipino during a mock interview shared on youtube . ' j flash ' made fun of pacquiao 's accent , singing , faith and claims his mother uses voodoo chants to help her son . mayweather vs pacquiao : the ultimate tale of the tape for $ 300m fight . mayweather-pacquiao is 11 days away ... why are there no tickets on sale ?\nestate agents are offering a ` cameron price ' and a lower ` miliband price ' labour will introduce an annual levy on homes worth more than # 2million . the prospect is alarming wealthy buyers who are demanding a discount . some buyers are waiting until after the election to complete purchases .\nlorraine cobourn can not even handle bananas following the incident . the 51-year-old suffered a broken hip after the accident in may last year . she is now undergoing counselling to cope with psychological damage . ms cobourn said : ` it sounds crazy i know , but i ca n't even touch bananas '\ncast will become filming in london , france and bahamas in the autumn . saunders spurred on to write script after # 10,000 bet with dawn french . 56-year-old , who plays edina , said joanna lumley wanted to ` do it before we die '\nnewcastle lost 1-0 to rivals sunderland at the stadium of light on sunday . john carver admits the magpies struggle when they have to compete . newcastle play liverpool on monday and are nine points above drop zone .\nlyrid meteor display is visible in skies across the globe every year in april , and has been observed for 2,700 years . number of meteors is unpredictable , usually peaking at around five to 20 an hour , but has reached 100 per hour . graeme whipps captured this image of meteors passing through the skies over pitcaple in aberdeenshire yesterday .\nthousands met in hyde park today as part of annual global ' 420 ' event . crowds seen openly smoking marijuana as police officers stood nearby . controversial festival also saw gatherings in manchester and glasgow .\neverton and chelsea have perfect records with three wins each . southampton , man city and man united are the only other unbeaten sides . arsenal are still yet to win following an international break this season . liverpool are similarly poor with one win and two defeats . six clubs are yet to win after an international break , find out who here ... .\nbyhours.com offer three , six and 12 hour hotel stayovers . academy hotel and threadneedles marriot in london have signed up . company have around 1,500 hotels signed up in their native spain .\njohn bramblitt developed epilepsy aged 11 and went blind when he was 30 . after going blind , bramblitt began creating the most amazing artworks . some of his art features scenes and people he has never seen before . despite being blind , his art is highly accurate and incredibly vibrant .\nman accused of helping former lover kill woman during a sexual encounter . micheal john duffy pleaded not guilty to murdering colleen deborah ayers . the court heard he strangled ms ayers , 33 , with ` ringleader ' rachel evans . he said his co-accused evans was the one with a ` twisted desire to kill ' duffy reportedly buried ms ayers in shallow grave on her parents property . evans pleaded guilty to murder and is set to receive a reduced sentence for giving evidence in duffy 's continuing trial .\nhere are six of cnn 's best videos of the week . clips include a look at mike tyson 's abandoned mansion .\nadam johnson charged with three offences of sexual activity with girl , 15 . winger also facing charge of grooming and has been bailed until may 20 . sunderland decided not to suspend johnson and he is available to play . read : johnson charged with three offences of sexual activity with a child . read : johnson 's sunderland future in doubt .\nobama 's point man in isis fight does n't rule out u.s. military action beyond iraq and syria . brett mcgurk : iraqi leader making progress with sunni tribes in planned anbar offensive .\naaron cresswell has impressed during debut season in premier league . the left back joined west ham from championship club ipswich for # 2m . manchester city and chelsea are both keen to sign the 25-year-old . both clubs are mindful of boosting their quota of homegrown players .\ncro cop enjoyed revenge with third round knockout in krakow . referee stepped in after filipovic dropped gabriel gonzaga to floor . jimi manuwa made successful return by outpointing jan blachowicz .\naston villa beat tottenham 1-0 at white hart lane on saturday . the win moved villa six points clear of the relegation zone . benteke says it would be risky to think one more win would be enough .\njavier hernandez scored twice to keep real madrid in touching distance of la liga leaders barcelona . chicharito is scoring a goal every 83 minutes with a scoring ratio that is only two minutes short of lionel messi . real went a goal down in the opening minutes following a surprise goal from celta vigo 's nolito . toni kroos equalised for the visitors and hernandez doubled real 's scoring with a goal in the 24th minute . although the home side levelled four minutes later the tie was put to bed after goals from james rodriguez and another from hernandez .\njacques burger was cited for striking racing metro 's maxime machenaud . saracens defeated racing with the last kick of the game in the quarter-final . mark mccall 's side face leicester tigers on saturday . burger received a one-week ban for his strike on machenaud . the openside will miss the tigers game , but will be free to play clermont .\nthe 58-year-old actress revealed her diagnosis in a statement on tuesday . she explained that doctors initially failed to find the cancer but that it was discovered after she sought out a second opinion . she underwent surgery last week with hanks by her side and she is expected to make a full recovery . wilson took medical leave from the broadway play fish in the dark earlier this month but is expected back on stage in may .\nswedish scientists analysed more than 10,000 families in the study . 58 children with diabetes had also been badly affected by previous events . other factors include viral infection , diet and early weight gain .\nridley stays in the afc east after signing a one-year deal with the jets . the running back joins a revamped offense including fellow free agency acquisitions brandon marshall and ryan fitzpatrick . he had a career-high year in 2012 but played just six games last season after a tear to his right acl .\nstoke manager mark hughes has a net spend of around # 6million . he is confident the club will back him in this summer 's transfer window . hughes hopes to tie down no 1 goalkeeper asmir begovic . the ex-portsmouth stopper is out of contract at the end of next season .\nreal madrid eliminated atletico madrid from the champions league . javier hernandez secured victory with 88th minute strike for real madrid . raphael varane filmed fans as madrid arrived at the santiago bernabeu . read : barcelona vs real madrid is the dream champions league final . who will win the champions league ? our reporters have their say ...\ncrash occurred in lewiston , idaho , about 8am wednesday . driver sitko , 23 , crashed off the road and drove through property . his truck was stopped from dropping off bryden canyon by a fence . a passer-by smashed the window and dragged him to safety . the man fled when police and paramedics arrived . sitko is recovering from minor injuries in hospital .\nsixth form student emily reay is barred from classes for being too ginger . her school said colour was inappropriate and asked her to ` tone it down ' but she says her hair has been vibrant shade of red for over three years . emily is a natural red head but colours her hair so it is even brighter .\nsnooker 's most dramatic final gripped 18.5 million viewers in 1985 . steve davis had an 8-0 advantage when he missed a green ball . dennis taylor fought back heroically and eventually won the final 18-17 .\nannette edwards has owned more than 100 bunnies in the past 10 years . she claims the secret to breeding huge rabbits is both parents must be big . the former playboy model has owned the world 's largest rabbit since 2008 . her rabbit darius is 4ft in length but he will soon be eclipsed by his son .\n19th century castle toward , near dunoon , was used to ready soldiers for the d-day landings in world war two . overlooking clyde estuary and with easy access to the sloping shoreline , it was deemed an ideal training ground . the castle was commandeered by winston churchill and was commissioned as hms brontosaurus in 1942 . the training that took place was so realistic and demanding many servicemen were killed in accidents .\norange county fire authority paramedic chris trokey was part of a team that saved a driver 's life after his car was hit by a truck in 2011 . when he went to the hospital , he learned the man was dr michael shannon - the same man who saved his life when he was born weighing 3lbs . the two men reunited this weekend at a fundraising event .\nstoke claimed a point thanks to stoppage time goal by marko arnautovic . sam allardyce believes his side panicked in closing stages of match . west ham remain in top 10 despite failing to cling onto three points .\nchristian benteke is currently paid # 50,000 per week at aston villa . the belgium striker has two years left on his current contract . wolfsburg have been keeping tabs on the villa forward .\nalice barker was a dancer in the 1930s and '40s . thanks to filmmakers , barker -- now 102 -- finally saw herself dance .\npilot program allows students at one of sydney 's most prestigious schools to bypass the higher school certificate and attend sydney university . successful completion of the 17-week guarantees scot 's college students a place in a number of undergraduate courses , including law . tuition , sporting and curriculum-related fees at the college reportedly topped $ 30,000 per year in 2013 . ` education should be open to all , not just those who can afford it , ' national union of students spokeswoman tells daily mail australia .\nwealthy africans are investing in some of london 's most upscale real estate . some nigerians are spending as much as $ 37 million on houses . property experts say african investment in london is set to grow .\npalermo representatives are in madrid to discuss a possible move . # 29m-rated dybala is wanted by a host of leading european clubs . arsenal and chelsea have been linked with the argentine striker . real madrid coach carlo ancelotti has told isco to be more defensive . barcelona have been installed as the champions league favourites . napoli beat wolfsburg 4-1 in uefa europa league sensation .\nmarty stroud admitted in a letter published in a louisiana newspaper last month that he was to blame for putting glenn ford behind bars in 1983 . stroud : ' i was not as interested in justice as i was in winning ' ford , now 65 , was freed a year ago after evidence emerged showing he was not at the scene of the murder and has since been living on donations . he has also been diagnosed with stage 4 cancer and has months to live . stroud visited ford 's home to apologize to him face-to-face but ford told him he was not able to forgive him .\nfrankie franz watched the right-back pull off the audacious shot in a video . nine-year-old joked with his mum and grandmother that he could make it . youngster moved hoop into middle of the garden and twice achieved feat . frankie is an academy player with dagenham and redbridge football club . he plays centre midfield and dreams of one day turning out for barcelona .\nroland giroux captured his relationship with his fish on camera . the blood parrot cichlid swims in circles and waits in man 's hand . the man then begins massaging and stroking its body with his finger . mr giroux claims the fish becomes frustrated if not stroked each day .\naustralian comedy trio sketchshe went viral with their car videos . the models mime along to music in their car . the videos have amassed 260 million views across social media . shae-lee shackleford , lana kington , madison lloyd performed on ellen . also made appearance on good morning america .\ncoral jones , 43 , has had anonymous letters branding her a ` bad mother ' daughter april was snatched from outside home and killed by mark bridger . she blames herself for allowing april to play outside for extra 15 minutes . family have struggled to come to terms with murder and set up campaign .\njonathon stevenson wrote a letter to richie benaud back in 1996 . the then-16-year-old asked for his advice on left-handed spin bowling . stevenson , who now works at livewire sport , tweeted the letter on friday . cricket legend died in his sleep on thursday night in a sydney hospice . letter included sheet of notes about spin bowling for left-hand bowlers .\nyoutube user lionel hutz filmed his young son chasing the family feline around the garden in a bid to get some rest .\nryan skivington took the pets from cage during a row with girl 's mother . then squeezed the animals tightly before throwing bodies out a window . 26-year-old also admitted assaulting former partner and causing damage .\ncharles severance , 54 , has been charged with murders of nancy dunning , ron kirby and ruthanne lodato , in virginia , over the space of a decade . prosecution want severance , who was once a fringe candidate for political office , to stand trial for all three killings together . claims that severance 's ` parable of the knocker ' linked all three deaths . the three victims were murdered at random in broad daylight when they answered a knock at their front door .\npentagon releases map showing coalition forces have taken back 25-30 % of iraq territory from isis . counterinsurgency specialist afzal ashraf on what new data tells us about fight . ashraf : where it counts -lrb- isis is -rrb- not standing and fighting .\nandy king scored his 50th goal to earn leicester three points . estaban cambiasso 's goal had been cancelled out by cheick kouyate . nigel pearson praises his goalscorer who he brought of the bench .\nbarrick gold reached an out-of-court settlement with the 11 rape victims . includes a 14-year-old schoolgirl raped by police patrolling mine in 2010 . the us gold mining giant offered $ 10,000 but was rejected as ` inadequate ' women are thought to have been offered compensation in the six figures .\nroscoe was caught on camera this week at the asheville humane society in north carolina taking some of his first steps . the rescue pup was born with a deformity which caused his front to legs to be bent backwards at the knees .\nprague 's new metro extension transports travellers closer to the airport . they are forced to transfer to buses to travel the final five miles . but they must climb a set of stars because there is no escalator to buses . an escalator was constructed but it leads to an unbuilt train station .\nhikers often stumble upon the unusual concrete markers and wonder why they were built . the arrows directed the first air mail planes across the us to deliver post . they lay at the bottom of lit beacons and showed pilots the direction to fly in to arrive at the next air field . while they are no longer used , many lie forgotten until they are found by arrow-hunting fans .\nthe legendary physicist was speaking at the sydney opera house . he appeared as a 3d hologram from cambridge university in the uk . the question was what effect zayn malik leaving one direction would have . professor hawking tackled the conundrum and had a perfect explanation . he joked that in another different universe ` zayn is still in one direction ' .\nnewcastle would be on 20 points if alan pardew 's five wins were removed . john carver has won just two games in 14 since taking over the side . newcastle 's players look uninterested and uninspired since he left the club . the 53-year-old has made a blistering start in charge of crystal palace . click here for all the latest newcastle united news .\nmillions of chinese enjoy the qingming festival - ` pure brightness festival ' - to celebrate the coming spring . last day of festival sees chinese families visit their ancestors ' graves to clean , burn paper money and pray . record number of journeys made by chinese over the three-day public holiday , which falls in april every year .\nstrike actions comes a day after french air traffic controllers walked out . workers joining forces to stand up against governments austerity plans . there are around 25,000 ascents up the tower each day .\ngovernor mary fallin signed bill allowing nitrogen execution into law . chamber is pumped full of gas , and body dies from lack of oxygen . method will become oklahoma 's second choice after lethal injection . supreme court is due to rule on whether current execution drugs are legal . if gas execution is not available , state will use electric chair or firing squad .\njordan sim-mutch was member of armed gang that targeted businesses . criminals carried out 29 robberies and burglaries in greater manchester . sim-mutch posted pictures of stolen cash and drugs on facebook profile .\njapanese prime minister shinzo abe will address congress on wednesday . mike honda : abe must commit to educating future generation honestly , humbly .\nengland departed for west indies tour from gatwick on thursday . england will play two warm-up matches and three tests in the caribbean . captain alastair cook and coach peter moores faced media at gatwick . both keen to avoid discussing kevin pietersen 's potential return .\nhamza parvez left his home in west london and travelled to syria nearly 11 months ago . despite the rise in jihadi brides , no one seems to want to marry the british fighter . two of hamza 's close friends have also written about their frustration of being unmarried in syria .\narsenal are interested in signing liverpool 's raheem sterling this summer . the 20-year-old has rejected a new # 100,000-a-week deal at anfield . michael owen believes sterling is more talented than mesut ozil . adrian durham : sterling would be earning the same as balotelli if he signed # 100,000-a-week deal at liverpool ... that 's the real issue here . durham : arsenal only turn it on when the pressure is off . the german scored in arsenal 's 4-1 win against liverpool on saturday . click here for all the latest arsenal news .\nmum says her son was banned from qantas flight due to his autism . gizelle laurente claims her son , jacob prien , was discriminated against . jacob was booked to fly from darwin to brisbane on thursday . qantas says he was n't able to fly unaccompanied without medical approval . he was given the all-clear and flew to brisbane on friday .\nthe child , who has not been named , suffered fatal injuries after jumping from a second-story window in dumont , new jersey last month . a report into the incident has revealed he became angry after a classmate failed to say ` checkmate ' after beating him in a match at recess . he then cried in a corner and wrote a note to his opponent , but told him to wait to open it ; the contents of the note have not been shared . an aide then saw the boy climbing on shelves and out a window . the boy 's classmate revealed that he had said on several occasions that he was going to jump from the window - but he thought he was joking .\nbill spedding , the person of interest in the william tyrrell case , has been charged with five counts of child sex abuse . he was living with three boys at the time william vanished - despite authorities being aware of the claims against him . the nsw ombudsman confirmed they are ` making inquiries ' into how the boys came to be living with spedding . ` someone needs to be held accountable , ' the boys ' mother said . victoria police are investigating his alleged involvement in a paedophile ring and expect to lay more charges . spedding has denied any involvement in william 's disappearance . he was refused bail on thursday after a brief court appearance .\nharry kane will play for gareth southgate 's side at this year 's tournament . he will join up with the junior squad when he returns from tottenham 's post-season trip to malaysia and australia . kane scored on his england debut in their 4-0 win against lithuania . everton ace ross barkley and liverpool 's raheem sterling are excused .\njoel ward joined crystal palace from boyhood club portsmouth in 2012 . he made his 100th appearance for the club against man city last week . ward admits he is delighted to have signed a new contract with palace . the 25-year-old has committed his future , signing a three-and-a-half year deal taking him through until summer 2018 .\nashley young scored manchester united equaliser in 4-2 win . ` we quietened them down straight away ' claims young , as he praises fans . young claims the game was over once united went 3-1 ahead . england winger says confidence at old trafford is now ` sky high ' . click here to read ian ladyman 's match report from old trafford . read : man utd runaway league leaders in table vs the current top seven .\nthe black-eyed bandit was found stuck 30ft-high on a flag pole outside philadelphia 's cathedral basilica of saints peter and paul on tuesday . after a few hours , animal control officers were able to coax him down .\nwilliam barber : mcdonald 's will raise minimum wage $ 1 for 10 % of workers . this is a step in right direction but falls short in three ways . he says it leaves out 90 % of workers , is not enough to lift workers from poverty , company prevents workers from speaking out in a union .\nesteban cambiasso signed a one-year deal at leicester city last summer . delhi dynamos want to bring him to the new indian super league season . nigel pearson would like to keep him at the club if leicester stay up .\njordan spieth and charley hoffman to tee off at 7:55 pm uk time . justin rose in penultimate pairing at 7:45 pm with dustin johnson . paul casey joined by phil mickelson at 7:35 pm on saturday . tiger woods and sergio garcia tee off at 6:15 pm . rory mcilroy and bubba watson commence at 5:45 pm .\nfather-of-one paul shorter , 31 , had a series of liaisons with the schoolgirl . he was giving teenager one-on-one tuition at rydens school in surrey . court heard he had series of liaisons in ` serious breach ' of his position . admitted string of sex offences at guidlford crown court yesterday .\nvalerie cadman-khan , 56 , appeared on this morning with daughter aimee . detective sergeant colin helyer accused her of child neglect in 2008 . mum was arrested amid claims she 'd left aimee outside for 45 minutes . she was ` humiliated ' after being led away from middlesborough home . no apology received yet , but she feels ` justice has been done '\nrobot has been drawing crowds at hong kong electronics event this week . it can recognise and respond to human facial expressions in natural way . known as ham , the head was designed by us firm hanson robotics . made using soft-bodied mechanical engineering and nanotechnology .\naliesha peterson , 22 , from canada , says a therapist recommended she start exercising to improve her depression . she writes on reddit that after ` slow ' progress for 20 months , she now sees an improvement in her mood and her body .\nthe run-down car park offers stunning , picture-perfect views across miles of golden sands at rhossili beach . national trust snapped up the tatty tarmac parking spot for # 3m to create a new and improved car park . the beauty spot in south wales has been voted the uk 's number one beach and filming location for doctor who .\njose mourinho 's defensive set-up has remained settled all season . chelsea manager has relied on gary cahill , john terry and co. . mario balotelli could n't make the most his latest liverpool start . louis van gaal blamed a lack of sharpness for united 's defeat at everton .\nnew photos emerge of sir paul mccartney and heather mills ' 2002 wedding . but after tying the knot , sir paul 's daughters looked decidedly glum . the pair were said to have been less than overjoyed at their father 's partner . pictures and other memorabilia are to be auctioned for charity next month .\nresearchers observed random parents with children at ny playgrounds . phones and tablets were a dangerous distraction for parents , they claimed . kids with distracted carers were more likely to engage in risky behaviour . this included jumping off moving swings or going head-first down slides .\nloeb says he filed a complaint against the actress to prevent her from destroying their two embryos . the couple created the embryos while they were engaged .\nhattie gladwell , 19 , blogs about her experience of living with an ostomy bag after undergoing emergency surgery for ulcerative colitis . she is calling for a new anti-smoking advert to be banned because it warns that they might get colon cancer and be forced to use a bag like her . ' i am utterly disgusted that they feel they can advertise a quit smoking campaign with something that has saved so many lives ' she wrote . she complains that the ad suggests people who use bags have brought the condition on themselves .\njonathan krueger , the photo editor at the school newspaper and a junior in the college of communication and information , was shot dead . police are saying the shooting was an attempted robbery gone awry . a man who was with krueger told officers a van pulled up and confronted them . that man was able to escape and found two men outside a nearby home who called police . police arrested justin d. rose , 18 , and charged him with the murder this afternoon .\njonas gutierrez was an unexpected inclusion , but performed well . dick advocaat continued sunderland 's new managers ' winning tradition . john carver left jack colback exposed to sunderland hate at left back .\napple 's first generation ipad launched on 3 april 2010 . in its five years on the market , 225 million devices have been sold . but larger smartphones and smart watches may herald its end . sales for the ipad dropped 18 per cent in the final quarter of 2014 .\nliz the bearded dragon appears to understand the english language . the cheeky reptile nods when asked ` are you hungry ? ' by her owner . shannen hussein has a number of pets on her hobby farm in melbourne .\ndisused rhondda tunnel closed 50 years ago as part of sweeping closures . engineers due to visit 3,148 m tunnel next week for first time since it closed . cyclists could retrace steam locomotives ' route from rhondda to swansea . it would be world 's second longest cycle tunnel , after 4,000 m snoqualmie tunnel near seattle , u.s.\napple sold more than 61 million iphones in the quarter . apple did n't report any results for the new apple watch . believed around 2 million watches have been sold , according to estimates .\nzoo weekly came under fire for their scandalous anzac day issue . the front cover featured a half-naked model holding a red poppy . the department of veteran affairs said zoo could not use the word anzac . the word ca n't be used without permission for commercial purposes . social media users condemned the ` gross and offensive ' issue . zoo weekly has since removed all offending images from their websites .\noffice for national statistics to release growth data for first quarter of 2015 . experts expect growth to be 0.5 % , down from 0.9 % in same period in 2014 . chancellor george osborne boasts that firms back his economic plan .\nthomas brock , 30 , was fatally shot following alleged road rage incident . police say he was followed to his home where he fought with another man . the man left but returned soon after with a gun and shot him , police claim . jacob and steven rodriguez have both been charged with capital murder .\nben wedeman joins the calabrese , an italian patrol boat as it traverses the mediterranean looking for migrants . often the crew have little to report , only coming across fishing boats or other commercial vessels . the calabrese was involved in a rescue in october 2013 , during which more than 350 people died .\nonly nine per cent of germans now consider the end of wwii a defeat . many now see themselves as the victims of hitler and nazi regime . historians now exploring crimes by allied forces and german suicides .\nchelsea and liverpool target daniel wass can play as a full back or winger . schalke and inter milan have also shown interest in the 25-year-old . stoke are also interested in lee cattermole and javier hernandez . denmark international could be sold for a fee close to # 3.5 million .\nboris johnson issues rally cry to defeat ed miliband in ` battle for britain ' . london mayor has warned that labour victory next month would be ` mad ' . he says conservatives need five years to ` entrench the economic recovery '\nprobe carried out by powys council in welshpool and llandrindod wells . council needs to issue 40 per cent more parking tickets just to break even . councillors shadowed wardens and found infringements going unticketed .\nwales ' euro 2016 qualifier with belgium has been declared a sell-out . gareth bale and co currently top the group b table on goal difference . belgium and wales both on 11 points ahead of clash .\nsales of # 1,100 poncho spotted on stars have boosted burberry 's profits . ponchos , coats and scarves boosted sales by 10 per cent over winter . victoria beckham , rosie huntington-whiteley and sienna miller were all spotted wearing the ponhos , each monogrammed with their initials .\nlifting sanctions could pave the way for iran to build atomic bomb . obama hailed new deal as a ` historic understanding ' . critics including saudi arabia fear deal gives iran scope to cheat .\ngreen party leader flounders again in interview about her own policies . set out plans for ` citizens income ' paid to every adult in the country . forced to admit it would take ` decades ' to implement expensive plan . embarrassment at end of interview when she is called ` caroline lucas ' .\nmanchester united beat aston villa 3-1 in the premier league on saturdayâ . man utd host manchester city at old trafford on sunday afternoon . red devils have won their last five league matches to move into third place . read : manchester united end 499-day wait over manchester city . click here for all the latest manchester united newsâ .\nbon apetit have revealed the best way to revive a stale loaf of bread . they say the trick is to run the bread under a tap and put it in the oven . the result is a loaf that is soft on the inside and crusty on the outside . lifesum nutritionist luvisa nilsson says the trick is safe . however , you must make sure the loaf is not mouldy before going ahead .\nthe pfa announced the shortlist for player of the year earlier this week . eden hazard , david de gea and harry kane are among leading contenders . jamie carragher reveals there will be plenty of tactical voting by players .\ntoby alderweireld is on loan at southampton from atletico madrid . belgian defender can join permanently in the summer for just # 6.8 million . but atletico may want to bring him back to the vicente calderon . manchester city and tottenham also interested in the defender . alderweireld focused on helping saints qualify for europe .\nfurious 7 is now one of the ten highest grossing movies of all-time worldwide , currently ranking seventh with $ 1.152 billion . it is expected to overtake both iron man 3 and frozen to join the top five all-time at the worldwide box before running out of gas .\n`` batman v. superman : dawn of justice '' trailer leaked thursday before being yanked offline . film will be released on march 25 , 2016 and stars ben affleck and henry cavill .\nman sat next to the 86-year-old woman in church pew in manchester . he then stole her handbag and tried to snatch two other women 's bags . police investigating have described the april 3 incident as ` appalling ' they have released an e-fit of the man and are appealing for information .\nbill dudley is still ` lovin ' it ' working at the fast-food joint in mold , north wales . wife margaret , 71 , has nicknamed her hubby old mcdonald for his longevity . bill 's special day was marked with a cake and tickets for a weekend away .\nthe pet rock creator has died from chronic obstructive pulmonary disease . he made millions from absurd idea to sell a stone in a box as a ` pet rock ' the product came with tongue-in-cheek instructions for ` care and feeding ' he went on to author the self help book ` advertising for dummies '\nun officials say procedure should only be done when ` medically necessary ' over a quarter of women in england now have a a caesarean birth . the rate , which includes voluntary mothers , has doubled since early 1990s .\nsaracens beat harlequins 42-14 at wembley stadium on march 28 . harlequins full back mike brown pulled out of the aviva premiership clash . brown is still wary after suffering concussion while on england duty .\njordan spieth wins 2015 us masters after finishing 18-under at augusta . spieth became the first man ever to reach 19 under par in the masters . justin rose and phil mickelson -lrb- both 14 under -rrb- finished joint second . read : spieth has world at his feet after record-breaking masters triumph . spieth : winning the masters has been the most incredible week of my life .\ndavid wihby , 61 , has been new hampshire senator kelly ayotte 's state director for the last year . he was arrested on friday on a misdemeanor charge for solicitation of prostitution and stepped down from his government role on saturday . he was one of ten men arrested in the last week by nashua , new hampshire , police in prostitution sting . ayotte said in a statement that she was ` shocked and deeply saddened ' by wihby 's arrest .\ngareth bale suffered a calf strain on saturday evening at the bernabeu . the welshman was forced off in the early moments against malaga . bale will almost certainly miss the clash with atletico on wednesday .\nvijay chokal-ingam says he pretended to be black to get into medical school . he says the experience showed him that affirmative action is a flawed system .\nrutgers university has banned fraternity and sorority house parties at its main campus for the rest of the spring semester . the probation was decided last week , but the school announced the move on monday . 86 recognized fraternities and sororities will be allowed to hold spring formals and other events where third-party vendors serve alcohol . last month , a fraternity was shut down because of an underage drinking incident in november . a member of sigma phi epsilon was taken to a hospital after drinking heavily at the fraternity house during the incident . in september , a 19-year-old student , caitlyn kovacs , died of alcohol poisoning after attending a fraternity party .\ntwo raiders tried to attack a jewellery shop in wigan , greater manchester . they smashed in with an axe and sledgehammer but a brave employee managed to hold them back . criminals escaped on a motorbike but witness caught them on camera . police are now appealing for information to help them catch the raiders .\ncambridge academic victoria miller has been researching the codpiece . says those used in wolf hall were too small to be historically accurate . star mark rylance blamed the size on the show 's american producers . drama tells story of sir thomas cromwell 's rise in king henry viii 's court .\nsebastian vettel gave ferrari victory at the malaysian grand prix . mercedes will remain calm and not panic , says chief toto wolff . lewis hamilton heads to chinese grand prix as reigning champion .\nryuichi kiyonari bettered the donington park lap record on sunday . japanese rider powered in a scorching time of one minute 29.455 seconds . shane bryne finished less than a quarter of a second downâ .\nsouth korean investigators say they have proof that north korea is launching cyberattacks . reports say the north is investing heavily in digital warfare . december attack on banks in south korea caused about $ 820 million worth of damage , a report says .\naustralian plus-size model laura wells talks to women 's weekly . size 14 beauty reveals the extreme diets of her room mates in new york . says agents told models to follow extreme diet for fashion week . last week france passed law banning excessively thin models . agents and brands who do not comply will face fines and imprisonment .\nmichel vorm 's tottenham chances have been few since swansea transfer . but vorm is set to cover for injured hugo lloris against burnley . manager mauricio pochettino has praised vorm 's attitude and character .\nlooming threat of al-shabaab has terrified students and teachers in kenya . terror group massacred 147 at kenyan university last week .\nrobin ellis , now 73 , was diagnosed with type 2 diabetes by chance in 1999 . poldark star read michel montignac 's book , dine out and lose weight . advocates giving up white carbohydrates rather than counting calories . robin has since written a number of cookbooks for people with diabetes . he eats oats , walnuts , apricots and prunes with almond milk for breakfast .\nted loveday led gonville and caius college , cambridge to the university challenge title this week . he became a web sensation after answering 10 different starter questions . but the law student admits he revised by using youtube and wikipedia .\njoko widodo 's chief political rival promised to support clemency . prabowo subianto twice privately assured mr joko there would be no political consequences if the bali nine ringleaders were reprieved . andrew chan and myuran sukumaran were killed on wednesday morning .\nman on moped knocked woman 's phone out of her hand in china . the screen cracks and she demands he pays for the damages . when he says that he has no money right now , she makes him kneel . despite promising to pay eventually , she slaps the man across the face .\nquigg and matchroom promoter hearn offer frampton cheque for # 1.5 m . they want super-bantamweight unification fight in manchester on july 18 . quigg , the wba champion , told frampton to ` put his money where his mouth is ' and make the fight happen . but frampton 's promoters hit back , saying hearn had stalled talks .\nformer prison guard claims fights between inmates are organised by staff . peter hiett , 49 , said staff would put rivals in a cell and let them battle it out . said gangs also control full wings at feltham young offenders institution . feltham named as the most violent prison in england and wales last year .\nmaarij khan , 11 , and his mother mushammat set to be deported from uk . brother saffat , 10 , died of meningitis last month after years-long cancer battle left his immune system weakened . maarij is distraught at the possibility of being unable to visit saffat 's grave . 3,500 people have signed a petition calling on the home office to allow the family to stay .\nnew video shows stag do strutting in denim hotpants and heels . hilarious homage to tv ad that got them cheers and applause in benidorm . preparations for weekend included getting shoes stretched . after wearing heels from 1pm to 7pm , the six men had painful blisters .\nmanuel pellegrini said man city 's academy players are n't up to standard . he said the club will have to be patient as they wait for a new crop of stars . liverpool 's raheem sterling has been linked to premier league holders . he said city face ` eight finals ' to end the season in a bid to catch chelsea .\nkate middleton is preparing to give birth to her second child this week . the duchess of cambridge is already mother to prince george , one . a parenting expert tells femail how to cope with two children under two .\nat 13 , laura scurr went on a diet which would turn into a scary obsession . laura developed anorexia and would survive on one piece of fruit a day . now 15 she has overcome the disorder and is battling back . laura has spoken of the pressures on young girls to be a size zero .\neurocamp 's safari tents are more deluxe than a normal stay under canvas . l'ardéchoise site is in the ardèche region in south central france . an hour-and-half 's drive from the south 's beaches and montpellier airport . this site is a five-star park at the top end of what 's on offer in france . it has four pools and a camp ` animateur ' organising activities for little ones .\ntiger woods begins his 20th masters ranked a lowly 111th in the world . former world no 1 turned on the charm ahead of masters 2015 at augusta . american was joined by girlfriend lindsay vonn and his children . a fifth green jacket would take the 39-year-old 's major haul to 15 . click here for all the latest news from the masters 2015 .\nayatollah hossein dehnavi made statement during marriage advice speech . also claims women not wearing hijab properly could make men gay . homosexuals face persecution in iran under strict islamic regime .\nchelsea captain celebrates wildly at the final whistle after superb display . arsenal defend well but unable to break down jose mourinho 's side . mesut ozil the gunners ' best player , but could n't unlock chelsea .\ndr ellen gallant battled to save the lives of those injured in avalanche . spoke of her devastation seeing a 25-year-old sherpa die in front of her . earthquake sparked by devastating 7.8 magnitude earthquake in nepal . four americans among 18 people dead after huge avalanche on everest .\nisis fighters ambushed an iraqi army convoy of humvees north of fallujah . a suicide bomber attacked vehicles before militants opened fire yesterday . commander of iraqi first division , colonel and two lieutenant colonels killed .\nmatt prior picked up injury playing for england last year . achilles problem saw him lose his test place to jos buttler . despite almost a year of rehab , prior is still a long way from making return .\njackie ward witnessed the family of four have racial slur shouted at them while they were out for the day on friday . shay stewart-bouley , who is black and runs a blog called black girl in maine , was with her white husband and their daughter , 9 , and son , 23 . car of unidentified white males drove past as one shouted ` hey n ***** s ! ' ward said she shared the story to remind people to be kinder to each other .\njudge judy and her husband jerry sheindlin were particularly playful at the women 's guild cedars-sinai luncheon where she was the honoree . the emmy-winning tv judge just renewed her tv contract with cbs for another three years . she reportedly earns $ 47 million a year - the highest paid personality on television .\ndetroit red wings ' drew miller was caught by a skate in the first period against the ottawa senators . the massive cut required 50 to 60 stitches to close , but did not damage miller 's eye . the red wings lost 2-1 but remained in third place in the atlantic division .\ncouple caught on camera having sex in broad daylight in crawley park . semi-naked pair did n't appear to mind people walking past the encounter . entire incident was seen by workers at office block overlooking the park . it came on the hottest day of the year so far as temperatures reached 25c .\nthe wave of isis beheadings has horrified people all over the world . it may also have contributed to isolated beheading incidents by non-jihadists , says an academic . professor arie w. kruglanski says exposure to the videos could help `` prime '' some to emulate them .\nchange4life run by public health england to tackle country 's obesity crisis . it is promoting dishes on its website with up to 29g of sugar per serving . the apricot bread pudding recipe slightly more sugar than a snickers bar . cardiologists say advice is ` disturbing ' and is ` legitimises unhealthy foods ' .\nfuture donations will only be allowed from the governments of australia , canada , germany , the netherlands , norway and the united kingdom . the change in policy comes as former board member hillary clinton hits the presidential campaign trail . hillary clinton resigned from the foundation 's board last week . the foundation 's reliance on funding from several governments that suppress dissent and women 's rights sparked criticism .\nauthorities identify the deceased passenger as 36-year-old gary terry . authorities say the driver , 24-year-old tavon watson , lost control of a lamborghini . the crash occurred at the exotic driving experience at walt disney world speedway .\nkieran murray asked americans to repeat ` g'day mate , how you going ? ' some were lost for words , while others dissolved into fits of laughter . one man was convinced murray was saying ` get out of my nightgown ' another was insistent on telling his story about britney spears . the video is the second of it 's kind which asks foreigners to repeat phrase .\nmamadou sakho limped off in liverpool win over blackburn rovers . sakho was replaced by kolo toure in the 28th minute of the 1-0 victory . liverpool face newcastle united in the premier league on monday night . click here for all the latest liverpool news .\nspain were defeated 2-0 by holland at the amsterdam arena on tuesday . stefan de vrij and davy klaassen scored within four first-half minutes . vicente del bosque said ` we 've been all over them ... but we lacked a goal '\nsteven naismith has worked with the likes of job centre plus , dyslexia scotland and the whitechapel centre in liverpool . 28-year-old has given back to communities that have supported him . everton forward teamed up with job centre plus to offer unemployed fans the opportunity to watch the club this season .\ncourt has adjourned for the day after more than seven hours of deliberations . jurors sent out two questions that are set to be addressed wednesday . if dzhokhar tsarnaev is found guilty of at least one capital count , trial will go to penalty phase .\nformer black panther mumia abu-jamal was hospitalized at schuykill medical center in pennsylvania on april 2 after collapsing in prison . he was delivered ` get well ' letters from third graders in orange , new jersey , and high school students in the philadelphia student union . the letters made mumia ` chuckle and smile ' critics say they ` promote a twisted agenda glorifying murder and hatred ' . mumia is serving a life sentence after years of appeals won him a reprieve from his death sentence in 2012 .\nprince harry pays his respects at the tomb of the unknown australian soldier . he is starting a four-week attachment with the australian military .\ngary ballance hit 122 on day four of the first test in antigua on thursday . ballance had a disappointing world cup scoring just 36 runs in four games . england declared on 333 for seven , setting hosts a target of 438 to win . west indies closed on 98 for two heading into the final day .\ndulwich picture gallery challenged public to spot fake among 270 paintings . visitor numbers have quadrupled in three months since it was launched . counterfeit , ordered on internet from china for # 70 , has now been revealed . it was a replica of jean-honoré fragonard 's 18th-century young woman .\ntimothy stanley : hillary clinton running for president , but it 's not clear what she stands for . there are grounds for a liberal primary challenge . he says democrats who call for reform offer only hillary clinton . she 's formidable candidate , but where are bold new ideas ?\nspacex says weather forced it to delay its rocket launch plan . the company plans to launch a two-stage rocket to the international space station . after the launch , spacex will try to guide the bottom stage upright onto the platform .\nchris christie appeared on the tonight show and called out jimmy fallon for his weight jokes about the governor . later in the program he hoarded a pint of ice cream fallon brought out for the two to share . when asked if he would run for president , christie said ; ` i 've got a day job which keeps me busy ' .\njohn isner will play either novak djokovic or david ferrer in the last four . he became the first american to reach miami open semi final since 2011 . kei nishikori could not handle isner 's serve in a 6-4 , 6-3 defeat .\ndjango greenblatt-seay , 33 , thought the ad would help his post stand out and ` add a little flair to it ' . commercial includes cinematic overhead shots greenblatt-seay filmed using his drone . it is soundtracked with an old-fashioned 1987 ford taurus commercial and dubbed by greenblatt-seay to make the information relevant .\ndick advocaat warned his side they face relegation if they do n't improve . sunderland were thumped by crystal palace at the stadium of light . blacks cats boss advocaat has admitted he is worried by relegation . sunderland are three points clear of the premier league relegation zone .\ngeorge ford scythed through the leinster defence for sublime try in the first half . five penalties from ian madigan gave leinster a 15-5 half-time lead . stuart hooper crashed over for bath 's second try following another dazzling ford break . madigan 's sixth penalty proved crucial as leinster held on for a hard-fought victory .\nolivier rousteing has revealed why he chose kim and kanye for balmain . designer says the couple are ` among the most talked-about people ' . fashionable couple love wearing matching designs by balmain designer .\nlewis hamilton won the chinese grand prix in shanghai . the brit celebrated by spraying champagne in face of a hostess . object , which campaigns against sexism , said he should apologise .\nmanager accused of siphoning funds out of elderly customers ' accounts . hugo mbaeri , 25 , portsmouth , allegedly passed details to fraudster gang . court heard victims were vulnerable , four of nine targeted were in their 80s . seven others also accused after their accounts were used to hold the funds .\noliver minatel , a 22-year-old player from brazil , was attacked from behind , he says . witnesses say suspect tried to choke him with the cord from his headphones . team says forward is ok , will play saturday night ; suspect was taken for evaluation .\nmitchell moffit and greg brown from asapscience present theories . different personality traits can vary according to expectations of parents . beyoncé , hillary clinton and j. k. rowling are all oldest children .\nscottish pfa chief believes retrospective action is too far reaching . rules were changed after an incident between gary deegan and gary irvine . there was clamour to see action taken against josh meekings after a handball in the scottish cup semi-final that was missed by the referee .\nmanchester runway closure caused disruption for hundreds of travellers . police helicopter scoured the area but was unable to locate a drone . uk aviation authorities have successfully prosecuted two operators .\nfrances clarkson , 53 , spend easter bank holiday weekend in caribbean . she was spotted with friends and family as she sunbathed and jet skied . previously holidayed there with jeremy clarkson , but pair now ` live apart ' he was sacked by bbc last month after ` fracas ' with top gear producer .\nbentley executive called new continental a ` copy ' of bentley flying spur . luc donckerwolke put remark on designer david woodhouses ' facebook . side windows of vehicles look similar and both models have chrome trim . spokesman dismissed criticism and said ` continental is clearly a lincoln ' . bentley defended donckerwolke and called car design ` an emotive subject ' general motors told reporters he ` liked the bentley designer 's comment '\nnicklaus , a six-time winner at augusta , added another glorious moment to his glittering masters career with an ace on the fourth . the 75-year-old saw his shot sail beyond the flag before spinning back into the cup . the crowd roared in celebration with several players stopping their round to cheer the golden bear . colombian camilo villegas later eclipsed nicklaus ' achievement , hitting two aces during his round . villegas was beaten in a play-off by world no 74 kevin streelman .\nellie grant , 22 , was appearing on the show to discuss her condition . but in the middle of the pre-recorded interview , miss grant suddenly suffered a tic - and blurted out ` silver fox ' at phillip , 53 . ` silver fox ' is the nickname of the father-of-two , who smiled , but looked bemused and slightly embarrassed at the remark . amused viewers took to twitter to say how much they enjoyed the clip .\nan indiana public school performance of american pie ended in tragedy wednesday when a riser buckled just as dozens danced on-stage . more than a dozen people were injured at the westfield high performance and one student was taken to a hospital in critical condition . students said there had been no issues when they previously practiced the song on the stage with the same number of people .\nlaura jordan , 24 , married jack jordan , 23 , yesterday . pair from from brixham , devon , found out he has weeks to live on april 11 . laura , a mother-of-one , planned ceremony in just six days . told jack she 'd wear a suit but surprised him on the day in a dress . their music idol ed sheeran sent them a personal video message .\npoppy smart , 23 , accused builders of sexual harassment for wolf-whistling . ian merrett , 28 , says she was ` lucky ' and should take it as a compliment . he said : ` if she walks past again and is lucky she 'll get wolf-whistled again ' he accused her of damaging the reputation of men in the building trade . miss smart went to police who sent officers to warn the builders involved .\nsamsung sold 82.4 m smartphones in the first three months of the year , for a 24.5 percent market share . apple held an 18.2 percent market share after selling 61.2 million iphones . apple and samsung virtually tied with 20 % of the market in latest quarter .\nhong kong banker alleged murder case adjourned until may . the 29-year-old rurik jutting is accused of killing two indonesian domestic workers .\nthree days of celebration to mark the 70th anniversary of ve day on 8 may . her majesty will attend westminster abbey service of thanksgiving . in 1995 , her majesty was joined by queen mother and princess margaret . yesterday the queen distributed alms at royal maundy service in sheffield .\nkhloe , 30 , has been showcasing a glamorous new look . star has dyed hair blonder and curated a specific beauty regime . she has also lost an impressive amount of weight .\nvirginia polytechnic institute and state university researchers found a way to use discarded corn husks and stalks to make cheap hydrogen fuel . used efficient method to convert 100 % of plant sugars into ` green ' fuel . it 's previously only been possible to convert 60 % of sugars into hydrogen . breakthrough could see motorists filling up at roadside bioreactors .\nabout 56,000 dogs treated by vets for poisoning between 2010 and 2014 . most had simply found a piece of food lying around or been fed a treat . painkillers the most common cause , followed by rat and mouse bait . kennel club poisons expert warns even ` harmless ' foods can be dangerous .\nlucy gransbury wrote a long handwritten letter to her noisy neighbours . melbourne-based actor finally erupted after four months of sleepless nights . also a comedian , she used her humour to tell them what she thought . photos were taken of her throwing letter and over the fence and running off . after a week of peace and quiet , she decided to send another note and gifts . despite being woken by them talking twice the following sunday morning . the cabaret artist finally received a hilarious reply from one of rowdy lads .\nsouthampton manager ronald koeman wants to stay on at st mary 's . dutchman says he would even turn down real madrid and barcelona . southampton face former manager mauricio pochettino on saturday . the ex-saints boss quit in the summer to take charge of tottenham .\npatrick miller and his friend thought they were staying at a nicer hotel . they arrived to find stagnant , green water in the swimming pool . hot tub is filled with dead insects and other floating debris . amenities were antiquated or broken and paint was peeling off the walls . the grounds have uncut grass , dead flowers and downed tree branches .\na letter of thanks penned by masters champion jordan spieth when he was 16-years-old has surfaced which reinforces his nice guy image . six years ago the pga golfer was on a scholarship at jesuit high school in dallas , which was funded by the murphy family who he thanks in his letter . ` thanks again for your kindness , ' wrote the then number one junior golfer in the country in his best handwriting . spieth won countless plaudits following sunday 's masters victory not just for his golf but also his humble attitude .\nlifelong blackpool fan frank knight forced to pay # 20,000 in damages . the pensioner made allegations about the oyston family on facebook . seasiders fan joe atherton set up an online account to raise money . football supporters have now met the # 20,000 target . club is owned by owen oyston , while son karl is blackpool chairman . knight ordered to make a public apology following facebook comments .\ntheo walcott has just over a year left on his current # 90,000-a-week deal . liverpool and manchester city are interested in the arsenal winger . walcott has fallen down the pecking order at the emirates this season . the 26-year-old wants to be playing regularly under arsene wenger . walcott will open talks about his future over the next two weeks .\nveteran kenny bayless has been named the third man in the ring for the highly anticipated bout between floyd mayweather and manny pacquiao . bayless has supervised countless high-profile fights in las vegas before now , including several of both mayweather 's and pacquiao 's . he will celebrate his 65th birthday on may 4 , two days after the fight .\njade and ross morley released a video to explain to their friends and family that their first child floyd-henry had achondroplasia dwarfism . the couple said he would be a ` little legend ' and he was ` small , that 's all ' the video was shared to social media and went viral around the world . jade and ross have now welcomed twins , cleo and harrison , into their family , making floyd a big brother and the morley household very busy . the morley 's are passionate about raising awareness about achondroplasia and making the world a ` kinder place ' for floyd .\nserena williams won her eighth miami open title on saturday . she won the final 10 games in a 6-2 6-0 demolition in miami . the unbeaten world no 1 has now won 12 consecutive finals .\nvincent stanford was born in tasmania before moving to holland . arriving back in australia in recent years , he has lived with his mother and elder brother in a small house in leeton , nsw , for 13 months . his identical twin returned from holland in june 2013 . ` he was a nice enough sort of bloke , clearly a loner , ' neighbour says . stanford gained employment as a casual cleaner in october . he cleaned leeton high school where stephanie scott worked . his employer said he passed all the national criminal record checks . stanford was charged with stephanie scott 's murder on thursday . the school keys she was loaned were allegedly found at his home .\nerrol louis : new book to detail alleged conflicts of interest with foreign donors to clinton family charities . he says without smoking gun , it 's likely not election deal-breaker for americans worried about issues like economy , jobs , schools . louis : more notable is mismanagement , ethical history of clinton charities .\nspending on consultants doubled to # 1.4 billion over the past four years . daily rates of between # 800 and # 1,000 are reportedly commonplace . david cameron has been criticised for ramping up aid spending .\npaul smith is set to face andre ward in oakland , california on june 20 . liverpool fighter is not expected to challenge for ward 's wba world title . smith has lost back-to-back world title challenges against arthur abraham while the american is undefeated in 27 games .\nat least one person died as a result of storms in illinois , an official says . fire department : rescuers searching for trapped victims in kirkland , illinois .\nards council spent # 7,000 on three-course christmas dinner and disco . staff feasted on roast turkey with all the trimmings - paid for by taxpayers . almost # 500 was spent on balloons and christmas crackers for the party . celebration was to ` maintain staff morale ' as the council was closing down .\nscott kelley , stepfather accused of kidnapping , is arrested at the atlanta airport . mother genevieve kelley 's trial is set to begin next month . mary nunes ' father says he is `` overjoyed she is alive and back in the us ''\n300 inmates including al-qaeda leader freed during breakout at jail . two guards and five inmates killed in clashes . 44 people , including 18 civilians , reportedly killed in city of aden . security officials later confirmed fall of the palace .\nprince william is due to attend the ceremony at the cenotaph on april 25 . palace sources have confirmed that kate 's due date is the same day . the duke committed to the commemorations in february , said aides . he is currently training for his new job as an air ambulance pilot .\npoint-of-sale shutdown is effecting 8,000 starbucks locations in us and canada . company said in statement glitch was caused by a failure during a daily system refresh . glitch also affected starbucks ' evolution fresh and teavana stores . many starbucks locations closed their doors so as not to give away free drinks . coffeehouse chain said in update on its site stores are expected to open for ` business as usual ' saturday .\nnovak djokovic lost his cool during sunday 's final showdown in miami . djokovic started shouting at his backroom team after andy murray won set . the serbian tennis champ asked the youngster for his ` forgiveness ' . he said he got emotional because ` andy was playing well ' .\nthe gargoyles , endless balconies and fountains can be yours to help carry on the eccentric torch of quirky indy celebrity jerry a. hostetler . the current owner bought the home after hostetler 's 2006 death . he listed it for $ 2.2 m in february 2012 , $ 1.3 m in 2013 and now for less than a million . the house is five garden-variety ranchers glued together to form a campus-o-fun complete with swimming pool , ballroom and guesthouse .\nactor thinks the former secretary of state has ` paid her dues ' . revealed his choice for the nomination at the tribeca film festival . said in 2006 both she and obama would one day be in the white house . added that if she is president there will be ` surprises ' .\nkenneth lombardi was a red carpet reporter for cbs new york . he claims duane tollison , a senior producer , grabbed his crotch and kissed his neck in front of other colleagues at a december 2013 work party . tollison later sent an email saying : ` if you were n't offended lets do it again ' lombardi also claims evening news directior albert colley touched and kissed him over drinks in may 2014 . he is suing cbs , tollison and colley for unspecified damages .\nnorway 's alexander kristoff won race after sprint finish with niki terpstra . geraint thomas was among favourites to claim title following recent win . the welshman was unable to recover ground on kristoff and terpstra .\njosh darnbrough only noticed the tattoo on his back the following day . it was the handy work of his best friend rob gaskell . rob was getting revenge for a botched diy tattoo josh had given him . the pair are both getting their tattoos removed and remain friends . watch the full story on tattoo disasters , tuesday april 21 , 2015 at 9pm on spike , sky tv -lrb- ch 160 -rrb- , freesat -lrb- ch 141 -rrb- and freeview -lrb- ch 31 -rrb- .\ncambridge united chairman warning of rise of violence among older fans . dave doggett said grandfathers in their 50s and 60s trying to arrange fights . he said violence has increased since club promoted to league two in 2014 .\nfamily of american medic killed posts message on facebook says she died while at base camp . at least 13 die after avalanches at mount everest base camp , authorities say ; climber says 17 dead . dining tent at one base camp has been transformed into a hospital , another hiker says .\nthursday 's match between two baseball heavyweights turned into a brawl . began after dispute between the yordana ventura and adam eaton . sparked a mass fight with members of both teams running onto the field . umpire ejected a total of five players after the scrap at chicago 's stadium . ventura was suspended for seven games . edinson volquez suspended five games and lorenzo cain and kelvin herrera got two games each . sox players chris sale and jeff samardzija were suspended for five games . catcher tyler flowers was let off with an undisclosed fine .\nofficer michael slager 's mother says she could n't watch the video of the incident . slager was fired earlier this week . slager is charged with murder in the death of walter scott .\nsupermarket giant becomes first to introduce halal-only sweet counters . move being trialled in 10 stores around the uk based on local community . counters will sell 36 types of gelatine-free and alcohol-free sweets . muslim figures praise the move and say demand will be high .\nromelu lukaku signed for everton for # 28m from chelsea in the summer . the striker has been out for four weeks due to a hamstring injury . lukaku could be set to make his return at goodison park against burnley . roberto martinez says he could not ease lukaku in even if he wanted to .\nnoeleen foster snapped an image of a phallic cloud at work last friday . the mother-of-four took the pic in zuccolli , 25km southeast of darwin . last year another suggestively shaped cloud made waves in england .\nseven-car train beat previous record of 361mph -lrb- 580km/h -rrb- set in 2003 . it made use of a magnetic charge to lift and move it above a guideway . maglev service between tokyo and nagoya will begin running in 2027 . train 's engineers are planning new attempt to reach 373mph -lrb- 600km/h -rrb-\ntrip will come before pope francis arrives in united states . francis played key role in re-establishing diplomatic ties between cuba and u.s.\nmui thomas has a rare genetic condition that leaves her skin raw and open to infection . abandoned at birth , tina and rog thomas adopted mui . she 's now 22 , a rugby referee and an inspirational speaker .\ndon mclean 's `` american pie '' lyrics auctioned for $ 1.2 million . the song is dense with symbolism ; mclean says lyrics , notes will reveal meaning . `` pie '' is mclean 's biggest hit , was no. 1 in 1972 .\nnissan note mk1 was named the most uncomfortable car in the country . hyundai i20 mk1 and fiat panda mk2 took second and third spots . ten most comfortable cars include five by lexus , which also took top spot .\nalondra luna nunez 's case drew international attention after a video of her being forced into a police vehicle last week appeared online . there was no immediate explanation of why authorities did not confirm her identity before sending her out of the country . the foreign ministry said mexican officials were carrying out a court order to send alondra to dorotea garcia , a houston woman .\nluke skywalker actor spoke to fan conference in california . joked that abrams , who directed trek reboot , made him suspicious . said he knew he had no choice about joining new films : ' i was drafted ' .\nliana barrientos married 10 men in 11 years - with six in one year alone . alleged scam occurred between 1999 and 2010 . her eighth husband was deported back to pakistan for making threats against the us in 2006 after a terrorism investigation . the bronx woman plead not guilty to two fraud charges friday . caught after describing her 2010 nuptials as ` her first and only marriage ' , sparking an investigation . the department of homeland security was ` involved ' in barrientos ' case , the bronx district attorney 's office has said .\nparamedics were called to a home in northern darwin on wednesday night . the 38-year-old man had chewed and swallowed an entire beer bottle . there were 500 calls made to nt police between 3pm-11pm on wedensday .\nfor the first time ever , ferguson 's city council will be half black . the two winning black candidates vowed to bring reform . the election was a critical test in this beleaguered city .\ndue date believed to have been between last wednesday and yesterday . kate , 33 , plans to give birth at st mary 's hospital in paddington , london . she may have already spoken to doctors about option of being induced . bookmaker 's 6/1 joint favourite for birth date is tomorrow and tuesday .\nbarcelona beat psg 3-1 in their champions league quarter-final first leg tie . luis suarez scored twice for barca in their win at the parc des princes . suarez has scored 19 goals for barcelona in all competitions this season .\nfloyd mayweather v manny pacquiao is now just eight days away . sportsmail 's jeff powell has been counting down the greatest fights . in the fifth in a series of 12 fights that shaped boxing history , we have muhammad ali v joe frazier , the thrilla in manila . it was said to have come five years late , much like mayweather v pacquiao . yet those doubting the two greats in their 30s were spectacularly wrong .\nnorth sea cod populations are healthy in hundreds of fisheries analysed . stocks plummeted in 1980s and 1990s but industry has steadily recovered . research was carried out by seafish and the marine stewardship council . however it also found only one in nine fisheries are operating sustainably .\ndanny higginbotham covers his time under roy keane in his new book . he played for keane 's sunderland during the 2007-08 season . keane told his players ` basically you 're s *** ' before a game with aston villa . he also told one player he was ` not f ****** good enough ' to play for the club .\nthe three centres are planned for cardiff , london and northumberland . they will offer proton beam therapy to private and nhs cancer patients . hoped the first centre in cardiff will be up and running by next year . ashya king , five , made a ` miracle recovery ' after receiving the therapy to treat a brain tumour .\npolice have seen a surge in number of child sex abuse cases since 2011 . in south yorkshire the figure rose by 577 per cent over the last four years . comes after 1,400 children were found to have been abused in rotherham . despite the rise in reported cases the number of arrests made decreased . critics described the ratio of arrests to reports as a ` national scandal ' .\nthe air malta airbus a-319 did two heart-shaped circuits of the island . the flight was to celebrate wedding of a pilot and a member of cabin crew . social media users were baffled by the unusual flight plan on the internet . an airline spokeswoman described the special flight as ` very romantic ' .\nthe united nations relief and works agency chief will visit yarmouk camp saturday . pierre krähenbühl will assess the humanitarian situation there . yarmouk has been engulfed in fighting since december 2012 .\nresidents in stockton 's kingston road are followed in the newest series . filming has finished on the street with just weeks to go until it is aired . but neighbours say housing bosses have spruced it up before release . they accused thirteen group of trying to improve conditions for visitors .\nsome observers applaud abbott 's beer swilling in a pub full of sportsmen . the prime minister last year criticized binge drinking culture in australia .\nbag was discovered near cambridge police station on saturday morning . more human remains later found in a common area of apartment building . a suspect has been arrested and charged with ` accessory ' , not homicide . they will not be identified until the arraignment on monday , officials said . cambridge police are treating grisly situation as homicide investigation .\nbenefits cheat ian drinnan , 58 , claimed had he could barely walk or bend . blackpool rangers coach claimed # 3,500 in disability benefits for arthritis . but he was caught out after being filmed erecting goal posts for his team .\ntewksbury police department was attacked by criminals who infected their network with malware program called cryptolocker . cryptolocker restricts access to infected computers and demands payment to recover files . police systems were down between four and five days , and ransom was paid in digital currency by cops in bid to not lose data forever .\nworkers carry heavy planks and wheelbarrows full of concrete across wooden walkway thousands of feet in the air . men , who are just one step from death , have no ropes or safety harnesses and only hard hats to cushion their fall . officials in pingjiang county , hunan province , hope the path will attract thousands of tourists when it is complete .\nparents of nine children involved in plots to travel to syria are affected . they include three terror suspects who have all previously been named . critics argue parents should be named because they could be extremists .\nheather mack jailed for 10 years over mother 's murder in bali . boyfriend tommy schaefer sentenced to 18 years in prison for the attack . mack gave birth to the couple 's daughter last month .\nteen with deadly brain tumour has raised $ 80,000 for emergency surgery . 18-year-old jackson byrnes and his girlfriend jahnae jackson , 18 , are preparing for him to go under the knife on wednesday morning . he was told by doctors it was too aggressive to operate on . but jahnae found dr teo who would do the operation with upfront fee . the couple turned to gofundme to raise the money for the urgent surgery . the risky operation will likely see him end up paralysed down his left side .\nadorable creature imitates a lizard after waking up from a nap in the sun . photographer ranajit roy spent five minutes taking the cute photographs . ' i was definitely in the right place at the right time ' , says 19-year-old .\nconrad clitheroe is in a jail with friends gary cooper and neil munro . the 54-year-old says he has run out of a vital blood pressure medicine . men arrested at fujairah airport after ` spotting planes and taking notes ' they have not been charged with any offence since arrival from dubai .\neight animals are dead , including at least one alligator that once belonged to michael jackson after a fire last week at an oklahoma zoo . the zoo 's founder , joe schreibvogel , said the fire was most likely set by rogue animal rights activists who have been targeting the zoo . schreibvogel : ` the building can be replaced ... michael jackson 's alligators can not be replaced '\nswansea midfielder tom carroll is on a season-long loan from tottenham . the 22-year-old has featured 18 times for the swans this season . carroll could be out for up to six weeks after injuring his ankle . he scored the only goal during england u21s ' win against czech republic .\nformer davis high school english teacher brianne altice pleaded guilty to three counts of forcible sexual abuse involving three male students . one victim testified that he considered married teacher to be his girlfriend during their yearlong tryst . two of the boys have filed lawsuits against school district for failing to fire altice . each criminal count against teacher carries 1 to 15 years in prison .\ngang hatched an audacious plot to rob guanghui temple in north china . plan involved renting restaurant across the street and digging 70m tunnel . but before they could breach temple , police were tipped off about the heist . 5 men were arrested including the gang 's leader , a well-known artefact thief .\nwoman leaves explosives-laden handbag beside bus during boarding . no group has claimed responsibility , but boko haram is suspected .\n' i did n't do anything wrong , but they still got rid of me , ' rose mcgrath , 12 , of battle creek , michigan said tearfully of her dismissal . st. joseph 's middle school sent a letter to rose mcgrath dismissing her from the school for low attendance and poor academic performance . rose mcgrath was diagnosed with luekemia in 2012 and even though she just finished her treatment she still feels ill a lot of the time . ` when i 'm at home , i 'm sick , i do n't feel well ; no one else does that . but when i 'm at school i 'm like everyone else , ' rose mcgrath said .\nalvaro arbeloa , asier illarramendi and nacho have given tour of complex . first-team players at real madrid have personalised rooms at club 's hq . carlo ancelotti 's side can relax at hq before and after training . rooms contain real madrid-crested pillows , en suite and personalised tv . real assistant fernando hierro has also shown off his private compartment . real madrid face rivals atletico madrid in champions league on tuesday .\ncharlie kwentus , 42 , from webster groves , missouri , was granted his dying wish by the annie 's hope bereavement center for kids . the charity provided all of his family with star treatment for the day , with black tie makeovers and limousine included . footage from the event shows kwentus dancing with his daughters maren , aged nine , and zoe , 13 , before stopping to give a heartfelt speech . kwentus was diagnosed with oligodendroglioma several years ago and recently decided to stop treatment .\nsarah theeboom , from new york city , gave up using hair products as a part of the ` no poo ' movement . the writer battled greasy hair and dandruff for nearly two months before locks became silkier and ` totally frizz-free ' .\nthe freshman senator beefed up his campaign store ahead of his presidential announcement this morning . rand fans will find the usual array of yard signs and bumper stickers - but they 'll also be able to sport their support with more unique items . macbook skins and woven blankets feature paul , flip-flops and car mats bear the slogan ` stand with rand ' and there 's branded cornhole boards . for $ 1,000 supporters can buy pocket constitutions signed by paul . paul 's campaign store reflects the 52-year-old lawmaker 's efforts to appeal to a new generation of conservatives .\nnew england patriots beat seattle seahawks 28-24 to win super bowl xlix . patriots visited the white house on thursday to meet president obama . tom brady was nowhere to be seen , citing ` family commitments ' as reason . february 's super bowl victory was brady 's fourth in a glittering career .\nthe van had stopped after syed viqaruddin asked for a toilet break . once stopped , another prisoner tried to take a gun off one of the officers . a scuffle ensued and the 17 policemen guarding the group opened fire . the prisoners - thought to be part of the same terrorist group - all died . leader viqaruddin is alleged to have killed two police officers .\nmary murphy , 66 , and john wood ,67 , died falling down stairs at her home . pensioner is believed to have come to aid of her partner , 67 , who tripped . detectives described the incident as ` extremely bizarre ' and ` tragic ' ms murphy , a regular worshipper , was described as ` kind and well-liked '\npaul gambaccini has blasted the bbc for destroying the top 40 show . he blamed presenters ' obsession with discussing pop stars ' sex appeal . ` the chart show has become an extension of its presenter 's personality '\nlabour 's shadow chancellor got the right answer after a ten second pause . he said it was ` always dangerous to answer those sorts of questions ' comes after he revealed he did not want to answer maths questions on tv . told susanna reid that the maths brain in his family was his mother in law .\na prosecutor said that jamie silvonek , 14 , accused of conspiring with her soldier boyfriend to kill her mom should remain in an adult jail . her boyfriend , 20-year-old caleb barnes , who is from el paso , texas , but was stationed at fort meade , maryland , is charged with homicide . cheryl silvonek 's body was found stabbed in a shallow grave about 50 miles northwest of philadelphia . ` she threatened to throw me out of the house . i want her gone . ... ` just do it , ' silvonek allegedly texted barnes before the killing .\nwarning graphic content . footage showed mario valencia pointing a rifle into air and firing a shot . michael rapiejko 's police car then mounts the sidewalk and hits suspect . officer said he had no choice but to ` shoot or run over ' the armed man .\ntraditional jedi rules forbid any knights from marrying because it is thought it will lead them to the ` dark side ' . colin gilpatric , from sacramento , was therefore concerned that if he became a jedi , he would n't be able to find a wife . the aspiring jedi , who has autism , penned a letter to george lucas to see if he would consider changing the rules .\njordan henderson looking for # 100,000-a-week contract at liverpool . the reds vice-captain is approaching the final year of his current deal . henderson has already rejected a five-year deal worth # 80,000 per week .\nwilliams was suspended from nbc in february after it emerged he 'd lied about being in a helicopter that was shot down in iraq in 2003 . a new report in vanity fair claims williams lied because he felt insecure taking over from beloved anchor tom brokaw at the nightly news . while some execs saw his lying as ` quirks ' of his personality , the tales left brokaw ` incensed ' and he ultimately did n't support williams in february . after he was accused of lying , williams wondered if he had a brain tumor . but other nbc employees said williams had always been out of his depth because of his lack of experience and disinterest in ` hard ' news .\nnew chief executive may require ` additional incentives ' to take the role . the rotherham council will now offer up to # 200,000 to ceo candidates . its former boss stepped down in the wake of damaging council report . the report showed 1,400 children had suffered horrific sexual abuse .\ndavid cameron this weekend forgot which football team he supported . the pm named west ham as his team , despite supporting aston villa . labour said the gaffe exposed mr cameron as a ` phoney ' leader . the pm today said it was because he had been past west ham 's ground . tories later confirm the pm returned to london on friday in a helicopter .\nfifa have been investigating games from the run-up to 2010 world cup . south african national team games under suspicion since 2011 . players not suspected of wrong-doing , but referees implicated .\ntim visser has agreed to join harlequins next season . edinburgh one win away from european challenge cup final at the stoop . and visser wants to crown his time with the club before he leaves .\nenglishman danny willett blasts timing referee for getting in line-of-sight . vented anger at official as he bogeyed the 17th at 2015 masters . willett carded a one-under 71 on opening round in first time at augusta .\nrose byrne and gracie otto star alongside krew boylan , shannon murphy and jessica carrera on new film-maker group . the new collaboration will support australian women in the film industry . the doll house collective will work together to create and produce films . byrne believes it 's time for women to be taken seriously in the industry .\nthe bag was a 50th birthday gift from her investments manager husband . it was made in japan from african nile crocodile - an endangered species . customs officials took it because ` endangered ' imports need special permits . sabine smouha from hampstead has now won two-year battle for its return .\nthe ohio woman revealed on reddit that her unborn daughter 's dangerous condition would have left her unable to live outside the womb . potential complications from the pregnancy put the anonymous mother 's life in danger . she and her catholic husband had to get special approval for a doctor at catholic hospital to perform the procedure . though she is still grieving over the loss of the child she named gwendolyn renee , she ` does n't regret ' her decision .\nbayern munich beat borussia dortmund 1-0 in the bundesliga on saturday . robert lewandowski netted only goal against his former club . dortmund coach jurgen klopp says pep guardiola 's side deserved win . captain mats hummels disagrees with manager .\nnumber of deaths in britain will increase by 20 % over the next 20 years . funeral firms are faced with bad debts and have increased their prices . a funeral with a cremation , minister and an undertaker now costs # 3,590 . younger people may be straddled with ` funeral debts ' due to higher fees .\nchipotle is stepping away from using gmos -lrb- genetically modified organisms -rrb- as ingredients . the company 's rice , meat marinades , chips , salsa , and tortillas will not be made with gmos . however , gmo-feed is still consumed by the chickens and pigs the company uses . chipotle co-ceo steve ells has said ` they say these ingredients are safe , but i think we all know we 'd rather have food that does n't contain them '\nbombing of targets in central sanaa smashes residents ' windows and doors . hundreds killed in less than two weeks ; humanitarian situation desperate , agencies say .\naustralian convicted drug smugglers myuran sukumaran and andrew chan are expected to be executed in coming hours . celebrated artist ben quilty became their mentor and friend in 2002 . he has campaigned tirelessly for clemency , leading the ` mercy ' campaign . hours before their execution he penned a message to indonesian president . he has described how the men will be a pillar of strenght for the others on death row until the last moment the guns are fires .\nemploying asia nannies would help save money in the long run . extension of au pairs visa from six months to a year another option . opening up system to workers from indonesia could help solve crisis . however , opposition leader bill shorten does not agree with this . mr shorten says it 's not the way to solve the big challenges in childcare .\ndarwin body builder phil primmer died on thursday after collapsing . he 'd just returned from doctor 's appointment to try and treat a sore neck . phil was a celebrated competitor winning the 2012 and 2013 national amateur body building association 's southern hemisphere championship . his son shannan posted a heartfelt tribute on his father 's facebook page .\nlawrence phillips , 39 , was one of the nation 's top players for nebraska . he was jailed in 2005 and sentenced to 31 years at kern valley state prison . his cellmate damion soward , 37 , was found lifeless on saturday morning . soward was serving 82 years to life for first-degree murder .\nkonstantin sivkov wrote that russia needs a new ` asymmetric ' weapon . he says detonating nuclear weapons on seafloor would unleash tsunamis . seismic activity would trigger volcano , pour feet of ash over the us . he says tsunamis could affect 240 million americans and hit europe too . analyst says new weapons could be ready within 10 years . tv presenter previously said russia could turn us to ` radioactive dust ' .\n3,118 applicants accepted as freshmen by university of florida , gainesville . but after receiving acceptance notices , they realized there was a condition . students had to agree to spend their entire first year taking online classes . classes are part of new program pathway to campus enrollment , or pace . they aim to accommodate more students at flagship college , officials said .\nnasa scientists in california have released new images of ceres . they were taken by dawn from a distance of 21,000 miles -lrb- 33,000 km -rrb- the spacecraft is beginning to move closer and closer to ceres . and it will soon study the whole planet - including its mystery bright spots .\nphilip gigante was elected into the position by residents of airmont . his grandfather was vinny ` the chin ' gigante , head of the genovese gang . the mobster walked around in a bathrobe and slippers to look insane . that way he felt like he would avoid prosecution , and did in 1990 . he was jailed in 1997 for federal racketeering and died in prison aged 77 . philip hopes his ` achievements ' will be what his constituents .\n` my son seth , signed the petition asking me , dad , the governor , to veto this bill , ' republican gov. asa hutchinson said wednesday . seth told daily mail online that ' i love and respect my father very much , but sometimes we have political disagreements ' he 's sending the ` religious freedom restoration act ' back to the state legislature because it strays too far from the federal law that inspired it . hutchinson does n't risk a veto-override from lawmakers since he has n't technically vetoed the bill . ` this is a bill that in ordinary times would not be controversial , but these are not ordinary times , ' he said .\npope francis played key role in re-establishing diplomatic ties between cuba and u.s. `` contacts with the cuban authorities are still in too early a phase , '' vatican spokesman says .\ngreg hardy 's league ban to begin on september 5 . hardy signed with the dallas cowboys in march . hardy was arrested and charged in may last year with assaulting and threatening to kill his ex-girlfriend . the case was dismissed in court in february after a lack of co-operation from the accuser .\neleven politicians from 7 parties made comments in letter to a newspaper . said dpp alison saunders had ` damaged public confidence ' in justice . ms saunders ruled lord janner unfit to stand trial over child abuse claims . the cps has pursued at least 19 suspected paedophiles with dementia .\nthe queen was spotted enjoying another ride in windsor great park today . rode her favourite fell pony , a mare named carltonlima emma . joined by lord vesty , one of the richest men in england . left her hard hat at home and opted for a silk scarf instead .\nsome 45 per cent of under 30s surveyed said they had painful back or neck . survey by british chiropractic association showed a 28 per cent yearly rise . as gadgets get smaller , users lean over them adding pressure on the neck .\nrandom darknet shopper is a computer bot that randomly purchases an item every week from a hidden part of the internet called the dark net . swiss police seized bot after it purchased 10 ecstasy tablets from germany . it was later released ` without charge ' according to the artists behind the bot . they designed it as part of an art exhibition to display items bought by the robot over the dark net including trainers , a passport scan and cigarettes .\npolice worried about teen girl who has been missing since friday afternoon . sally gordon-smith , 14 , was last seen leaving her school near melbourne . police confirmed she was still missing early on saturday morning . an image of ms gordon-smith released in the hopes of finding her quickly .\ncostel pantilimon believes the good times have returned to the club . he believes manager dick advocaat has helped improve atmosphere . sunderland have been buoyed by their win over neighbours newcastle . defoe 's winner secured advocaat his first victory as black cats boss .\ngianni van , now 45 , is accused of kidnapping and brutally killing his then girlfriend 's accused rapist while in college in southern california in 1995 . norma esparza , who went on to work as a psychology professor in france , was accused in the murder along with three others . esparza , now the mother of a little girl , was expected to testify against her former boyfriend in a santa ana courtroom this month .\nbrayden travis , from st charles county , missouri , has battled drug addiction since he was 15 and overdosed on heroin in early march . the 18-year-old was left without medical attention for seven hours and suffered a stroke and severe brain damage . doctors told his parents he might be left in a vegetative state but he is now conscious and has made small improvements . his mother shared a photo of him in hospital in a bid to deter others from taking drugs ; the post has been shared more than 337,000 times .\nthe young elephant tramples its mother while attempt to climb her . it then considers sitting on her before clambering off the other end . throughout the entire ordeal the 22-year-old mother remains docile . video was captured by a visitor to albuquerque 's abq biopark zoo .\nnewport gwent dragons scored tries through hallam amos and nic cudd along with a penalty try . cardiff replied with scores from lloyd williams , gareth anscombe and number eight josh navidi . wales captain sam warburton was in action for the blues .\n$ 250 -lrb- # 168 -rrb- neurio device claims to make ` an ordinary home smart ' recognises the electronic signature of different devices , such as kettles . information is fed to an app to tell users their home 's energy consumption . app allows users to control appliances through their phone too .\nformer skipper strauss says pietersen return is out of the question . kp would ` have too many bridges to build ' before coming back . batsman has joined surrey to rediscover form ahead of ashes . but strauss says ongoing saga is too much of a ` distraction ' strauss has been linked to ecb director of cricket role . but another former captain , michael vaughan , is favourite .\ncristina coria 's husband 's truck was stolen from home in houston , texas . it was found the following day but its custom-painted bed had been taken . she went on facebook and saw an ad for a 2003 chevy stepside bed . set up a meeting with the seller and then stalled until police showed up . suspect , 18 , is now facing charges for theft and unlawfully carrying a gun .\nmodels like cindy crawford and jerry hall were huge stars in 80s and 90s . they walked for all of the biggest designers , including chanel and armani . their daughters are now becoming the toast of the fashion world . femail looks at the new breed of supermodel daughters .\npictures show raheem sterling and jordon ibe with shisha pipes . however , liverpool duo are n't first stars to be involved in such controversy . saido berahino and kyle walker both pictured inhaling ` hippy crack ' . read : sterling filmed inhaling laughing gas .\n4,000 on board the carnival spirit have been stranded outside sydney harbour . passengers were to disembark the ship on tuesday but the wild storm prevented it from entering the harbour . the vessel has suffered damage with smashed glass panels and a door ripped open by the crashing waves . carnival spirit was returning from a 12-night cruise to new caledonia , vanuatu and fiji .\nseth casteel traveled across ten states and took more than 750 children for his new book , underwater babies . he is hoping his photographs will encourage parents to teach their children to swim from an early age .\narsenal host liverpool in the premier league on saturday afternoon . victory for arsenal will see the gunners move into second in the league . defeat for liverpool will see them trail the gunners by nine points .\nthe 250-year-old toy was made from leather with a wooden head . it was found during excavation of an ancient toilet in gdansk . archaeologists also discovered swords during the dig .\njared milrad and nate johnson filmed holding hands for campaign video . russian opposition network dozhd tv has decided to give it an 18 rating . spokesman says they fear the video may fall foul of ` gay propaganda ' laws . companies which fall foul of the law could be fined as much as # 13,200 .\ncustomers sought to claim after french strikes affected flights this month . insurers asked passengers for airline letter that confirmed cancellation . but easyjet told those affected to pay # 10 administration fee for the proof .\neddie raymond tipton of norwalk , iowa was charged with two felony counts of fraud for illegally playing the lottery . now prosecutors believe the iowa lottery worker used an intricate hack to ensure his numbers were drawn by the system . they then believe he tampered with security cameras so he would not be caught installing the program he used to have his numbers drawn . police became suspicious after the winner of the jackpot waited until the last moment to claim they 're prize and would not reveal their identity . robert clark rhodes , who tried to claim the ticket , was arrested in march and also charged with two counts of fraud .\n92 percent of americans say it is important to get an annual head-to-toe physical exam . randomized trials going back to the 1980s just do n't support that belief .\nvanessa santillan was found dead at a flat in fulham , south west london . the 33-year-old mexican national was working as a transgender escort . a 23-year-old man was arrested in connection with her death last month . he was bailed pending further inquiries as police continue investigation . any witnesses or anyone with any information that can assist police are asked to call the incident room on 020 8721 4868 or contact crimestoppers anonymously on 0800 555 111 or via crimestoppers-uk . org .\nleicester are currently bottom of the premier league standings . the foxes host swansea at king power stadium on saturday . nigel pearson 's side are seeking their third straight victory .\ndzhokhar tsarnaev , 21 , back in court today for start of defence case . prosecutors last week urged jurors to push for the death penalty . but poll finds majority of massachusetts residents want life imprisonment . defence expected to suggest tsarnaev was led astray by his older brother .\nthousands of fans expected to turn up to the mgm arena in las vegas . to watch the weigh-in , spectators will need to purchase advance tickets . the tickets can be bought on friday with all the money going to charity . read : mayweather vs pacquiao tickets sell out within 60 seconds . read : mayweather vs pacquiao purse could hit $ 300m .\nedwin ` jock ' mee , 45 , allegedly targeted 11 cadets aged between 15 and 25 . one of his alleged victims claims he locked her in a room and raped her . woman told the jury he locked the doors and told her he had the keys . she claimed he told her that if she ` f *** with him ' , then ` he will f *** with me '\nnew text of indiana bill states that no one will ` be able to discriminate against anyone at any time ' ` it was never intended to discriminate against anyone , ' indiana senate president pro tem david long said this morning at a press conference . arkansas legislature was also poised to pass altered legislation after the state 's republican governor rejected the bill at the last minute yesterday . altered law would more closely mirror federal legislation ; it passed the senate last night and is now under consideration in the house .\nprincess charlene presented novak djokovic with a sports award . charlene was glamorous in navy as she handed over the gong in monaco . award was part of a ceremony taking place in shanghai . glitzy event was attended by benedict cumberbatch and henry cavill .\nbrighton giving young players training in law surrounding sexual consent . the seagulls are the first to provide counselling to youth players . part of training involves taking part in question and answer sessions .\namerican boxer out to take back his title from limerick fighter . peter quillin took time out to deal with personal issues , but is now ready . quillin will return to the ring for the first time in a year against lee .\nfabio capello believes england would be much stronger with john terry . terry was accused of racially abusing anton ferdinand back in 2011 . the defender was stripped of the england captaincy by the fa . former england boss capello believes terry should have kept his role .\nrichie benaud first earned fame as a cricket player , later as broadcaster . prime minister tony abbott calls him `` a cricketing champion and australian icon ''\nbayern munich doctor hans-wilhelm muller-wohlfahrt quit this week . his resignation came after pep guardiola blamed defeat by porto on injuries . the pair fell out as early as november over the treatment of philipp lahm . guardiola now has even more power and could stay at bayern for a long time . manchester city want to bring him in as manager but he is unlikely to leave . guardiola , who is impatient with injuries , could even agree a new deal . former barcelona boss has denied a rift with his medical staff this week .\ndarron gibson has been ruled out for the rest of the season with injury . gibson has a metatarsal problem but will be back for pre-season . roberto martinez wants to extend his contract despite repeated injuries . everton will likely rekindle interest in tom cleverley in the summer .\nmohonk mountain house is a ` castle ' retreat 90 minutes from new york . the hotel sits blissfully on the banks of lake mohonk in the hudson valley . the hotel was originally built as a drinking inn 145 years ago before quaker twins albert and alfred smiley made it a dry retreat - the bar is now open .\ntimothy crook is alleged to have murdered his elderly parents . he is then accused of driving their bodies 150 miles in a nissan micra . but crook 's defence lawyer has accused prosecutors of losing the car . police say the micra is n't lost and is somewhere ` in the north of england '\nulrike berger , 44 , ` flew to germany with daughter kaia on march 22 ' . the seven-year-old had been dropped off by her father the day before . custody court order prevents berger , a german national , from leaving the country with kaia .\nbritain was sixth from last in a list of the world 's most religious countries . in thailand 94 per cent of people deemed themselves religious by contrast . china had the smallest religious community with 61 per cent are atheists . those under 34 tended to be more religious than other groups , found poll .\na tsunami warning for islands in japan 's far south has been cancelled . a very shallow quake hit yonaguni in the southwest , near taiwan . witnesses said buildings swayed in taipei but there was no visible damage .\nromelu lukaku 's agent mino raiola said his client would leave for big club . however roberto martinez is not concerned by raiola 's recent claims . lukaku missed everton 's 1-0 win over southampton due to injury .\nman city have won seven of the eight games frank lampard has started . phil jagielka is five games away from a complete season without a booking . didier drogba proved he can still do a job for jose mourinho 's chelsea . tim sherwood is getting the best out of tom cleverley .\nmerrion square was the favourite in the 4.20 at wincanton on wednesday . horse suffered a wobble that threw jockey lewis ferguson in a freak fall . trainer paul nicholls confirmed the jockey escaped unharmed .\nrory mcilory was joined on the course by niall horan for par-3 contest . the one direction star suffered an embarrassing slip while carrying mcilroy 's clubs during the round on wednesday . mcilroy shot a one-under-par round to finish in a tie for 16th .\nevacuation orders were lifted just before dawn for about 300 homes in an area along the border of the cities of norco and corona . officials said about 25 per cent of the flames were contained by middway . cooler overnight temperatures and low winds allowed fire crews to attack the blaze , though on-the-ground conditions did not make that fight easy .\na selection of notes from british artist 's 1,500-note collection goes on display in london . artist spent six years trawling streets finding scraps of paper detailing people 's lives . in era of smartphones and social media , notes provide reminder of power of handwritten word .\nraheem sterling rejected contract offer of # 100,000-a-week at liverpool . young winger gave revealing interview to the bbc on wednesday . but what did sterling mean with some of his statements ? .\nollie devoto , semesa rokoduguni , anthony watson and matt banahan all crossed for bath . bath fly half george ford added nine points from the boot . newcastle replied through a sinoti sinoti try .\nchelsea bruck last seen on october 26 in frenchtown township , michigan . 22-year-old 's body found friday and identity confirmed with dental records . remains discovered close to train tracks near woods on private property . costume found about ten miles away at an industrial site near flat rock . cause of death has not been determined but evidence indicates homicide .\nmotor insurers direct line group put him under video surveillance . he was filmed meeting his friend clifford and pals in coffee shop . but the claimant argues footage proves he does not go far from home . lawyer says client ventures no further than a 1,350 ft radius from house . engineer tells how injuries from accident put an end to his active life .\nsaudi arabia has launched airstrikes against rebels in yemen . ali alahmed : results of saudi campaign unlikely to be positive .\nprime minister alexis tsipras had been expected to ask for hand-out . but he insisted he did not ask for aid , saying greece was ` not a beggar ' instead he and vladimir putin agreed to look at a package of investments .\nsvetlana kuznetsova beats julia goerges in straight sets in fed cup . anastasia pavlyuchenkova defeats sabine lisicki for 2-0 lead .\nedda goering , 76 , petitioned bavarian parliament to return father 's legacy . in 1960s she also tried to have painting looted by her father returned to her . today she refuses to criticise the military leader , calling him a ` loving man ' goering was deputy to hitler and was the nazi regime 's greatest art thief .\nsteven abberley threw marbles during pmqs but they hit a security screen . he stood up and shouted ` you are all just liars ' before the bizarre attack . abberley , 28 , also spray painted graffiti on a wall outside the public gallery . he was given suspended sentences for threatening behaviour and criminal damage .\ndanny willett carded a one-under-par 71 in the first round at the masters . the 27-year-old holed a curling 60-foot putt on the par-five 13th for eagle .\nkevin morton gave kye backhouse a strong painkiller when he was ill . the teenager subsequently died and his father has admitted manslaughter . morton , 49 , faces jail when he is sentenced next month .\nandy mcilvaine , 33 , got talking to southwest staff during his flight to propose to his girlfriend in maine last october . touched by his story , they gave him a $ 100 voucher as a gift . after he wrote to thank the ceo , the company threw the couple a shower at bwi airport in baltimore on april 1 . baltimore-based mcilvaine and dallas-based kelley mulsingeron spend much of their relationship flying to visit one another .\nsam pearce goes by the name sam worthen when he works as a model . he walked in new york fashion week this february while his brooklyn , new york school was closed for winter break . the 24-year-old has worked for the likes of dnky , diesel and alexander mcqueen . mr. pearce says he opened up about his double life in an effort to raise money to buy his students books on go-fund-me .\nafter going through check-in , nguyen thi hang stopped before boarding . vietjet air employee believed her luggage would weigh more than 7kg . after putting case on scales , woman slapped airport worker .\nchelsea owner roman abramovich believed he had pep guardiola in 2012 . but the spaniard was spooked by abramovich 's regular hiring and firing . guardiola craves the stability he has found at bayern munich . and he will seek similar assurances should he join manchester city . pellegrini 's time at the etihad appears to be drawing to a close . city are clinging on to fourth spot in thepremier league . read : patrick vieira has all the tools to become next man city manager .\ngivenchy designer riccardo tisci , 40 , announced that donatella , 59 , will appear in his new ad campaign . the top designers work for competing fashion brands , but they are good friends in real life . riccardo once told donatella he would love to see her dressed in givenchy .\ngundogan expects to complete a # 15m move to old trafford in summer . hummels has indicated he 's finally ready to become a united player . the move will be as part of a # 50m-plus borussia dortmund double raid . both have privately let it be known they feel the time is right for a new start . louis van gaal will be handed a # 150m summer transfer kitty .\nmercedes f1 boss niki lauda launched a verbal grenade at nico rosberg . the three-time world champion wants rosberg to step up his game . lauda has called for rosberg to challenge lewis hamilton all the way . austrian believes rosberg is extremely professional but lacks confidence .\nmanchester city have apologised to supporters and promised refunds . 300 fans affected after six coaches were delayed and they missed kick-off . the move is likely to cost the premier league champions around # 12,000 . city lost the game at palace 2-1 to seemingly end their title aspirations .\njustin d. smith , 18 , and 20-year-old efrain diaz are accused of killing 22-year-old ohio-native jonathan krueger .\nthe total eclipse will only last 4 minutes and 43 seconds . people west of the mississippi river will have the best view . parts of south america , india , china and russia also will see the eclipse .\ndavid alaba posted video on his instagram of the cast being removed . the austrian is currently out after suffering knee ligament damage . bayern munich face porto in the champions league on wednesday .\njason lee , 38 , was arrested in august 2013 after a woman accused him of attacking her at the home he and his wife rented in east hampton . after inviting the woman and her friends back to the house , he allegedly undressed , forced his way into a bathroom and pinned her to the floor . lee was celebrating his birthday at a hamptons night club night of incident . the former investment banker pleaded not guilty and is free on $ 100,000 bail .\nthe operator of the fukushima nuclear plant said it has abandoned a robotic probe inside one of the damaged reactors . a report stated that a fallen object has left the robot stranded . the robot collected data on radiation levels and investigated the spread of debris .\nthe first year washington university students were on creve coeur lake . initially all is calm until slight splashes can be seen rippling in the water . suddenly all hell breaks loose and hundreds of asian carp leap at them .\n17-year-old gave birth in shoe factory in china - then went back to work . baby was ` icy cold ' when he was found by cleaner , then taken to hospital . teenager kept pregnancy a secret because she was scared of her parents . her father said : ` my daughter is not married . we can not keep this baby ' .\ntony pulis led west brom to 2-0 win over his former club crystal palace . west brom 's performance was typically disciplined of a pulis side . pulis has insisted that his signature style will never change .\nmodels abbey and lily are joined by alice dellal and singer foxes . the women are pictured ` wearing ' their support . abbey , 29 , says she is proud to be part of a campaign that funds vital work . campaign has raised # 13.5 m for breakthrough breast cancer 's research .\none in three women are self conscious about the state of their skin . superdrug launches range of creams to tackle spots and fight aging . hormones and diets blamed for those up to their 50s suffering with spots .\nbezos , who is worth $ 34.7 billion , wandered in the campo de ' fiori in rome with family and a security guard on tuesday . the amazon ceo was seen snapping pictures with his amazon phone of the market stalls .\none in ten thinking about moving to countries where the pay is higher . poll of 15,560 family doctors finds 1 in 6 is considering going part-time . bma survey also reveals 7 % of gps are contemplating quitting altogether . benefited from pay deal ten years ago that saw salaries increase by 50 % .\ndurst , a convicted felon , charged with unlawful possession of a firearm . he is accused of having a .38 caliber revolver and faces up to 10 years in prison .\nsteve bruce adamant that hull will avoid relegation from premier league . hull were beaten 2-0 by southampton at st mary 's on saturday . defeat leaves hull in 17th just two points clear of the danger zone . bruce wanted 10 wins at the start of the season , but hull have just six .\nmourners attend visitation service for walter scott . police meet with man who was passenger in his car when it was pulled over . michael slager 's lawyer says police are n't being helpful at this point .\ncollector says he bought the outfit as it was about to be thrown away . vivien leigh wore it in several key scenes in the 1939 movie .\ninverness defender josh meekings prevented a goal-bound header from celtic 's leigh griffiths with his hand during the scottish cup semi-final . he did not face any punishment in the match which caley thistle went on to win 3-2 after extra-time . celtic have since complained to the sfa about the incident . a call to ban meekings from the final will be contested by inverness .\na new species of frog has been found in the state of são paulo , brazil . called hylodes japi , it was found to mate underground in secret chambers . males and females typically find a spot to mate in about five minutes . and the male will cover up the eggs to protect them from predators .\npatient had 19 teeth removed in a series of operations in munich , germany . the dentist - known only as k - claimed he was a ` recognised healer ' alleged the patient had bone inflammation and could n't have fillings . independent report found there was no medical basis for the operations .\nyannick bolasie raced past lee cattermole to claim his hat-trick . referee anthony taylor was closer to bolasie than cattermole for final goal . gary cahill has won back his starting spot after brief spell on sidelines . vincent kompany failed to impress in man city 's defeat by man united . arsene wenger 's decision to drop wojciech szczesny has been justified .\nanti-immigrant protests have been ongoing in south africa for two weeks and at least five people have been killed . foreign nationals have been loading trucks with their wares as they flee johannesburg and neighbouring towns . protesters are angry about foreigners in the country when unemployment is high and wealth is n't distributed equally . immigrants wielding machetes have clashed with police as they hunt for locals that targeted foreign shop owners .\ncharlie adam scored remarkable goal in defeat to league leaders . even chelsea boss jose mourinho full of praise for adam 's strike . adam 's goal compared to david beckham and xabi alonso goals .\nsnp leader said alex salmond did not field questions over his family . said she was not ` moaning ' but also attacked criticism of women 's looks . she made the remarks in latest programme profiling the main party leaders . ms sturgeon also revealed her tv habits and recent image makeover . she said she relaxed by eating steak and chips on a saturday night .\nayyan ali was caught in islamabad airport with the money in her carry-on bag . the glamorous model has been in jail since march 14 and was been denied bail . illegal to carry out over $ 10,000 but lawyers say she was not going to fly with it . they she had yet to check in , and was going to give money to her brother .\nclaims were made by thailand-based kgi securities analyst ming-chi kuo . he said the next-generation iphone will feature force touch . this was added to the watch and macbook and tracks click pressures . if true , the change will be significant enough to warrant apple calling its handset iphone 7 rather than adding a traditional 's ' to the iphone 6 range .\nformer face of nightly news was suspended for lying about iraq report . details from investigative team memo to nbc ceo revealed that he is thought to have lied about his experiences at least eleven times . include seemingly overblown claims about reporting on the arab spring . info leaked to press this weekend thought to be effort to pressure him out . media insiders say he would receive between $ 20million and $ 30million .\nbayern munich won 1-0 in dortmund in the bundesliga on saturday . a bundesliga , cahmpions league and german cup treble is on for bayern . pep guardiola 's side face bayer leverkusen in the cup quarter-final . manuel neuer looking for bayern to build momentum in cup on wednesday .\nlindsey vonn was back at augusta friday to watch boyfriend tiger woods play in the second round of the masters . vonn looked stressed at times though woods played a solid round , carding a three-under-par 69 . woods is still well behind the leader , hot young american star jordan spieth . the 21-year-old broke the 36 hole record on friday and is 14-under-par for the tournament , 12 strokes ahead of woods . spieth led after three rounds last year and finished second at the tournament . if spieth wins he would tie the record for the youngest winner in masters history with woods .\nluke lazarus was convicted of raping an 18-year-old at soho nightclub . the 23-year-old sydney man was sentenced to a minimum of three years . he then bragged about it to a mate via a text message next day after attack . lazarus ' lawyers are now appealing his conviction . this comes as waverley mayor sally betts wrote a reference for him . liberal mayor asked for him not to receive a custodial sentence . says she is trying to ` close loophole ' of ` risky behaviour ' in young women .\nszilveszter , 24 , had petroleum jelly injected into penis by a friend . told it would make him bigger . it left him swollen and in constant pain so he could n't have sex . cosmetic surgeon admitted ` his penis is a disaster ' he needed hours of surgery in order to recover .\nalfred hitchcock was born in 1899 in leytonstone , east london . he later became ` one of the most distinguished directors in the world . but his insecurities began to seep into his cinematography . actress tippi hedren once said ` he was almost obsessed with me ' .\nyesterday , the son of the sultan of brunei married in an opulent ceremony . the couple both wore in diamonds and the bride had a bouquet of jewels . there is now a trend of extravagant weddings for celebrities and royals . kim kardashian , kate middleton and katie holmes spent millions on theirs .\nspacex made its third attempt to land a booster on an ocean platform . but the booster tipped over after hitting its target and was destroyed . falcon 9 is on its way to the iss with supplies and will arrive friday . cargo includes first espresso machine designed for use in space .\nwayne rooney listed his five most memorable moments of the derby . manchester united welcome neighbours city to old trafford on sunday . rooney 's overhead kick and winner in the carling cup made the list . paul scholes , michael owen and robin van persie were also included . click here for all the latest manchester united news .\nuefa champions league draw took place shortly after 11am in nyon . semi-final draw : barcelona vs bayern munich , juventus vs real madrid . uefa champions league semi-finals take place on may 5/6 and may 12/13 . champions league final to be played at berlin 's olympic stadium , june 6 . who will win the champions league ? our reporters have their say ? . barcelona vs real madrid is the dream uefa champions league final .\nkelly kreth had a traumatic encounter with a sociopath in her own life and became inspired to learn about the inner workings of a criminal mind . six years and 600 prison letters later , kreth says a sociopath is a person ` who wants to feel like the smartest person in the room ' ` they do it for the thrill , ' kreth said , adding that she does not condone any of the perpetrators crimes . kreth says she wants to write to alleged murderer robert durst .\nsierra sharry was eight months pregnant when her son 's father died . a photographer was able to add lane smith to the family photo .\nshabana bibi , 25 , died after she suffered burns to 80 per cent of her body . husband and father-in-law were arrested and accused of setting her alight . investigating officer now says police have no doubt bibi committed suicide . azam says he will set himself on fire if he does n't get justice for his sister .\nworrying rise in the amount of child abuse discovered on the internet . experts from internet watch foundation removed 31,000 web pages . this represented a 136 per cent rise from around 13,000 the previous year . most pictures and videos found online were on websites in north america .\nsnp leader said ed miliband had allowed himself to be ` kicked around ' the scottish first minister said the labour leader needed to be ` bolder ' she said he had been pushed into ruling out a deal with the snp by the pm . ms sturgeon said the labour leader would change his mind after may 7 .\nabdul-malik al-houthi says in a televised address that fighters will not pull out of major cities . a top military leader pledges allegiance to yemen 's ousted president .\ncitizen captured sandstorm sweeping its way through part of the state . sandstorm caused delays to flights and forced schools to shut . car crashes and respiratory problems were also reported last week . strong winds were behind large sand clouds obscuring dubai 's skyline .\nthe man in his 50s , only named as mr zhang , had been on his motorbike . a car hit him as he pulled out of the junction , throwing him off the bike . villagers say his younger brother died in the same place last august , when a collision with a lorry killed him instantly .\nchristopher bridger , 25 , attacked three women after drinking sessions . he was convicted of rape and four other abuse charges at court last year . ambulance worker told women he was gay before assaulting them in bed . hcpc conduct and competence committee removed him from register . panel described crimes against three women as ' a serious breach of trust '\nthis is the final week of our major good health series on dementia . we turn our attention to carers and what can be done to make life easier . in england there are more than 670,000 unpaid carers helping someone . we explain what to if they become anxious as the light starts to fade . bed and getting-up times . when to take medication . meal times . shopping days . leisure time such as tv , radio or social times . before you start talking always engage eye contact to help get the person with dementia to focus on you . there can be a tendency for them to look away and this makes it harder for them to concentrate on the conversation . be careful about asking questions they may be unable to process . for example , if they 're upset do n't ask what 's wrong as they may not know , or are unable to put it into words . instead , tell them : ` you seem to be upset ; let 's think how we can make you feel better . ' finishing sentences for them can increase frustration . it 's better to ask if they 'd like you to find words for them if they 're having difficulty . watch their body language as this can give you clues about how they are feeling . for example , repetitive movements can mean they are anxious or scared , while withdrawing may mean they feel overwhelmed . if they 're doing something obviously wrong , for example putting dishes in the washing machine or clothes in a food cupboard , do n't ask them why or castigate them - the reasoning side of their brain has been affected and pointing out their mistakes will only cause them embarrassment and frustration .\nflat in trendy area of peckham , south-east london , up for rent with a leak . gumtree advert informs people looking at double room that ` ceiling drips ' as a result the room in otherwise modern flat is available for just # 400 pcm . over the last year and a half peckham has witnessed a boom in rent prices .\nthe overturned car was smoldering on a new jersey roadway when police arrived . it burst into flames shortly after they pulled out the unconscious driver .\nbritish comedian travelled to moscow to interview the whistleblower . questions why the former cia systems administrator leaked the files . gets him to explain the security threat in the context of nude pictures . describes snowden as america 's most famous ` hero and/or traitor ' . snowden , at moments , is stunned into silence by the line of questioning .\nin the championship , both millwall and wigan can be relegated . watford can secure their place in the top flight , depending on other results . preston can be promoted to the championship if results go their way . leyton orient , notts county and colchester can go down in league one . burton can be champions of league two if they win against northampton .\nbizarre-looking creature can drink through two of his five mouths . local people in narnaul are flocking to see him and pray at his hooves . the calf , called nandi , is thought to have the most mouths of any bovine .\nmotorised surfboards weigh just 15kg and travel at speeds of up to 33mph . capable of thrusting riders into the air off waves and the wake from boats . contraption , made in czech republic , is powered by a two-stroke engine .\naccording to the u.s. department of education , female teachers who sexually assaulted students often got a pass in the past . attitudes have now changed and more are being prosecuted . in u.s. schools last year , almost 800 school employees were prosecuted for sexual assault - nearly a third of them women . numbers are already slightly ahead this year for numbers of female school employees accused of inappropriate relationships with male students .\n`` furious 7 '' pays tribute to star paul walker , who died during filming . vin diesel : `` this movie is more than a movie '' `` furious 7 '' opens friday .\nblake cronkhite , 5 , and jayden secrest , 3 , drowned when their kid-size atv plunged into large pond in northern california . blake was operating the vehicle and his friend was sitting on the back when the 5-year-old lost control . the boys ' fathers were doing yard work on cronkhites ' property when children took atv for a spin .\nping pong legend deng yaping challenged actor to game at sports awards . deng offers star a jumbo-sized bat to give him fighting chance during skit . instead , she picks up a wooden spoon that ` my mother uses for cooking ' actor jokes : ` you 're going to beat me with it ? my mother said that to me ! '\ndavid cameron invited itv film crew into downing street kitchen for show . interview also featuring his wife samantha is to be shown on itv tonight . in show , pm is teased for appearing to confuse hit film frozen for a book . samcam says family joke over breakfast as way of keeping pm ` grounded '\npaige vanzant takes on felice herrig in new jersey on saturday . the 21-year-old has only had five fights but is the latest ufc star . she is one of a select few to have an individual contract with reebok . vanzant could realistically become the youngest-ever ufc champion .\nthe 26-year-old mother was found sitting in her cubicle at ceva logistics in michigan with blood on her clothes . co-workers heard moaning and found blood all over bathroom stall . police arrived on the scene and discovered baby 's body stuffed inside mother 's bag beneath her desk . medical examiner will determine whether or not the baby was born alive .\nfor a decade , the new south china mall has lain empty . it was labeled a `` ghost mall '' -- symbol of china 's runaway speculation on real estate . however , a recent visit showed it may be springing back to life .\n`` the price is right '' gives away a car ... accidentally . a model makes a big mistake during a game . host drew carey thought the error was hilarious .\nstephen curry scored 27 points against the clippers to help his side to win . klay thompson also played key role in golden state warriors ' victory . eastern conference leaders atlanta hawks were beaten by detroit .\nrachel jaajaa , 22 , and aaron tate , 29 , were arrested monday in elryia , ohio . they were charged with child endangering after infant was left on friday . patron at mcdonald 's called 911 and jaajaa and tate were found fighting . jaajaa 's sister is now caring for the baby .\nsophie english was one of thousands of babies born during vietnam war . she was adopted by an australian family and has never known her birth mother . ms english travelled to vietnam to try to reconnect with her home country . there she met another adoptee , le my huong , and her biological mother . she was able get some insight on her own adoption from my huong 's mother .\nwrinkle preventing pillowcase , $ 40 -lrb- # 26 -rrb- , from hammacher schlemmer . said to use blend of ` hydrophobic fibres ' that help skin retain moisture . canadian firm , which also makes the anti-wrinkle pillow , ships to the uk .\nan attorney for at least one of the officers , michael davey , said thursday that gray was not strapped in during transport . the 25-year-old was cuffed at the wrists and shackled at the ankles - he was found to have a fatal spine injury , but the cause remains unknown . ` nickel rides ' have caused spinal injuries in the past . another baltimore man , dondi johnson , was killed by such a ride in 2005 . department rules were updated nine days before gray 's arrest stating that all detainees shall be strapped in by seat belts or other device .\nmanchester city have been linked with summer move for raheem sterling . sterling has two years left on his contract and is stalling on a new deal . brendan rodgers says a move to city would not be step up for sterling . indicating it will take the manchester club 20 years to eclipse liverpool .\ntibor racsits , 42 , and daughter kiara , 13 , were attacked on sunday night . he 'd gone to pick her up from the movies in newcastle , north of sydney . footage shows group of boys kicking mr racsits in the stomach and head . kiara ran to help her father but was slammed face-first into the concrete .\nmigrant asylum claims are processed by the australian navy while at sea . unsuccessful applicants are returned home without reaching dry land . up to 900 migrants are feared drowned after their boat to europe capsized . australian pm tony abbott advised the eu ` to stop the boats ' .\nfossils of a creature bearing a striking similarity to depictions of nessie have been found in a 19th century collection . it is thought the fossil was found in cromarty and would have once lived in a freshwater lake between 542 million years ago to 251 million years ago . researchers have revealed that pterichthyoides milleri - or ` pessie ' - lived on the bottom of the lakes that would later become loch ness .\njuan mata says his side must look at their next seven games as ` finals ' manchester united comfortably dispatched of aston villa 3-1 on saturday . mata 's side are currently third and a point ahead of rivals manchester city . they face their big rivals in a crucial clash at old trafford on april 12 . click here for all the latest manchester united news .\nwere the police justified in stopping freddie gray ? can they be held liable for his death ?\nalan stubbs is among the front-runners to succeed malky mackay after he was sacked by wigan athletic on monday . hibs are currently battling for promotion from the scottish championship . stubbs ' assistant john doolan was part of uwe rosler 's backroom staff at wigan before he was sacked by the club .\njapanese man pays for his cheating ways with his prized gadget collection . scorned girlfriend takes snaps of apple bath and sends them to him . photos of soaked imac , iphones , ipads and accessories go viral on twitter .\ngirl dubbed ' 100-year-old teenager ' hayley okines died earlier this month . she suffered from progeria which ages body eight times the normal rate . prince charles sent letter to her parents which was read at her funeral . in it he called the brave teenager ` an inspiration to millions ' .\nthai airways subsidiary thai smile features cartoon network paint job on a320 jet . overhead bins , head rests and air sick bags feature characters from cartoon network .\nyoung mum hannah moore , 20 , had shots of her stretchmarks taken down . instagram has also censored images of periods , pubic hair and nipples . yet provocative images of bikini models are deemed appropriate . those who have had their shots censored accuse the site of sexism .\nhashim amla will join derbyshire on short-term deal to play five matches . amla will play three t20 blast and two county championship matches . south africa test captain 's first match will be against northamptonshire .\ndenver broncos ' aqib talib and brother are being investigated for assault . talibs were reportedly involved in physical fight at club luxx in dallas . the vehicles they left in , a range rover and a jaguar , were impounded . man who called police said someone aimed at him before firing gun in air . dallas club manager refuted assault claim and said there was no gun shot . talib and mother were charged with assault with a deadly weapon in 2011 . they reportedly both fired multiple shots at the boyfriend of talib 's sister . the 29-year-old had charges dropped after that incident involving two guns .\nteenager has burns to 55 % of his body after religiously motivated attack . muslims beat him and set him alight with kerosene because he is christian . attack follows taliban bombing which killed 17 in lahore church in march .\nanthony trollope introduced post boxes to the uk in the 1850s . the victorian novelist saw them in france while working for the post office . initially the post boxes were painted green to blend in with the landscape . the limited edition sheet of stamps feature images of trollope and his life .\nde blasio , clinton 's campaign manager during her 2000 senate run , said on sunday he will not give up endorsement until he sees a vision from her . he also said that americans are demanding candidates to have a plan for addressing ` out of control ' income inequality in the country . plan should include increases in wages and benefits and willingness to tax the wealthy . de blasio said clinton is ` one of the most qualified people to ever run '\nthe karen was towed at 10 knots during yesterday 's alarming incident . took place 18 miles from ardglass on southeast shore of northern ireland . officials believe nato drills may have attracted the interest of the russians . just three days ago , raf typhoons were sent to intercept two russian aircraft near uk air space .\nmet office predicts warmer-than-average temperatures for april , may and june in its long-range forecast . tuesday and wednesday will be warmest days this week with 25c possible - above marseille and valencia . temperatures this weekend around 14c - with today dry in south but wet and windy in north and wales . severe wind warning in place for north wales and northern england with 76mph recorded in snowdonia .\nsir david nicholson called on labour to commit to spending extra on nhs . he said the nhs has a ` substantial financial problem ' which needs sorting . the former head of nhs says black hole will be ` crystal clear ' after election . sir david was called the ` man with no shame ' for refusing to quit his job . 1,200 died because of poor care in stafford while he ran regional body .\nmark cuban said people should have their blood tested every quarter . gilbert welch : giving people more tests will increase health spending , but it wo n't make us healthier .\nstranded victims of the storm were unable to attend an anzac day service . local karen newton played the last post at the kurri kurri memorial . she made the trip to gillieston heights to deliver food to the flood victims . while she was there , she struck up another rendition of the song . the goosebump-inducing moment was captured on film .\nauthor margaret atwood dismissed katherine as an ` uneventful ' dresser . she says duchess of cambridge has n't lived up to fashion icon diana . miss atwood says kate is cautious when it comes to clothing .\nthe proposal has been put forward by experts at nhs health scotland . they say more must be done to tackle alcohol problem with young people . the move would apply in pubs , clubs , supermarkets and off-licences .\njay brittain , 63 , paints the talons of baby owls at small breeds farm park and owl centre , herefordshire . the fledglings look so similar at birth that staff could end up overfeeding them , which can be fatal for the birds . so he instructed workers at the farm to varnish their nails using nail polish in their very own ` talon salon '\nwarning : graphic content . hundreds gathered to see bodies of alleged killers paraded through town . naked corpses went on show as student who hid in wardrobe was rescued . cynthia cheroitich , 19 , had feared police were gunmen but emerged today . terrorists killed 148 people in the garissa university college massacre .\nhaley mulholland still lives in bristol home with partner kevin . mother-of-eight refuses to share bed with ex who is forced to sleep on sofa . discovered facebook messages which revealed secret relationship . went on jeremy kyle show where test revealed infidelity . says while she does n't want him , she wo n't let another have him either .\nmurdered student karen buckley vanished after night out in glasgow . she died of head and neck injuries , according to her death certificate . her parents hope miss buckley 's body will soon be released for burial . alexander pacteau , 21 , appeared in court and was remanded in custody .\nprincess beatrice spent last night partying in london 's hip shoreditch . spent the evening at shoreditch house with boyfriend dave clark , 31 . the 26-year-old made her exit from the private members ' club at 2am .\nerica kinsman filed lawsuit seeking damages from the former quarterback . she claims he assaulted and raped her at an off-campus apartment in 2012 . kinsman claims she met winston while drinking in tallahassee . she says she took a shot offered by him at the bar in december 2012 . next thing she recalled he was having sex with her in spite of pleas not to . winston has denied the allegations and prosecutors declined to file charges against him in late 2013 . the lawsuit was filed two weeks before the april 30 nfl draft , where winston is a top prospect .\nu.s. hostage warren weinstein is believed to have been accidentally killed in counter-terrorism strike . peter bergen : u.s. should rethink hostage policy to increase chances of freeing those held .\ntoshiba tests robotic greeter at upscale tokyo department store . more japanese businesses are testing out robots as possible solution to japan 's shrinking workforce .\nfernando hierro reckons real madrid can win the champions league again . the club legend believes winning the trophy is in the club 's genes . carlo ancelotti 's men face city rivals atletico madrid in the quarter-finals . click here for all the latest real madrid news .\nrebecca calder posted pictures on facebook of nights out funded by theft . carer was draining up to # 300 a day from the accounts of disabled couple . family installed secret camera and caught her taking cash from a wallet . police were able to match her nights out with times she withdrew cash .\nthe ` kate effect ' has seen rise in profits of british fashion house seraphine . duchess of cambridge has worn high street label during both pregnancies . popular choices include # 195 cashmere coat and a # 46 fuchsia wrap dress . fans now camping outside st mary 's hospital awaiting birth of royal baby .\ntrendsetter rihanna ditched her bra on a visit to santa monica on tuesday . the star is one of a growing number of celebrities leaving lingerie at home . rita ora , kim kardashian and miranda kerr are all fans of going bra-less .\nthe # 3,000 robbery happened at a lloyds bank branch in fairwater , cardiff . cctv images released of a suspect with greying hair and wearing glasses . police say they are ` confident ' the public will know the suspect 's identity .\n35-year-old , father-of-two from griffith suffers from hodgkin 's disease . he says the non-taxpayer subsidised treatment improved his condition . the treatment costs a total of $ 16,000 every three weeks . his ` my name is chris ' campaign helped raise money needed for treatment . it has been so successful he has been able to go back to work part-time . ` my name is chris ' was launched in mid-january following chris 's relapse .\nlewis hamilton qualified in pole position for the bahrain grand prix . ferrari 's sebastian vettel pipped mercedes ' nico rosberg to second . hamilton has qualified pole in each of this season 's four races . the brit qualified four tenths faster than vettel and six faster than rosberg .\nfour sisters were at the centre of an international custody dispute . vinceni girls were sent back to live with their father in italy in 2012 . they were dragged kicking and screaming from their sunshine coast home . distressing scenes were shown on tv causing great hysteria and concern . 60 minutes exclusively interviewed the girls at their home near florence . the two eldest , emily and claire , speak of their regret of dramatic exit . their mother has not visited them in italy but speaks to them everyday . 60 minutes will screen nationally on channel 9 at 8.30 pm sunday , april 12 .\nskin cancer is not the only health danger lurking for sunbed users . dermatologist warns the herpes virus can thrive in the warm enviroment . ultraviolent light can kill bacteria , but level in tanning booths is not enough . herpes is highly contagious and incurable and spreads via skin contact .\ntypical heterosexual couples in britain are having sex three times a month . the figure in 2000 was four times a month and five times a month in 1990 . leading statistician says couples are checking their emails ` all the time '\nbarcelona have one foot in last four after beating paris saint-germain 3-1 . luis suarez scored a double and neymar was on target in convincing win . laurent blanc made no excuses for his side 's defeat on wednesday . psg travel to barcelona for the return leg on march 21 .\nreps from both cable giants will meet with doj officials on wednesday . first meeting companies had with regulators since announcing proposal . earlier reports said doj antitrust attorneys wanted to block the merger . officials fear the new company would dominate internet broadband market . time warner shares closed friday at $ 149.61 while comcast was at $ 58.42 .\nkathryn beale , 41 , is a national expert in the art of the strange foodstuff . she whizzes placentas into smoothies , or grinds it into pills for mothers . mothers have reported powerful healing properties from eating the organ . includes increase in milk supply , reduction in post-natal bleeding , stabilising blood pressure and more energy to care for their babies .\nnew images have surfaced of louis tomlinson 's all-night partying session , which appeared to end at around 6am . they follow the release of a photograph taken of 23-year-old boy band star in which he appears to be rolling a joint beside a box of green substance . tomlinson had been partying hard for 48 hours in london , and took five girls back to his room at the soho hotel . comes after tomlinson appeared on exclusive daily mail online video in which zayn malik appeared to smoke drug . bandmate liam payne then issued apology for video .\nchannel islands were the only parts of the british isles occupied in the war . may 9 is the 70th anniversary of the islands ' liberation from german rule . guernsey , jersey et al are marking the occasion with a five-week festival .\ngraeme finlay allegedly attacked ronald and june phillips on a cruise ship . the couple were walking back to their cabin on the ship to drink cocoa . finlay denies two charges of wounding and grievous bodily harm . he claims the couple ignored him after he sat with them at a dinner table .\ntravellers stopping at the st. cloud airport in minnesota can hunt turkey . pittsburgh airport offers deer hunting permits on its 800 acres of land . san francisco offers its guests a choice of two yoga rooms to unwind in .\nbarry lyttle , 33 , has been given a 13-month suspended jail sentence . he pleaded guilty earlier this month to causing grievous bodily harm . he allegedly struck his brother patrick during a night out on january 3 . patrick said they are ` delighted ' to be able to go home with the family now . the lyttle brothers hope to return to northern ireland as soon as possible .\nandrew caldwell , 21 , went viral in november after footage from a st. louis megachurch showed him screaming ' i do n't like mens no more ' he claimed to have been ` delivered ' , or cured of being gay . caldwell had yogurt thrown at him at a froyo in delmar on wednesday . he claims the employee recognized him and lashed out . however the worker , stephanie diaz , said caldwell called her a ` dog ' .\nearthquake experts met in kathmandu last week to plan for similar disaster . scientists discussed how the overdeveloped area would cope with chaos . at least 2,500 people across four countries have died in the earthquake . hundreds are still missing after avalanches buried everest basecamp . the quake struck just 11km beneath ground making its force even more destructive .\nreal madrid signed norwegian teenager martin odegaard for # 2.3 million . odegaard dropped down to castilla with team top of regional third division . results have picked up since the 16-year-old was dropped from starting xi . odegaard trains with first team and is not a cohesive part of castilla side . no one regrets odegaard signing but he may go out on loan next season .\ndesigned for use on light tactical vehicles such as the humvee . initial trials with low power lasers have already taken place . the 30kw system is expected to be ready for field testing in 2016 .\nidyllic two-bed log cabin nestled down private country lane in new forest . the 76sq ft hideaway is made entirely from timber imported from norway . cabin encircled by 141,000 acres of forest and can be lived in all-year round . its location near godshill , hants , means the cabin is worth more than twice what it would be worth elsewhere .\njack grealish is wanted by the republic of ireland and england . tim sherwood wants the 19-year-old to focus on playing more for villa . grealish will make a decision over international future at end of the season .\nirwin horwitz threatens to fail his entire class . his fiery email goes viral ; he now wonders if the unwanted attention will affect his career .\nmanchester university west of fort wayne on lockdown for hours . local media reports that man seen may have been armed with explosives . school tells students to shelter in place as bomb squad arrives .\nreal madrid take on granada in la liga early sunday kick-off . carlo ancelotti 's side four points off barcelona in the title race . real were beaten 2-1 in el clasico last time out before international break .\na judge sentenced tony lopez lozano , 35 , to 10 years in prison for stabbing his boyfriend in the heart during a fight . lozano pleaded to first-degree manslaughter as part of a plea deal after being initially charged with murder . victim 's mother : ` you took a deal : 10 years . for me , that 's not long enough '\nthe former illinois governor has been photographed in prison for the first time since starting his 14 year sentence in 2012 . as a politican he was famed for his boot polish black hair , but nowadays he has let his hair return to its natural white color . blagojevich was infamously caught trying to sell barack obama 's u.s. senate seat when he was elected president in 2008 . he continues to await word of a last-ditch appeal and teaches the history of war battles to other inmates .\nwater temple fair held annually in jiangnan , china , where fishermen gather to pay homage to ancient hero . locals dress up in their traditional costumes and perform local rituals with dances , boat races and songs . honours general lui chengzhong , a hero of yuan dynasty -lrb- 1279-1368 -rrb- , who eliminated pests during drought .\nresearchers developed a model that combined long-term fisheries data with climate model projections from the met office . as the north sea warms the number of popular species is likely to fall . the prices of these staple fish could also rise as they become more rare . john dory and red mullet may replace haddock , plaice and lemon sole .\nlondon 2012 gold medallist nicola adams will prolong her career . adams has said she ` will keep fighting as long as i have motivation ' the 32-year-old underwent surgery on her shoulder earlier this year . read : natasha jonas retires from boxing despite recent injury recovery .\nthe bridge would link bremerton and port orchard across the sinclair inlet . washington state representative jesse young is behind the unique idea . state highway budget about project passed washington house thursday . study of idea will have a $ 90,000 budget if approved by legislature . project would involve three carriers or just two and two ramps . rep. young has eye on the uss independence and the uss kitty hawk .\nsister gertrud tiefenbacher had been bound with a typewriter cord . her body was discovered by other nuns at her mission in durban . police say octogenarian had been robbed of a small amount of cash .\nchilesaurus diegosuarezi was discovered by a child in southern chile . late jurassic dinosaur was a herbivore , causing experts to rethink the idea that vegetarian theropods were close relatives of birds . fossils reveal unusual features from various dinosaur groups , including short arms , a long neck , small head and leaf-shaped teeth . dinosaur has been liked to a platypus because of its mixture of traits .\nrestaurant owner sandy dee hall , 34 , and his girlfriend maxine cher , 24 , adopted smokey da lamb after he was abandoned by his mother . the lamb has been living with sandy in his lower east side apartment and the couple have been providing him with round-the-clock care . in honor of their new pet , sandy removed all lamb dishes from the menu at his manhattan restaurant .\nplanetary society analysed the feasibility and cost of missions . crewed mission to orbit the martian moon phobos in 2033 first step . will lead up to a crewed landing on the red planet in 2039 . report says missions fit within nasa 's human space exploration budget .\na survivor tells authorities that migrants were trapped behind locked doors . rescuers say they have found scores of bodies in the waters off libya .\nfriends fan neil killham recreated the infamous trifle-shepherds pie . character rachel accidentally creates disgusting concoction in season 6 . dish includes sponge , jam , custard , lamb , peas , onions and whipped cream . neil said finished product was ` terrible ' but he managed to finish his slice .\nandrew o'clee , 36 , has been jailed after his second marriage was exposed . he wed michelle in 2008 and forged documents so he could marry philippa . dating profile matching his description has been found on plenty of fish . o'clee was caught out in elaborate lie after video appeared on facebook .\nstars of marvel and dc comics have given up fighting crime , instead grappling with life 's daily struggles . the bleak future is imagined by dubai-based photographer martin beck of scottish and south african heritage . features sullen-looking ex-heroes working as mechanics and children 's party entertainers .\nukip leader discusses childhood , his father leaving home and cancer . insists he will never use his own children in party political stunts . says he has no plans to quit , and could go on until the 2030 election . tonight : spotlight -- nigel farage is on itv at 7.30 pm tonight .\nkate winslet wears size nine shoes and her titanic co-star leonardo dicaprio found the size of her shoes hilarious . scarlett johansson , gwyneth paltrow , sandra bullock , angelina jolie , and cate blanchett all have huge feet . jerry hall , elle macpherson , katie holmes , and uma thurman also have feet bigger the average uk shoe size .\nduke of kent spotted leaving hospital with a walking stick after hip injury . the queen 's cousin dislocated his hip while staying at balmoral for easter . 79-year-old was taken to aberdeen royal infirmary and discharged today .\nfive members of czech roma family on trial for people trafficking . prosecutors say victims were lured to uk under promise of better life but were ` treated like dogs ' . court heard they were sent to work at car washes and dog food factory . police claim accused used ` threat of violence ' to force compliance .\nmanchester city lost 2-1 against crystal palace on monday night . gary neville : ` they 've got a mentality problem . there 's no doubt ' . former manchester united and england defender neville on what is wrong with reigning champions city : ` this team can not sustain success ' jamie carragher : yaya toure ducked out of his duties in the wall . click here for all the latest man city news .\nbritish veterinary association has withdrawn its support of pilot culls . free-running badgers would be trapped and shot in controversial method . bva said the scheme had not demonstrated it was effective and humane . but it says it still supports badger culling to tackle tuberculosis in cattle .\nmanchester city face crystal palace in the premier league on monday . champions have put on free coaches to take fans to selhurst park . rail closures over easter will disrupt fans ' travel plans across country .\nnick clegg 's wife wears colourful ensemble tonight to london ceremony . pictured with likes of daisy lowe and kelly hoppen at goldsmiths ' hall . bright pink , long-sleeved dress covered in bright blooms at ldny show . had # 560 gianvito rossi perspex-panelled metallic patent-leather pumps .\nrogue one will be a prequel to the original trilogy . sneak preview was revealed just days after star wars vii trailer . first ` anthology film ' will be about rebels on a rogue mission to steal plans to the death star . felicity jones will star as a rebel soldier .\nliverpool forward raheem sterling rejected a # 90,000-a-week contract . the england international has been criticised by his own supporters . but sterling insists he pays no attention and is fully focused on his football .\nreal housewives of beverly hills star confessed to dr. phil that she is struggling with alcohol in emotional interview set to air april 28 . richards stormed out of the session after dr. phil 's offer of help . her three kids followed her down the hall of the beverly wilshire hotel imploring her to return . ` why do you have to be so f *** ing picky , ' daughter brooke yells . ` you have to do this mom ' she spoke about her arrest on april 16 when she was taken into custody at the beverly hills hotel for a ` drunken incident '\nwarning graphic content . shaun smith and jason collins were filmed on cctv assaulting two men . the soldiers were drinking for hours before ` inexcusable ' attack last april . they chased one victim round a tree and onto a main road to beat him . despite brutal attack both were spared jail in ` exceptional ' sentencing . they could have faced sentences of up to 10 years each for their crimes . collins , 22 , has since been stationed to guard buckingham palace .\nnaked art fans attended an hour-long nude tour at the national gallery of australia in canberra on wednesday night . the tour took place outside regular exhibition hours , as it is illegal to be naked in public . fans viewed the exhibition , ` james turrell : a retrospective ' led by experienced nude tour guide stuart ringholt . ` everyone 's all in it together , so it 's not weird or anything , ' said one man . the 70-year-old artist has put on a nude exhibition before in japan , and was keen to replicate the experience for his body of work in australia .\ncrystal palace host manchester city on monday night football . eagles boss alan pardew refuses to write off city 's title chances . palace have no new injury concerns ahead of the selhurst park clash .\nalannah hill broke her foot after shooing her dog and hitting skirting board . doctor noticed a freckle on her foot and she was diagnosed with cancer . another three months it would likely have spread and become terminal . hill has had part of her toe removed and a skin graft from her inner thigh . she prides herself on her alabaster skin - even going to the extremes of wearing gloves and using a parasol to protect her from the sun .\naston villa draw 3-3 with qpr with christian benteke scoring a hat-trick . tim sherwood felt his side should have got more than a draw from clash . villa dominated for long periods but almost lost to fall into bottom three . benteke 's late free-kick rescued them from that fate at villa park . chris ramsey praises the belgian for being a ` formidable player ' .\nmanchester city are willing to listen to offers for yaya toure this summer . the premier league champions are looking to reshape their squad . toure is determined not to be forced out of the door despite tough year . his # 220,000-a-week deal will cause stumbling block to potential move . inter milan are keen on signing him but there are doubts over their bid . city will resist any attempt by valencia to pull out of alvaro negredo deal .\nwomen competed on same course as men and on same day for first time . the women 's race has been held since 1927 further up river at henley . oxford university women 's rowing team beat cambridge on historic day . and male colleagues won for the third time running in the 161st race .\nshocking footage has emerged of a great white charging a small dinghy . the footage was taken when crew were shooting ` lair of the megashark ' they were trying to put a camera on shark in new zealand 's stewart island . images of footage posted online by groups who want to ban shark diving . they think it 's causing sharks to associate humans and boats with food .\npolice search an noor community centre in west london and burnell mitchell 's home in wembley . mitchell , 61 , is trustee of the community centre and director of company that owns it . jamaican businessman leslie cooper , 36 , appeared in court yesterday charged with murdering arwani . a 61-year-old man has been arrested on suspicion of conspiracy to murder .\nmanchester united are monitoring edinson cavani 's situation at psg . uruguayan striker is said to be unhappy about playing out wide in paris . agent claudio anelucci admits a move to england is a possibility . robin van persie could leave man united - making room for cavani . read : man utd consider cavani as inter milan eye robin van persie . click here for all the latest manchester united news .\nmiranda has one year left on his contract with atletico madrid . atletico madrid are reportedly keen to cash in this summer . chelsea and atletico held talks over miranda last summer .\nthe map , created by yale university , reveals public opinion in all 50 states , 435 districts and 3,000 counties . overall , just over 60 per cent of americans believe global warming is taking place and nearly half blame humans . climate change concern ranges from 38 per cent in pickett county , tennessee , to 74 per cent in washington dc .\nstephen taylor vanished in solent after leaving lee-on-solent yesterday . he was in touch with partner during day but he later failed to return home . she then called police and major air-sea search mission was launched . ` sighting ' last night and a body - awaiting formal id - was found today .\nsaracens face clermont in the champions cup semi-final on april 18 . sarries defeated clermont 46-6 at the same stage last season . owen farrell has been out of action since january with a knee injury .\nethel rider , 87 , dropped from her bed at half acre care home in radcliffe . was left cowering on the floor for 40 minutes and sustained pelvic fracture . carers lauren gillies , 25 , and susan logan , 59 , covered up the incident . they have now been jailed for six months each for concocting story . ambulance finally called only when another carer saw her howling in pain .\nabc has kept a tight lid on details but interview is expected to address bruce 's gender transition . network has only released non-specific quotes so as to allow bruce to address topic in full context of friday 's interview .\ncomedienne mindy kaling , 35 , says she did not know about her brother 's decision to apply to medical school posing as an african american . vijay chokal-ingam , 38 , claims he pretended to be a black man and was accepted into the st. louis university school of medicine in 1998 . he says he decided he 'd have a better chance of getting into medical school if he was black rather than as an indian-american man . tells of his experiences on his own blog , almost black and criticizes affirmative action . their mother died in january 2012 , eight months after being diagnosed with pancreatic cancer .\nreal madrid beat granada 9-1 , with cristiano ronaldo scoring five goals . the portuguese forward now has 36 goals this season in la liga . that league tally is more than the totals for 53 of europe 's top 98 teams . nine teams in the barclays premier league have fewer goals this season .\nwayne rooney looked down as he filled his # 100,000 range rover . rooney played in midfield during manchester united 's loss to chelsea . the 29-year-old was happy with his sides performance despite the loss . click here for all the latest manchester united news .\nit took penalties , but holders bayern munich progressed to the semi-finals . manuel neuer and thiago alcantara starred as they won the shootout . alcantara was lucky to still be on the pitch after making a nasty challenge . robert lewandowski also had a legitimate goal mistakenly ruled out .\nspanish researchers say climate change impacted human migration . until 1.4 million years ago it was too cold to inhabit southeast spain . but then the climate warmed to 13 °c -lrb- 55 °f -rrb- and became more humid . this enabled hominins - our distant ancestors - to move to new regions .\ncpl. burt hazeltine , 36 , with st charles parish , was shot three times in face , elbow and eye . man in his 50s opened fire on deputy as he was directing school buses in new orleans suburb of paradis . hazeltine , married father of four , is in stable but guarded condition ; he is at risk of losing his injured eye . paul devillier , 56 , was arrested after a tussle with police ; officials believe he has mental issues . sheriff champagne says devillier became upset with hazeltine after deputy refused to stop traffic to let him make a turn . suspect , a former tsa agent , called sheriff 's office and pretended to by ncis agent before the shooting .\nbrazilian national rodrigo gularte , 42 , was a paranoid schizophrenic . he did not understand he was being executed until his final moments . gularte was shot by a firing squad alongside australians andrew chan and myuran sukumaran and five other death row inmates . gularte spent seven of his 11 years in prison on nusakambangan . he was arrested in 2004 for attempting to smuggle six kilograms of cocaine into indonesia hidden inside a surfboard .\nricky ricardo chiles iii was suspected in the shooting deaths of two people . police say the chain of events started sunday when a 2-year-old dashed out in front a vehicle and was killed . the driver of the vehicle and the boy 's older brother died from gunshots .\nshona banda , 37 , had written book about using cannabis oil to treat crohn 's . garden city , kansas , woman surprised by police at her home after school told child protective services about her son disagreeing with anti-drug class . boy staying with his father after plant and liquid marijuana found in home . no drug charges have been filed against the mother yet .\ntesco announced a record annual loss of # 6.38 billion yesterday . drop in sales , one-off costs and pensions blamed for financial loss . supermarket giant now under pressure to close 200 stores nationwide . here , retail industry veterans , plus mail writers , identify what went wrong .\ndiego simeone has worked wonders with la liga side atletico madrid . simeone is often remembered for his notorious role in the sending off of davaid beckham during england 's clash against argentina in 1998 . he led atletico to the la liga title and champions league final last year . argentine boss would be perfect for the premier league , but clubs are wary of his style of management . when man city choose a new manager , it will be someone who can help to bring tiki-taka football .\nlewis hamilton showered her with champagne after winning grand prix . campaigners against sexism said action was ` selfish and inconsiderate ' but liu siying says she was n't offended and just doing her job .\ngov. mike pence is making the right call to fix indiana 's religious freedom law , which can be used for discrimination . mark goldfeder : indiana should aim to be a shining beacon of cooperation : the real `` crossroads of america ''\nstephanie scott 's devastated family are preparing for her funeral tomorrow . they say all are welcome to remember and show their support for ms scott . the 26-year-old teacher believed to have been murdered on easter sunday . her accused murderer is the school cleaner , vincent stanford . leeton high school have reached out to the community to commend them for the strength they have shown in the face of immeasurable grief . her funeral will be held 10 days after her intended wedding date . the funeral will take place at the same venue where she had planned to marry aaron leeson-woolley .\nsequester is offering details of eating disorder sufferers for 12p a head . also offering information on people suffering from 43 different conditions . diana doyle was plagued by cold calls after her details were sold by firm . whistleblower says its ` madness ' so much personal information is available . information on the pension pots of thousands of people was being sold for as little as five pence each just days ahead of major pension reforms ; . sensitive medical details about sick and vulnerable people -- including those with bladder problems , arthritis and high blood pressure -- were being sold for 19p ; . an online pharmacy had sold without proper consent the details of nhs patients using its site to order prescriptions ; . schools , dentists and even a whitehall department bought data from unscrupulous firms trading in private information ; . those whose information has been sold are now plagued by criminals trying to scam them on the telephone .\n8.9 per cent of americans have impulsive anger issues and access to guns . 3.7 million of the short-fused gun owners carry weapons in public . study by three universities interviewed more than 5,000 men and woman . comes in the wake of a number of high-profile gun tragedies in the us .\nmanchester city considering bid for arsenal midfielder jack wilshere . jordan henderson is also an option for the premier league champions . wilshere , 23 , encapsulates arsene wenger 's style of play in north london . but the england international is not necessarily a first-team regular . any bids in excess of # 30m should be considered by arsenal .\nkyle major killed paul walker with a single punch to the back of his head . teenager drunk six bottles of lager and a quarter of a bottle of whiskey . regularly drank to excess and was also habitual cannabis user . he was under supervision of a youth offending team since december 2013 . the 52 year old father-of-two was unconscious before chin hit the ground .\njeff mccubbery and ian bullock met on a fishing trip twenty years ago . they believe traditional aussie lingo is being lost to imported vernacular . they make custom memorabilia which embodies traditional aussie lingo . but none of the companies they approached have taken on their products .\nclub captain gary caldwell has been appointed as the manager of wigan . he replaces malky mackay as the relegation-threatened club 's boss . chairman david sharpe said caldwell was the only candidate considered .\nchef q cooked a slap-up feast for floyd mayweather and adrien broner . each plate costs the boxer anything between $ 1,000 and $ 3,000 . bbq chicken , potatoes and rice were some of the foods cooked . mayweather takes on manny pacquiao at the mgm in las vegas on may 2 . gordon ramsay offered ringside seats in exchange for post-match meal . floyd mayweather vs manny pacquiao tickets sell out within 60 seconds . read : mayweather has earned over $ 400m and here 's how he spends it . click here for all the latest floyd mayweather vs manny pacquiao news .\ndoctors found jackson byrnes ' aggressive brain tumour three weeks ago . only one surgeon in australia , dr charlie teo , was willing to operate . more than $ 95,000 was raised for jackson by strangers to pay for the $ 80,000 surgery and help fund his treatment . it was expected jackson would wake paralysed from the extremely risky op . instead , he woke up and moved his arms , head and thanked dr teo . it 's hoped the operation has bought him more time .\ndominika petrinova glued naked boyfriend to a chair as painful revenge . erik meldik cried as he tried to free his genitals from the waxing strips . eventually he had to rip himself off the chair leaving behind hair and skin . prank came after he claimed ms petrinova 's dog was in washing machine .\ncate mcgregor is a group captain in the royal australian air force . she spent 40 years in the army , most of those under the name malcolm . in 2012 , mcgregor stopped ` functioning ' as a man and lived as a woman . she tried to resign from the office when her transformation became public . her resignation was refused by former chief of army david morrison . mcgregor believes mr abbott was n't given the credit he deserved for publicly embracing her and risking a wedge within his own party . she addressed the national press club on wednesday as part of a women in media series .\nchristopher marinello has tracked down # 250million worth of stolen art . he was central to recovery of # 1billion nazi-looted hoard found in attic . detective set up sting to return nine artworks stolen from la mansion . art theft is third highest-grossing criminal trade , behind guns and drugs .\ncarwyn scott-howell , 7 , died on a family holiday in flaine in french alps . he had skied into dense woodland before sliding towards a 164 foot cliff . carwyn went ahead alone when sister fell and his mother stopped to help . thought he may have entered woodland as thought it was shortcut to hotel . family described him as a ` very daring , outgoing , determined little boy '\nmatthew hall , 25 , from manchester got off on terrorising female victims . he targeted single women in their homes in an upscale manchester area . jailed two years after pleading guilty to burglary and attempted burglary . hall , repeat offender , climbed balconies and hid himself in their bedrooms .\ncharmain speirs allegedly murdered by pastor husband eric isaiah adusah . couple travelled to ghana last month so mr adusah could preach at a rally . ms speirs , who was pregnant , was found face-down in a bath by hotel staff . the pastor 's defence lawyer claimed ms speirs was a habitual heroin user . but her brother paul has said his sister had never touched drugs .\nbbc radio derby broadcaster died in hospice at 7.05 am yesterday morning . touched thousands of listeners with openness as he battled skin cancer . heartbroken colleagues and stars have paid tribute to talented broadcaster . name chanted at derby county 's match at millwall and shrewsbury town players wore t-shirts with his name as they gained promotion yesterday .\nhand model emily grimson , 25 , from shropshire , gets paid # 100 an hour . stars in ads for bosch , the disney channel and magazine features . former beauty writer moisturising her hands up to ten times a day .\njustin welby comments follow pope francis 's denunciation of the killings . david cameron used his easter message to brand killings ` truly shocking ' . 148 christian students at garissa university college were slaughtered . three people have been arrested on suspicion of involvement in the attack .\nformer hewlett-packard ceo reportedly will enter presidential race may 4 . her spokeswoman , though , says it 's an unconfirmed rumor . fiorina would join three senators in the republican nomination fight and balance democratic front-runner hillary clinton . fiorina says she can take clinton 's edge as a woman off the table .\nstudy was conducted by scientists at purdue university in indiana . they were investigating how to reduce bird to aircraft collisions . research showed that birds responded most to blue lights on planes . and turning the lights on while taking off - not before - had the best effect .\nisis fighters have posted pictures on social media of western junk food . would-be fighters are bringing burgers and crisps with them from turkey . other photos show chocolates , oreos and even cans of pre-mixed mojitos . they 've been rebuked for eating food some clerics consider forbidden .\nthe photos were taken at the expedition base camp on ross island in 1911 . they show the british explorer and his men setting off for the south pole . scott and four others died on the return journey after being beaten to it . the 52 negatives were sold for # 36,000 at auction to an unnamed buyer .\nchelsea lead manchester city by six points at the premier league summit . oscar scored in brazil 's recent 3-1 victory against france . juventus scouts were present in paris to watch oscar in action .\ndaisy , 26 , stars in new rodial beauty shoot . shares the secrets behind her flawless look . has been partying in coachella with famous friends over the weekend .\nthe male hormone testosterone does n't always get a good press . all that 's unpleasant about male behaviour is ascribed to the hormone . yet , as joe herbert explains , testosterone is at the heart of human life .\nrobin van persie ruled out with ankle injury for manchester united . chris smalling a doubt but luke shaw back from hamstring complaint . ron vlaar could make return to aston villa squad following calf injury . joe cole and jores okore have also regained fitness for villans .\nabedin was clinton 's deputy chief of staff at the state department and was her ` body woman ' during the 2008 presidential campaign . state department is investigating a special arrangement that allowed her to earn a second income at a clinton-linked consulting firm while she drew a government salary . abedin also used a private email address on hillary 's infamous home-brew private email server while she worked at state . she is married to disgraced former congressman anthony weiner , and stood by him through a string of embarrassing sexting scandals . huma is a muslim whose mother teaches in saudi arabia , a country that donated millions to the clinton foundation while hillary ran the state dept.\nformer premier made unannounced visit to capital ulaanbataar last month . met new mongolian prime minister chimed saikhanbileg on trip , sparking fears from ecologists he was encouraging western investment in mining . noyon uul region has major gold reserves but many sacred burial mounds . exploitation may ` destroy monuments of the mongols and their ancestors ' mr blair admits to ` regular ' mongolia visits but denies discussing mining .\nuk tennis star andy murray wed his long-term girlfriend , kim sears , in dunblane , scotland . saturday 's event has been dubbed `` the royal wedding of scotland ''\na group of fighters in afghanistan is filmed by a cnn cameraman parading isis flags . u.s. official : isis militants have `` no military capability '' at present , but are trying to recruit disillusioned taliban in several areas . rivalry between isis and the taliban in afghanistan is fierce enough to mean the isis fighters could be killed for brandishing the flag .\nwashington couple 's son began complaining of someone talking to him . one night they heard : ` wake up little boy daddy 's looking for you ' also believe hacker has infiltrated the device 's camera to watch their son . tech experts warned baby monitors linked to internet are more vulnerable .\nkorean firm teased the watch with strapline ` get ready for the next gear ' wearable with be the 7th-generation samsung gear wrist-worn device . samsung made the announcement in a release about developer software . motorola , huawei and lg all have round watches , while apple 's is square .\ncristiano ronaldo scored five as real madrid defeated granada 9-1 . karim benzema scored a brace while gareth bale also found the net . barcelona beat celta vigo 1-0 courtesy of jeremy mathieu 's diving header .\njacksonville , florida photographer kristina bewly took her 4-year-old daughter giselle to disney world for the first time last september . giselle and kristina visit the park once a month and giselle wears dresses bought by her mother . giselle , who suffers from down syndrome , models for her photographer mother at the theme park .\njulie bishop has caught up with her fashion icon jimmy choo . the foreign minister was in perth to meet with families of sas members . jimmy choo is in wa to host his first ever australian masterclass . the pair crossed paths at a special lunch , attended by ms bishop . she made a faux pas when she showed up in another designer 's shoes . she has often spoke of her love for shoes and designers such as choo .\nthe greek government has proposed a new law which could see sporting events cancelled due to incidents of crowd violence in the country . uefa say that direct interference in football by government is not allowed . greece have been threatened with suspension unless they rescind laws . the greek government have refused to back down with the proposed law .\na man was caught on video savagely beating an elderly truck driver along the side of route 95 near baltimore , maryland . this after the truck driver hit the man 's car , though he claims he only did so because he was cut off . tommy solis was driving by and filmed the incident , eventually getting out of his car to try and stop the fighting . the man refused to stop and got in the face of solis ' friend , who clocked him and left him passed out cold on the side of the road . solis then rolled him over so he would n't get hit by a car when they left the scene . no one reported the incident and no arrests have been made .\nbrian cassidy was picking up trash from the parking lot of the bangor , maine store last thursday when he found the wet stack of cash . he immediately contacted security and police were called . they discovered that a man who worked at a nearby restaurant , ou chen , had reported losing the money while cleaning snow off his car last winter . police returned the cash to chen and thanked cassidy for his integrity by awarding him a police deparment coin .\nliverpool midfielder raheem sterling is stalling on a new contract . he insists that it has nothing to do with money and wants to play regularly . team-mate daniel sturridge feels that only anfield can guarantee him this . sturridge is bidding to return to form following a lengthy injury spell .\narcade staff discovered the baby girl in the disabled toilets last night . the newborn was taken to hospital and is described as ` safe and well ' . the baby has been named april by staff at ormskirk hospital in southport . police say the mother has been found and is receiving medical treatment .\nliverpool face aston villa in their fa cup semi-final at wembley on sunday . liverpool forwards raheem sterling and jordon ibe were pictured with a shisha pipe earlier this season . neither have been disciplined by reds boss brendan rodgers for incident .\nremains dating to the 5th century were found in tomb in hwangnam-dong . show a man 's bones on top of a woman 's who was buried with jewellery . experts believe silla dynasty-era tomb was built for a noblewoman and her lover or bodyguard was sacrificed and buried on top of her . there 's a suggestion that the set-up may have been designed to show two people having sex - and the silla were known for their explicit pottery .\nuk researchers studied the asteroid impact 66 million years ago . 125-mile-wide -lrb- 200 kilometers -rrb- chicxulub crater created by an asteroid .\npresident barack obama became the first president to visit jamaica since president ronald reagan in 1982 on thursday . he met the world-class sprinter when they did his signature pose . obama also gave a special mention to triple-world champion shelly-ann fraser-pryce and bolt while speaking during town hall meeting .\nmei ru , 50 , was visiting local supermarket with husband song ming , 53 . cctv shows she stopped car and mr ming got out , standing behind it . mrs ru then reverses knocking husband over and backing over him . surgeons were unable to save mr song , who died of internal bleeding .\nwarning : graphic images . megan sheehan was arrested in 2014 for suspicion of resisting arrest , battery on a police officer and public intoxication . she is filing a civil lawsuit against bart and oakland , california , police who she says used excessive force during the arrest . she claims she was violently slammed to the ground , where she was then left bloodied and unconscious , with several broken facial bones . police report says she was ` violently punching ' and ` guided ' to the ground . attorneys for bart say sheehan is partially responsible for her injuries .\nbroga yoga targets its classes specifically at men with more ` rugged ' workout . the company trademarked the catchy term in 2009 and its popularity quickly spread . the training and licensing of instructors began in 2012 . there are now more than 200 broga yoga instructors in the u.s. crunch , david barton gyms and equinox are among the facilities offering yoga towards for men .\nthe young boy 's face appeared on milk cartons all across the united states . patz 's case marked a time of heightened awareness of crimes against children . pedro hernandez confessed three years ago to the 1979 killing in .\nyoung victims were interviewed on a sofa before being savagely murdered . four men were dragged out before bloodthirsty crowds in central mosul . militants forced them to their knees and read out the charges against them . masked jihadis then swarmed on the men and beheaded them with knives . locals said the decapitated bodies were later displayed in a town square .\ntom george 's dog shelby got stuck by the great salt lake 's spiral jetty . george had no cell phone reception and had to drive an hour to the nearest town for help . but strangers who were planning to visit the famous earthwork sculpture instead spent over an hour to get the dog out . veterinarians removed 40lbs off shelby , who has since recovered .\nliam treadwell booked to ride monbeg dude in saturday 's grand national . he won on venetia williams-trained 100-1 shot mon mome in 2009 . monbeg dude is co-owned by rugby union star mike tindall .\nsyrians line up despondently in scenes more familiar inside refugee camps . posted by anti-isis activist with message : hunger , poverty , homelessness . syrians persecuted by terror group 's warped interpretation of islamic law .\npsg star lucas moura has lavished praise on barcelona star lionel messi . moura has put brazil 's rivalry with argentina to one side to laud messi . psg face barcelona at parc des princes on wednesday night . read : psg boss laurent blanc feels his side have hit momentum .\nrenault have promised red bull that they will resolve power-unit problems . red bull owner dietrich mateschitz threatened to pull out of f1 . daniil kvyat 's red bull and max verstappen ' toro rosso both suffered a power-unit failure at chinese grand prix in shanghai .\nwylie brys and his dad , dallas zookeeper tim brys , were digging for fossils near a local grocery store when they made the discovery in september . after seven months , they acquired permits to dig up the bones . scientists from southern methodist university are helping with excavation . fossils are expected for be from a nodosaur , a pony-sized herbivore with scaly , plated skin .\ndurham university scientists studied a ` clump ' of dark matter . it was found to lag behind the galaxy it was associated with . this suggests dark matter particles can self-interact and slow down . it means dark matter may not be as oblivious to our universe as we thought .\nrecall affects packs of asda branded little angels 2 newborns soothers . a customer had complained the teat on one product detached from casing . supermarket asking customers to dispose of the product or return them .\nchildren star in new video from oprah winfrey 's own tv network . the youngsters explain how it feels to get angry and lose control . they then explain how mindfulness techniques help them calm down .\nnicola adams and her family were at home during the break-in . but thieves left with two cars , training kit , and other valuables . adams will not fight at english national championships this weekend . abae chief mark abberley called decision ` completely understandable '\nscotland 's strict new drink-driving law sees bar sales drop by 60 per cent . lack of spending is being blamed for stalling the country 's financial growth . publicans are concerned it is having a worse effect than 2006 smoking ban . hospitality industry leaders claim the law comprises a ` form of prohibition '\nashley mote , 79 , of hampshire , accused of string of fraud-related offences . they include acquiring criminal property and money transfer by deception . he denies 11 offences alleged to have taken place between 2004 and 2010 . southwark crown court hears of ` sophisticated fraud over several years '\ntyus byrd , who is black , was recently elected mayor of parma , missouri . she beat the white current mayor randall ramsey . six city officials quit their jobs shortly after byrd won . two of those individuals are trish cohen , parma 's former police chief , and rich medley , the town 's former assistant police chief . cohen has said she and medley feared for their safety , since their home addresses had been shared online by byrd 's family members . medley has said after being told by byrd 's supporters that parma 's police officers were going to be fired , he decided to quit . byrd has said she does n't know what the ` safety issues ' were and that she ` never said anything about cleaning house '\nfrench international vincent duport is out for the rest of the season . winger duport suffered ruptured tendon against hull fc defeat in march . the shoulder injury picked up in the 33-22 defeat requires surgery .\nrafael nadal beat spanish compatriot nicolas almagro 6-3 6-1 . nadal exacted revenge on almagro - who beat him last year 's quarter-finals . world no 4 is looking for his ninth career title on the catalan clay court .\nbystanders stopped to rescue a lost brood of ducklings in d.c. tuesday . cnn 's brian todd and khalil abdallah paused to capture the scene .\ncolin pitchfork raped and murdered two 15-year-old girls in the 1980s . he was jailed for life two years after second murder thanks to dna testing . pitchfork was the first man to be convicted based on dna evidence . the parole board are reviewing his case and he could be freed in months .\nvictoria ayling said she spent five months nursing son back to health . lieutenant colonel ron shepherd has launched investigation . he raised questions over whether she misrepresented her son 's situation . she is running for the key election seat of great grimsby and denies claims .\na rescue sato named bonnie is so afraid that she will be abandoned again that she ca n't bear to eat alone . in an adorable video posted to youtube by user jeannine s. with nearly one million views , puppy bonnie can be seen lifting her dish to clyde . bonne was rescued from puerto rico and is a sato , which means mixed breed or street dog . due to extreme poverty , the streets of puerto rico are overwrought with thousands of abandoned dogs .\naston villa take on tottenham at white hart lane on saturday . the match is tim sherwood 's first game back at spurs after being sacked . sherwood is thankful for the opportunity he was given by daniel levy . villa boss claims levy wanted him to stay at spurs last season . click here for all the latest premier league news .\nerrol louis : new ag loretta lynch will try to get cops to improve community relations , end abusive practices . he says baltimore case shows too many local departments not getting message . lynch will have to apply range of tough measures to fix this , louis says .\nevnika saadvakass became a youtube sensation at five-years-old . eight-year-old 's work rate is relentless in the 40-second long video . shows no sign of tiring as she unleashes combination punches .\nprogress 59 spacecraft will re-enter earth 's atmosphere in a week , russia space agency says . nasa : russian flight controllers have been trying to make contact with the unmanned space freighter . space station crew can manage without supplies carried by the spacecraft , nasa says .\n`` i rate this as no. 1 on my list of things in my life that i regret , '' robert bates tells `` today '' he says he did n't mean to kill eric harris and rejects claims his training records were forged . `` i still ca n't believe it happened , '' bates tells the nbc show .\nsam allardyce 's west ham are top of the premier league fair play table . the upton park outfit could be playing europa league football next year . allardyce has said he 's happy to sneak through the ` back door ' into europe . west ham travel to league champions manchester city on sunday .\njohanna powell from cardiff is feared to have drowned in the mekong river . picture editor for bbc wales was on ` trip of a lifetime ' to laos with friends . cruise boat hit a rock in a stretch of rapids and sank within minutes . huge search launched over 20km of river to try and find missing woman .\nkarim benzema has set his side target of reaching champions league final . the frenchman insists real will ` give their all to be there at the end ' james rodriguez is happy to be plying his trade under carlo ancelotti . real madrid face atletico madrid at the vicente calderon on tuesday . read : see where cristiano ronaldo and co unwind after training .\nsuzanne adams ' son james was starved of oxygen and has cerebral palsy . staff ` failed to monitor her properly or perform a caesarean section ' united lincolnshire hospitals nhs trust must pay sum , high court ruled . decision is largest ever court-ordered award for birth injury , lawyer says .\nchris ramsey praises tony pulis as one of the best coaches in britain . the queens park rangers boss says he wo n't be asking for his advice . qpr travel to west brom on saturday in crucial relegation clash . click here for all the latest qpr news .\nryan dearnley won the chance to be a mascot in the fa cup semi-final . he was due to be one for reading before saying he wanted arsenal to win . fan outrage caused the fa to move his prize to an england game instead .\nstudent britt lapthorne , from melbourne , disappeared in 2008 . she was last seen at a club in the coastal town of dubrovnik in croatia . her body was found almost three weeks after she disappeared . she was found badly decomposed in boninovo bay . croatian police have never solved the mystery of how she died . her family believes she was murdered and dumped at sea . a victorian inquest into her death will be closed .\ncolumbia journalism school team finds major lapses in rolling stone 's university of virginia rape story . errol louis : incredibly , the magazine is n't holding its staff accountable or changing procedures .\nmaths problem set for 14-year-olds left people around the world baffled . question uses logical reasoning to rule out all of the dates apart from one . it was set in the singapore and asian schools maths olympiads -lrb- sasmo -rrb- teaser generated furious online debate - but correct answer was july 16 .\ndeveloper 's plans to build 73 luxury flats has angered residents who live nearby park crescent west in london . they claim that noise and disruption caused by the building work could last five years and will ruin their lives . the crescent was originally designed by john nash , who also created buckingham palace , in the early 19th century . plans to remove the crescent 's facade and replace it with something more historically correct and accurate .\nlord janner will not face prosecution despite facing credible evidence . director of public prosecutions says decision comes with ` deep regret ' alison saunders tells of botched investigations in 1991 , 2002 and 2007 . former labour mp allegedly preyed on boys in 1960s , 1970s and 1980s .\nsurveyors did not check for damage or casualties overnight due to bad weather . the national weather service sent tweets warning of a large tornado . a resident snapped a photo of what could be a very large tornado .\nhobart international airport 's website hacked by islamic state supporters . tasmanian police were made aware of the incident at 5.30 am on sunday . the website is temporarily shut down , police are monitoring the airport . no threats were made towards hobart airport or flight operations .\n95-year-old peter weber jr. is the oldest active pilot , according to guinness world records . the record was confirmed after weber proved he piloted a plane march 30 in placerville by mailing in multiple pieces of evidence . weber 's flight experience goes back decades : he flew in both world war ii and the vietnam war , and also served as korean war flight instructor . he has been married to his wife since 1943 and has a 70-year-old son .\nahmed farouq was a leader in al qaeda 's india branch . he was killed in a u.s. counterterrorism airstrike in january . like adam gadahn , farouq was american and part of al qaeda .\njosh hamilton , 33 , filed for divorce from his wife katie in february - around the time he self-reported a cocaine and alcohol relapse . katie hamilton is set to appear on the 10th season of real housewives of orange county . the couple married in 2004 and have four daughters but court documents show he is not allowed to see them without supervision . an arbitrator ruled that he will not be disciplined for the latest relapse but angels ' owner arte moreno said hamilton might not return to the team .\ntwiglet the bedlington lurcher had a bad trip after accidentally eating drugs . he found the narcotics lying on the ground near the village bus stop . twiglet 's symptoms included hallucinating , seizures and hyper salivating . his owner is urging pet owners to be careful about what their dogs pick up .\nchildren 's clothes designer sharon smith , 43 , weighed over 20st . joined a slimming club , then took up running to shift the pounds . now a 9st 9lb size ten and has run two 10ks and a half marathon .\nmario balotelli missed liverpool 's 4-1 defeat against arsenal on saturday . balotelli was absent again at blackburn due to illness , confirmed the club . bt sport pundit robbie savage branded balotelli ` pathetic ' as a result . balotelli responded by showing a thermometer reading 38.7 c -lrb- 101.66 f -rrb- the liverpool striker used the hashtags #unluckyseason and #illbeback . liverpool beat blackburn 1-0 thanks to philippe coutinho 's winner .\nfulton county judge jerry baxter urged defendants to accept sentencing deals on monday or face significantly more time behind bars . 11 former teachers , testing coordinators and other administrators were convicted earlier this month of racketeering after a five-year investigation . if former administrators accept deals , they would get punishments from one year of weekend jail time and a $ 10,000 fine . if former teachers and testing coordinators accept deals , they would be given one year of home confinement and a $ 1,000 fine . evidence of cheating was found in 44 schools across the atlanta school system , with nearly 180 educators involved . superintendent beverly hall , the alleged ringleader who received up to $ 500,000 in payouts , died of breast cancer as the scandal went to trial .\njonas gutierrez could play his way to a new contract at newcastle . the 31-year-old needs seven more starts to trigger contract extension . gutierrez made his first start in 20 months in recent sunderland defeat . midfielder is one of very few players respected by a disgruntled fanbase .\ncamilla is now one of the most popular members of the royal family . she is close to her stepsons and is often seen joking with them at events . the duchess has also won over the queen and is said to be ` close ' to her .\ncanadian-born designer tanya heath , wanted to create a comfortable heel . button inside shoe releases the interchangeable heel and also locks it in . hundreds of heels available in varying heights , styles and designs .\ndefense called five witnesses on monday , rested at 3pm . first witness was doctor discussing how his co-defendants were on pcp . prosecution took two months and more than 100 pieces of evidence . closing statements expected on tuesday before verdict . aaron hernandez is pleading not guilty to shooting dead odin lloyd .\njames anderson will earn his 100th test cap on monday . england take on the west indies at the sir vivian richards cricket ground . four wickets would take anderson past sir ian botham 's national record .\nmark hughes has played down reports linking keeper with real madrid . potters no 1 asmir begovic is out of contract at stoke at the end of 2016 . premier league club are hoping to sign moha el ouriachi from barcelona .\nchris smalling has impressed for manchester united in recent weeks . steven gerrard was poor at wembley , but liverpool will miss him next term . bayern 's thomas muller led celebrations against porto with megaphone . but do n't try it over here ; stewards in their yellow jackets would not like it .\na company called cyark specializes in digital preservation of threatened ancient and historical architecture . founded by an iraqi-born engineer , it plans to preserve 500 world heritage sites within five years .\njames corden shared the picture on thursday via twitter . corden is currently in america filming late-night talk show late late . david beckham was a guest on the 36-year-old 's show last month .\nmicrosoft corporate vp of worldwide operations , mary ellen smith , who has a teenage son shawn with autism , made the announcement . program will be run in partnership with specialisterne , a danish nonprofit that helps train people with autism for careers in it . full-time positions based at its redmond campus , washington .\ngao yu , 71 , gave ` state secrets to foreigners ' , according to beijing court . ruled that she leaked communist party missive to hong kong media outlet . document warns of ` dangers ' of multiparty democracy , independent media . gao appear on chinese state broadcaster last may admitting to a ` mistake '\naustin west , 4 , slipped and fell into backyard pool in north carolina april 6 . several fake fundraisers sprang up after austin 's death to collect money . the bogus gofundme pages created in austin 's name have since been removed .\nmontpellier bus driver sparks outrage with comment over the ` odour ' . said smell from those traveling into the city on route 9 was ' a true infection ' bus company tam is said to have now outsourced that part of the route . but union bosses have said it risks creating ` apartheid ' in french city .\n`` all the police investigators have left the -lrb- germanwings -rrb- crash site , '' a police official says . private security company is ensuring no one goes on the site , official says . authorities say co-pilot andreas lubitz deliberately crashed the plane , killing all 150 on board .\nosborne accidentally divulged plans for a ` tax free minimum wage ' . could mean minimum wage earners would n't be paying any income tax . follows ed miliband 's pledge to raise the minimum wage to # 8 .\njapanese researchers studied ancient stone weapons created by humans . they were no more effective than neanderthal-created tools of same era . suggests humans and neanderthals may not have behaved that differently . contradicts theory that human hunting led to the demise of neanderthals .\nashley doody attacked pet dog trixie on sunday after allegedly taking bath salts . trixie was seriously wounded during the attack but is expected to survive .\nuniversity of manchester researchers reveal hd dark matter map . it shows clumps of mystery particles across 0.4 per cent of the sky . the goal is to eventually map 12.5 per cent over five years . results could help reveal how galaxies form in the universe .\nstudy at maastricht university found access to drug lowered grade scores . those who could buy cannabis legally did 5 % worse across all courses . statistics were worst for maths students or those developing number skills . economists say more to be done to investigate the drug 's affect on society .\nkim rose was questioned after handing out sausage rolls at party event . 57-year-old jeweller was accused of ` treating ' - trying to influence voters . he branded investigation ` ridiculous ' but believes it will help him win votes . southampton itchen candidate said : ' i could be the first politician to win a seat in parliament based on sausage rolls and jaffa cakes ' .\ndamon albarn said modern day popstars are just singing ` platitudes ' . he called for performers to use music to comment about current issues . albarn spoke as blur prepared to release first full length album in 10 years . comments likely to be picked up by people critical of modern day stars such as taylor swift and sam smith , known for music about relationships .\nteenager is believed to be youngest charged with terror offences in uk . he is accused of plotting a ` lee rigby-style ' massacre during anzac day . alleged to have encouraged sevdet besim to behead a member of public . he was remanded in custody and will appear before court in manchester .\nengland paceman stuart broad back to his best with four-wicket haul . openers alastair cook and jonathan trott shared first half-century stand . the tourists closed on 74-0 in reply to west indies ' first innings total of 299 .\nlakenya hall of kenner , lousiana was arrested after driving six children to a fight . this after they had already been in a fight at their bus stop . two of the chidlren were hall 's , ages 15 and 11 , and one boy , 14 , was shot in the leg . hall was charged with six counts of contributing to the delinquency of a juvenile and disturbing the peace . her two sons as well as the man who shot the child hall brought to the fight were also arrested . more arrests are expected as police say their is a video of the fight .\nindianara carvalho , 23 , triumphed in 2014 's miss bumbum contest . she posted the controversial nude to instragram snap on good friday . fans blasted the model for her lack of ` respect ' to god . last year , miss carvalho had vaginal surgery to ` restore ' her virginity .\nthe singer was performing at the verizon theatre in dallas on saturday . told the stunned audience that ` bobbi is awake . she 's watching me ' did n't elaborate on if his daughter had regained consciousness or if he was talking instead about her spirit . after , his sister tina wrote on facebook , ' -lsb- bobbi -rsb- woke up and is no longer on life support !!!!! :-rrb- : -rrb- god is good ! ... ' whitney houston 's family denies anything has changed , according to a source . bobbi kristina has been in a medically induced coma since january . bobby is reportedly at odds with the family of his deceased ex-wife whitney houston over how long to keep his daughter on life support .\nnatalie dimitrovska set dana vulin on fire at her home in february 2012 . ms vulin suffered third degree burns to more than 60 per cent of her body . dimitrovska was sentenced to 17 years in jail for her drug affected crime . lawyers argue her sentence was ` excessive ' for the harm caused . her appeal will be heard in the supreme court of wa on tuesday . meanwhile , ms vulin has countless more reconstruction operations to go . her scarring is so bad she ca n't straighten her elbows or lift her arms up .\nstrangers watch amanda oleander , 25 , from la , all day long . she 's the star of periscope , twitter 's new live broadcasting mobile app . it streams live video and users can chat and message in real time . she 's already more popular than celebrities including ellen degeneres .\nthe captain claimed that the co-pilot assaulted him , indian media reported . air india insists the pair had an argument and there was no violence . incident occurred shortly before the plane flew from delhi to jaipur . reports suggest the co-pilot has faced similar accusations in the past .\nwolf hall actor damian lewis said redheads ' ` stock is high ' . actors with red hair starring in hit films , game of thrones and mad men . femail takes a look at the hottest flame-haired stars around .\nkenneth morgan stancil iii ` walked into wayne county community college in north carolina on monday and shot dead print shop director ron lane ' he was arrested in florida and will be extradited back to north carolina . lane , 44 , had supervised him under a work-study program at the print shop but stancil , 20 , was dismissed last month for absenteeism . in court on tuesday , stancil said he ` ridded one last child molester from the earth ' ; he said lane had sexually assaulted one of stancil 's relatives . but stancil 's mother said it was not true and that her son is ` rattled ' police are investigating the killing of lane as a possible hate crime . stancil lists ` white power ' as his interests on facebook and has white supremacist tattoos , including an ' 88 ' to signify ` heil hitler ' .\npeggy siegal said panel did not want british director steve mcqueen to win . her allegations were revealed in hacked emails from sony . she said they believed it would paint their country in a bad light . the group were also concerned because of the film 's dark message .\njavier hernandez scored the winner in the champions league quarter-final against atletico madrid . real madrid still unlikely to take up option to sign manchester united star . mexico international has attracted interest from dinamo moscow , lazio , everton , newcastle , west ham and stoke .\nbelle gibson has finally admitted she never had cancer . ` no , none of it is true , ' she told the australian women 's weekly . she said she did not expect forgiveness . the whole pantry founder 's empire is in tatters . she also reflected upon her questionable relationship with the truth . ' i am still jumping between what i think i know and what is reality ' . magazine insists it did not pay ms gibson for the story .\nbrett robinson , 33 , facing 12 charges after allegedly letting an inmate out of his cell and engaging in sex acts between march and july last year . allegedly brought him into the control room where she worked at washing county jail and had sex with him on his birthday under a blanket . relationship continued and robinson wrote inmate a love letter saying he was ' a constant presence in my thoughts , fantasies and dreams ' was caught during an investigation into colleague jill curry , 39 . curry was sentenced to four years and two months in prison last month for repeatedly sleeping with a sex offender at the same prison . robinson hopes to plead insanity and was ` vulnerable , passive and gullible '\nthe queen was spotted enjoying a ride in windsor great park today . rode her favourite fell pony , a mare named carltonlima emma . left hard hats at home and opted for one of her favourite scarves instead .\nben affleck has apologized after he demanded information about a slave-owning relative be withheld from a pbs show about his ancestry . as dailymail.com first revealed , producers agreed to the actor 's demand and cut the segment from the program . ' i did n't want any television show about my family to include a guy who owned slaves . i was embarrassed , ' he wrote on facebook . pbs has launched an internal investigation into whether or not finding your roots violated their editorial standards by allowing this request .\nmaksims uvarenko revealed he has not been paid for three months . the cska sofia goalkeeper asked his parents to send him rent money . the bulgarian club are struggling with financial problems .\nfilm crew was following deputies chase horse thief in california desert . man falls off his horse , two deputies stun him with their tasers . they then kick him in groin and head repeatedly before others join them . in total , eight deputies surround the man kicking him for two minutes . san bernardino county sheriff has called for investigation into the incident .\ntell-all interview with the reality tv star , 69 , will air on friday april 24 . it comes amid continuing speculation about his transition to a woman and following his involvement in a deadly car crash in february . the interview will also be one of diane sawyer 's first appearances on television following the sudden death of her husband last year .\nresearchers had previously believed continents connected 3m years ago . deep water channel called central american seaway separated continents .\nbob mcdonnell used his office to benefit a nutritional supplement company whose president lavished gifts on him and his wife . his lawyers argue that he never performed any ` official acts ' for star scientific , a company that sought support for his ` anatabloc ' supplement . mcdonnell was sentenced to two years in prison and his wife got one year and one day ; they 're both free pending appeals . three-judge federal court panel will hear the former governor 's appeal on may 12 .\nshcherbakov family has been caring for the cub after finding it alone . cub wandered up to their gate in tulun and is unable to survive on its own . family is hoping to find it a permanent home as it will grow into a beast . local expert cautions against bringing wild animals into the home .\ncheng chen inspired to make suit after watching film with younger brother . to cut cost , he used plastic instead of metal at a price of just 60p per sqm . weighs just 4kg and comes with helmet , laser gloves and power backpack .\ntsarnaev family members arrive in boston , but it 's not clear if they 'll testify . a woman testifies that she had to choose whether to keep her leg ; some other victims had no choice . starting monday , the defense is expected to call witnesses to explain dzhokhar tsarnaev 's difficult upbringing .\nsir oliver popplewell conducted the 1985 bradford fire public inquiry . the judge stands by original ruling that there was no evidence of arson . however , he said police should look at eight other allegedly linked fires . a new book claimed the tragic fire one one of nine at businesses linked to the then club chairman stafford heginbotham , who died in 1995 .\nthree-time nyc mayor is rumored to be have his sights on london . sources in britain 's ruling conservative party said he could stand for them . bloomberg has business interests , property and family in great britain . incumbent boris johnson 's term will end in 2016 .\njasmine midgley , now four months , was born with a ` harmless ' birthmark . had problems breathing but doctors said she simply had an infection . weeks later discovered the ` mark ' had grown into her throat , choking her . benign tumour of blood vessels blocking her airways has now been treated .\nfbi accused in new book - by leading king historian stuart wexler - of misleading congress by destroying files on civil rights leader 's murder . he tells daily mail online agency disobeyed direct order to preserve all materials and believes it was to protect informer from being identified . tommy tarrants , high-ranking kkk member went from being little-known racist to having his picture shown to witnesses . files from two field offices which had information on tarrants were destroyed in 1977 after congress launched assassinations committee . wexler believes it is because they could have exposed laude matthews , head of mississippi kkk , as an fbi asset under deep cover .\nfour royal navy sailors are bailed following hearing nova scotia , canada . three sailors are from hampshire , one is from gloucestershire . they are charged with raping a 21-year-old woman at military base party . men were in canada playing a hockey tournament with canadian forces .\nkatie and dalton prager , 24 and 23 , met in 2009 and married two years later . they both suffer from cystic fibrosis , and in november 2014 , dalton received new lungs . katie is still waiting for a lung transplant because insurance company will not pay for the out-of-state treatment she needs , husband says . doctors predict she will not live a year without new lungs . ` they are turning my wife into a number , a statistic , a dollar sign . i can not lose her . this ca n't be the end of our love story , ' dalton pleaded .\ntottenham hotspur chairman daniel levy has told supporters that future transfer policy will include developing young players with resale value . having failed to successfully reinvest the money received for gareth bale , levy will now turn to more modestly priced players . although financially sensible , levy 's new plans could risk spurs falling behind the other top clubs in pursuit of the champions league . click here for all the latest tottenham hotspur news .\ngerman delfino faces ban after overturning decision based on tv replay . linesman ivan nunez spotted replay of incident in cameraman 's monitor . argentine referee delfino overturned penalty and red card decision . velez sarsfield were left furious after decision during game with arsenal .\nthe jockey fell at wexford on 10 april and suffered serious injuries . robbie mcnamara , however , says he is feeling ` optimistic ' as he recovers . he broke eight ribs , cracked six vertebrae and has no feeling in his legs .\nusername found after analysis of a tablet computer found at his home . searched for information on ` bipolar ' disorder and ` manic depressive ' german aviation authority said it was never made aware of pilot 's illness . officials told local media they only discovered problems after the crash .\natletico madrid and real madrid draw 0-0 at vicente calderon . jan oblak was excellent in goal for atletico to keep real at bay . gareth bale had a huge chance to score an away goal for real . raphael varane was real madrid 's best player in defence . karim benzema 's struggles against atletico madrid continued .\npeter , 8 , wrote a letter to michelle obama criticizing her health guidelines for school lunches at public schools . peter 's father said the letter submitted to the weekly standard took six-months to write because peter was ` too angry ' to write it in one sitting . peter thinks president obama needs to work on his speeches and that the united states should bomb syria .\nbest restaurant in the world is grant achatz 's alinea , chicago . the awards are voted for by readers of elite traveler magazine . the us has 19 of the best restaurants in the world , followed by france which boasts 14 and the uk , which has a mere eight .\nhannah bluck has not played football since a freak accident in march 2013 . the 18-year-old was diagnosed with avascular necrosis in her distal tibia . bluck was warned that her leg could collapse into her ankle . the promising centre-back has played for wales u19 , u17 and u16 . she is currently coaching the girls ' under-8s , 10s and 14s at swansea .\nhanghang was playing on the phone after waking up early for school . he said the phone felt hot and then blew up in his hand . it left his jawbone exposed and injuries to his hand , leg and knee . experts blame battery as most likely cause of blast .\nthe eight-month-old baby 's mother frantically tried to open the door after the range rover 's keys were locked inside . youngster grew distressed as temperatures hit 23c in london and the heat inside the vehicle became unbearable . police were called and an officer smashed the window with his baton to free the baby who was deemed uninjured .\nankit keshri , 20 , regained consciousness after colliding with team-mate . however , he died three days later in hospital after suffering cardiac arrest . sachin tendulkar is one of several stars to give his condolences . tragedy comes five months after australia batsman phillip hughes died .\nsinger reveals she was bedridden for five months . could n't shower for a full week as she was unable to stand . has ` no idea ' where she got the tick bite which must have been attached for 36 hours in order to transfer the disease . same condition that has left real housewives star yolanda foster unable to read , write or watch tv .\nrobert downey jr walked out of an interview with channel 4 . he became angry when questions turned to his personal life . naomi campbell , robert pattinson and rihanna have ended interviews .\nsergio garcia is looking to win his first pga tour title since 2012 . the spaniard is competing at this week 's shell houston open . it is the last pga tour event ahead of next week 's masters at augusta .\nlauren halliday and steven smith were evacuated from randolph hotel . came as huge fire broke out at the 119-bedroom establishment in oxford . couple feared they 'd have to get married in jeans but ceremony went ahead .\nrogue one will be a prequel to the original trilogy . first ` anthology film ' will be about rebels on a rogue mission to steal plans to the death star . felicity jones - star of ` the theory of everything ' will star as a rebel soldier .\nbafetimbi gomis suffered a grade two hamstring tear earlier this month . striker is set to be on the sidelines for another two to three weeks . gomis returned to france to work on recovery and spend time with family .\none died and three injured as plane crashes on motorway in germany . four-seater plane believed to have crashed shortly after take-off . plane came down between fence and a rail , just feet from passing cars .\nnikko jenkins , 28 , was trying to etch the revelation sign of the beast . but he now has a series of upside-down 9s across his face . it is believed he may use the botched case as evidence he is mentally unstable and therefore ineligible to face the death penalty . jenkins was convicted of shooting dead four people in 10 days after he was released from prison in omaha , nebraska , in 2013 .\nbroad slipped in his delivery stride and was left clutching left ankle . england bowler had complained about damp crease at warner park . ground staff placed sand on the crease but broad slipped over next ball . he required lengthy treatment on the field and an ice pack off it . broad should be able to continue in practice match with st kitts team . england loaned their hosts trott , ballance and bairstow for more practice . trott was out for a duck off the bowling of team-mate james anderson .\ndove took self criticisms from real women and repeated them out loud . created in france , campaign highlights the way we bully ourselves daily . ' i hope my daughter never speaks to herself like that '\npolice confirmed the men are all aged in their 50s and from the york area . comes after another man , in his 50s and from york , arrested last month . the latest men to be held by police are believed to be fresh arrests . body of missing chef , 35 when she disappeared in 2009 , has n't been found .\nrecent study found sons and brothers of convicted sex offenders were four to five times more likely to be convicted of sex crimes . some argue this knowledge could help prevent people from offending . dr mairi levitt says the genetic study ca n't separate nature from nurture .\nscott mayhew was working on his car when it fell off its jack crushing him . wife nicole was at work when she felt a ` funny feeling ' husband needed her . rushed home to find mr mayhew in a great deal of pain under the vehicle . she believes it was divine intervention that told her to return and save him .\nchinese teenager li hao-tong emerged to take the lead on 12 under par . overnight leader kiradech aphibarnrat two shots behind with two to play . aphibarnrat forced a play-off to take his second european tout title .\nthe footage was captured on a warm day in bali , indonesia . tour guide cools monkey down by spraying it with water . monkey then picks up bottle and casually unscrews the lid . primate has drink and remarkably spills very little liquid .\nfrances clarkson , 53 , is holidaying in barbados with family and friends . she spent easter bank holiday weekend on the caribbean island . she holidayed on the island in 2011 with her estranged husband jeremy .\nbarcelona face paris saint-germain in champions league quarter-finals . ahead of the tie , gerard pique has heaped praise on barcelona forwards . he says he has never seen a relationship like the one luis suarez , lionel messi and luis suarez have for barcelona . perhaps in a swipe at cristiano ronaldo , pique went on to say that there is no hint of jealousy between the three barcelona players .\npolice say the man had been ejected from the club when he returned and stabbed the bouncer in the back . the incident occurred at about 10.53 pm on thursday night . the bouncer , 29 , was taken to hospital but did not suffer life threatening injuries . in a separate incident , another bouncer was stabbed in the leg on good friday . police urge anyone with information about either of the incidents to contact crime stoppers .\nnicholas soukeras , 37 , of queens , new york wants his future son to be called spyridon , after his father . his wife , kseniya , 33 , does n't like the ` archaic ' name and prefers to call their child michael . nicholas needs his online petition to earn 100,000 signatures for his wife to relent . ironically , the couple do n't actually know for certain that they are having a boy .\nhms ocean had five women removed in nine years , according to new data . at least one sailor airlifted from hms illustrious , nicknamed ` hms lusty ' mod spokesman confirmed there was a strict ` no touching ' rule in place .\nluke shambrook was last seen leaving candlebark campground on friday . the 11-year old was camping in the victorian national park with his family . he has been missing for two nights and temperatures dipped to as low as eight degrees celsius on saturday night . there has been an unconfirmed sighting of luke with police acting quickly . the 11-year-old was reportedly seen walking 4 kms from his campsite . luke has limited speech and his family says he is probably confused . a large search is being carried by a medley of search and rescue teams . police also said conditions are favourable for his survival overnight . they have issued an extensive description of luke and his clothing .\ntsarnaev , 21 , was found guilty wednesday on all 30 charges related to the 2013 boston marathon bombing . his case will now proceed to the penalty stage , in which the jury will decide whether to sentence him to life in prison or execution . reflecting her state 's liberal politics , warren is against capital punishment . warren also spoke about current party issues - but refused to compare her politics to those of likely presidential candidate hillary clinton . warren has repeatedly said she will not be running for president in 2016 .\npeter tarsey and his wife , jean , both 77 , each killed with single bullet . friends went to their villa after being unable to reach them on phone . they found them in each other 's arms ` like he was protecting his wife ' british expat friend : ` it was like something out of your worst nightmare '\nhundreds of desperate migrants have died attempting to cross the mediterranean in recent says . and italians are alarmed that this year as many as a million migrants could arrive in europe .\nmurray says he has left majority of planning the day to fiancée , kim sears . has said ` it 's just better to let the woman have it how she would like ' . admits he ` could n't care less ' about flowers and colours schemes . but has been involved in food and cake tasting , saying ' i like good food ' . wedding held next week at dunblane cathedral , murray 's home town .\nfootball and rugby stars met in crossbar challenge for st george 's day . arsenal 's alex oxlade-chamberlain and gary cahill of chelsea took on bath star george ford and exeter chief 's jack nowell . england fly-half ford came closest to winning by skimming the bar .\nleicester have recorded three consecutive premier league wins . the latest , a 2-0 success over swansea , lifted them to 17th in the table . nigel pearson 's side are starting to dream of beating relegation . esteban cambiasso has been superb for the foxes this season . goalkeeper kasper schmeichel has also hit some timely form .\ngreat-grandfather robert clark has lived in the house for 50 years . he has spent # 50,000 life savings on a live-in carer over last two years . brent council says it can not afford the care package the veteran wants . the veteran said a care home would remind him of being a pow .\njohn knott shot wife anne dead and then himself at herefordshire cottage . he cared for wife , who had alzheimer 's disease that was getting worse . couple are believed to have ` made a pact ' to die together after mr knott took his wife out of a care home because she ` hated ' her four days there . mr knott had also been fighting plans to build gypsy camp near their home .\nnew belgium brewery will make a beer inspired by ben & jerry 's ice cream . it will be called `` salted caramel brownie ''\npatrick morrison first raped his mentally-disabled niece sabrina morrison in 2007 and after she told a teacher , a rape kit was carried out . even though the lab found traces of semen , detectives with the maricopa county sheriff 's office closed the case and did not arrest morrison . he went on to rape his niece for four years and even got her pregnant , although she aborted the child . the case was re-opened in 2011 and he admitted to the attacks . it is just one of 400 sex-crime cases that were inadequately investigated by sheriff joe arpaio 's office over a three-year period .\njohnny manziel was spotted at a texas rangers game tuesday night just days after leaving rehab and was drinking water all night . he entered a facility on january 28 and stayed for an extended period . this after manziel 's partying had been a topic of conversation since his rookie season began last july , with some worried about his drinking . he is now set to begin offseason workouts with the cleveland browns on monday . manziel will be forced to compete with josh mccown for the starting quarterback position , who just signed a $ 14 million contract with the team .\njapanese cookery programme miniature space is set in a a tiny kitchen . videos demonstrate how to make different foods in miniature form . petite kitchen equipped with mini spatula , tongs and knives .\noriginal 1959 barbie has been reproduced and goes back on sale april 11 . myer have teamed up with mattel to re-release the iconic doll in australia . the first 500 dolls will be sold for the original 1959 price of $ 3.00 . the dolls will be sold for $ 34.95 after the promotional priced ones are gone . promotion is at sydney , melbourne , brisbane , perth , adelaide city stores .\npippa is said to have bought the baby a supply of biodegradable nappies . shoppers in geneva , switzerland , spot her buying the mull-cloth nappies . the natural fibres mean the baby essentials do n't end up in landfill heaps . likely to be a hit with new royal 's environmentally conscious grandfather .\njosh meekings deliberately handled the ball during inverness 's 3-2 scottish cup semi-final victory against celtic . meekings escaped punishment for the act during the game . in the aftermath of the 3-2 extra-time win , meekings admitted he was fortunate not to have conceded a penalty and been red-carded . on thursday , the inverness defender was cleared to play in the scottish cup final against falkirk on may 30 .\narsenal backed out of signing eden hazard in the summer of 2012 . chelsea instead landed this season 's standout player for # 32million . arsene wenger admits he does not have any regrets at missing out . wenger says signing hazard was not financially viable for arsenal .\nthe exotic driving experience park lets racing fans drive top-end cars . gary terry , 36 , died in the crash and was on the passengers side . tavon watson , 24 , was driving and was taken to hospital for treatment . day at the racetrack was a gift from watson 's wife for his birthday . disney world spokesman said driver ` lost control ' of the lamborghini .\n` it is a man-made disaster , ' she said . ` with different policies over the last 20 years , all of this could be avoided ' ` liberal environmentalists have prevented the building of a single new reservoir or a single new water conveyance system , ' she accused . one of the so-called liberal environmental groups fiorina blamed later knocked her political savvy and said her argument was ` irrational ' another group said hundreds of dams in california have n't helped with the drought - ` that 's because you ca n't store what 's not there ' . a spokeswoman for fiorina told daily mail online , ` it is clear that the radical environmental lobby would prefer to ignore the facts on this one '\nprotests in south carolina have been calm compared to the violence in ferguson . north charleston 's mayor says hundreds of body cameras will be on officers . it took six days for ferguson police to identify darren wilson , who was not wearing a camera .\nstudent martina levato , 23 , wrote a list of her ex-boyfriends , a court heard . accused of carrying out attacks with current lover alexander boettcher , 30 .\nmarouane fellaini has drawn plaudits for his recent performances . the belgian 's form has dramatically improved in recent weeks . fellaini endured a terrible start to his united career under david moyes . wayne rooney says fellaini is one of the best in world football .\nconservative leader promises to help create 2million new jobs by 2020 . warns they must be outside london and the south east to prevent a crash .\nrebecca francis ' photo with a giraffe was shared by ricky gervais . francis was threatened on twitter for the picture . francis , a hunter , said the giraffe was `` close to death '' and became food for locals .\npatties food insists testing has n't found link between their berries & hep a . there was a national hepatitis a outbreak in january which resulted in 34 people in six states contracting the virus . all 34 people who contacted hep a had consumed the china-grown berries . the 1kg product remains off supermarket shelves until further notice . the company says there was no systemic error but confirm they are considering alternative supply sources .\npresident barack obama became the first president to visit jamaica since president ronald reagan in 1982 on thursday . prime minister portia simpson miller gushed over president obama , at one point telling him ' i love you ' . president obama signaled thursday while speaking in jamaica he will soon remove cuba from the us list of state sponsors of terrorism . this as he prepares to have dinner with cuban president raul castro on friday at the summit of the americas in panama . the two shared a handshake a nelson mandela 's funeral in 2013 , which angered some americans . last night secretary of state john kerry met cuban foreign minister bruno rodriguez in a panama city hotel .\ntugce taskin , 26 , was killed after the luxury car swerved across a highway . friend adem kilic , 31 , is fighting for his life after crash in istanbul , turkey . witnesses say the lamborghini hit another car and then burst into flames . driver of the second vehicle is also being treated for injuries in hospital .\na contestant called tom left a lasting impression with viewers for all the wrong reasons on friday night . host alex trebek asked : ` in common law , the age of this , signaling adulthood , is presumed to be 14 in boys & 12 in girls ? ' the first contestant to press his buzzer was tom who inexplicably answered : ` what is the age of consent ? ' the correct answer was puberty and tom 's inappropiate reply left him trending on twitter .\ncorinne gump and her grandparents , judith and william schmidt , lost their lives in a blaze at their house in youngstown , ohio on monday morning . her mother 's boyfriend , robert seman , 46 , was set to go on trial later that day for allegedly molesting her over four years . seman was under house arrest at the time but was taken into custody on monday in connection with an alleged bribe , not the fire , police said . investigators said they have found no evidence that the cause of the fire was suspicious . her mother , who was found at seman 's home , has also been questioned .\nstéphane charbonnier finished a book just two days before he was killed . the book blames the media for helping popularise the term ` islamophobia ' . extracts from it are being published today in weekly magazine l'obs .\nles abend : how did gyrocopter fly on to capitol grounds when faa , defense forces keep tight rein on airspace ? he says gyrocopter may be lightweight and slow enough that it evaded radar . he says it 's unlikely such a flight could pose a serious danger .\nharry met james freedman , who has his own one-man pickpocket show . performer advises police and teaches people how not to be victims of theft . in astonishing demonstration , he shows how quickly a thief can rob you .\nman found on the street in western poland who only speaks english . the 6ft3in ginger-haired man has no memory of where he is from . he told police he has no idea why he is in poland or how he got there .\ngangster kestutis martuzevicius accused of two murders in home country . has repeatedly stalled efforts to extradite him claiming he is too depressed . numerous appeals have cost taxpayers hundreds of thousands of pounds . the case reignited row over foreign criminals exploiting human rights law .\njohanna basford released secret garden in 2013 which sold 1.5 m copies . 32-year-old 's second book enchanted forest has sold out within weeks . mother-of-one said huge range of people enjoy her ` stress-relieving ' books .\nthe 40cm-long philippine crocodiles travelled in custom designed boxes . they were sent to the palawan wildlife rescue & conservation centre . the project is part of a conservation effort for the endangered species . philippine crocodiles are the most endangered croc species in the world .\nharry redknapp left his position as qpr manager in february . he went to the emirates to watch arsenal v liverpool as a spectator . after the game , he was attacked with coins and verbally abused by arsenal fans while he was stuck in traffic trying to leave the stadium . redknapp claims the small minority of fans spoil it for the rest .\nformer rap mogul marion `` suge '' knight will be tried for murder in a videotaped hit-and-run . his bail is reduced to $ 10 million from $ 25 million . a judge dismisses one of four charges against knight .\njordan spieth won the 2015 masters by four shots on sunday . the 21-year-old american led all week at the augusta national golf club . he shot final-round 70 to finish on 18 under par and take the green jacket .\nken broskey livonia , michigan , has been diagnosed with stage 4 cancer and his doctors have urged him to check into hospice care . instead he has taken a job with uber to earn money to pay off his mortgage before he dies so his daughter and grandchildren can have his house . roland gainer , a college student , started a gofundme page for broskey after meeting him which has almost reached its $ 95,000 goal . uber is also donating $ 1 to the page when people write uberpartnerken into their app when requesting a ride this weekend .\na statue of lucille ball in celeron , new york was dubbed so offensive the artist has offered to fix the statue for free . however , there are unrecognisable celebrity effigies all over the world . femail rounds up the very worst star statues , wax works and figurines .\nms scott 's funeral will take place at the eat your greens function centre . she was set to marry her fiancé at the venue last saturday . she disappeared from leeton high school on easter sunday . reverend jonno williams says funeral will be held on wednesday . the venue is in eugowra , near ms scott 's home town of canowindra in rural central west nsw . reverend williams says it 'll be especially hard for the town 's young people . ` she was a very friendly and cheerful girl , ' reverend williams says . school cleaner vincent stanford , 24 , has been charged with her murder .\nglobal demand soaring as people develop passion for almond-based foods . the nuts have become california 's second biggest agricultural commodity . the problem is that almonds guzzle water on a monumental scale . it 's been calculated that it takes 1.1 gallons of water to grow single almond .\nresearchers subjected two lithium-ion batteries to external heat . they used thermal imaging to see what happened inside each cell . copper inside one cell reached temperatures of at least 1,085 °c -lrb- 1,985 °f -rrb- the heat also caused molten material to stream from the battery 's vent .\nblack and white photos offer a rare glimpse of the chinese capital 's landmarks devoid of tourists . pictures were taken between 1900 and 1911 during the qing dynasty , the last imperial dynasty of china . locals and foreigners pose at the temple of heaven , western qing tombs and summer palace . quiet scenes are a far cry from modern-day beijing , one of the most populous cities in the world .\nattorneys at the u.s. justice department may reportedly block comcast corps . $ 45.2 billion proposal to merge with time warner cable inc. . attorneys with the doj 's antitrust division are concerned that the merger would hurt consumers . officials from both comcast and time warner cable have denied the reports .\nformer missouri auditor tom schweich committed suicide on february 26 , as he was running for governor as a republican . new police reports released tuesday reveal schweich had contemplated suicide for years . just moments before he shot himself , schweich called associated press reporters to set up an interview about alleged anti-semitism in his party . the candidate learned that missouri gop chairman john hancock had told donors at a party that he was jewish . schweich was a practicing christian but has jewish heritage . schweich became upset and allegedly called an aide on the day of his death and said he had to either ` run as independent ' or ` kill himself ' .\naleksandr glushko , 21 , drove for more than three miles while intoxicated . he was spotted by a railroad worker as he sped towards the crash site . police also spotted the driver as he drunkenly looped back past them . glushko was charged with a felony for driving under the influence of alcohol .\nandrew hennells threatened staff in tesco with a knife of february 13 . fifteen minutes before the raid he posted details of his plan on facebook . norfolk crown court judge deems 31-year-old ` high risk ' to the public .\njanek zylinski , the aristocratic son of polish war hero , slams mr farage . claimed he 'd ` had enough ' of ukip leader 's constant attacks on migrants . he said they should ` meet with our swords and resolve this matter ' mr farage was forced to defend his migrant stance on a factory tour today . insisted he would not expel eu migrants after meeting a hungarian worker .\nheart patients who were more grateful had improved physical health . they had lower markers for inflammation - which can worsen heart failure . they also had better moods , better sleep , and less fatigue , experts found . writing a ` gratitude journal ' is also linked with better heart health , they said .\nthe boy 's mom michelle schwab is charged with child endangerment . she is assistant director of kindercare in columbus , ohio , and has 3 sons . the company confirmed schwab is taking a leave of absence . schwab was allegedly holding the child when he slipped and fell 10ft into the pit on saturday around 3pm at the cleveland metroparks zoo . he was rescued by his parents before emergency responders arrived on the scene ; he suffered from minor bruises and bumps . the cheetahs seemed to ignore the boy and his parents while in the pit .\ndenmark 's previous law only banned bestiality if it harmed the animal . decided to toughen up laws after it became a stop for animal sex tourists . there are reports of animal sex shows , clubs and even animal brothels . almost one in five vets suspect they have treated an bestiality victim .\nreanne evans fell to a shock defeat by hong kong 's ng on yee . her 10-year reign as world snooker champion has come to an end . in 2010 , evans had become the first woman for 16 years to be given the chance to qualify for men 's snooker events .\nsteven pienaar has been dogged by groin and knee injuries this season . the 33-year-old midfielder has made just 11 appearances this term . pienaar made his comeback in the 1-1 draw with swansea city . but muscle fatigue ruled him out of the win over burnley last weekend .\nbaby named ` china 's miracle baby ' was born as his parents died in crash . zhao pingan 's mother was in labour when she and her husband , the boy 's father , were hit by truck as they travelled to hospital - but baby survived . pingan suffered nerve damage and mild brain injury but was otherwise fine . he has now celebrated his first birthday surrounded by family and doctors .\nwarning graphic content . james oatway took images of mozambique national being stabbed to death . told how he desperately tried to save victim by taking him to medical unit . but in tragic twist doctor had fled due to attacks by xenophobic hordes . mr oatway said he ` lost valuable time ' before getting victim to hospital .\ntopped poll after classic fm listeners cast more than 200,000 votes . british composer inspired by a poem of same name by george meredith . it found a wide audience last year when it was played as hayley took a lethal cocktail to end her suffering on coronation street . full poll also includes 12 pieces of music used to soundtrack video games .\ndmitri kovtun claims alexander litvinenko was carrying around polonium without knowing it . says the ex-spy 's death was ` accidental suicide ' during press conference . kovtun denies murdering litvinenko , but has agreed to give evidence at the public inquiry into his death .\nthe network has reportedly greenlit the tell-all . lifetime previously did an unauthorized movie on `` saved by the bell ''\nartist betty willis designed the famous neon sign in 1959 . the sign sits in a median in the middle of las vegas boulevard south of the strip and is a popular tourist attraction . in 2009 it was placed on the national register of historic places . no one owns the copyright to the sign , so it is often imitated and appears on all kinds of souvenirs in las vegas and elsewhere .\nofficer jesse kidder was confronted by michael wilcox , 27 , in ohio . suspect allegedly shot his fiance and best friend in separate incidents . during a police chase he got out of his car and charged at kidder . wilcox repeatedly said ` shoot me ' , but the cop constantly refused . eventually wilcox submitted and surrendered to kidder and his partner . the former marine had only been on the new richmond force a year .\nraheem sterling has turned down a # 100,000-a-week liverpool contract . arsenal , chelsea and manchester city are all interested in signing him . kolo toure saw english talent struggle during his time at manchester city . he has compared sterling 's situation with jack rodwell and scott sinclair .\nchair was on first class deck when ship hit an iceberg in april 1912 . found by mackay-bennett crew members while clearing up the wreck . previously owned by english collector who kept it in sea-view window .\nresearchers used computer models to study how neanderthal populations would have fared if they did not use fire to cook and modern humans did . they found cooking would have increased the number of calories available . evidence for neanderthals using fire is patchy and not all may have done it .\nthe block 's four apartments are now on the market with the auction date set for april 28 . listing agents say the apartments are worth between $ 1.3 million and $ 1.5 million . apartments will be open to the public on april 11-12 , with thousands of people expected to turn up for a look . contestants keep any money made over their reserves and the team that makes the most receives a $ 100,000 bonus . agents have started showing potential buyers through the chic three-bedroom properties in trendy south yarra .\nthe 19-year-old is being tipped for huge things when he does turn pro . he finished 13-over par for the weekend but is determined to return . ` i 'd prepared well for this , but it shows my game is not good enough yet , ' he admitted . neil qualified for the masters by virtue of a win in the scottish boys championship in 2013 and then the british amateur championship .\noperation spanned august 2014 to march 2015 in houston . one male narcotics officer posed as a senior in two high schools . six students were arrested , three aged 18 , one 17 and two minors . they have received a total 10 drug-related charges . cocaine , marijuana , xanax and tramadol were seized in the bust . police have not released any information about the undercover officer .\nshannon carter , 21 , repeatedly hit amelia gledhill , 20 , in a bradford club . ms gledhill left with blurred vision , wounds , bruises and scars , court heard . carter jailed for three-and-a-half years after pleading guilty to wounding .\njordan spieth finished joint second on his masters debut last year . the 21-year-old believes he is now better equipped to win at augusta . he admits he learned things after throwing away a two-shot lead in 2014 . spieth will play alongside henrik stenson and billy horschel on thursday . read : sportsmail 's masters 2015 betting guide .\nnew jersey institute of technology research reveals stunning video . it shows a solar flux ` rope ' taking shape on the sun . twisting groups of magnetic fields writhe around a central axis . and the rope ultimately causes a bright flash - a solar flare - to form .\nthe discount chain yesterday posted annual sales exceeding # 1 billion . it has now become europe 's largest single-price discount retailer . poundland benefited from austerity seen in the wake of the financial crisis . it also transformed high streets , luring customers away from superstores .\nshadow chancellor refuses to rule out using threshold to raise money . vows not to hike income tax rate but not trapping more people in 40p rate . chancellor george osborne says balls has ` let the cat out of the bag . tories promise to raise threshold from # 41,865 to # 50,000 by 2020 . labour says the plan amounts to a # 7billion unfunded commitment .\nthe type of plane used for a jaw-dropping stunt in `` furious 7 '' is 60 years old . lockheed 's c-130 hercules is the longest continuously produced military plane in history . c-130 factory in georgia celebrates the flight of the first c-130 production model .\ncuba pulled off a diplomatic coup by gaining attendance at summit of the americas . first time since 1962 , the u.s. has not blocked cuba 's attempt to join . cuba is trying to re-establish itself at the two-day summit in panama .\nbilly mitchell was born with apert syndrome - a rare condition that causes malformations to the skull , face , hands and feet . youngster has endured a series of major operations to correct deformities . surgeons cracked open his skull before piecing it back together again . seven-year-old had a titanium frame drilled into his skull for nine weeks .\nceltic lost their scottish cup semi-final to inverness caledonian thistle . the glasgow club wrote to the sfa to complain about a penalty decision . they were angered by the referee 's failure to award a penalty for handball . celtic striker leigh griffiths complained they were ` robbed ' at hampden . adrian durham : man utd need gareth bale to give them needed dynamism .\nlib dem leader warns three or four-party coalition ` is not going to work ' raises prospect of lib dems entering government with labour or tories . experts warn hung parliament could send financial markets into turmoil .\nvisual health studios in colorado has developed a weight loss app . it calculates what you would look like if you lost specified weight . inputting your height , weight and target weight reveals you new look . the app is available now for both ios and android .\nprince harry will fly out of uk tonight to continue placement in australia . this means he will not be able to meet royal baby until return in mid-may . he will be bumped down to fifth in the line of succession by the new arrival . duchess of cambridge is several days overdue for birth of second baby .\nmargaret bates is haunted by horrific murder of 17-year-old kelly-anne . mum-of-three says she ca n't read autopsy report which details 150 injuries . speaking for the first time after being left traumatised by death . teen 's boyfriend , james smith , 49 , was jailed for life after 1996 murder . jury offered counselling after hearing of the youth 's unimaginable ordeal .\nin february , ukip unveiled 50,000 cap on those being given visas for uk . farage then refused to have ` arbitrary targets ' , before moving it to 30,000 . tories accused mr farage of ` making up his policies as he goes along ' . mr farage has denied his party has made any u-turns on immigration .\nplans for site for travellers has been approved by east cheshire council . this is despite angry neighbours in village of cledford angry about plans . grade ii listed barn next to hall to be converted into toilets and showers . full cost of the development was only revealed through freedom of information request .\nmanagers from the london ambulance service just filled 225 vacant posts . applicants all from sydney and melbourne recruited after one day of tests . latest example of how nhs recruits overseas as it fails to train staff in uk . hospital managers have been hiring batches of 30 nurses on trips to spain . paramedics are being offered # 4,500 ` golden hellos ' if they agree to move to britain within three months . managers are so anxious to fill posts that 91 per cent of those who turned up to assessments were offered jobs . applicants told the mail they had been promised a ` new lifestyle ' that would enable them to gain valuable experience , visit distant relatives and ` shoot off ' to spain for the weekend . the few paramedics who did n't get jobs when managers first flew out in september were so keen they returned for the latest round of recruitment days -- and vowed to turn up a third time if they still were n't hired . managers claim they can save the nhs # 9million by flying out to australia rather than training paramedics in britain .\ncarlos tevez has told juventus he wants to go back to argentina . tevez has been a key player for juve , but has always wanted to return . juventus understood to accept the striker 's decision .\npep guardiola wore #justiciaparatopo top in press conference on monday . several of football 's biggest stars have paid tribute to jorge lopez . argentine journalist was killed in a suspicious road accident in sao paolo . lopez was in brazil ahead of 2014 world cup . uefa say discipline is because of an ` incident of a non-sporting nature ' .\nhazmat teams tested a white powdery substance sent to u.s. rep mike doyle 's office on wednesday causing temporary building shutdown . the white substance came back as negative and after just under two hours the congressman was able to return to his office . ' i live in pittsburgh . we 're not afraid of anything , ' doyle reportedly joked .\nthe died of cancer at his home in santa monica , california . he usually took a back seat to the younger , more glamorous characters on the show .\nthe 72 hour countdown on for bali 9 andrew chan and myuran sukumaran . the two men are set to be executed on wednesday at midnight . nation-wide vigils have been held to show solidarity for condemned duo . sydney harbour saw a 15,000 flower monument reading ' #keephopealive ' indonesian consulates in sydney and melbourne also saw people gather .\nperformance was at confederation of african football 's event in cairo . dancer dina talaat said she does not know what all the fuss is about .\nradamel falcao joined manchester united on on loan last summer . striker has only managed four goals in a disappointing season . nabil dirar said he would have been better off saying at monaco . read : gareth bale wo n't be sold to man united , insists zinedine zidane . click here for all the latest manchester united news .\ncompany developing a password that stays lodged in your stomach . jonathan leblanc , the company 's top developer , said that the devices would be powered by stomach acid and include mini computers . added that technology had become so advanced that it allowed ` true integration with the human body ' .\nverona substitute mounir obbadi scored late to secure all three points . obbadi stunned the home side as goal in added time earned them win . alessandro diamanti missed a penalty for fiorentina in the second half . vincenzo montella had no complaints as his side paid dearly for misses .\nchristine bleakely and frank lampard have been together for five years . bonding with daughters by model elen rivas has been a slow process . the tv presenter admits that becoming a step-mother is very delicate .\nfive members of the same family were trapped and died in north wales flat . jay liptrot , who owned the property , has been charged with manslaughter . a neighbour of the victims was jailed for life for murdering the family .\naustralian financial review writer geoff winestock told fairfax to sack him . he hopes that ` in 50 years ' there are ` no soldiers around to honour ' mr winestock spoke out in support of sbs sports reporter . scott mcintyre was sacked over his anzac day tweets . remembering ` rape and theft ' committed by ` brave ' anzacs , he tweeted . mcintyre also called the gallipoli landings ` an imperialist invasion ' . his comments sparked fury , with hundreds calling for him to be sacked . ` sbs apologises for any offence or harm caused by mr mcintyre 's comments ' the broadcaster says .\nscientists say early dna-like fragments guided their own growth . they claim the process can drive the formation of chemical bonds . these connect short dna chains to form long ones for life to evolve . this self-assembly capability has been shown to take place in rna .\narsenal host top four rivals liverpool at the emirates on saturday . martin skrtel and steven gerrard are suspended for the pivotal clash . liverpool lost 2-1 to manchester united before the international break . arsenal , in third place , are six points ahead of liverpool in the league .\nnico rosberg was the last driver out of the pit-lane and was forced to turn in a quicker out-lap than he would have liked ahead of his final shot at pole . the german narrowly missed out to his team-mate lewis hamilton . rosberg was just 0.042 secs slower than his mercedes rival . rosberg also said : ` oh , come on , guys ' , over the team radio after he was informed he 'd missed out on pole for tomorrow 's chinese grand prix .\nceltic are eight points clear of aberdeen in the scottish premiership . if the gap stays the same celtic could win the title at aberdeen on may 11 . aberdeen 's adam rooney does n't want celtic to celebrate on their patch .\neuropean eagle-owl caught on camera perched on birdwatcher 's head . large bird has been terrorising dutch town of noordeinde for months . twitchers have flocked to the town hoping to catch sighting of bird .\nv. stiviano must pay back $ 2.6 million in gifts from donald sterling . sterling 's wife claimed the ex-clippers used the couple 's money for the gifts . the items included a ferrari , two bentleys and a range rover .\nbayern 5-0 up at half-time as robert lewandowski -lrb- 2 -rrb- , thomas muller , thiago alcantara and jerome boateng scored . former liverpool and real madrid midfielder xabi alonso scored bayern 's sixth in the closing stages . porto had gone in to the match with a 3-1 lead from last week 's first leg in portugal . colombia international jackson martinez scored a consolation for porto with seventeen minutes to go . porto 's spanish defender ivan marcano was dismissed in the 86th minute after picking up two bookings .\nperu 's famous inca ruins received 1.1 million visitors in 2014 alone . average number of tourists far exceeded unesco 's daily limit of 2,500 . extravagant new plans aim to allow for more tourists to visit safely .\nmitchell is best know for her hits `` big yellow taxi '' and `` free man in paris '' paramedics came to her los angeles home on tuesday afternoon .\nmarc gasol of the memphis grizzlies was heading back to the locker room when he stopped to talk and give the child a high-five . as he left the biggest smile spread across the young fan 's face . last year grizzlies player zach randolph left the bench during the fourth quarter of a game to talk to the same boy and give him his warm-up shirt .\ninvestigator recommends removing pornography from army base stores . said soldiers did n't realize salacious shoot not ` in harmony with our values ' utah national guard officer sacked after allowing risqué video to be shot . emails from within 19th special forces unit show attempts to remove references to their involvement with hot shots bikini models . scantily clad women used army tank , helicopter and truck as props . after video made public , soldiers blamed ` uptight mormons ' for outrage .\nmassimo vian , head of luxottica , says version two ` in preparation ' ceo said there are ` second thoughts on how to interpret version 3 ' google 's wearable technology stopped selling first version this year . product called a failure after it was never widely available to customers .\na boy aged 13 has been jailed for 11 years for murder of christopher barry . he stabbed mr barry , a builder , twice in ` cowardly and unprovoked ' attack . teenager was a member of the notorious wood green gang in london . boy was thrown out of school at 11 for possessing cannabis and a knife .\nchristopher annan , 24 , and tyrone wright , 20 , jailed for attempted murder . took part in gun attack on tottenham turks gang member inan eren , 35 . he was shot three times in the arm , stomach and buttock but still survived . brutal attack was led by hitman jamie marsh-smith , 23 , nicknamed ` freddy ' he was jailed for 38 years for the shooting , the murder of eren 's cousin and crime boss zafer eren and a botched attempt to kill his own getaway driver .\nclothing can include moratex pack which instantly hardens on impact . has been shown to stop bullets in lab tests - yet wearer can move around .\nteenage suicide bomber abu hafs al badri is referred to as the cousin of isis leader abu bakr al-baghdadi . in january , a 14-year-old fighter abu hassan al-shami , blew himself up in salahuddin province , iraq . the rise in isis teenage suicide bombers could indicate how much the jihadi group is struggling to keep territory .\ntianwen chen and wife found a baby girl in a box by the road in 1989 . they carried her home , even though they had little money to live off . since then they have adopted more and more disabled children . sadly nine of the children died and the couple soon used up their savings . donations from the public mean they now have a brand new home .\nmassive 7.8 magnitude earthquake has struck nepal near its capital , kathmandu . as the death toll rises , witnesses describe devastation and panic .\nvijay chokal-ingam claims he posed as a black man and was accepted into the st. louis university school of medicine in 1998 . he decided he 'd have a better chance of getting into medical school if he was black rather than an indian-american man . tells of his experiences on his own website , almost black and criticizes affirmative action . he claims he shaved his head , trimmed his ` long indian eyelashes ' and joined the organization of black students .\nlouis van gaal says manchester united are in race for the premier league . dutch boss reserved special praise for marouane fellaini 's recent form . he says that the belgian midfielder has made himself almost undroppable . united are eight points behind chelsea having played a game more . van gaal 's charges face aston villa at old trafford on saturday at 3pm . robin van persie is still not fit enough to play at the weekend .\njosh and vanessa ellis , a couple in their 20s , were youth pastors in a suburban seattle church . they and their 8-month-old son , hudson , are killed when a highway barrier falls on their car . `` we are stunned ! shocked ! '' the church 's lead pastor writes on facebook .\nchelsea edged manchester united 1-0 at stamford bridge on saturday . blues forward eden hazard scored the game 's only goal , but united dominated possession and completed many more successful passes . despite defeat , united 's confident performance suggests that they will definitely be premier league title challengers again next season . united are preparing to spend heavily in the summer transfer window .\nmen in u.s. special operations forces fear the pentagon will lower standards to integrate women into their elite units . survey results show the need to do more to educate special forces members as integration of women into more military positions . male troops are worried that leaders would ` capitulate to political pressure ' . special operations forces , include the navy seal and army delta units and are considered the most grueling and difficult jobs in the military .\nhawaii scientists say a supervoid may account for a cosmic anomaly . the object is thought to be causing a ` less-dense ' region of the universe . at 1.8 billion light-years across it would be the biggest object ever found . but some ` exotic physics ' is also needed to explain what 's happening .\ngloucester take on edinburgh in european challenge cup final on friday . jonny may will start for the premiership club at the stoop . may hopes impressing against edinburgh can help an england recall .\ntom lineham scored two interception tries in an eye-catching display . jamie shaul also crossed late on for the home side . kevin brown and patrick ah van replied for widnes .\nseven-bedroom property in scarsdale , new york , where robert durst grew up hit market this week . features solarium , three-car garage , maids ' quarters , chandeliers . when durst was 7 , his 32-year-old mother either fell or committed suicide by jumping off the roof of this building . realtor glossed over coincidence that durst is currently under arrest and made first court appearance this week . the 71-year-old arrested on march 14 after police ` found a revolver , marijuana and a latex mask in his hotel room ' he is challenging the arrest warrant as unlawful , will soon fly to california for murder trial and possible death penalty .\ndouble victory for oxford as both men and women 's teams won races . women competed on same course as men and on same day for first time . up to 300,000 expected to line the banks of the thames for historic race . oxford men 's rowing team claimed their fourth win in five years .\nshinto kanamara matsuri started as a small tradition but has grown into a popular tourist attraction . known as the festival of the steel phallus , participants pray to a god of fertility and protection from infections . rainy weather did n't ruin the mood at this year 's festival , which attracted a large crowd of holidaymakers .\nremington ` remi ' walden , four , was killed three years ago when his family 's jeep grand cherokee exploded when it was rear-ended . jurors in georgia ruled that chrysler acted with reckless disregard for human life . jeep grand cherokee exploded when it was rear-ended , causing the gas tank to ignite .\nnypd 's secret history from first 50 years unveiled in book about the force . looking at men who led the police , book describes kickbacks and brutality . one chief of police led the mob to the whereabouts of his star detective . another failed to investigate kkk infiltration in the ranks of his department .\njordan meikle stretches his muscles by barriers near canary wharf . he lunges onto his knee and presents a ring from behind his back . girlfriend kayleigh harris appears speechless by the sudden gesture . after sealing the deal the 23-year-old carries on with the marathon . video was uploaded to facebook and has been viewed 25,000 times .\nromance was born show at mbfwa was held on thursday morning at art gallery of nsw . designers luke sales and anna plunkett presented a typically eccentric collection of bold prints and colour . fashion week wraps up thursday night with johanna johnson show .\nnorwegian vets criticise eu regulations on treatment of organic fish . first line of treatment for organic fish should be homeopathic remedy . vets call directives ` scientifically illiterate ' , saying it delays real care . british vets say use of homeopathy could lead to serious health detriment .\nthe spanish royal made a speech at the woman awards in madrid . she presented mexican actress salma hayek with an award . letizia was glamorous in a sequinned dress and showed off a bob . backless dress revealed a set of sharply defined back muscles . ms hayek , 48 , brought her seven-year-old daughter valentina along .\nvaccine is made from pieces of a protein called tarp . tarp is found in about 95 per cent of prostate cancers . studies show the protein can teach the immune system to attack cancer .\nin total , six tigers , a bear , a lion , a cougar , a black leopard and a liger -lrb- part lion , part tiger -rrb- were taken from kenny hetrick 's stony ridge farm . state officials found he did n't have the right permit and cages were ` unsafe ' but now the 72-year-old is fighting to overturn the seizure , backed by neighbors who insist his menagerie does n't pose a threat . ` he 's lost without them , ' said josh large , who lives four houses away .\njohn caudwell says the boy was shot and crawled into a bedroom to die . women visitors to the staffordshire pile have felt the bed vibrate . other guests sense a ghostly presence brushing past them on stairs . but mr caudwell insists the young spirit is friendly and means no harm .\ntonya stack , wife of mike stack , allegedly hurled drink at fundraiser . kevin boyle , who sits in pa house of representatives , says he was hit with obscene gesture , called it ` trashy ' , then got covered in sticky drink . event was held in honor of michael strange , who died in afghanistan . boyle and stack , both democrats , have been in political power struggles . backed separate candidates for seats in house legislature .\nsix boko haram militants were killed , military spokesman says . hundreds were involved in the raid on a village in far north . boko haram is based in nigeria but has attacked across the border of several neighbors .\nsalk 's vaccine began with inoculating school children in april , 1955 . polio was declared eradicated in the u.s. in 1979 , but still exists in other countries . a new microneedle patch is easily used by minimally trained personnel .\ntim and brandy ward reared chickens and turkeys at home in oso . mudslide on march 22 crushed the house , killed brandy and their dogs . tim was buried under 25 feet of mud but was pulled to safety still alive . he has spent a year trying to settle his $ 360,000 mortgage . last week , an anonymous donor paid the lot to chase bank .\nsir john chilcot 's inquiry began in 2009 . it has cost taxpayer almost # 10m . yesterday it emerged it is unlikely to be published until 2016 at the earliest . bereaved parents are disgusted that their suffering is being dragged out . delay is so figures like tony blair can rebut inquiry 's findings , families say .\nmichael carrick impressed during england 's draw with italy last week . but the midfielder has been ordinary in his nine competitive starts . england won four of those - ecuador , san marino , poland and lithuania . england bosses consistently preferred steven gerrard or frank lampard .\nandreas christopheros was left fighting for his life when corrosive liquid was thrown in his face outside his truro , cornwall , home on december 9 . nicole phillips , 45 , from hastings , has been charged with perverting the course of justice and will appear at magistrates ' in bodmin on april 30 . husband david phillips , 48 , had already been charged over the attack . has denied grevious bodily harm with intent and will stand trial in june .\ngareth bale has endured a difficult second season at real madrid . former tottenham winger has been linked with a return to the premier league with manchester united and chelsea . stoke manager mark hughes has urged wales star to stay at the bernabeu . read : bale desperate to stay and win over real madrid support . read : bale leads football league team of the decade .\nthe national guard 's language worries those who objected to the tactics used in quelling riots . the language is contained in internal mission briefings .\nmarianne power tried the tuning fork facial at hale clinic in london . utilises tuning forks that make different pitched sounds when struck . says afterwards her skin looks plumper and pink , rather than white .\njulia ware was driving before crash in paupack township , pennsylvania . chevy suburban rolled over several times during deadly august accident . three passengers ryan lesher , shamus digney , and cullen keffer were 15 . ware accepted responsibility for three homicide by vehicle felony counts . pleasantville , new york , girl also admitted to two misdemeanor charges . father faces charges for allegedly letting his daughter have keys to suv .\nconcert will be part of the three-day commemoration of end of wwii . status quo , katherine jenkins and boy band blue are set to perform . there will be a service of remembrance on ve day at the cenotaph .\naden gould , who has learning difficulties , opened boxes of speakers and tried out the gadgets . he was then marched to store manager 's office and told to empty his bag . sainsbury 's sent him a letter banning him from stores and fining him # 150 . supermarket has now reversed decision after a complaint from his family .\nhomeless isa richardson claimed her car had broken down to young girl . 12-year-old felt ` intimidated ' and handed over everything she had - just 15p . kent beggar has already been convicted of two similar offences this year .\nrangers are currently second in the scottish championship . stuart mccall 's side are in pole position to go up via the play-offs . but mccall is still not certain of his future at the club next season . rangers boss says he is still trying to build the squad for next year . rangers have begun to expand their scouting after several poor years .\nikea hopes to save the planet with chickpea and kale ` veggie balls ' the ` non-meat meatball ' also contains carrots , peppers and peas . swedish flat-pack firm sells one billion regular meatballs every year .\ntwo months after announcing he is leaving stewart has revealed that he was becoming increasing depressed watching cable news . ' i live in a constant state of depression . i think of us as turd miners , ' he said . stewart also confessed that his ` moments of dissatisfaction ' with the show had started to become more frequent . comedian said he did n't have many regrets , but one was not pushing donald rumsfeld harder when he had the chance in 2011 .\nhamayun tariq , 37 , shared four images of the factory on his twitter page . father of two said he produces ` sophisticated ieds ' for isis in the room . the divorced jihadi was born and raised in dudley in the west midlands . joined isis last year after serving a prison sentence in the uk for fraud .\nsome of jesus ' most important financial backers were women , historians say . joseph of arimathea and nicodemus , both men of stature and wealth , chipped in to help fund jesus ' ministry .\nscientists at vanderbilt university explored how to reduce infection risk . found all stuffed toys they swabbed showed signs of bacteria growth . urged parents to wash and sterilise any cuddly toys before surgery .\nstoke city have lost all eight trips to chelsea since premier league return . mark hughes insists that their fruitless stamford bridge visits must end . chelsea unbeaten in 14 premier league home games this season -lrb- 11 wins -rrb-\njoss labadie given six-month ban for biting ronnie henry . incident took place shortly before the end of league two clash between dagenham and stevenage in march . the midfielder pleaded not guilty to the violent conduct charge at a fa disciplinary hearing on wednesday . labadie served a 10-match ban and was fined # 2,000 in 2014 for biting .\nss guard charlotte s trained her alsatian to bite at inmates ' private parts . gisela s locked up to 15 prisoners in a tiny ` standing cell ' for days . gertrud elli senff revelled in the power of playing ` god ' with people 's lives . she picked who lived and who was sent to the gas chambers to die . but all three women - now frail and in their 90s - will never face justice .\ntory leader sets out seven point plan for boost home ownership dream . plans to boost construction with thousands of new affordable homes . help with cutting the cost of saving for a deposit and paying off mortgage .\nscheldeprijs classic ended in disaster after a huge crash in final kilometre . sam bennett suffered shocking injuries to his back and shoulders . the 24-year-old bora-argon 18 rider revealed injuries on instagram . team sky 's bradley wiggins was involved in the race but avoided crash . alexander kristoff went on to win the event after avoiding the accident .\nit has been eight years since an english club triumphed in the european champions cup . despite four english teams in this year 's quarter-finals , that hoodoo looks set to persist . english clubs are nowhere near as well-resourced as french clubs . in a world cup year , it would be a huge boost to national morale if english clubs could progress further into the competition .\nholidaymakers watched in horror as ancient boathouse erupted into flames . sparks from flaming cannonball fired from wooden trebuchet caused blaze . tourists evacuated from warwick castle as thatched building burnt down . no one injured in incident which occurred on last day of easter holidays .\nted koran was missing his recently deceased wife karen on saturday night . the florida air force veteran says he kept on being put through to recorded messages . only the thought of the 60 rescue animals he and his wife cared for kept him alive . both ran florida wildlife sanctuary called the critter place .\nexeter is getting its own special edition of classic board game monopoly . but residents ca n't think of anywhere to fill low-rent spaces on the board . game-makers say they have never come across this issue in a city before . exeter council leader says there are no areas suitable to be old kent road .\nfloyd mayweather holds an open media workout from 12am uk -lrb- 7pm edt -rrb- the american takes on manny pacquiao in las vegas on may 2 . mayweather 's training is being streamed live across the world .\ndawn service at anzac cove begins as more than 10,000 australians and new zealanders gather at formal ceremony . thousands attended the anzac commemorative site to mark the 100th anniversary of the gallipoli landings . among those in attendance are australian prime minister tony abbott and his new zealand counterpart john key . prince charles and prince harry also sat alongside the prime ministers at the gallipoli dawn service . mr abbott said the troops became more than just soldiers as they were the ` founding heroes of modern australia '\nincoming ecb chairman colin graves called west indies ` mediocre ' but england failed to win first test in antigua despite dominating . ian bell insists his team did not underestimate west indies . west indies batsman devon smith says comments motivated the hosts .\ngareth bale has not started eight of real madrid 's matches this season . in the games he has missed , real boast a 100 per cent win record . real have scored 25 goals and conceded just one without the welshman . in the 42 matches that bale has started , real 's win record is 69 per cent .\nthe bell 525 relentless boasts an 88-square-foot cabin and space to fit 20 passengers in boardroom-style comfort . the craft , by textron , will make its maiden flight this year and is aimed at the rich offshore oil and gas market . it will cruise at a maximum of 178 miles per hour and with its 2,4000-litre fuel capacity fly 575 miles without stopping .\nthe flexible aluminium battery was created at stanford university . it consists of a negatively charged aluminium anode and a positively charged graphite cathode along with an ionic liquid electrolyte . it sits in a flexible polymer-coated ` pouch ' and recharges in one minute . but it currently offers just half the voltage of existing lithium-ion batteries .\nlabour leader described himself as a ` jewish atheist ' on visit to jerusalem . campaign tour stopped off at praise house community church in croydon . miliband vows to do everything he can to protect religious freedom .\nalberto bueno ha scored 17 goals for rayo vallecano this season . striker will lead the line on wednesday for rayo against real madrid . bueno has been linked with a move to porto at the end of the season .\nadam leheup ran fitness 535 in columbia , south carolina and was a devoted youth ministry teacher and worked as a property manager . her husband benji was just minutes behind when she collapsed and was rushed to a hospital , where she died for reasons that remain unclear . glover was an avid fitness fan who , only just a month ago had run the myrtle beach marathon .\nformer sgt. matt vierkant claims admiral mike mullen knew bergdhal deserted . claims the chairman of the joint chiefs told him this during private question and answer session . ex-white house aides have said it is inconceivable that president obama did not know . bergdahl is charged with desertion and misbehavior before the enemy .\nalan stubbs felt hibernian did enough to reach scottish cup final . falkirk manager peter houston hit back at stubbs ' post-match comments . houston 's side take on inverness caledonian thistle on may 30 .\namir khan has rejected a # 5million fight with kell brook in june . khan claims that brook only wants to fight him for ` one big payday ' brook will struggle to fight one of boxing 's big names , according to khan . khan says brook is nowhere near floyd mayweather and manny pacquiao . watch here : mayweather vs pacquiao official advert released . freddie roach : pacquiao better equipped to beat mayweather than in 2010 . click here for all the latest news from the world of boxing .\nbeatrice nokes allegedly ran a prostitute ring in central london last year . she is suspected of grooming three women to sell their bodies for sex . nokes is the daughter of two highly experienced legal professionals . she allegedly organised the sex ring with met police officer daniel williams . he also faces charges of voyeurism and concealing profits in his chimney .\nfilm leaked of raheem sterling inhaling nitrous oxide just a day after he was pictured smoking shisha . sterling put liverpool 1-0 up after just nine minutes at anfield before missing easy chance in second half . referee lee mason missed what pundit gary neville described as a ` blatant penalty ' for newcastle 's ayoze perez . welsh midfielder joe allen then scored his first goal at anfield to put liverpool 2-0 up after 70 minutes . france midfielder moussa sissoko sent off late on for two bookable offences . result moves liverpool up to within four points of manchester city in fourth and is newcastle 's fifth defeat in a row .\naccording to scientists , perfume really can make us more attractive . lavender has been shown to calm and soothe the mind . citrus smells evoke images of health and cleanliness .\nthe penalty is more than 10 times the previous record , according to a newspaper report . utility commission to force pacific gas & electric co. to make infrastructure improvements . company apologizes for explosion that killed 8 , says it is using lessons learned to improve safety .\naston villa manager tim sherwood faces chris ramsey 's qpr on tuesday . both clubs are fighting relegation from the premier league this season . sherwood and ramsey will put their friendship aside when they meet . villa boss says this is the biggest game of his managerial career . click here for all the latest aston villa news .\nwerder bremen defeated hamburg sv 1-0 in the bundesliga on sunday . bruno labbadia has returned as coach to save hamburg from relegation . wolfsburg meet schalke 04 in the later game on sunday .\nfishing vessels are searching for 15 people still thought to be missing . there were 132 people on board the ship , 78 of them russians , tass news agency says . the rest were foreign nationals from myanmar , ukraine , lithuania and vanuatu , it says .\npresenter sue perkins was favourite to replace jeremy clarkson on top gear . the great british bake off star has since received death threats on twitter . perkins , 45 , wrote : ` someone suggested they 'd like to see me burn to death ' announced she 's leaving social media site and received support from fans .\nchloe owens , 27 , from swanley , designed new app bump 2 breast . came up with idea when pregnant with daughter , lola , now three months . says her and husband david felt like ` rabbits in headlights ' at first . also struggled to remember which boob to use when breastfeeding .\nlabrador baylie from leeds suffers from hip problems - and a sweet tooth . swapped sweet treats and processed food for raw meat , offal and bones . owners say he is a ` different dog ' since going on raw foods doggy diet .\napryl foster , 33 , was last seen on february 12 in ybor city , florida . cctv footage speaking with a man before leaving a tampa-area bar alone . her body was found 10 days later inside her drowned car . it was just a few blocks from her house in brandon . autopsy found a high blood alcohol level and marijuana in her system . death has been ruled an accidental drowning .\npeople aged under 30 currently represent a staggering 63 per cent of iran 's population of 73 million citizens . the westernised iranian youth is also among the most politically active groups within the islamic world . the young also represent one of the greatest long-term threats to the current form of theocratic rule in iran .\nchina 's cybercensors have developed a new it weapon and have attacked servers outside their borders . attacks by the `` great cannon '' are in the open and could draw international ire , the authors of the study say .\ntikrit is under the control of iraqi forces , iraqi prime minister says . isis departs , leaving city strewn with booby traps , explosive-filled vehicles . officials hope to avoid shia reprisals for isis slaughter of air force recruits .\nbarack and michele obama 's effective tax rate was 19.6 per cent . they made $ 70,712 in donations to 33 different charities . claimed a whopping $ 160,000 in itemized deductions . nearly $ 95,000 in income came from sales of the president 's books .\nmedical examiner 's report described how gray may have injured neck . theory claimed he fell forward while cuffed and hit his head on a bolt . but specifications for the chevrolet express van show no such bolt . photographs of other baltimore police also contradict theory . gray 's spine was somehow severed while in police custody on april 12 .\nronny deila confirms jason denayer wo n't play in champions league . the defender is to report for pre-season training with manchester city . deila admitted that he would like to see denayer return to celtic . click here for all the latest celtic news .\nparents and grandparents flocking to social media site . almost 60 % of britons aged over 55 now have facebook account . many have left site while others block posts from family members .\ntim sherwood took time to reply to aston villa fan charlie pye . the 6-year-old applied for the villa job when paul lambert was sacked . the youngster wanted his mum and dad to be assistant managers . sherwood admitted that he just pipped pye to the post for the hotseat . click here for all the latest aston villa news .\nutility back francis saili will join up with munster later this year . the new zealand international has signed a two-year contract . saili made his debut for the all blacks against argentina in 2013 .\nthe items went under the hammer at bonhams new york on march 31 and april 1 . several pieces once belonging to bacall 's first husband humphrey bogart were included in the auction .\nsheldon nadelman , 80 , captured images of new yorkers while working at terminal bar on 41st street and 8th ave. photos between 1973 and 1982 show prostitutes , pimps and homeless people around port authority bus terminal . sex workers would come in to drink cognac at eight in the morning before going out to walk the streets . terminal bar closed when owner did n't want to pay $ 125,000 a year rent on property that now leases for millions . block with bar in neighborhood described as ` dirtiest , wildest and toughest ' now has an upscale grocery store .\neast yorkshire restaurant probed after diner reported seeing dog faeces . out-of-date food served and there was a high cross-contamination risk . ` foolish ' owner david crossfield , 52 , and his business are fined # 15,000 . now-closed restaurant did n't carry out regular disinfection and cleaning .\nbenik afobe fired wolves ahead on 46 minutes with a low right-footed shot . bakary sako doubled the visitors lead from the penalty spot on 72 minutes . dexter blackstock scored a late consolation for the hosts in injury time . win moves wolves on to 68 points with six games remaining .\nwarning : graphic content . justin whittington , 23 , was taken into custody in california on friday . initially charged with child cruelty , it was dropped to ` endangerment ' on saturday , after his bail went from $ 1m to $ 20,000 , he posted bond . whittington was ` filmed hitting a toddler in the face so hard that he falls ' he is believed to be the boy 's father , will be in court on april 24 .\njessica wright stars in the lingerie brand 's resort collection . hotel summers includes several colourful swimwear pieces . curvy jess is the first celebrity to front an ann summers campaign .\niconic uk brand topshop continues expansion across sydney . this marks sydney 's second store , located at westfield miranda . fashion elite will arrive in style in iconic london black cabs . australian celebrities cheyenne tozzi and nic westaway to help launch it .\npreacher and civil rights leader said reports of a funeral ban are ` bogus ' will head to north charleston , south carolina , to preach on sunday . walter scott , 50 , was shot dead by michael slager almost a week ago .\nford vox : florida law keeps doctors from talking gun safety with patients ; arizona law forces doctors to promote disputed abortion claim . he says doctor organizations are failing to defend medical profession against politically motivated interference by clueless lawmakers .\naround 650 foreign runners took part in the annual north korea marathon . entrants were banned from taking photographs and under constant watch . but runners praised jovial atmosphere and even high-fived supporters . 10km event was won by american cable installation guy charles kobold .\npenny wong 's partner sophie allouache gave birth in adelaide on friday . labor senator shared news of baby hannah 's arrival with twitter followers . it is the second child for the couple who welcomed alexandra in 2011 . hannah and alexandra were both conceived by the same sperm donor .\nsam tomkins has been homesick after moving to new zealand . he joined warriors after leaving wigan who are interested in signing him . tomkins had been contracted until the end of the 2016 season . he said he missed home in ways he never thought he would .\nslovenian-born aljaz bedene secured a british passport last month . international tennis federation ruled bedene ca n't play for great britain . ruling comes after bedene played twice for slovenia in 2010 and 2011 . rusedski , who switched to britain from canada , offered his support . bedene 's world no 99 ranking puts him only behind andy murray in britain . murray backed bedene 's switch saying it would motivate those below him .\nmered medhanie and ermias ghermay ` have made # 72m in last two years ' medhanie heard on police wiretap mocking the fatal overcrowding of ships . ghermay reportedly said : ' i do n't know what happened , they probably died ' pair wanted over major smuggling ring , but are hiding in lawless libya .\npolice arrested rebecca grant , 40 , for breaching bail conditions . found apparently intoxicated walking into traffic in limington , maine . resisting arrest , she scratched car with her teeth and bit upholstery . she also ` tried to head-butt a deputy and threatened to kill him '\ndavid rush , 33 , from lisburn , northern ireland , weighed 34st . felt that he ` should n't go out ' and had to order xxxxxl clothes . got to 26st then began cycling up to 85 miles a week . now weighs 15st 4lbs and and is training for a half marathon . he is saving up to get around a stone of excess skin removed .\nthe six minnesota men were arrested sunday on terrorism charges . suspects adnan abdihamid farah , 19 ; zacharia yusuf abdurahman , 19 ; hanad mustafe musse , 19 ; and guled ali omar , 20 arrested in minnesota . mohamed abdihamid farah , 19 , and abdurahman yasin daud , 21 were taken into custody in san diego , california , after driving from minnesota . three of the men were stopped in november trying to fly out of the country , but were only charged this month .\njason cummings and farid el alagui scored in edinburgh derby victory . hibernian beat rivals hearts in race for second place in the championship . hibernian now on same points as rangers who have a game in hand .\ntimothy eli thompson was born without nasal passages or sinus cavities . mother brandi mcglathery said ad with photo of her son that pro-life group posted about him was removed by facebook for being too controversial . a post she wrote about it was shared 30,000 times and photo was put back . facebook is now admitting ad was not ` in violation ' and ban was a mistake .\nthe omura 's whale was discovered on a remote exmouth beach in wa . it was washed up on the beach by tropical cyclone olwyn . authorities found it hard at first to identify the 5.68 m juvenile female . however dna profiling confirmed it was an omura 's whale . it is the first sighting of the species in wa and only the second in australia .\nlight gold moto 360 is available for customers to pre-order online from o2 . customers ordering before 10pm on 20 april will receive watch on 21 april . it will then go on general sale from o2 stores on 23 april for # 249.99 .\neharmony relationship survey reveals pros and cons of single life . 54 % of women say they prioritise love but men spend almost double the time per week actively looking for dates . 53 % of women hate being the only single person at a family gathering . 24 % of men says they 're single because ` all the good ones are taken ' . one single woman reveals her friend did n't invite her to a birthday dinner as she would ` ruin table numbers '\nbarcelona b winger moha el ouriachi set to reject a new deal at club . the player 's agent says they have an irresistible offer from stoke city . stoke have already signed bojan krkic and marc muniesa from catalans . pacey winger el ouriachi , 19 , has represented spain at youth level .\ngrass tried in his literature to come to grips with world war ii and the nazi era . his characters were the downtrodden , and his style slipped into the surreal . he stoked controversy with his admission to being a member of the waffen ss .\nbridewell prison transformed from dark and uninspiring building into bright and airy hotel . the jail used to house inmates for court appearances and short sentences following petty crimes . former cells across four floors have been transformed into slick modern rooms complete with en suite bathrooms .\nlz : barney frank may say lgbt rights ` winning , ' but indiana law pushing them back , and other states ' anti-lgbt moves , a bad sign . cruz , huckabee , jindal , carson , walker and some state judges rulings , feel like 2016 reviving culture wars , he says .\npep guardiola is set for contract negotiations at the end of the season . the former barcelona boss is out of contract in the summer of 2016 . board member jan-christian dreesen does not believe guardiola 's decision on a new contract will be influenced by money . bayern munich are 10 points clear at the top of the bundesliga .\nlauren hill 's coach says she was `` an unselfish angel '' after playing for her college , lauren hill helped raise money for cancer research . ncaa president says she `` achieved a lasting and meaningful legacy ''\nkamron t. taylor was recently convicted of murder . he stole officers keys and uniform being fleeing the jail in officers vehicle . taylor was awaiting sentencing when he escaped . the 23-year-old fugitive is wanted for aggravated battery to a correctional officer as well as escape . a $ 1,000 cash reward is being offered for any information . authorities say they have found a 15-year-old girl who they had thought to be in the company of the murderer .\nap mccoy will ride cantlow in the irish grand national on monday . cantlow disputes favouritism largely due to mccoy 's choice to ride him . he could 've ridden alderwood or if in doubt , also owned by jp mcmanus . trainer paul webber said of the track : ' i hope it dries up a bit '\nmelbourne model sharky jama has reportedly been shot dead in syria . he fled to the middle east last year to fight with islamic state with a friend . sharky 's father confirmed his son 's death while relatives posted tributes . family were told on monday by friends via a text message and phone call .\namelia-jane harris was 27st 10lbs at 17 and was called ` fatty bum bum ' she began losing weight rapidly and was diagnosed with crohn 's disease . lost 18 stone in 20 months and became a slim size 6 weighing 8st 9lbs . says her dream body is a ` nightmare ' as is in constant pain and ca n't eat .\nmarco evaristti poured red fruit dye into the strokkur geysir at dawn . when the hot spring boiled , bright pink steam erupted from the ground . the chilean artist has been jailed for 15 days by ` disgusted ' authorities . he defended the artwork saying ` nature belongs to no one ' .\ndaley blind received painting of himself and his father as birthday present . the 25-year-old called danny blind his ` inspiration ' in instagram post . blind has been a key player for manchester united this campaign . click here for all the latest manchester united news .\ncontrol of strategic seaport of aden divided between houthi rebels and government loyalists . some saudi arms are falling into rebel hands . terrified residents line up for bread and fuel and try to stay indoors .\nsainsbury 's ceo mike coupe handed two year jail term by egyptian court . embezzlement claim was brought by former sainsbury 's business partner . businessman amr el-nasharty helped to launch chain in egypt in 1999 . however venture fell apart and chain left middle east with losses of # 110m . mr el-nasharty claims mr coupe tried to seize cheques from him last july . sainsbury 's supermarket strongly refutes all the claims against it .\nwayne kyle is the father of navy seal chris kyle - the most lethal sniper in u.s. military history . kyle was shot dead in 2013 four years after retiring while he was trying to help a fellow veteran struggling with ptsd . his killer , eddie routh , was found guilty of his murder in february and sentenced to life in prison without the possibility of parole . his father said the family now has closure following the end of the trial . a movie about chris kyle 's life called american sniper was released in january starring bradley cooper . wayne kyle called the movie an ` absolute disgrace ' for the way in which it portrayed his other son , iraq veteran jeff kyle , as ` cowardly ' .\nlashing out in sleep is a sign of ` rapid eye movement behaviour disorder ' half of people with this condition will go on to develop parkinson 's disease . up to 90 % of people will develop another neurological disorder within 10 years . sleep disorder occurs due to a brain malfunction - meaning the brain does n't paralyse the body 's muscles during the period of sleep when people dream .\nashley young joined manchester united in june 2011 from aston villa . young feels he has an important role to play under louis van gaal . he feels he and wayne rooney are among those that have taken on responsibility after nemanja vidic , rio ferdinand and patrice evra left .\nrhodri giggs , 37 , lost his driving licence under a ` totting up ' procedure . came after he was found guilty of driving a mercedes without insurance . banned from driving for 6 months as he already has speeding convictions . giggs recently spoke for the first time about his brother ryan 's affair with his former wife .\nmax muggeridge reeled in a four metre tiger shark at the weekend . he was fishing with girlfriend at tweed heads in nsw . the gold coast man described the catch as the best moment of his life . after a three hour battle with the monster max released the shark . he believes it could have been a world record but did n't get measurements .\narsenal face aston villa in the fa cup final at wembley on may 30 . tim sherwood 's side won the toss to decide which kit they 'll wear . villa chose their claret and blue home strip for the fa cup showdown . arsenal will play in their yellow and blue away kit . the gunners have won three of the five finals played in the kit .\nphotographer mervyn o'gorman was 42 when he snapped the pictures in 1913 . mervyn was known as an early pioneer of colour photography and used the autochrome process . his teenage daughter christina o'gorman posed in red swimsuit at lulworth cove , dorset . autochrome photography process used dye and starch to create the melancholy tone . do you know who christina was and what happened to her ? email femail@mailonline.co.uk .\nitalian esa astronaut samantha cristoforetti and us astronaut terry virts have snapped images of a typhoon . they took them from the iss while orbiting earth at a height of 255 miles -lrb- 410km -rrb- super typhoon maysak was a top-rated category 5 typhoon , and will make landfall in the philippines this weekend . as it moved over the pacific ocean , the storm generated winds of more than 140mph -lrb- 225km/h -rrb-\na u.s. drone strike accidentally killed hostages warren weinstein and giovanni lo porto . michael rubin : hostages such as journalist jason rezaian are canaries in the coal mine .\nbad weather may destroy weekend plans in multiple states , with thunderstorms and tornadoes forecast to strike . there was one tornado in florida and two tornadoes hit colorado thursday . severe thunderstorms may take place in several states friday and affect metropolitan areas , including dallas and houston . storms could also happen in the south and along the gulf coast saturday . winds , tornadoes , and hail were forecast to be potential issues from friday through sunday . the forecasts come after some parts of the country - including ohio , new york , minnesota , wisconsin and michigan - saw snow earlier this week .\nconor mcaleny scores stoppage time equaliser for cardiff . pavel pogrebnyak had put reading in front after four minutes .\nchelsea beat manchester united 1-0 at stamford bridge on saturday . eden hazard scored winning goal in the first half as chelsea head for title . ander herrera was booked for diving after coming together with gary cahill . jose mourinho said there would be outrage if it had been a chelsea player . but that it would be forgotten tomorrow because it was a united one .\nboris johnson to move centre stage in tory election campaign next week . london mayor to make a high profile joint appearance with david cameron . comes amid surprise he was not at the tory manifesto launch this week .\njermain defoe received a mixed reception from fans in newcastle . the 32-year-old was introduced to the crowd at a wwe event . defoe scored the winner for sunderland in tyne/wear derby on sunday .\nscottish championship winners hearts are set to lose danny wilson . former liverpool defender has activated release clause in his contract . celtic have been linked with a move for the former rangers player .\nexpressed concerns over tactics employed by the conservative campaign . labour leader is now the bookies ' favourite to be the next prime minister . ` every time miliband is visible , he appears credible , ' said a company boss . tory tacticians have now told campaigners to focus on economic success .\nflabbergasted mario draghi covers face as woman throws paper at him . protester bundled off by two bodyguards , while third shields ecb boss . she flashes v-for-victory sign as men carry her away by arms and legs . ex-femen activist josephine witt , 21 , identified herself as demostrator .\nchelsea ellen bruck , 22 , was last seen in the early hours of october 26 in frenchtown township , michigan dressed as the batman villain poison ivy . police searched an area near a ford motor company plant in michigan . the sheriff 's office declined to discuss media reports that part of chelsea 's costume were found . she was last seen in the parking lot with dark-haired man at 3am . the party had to be shut down after numbers swelled from 500 to 800 people .\ninverness defender josh meekings has won appeal against one-match ban . the 22-year-old was offered one-game suspension following incident . however , an independent judicial panel tribunal overturned decision . inverness reached the scottish cup final with 3-2 win over celtic .\nformer union official was arrested after returning from the middle east . he left the country in january to illegally join the fight against is . it is understood matthew gardiner headed to iraq or syria to join kurdish . the australian federal police has confirmed it is investigating the case . the 43-year-old was allowed to leave the country because he was not on any watch list , report says . a spokesperson for attorney general george brandis said : ` if you fight illegally in overseas conflicts , you face up to life in prison ' .\nyi qi is thought to have lived 160 million years ago during the late jurassic . the dinosaur has an unusual bone sticking out of its wrist and had a membrane that covered it to form a wing much like that of a modern bat . scientists say it is unlike any other dinosaur , which evolved into birds , and may have glided or even been able to fly by flapping over short distances . the fossil was discovered by a farmer in qinglong county in north china .\nmatilda fitt , now 21 months old , played baby julia poldark in bbc show . the real-life infant was born nine weeks early , and battled pneumonia . matilda was chosen to play julia because of her small size . unlike her character , who died of putrid throat , matilda is now doing well .\nnovak djokovic beat john isner 7-6 . 6-2 in their miami semi-final . the world no 1 will take on andy murray in sunday 's final . djokovic is bidding to win his fifth title at key biscayne .\nchelsea supporters trust teamed up with playfair qatar to set up protest . supporters invited to take part in protest photo aimed at improving rights of migrant construction workers building qatar stadiums . protest will be held at 3pm out side stamford bridge ahead of chelsea 's clash with manchester united on saturday evening .\nthomas set to be named as one of eight new referees for the 2015 season . the married mother-of-three has regularly officiated college games . thomas was the first woman to officiate an ncaa game in 2007 . she has also spent time in the nfl 's developmental program for officials .\nvideo shows john hargrove , who appeared in blackfish , using the n-word seven times as he talks to a friend on the phone . hargrove said he ` had a lot to drink ' when the video was filmed and did not remember the incident . seaworld released the video to reporters and said they received it last weekend from an ` internal whistle-blower ' . hargrove says the company is launching a ` smear campaign ' against him . he is currently on a book tour promoting beneath the surface .\nanne germain , 86 , was killed by the flood waters on wednesday . she was making a quick trip to the shops when her car washed away . bystanders stripped off and dove into the icy waters to try and save her and her car was dragged by the fast waters in maitland . she had wanted to go and see her husband in a nursing home but knew it would n't be safe . nsw premier mike baird visited the area and is ` shocked ' by devastation .\nfive-star ballyfin has was given the prestigious award in the publication 's latest edition . the high-profile couple stayed there last may on their honeymoon following their italian nuptials . the entirety of the elegant hotel can be hired out for # 18,000 -lrb- $ 25,000 -rrb- a night .\ndimitri harrell , 21 , was arguing with samirria white , 19 , over his ` infidelity ' with three-month-old daughter in his arms , he apparently pulled out a gun . he then shot his fiancée in the face at close range , killing her , officials said . now , harrell has been charged with single count of second-degree murder . he revealed to police he had stored the gun under his daughter 's mattress . also claimed he shot victim accidentally while pulling weapon from pocket . harrell caused ` trust issues ' after having two children with another woman . in custody on $ 200,000 bail ; if convicted , faces up to 40 years behind bars .\nmarcello trebitsch , 37 , was indicted monday on securities and wire fraud charges . the brooklyn resident is married to the daughter of disgraced former new york state assembly speaker sheldon silver . just three months ago , the same prosecutor hit silver with corruption charges for allegedly taking $ 4million in bribes and kickbacks . silver has fiercely denied the charges .\nrafael benitez has dismissed speculation linking him to manchester city . the former chelsea and liverpool manager is being touted as a potential successor for under-pressure city boss manuel pellegrini . benitez insists he is fully focused on his job at napoli . he won the coppa italia last season and has led napoli to brink of the europa league semi-finals this term .\nlouis jordan says his sailboat capsized three times . he survived by collecting rainwater and eating raw fish . frank jordan told cnn his son is n't an experienced sailor but has a strong will .\nstudents at school in china pictured eating their lunches on the sidewalk . they say they are protesting the high school 's ` disgusting ' canteen meals . the school in jilin province banned students from bringing their own food . teachers have erected barbed wire and metal sheets to prevent smuggling .\noxford won their 12th women 's boat race in 16 years . the dark blues triumphed by six and a half lengths . it was the first time the women 's race has been raced over the same course and on the same day as the men 's event .\nnew survey found that audrey hepburn 's moon river was most popular . other chart songs used as lullabies include vanilla ice 's ice ice baby . pitbull , ed sheeran and sam smith also made the cut .\nander herrera and juan mata have both scored braces in recent games . mata scored two goals in manchester united win over liverpool . herrera followed up with a two-goal haul against aston villa on saturday . as united and city go head-to-head , we ask : just how manc is the derby ? click here for all the latest manchester united news .\n14-month-old princess leonore was taken to meet the pope at the vatican . looked out of sorts and played with her mother madeleine 's pearls . madeleine 's british husband christopher o'neill , 40 , was also there .\nnathaly hernandez has lived at the home of the innocents nursing facility in kentucky since she was three months old . she was born with a rare condition that impacts her joints and movement . her caregivers said she became obsessed with miley cyrus ' wrecking ball after her teenage roommate played the track . they filmed her lip-syncing the track last friday with the video triggering a torrent of positive response .\nmanny pacquiao takes on floyd mayweather in $ 300m mega-fight on may 2 . filipino boxer says he will fight like it is the last of his life in las vegas . pacquiao has no doubt he will be the first to beat mayweather . insists he will be a warrior in fight and will look to win each round . floyd mayweather vs manny pacquiao : wbc unveil $ 1m emerald green belt . floyd mayweather ` is a control freak ' , slams pacman 's promoter bob arum .\nex-brazil striker ronaldo is a co-owner of fort lauderdale strikers . ronaldo insists the club will target signing the best players in the world . ronaldo believes the lifestyle in the united states appeals to top players .\na mother of two admits she has a favourite child because of his smell . amie cox says son alex has had ' a smell since he was born ' she says ` there 's some sort of smell connection ' with him . she loves him and his brother equally but alex is the special one . amie says she could n't choose one over another to live or die but favours alex. the 33-year-old says she is being attacked and called ' a freak ' but she 's ' a normal loving mum ' sbs insight programme asks if sibling rivalry might lead to learning and mental health problems and whether family favouritism makes this worse .\nmark jones is accused of killing his 41-day-old granddaughter amelia rose . amelia 's mother sarah claims mr jones looked after her baby daughter the day before her death and described her as a ` bloody nightmare ' . jones has denied murder , claiming he dropped amelia twice by accident . court told jones disliked amelia 's father , which could have been a motive .\nfire breaks out at the general electric appliance park in louisville , kentucky . city official : no is believed to be injured or trapped .\naged 42 robin rinaldi believed she had conceived a longed-for child . the pregnancy test was negative and her husband had a vasectomy . rinaldi then demanded an open marriage and slept with 12 people in a year .\nisis attacked the baiji oil refinery saturday . the refinery , iraq 's largest , has long been a lucrative target for militants .\njermain defoe was the first sunderland player to take part in the challenge . former tottenham and west ham striker scored an impressive 76 . defoe then performed keepy ups with a creme egg and scored nine .\nulysses beaudoin , 39 , of texas , allegedly shot his son , ulysses nelson , twice in the back . officials say he then threatened his 18-year-old son with 9mm handgun . beaudoin and his girlfriend fled from the scene but were tracked down . the father was seen weeping and muttering , my baby , ' as he was being handcuffed .\nsaracens lost 13-9 to clermont at stade geoffroy-guichard on saturday . the sarries pack contained five english-qualified forwards . saracens ' millionaire chairman nigel wray wants the salary cap scrapped .\nbill prady has written a pilot episode to pitch to advertisers . filming will start in burbank , california , next weekend . new series set to see return of kermit , fozzie bear , gonzo and animal . first episode revolves around luring an upset miss piggy back to the cast . it has been 17 years since the last muppets tv series ended .\nlouis jordan , 37 , was rescued thursday after being stranded 200 miles off the coast of north carolina . refused treatment when he was taken to hospital in norfolk , virginia . coast guard crew who rescued him said he was smiling when they arrived . group expected him to be severely sun burnt and covered in blisters . he refused treatment at hospital and conducted tv interviews straight away . authorities are looking into his credit card and bank statements from during the time he says he was drifting .\njoshua smith , 16 , died in hospital after being rescued from the sea . fell from a cliff at berwick-upon-tweed in the early hours of easter sunday . northumberland police say they are not treating the death as suspicious . have referred the death to the independent police complaints commission .\nwilfried zaha joined manchester united for # 10m in january 2013 . winger made debut in july but only made three more appearances . rejoined palace on loan and deal made permanent in february 2015 .\nfloyd mayweather v manny pacquiao is now just nine days away . sportsmail 's jeff powell has been counting down the greatest fights . in the fourth of a series of 12 fights that shaped boxing history , we have george foreman v muhammad ali - the rumble in the jungle . it was a fight which astonished the satellite world on october 30 , 1974 . foreman v ali inspired movies and millions of words written about it .\nkevin pietersen has returned to domestic cricket with surrey . axed england batsman will make his debut against oxford university . kp has backed michael vaughan to lead overhaul england cricket .\nceltic will play their scottish cup semi-final against inverness on sunday . the match kicks off at 12:15 , which has angered scottish supporters . celtic boss ronny deila believes the club should decide kick-off times . fans believe it is unfair for television broadcasters to dictate timings when they are offering scottish football a fraction of the billions paid in england .\nrona fairhead is facing immediate calls to step down as director of hsbc . it 's after claims swiss arm helped wealthy clients hide billions from taxman . she was criticised by mps as ` incredibly naive ' for failing to notice scandal . american investors lodged their votes to get rid of the bbc trust chairman .\nfilms can be bought at skystore.com or through the sky store app . recent new releases include the hunger games : mockingjay part 1 , the hobbit : the battle of the five armies and paddington . new releases cost # 13.99 , classics are # 7.99 and both include a dvd copy . new releases on blinkbox are # 8.99 to buy a digital copy the user can keep .\nwembley hosted two fa cup semi-finals over the weekend . arsenal defeated championship reading 2-1 after extra-time to reach final . fabian delph and christian benteke scored as aston villa beat liverpool .\nclarkson has not spoken publicly about sacking since news broke in march . he today gave ` heartfelt thanks ' to fans , saying he would ` miss being there ' rippon , 70 , keen to return to show and wants woman in presenting line-up . meanwhile , bosses are reportedly trying to cling onto james may and richard hammond .\nshe hosted a controversial discussion on the disappearance of people . she knew what she was doing was dangerous and had received death threats before . mahmud loved books , jimi hendrix and discussions about human rights .\nmother was at charity easter egg hunt at melbourne 's caulfield racecourse . a volunteer at the event on saturday told her to stop taking too many eggs . she told the 13-year-old to ` f *** off ' and continued to deny she was doing it . but she became so rowdy security guards had to throw her out of the hunt . the easter event was held to raise money for zaidee 's rainbow foundation . foundation aims to make people more aware of organ and tissue donation .\nbritish no 1 defeated dominic thiem in miami open quarter finals . andy murray celebrated his 500th career win in the previous round . third seed will play the winner of tomas berdych and juan monaco in the semi finals of the atp masters 1000 event in key biscayne .\nofficial : girl , 15 , `` expressed an interest in joining a terrorist group called isis '' authorities detain girl at cape town airport , release her into family 's care , he says .\nnew broadcasting house in central london took a decade to build . it was opened by the queen in 2013 at least # 55million over budget . but the bbc has now admitted it ` occasionally ' runs out of meeting rooms .\nweather experts predict temperatures will dip by around ten degrees . plunge means britain will be colder than moscow , stockholm and finland . arctic airmass from iceland to blame for the sharp change in temperature . forecaster also predict thousands of runners could be in for wet london marathon .\nreading lost 2-1 against arsenal in fa cup semi-final at wembley . royals took much fancied gunners to extra-time after 1-1 draw . steve clarke will take strength from impressive reading display .\ncecil hamilton-miller prosecuted dozens of belsen guards in 1945 . solicitor responsible for conviction of camp commander josef kramer . cambridge grad served in india before being sent to belsen in may 1945 . mr hamilton-miller also took evidence from former auschwitz prisoners .\nholly nicole solomon , now 31 , hit husband in mesa , arizona , parking lot . she was mad he did n't vote because they would ` face hardship ' with obama . husband had tried to hide by light pole but she drove in circles to hit him . solomon accepted plea deal that will send her to prison for 3 1/2 years . she originally pleaded not guilty and said she meant to hit brakes .\nabout a dozen native american actors walk off set of adam sandler comedy , says report . actors say satirical western 's script is insulting to native americans and women .\npatricia ebel , 49 , was arrested on friday after crashing her luxary bmw 5-series into a car that was stopped at an intersection in naples , florida . she was captured on video staggering as she failed all field-sobriety-tests . ebel had been driving her 10-year-old grandson in the vehicle after a day at the pool . she is facing dui charges including driving with a .15 - or-greater blood alcohol content with a minor in the car .\nnyia parler , 41 , allegedly left her 21-year-old son in woods on monday and traveled to maryland . on tuesday , she wrote ` i 'm so happy ' on facebook . allegedly left her disabled son to fend for himself while she traveled for a romantic getaway with new boyfriend . her son was found under rain-soaked pile of leaves on friday night and police say he would have died if passers-by had n't spotted him . he was lying on the ground 10 feet from his wheelchair and a bible . police have said that parler has been admitted to hospital for an ` undisclosed condition ' she will face extradition and arrest in pennsylvania on her release .\nwoman who escaped is capital raqqa in syria shares her story . she has seen people killed in front of her for breaking is rules . women will be whipped if they refuse to cover up in public . hot metal skewer put in mouths of those caught smoking . ` is has stripped women of all their freedom , ' she said .\nmohammad javad zarif has spent more time with john kerry than any other foreign minister . he once participated in a takeover of the iranian consulate in san francisco . the iranian foreign minister tweets in english .\nclorox has apologized for a social media misstep . the company sparked outrage by tweeting ` where 's the bleach ' in reference to last week 's introduction of new 'em oji ' cartoons for iphones . those cartoons included faces of people with black and brown skin . the company says it was attempting a humorous reference to other emojis for objects like toilets and bathtubs that people use bleach to clean . its post hit a nerve when news reports and online discussions were focusing on the new collection of racially diverse faces .\nprime minister and tv star karren brady announced new apprenticeships . baroness brady was pictured during event helping the pm with his jacket . pair were announcing 16,000 more training positions for young people .\na definitive family tree of hillary clinton reveals her welsh ancestors . they lived in a poor mining district called ystradyfodwg , now rhondda . family emigrated to pennsylvania where mrs clinton 's grandmother hannah jones was born - one of four children out of 14 born to survive . hannah jones then eloped with hugh rodham - mrs clinton 's grandfather - to marry because his family probably disproved of her poor background .\nmelvin the giraffe was killed by an antelope at norwegian zoo . giraffe gored by antelope horn as he was stuck in a fence . around 30 people , many of them children , witnessed death .\nporto 3-1 bayern munich : click here to read ian ladyman 's match report . two goals from ricardo quaresma and a third from jackson martinez confirmed the win for porto on wednesday night . portuguese newspaper record opted for the pun ` fantasporto ' fellow newspaper abola simply wrote ` superb ! ' to describe the win .\nthe 37-year-old welcomed her first daughter cecilia kathryn into the world on february 9 . maggie and her husband alex mehran are also parents to two sons , three-year-old zander and two-year-old quinnlann clancy . the parents are enjoying a beach vacation with their three children .\njeanette rosenquist spotted the bird just outside copenhagen , denmark . bird collected moss , grass and straw to line nest in damaged street light . blue tit usually takes between one to two weeks to ready a nest for eggs . female usually builds nest by herself with little or no help from the male .\njudge wo n't allow teen leave hospital before her last chemotherapy treatment . attorneys for the teen are deciding whether to appeal . cassandra c. is now in remission and is no longer opposed to the chemotherapy treatments .\nstephanie scott , 26 , was due to marry aaron leeson-woolley this saturday . she vanished on sunday while brimming with excitement about wedding . police have charged man , 24 , with her murder despite not finding her body . family face devastating task of continuing search and planning funeral .\nbhutan measures its success with a gross national happiness index instead of using gdp . the buddhist country is a land of myths and magic , where tigers fly and witches reside in ancient forests . houses are decorated with dragons , animals and phallic symbols to guard against malicious thoughts . buddhist monuments , known as stupas , are erected near rivers to defy the evil spirits that lurk beneath the water . massive dzongs , medieval monastic fortresses , tower over the valleys decorated with prayer flags .\ngareth bale missed a one-on-one chance after just three minutes . raphael varane impressed with his pace and general reading of the game . mario mandzukic left bloodied after clashing with sergio ramos .\npep guardiola has been linked with a move to manchester city . spanish boss has a three-year contract with bayern munich . ceo karl-heinz rummenigge believes guardiola will stay with bayern .\nsupermodel gearing up for her fourth marathon in london this month . almost died having her daughter and now wants to help other mums . christy , 46 , set up every mother counts to help women around the world .\ncouncillor joseph o'riordan found guilty of attempting to murder his wife . court heard attack occurred after he discovered her affair with the postman . amanda o'riordan , 47 , in extra-marital relationship with married nick gunn . postman mr gunn , 41 , had previous affairs with women on his rounds .\ndenver teacher kyle schwartz asked students to share what they wish she knew . their honest answers moved schwartz and sparked a discussion online .\ndoctors at memorial sloan kettering cancer center in new york were trialling a new combination of drugs to treat advanced skin cancer . combined standard drug ipilimumab with new drug nivolumab . woman , 49 , had one dose of the therapy and within weeks her tumour had completely disappeared , leaving a hole in the skin under her left breast .\nchris ramsey , the only black manager in the premier league , is a classic example . ramsey is a fine coach who has been overlooked for countless jobs . he took the qpr position after harry redknapp saw the writing on the wall and got out . ramsey was asked to board the sinking ship and , guess what , it has not been an easy job to refloat it .\nluke shaw has made just 17 appearances for manchester united . shaw joined united from southampton last summer . the 19-year-old 's start at old trafford has been beset by injury problems . united travel to premier league leaders chelsea on saturday evening . luke shaw : united players pranked ashley young after bird poo incident .\nnewcastle boss john carver is relishing the chance to take charge of his hometown club against sunderland in the wear-tyne derby . carver has been part of the coaching staff for previous newcastle managers alan pardew , sir bobby robson and ruud gullit . he was gullit 's assistant when newcastle were beaten 2-1 by sunderland after the dutchman benched alan shearer and duncan ferguson . carver insists that he will not make the same mistakes as his predecessor .\nsinger reveals it took her eight months to get diagnosed properly . doctors told her she was crazy and that her ailment did not exist . when she was finally diagnosed she learned she had lyme disease . has ` no idea ' where she got the tick bite which must have been attached for 36 hours in order to transfer the disease . same condition that has left real housewives star yolanda foster unable to read , write or watch tv .\na graphic on nbc 's today show on wednesday misidentified saturday night live creator lorne michaels as ` lauren ' . the flub by a graphics person , made on the east coast feed of the morning show , was corrected for broadcasts in other time zones and online . today interviewed 70-year-old michaels for a story on new york gathering for influential people listed by time magazine .\nmadonna 's new handbag is emblazoned with the slogan ` dealer ' rihanna has been seen with purses covered in guns and cannabis leaves . other offensive designs include male genitalia , knives and knuckledusters .\ntwo baggage handlers were caught on camera at the airport in riyadh . video shows them hurling luggage without regard for the contents . clip begins with a suitcase being thrown and landing with a heavy thud . some bags appeared to be heavy or wrapped as though they were fragile . authorities said two supervisors and three workers have been sacked .\nkathleen bailey , 70 , was given power of attorney over friend 's finances . her 87-year-old victim was battling breast cancer and had no children . bailey helped herself to at least # 1,500 and took trips to north wales . she was given suspended jail sentence after admitting one charge of theft .\ninstitute for fiscal studies says taxes will be # 12b higher under labour . said the gap ` between the parties ' was ` bigger than any time since 1992 ' . david cameron said assessment showed labour was ` risk to our recovery ' in withering verdict , think tank said parties were keeping voters in the dark .\nmarco negri joined rangers for # 3.5 million from perugia in 1997 . striker suffered a shinbone injury in a reserve match vs aberdeen in 2000 . hospital scans showed properties of his blood had symptoms of aids . further scans in italy proved negri 's blood to be absolutely fine .\ndramatic rescue led to the mainly-burmese nationals being identified . vast majority of them said they were desperate to leave benjina island . some wanted to stay - but only to demand their bosses hand over money . men said they were kidnapped or tricked into becoming fisherman slaves .\nmainline , in swindon , wants drivers from bulgaria , poland and romania . they are offering # 100 to each driver who can recruit from those countries . company said they tried scheme in the uk but few people came forward . crisis will re-ignite claims that britain 's welfare system has created generation unwilling to work .\nap mccoy has his final two rides at sandown in surrey on saturday . no sane jockey would ever try to emulate 20-time champion jockey . mccoy will be hoping to bow out on a winner with box office at saturday . the sandown track is completely sold out as fans bid farewell to a hero .\nsince 1903 , scientists have been claiming brontosaurus does n't exist . they said the famous species should be classified as an apatosaurus . new study calculated the differences between families of diplodocid . brontosaurus had a thinner neck and slightly different bone structure .\nxi jinping 's sayings now available in a new smartphone app . scholars call it a new version of mao 's `` little red book ''\nnew research indicates that a play published in 1728 was written by william shakespeare . scholar lewis theobald had passed the work off as his own . texas researchers used software to analyze and compare the language of the men .\nphilips has unveiled its latest lamp , the hue go , which thanks to its wireless and rechargeable features can be moved wherever you want . the lamp uses a rechargeable li-ion battery and can offer up to three hours of continuous light after a 90-minute charge .\nneil harris ' side look likely to be relegated from the sky bet championship . goals from rudy gestede and jordan rhodes sealed the tie . millwall are now four points from safety with two games to play . blackburn are currently ninth after a strong finish to the season .\nbarcelona 's brazilian forward neymar has not scored since february 15 . however , luis enrique is not concerned by the frontman 's drought . barcelona players trained on tuesday and remain on course for the treble . read : xavi still has vital role to play for barcelona , insists luis enrique . click here for all the latest barcelona news .\narlette ricci denied accusations and said she tried to avoid tax not evade it . bugged call between the heiress and her daughter revealed otherwise . 74-year-old was fined around # 700,000 and will have two properties seized . was also given a total of three years in prison , with two years suspended .\nthe inspirational ms giffords , 44 , flew out of los angeles on thursday with her husband , retired astronaut mark kelly . the couple visiting the space shuttle endeavour at the california science center in la this week . giffords wrote : ` so fun to see the awesome space shuttle endeavour with the awesome guy who flew it , captain mark kelly ! ' mark 's identical twin brother , astronaut scott kelly , blasted off aboard on his yearlong mission to the international space station last week .\nwarning : contains graphic content . margaret and gary mazan had their 14 dogs seized by rscpa inspectors . animals were found with matted fur in filthy cages inside a garden shed . couple from bradford found guilty of animal cruelty and jailed for 26 weeks . were banned from owning animals for life and ca n't appeal for 25 years .\njulian zelizer : elizabeth warren was defiant about wall street , but hillary clinton likely wo n't be . zelizer : the democrats need wall street 's campaign donations to be competitive in 2016 .\nhow does isis govern ? robert downey jr. is n't the only celebrity to walk out of an interview .\nno clear winner in opinion polls after first uk election debate between seven party leaders . robin oakley says david cameron and challenger ed miliband did well , but there was little insight for voters .\nauthors warn president obama must be clear about radical islam threat . al qaeda still a looming threat , they say .\nbritish companies found oil and gas in a remote field north of the islands . could be worth billions of pounds and increase fears of renewed conflict . comes days after minister warned of ` very live threat ' from argentina . argentina says it will prosecute oil companies operating off the falklands .\nfrom rowing to zumba , two nutritionists reveal the exercises you can do to burn off your favourite easter eggs . nutritionist dr sam christie warns many easter eggs contain high levels of sugar , which can cause behavioural problems and acne .\ncheesy slogans could be detrimental to pupils , a researcher claimed . carl hendrick said glossy notices are often ` reductively misinterpreted ' .\nrenee bergeron , 38 , captures children with disabilities at their most confident for her superhero project . the washington-based photographer 's first subject was her son , apollo , who has a feeding tube in his stomach . she takes the photos free of charge to encourage families and to spread awareness .\nmichelle pfeiffer is set to star in a new television comedy about a morning news program . katie couric will serve as an executive producer , drawing on her experience as an anchor on today for 15 years . the series was created by diane english , who was behind the show murphy brown , about a female news anchor . the ladies are currently in talks with hbo , showtime , amc , netflix and amazon to pick up the program .\nsolar plane attempting to be first to circumnavigate world without using fuel is stuck in china . solar impulse 2 attempts to prove the power of renewable energy .\nfootball in turkey has been suspended for one week following the armed attack on fenerbahce team bus on saturday . the bus came under attack as it drove to the airport following the away match against cayukr rizespor which fener won 5-1 . turkish official says two people have been detained by police .\ncordula schacht is representing the case against random house germany . her own father hjalmar schacht was hitler 's minister of economics . dispute over historian peter longerich 's book goebbels released in 2010 . paying money would be ` immoral ' , rainer dresen of random house said .\nmain roads in holborn are closed more than 24 hours after fire broke out . more than 1,000 buildings remain without power as a result of the blaze . local businesses , government offices and tourist attractions are closed . commuters have been warned to avoid the area as witnesses describe long queues of buses .\nprairie dog deaths at picture canyon led to positive tests on fleas . residents warned about dangers to pets , especially cats . disease can wipe out 90 per cent of prairie dogs in a colony .\ntourist used an eyeliner pencil to write her name and the day 's date . italian media said the pencil did not leave any permanent marks . famous renaissance dome was designed by architect filippo brunelleschi . last month two americans were charged for defacing the colosseum .\nharrison poe was announced as best supporting actor at the annual tommy tune awards on tuesday in houston , texas . but the high school student had a little difficulty navigating the stage . tv cameras caught him confidently getting up to accept the accolade before slipping and falling headfirst into the darkness . however , the young bow tie-wearing actor went on to make a swift recovery and bounced back to the podium .\nmarie ratcliffe accepts 77 allegations of misconduct and poor care . she worked as a midwife at the scandal-hit furness general hospital . nmc heard she accepts her conduct ` contributed to the death of ' and/or caused two babies to ` lose a significant chance of survival ' independent inquiry into hospital 's maternity unit found failures led to the avoidable deaths of 11 babies and one mother over nine-year period .\nthe child was held by his mother when he slipped and fell between 10 and 12ft into the pit on saturday around 3pm at the cleveland metroparks zoo . he was rescued by his parents before emergency responders arrived on the scene ; he suffered from minor bruises and bumps . the cheetahs seemed to ignore the boy and his parents while in the pit . zoo plans to press child endangerment charges .\nwatch goes on sale on 24th april around the world . pre-orders begin april 10 at 8:01 a.m. bst through the online store . apple says it expects watch will sell out on its first day .\nrachel simpson , 15 , diagnosed with one-in-a-million genetic condition . has mutation of the gata2 gene , making her vulnerable to infection . can also make blood cells abnormal , leading to leukaemia . the other members of her family will find out their fate in next few weeks .\nlucas leiva is set for run in liverpool first team after groin injury . steven gerrard 's suspension opens up spot in reds ' midfield . lucas helped liverpool to regain their best form after return in november . but he has just returned to action after another lay-off . click here for the latest liverpool news .\nmiller : the former secretary of state has to decide whether she 's going to differ with barack obama 's handling of foreign policy . he says her experience overseas could be an asset as long as she does n't get ensnared by controversy over obama policies .\narsenal host liverpool at the emirates stadium on saturday . this fixture has produced most hat-tricks in premier league history . five trebles have been netted during liverpool against arsenal matches . robbie fowler -lrb- twice -rrb- , thierry henry , peter crouch and andrey arshavin have all scored three or more times in a single fixture .\ntesco 's dress is estimated to be the cheapest bridal gown on the market . the cheaper materials mean the # 80 gown can be handwashed at home . similar low-priced gowns are now also available on the high street . it reflects growing number of couples seeking to cut wedding costs .\n22-year-old cao yu was on patrol when she confronted the man . robber wounded her five times as she awaited reinforcements . colleagues say they found her ` bleeding all over ' when they arrived . the policewoman has been praised on chinese social media for her incredible bravery .\nspain has been the most popular destination for britons for over 25 years . germany boasts more visitors from the uk than even france and italy . 238m passengers passed through british airports in 2014 , 10m up on 2013 .\nmamadou sakho will miss monday night football clash for liverpool . emre can could replace defender after completing suspension . daryl janmaat fit for newcastle united after warm-up scare at sunderland . fabricio coloccini will complete his three-match ban for the toon .\nseason 's first major , the masters , tees off thursday april 9 at augusta . ian poulter forgot to bring his clubs ahead of his practice round . tiger woods ' children will carry his bag during par three tournament . henrik stenson played down his chances after coming down with flu .\nreal madrid face atletico in champions league quarter-final second leg tie . manchester united outcast javier hernandez expected to start for real . carlos tevez has made it known he wants to return to argentina one day .\nkristina patrick from alaska filmed her german shepherd pakak performing a very skillful trick . footage shows the pup taking the ball from her mouth with her paws and holding it up high in the air to admire it . she then carefully lowers it back down to the starting point .\nclint gee travelled six hours to place his mother 's ashes with his father . mr gee forced to dig hole himself , after council ` co-ordination error ' had organised with council to reunite his mother and father in same plot . ` it was shattering ... i got out there and there was no hole dug , ' mr gee said .\nfifteen baltimore police officers were injured monday night in clashes with rioters angry over the death of freddie gray . while most the officers appeared peaceful in their control of the crowds , one officer was pictured lobbing a rock back at rioters .\nnewcastle loanee shan ferguson finally joined up with rangers this week . ferguson has not played since northern ireland beat greece last october . ibrox boss stuart mccall checked ferguson 's wikipedia page on monday . rangers travel to take on bottom-of-the-table livingston on wednesday .\nwest ham 's on-loan barcelona ace has picked his fantasy football xi . cameroon midfielder has picked a whopping nine barcelona players . carlos kameni and rigobert song are the only two non barca players .\ncuracao have advanced to the second qualifying round for 2018 world cup . patrick kluivert 's side won 4-3 on aggregate to set up match against cuba . curacao will face cuba in next round on june 8 and 16 .\nseb larsson banned for sunderland following yellow card vs newcastle . jack rodwell will return for black cats following hamstring injury . joe ledley to be given chance by crystal palace to prove fitness . mile jedinak set to be included for eagles following four-match ban .\ndocuments show club 's wage bill soared by another # 1million last season . that 's despite remaining the subject of a salary cap investigation . saracens chairman nigel wray says rugby 's salary caps rules as ` a farce ' . the mail on sunday can reveal saracens ' mounting debt has topped # 40m .\ncraig dawson set to return to west brom defence after serving ban . but youssouf mulumbu starts three-match suspension . matthew upson and dean hammond available for leicester city . hammond has been sidelined since january but is back in training .\niona costello , 51 , and her daughter emily , 14 , missing since late march . pair from posh suburb of greenport , long island , often went to shows . video shows them with suitcases , but relatives began to worry after daughter began missing school . mother told workers at her horse farm that she 'd be ` back on tuesday ' relative said that mrs costello had been ` under a lot of stress ' during the legal battle over her husband 's estate .\nukip-commissioned poll shows farage in danger of finishing third . party hoped poll would show leader heading for a famous victory . results from the ` rogue poll ' were ` unreliable ' , a ukip spokesman said .\nchief executive george whitesides says new spacecraft is nearly ready . he said it could begin test flights by the end of this year . its predecessor was destroyed in the mojave desert on 31 october 2014 . co-pilot michael alsbury was killed and pilot peter siebold was injured .\nlouise henderson , 49 , moved to yemen 27 years ago to work as a teacher . her family are now caught up in fighting in the country 's capital , sanaa . she is currently hiding below her home with her two young daughters . miriam , 11 , and ayesha , nine , have pleaded for the bombing to stop and for their family to be evacuated to the uk .\nobama 's record is lowest since truman left office in 1953 having hosted six . state department pays cost of each event , which averages around $ 500,000 . obama concerned about expense during worst economic slide since 1930s .\nworrying incident happened at tashkent airport in uzbekistan . front windscreen of bus is shattered by impact with plane 's engine . unknown if there were any injured parties or cost of damage .\nbafetimbi gomis to miss games against leicester , newcastle and stoke . gomis got injured against everton after a run of four goals in seven games . the 29-year-old frenchman aims to return for arsenal on may 11 .\nlawrence tynes contracted the deadly infection after surgery on his foot in 2013 and is now seeking an additional $ 15,000 in damages . lawsuit was announced on monday and claims the team disclosed ongoing incidents of the infection among other individuals . it also claims necessary sterile techniques were not used and that therapy equipment and surfaces were left unclean .\nwarning : graphic content . kristen lindsey of brenham , texas , believed the animal was non-domestic . said the only good feral cat was one ` with an arrow through it 's head ' she then stated : ` vet of the year award ... gladly accepted ' . local rescue center has since claimed the cat called tiger was n't feral . colorado state graduate has been fired from washington animal clinic . prosecutors now considering whether she should face criminal charges .\nmarseille prosecutor says `` so far no videos were used in the crash investigation '' despite media reports . journalists at bild and paris match are `` very confident '' the video clip is real , an editor says . andreas lubitz had informed his lufthansa training school of an episode of severe depression , airline says .\nmanchester city 's chances of retaining the premier league title were dealt a hammer blow by a 2-1 defeat at crystal palace . glenn murray and jason puncheon scored for the eagles before yaya toure grabbed a consolation for city . manuel pellegrini believes that murray 's goal was a ` clear offside ' . city are now fourth in the league table , nine points adrift of leaders chelsea with just seven matches remaining . click here for all the latest manchester city news .\npippa was seen pounding the pavement on a long run in the london heat . the 31-year-old is currently in training ahead of a 54-mile charity bike ride . she kept cool in coordinating orange vest and adidas shorts .\ntom varndell scores three as wasps pull away at the kassam stadium . london welsh put up a brave fight but fall away late in the game . ashley johnson , sailosi tagicakibau and alapati leiua all score tries .\na. alfred taubman , the self-made michigan billionaire died on friday night at his home of a heart attack . taubman 's business success spanned from real estate and art houses to the hot dog-serving a&w restaurant chain . waubman was convicted in 2001 of conspiring with the former chairman of christie 's to fix the commissions the auction giants charged at sotheby 's . taubman was fined $ 7.5 million and spent about a year in a low-security prison in rochester , minnesota , but long insisted he was innocent .\nfive chinese feminists have been held by police for more than a month . they each face charges of ` picking quarrels and provoking trouble ' . women activists linked to stunts which aim to highlight issues such as domestic violence and the poor provision of women 's toilets in china . u.s. vice president joe biden and others have called for their release .\npsg trail barcelona 3-1 in champions league quarter-finals . zinedine zidane is confident french side can win and progress . zlatan ibrahimovic is available after returning from suspension .\nu.s. military does n't have further information to evaluate the iraqi media reports . al-douri 's body arrives in baghdad where dna samples are taken . izzat ibrahim al-douri was the highest-ranking member of iraqi president saddam hussein 's regime to evade capture .\ndidier drogba featured in chelsea 's 2-1 victory over stoke on saturday . the forward replaced diego costa who went off with a hamstring injury . chelsea are seven points clear at the top of the premier league table . read : chelsea must remain focused to keep up title tilt , insists willian . click here for all the latest premier league news .\nthe three eight-week old puppies were found inside the box on april 18 . a woman saw the box , left outside of a tennessee goodwill donation site , moving and approached it finding the dogs . the labradors were taken to mckamey animal center for treatment which said the animals have worms and are malnourished . it also said it is likely dogs have been neglected over an extended period of time due to their poor condition . since beginning treatment , they have been flourishing and will be put up for adoption once treatment is complete .\na reuters investigation uncovered errors in tax returns filed by the clinton foundation and the clinton health access initiative . for 3 years , the clinton foundation reported it had received nothing from foreign and u.s. governments - despite receiving millions previously . it will now refile its tax returns from 2010 , 2011 and 2012 but has not ruled out reviewing tax returns extending back as many as 15 years . the clinton health access initiative is refiling forms from at least 2 years . experts said it was not uncommon for charities to have to re-file but said it was unusual that a global charity would have to re-file for multiple years . republican presidential candidate ted cruz called on the non-profit to return all of the money it received from foreign governments .\nlinsey starred in season 12 of the show , which was filmed in chicago . she was kicked off in the second episode after getting into a fight with contestant jada cacchilli and a cameraman . no details or cause of death have been released . jada tweeted a tribute to her former castmate , saying ` we may not have been friends but we shared an experience most will never have '\nman seen leaning out of sliding door of work van in middle of motorway . he appeared to be laughing as he dangled leg outside of the kj rail van . his boss says man claims he was getting some ` fresh air ' as he was unwell . police and employers are investigating and man could face the sack .\nthe 34-year-old revealed that she keeps ` everything ' she wears and stores the items in ` clear plastic bags ' kim gave birth to north , her first child with husband kanye west , on june 15 , 2013 .\na beach hut on desirable mudeford spit in christchurch , dorset , has gone on the market for # 230,000 . it is one of britain 's most expensive beach huts and is the same price as a family home in many parts of the uk . hut 39 measures just 15ft by 10ft and has no mains water or electricity , but boasts a solar panel for 12v lights . it can sleep up to five people and has spectacular views over christchurch bay to the needles and the isle of wight .\nrebecca exton-russell , 37 , formally weighed 14 stone and was a size 18 . boot camp helped her slim down to 11 stone and a size 12 . the plus-size model once scored campaigns with m&s and dove . since her work dried up , she has launched a jewellery business instead .\nking willem-alexander of the netherlands is celebrating his 48th birthday . took part in a water-borne procession along a canal in dordrecht . was joined by his glamorous wife , queen maxima , and their daughters . the 43-year-old queen was resplendent in a cheerful raspberry get-up . king 's day - or koningsdag - is a national holiday in the netherlands . celebrations include ` king 's parties ' and eating lots of tompouce pastries .\nkitten tilly had to be put down after inspectors found her ` clearly dying ' teenager threw the cat against walls , dangled her into bathwater by her tail and flushed her head in the toilet in disturbing footage . cat was locked in the bathroom 24 hours a day and never fed . 16-year-old claimed he was ` accidentally ' high on ` white rhino ' marijuana . attacker and owner , sarah reeves , given 10-year ban from keeping animals .\ndarwin 's ruben costa impersonated police officer to find his wife and child . he came home from work to find his wife had left with his young son . costa called a taxi company , pretending to be a police officer searching for a woman who had abducted a child . the taxi company were able to provide costa with his wife 's location . costa confronted his wife at the women 's refuge where she had fled . costa was handed a suspended sentence for his ` devious ' actions .\nfloyd mayweather and manny pacquiap showed off their ripped torso 's . the fight is just over two weeks away on may 2 , at the mgm in las vegas . the $ 300million bout is touted as the biggest in the history of boxing .\ncustomers used to white lids on the famous zero calorie , zero sugar type . other variants coke zero and coke life used to have black and green tops . but company has now brought all four variants ` together under one brand ' . company accused of ` messing with our heads ' with red tops for all types .\nshaheen pirouz from denton , texas , filmed her tiny pet canine being propped up and repeatedly falling forwards .\nsir alex ferguson has lived and breathed football since making his senior debut at the age of just 16 . ferguson 's haul of 49 assorted cups and prizes making him easily britain 's most successful ever manager . football is no longer the dominant factor in ferguson 's life . click here for the latest manchester united news .\nislamist militant group al-shabaab claims responsibility for the attack . the explosion happened across the street from a hotel that was attacked two months ago . mogadishu has been the site of frequent attacks by al-shabaab .\nyarmouk is a refugee camp near damascus in war-ravaged syria . pierre krähenbühl of the united nations : individual lives underscore need for humanitarian action .\ninfant 's extremities have been called ` pigs ' trotters ' by local reporters . her dad vowed to find work in binzhou city to pay for surgery for the girl . but he has n't been seen since he left home four months ago . his family are deep in poverty and ca n't afford even basic medical care .\nlloyd dennis has been charged with 28 offences against two children . the 32-year-old has worked at a number of primary schools in hampshire . the reel of charges includes rape and sexual activity with a child .\nthe whale , varvara , swam a round trip from russia to mexico , nearly 14,000 miles . the previous record was set by a humpback whale that migrated more than 10,000 miles .\nespn reporter britt mchenry caught on video berating a towing company employee . cnn 's kelly wallace used the story as a teachable moment for her daughters . wallace : mchenry could learn from other celebrities who responded gracefully in stressful situations .\nluis enrique insists his side will be focusing their attention on valencia . barcelona impressed in midweek as they beat psg 3-1 at parc des princes . the catalan giants are currently two points ahead of real madrid .\nnicola sturgeon will today unveil snp manifesto as a ` bid to lead the uk ' several of her party 's election pledges will overlap with labour policies . others are calculated to drag a minority labour government to the left . these include cancelling trident and halting tory changes to benefits .\ntara and gavin hills , from canada , stopped vaccinating their children six years ago after losing trust in the health care system . all seven hills kids , between ages of 10 months and 10 years , came down with whooping cough last week . tara hills did an about-face in the wake of her family 's health crisis , writing a blog post about how her stance on vaccination has changed .\nitaly drew 1-1 with england at the juventus stadium on tuesday night . it marked a return to turin for italy 's former juventus boss antonio conte . conte received death threats in the build-up to the international friendly . he says it was still good to rekindle his good memories from his time there .\nshiba the dog has been trained to open a window with his nose and paw . visitors have travelled from as far away as britain and taiwan to see him . tourists offer snacks and pose for selfies with the internet sensation . a youtube video featuring his skills has more than two million views . shiba can often be found napping in a display case under the counter .\nzhu diandian becomes web hit after posting pictures of bond with hog . images show her pet snuggled up in bed and going for walks in the park . her husband is said to be ` tolerant ' but her pet dog is raging with jealousy .\nmillions of asian hornets have colonised swathes of french countryside . vicious insects mutilate honeybees and prey on beehives to feed young . six people have died in france after suffering allergic reactions to sting . ministers in britain have drawn up battle plans for any possible invasion .\nlaurent stefanini , 55 , asked to represent france to the catholic church . homosexual diplomat 's appointment met with silence from the vatican . catholic , stefanini was number two at france 's vatican mission from 2001 . in 2013 the pope seemed to speak out against the vatican 's anti-gay stance .\nrobshaw accompanied his 26-year-old girlfriend to ceremony in london . played in harlequin 's victory over gloucester 24 hours earlier .\nluis suarez was liverpool 's player of last season . but who would earn that accolade this year ? jordan henderson has many backers , as does coutinho . several , among them emre can and raheem sterling , have shone in parts . there have been lots of adequate contributions but there has n't been anywhere near enough consistency . if liverpool are going to clamber into the top four and win the fa cup , much will depend on the little brazilian .\nkate parker is the photographer and mother behind `` strong is the new pretty '' the photo series shows her messy , wild daughters as they are , parker said .\nirobot is creating wireless lawnmowers guided by radio waves . gadget and observatories will both use the 6240-6740 mhz band . astronomers say it could prevent them from detecting methanol . irobot says chances of interference occurring are ` infinitesimal '\nchurchill was meeting allied wwii leaders for a reunion party in london . former pm appears to nod off while sat next to us president eisenhower . lord alan brooke wakes up churchill , then 84 , who looks a little sheepish . never-before-seen photographs will go on auction in the us this month .\njessica carey had her grandmother 's portrait tattooed on her forearm . she then drove almost four hours to surprise her grandmother with it . her grandmother patty lawing 's priceless reaction is captured on film .\nneymar scored twice as barcelona eased through at the nou camp . brazilian ace did his best to embarrass fellow countryman david luiz . former chelsea defender endured a horrendous night in barcelona . dani alves did his best to earn a new contract as he impressed throughout .\nfamily pet leo nearly burned down home in peckham , south-east london . staffordshire-boxer cross managed to switch on cooker hunting for food . child 's car seat left on top of one of the hob 's rings caught fire . subsequent blaze damaged a third of the ground floor of the property .\ncharles kingham , 86 , and pauline moore , 68 , had their home pelted with eggs , stones and even cooking fat on a weekly basis . thugs banged on their door and urinated on garden flowers . couple were forced to board up all the windows for protection . ms moore says yobs turned dream seaside home into living hell .\nnick abendanon was man of the match in clermont win over northampton . clermont thrashed premiership 's saints 37-5 at stade marcel-michelin . former bath full back conceded england career over after france move . but abendanon 's not yet given up hope of a call-up to the national team . he hopes to be spoken of in the same way as toulon 's steffon armitage .\nmillwall beat 10-men charlton 2-1 in their championship clash at the den . addicks defender chris solly was sent off for a handball in the area . stephen henderson saved the subsequent penalty from lee gregory . alou diarra scored for visitors against the run of play in the second half . magaye gueye levelled for the lions before jos hooiveld netted late winner .\ndr. sergio canavero says he is two years away from performing the first total human head transplant . the first patient will be a 30-year-old russian man with a rare , genetic muscle wasting disease . one ethicist says canavero should be helping paralyzed patients walk before performing body transplants .\nvirginia trimble ritter 's daughter , marcia , was raped and choked to death by jerome sydney barrett in 1975 . the case was nashville 's most notorious unsolved murder for 33 years . ritter , who did not see her daughter 's body at the time , recently asked to see the photos investigators took at the scene . after seeing the photos , ritter said she shouted , ` if i had a gun i 'd kill him ! '\nformer arsenal and england striker hails youth league winner jay dasilva . the left back was part of team that beat shakhtar 3-2 in monday 's final . ian wright said 16-year-old was better than any premier league left back . he also praised tammy abraham , charly musonda and charlie colkett . read : will chelsea ever bring through english players ?\nkate major lohan has been arrested for a ` drunken attack ' on her husband michael lohan . kate - who was ordered to rehab by michael last year - is said to have had an alcohol relapse before getting physical with the father of lindsay lohan . new 911 call recording reveals michael believed his wife was under the influence of marijuana , two prescriptions drugs , and alcohol . a child can be heard crying in the background of the 911 call recording .\nthe project is hoped to open at the former arts centre , la llotja . friend and producer jaume roures of mediapro is leading the tribute . the museum follows allen 's vicky cristina barcelona , set in the city .\n` right now , i 've had 11 hours of surgery . they 've tried . i ca n't see out of my right eye . and that 's okay , i can live with that , ' he said . the 75-year-old former boxer says he was exercising in his new home in nevada when his exercise band ` slipped ' and spun him around . ' i smashed my face into a cabinet so hard ... ' reid said . the longtime lawmaker , upon announcing his retirement last month , insisted his departure from the senate was not related to the accident . reflecting on his career , reid said he has ` no repentance ' for claiming mitt romney did n't pay his taxes because ` it is an issue that was important '\nbayern munich thrashed porto 6-1 in the champions league on tuesday . bayern trailed 3-1 after their first leg defeat in portugal . manager pep guardiola appeared with a tear in his trousers on the sideline .\nceltic were denied place in scottish cup final by shocking decision . leigh griffiths ' header was blocked by josh meekings ' hand . none of the officials managed to spot the game-changing decision . additional officials behind goals has proved an extraordinary waste of time . but fifa will require a higher profile blunder to change their laws .\ncharles terreni , 18 , was found dead march 18 at a frat house in columbia . terreni was a usc freshman and a member of the pi kappa alpha house . coroner identified cause of death as alcohol poisoning . toxicology tests showed he had a blood alcohol of .375 . neighbors said there was a large party ; a beer keg was still visible outside .\ndidier drogba has picked up a thigh injury and pulled out of a charity game . chelsea are already missing diego costa and loic remy through injury . they travel to face arsenal at the emirates stadium on sunday at 4pm . costa returns to first-team training this week to boost jose mourinho .\nmother-of-two died following a 10-year battle with a brain tumour . she worked at bbc in cardiff where husband claims she was bullied . marie csaszar gave evidence at bbc 's 2013 respect at work review . he asked for emails under the data protection act but was refused .\nscientists in germany observed a jet erupting from comet 67p . the event was captured by the osiris camera on the rosetta spacecraft . in images two minutes apart , the jet appears on the dark side of the comet . it may have formed when melting ice caused an explosion of material .\nfour-time masters champion made the announcement on friday . he said he has worked a lot on his game and is excited to compete . woods last competed on february 5 at the farmers insurance open when he walked off the course because of tightness in his lower back .\nba van nguyen piloted a military helicopter on his own to save his family during the fall of saigon on april 29 , 1975 . nguyen flew the helicopter to the south china sea , but had to evacuate everyone when fuel ran low . he flew towards the uss kirk which was too small to allow the helicopter to land , and so he hoovered over as his family safely jumped out . he then flew back out to sea and jumped from the helicopter seconds before it crashed into the sea . he survived the crash and was reunited with his family onboard . he kept his identity a secret until a 2009 ceremony commemorating the event .\nserena williams progresses to semi-finals after beating sabine lisicki . williams beats german in three sets at miami open - 7-6 , 1-6 , 6-3 . world no 1 presented with cake after 700th career victory . andy murray was similarly given reward after 500th career win .\nengland sit third in uefa 's respect fair play ranking at present . west ham sit first in the premier league rankings with 999 points . hammers are eight points ahead of second-placed burnley as of march 31 .\napril 23 is st george 's day - the national saint 's day of england . england footballers past and present took to social media to celebrate . harry kane posted a picture of his younger self with england face paint . rio ferdinand and gary cahill were among the other players celebrating .\nisis has released yet another bloodthirsty propaganda video . the chilling video states there is ` no safety for any american on the globe ' it features footage of the twin tower attacks and threatens another 9/11 . footage of beheadings , burnings and other atrocities is broadcast .\noccurred in ancient cluster of stars at the edge of the milky way galaxy . planet may have been ripped apart by a white dwarf star . white dwarf is core of a star like the sun that has run out of nuclear fuel .\ndemocrat campaigners jared milrad and nate johnson , from chicago , illinois , had their summer wedding plans featured on clinton 's video . the couple will get married in a chicago park bordering lake michigan then have their reception at a local lgbt community center . both plan to donate financially to clinton 's presidential campaign fund .\naston villa have a chance of fa cup glory after reaching the final . a few months ago the midlands club only had survival to contend with . the aston villa squad can write the next chapter in the club 's history .\nsmall ` hot spot ' responsible for producing the largest concentration of the greenhouse gas methane seen over the united states . area near the four corners intersection of arizona , colorado , new mexico and utah covers 2,500 square miles . hotspot predates widespread fracking in the area .\nthe new video is a part of the elders react series on thefinebros youtube channel . snapchat was most commonly used as a means of sending suggestive selfies and messages initially , however is now used more generally .\n29 elephants currently live at the circus sanctuary , and 13 more will join by 2018 . the expansion comes after ringling bros. said it would stop using elephants in circus . $ 65,000 worth of care annually includes pedicures , stretching and tons -- literally -- of food .\nbarnet will return to league two next season following emphatic victory . two goals from mauro vilhete secured 2-0 win over gateshead at the hive . the bees clinched the conference title ahead of bristol rovers . barnet players and fans celebrated on the pitch following final whistle .\ndr terry dubrow and dr paul nassif are the resident experts on the popular e! reality series . season two of botched premieres tonight and features reality star tiffany ` new york ' pollard , who is looking to have her breast augmentation fixed . the doctors will also take on a patient who had cement injected into her face and a man who wants to look like kim kardashian , among others .\nmanchester city face crystal palace on monday night at selhurst park . city remain nine points behind chelsea in the premier league . manuel pellegrini knows his team can not afford to lose any more ground .\naaron bee , 22 , spent two weeks on the run from lincolnshire police . the father of one posted taunting selfies on facebook over 13 days . officers finally caught up with him at a cafe in lincoln in november . he was has now been jailed for eight months over domestic violence .\nkimberly dianne richardson , 25 , was rushed to hospital in raleigh , north carolina , but died in the early hours of sunday . daniel steele , 25 , has been arrested and charged with murder . richardson was six months pregnant and her child - a girl - was safely delivered at a local hospital .\npremier league champions have increased season ticket prices next term . some disabled manchester city supporters have seen their tickets rise by # 345 to # 975 . supporters group claims the club are trying to force migration as part of a re-seating plan at the etihad .\nelche striker jonathas scored only goal of the game to beat real sociedad . david moyes ' side remain in 12th place in the la liga table . barcelona are top of the league , two points ahead of real madrid .\njohn carver insists he would leave the club if they had not backed him . ` if i was sitting here and i thought they were giving me lip service i would say `` thanks very much , i 'm off - i 'm walking away from this '' , ' carver said . fans are threatening to boycott the next home match against tottenham hotspur in protest at mike ashley 's running of the club . click here for all the latest newcastle united news .\nchristians will decline from 75 % of us population to just two thirds in 2050 . muslims will outnumber christians in the world by 2070 , report predicts . christians are expected to fall below 50 % of the population in uk by 2050 . statistics have been revealed by washington dc 's pew research center .\nreigning world heavyweight champion discusses ukraine crisis . klitschko faces american challenger bryant jennings in new york on april 25 . `` ukraine is looking forward to becoming a democratic country , '' klitschko says . klitschko 's older brother vitali a prominent figure in ukraine democracy movement .\nlisa mcelroy , 50 , who teaches legal writing at drexel university , accidentally sent the explicit message on march 31 . mcelroy said she was ` in terrible shape ' when she first realized what she had done and saw her name make headlines . yet the professor said she found the matter ` pretty trivial ' and questioned the dignity of those who forwarded the ` unintended post ' . mcelroy , who has tenure , was investigated by the university and has been cleared to continue teaching .\nit looked at acetaminophen -lrb- paracetamol -rrb- , the main ingredient in tylenol . eighty one people were asked to look at happy , sad and neutral images . those who took the drug had less extreme emotions towards the photos . people who took pain reliever did n't know they were reacting differently .\njeff williams will join up with bath at the end of the current season . the sevens star signed a full-time deal with the aviva premiership club . williams scored 36 tries on the world circuit and helped win in toyko .\npeter gale dismissed from nonsuch high school for girls a fortnight ago . the reason was given as ` unprofessional and inappropriate conduct ' . mail on sunday investigation discovers it was due to emails sent to pupil . but mr gale denies he behaved inappropriately towards any student .\nsarah fox , 27 , was found dead at her home in bootle on thursday night . her mother bernadette , 57 , was later found at sheltered accommodation . police are appealing for help in tracing bernadette 's son peter fox , 26 . cctv images released of him arriving at euston station on wednesday .\ngaston pinsard , 96 , admitted sexually assault two girls over 50 years ago . his victims were just five-years-old when the abuse first started . jailed for 18 months after he admitted nine charges of indecent assault . judge describes the case as ` distressing and unpleasant ' as he jails oap .\nleanne mitchell has been dropped by her label and sings at a holiday camp . andrea begley and jermain jackman are yet to become household names . will 2015 winner stevie become a chart success or another voice flop ? .\nnew york teen daria rose lost everything in hurricane sandy and was recently accepted to seven ivy league schools . rose and her family lived in multiple hotels and at her grandmother 's house for a year and a half after the 2012 superstorm . in a college application essay , rose spoke of her hurricane sandy experience .\nhe retreated to his house after shooting daughter 's partner and a policeman . she was pictured lying next to the wounded 50-year-old outside the house . an armed police unit raided the home this morning after negotiations failed . a police officer was seriously injured in the firefight that ensued in zaragoza .\nvideos of the week include drone footage of oklahoma city . nasa has a car that drives sideways -- and a spacecraft headed for pluto .\nnew survey analysed australian credit card habits . 15 per cent admit to having a credit card their partner does n't know about . one in ten have fights with partners over credit card purchases . gen y are the most stealthy credit card culprits over other age groups . 17 per cent of women hide their spending , versus 14 per cent of men .\nnico rosberg described ferrari 's pace as ` dangerous ' and ` worrying ' the mercedes driver is preparing for sunday 's bahrain grand prix . rosberg was faster than team-mate lewis hamilton during friday practice .\nalissa sizemore , from vernal , utah , was only seven-years-old when her right leg had to be amputated below the knee after she was hit by a truck . the dancer removed her prosthetic leg midway though her emotional performance . alissa recently starred in a music video for the utah-based musical trio gentri .\nleicester , burnley and qpr hoping to avoid going straight back down . hull city and sunderland also in danger of going down . aston villa and west brom are closer to safety , but could get sucked in .\nflight 448 had just taken off monday when the pilot heard banging from beneath . la-bound plane was forced to return to seattle for emergency landing . worker dialed 911 asking dispatcher to call someone and stop the plane . he later emerged calm but was taken to hospital as a precaution . cargo hold was pressurized and temperature controlled , so the man was not in danger .\nnew president says he does n't know if 200 missing girls can be rescued . march through nigerian capital marks one year since the kidnapping . more than 200 schoolgirls kidnapped last april by islamic extremists . crisis sparked worldwide criticism and #bringbackourgirls campaign .\namanda burleigh was convinced clamping cord immediately was wrong . contacted other medics and they amassed evidence it could be harmful . national institute for health and care excellence guidelines have changed . cord should n't be routinely clamped ` earlier than one minute from the birth '\ndurst arrested in march for california murder of friend susan berman . authorities found map of florida and cuba along with cash and drugs . lawyers say that money not needed for evidence in charges against client . durst faces state and federal gun charges before extradition for murder .\ndefence minister kevin andrew was unable to name leader of islamic state . he cited ` operational reasons ' as why he did n't say abu bakr al-baghdadi . earlier , the federal government announced 330 troops would go to iraq . but mr andrew said they would not be engaging in combat on front lines .\nceltic beat st mirren 2-0 to move eight points clear at the top of the league . ronny deila praised his players for their patience in waiting for the win . although pleased , he said the pitches in scotland are ` terrible ' deila believes it would be better to play on artificial pitches .\nmark doggett has trained his two dogs to sniff out the destructive fungus . his border collie and english springer spaniel had six months training . when they find dry rot they stop , stare at it and point with their nose .\n92 percent of us teens go online daily - and 24 % are online constantly . instagram and snapchat popular with children from wealthier families . facebook remains the dominant social media network .\netan patz disappeared in 1979 ; his face appeared on milk cartons all across the united states . his case marked a time of heightened awareness of crimes against children . pedro hernandez confessed three years ago to the killing .\ncomputer model simulated how driverless cabs would affect lisbon traffic . even with only one passenger per ride , car number dropped by 77 per cent . swapping personal cars with self-driving cabs would free valuable space . google and uber are already working on technology for self-driving taxis .\npolice say baby had breathing problems and died yesterday afternoon . her father , 25 , and her mother , 22 , arrested in perry barr , birmingham .\nsiyanda ngwenya accused of attacking the woman while she was asleep . he ` boasted to housemates they had sex after night of drunken partying ' woman reportedly shocked by claims and said she did not consent to sex . fans of the show have questioned the woman 's claims that she was raped .\nmartynas kupstys was waiting for a prison van to take him to court . kupstys told prison officers that they were making a mistake releasing him . he was on trial in august 2014 at lincoln crown court for murder . kupstys and his co-accused andrus giedraitis were both jailed for life .\nthe limited copies of selfish were sold on gilt.com for $ 60 each . the special versions feature an exclusive cover in addition to being hand-signed and numbered by the 34-year-old reality star .\nowners watch hours of tv with pets and leave it on to keep them company . survey of 1,000 pet owners see for the love of dogs as favourite show . keeping up with the kardashians is only liked by 2 % of pets .\nthe 58-year-old actress revealed her diagnosis in a statement on tuesday . she explained that doctors initially failed to find the cancer but that it was discovered after she sought out a second opinion . she underwent surgery last week with hanks by her side and she is expected to make a full recovery . wilson took medical from the broadway play ` fish in the dark ' earlier this month but is expected back on stage in may .\nchantelle doherty , 21 , jailed for preying on elderly people in their homes . accomplice martin lawrence tricked elderly man and pair returned to his home days later and stole bottles of whisky , a phone and a credit card . doherty jailed for two years after she pleaded guilty to burglary and fraud . she previously led a gypsy girl gang who carried out campaign of terror . lawrence jailed for 5 years for burglary , fraud , robbery and attempted theft .\nmitsubishi lancer crashed through family 's fence in sydney 's north-west . the 23-year-old driver was hit by taxi and sent him spiralling out of control . driver and two passengers managed to escape when car crashed into pool . blue lancer sunk to the bottom and will need to be retrieved with a crane .\nteen with deadly brain tumour was told by doctors they would not operate . jackson byrnes instead found a neurosurgeon who would do the operation . he must find $ 80,000 by tuesday night to pay the surgeon up front . jackson byrnes and his family have used crowd funding to raise money . $ 47,000 has been donated but there are only 2 more days left in campaign .\nthe newly discovered species looks a lot like kermit . you can see its internal organs through the translucent skin on its belly .\nwarning comes from the london eye hospital in harley street . comes after rise in patients previously given poor information or care . said laser eye surgeons are presently only required to be registered as doctors - and no specialist qualifications are legally required .\nthe winner comes from mittagong in southern new south wales . he and his wife had been ` struggling ` with ` bad times ' before the win . two entries won the first division share of the $ 40 million jackpot draw .\ngraphic images appeared on defunct young entrepreneurs awards sites . pornographic site took over address after the page was shut down in 2011 . hsbc has since apologised for error and denied association with the page .\nactors kristin chenoweth and alan cumming are set to host the 2015 tony awards ceremony . best play nominees : ` the curious incident of the dog in the night-time , '' `` disgraced , '' `` hand to god '' and `` wolf hall parts one & two '' the awards will be presented on june 7 in a ceremony airing live at 8 p.m. on cbs .\nlucy southern , 23 , worked behind the bar at the britannia hotel in leeds . claimed she was quizzed about her sex life and groped by alex nkoroi . said she did n't complain as she worried her hours would be cut by him . has now been awarded a # 20,000 payout by an employment tribunal .\nbritish scientists say they have got to the ` root ' of prostate cancer . have exposed an achilles ' heel that could lead to better survival chances . could mean that men get individualised treatments within a few years .\njeanetta riley , 35 , a mother-of-three daughters was shot and killed by two police officers on july 8 , 2014 in sandpoint , idaho . she was addicted to meth and alcohol and was taken to bronner general hospital by her husband , shane , after making threats to kill herself . while outside of the hospital , she pulled the knife from under her car seat with a three-and-a-half inch blade . in the video she is repeatedly told to put down the knife but responds ` f *** you no ' and ` bring it on ' before she walks towards officers and is shot . national suicide prevention lifeline , 1 -lrb-800-rrb- 273-8255 , www.suicidepreventionlifeline.org .\naccused of leaking a document revealing party 's ideological battle plan to counter advocates of constitutional democracy . amnesty : her sentencing is in line with the very stern approach president xi jinping 's team has taken on dissent . gao was arrested in april last year , ahead of the sensitive 25th anniversary of the tiananmen square crackdown .\nsecurity guard cengiz guven is protecting australian travellers at gallipoli . the 30-year-old from istanbul is the supervisor of site security at lone pine . his team will handle bag and entry checks for 8000 australians . this will be conducted at the lone pine service on anzac day . about 4000 police and at least 1000 turkish soldiers will be on duty . mr guven has previously protected russell crowe , naomi campbell and aerosmith rocker steve tyler .\nphoto of robert mugabe appears to show him with new hairdo and earrings . longer hairstyle and earrings actually belong to woman stood behind him . amusing image comes after memes circulated showing him fall down steps . zimbabwean president apparently preparing daughter bona to replace him .\nholder took a victory lap in his farewell speech , claiming credit for overseeing a ` golden age ' of federal law enforcement . no mention of being held in criminal contempt of congress for failing to hand over subpoenaed documents related to the operation fast and furious scandal . standing-room-only crowd rushed to embrace him after his final address . loretta lynch , a brooklyn-n.y. federal prosecutor , is holder 's replacement .\nbbc makes online game about syrian refugees trying to escape to europe . ` sickening ' game often ends with migrants drowning in the mediterranean . other outcomes see women refugees sold to militia or abandoned in libya . bbc slammed for turning the suffering of millions into a ` children 's game '\nukip leader says people of catford , south east london , ` all wanted selfies ' . mr farage said racist claims stop supporters from backing him publicly . says they include internationally acclaimed rock stars and billionaires . he adds the idea that ukip is racist is based on ` no evidence whatsoever ' .\n56 women with cystic fibrosis have been photographed so far for ian pettigrew 's upcoming photography book salty girls . the 46-year-old from ontario , canada , said the project is ` dedicated to showing how beautiful those fighting cf truly are ' . cystic fibrosis is a life-threatening genetic condition that damages the lungs and digestive system .\nanother east coast low predicted to hit new south wales from thursday . the ses says it is concerned about the impact this will have on communities hard hit by last week 's storms - particularly in the hunter . residents urged to prepare their homes to prevent more damage .\nthe hot air balloon crashed into the tower during a training session . video footage shows balloon breaking apart as basket plummets . people on board received cuts and bruises but all survived . the terrifying incident took place in russia 's dmitrov district .\narsenal have shown an interest in liverpool forward raheem sterling . however sterling 's recent behaviour has troubled arsenal 's hierarchy . sterling has been caught smoking shisha and inhaling nitrous oxide . man city , man united and chelsea are monitoring sterling 's situation . read : real madrid are keen on signing sterling , says zinedine zidane . read : sterling pictured again with shisha pipe ... this time with jordan ibe .\nwood green animal charity is lending householders cats from their shelter . they say the presence of cats and their lingering scent scare rodents away . home owners can foster a cat using cleaning and diy service app handy .\nthe mu du bong was detained after it ran aground off mexico 's coast in july . north korea says there 's no reason to hold the ship and accuses mexico of human rights violations . mexico says it followed proper protocol because the ship 's owner skirted u.n. sanctions .\nozil will not be sanctioned for being spotted in berlin nightclub . it came hours after missing match at newcastle through illness . german star explained to wenger that he was attending friend 's birthday . arsenal play liverpool at the emirates on saturday lunchtime . danny welbeck could return after knee injury suffered on england duty . gunners trail premier league leaders chelsea by seven points .\nlewis hamilton attended nelson mandela 's 90th birthday seven years ago . 30-year-old wanted to say hello to hollywood actor will smith . f1 world champion is a big fan of former show the fresh prince of bel-air .\nerik compton has had two heart transplants , the last in 2008 . compton , now on his third heart , is ready to make his augusta debut . the 35-year-old is also a campaigner for charity donate life . his first masters appearance coincides with donate life month .\nmanchester city midfielder james milner is out of contract in the summer . milner will not be rushed into making final decision over his future . brendan rodgers has lined up milner to fill void left by steven gerrard . arsenal and everton are also keen on signing milner in summer .\nthe rubber bowl in akron , ohio , built in 1939 and served as home for the university of akron 's football team . the zips played at the field for more than 65 years before finishing their run there with a game in november of 2008 . the stadium , which can hold more than 35,000 people , was sold to team1 properties for $ 38,000 in 2013 . group wanted to refurbish the stadium into a home for a united states football league team but plan fell apart .\njames ward , 31 , attacked at his home by two intruders wielding an axe . horrific attack severed one finger and left him needing 38 staples . mr ward says he is now too scared to return home and is in hiding . man , 23 , charged with aggravated burglary and grievous bodily harm . warning : graphic content .\nphilippe coutinho scored in the 70th minute for liverpool at ewood park . the brazilian found the bottom corner of simon eastwood 's goal in fa cup quarter-final replay . the first tie between the two sides at anfield last month ended in a goalless draw . liverpool to face aston villa in semi-final at wembley on sunday , april 19 .\nshona banda , 37 , has lost custody of her 11-year-old son at least temporarily . she could also face charges following comments the boy made during an anti-drug education program at school in garden city , kansas , on march 24 . ' i will , i will get him and i am not going to stop until i do , ' she said after kansas authorities placed the boy into protective custody .\nneil tuckett 's newest model on his forecourt is 90 years old - but he is still selling one model t every week . his cars are popular with the public as well as the tv and film industry , including the makers of downton abbey . customers love the model t because they do n't require need road tax or an mot and are cheap to maintain . he said : ` they 're like a giant meccano set really , and so beautifully simple and reliable they just wo n't let you down '\nmanchester united have won six games in a row ahead of chelsea clash . but louis van gaal will travel to stamford bridge without several key men . phil jones , marcos rojo , michael carrick and daley blind are all sidelined . luke shaw should start at left back on return to manchester united side . wayne rooney may have to revert back to holding midfield role . louis van gaal describes injuries as ` the worst possible scenario ' .\nmatt phillips gave qpr a seventh-minute lead in the crunch clash at villa park . but that lead only lasted three minutes , with christian benteke equalising for the hosts . benteke then added a second after 33 minutes to nudge villa ahead in the relegation scrap . clint hill was the unlikely man to level the scores after the break for chris ramsey 's side . charlie austin looked to have scored a late winner in an entertaining game on tuesday night . but benteke completed his hat-trick to earn a share of the spoils on 83 minutes .\nphotos are were taken at one of australia 's popular beaches jervis bay , which is in the south coast of nsw . the fluorescent glow is caused by millions of plankton omitting light , says photographer andy hutchinson . a similar display was shown in sydney 's manly beach back in august 2014 . iain suthers , of university of new south wales , says the algae blossoms in the spring and the autumn .\nnatwest twenty20 blast launched at edgbaston on thursday . andrew flintoff was present with a player from each county . former england captain backed under-fire test captain alastair cook .\ncesc fabregas has not been at his best since turn of the year . oscar was withdrawn at half-time in win over stoke city on saturday . nemanja matic ` not in the best condition ' according to jose mourinho . but chelsea manager determined to stick with his stars in title race .\nillinois rep. luis gutierrez is spearheading the family defender toolkit . the pamphlet includes a card that lists reasons why a person should not be deported under expanded daca and dapa policies . those policies , however , are currently on hold by a court order . critics claim that the card encourages a false sense of security for undocumented immigrants .\nbbc commentator peter alliss hits out at new equality rules . alliss claims ladies golf union has lost 150,000 members from changes . veteran broadcaster also hits out at bbc for failing to keep the open .\njanet and john brennan bought a crumbling barholm castle in dumfries and galloway for just # 65,000 in 1997 . the couple spent eight years chasing planning permission and spending thousands on renovating the castle . it has now gone on the market for # 700,000 and has four bedrooms as well as sea views over wigtown bay .\narsenal are currently on an eight-match winning streak in the league . arsene wenger admits even he could not have predicted the run . wenger says results in the premier league are very hard to predict . arsenal have won 16 of their last 18 games in all competitions . read : arsenal have doubts over signing liverpool star raheem sterling .\nbrazilian online store claims to be selling next season 's chelsea kit . it has published pictures of the new home shirt with ` bale 9 ' on the back . the images do n't have the adidas emblem on , who make chelsea 's kit .\nthe u.s. attorney 's office says mystic pizza 's 48-year-old owner john zelepos faces up to 15 years in prison . he has pleaded guilty to tax evasion and financial structuring offenses . prosecutors between 2006 and 2010 , zelepos diverted just over $ 567,000 from mystic pizza 's gross receipts . he diverted the money into his personal bank accounts and those of family members , they said . prosecutors said zelepos also made bank deposits under $ 10,000 to skip currency transaction reports filed by banks . mystic pizza became a tourist attraction after julia roberts starred in a 1988 movie about the lives of three waitresses working there .\nhomeowner built cabin near anchorage valley after forest fire . when the trees started growing again , they did n't want to lose the view . so they built another cabin on top , and carried on until it was 12 high . it has been affectionately dubbed the ` dr seuss tower ' and attracts fans .\nmanchester city lost 4-2 to rivals united at old trafford on sunday . city manager manuel pellegrini accepted the blame for the defeat . club sources say that pellegrini is unlikely to be axed before end of season . patrick vieira is believed to be willing to step in as interim manager .\nraheem sterling has turned down a liverpool deal worth # 100,000-a-week . 20-year-old gave an interview to the bbc on wednesday over the issue . jamie carragher : four reasons why sterling has got it wrong over deal .\nraffle raised # 1,388,863 for dorset-based charity julia 's house . winner to join ironman actor for marvel 's avengers : age of ultron premiere . charity will use cash to build a new hospice in wiltshire .\npremier league duo radamel falcao and sergio aguero star in puma video . south american strikers feature in advert ahead of manchester derby . manchester city travel to old trafford looking to salvage their poor season . manchester united are looking for champions league spot after slow start .\nliverpool beat newcastle united 2-0 at anfield on monday night . the win moved them to within four points of fourth-place manchester city . jordan henderson has played a europe-wide record 47 games this season . but he hopes liverpool have staying power to put pressure on city .\nthree tons of ivory discovered in second-biggest bust in thailand 's history . it had travelled via sri lanka , malaysia and singapore on a ship from kenya . last week , thailand seized four tons of tusks smuggled from congo .\njenson button penalised for his role in the crash with pastor maldonado . the pair collided as they diced for 13th in final stages of chinese gp . button slapped with five-second penalty and given two penalty points . incident capped another disappointing weekend for hapless mclaren .\ninvestigators have released a handful of photographs to help inquiries . they show fans rushing to tend to the dying as they lay on football pitch . police say the people photographed could address unanswered questions . a home office probe into 1989 disaster which claimed 96 lives is ongoing . anyone with information is urged to call 08000 283 284 or visit www.operationresolve.co.uk . anyone who can identify any of the people in the images should call operation resolve on 08000 283 284 or via the website www.operationresolve.co.uk .\nfrom today , emoji will now work within hashtags on instagram . users add them to posts , search on explore tab and tap them in captions . hashtags work with single and multiple emoji , as well as with text . app has also added three new filters called lark , reyes and juno .\nchristi shepherd , 7 , and brother bobby , 6 , found dead by a chambermaid . they were on holiday on greek island with their father and his girlfriend . neil shepherd and ruth beatson were almost killed by the toxic fumes . inquest into childrens ' deaths is being held today in wakefield .\ndoug hughes , 61 , said the point was to present solutions to corruption . hughes mentioned the idea a couple of years ago , his friend says . hughes had a son who committed suicide , report says .\njuventus are interested in liverpool forward raheem sterling . the italian champions are also taking calls for star man paul pogba . juventus want at least # 55million for the former man united midfielder . read : liverpool launch bid to rival man utd for psv 's memphis depay . read : liverpool set for summer overhaul with ten kop stars on way out .\nformer first daughter is now vice chair of the bill , hillary and chelsea clinton foundation . she was responding to claims that her organization took millions from foreign governments that had pending policy concerns under her mother 's control as secretary of state . republican party says allegations in new book ` raise serious questions about hillary clinton 's judgment and her handling of conflicts of interest ' ` we 'll be even more transparent , ' chelsea pledged , saying that ` we wo n't take new government funding , but that the work will continue as it is '\na mansion in the rainforest of far north queensland resembling a spaceship is on the market for $ 15 million . the property called alkira , sits on 73 acres of daintree rainforest and fringes over 600 metres of beachfront . designed by architect charles wright , it won australian institute of architects house of the year for the state in 2014 . it boasts six bedrooms , six bathrooms , five balconies , a 2400 bottle cellar and a helipad 100 metres from the house .\njames tingley , 70 , was sentenced 25 to 50 years in prison for molesting at least secen young girls . ` mr. tingley , basically you are a monster who has destroyed the innocence of numerous children , ' said judge thomas wilson . mr. tingley 's ` accomplice ' randy stevens was also convicted of sexual misconduct for ` allowing tingley to carry out a number of sexual assaults ' stevens , a father of 14 , will be sentenced on april 16 .\nstrike is set to begin at 5am tomorrow and continue for two days . up to half of all flights to and from france will be cancelled this week . ba and easyjet have warned passengers to expect severe delays .\naustralian police have arrested two people after the discovery of 55 greyhound carcasses in bushland . they believe the dogs were dumped by people involved in the lucrative greyhound racing industry . the industry has been under fire since a television investigation revealed live baiting and other abuses .\nbrendan rodgers admitted the recent defeats were down to his players . the liverpool boss denied that opposition managers have sussed him out . liverpool appear to have slipped out of champions league contention . read : liverpool could sign pedro if sterling leaves anfield this summer . click here for all the latest liverpool news .\nfloyd mayweather rang his car dealer to order a bugatti at 3am . the boxer told obi okele to have the car in his driveway just 12 hours later . the car was # 1.5 million valued motor was delivered in just 11 hours . mayweather is training hard for his mega fight with manny pacquiao .\nscientists in the netherlands were using the lofar radio telescope . they found it could measure changes in lightning caused by cosmic rays . a storm can have hundreds of millions of volts over multiple kilometres . method could provide a novel way to understand thunderclouds .\nchef , who last appeared on bbc in 2012 , will host simply nigella on bbc 2 . show will include food that makes us feel ` more alive and less stressed ' nigella co-hosted u.s show taste but was stopped from entering country after admitting past cocaine use .\nitalian photographer giovanna griffo , 42 , shares her talents with images of the northern lights and other locations . the teacher of photography and post-production teaches courses all over italy and recently visited iceland . she reveals some tips on the best way to capture the northern lights and night skies in all their glory .\na woman has half eaten a large cockroach after biting into her big mac . annah sophia stevenson 's three year old son asked for a takeaway meal . she was three bites into her meal when she noticed a strange texture . the cosmetic artist then pulled a half eaten cockroach out of her mouth . mcdonald 's will pick up the evidence in order to aid their investigation .\nlouis van gaal has backed ryan giggs to be next manchester united boss . giggs has been the dutchman 's assistant since he arrived at old trafford . former welsh winger also spent period as caretaker manager last season .\nthree of the convicted bomber 's family members said they believe dzhokhar tsarnaev was the victim of a conspiracy . an uncle said ` american special services ' orchestrated the 2013 terrorist attack which left three dead and hundreds more wounded . tsarnaev was found guilty by a boston jury on april 8 of all 30 counts - 17 of them carrying the death penalty . the death penalty phase of his trial begins on april 21 .\nsurvey by student news website the tab looked into university sex habits . it found that scientists and dentists were most likely to be virgins . sociologists and artists were least likely to still have their virginity .\nresearchers behind the gallup-healthways well-being index say the number of uninsured americans is now at a record low . when tracking began in 2008 roughly 14 percent of citizens were uninsured , peaking at 18 percent in the third quarter of 2013 . but marking a shift in the trend , for the first three months of this year the rate dropped to 11.9 percent . the survey results were based on phone interviews conducted from january 2 to march 31 with a sample of 43,575 adults ages 18 and older .\nalice kovich-suehn , 53 , charged with elderly neglect . elderly man in kovich-suehn 's care was brought to florida hospital weighing only 89lbs . the 96-year-old victim said kovich-suehn , his legal caretaker who has power-of-attorney , has been starving him . when offered food , police said the skin-and-bones senior ` ate like a starving dog ' .\nandras janos vass , 25 , found guilty of human trafficking and racketeering . lured at least two young men to america via planet romeo dating site . thought they would be offered legal escort work , earning $ 5,000 a month . victims said they had travel documents taken and were forced into sex . vass 's sex ring , which he allegedly ran with two other men , started in nyc . moved to miami in late 2012 , where vass has been standing trial . he faces up to 155 years in prison for his crime - with minimum of 21 years .\nbritish reverend charles martin king parsons was one of a handful of chaplains to enter bergen-belsen camp . captured these images , but never told family about them until they were discovered by grandson tom marshall . mr marshall said he is proud of his grandfather for making sure future generation can never forget what happened . warning : graphic content .\na 13-year-old girl has gone missing from her sydney home . melissa borg , from baulkham hills , has n't been seen since thursday . she left the house at 7:30 to go to seven hills school but never made it . when her father got home from work he alerted police . a picture of melissa in her blue school uniform has been released .\nengland rugby captain chris robshaw photographed on holiday in barbados with girlfriend camilla kerslake . robshaw admits he did not welcome or enjoy the experience . he has spoken with former england captains about media scrutiny .\nwigan winger dom manfredi scored a hat-trick of tries on thursday night . warriors announced re-signing of sam tomkins at half-time during derby . ben flower returned from six-month ban for punching lance hohaia .\npete evans has shared two incredible stories on social media . a woman called ` hollie ' has claimed the paleo diet alleviated her ms symptoms . another woman , ` marg ' , who also suffers from ms , has claimed to have seen an improvement to her condition . health experts say there is no scientific evidence to back up the claims that the paleo diet helps ms suffers . evans has shared the inspiring testimonials to 800,000-plus facebook followers .\nmassey shaw was requisitioned from the london fire brigade and helped rescue 600 troops from dunkirk in 1940 . the vessel went on to save st paul 's cathedral during the blitz before being commissioned in 1971 . but the fire boat has been renovated and restored to its former glory by a group of volunteers thanks to lottery grant . they are now seeking another # 10,000 so they can transport the massey shaw back to dunkirk 70 years later .\nsome of baltimore 's unrest may have been inspired by the `` purge '' movies . movies are about a dystopian america where all crime is temporarily legal .\nofficer aaron stringer , of bakersfield , california , accused by trainee cop . said to have played around with corpse of ramiro james villegas , 22 . villegas had been shot dead by police earlier that day after a car chase . trainee officer lindy degeare said stringer took her into a morgue . allegedly said he ` loves playing with dead bodies ' and asked her not to tell . stringer , who was put on leave , was ultimately not charged by prosecutors . however , family of villegas said they are close to filing a suit of their own .\ndouglas mess ' son reported him missing from their attica , new york farm on monday and his body was found following a seven-hour search . his wife , charlene mess , has been charged with second-degree murder and remains in the local jail . authorities have not released a motive or how mess ` killed her husband '\ntroy slezak from california filmed his seven-month-old daughter stella playing with the giant pooch on the living room floor at home . footage shows the duo rolling around together and stopping for nose rubs . slezak says the canine is usually ` very hyper ' but as soon as she sees stella she is ` calm ' and ` careful ' .\ntiger woods gave former nba star yao ming a few tips on his swing . the 7ft 6in chinese athlete retired from houston rockets in 2011 . 14-time major winner woods will return to competition at tpc sawgrass .\nreal madrid thrashed granada 9-1 in la liga at the weekend . cristiano ronaldo scored five to take his league tally to 36 for the season . real travel to rayo vallecano in a madrid derby on wednesday night . juventus won 3-0 at fiorentina to reach the coppa italia final on tuesday .\njoe hart conceded four goals in man city 's 4-2 defeat at old trafford . the man city stopper appears to have given up on trying to catch arsenal . hart said after sunday 's defeat that ` it 's essential to try and finish third ' . read : gloves on april 12 ?! man city players feel the derby day cold . read : ashley young laughs at city as united silence ` noisy neighbours ' .\ngray 's family asked there be no protests ; they condemned violence . community leaders and brave residents got in between rioters and police .\nfelix the cat disappeared after he escaped his plastic crate at jfk airport . owner jennifer stewart said the crate was badly damaged in transit . she is calling for better policies and procedures for the transport of pets . etihad said it is working with ground handlers and ` specialists ' to find felix .\nlihi yona filmed the black lab at a public play area in brooklyn , new york , over the weekend . after almost a minute the dog shows no sign of slowing down and he continues to bounce around .\napple watch sport edition costs $ 349 -lrb- # 299 -rrb- and has an ion-x glass screen . ` durable ' screen shattered when the watch 's face hit the ground first . screen damage is not covered for free repairs in the apple watch warranty . but another test has shown the device lives up to apple 's waterproof claims after it survived 15 minutes in a swimming pool .\n`` we 're all equal , and we all deserve the same fair trial , '' says one juror . the months-long murder trial of aaron hernandez brought jurors together . foreperson : `` it 's been an incredibly emotional toll on all of us ''\nqueens park rangers drew 3-3 with burnley in the championship last term . qpr fans harry childs , jack hutchins , dean foreman and bradley pack have all been jailed for violent scenes with burnley supporters afterwards . the quartet were involved in violence outside the plough and harrow pub . they then moved onto kings street in west london for further barbarity .\nofficer michael rapiejko was sued in new york over claims he used excessive force during an arrest . the city settled the lawsuit while rapiejko and others admitted no guilt . rapiejko left the nypd voluntarily in 2006 , source tells cnn .\nrilie , four , heard the song at preschool and was performing it at dinner . her eyes filled with tears before she sobbed with her arm over her face . mom jessica carey posted the video on facebook and youtube .\nkyle knox , 23 , disappeared as he tried to climb the 4409-ft high ben nevis . he was last seen at start of route on monday and did not return to his hotel . londoner is believed to be alone and may not be an experienced climber . large-scale searches underway in -7 c blizzards and winds of up to 70mph .\ngreater manchester police chadderton warn of wasting valuable time . the 44-year-old man had recently arrived back to the uk from algeria . wasting police time could result in six-month imprisonment and/or a fine .\nneil robertson has committed more hours to practice than ever before . australian stormed into second round of betfred world championship . robertson hopes new regime will lift him among the game 's all-time greats . he hopes to become a multiple winner of the sport 's major crowns .\nlifelong blackpool fan frank knight forced to pay # 20,000 in damages . the pensioner made allegations about the oyston family . club is owned by owen oyston , while son karl is blackpool chairman . knight ordered to make a public apology following facebook comments . the football family has rallied round the blackpool pensioner .\nmanchester united are currently third in the premier league standings . united are 11 points behind league leaders chelsea with four games left . united finished seventh last season - their lowest in the premier league era .\nlord tebbit said figures such as churchill had careers before politics . he claimed mr cameron was a pr advisor as well as a special advisor . lord tebbit was an airline pilot before he embarked on his political career . he said : ' i just can not read mr cameron 's mind . it 's a foreign country to me '\natletico madrid can only manage 2-2 la liga draw against malaga . fernando torres puts past his own goalkeeper before half-time . antoine griezmann scores twice to spare atleti 's blushes .\nrio ferdinand missed 3-3 thriller with aston villa through injury . he has featured in just five qpr matches since the start of october . harry redknapp initially wanted him to be at centre of a back three . but the plan backfired as rangers made a poor start in premier league . ferdinand has found it difficult to regain his place in farewell year .\nnine-year-old william kulk died in hospital on sunday night . his eight-year-old sister piper died on sunday morning . they were both involved in a horrific car crash on the nsw central coast . were travelling with elder brother , mother and grandmother . elder brother daniel , 12 , is in a stable condition in westmead hospital .\nexclusive : richard harpin has given the tories # 375,000 since 2008 . mr harpin is the chief executive of maintenance firm homeserve . company was fined a record # 30million last year for mis-selling insurance . customers were misled or bullied into buying policies they did not need .\nfloyd mayweather will be fighting manny pacquiao in las vegas on may 2 . mayweather has been training at his mayweather boxing club in las vegas . pacquiao has been preparing at the wild card gym in los angeles .\nkurt zouma kept an eye on marouane fellaini during chelsea 's 1-0 win . the french defender played as a defensive midfielder against man united . jose mourinho wanted the 20-year-old to keep fellaini out of the game . chelsea boss impressed with zouma 's form during first season at the club . read : mourinho critics do n't have leg to stand on as he is getting job done .\noscar was withdrawn at half-time in win over stoke city last weekend . chelsea boss jose mourinho criticised oscar publicly after stoke game . brazilian midfielder has not completed 90 minutes in last 11 games . jose mourinho 's side visit qpr in the premier league on sunday .\nsteven gerrard will leave liverpool for la galaxy at the end of the season . martin skrtel has praised the impact gerrard has had on him at liverpool . skrtel believes the club do have players that could eventually replace him .\nfive stores in texas , california , florida and oklahoma have been closed . full-time and part-time employees will be put on paid leave for 2 months while they try to transfer to a different location . walmart said the stores will reopen after ` extensive ' problems are fixed . some employees in pico rivera , california believe their store was closed because it 's become a protest center for higher wages .\nlib dems launch plan for 200 % levy on holiday homes in tourist hot spots . clegg insists wealthy tourists should ` chip in ' to support communities . ten per cent of homes in parts of cornwall are only used for holidays . local young people priced out and services struggle to survive .\nthe rodrigo de freitas lagoon will hold the 2016 olympic rowing races . currently , the lake is filled with thousands of dead twaite shad fish . rio 's waterways are choked with raw sewage and rubbish , and concerns have been raised over health and safety ahead of the olympics . officials say the deaths are due to a plummet in the water temperature .\nsprinter says he is ` eating a lot more vegetables ' but ` hates them all ' his chef ` chases ' him around the house to ensure he eats what he 's cooked . bolt admits he must eat right food as he has to be ` perfect in training ' admitted to consuming 1,000 mcnuggets at the 2008 beijing olympics .\nanti-immigrant protests have been ongoing in south africa for two weeks and at least six people have been killed . carol lloyd was injured after rocks were thrown at and smashed her car window as she drove near to jeppestown . foreign nationals have been loading trucks with their wares as they flee johannesburg and neighbouring towns . protesters are angry about foreigners in the country when unemployment is high and wealth is n't distributed equally .\nanderson silva is currently suspended by ufc after failing drug tests . the brazilian hopes to compete in next year 's olympics in rio de janeiro .\nbob arum pulls plug on phone interview after too many people on the call . manny pacquiao answers ` very good ' to a question before interview ended . floyd mayweather is due for his final conference call this wednesday . mayweather : i am better than muhammad ali and sugar ray robinson . read : mayweather-pacquiao weigh-in will be first ever with paid-for tickets .\nwarning : graphic video . video of eric harris 's shooting released by tulsa county sheriff 's office . shows deputies chasing harris , 44 , through tulsa , oklahoma , on april 2 . they tackle him to ground ; reserve deputy robert bates shouts ` taser ! ' but instead of pulling out taser , he takes out service weapon and fires . bates says , ' i shot him ! i 'm sorry ! ' , while harris begins yelping in pain . suspect , being held down by his neck , then says : ` i 'm losing my breath ' other unidentified cops tell him , ` f *** your breath , ' and ` shut the f *** up ' harris was later hospitalized , died an hour later ; investigation ongoing .\nfarhina touseef travels the country administering the free vaccine to kids . the taliban has labelled it a ` bio-weapon ' and attacks those who supply it . polio , which was once almost eradicated in pakistan , is on the rise again .\nwayne rooney tells juan mata ` every day ' england can win euro 2016 . mata was voted manchester united 's player of the month for march . manchester united take on aston villa in the premier league on saturday .\nemy afalava is a loyal american and decorated veteran ; he 's also an american samoan . sam erman and nathan perl-rosenthal : it is outrageous that he and others like him are denied citizenship .\npolice confirmed the men are all aged in their 50s and from the york area . comes after another man , in his 50s and from york , arrested last month . the men were released earlier today after being questioned over the case . body of missing chef , 35 when she disappeared in 2009 , has n't been found .\nalexandra allen , 17 , from utah suffers with the condition aquagenic urticaria , which is so rare it affects just 35 people in the whole world . admitted to hospital with internal bleeding and painful joints , and unable to breathe after a trip to flaming gorge which has water activities .\nwitness robert kushner lost his varsity coaching job at a private academy after testifying this week about his years selling marijuana . kushner , 32 , is one of more than a dozen former drug dealers testifying for the federal government about allegations of police wrongdoing . kushner had passed a background check when he was hired to coach basketball in 2010 .\nsix-year-old schoolgirl made headlines this week when she was pictured plopping her head on the table while reading with david cameron . ed miliband , nick clegg and ed balls have all had equally awkward moments with kids .\nkeepers at the columbus zoo say ten-year-old irisa had bred before but never conceived . however , this spring it was found the female cat was pregnant . while the birth on tuesday went smoothly , irisa failed to show any maternal care so her offspring are being hand-reared in an incubator . they currently weigh 2.5 lbs but are set to grow to a heftier 650lbs .\nisraeli prime minister said agreement puts country in ` mortal danger ' he said during a statement the deal ` paves ' the way to the bomb for iran . urged western powers to carry on putting pressure on tehran . the white house reiterated they remain committed to israel 's security .\naerial photographs taken above eastern lake superior show the freighters lined up across a frozen expanse . the ships , carrying raw materials , are being hampered by slabs of ice as big as pick-up trucks , it 's been reported . their ability to manoeuvre is extremely limited because the ice is able to penetrate their hulls .\nsaracens face clermont at stade geoffroy-guichard on saturday . sarries defeated clermont 46-6 in last year 's semi-final at twickenham . maro itoje has been named to start at blindside flanker . clermont crushed northampton 37-5 in the quarter-finals . brad barritt will captain mark mccall 's side against les jaunards .\nthe image of the patterned stripes in the saharan desert was captured by the nasa 's landsat 7 satellite . they are examples of linear , or longitudinal , dunes in erg chech - a desolate sand sea in southwestern algeria . ` erg ' comes from the arabic word for ` field of sand dunes ' and the cause of such shapes is not known . theories include helical roll vortices - rolls of rotating and spiralling air - and seasonal changes in wind direction .\nchad geyen of ramsey , minnesota was found dead on sunday of a self-inflicted gunshot wound . the married father of two had been reported missing on saturday . he was set to stand trial monday on five counts of first-degree and two counts of second-degree criminal sexual conduct . six boys claim they were sexually abused by the man hundreds of times starting when some were as young as 5-years-old . one of the boys was even taken in by geyen as a foster child . the hennepin county medical examiner 's office is set to release further details about geyen 's death later this week .\nrep steve knight representing 25th congressional district in california was confronted by activists from right-wing group friday . protesters accused knight of voting for immigrant ` amnesty ' during congressional battle over homeland security funding bill . knight was one of 75 house republicans who eventually voted on ` clean ' funding bill devoid of provisions blocking obama 's immigration reform . save our state group that accosted knight has been linked to white supremacists .\nhe said some values in certain communities were ` totally unacceptable ' comments come after sexual abuse by asian men revealed in parts of uk . javid said political correctness should not be a barrier to stopping abuse .\nwakē rouses individuals from their slumber one at a time . alarm uses focused beams of light to create a ` personal sunrise ' it also emits focused ultrasonic waves to wake up each person in bed . wall-mounted device is available to order via kickstarter for $ 250 -lrb- # 167 -rrb-\nthe 12-inch main broke in manhattan before 7pm and send water cascading onto tracks . some 500 riders were immediately evacuated from the west village subway tunnel and thousands more affected by delays . the water also inundated the street corner where the break occurred and can be seen lapping at a west village convenience store .\nlouis van gaal wanted ander herrera to control the ball before shooting . van gaal was delighted by the composure for herrera 's first goal . the manchester united boss said he kissed herrera at half-time .\ntruck drivers in victoria are dealing drugs using codes over their radios . it has been reported that 1 in 12 truck drivers are high when pulled over . according to a former truckie , the trend is more common that you think . a video has appeared online showing a man snorting ice behind the wheel . he is driving a 40-tonne rig and says it is for his fatigue . many are rorting the system so they can drive for 16 hours a day .\ndavid de gea has been linked with a move to real madrid in the summer . manchester united have offered the goalkeeper # 200,000-a-week to stay . if he signs , he will become the world 's best paid goalkeeper . louis van gaal admitted on friday that the club have offered him ' a lot ' .\nover-55s are now able to cash in their pensions instead of buying annuity . pensions minister steve webb said people should buy whatever they want . he said : ` if you want to enjoy it , why should n't you be able to do that ? ' now , mr webb is urging people to take time and not make rash decisions .\nnewcastle fans angered after club dump pictures of sir bobby robson . sir bobby 's side finished fourth and qualified for the champions league back in 2001-2002 in what was one of their most successful seasons . supporters are upset over a lack of respect to their former manager . alan shearer , nolberto solano and gary speed are included in the photos . click here for all the latest newcastle united news .\nman was fleeing bull during fiesta celebrations in teulada , eastern spain . was knocked to the ground before crawling towards safety of bull bars . however he could n't make it before horn caught him between the legs . seen limping towards medics , but was not thought to be seriously hurt .\ntwo rare paintings by art director jack martin smith have sold for # 35,000 . they were used to plan the filming of iconic scenes in the wizard of oz . one of the watercolours shows moment dorothy met oz for the first time . current owner bought paintings for small amount at estate sale in 1980s .\ndanny welbeck watched nicki minaj perform in manchester on monday . liverpool 's jose enrique , alberto moreno and mamadou sakho also went . arsenal beat liverpool in the premier league at the emirates on saturday .\ncustomers in all areas of the plane will be able to share one selfie shot on facebook . mood lighting introduced throughout plane that is designed to help people with time zone differences . full length bathroom mirror , again in all areas of the plane , can help you keep looking your best .\nakhil amar : lincoln 's two biggest legacies , keeping union together and abolishing slavery , had midwestern roots . lincoln saw the federal government as pre-eminent and believed there was no logical border for dividing the u.s.\niona costello , 51 , and her daughter emily , 14 , missing since late march . pair from posh suburb of greenpoint , long island , often went to shows . video shows them with suitcases , but relatives are worried after daughter began missing school . mother told workers at her horse farm that she 'd be ` back on tuesday ' .\nreal madrid dispatched off eibar 3-0 with cristiano ronaldo starring . barcelona threw away a two-goal lead at sevilla to give real a chance . juventus were shocked by bankrupt parma after losing 1-0 . roma and lazio locked in exciting battle for the champions league .\ncesc fabregas takes advantage of rob green error to win the game for chelsea three minutes from time . chelsea had lacked a threat in the absence of diego costa and loic remy , with didier drogba up front . before goal qpr came closest to scoring , with thibaut courtois saving well from charlie austin and matt phillips . jose mourinho 's side are seven points clear at the top of the premier league with a game in hand .\nkevin gill , 45 , found an injured gator and took it to his home in naples , florida for his son to nurse back to health . but when officers were serving a search warrant on the family 's home for an unrelated issue , they found the gator and arrested gill . anyone who wants to own an alligator in florida must complete 1,000 hours of training - regardless of the reptile 's size .\nincredible footage of an ` apocalyptic ' sandstorm in belarus has gone viral . it shows a city being plunged into darkness as a storm blocks out the sun . the sandstorm caused electricity cuts and forced 100,000 people indoors . it brought with it a cold front and heavy rain that damaged buildings .\nwork and pensions secretary hailed the tories as ` the real party of work ' said miliband is standing on ` most left-wing platform since michael foot ' urged fellow conservatives to champion the government 's achievements .\nbega cheese ceo maurice van ryn has pleaded guilty to 12 sex offences . 10 boys and girls , aged eight to 16 , have been abused over the last decade . his wife louise is concerned for her safety after letterbox was firebombed . she has also received threatening phone calls . she altered freeze order in court on thursday , she can now sell their home . earlier this week one of maurice 's victims read her impact statement . she told sydney district court on monday she felt scared and ashamed . ' i did n't know it was against the law , ' the victim said .\nthe 28 minute pornographic film was shot at epping ongar historic railway . a popular location for family days out , parents are outraged by decision . in the video a woman , dressed as a school girl , has sex in a wood carriage . managers have apologised for the filming and for any offence caused .\ngerman photographer dieter klein travelled the world to find vintage cars left to crumble in leafy forests and fields . came across range of graveyards hosting all sorts of vehicles , including jaguar xk120 worth # 82,000 if restored . dieter , 57 , from cologne , first came across a citroen truck dumped in a bush six years ago and became hooked .\nthe self-proclaimed kidnapper behind ` gone girl abduction ' of denise huskins now says he will turn himself in to police . he revealed this in an email to the san francisco chronicle , and said that his co-conspirators must be given immunity . he then said if police did not agree to this deal , he would go teach english overseas or ` go off the grid ' huskins and her boyfriend aaron quinn have yet to make a public statement about the kidnapping . huskins , 29 , was allegedly snatched from her home on march 23 , then released one day later 400 miles away in her childhood hometown . her boyfriend quinn , 30 , was allegedly tied up and monitored by the kidnappers , which is why he could not go to police for 12 hours .\ndr alex zhavoronkov , an anti-ageing expert , is confident he can live to 150 . scientist believes he can slow the ageing process by altering his lifestyle . that includes shunning marriage and children , while using supplements . current uk life expectancy is 78.8 years for boys and 82.8 years for girls .\nsussex police poster features two young women taking a selfie . the message urges female friends to ` stick together ' on a night out . campaigners say police should be targeting potential rapists instead . but police say they have an obligation to urge women to minimise risks .\nangela merkel has challenged cameron to accept more asylum seekers . she said a new eu system was needed based on countries ' economies . it comes as europe reacts to several boat tragedies in the mediterranean .\njohn daniel tohill , 37 , was last heard from by his family in 2005 . his brother tobias received a call from him on tuesday evening . his family has hired investigators and police to track him down . john will visit his family , in particlar his ailing father , in coming weeks .\naging strike pair earn extensions on their short-term deals . goalkeeper adam bogdan also rewarded with new contract . barry bannan and neil danns both fined by club after drinking incident .\nheather hironimus and the boy 's father , dennis nebus , have been warring since her pregnancy . they were never married but share custody of their 4-year-old child . in a parenting agreement filed in court , the two agreed to the boy 's circumcision . hironimus later changed her mind , giving way to a long court battle . she filed a federal civil rights complaint late monday . it repeats the claims that surgery on her 4-year-old son is n't necessary , that the boy does n't want it , and that his constitutional rights are being violated . hironimus is also trying to avoid her own arrest . the arrest was ordered after she fled in february and ignored a judge 's demand that she appear in court and allow the surgery to go forward .\nxenophobia can not explain the conflict between native poor black south africans and foreign african entrepreneurs , says abdi . killings of foreigners can not be separated from the brutal violence poor south africans experience , she adds .\nlondon-based model stephen james hendry famed for his full body tattoo . the supermodel is in sydney for a new modelling campaign . australian fans understood to have already located him at his hotel . the 24-year-old heartthrob is recently single .\na test in kansas finds listeria in a blue bell ice cream cup . the company announces it is temporarily shutting a plant to check for the source . three people in kansas have died from a listeria outbreak .\nkevin blandford 's ` sad face ' photo album has gone viral on the internet . photos have been viewed more than two million times on imgur . he won the trip through his workplace but his wife was n't able to join him . kevin told mailonline travel that the getaway was n't as bad as it looked .\nscott kemery , 44 , was reliably told by a friend that rubbing alcohol was an effective way to kill bedbugs .\nthe pooch has the eyes of a beagle and an english bulldog 's tough hair . the dog , voted for across the country , was created by veterinary company . revealed londoners like small dogs and great danes loved in east anglia .\nlogan kehoe , 13 , was having a last dip on family holiday when he drowned . spanish police say the birmingham teenager died of accidental drowning . tributes have been left to the young man by friends on his facebook page . his headmaster described logan as a ` loved and valued young student '\nperth 's joyce tabram was admitted to fiona stanley hospital on march 30 . she spent five days not eating because doctors told her to fast for testing . ms tabram , 82 , had a swollen abdomen but was not tested up until april 3 . she asked to be discharged and is expected to be tested later this week . the frail , elderly woman has called on the hospital to be closed down . but wa 's health minister said hospital doctors had acted appropriately .\ntaliban militants have lavished praise on their enigmatic supreme leader . described jihadi 's intense love of his family and rpg missile launchers . biography was officially said to have been released in celebration of mullah omar 's 19th year as leader of the afghan taliban . but it was also a clear attempt to counter the growing influence of isis . several afghan taliban members have defected to isis in recent months .\njason dufner and amanda married in 2012 . divorce settlement states there had been an ` irretrievable breakdown of the marriage ' amanda will receive $ 2.5 m as part of the settlement while jason will keep two houses .\njonny howson scored against his old club but refused to celebrate . graham dorrans missed a first half penalty when it smashed the crossbar but made up for it by sealing the tie late on at elland road . norwich are closing in on automatic promotion to the premier league . leeds have lost four out of their last five games in the championship .\njesse norman allegedly gave out cake while campaigning for re-election . election candidates banned from providing food in bid to win votes . west mercia police confirm they are investigating the allegation .\nkylie jenner is the youngest of the kardashian-jenner family . she is fast becoming one of the most lucrative sisters because of her style . millions of teenage girls on social media copy her make-up and fashion .\ndefense expected to show dzhokhar tsarnaev as a puppet of his dominant older brother . a deadlocked jury would result in an automatic life sentence for tsarnaev .\ndan bilzerian , 34 , arrested on explosives charges in december last year . escaped jail as part of plea that required him to make gun safety film . film shows bilzerian speaking in monotone voice reading from a script . sits in front of gun-shaped candle holder next to action figure of himself .\npolice found sid ahmed ghlam , 24 , bleeding heavily in southern paris . they discovered an arsenal of ` weapons of war ' in his car parked nearby . investigators searching his computer found documents mentioning isis . police said the algerian national was in contact with a man in syria ` who clearly asked him to target a church ' dna also reportedly links him to sunday 's murder of aurelie chatelain .\naaron lennon signed on loan at everton from tottenham in january . the winger has four games remaining before his loan tenure ends . roberto martinez will talk about a permanent deal at the end of the season .\ncourtney terry , 27 , from south-east london has a rare kidney cancer . it is the same disease that killed her 23-year-old brother jordan . she needs strangers to fund wedding to her boyfriend before she passes .\npope is presiding over torchlight procession in front of the colosseum . he used way of the cross service to highlight persecution of christians . pope francis delivered maundy thursday mass at rebibbia prison . afterwards pontiff offered to kiss the feet of 12 of the jail 's inmates .\nblanca cousins fell to her death at exclusive address in hong kong . briton nick cousins , 57 , and teen 's filipino mother , grace , arrested . mr cousins said he and his family are ` distraught ' after their loss . they may yet lose custody of their second child , carla , aged 14 . blanca and her 14-year-old sister 's births were allegedly not registered . teens did n't have passports and were educated at private tuition centre . police have said that blanca may have been ` unhappy with her life '\nchelsea scored late winner to beat qpr 1-0 at loftus road on sunday . cesc fabregas scored with chelsea 's only shot on target . chelsea move seven points clear at the top of the premier league . queens park rangers remain in the relegation zone by two points .\nboy george posted video of robbie keane singing on facebook . la galaxy 's keane was belting out his version of karma chameleon . while enthusiastic he does n't appear to know the words to the song .\nronny deila criticised the st mirren park pitch after friday night 's win . celtic beat st mirren 2-0 away from home in the scottish premiership . teale insists deila 's criticism was unjustified and unfair on the club .\nthe trackers allows owners to check carrier conditions like temperature . the pet gps is available from $ 50 per flight from 10 us airports . between 2010 and 2013 , delta was held responsible for 41 of the 97 reported deaths .\nkerry hamilton had very rare cancer called leiomyosarcoma in her cervix . had been told her symptoms were due to hormone problems . was forced to undergo a hysterectomy but managed to freeze some eggs . now wants others to be aware of ` everyday ' symptoms and get checked out .\nthe strain is grown in swaziland , one of south africa 's poorest states . it has extremely high concentrations of thc . south african teens blend it with heroin to produce potent cocktail .\nvideo footage shows corporal james bass of north carolina sneaking up behind his son joshua as he stands in front of a scenic backdrop . when the photographer shows the third-grader the finished photo he took , he spots his father in the background . the father-son then share a big hug with smiles all round .\nheadmaster peter tait claimed parents should trust their child 's educators . excessive interference could harm their children 's development , he said . he made the comments for article in preparatory school magazine attain .\nthe boy named gabriel holds his hands up to the bear 's paws . bear follows him from left to right and rubs up against glass . later in the video the brown bear attempts to bite the youngster .\nwomen 's institute centenary celebrations will be held at the venue in june . told they must pay extra money because some ingredients were donated . extra fees are liable if products of commercial sponsors are promoted .\nengland drew 1-1 against italy in friendly at juventus stadium on tuesday . graziano pelle gave italy a deserved lead as england struggled in first half . wayne rooney admits the players were upset at the first-half display . england improved and equalised through andros townsend after break .\na homeless convicted sex-offender screamed , ` i 'm going to rape you ! ' before attacking a woman in a manhattan bar , according to a criminal complaint . a 23-year old woman was allegedly raped in the bathroom stall of a bar in manhattan 's posh gramercy park neighborhood on saturday . rodney stover , 48 , was arrested on wednesday in connection to the rape . nypd released surveillance footage of the suspect on tuesday and a bartender recognized the man as stover . stover had allegedly hid inside one of the bathroom stalls at turnmill bar at around 7.50 pm on saturday then ambushed the young woman . he was arrested in 1992 for raping and sodomizing a woman he did not know and was released from prison on valentine 's day of this year .\nthe 34-year-old singer made the initial comments on loose women . argued that ` unhealthy lifestyles ' should not be ` facilitated ' plus-size industry says views are ` uninformed ' . star faced bitter twitter backlash , then appeared on good morning britain . back on loose women this afternoon , she clarified her views . janet street porter and her other co-stars leapt to her defence . real-life women have been posting their pictures to twitter . they 've been using #wearethethey in reference to her comments .\ncity fears the impact of an inconclusive election result on the markets . the pound has fallen almost 5 % against the dollar in the past five weeks . fears it could fall another 10 % if a badly hung parliament after may 7 .\naustralian band , the presets , shared a number of posts on facebook . attacked fans who supported the execution of bali nine duo in indonesia . ` please unfollow us , delete all our music and stop listening ' , one read . fans were divided as some supported the band while others did not .\nmanchester city have made liverpool 's raheem sterling a primary target . liverpool value sterling at # 50million - a fee man city can afford . the reds are likely to demand a cash fee for the england international .\nfairdale , a town 80 miles northwest of chicago , was virtually flattened when the vortex hit on thursday evening . residents were bused back to their homes by the dekalb county sheriff 's office in a bid to salvage what they could . officials reported that 17 of the 50 buildings in the town are completely destroyed while the other 33 are damaged . geraldine m schultz , 67 , and jacklyn k. klosa , 69 , were killed inside one of the homes by the storm .\nclinton n'jie gave lyon the lead but max gradel equalised from the spot . lindsay rose was sent off for the home side inside the opening half-hour . romain hamouma put st-etienne ahead but christophe jallet hit back . lyon are level on points with champions psg who have a game in hand .\nitalian musician andrea furlan was filmed playing in milton keynes . he holds a hand-made ` butterfly landscape ' designed didgeridoo . as he plays a tune some of the cows lift their heads and take note . suddenly the whole herd are compelled to run towards the sound . they stand rooted to the spot for the duration of the composition . andrea described moment as ` an amazing and humbling experience '\nstephanie scott was last seen at leeton , 550km west of sydney , on sunday . high school teacher is due to marry her partner of five years on saturday . police have grave concerns as her disappearance is ` out of character ' . family fear her red mazda - also missing - may have rolled off the road . they have asked the public to help search along roadsides in the area . her parents plan to hire a private helicopter to assist with the search . the 26-year-old spent the weekend she disappeared picking up cufflinks for the wedding and a bikini to take on her honeymoon to tahiti . family have begun the heartbreaking task of cancelling wedding plans .\nscott keyes , 28 , has cracked the system around the world for free . the writer reveals his secrets in two ebooks and to mailonline travel . tips include savvy use of credit cards , knowing when to book , and planning the destination after selecting the flights on offer .\niran 's president hassan rouhani assured the crowd that ` the iranian nation has been and will be the victor in the negotiations ' ayatollah khamenei said in a speech that ` sanctions must all be completely removed on the day of the agreement ' state department insisted hours later that ` sanctions will be suspended in a phased manner ' iranian ` supreme leader ' said white house 's public summary of talks ` was faulty , incorrect and contrary to the substance of the negotiations ' . watchdog group warns obama administration is ` desperate for a nuclear deal ' and ` will give more concessions to tehran ' pro-israel advocate says iran has ' a 100 per cent record of forcing the americans to bow to their interpretation whenever there 's a dispute '\nofficer jeffrey swett was allegedly run over by william bogard in january . suspect stole officer 's car while it was running , according to prosecutors . swett suffered broken arms , broken leg and severe head and neck trauma . video of incident was played during preliminary hearing in court on friday . bogard pleaded not guilty to charges including murder , assault and theft .\ndr joe hanson is a science writer and biologist based in austin , texas . he calculated what a hypothetical single ` human molecule ' might look like . it would contain 375 million hydrogen atoms and 85 million carbon atoms . he also calculated that all the chemical elements in the human body could be worth upto $ 2,000 if they were isolated and sold on the open market .\na warrant has been issued for the arrest of clarence taylor , 44 , who remains at large . authorities say the akron , ohio man faked his own kidnapping last fall . taylor was found bound to a tree with duct tape covering his mouth of november 1 . he claimed men with shotguns kidnapped him , stole $ 2,500 and then left him tied to the tree for several days . however , medical records show taylor suffered no dehydration or injuries consistent with being out in the rainy weather for an extended period . it 's unclear why authorities delayed in ordering the arrest .\nshelley dufresne was arrested in september when a student at the high school she taught at started bragging about sleeping with two teachers . it was later revealed that the 16-year-old had sex with both dufresne and his former english teacher , 24-year-old rachel respess . dufresne , 32 , pleaded not guilty to charges in november , but changed course on thursday when she admitted having sex with the teen . in a forgiving plea deal , dufresne will only have to attend a 90-day therapy program , stay away from the victim and turn in her teacher 's license . in exchange , the charge of carnal knowledge of a child will be dropped after her probation and she wo n't have to register as a sex offender . however , dufresne is still awaiting an arraignment on charges for having a threesome with the same student and respess in a different parish .\ncharlotte cobbald , 17 , was visiting family farm in suffolk while being treated in a mental health unit . she said she felt like a ` failure ' and injected herself with animal drugs . told her father ` leave me to die ' and paramedics were unable to revive her .\npauline bruce 's neighbour yvonne plagued her for seven years . yvonne made silent phone calls day and night and shouted abuse . taunted her husband , tony , when he was diagnosed with terminal cancer . ' i was frightened for our lives , ' said pauline , from ludlow , shropshire .\nthe sru have agreed a # 3.6 m contract over three years with bt . bt will take over the scotland shirt sponsorship from rbs this summer . the scotland u20 side will be the first team to wear the shirts with bt .\n` significant ' ore deposit could herald the beginning of highland gold rush . turkish mining giant and uk 's greenore look to make further exploration . small community cautiously optimistic about find but wants to know more .\nliverpool lost 2-1 to aston villa in the fa cup semi-final at wembley . steven gerrard 's dream of making the fa cup final were shattered . gerrard started the game in an advanced role behind raheem sterling . the first half largely passed gerrard by at wembley . the reds midfielder , however , almost snatched an equaliser at the death .\nnicky law scored two goals as rangers comfortably beat raith rovers . haris vuckic and nicky clark also got on the scoresheet at ibrox . rangers had suffered defeat by queen of the south on thursday . but stuart mccall 's side recovered to keep up the pressure on hibernian .\ncalifornia is experiencing one of its most extreme droughts in modern history , forcing concerned residents to react with extreme measures . conservation techniques include utilizing so-called ` gray water ' -- soapy water used once for cleaning and by appliances -- for a second use . those uses may include irrigation , flushing a toilet or even feeding livestock .\nnicholas figueroa , 23 , killed in gas explosion in the east village last month . on tuesday , relatives , friends and strangers bid him an emotional farewell . mr figueroa 's father said family was broken over his ` heartbreaking ' death . brother paid tribute to ` best friend ' whom he will name his future son after . and mother , ava , wore button on her jacket featuring mr figueroa 's image . tear-jerking service held at manhattan 's church of the holy name of jesus . moises locon , 26 , also died in march 27 blast - and 22 others were injured .\nwest indies opener kraigg brathwaite missed the ball but did n't review it . his apparent edge went to jos buttler off the bowling of chris jordan . with hotspot not available in this test , brathwaite accepted the dismissal . no doubt about james anderson 's bowling of kraigg brathwaite . west indies went into lunch on day one in grenada on 36 for two .\nthe average cost of the big day has hit # 25,000 . asos , monsoon and debenhams offering bridal and bridesmaid gowns . femail pits high-street offerings with designer dresses .\ngareth bale was on target in training with real madrid on wednesday . he returned to real madrid on the back of a double for wales . alvaro arbeloa said he could n't understand the ` witch hunt ' against bale . real madrid host 19th-placed granada at the bernabeu on sunday . the match is real 's first since their el clasico defeat at barcelona . click here for the latest real madrid news .\naustralia hooker nathan charles was born with cystic fibrosis . he has overcome the life threatening disease to pursue a rugby career . charles spoke about his experiences in a promotional video .\nlawyers are fighting to stop iranian child being sent back to nauru . she is currently being held at a detention centre in darwin . lawyer john lawrence says ` she might not be alive ' if she 's sent back . she wrote her name as her detention number and draws a disturbing self-portrait showing her mouth stitched up . her family 's asylum claim could take three years to process .\nthe sheriff says a `` big mistake '' contributed to the inmate 's escape . 2 months after being convicted of murder , kamron taylor escaped an illinois jail . he is captured by police 60 miles away in chicago , authorities say .\naidan fraley , 16 , says his father eric harris ' killer robert bates should never have been allowed to work as a tulsa deputy . fraley says the police at the scene and those who allowed bates on the streets are to blame but his mother cathy fraley says she forgives bates . bates has said he mistakenly pulled out a handgun rather than a stun gun when he fatally shot eric harris on april 2 as he lay on the ground .\ngeologists studied rocks in the united arab emirates that would have been on the ocean floor during the great dying 252 million years ago . from this they could create a climate model to plot the mass extinction . they believe volcanic eruptions released carbon dioxide into the oceans . and rising acidity ` dealt the final blow ' to an already unstable ecosystem .\nankit keshri was on the pitch as a substitute fielder having been 12th man . 20-year-old did regain consciousness after colliding with team-mate . sachin tendulkar is one of several stars to give his condolences .\nleicester city hero jamie vardy believes the foxes deserve to stay up . vardy pounced late to earn leicester all three points at the hawthorns . leicester have been bottom of the premier league table since november . but two successive wins have given them genuine hope of survival .\ndog was discovered in play area of a shelter in antioch , california . it is believed the animal was burned by chemicals at a foster home . charity umbrella of hope took it in and named it fireman . a $ 1,000 reward is being offered information about the pet 's injuries .\nmesut ozil starred as germany beat georgia 2-0 in euro 2016 qualifier . playmaker returns to london ahead of arsenal 's game against liverpool . ozil puts his feet up on sofa with his dog as he enjoys home comforts .\napple launches its first smartwatch today - but its stores will not stock it . online consumers must shell out $ 549 and then wait for a june delivery . analysts believe apple feared lines for the new device outside their stores may have been embarrassingly small . however , it is believed apple is sitting on some two million pre-orders .\nmilano had pumped while on plane . travelers are asked to carry only what they need .\nkarlis bardelis , 30 , was scaling the cliff face in coire an lochain , scotland . camera shows his axe come loose sending him tumbling down the cliff . he 's eventually rescued by safety rope after a falling 10m in 3.5 seconds . latvian bardelis remarkably escaped injury and continued with his ascent .\nal-taqwa college principal banned female students from running . former teachers claim believes it will cause them to lose their virginity . students wrote a letter asking omar hallak saying it was ` unfair ' asked him to let them compete in cross country they had been training for .\nmartina navratilova could not commit ' 100 per cent to the project ' the pair only started working together in december last year . agnieszka radwanska is struggling for consistency this season . the pole slumped to an early defeat in stuttgart this week .\ntemperatures outside the spacecraft will reach 2,500 degrees fahrenheit . launch window opens for 20 days starting on july 31 , 2018 .\npreston wright , 23 , killed his girlfriend , sarah owen , 21 , with a knife . wright then turned the weapon on himself inside the home in norman . officers were met by a boy , thought to be wright 's brother , at the house . he said owen had been cleaning out the garage when she got into a fight with wright . eyewitnesses first saw the couple arguing outside of the home . police found the couple dead inside the house with severe stab wounds .\nwa police have come under fire for allegedly accessing ben cousin 's files . ` hundreds ' of officers are said to have unlawfully accessed the documents . police also reportedly looked at the files of former afl player daniel keer . acting commissioner of west australian police , stephen brown confirmed there was an internal investigation underway . would not comment on the identity of those whose files were accessed .\nproperty developer falsely accused neighbour 's son-in-law of racist assault . sanjay chaddah said he was called a ` p ** i ' during dispute with dean paton . but police found cctv footage that showed in fact he attacked mr paton . yesterday chaddah was given suspended sentence for assault and perjury . he punched the air with delight and smirked as he strolled free from court .\nnewcastle face swansea at st james ' park on saturday afternoon . fans group ashleyout.com have asked supporters to stand in 34th minute . ` having a threadbare squad ... yet having # 34m in the bank not acceptable ' there will also be peaceful protests outside sports direct stores at 12.30 .\nanonymous instagram account called chef jacques lamerde is poking fun at high-end dining . pictures feature artistically arranged funk food , such as dunk-a-roos and cheez whiz . the account has over 18,000 followers . pictures are elaborately captioned : ` featuring a palate cleansing shot of fermented lake michigan water '\nworld no 1 mark selby overcame a neck injury to beat fellow englishman elliot slessor at the china open . john higgins and ding junhui have also made it into the tournament 's last 16 . shaun murphy was made to work hard for his place in the third round , coming back from 3-2 down to beat anthony mcgill . the last 16 will take place across two sessions on thursday .\ncurrent man utd boss louis van gaal was in charge of bayern munich from 2009 to 2011 . franck ribery considered leaving after van gaal lost his trust . ` he does great things on the pitch but the coach van gaal was a bad man . ' van gaal is currently impressing as manchester united manager . click here for all the latest manchester united news .\neden hazard scored in chelsea 's 2-1 home win against stoke city . the belgium playmaker also claimed an assist by setting up loic remy . hazard wants to bring the premier league trophy to stamford bridge . the blues are currently seven points ahead of second-placed arsenal .\ntattooed apple watch users reporting problems with its heart rate sensor . sensor takes readings by measuring light absorption though the skin . dark , solid tattoos seem to confuse the new device the most . apple has yet to comment on the problem , despite people taking to twitter .\nreal estate website zillow has released a list of america 's 15 most expensive streets based on median house price . indian creek island road in miami , florida , came top , boasting four of forbes ' 500 richest men as homeowners . jay z and beyonce once called the island , which is made up of enormous lots and has its own police force , home . second was beverly park circle , california , where hollywood names such as denzel washington and eddie murphy .\nhector morejon was shot by a long beach , california , police officer . officer allegedly thought the 19-year-old was pointing a gun at him during a trespassing and vandalism incident . his mother heard shots and ran to scene , then she saw her son in an ambulance .\nthis is week three of an ongoing series : a catholic reads the bible . read week one and week two . this week 's reading is a lot to take in . literally .\ndisqualified owner massimo cellino confirms nicola salerno 's departure . announcement comes six days after assistant coach was suspended . salerno understood to be responsible for steve thompson suspension . italian has been linked with sporting director 's job at palermo in italy .\njessica chastain and her boyfriend gian luca passi de preposulo spent $ 5.1 million on an apartment at the osborne on west 57th street . several residents claim to have dealt with spirits while living in the building . the ghosts of opera singer johanna gadski and architect alfredo taylor supposedly haunt the osborne apartments .\nrectangular 18-carat piece was gifted to lord uxbridge for his heroics . after being hit by cannonball he remarked ` by god , sir , i 've lost my leg ' the cover of the three and a half inch box is lord uxbridge 's coat of arms . it was sold by auction house bonhams to a private collector for # 100,900 .\nmikel arteta is confident of signing a new contract with arsenal . the gunners captain says it would take ` five minutes ' to seal a new deal . arteta has struggled with injury this season , mainly with a thigh problem . but it is a minor ankle issue that rules him out of the fa cup semi-final .\nchristine lillico , 47 , stole almost # 80,000 from her parents over six years . frail father left so poor before his death he was forced to go without phone . she spent the money on xbox , shopping sprees and photography services . lillico has now been jailed for 20 months after pleading guilty to fraud .\nchaos caught on camera premieres on science channel monday , april 13 . show reveals fantastic phone footage shot by people in real-life drama . viewers get intense experience as if they 're actually there in disaster zone . incredible facts behind each freak catastrophe or survival are explained .\nsally white , 28 , rescued the terrified animal from a bleak hillside . ` miller ' was malnourished , had severe anaemia and struggled to stand up . she trained the six-year-old horse in the arts of dressage and she now competes with him in the british championships . says : ` miller and i are a team - i needed him with me on my big day .\nsir bruce said it can be ` more cruel to do nothing ' than to let someone die . said he would like the right to be able to chose the timing of his own death . he cared for first wife penny calvert after she was moved into care in 2008 . ms calvert , whom he divorced in 1973 , died in 2014 after battling dementia .\n`` amy '' features archival footage of the singer and original music tracks . `` amy '' seeks to `` truly capture not just the great artist that she was , '' filmmakers say . winehouse , who died at 27 , said fame would probably drive her `` mad ''\nsaracens beat racing metro 12-11 to advance to champions cup semis . racing were unhappy about a challenge on maxime machenaud . saracens flanker jacques burger has been cited for the tackle .\nbarney gibson became the youngest first-class cricketer in 2011 . the yorkshire wicketkeeper made his debut shortly at 15 . gibson said it was a ` difficult decision ' to retire from the game .\nphotograph taken of 23-year-old boy band star partying in london . appears to be rolling a joint and is beside box of green substance . tomlinson has been partying hard for 48 hours and went clubbing last night . comes after tomlinson appeared on exclusive daily mail online video in which zayn malik appeared to smoke drug . bandmate liam payne then issued apology for video .\nmanchester city are in fourth , a point behind rivals manchester united . city were beaten 2-1 by crystal palace on monday and face united sunday . manuel pellegrini ready to battle for three points to move above united .\nsomeone called 911 to report woman was driving erratically in a black suv . she failed to yield to officers and wove in and out of traffic lanes , according to california highway patrol . officers left cars when she stopped at traffic lights , but she kept on driving . chase ended almost an hour later after one officer lightly tapped her rear bumper to send car into a spin - a pursuit intervention technique .\ntony mccoy has said he will immediately retire with grand national win . the 40-year-old will ride shutthefrontdoor at aintree racecourse . mccoy will be riding his 20th grand national on saturday . click here for our 2015 grand national sweepstake .\na melbourne based conservationist couple launched a crowd-funding page . within two days they received a $ 2 billion pledge which later disappeared . the site cancelled the pledge because it was deemed suspicious . the baffled couple still have n't tracked down the would-be benefactor .\nsite can analyze any photo and will guess the age and sex . said 30-year-old khloe kardashian looks 44 . microsoft app also determined obama looks the right age of 53 . users can search for photos on bing or upload their own .\nthe henry ford museum in dearborn , michigan , has had chair for 85 years . the worn , red chair , from washington d.c. 's ford 's theatre , is usually kept in an enclosed case but will be put in an open plaza on april 15 . abraham lincoln was shot by john wilkes booth on april 14 , 1865 . the henry ford museum also holds the limo in which john f. kennedy was shot and the bus rosa parks rode when she refused to give up her seat .\ncoles ordered to pay $ 2.5 million in penalties after lying to shoppers . their marketing slogan ` made today , sold today ' deemed as misleading . the products were par baked from overseas and shipped months later . coles also ordered to display a federal court corrective notice in stores .\njoe anderson , 56 , earns # 80,000 in full-time job as the mayor of liverpool . was also taking annual payments of # 4,500 from chesterfield high school . when school stopped payouts , he tried to sue them for discrimination . appeal tribunal rejected claim he was punished for belief in public service .\njohn pat cunningham , 27 , was shot dead by the army in a field in 1974 . british government later apologised and investigation re-opened this year . dennis hutchings appeared in court today and was released on bail . he was arrested in england and taken to northern ireland for questioning .\ndavy condon has been forced to retire due to a spinal injury . the irish jockey fell during this month 's grand national at aintree . condon was advised to retire after seeing a specialist on wednesday .\nthe fiona stanley hospital in southwest perth was stripped of its medical service provider serco in february . the company was fined $ 60,000 and was subject to department of health workers auditing its staff . it comes after a string of controversial incidents in the hospital , including the death of a patient last month .\naustralian foreign minister says deal is to focus on tracking citizens who join isis . but one lawmaker describes it as `` dancing with the devil ''\nthree people shot , one man in custody , city spokesman says . hundreds of demonstrators gathered in support of protests in baltimore . police not sure if shootings are related to protests , spokesman says .\nceltic beat st mirren 2-0 in their scottish premiership clash on good friday . leigh griffiths was named among the celtic substitutes for the match . striker was caught eating a biscuit during the first 10 minutes of the match .\ngerardo martino 's team beat their south american rivals in new jersey . manchester city 's sergio aguero opened scoring in the first-half . ecuador capitalised on a mistake , allowing miller bolanos to equalise . but javier pastore scored to settle the friendly in the 58th minute . lionel messi did not feature as he nurses a foot injury .\ngang of at least three poured gasoline on a car at south la gas station . before the fire was started , the gang attempted to rob the driver of his car . two people were inside white dodge charger when it went up in flames . no one was hurt and la fire department is investigating crime as arson .\nteen allowed to return home now that her chemotherapy is complete . ` cassandra ' was diagnosed with hodgkin 's lymphoma in september . teen was in temporary custody of the connecticut department of children and families .\nbrown was consigned to even more time on the sidelines to recover from the latest high-profile head injury . he has not played since the final round of the rbs 6 nations on march 21 , is still suffering headaches after a week-long holiday in dubai . the episode raises questions about whether the 29-year-old was brought back too early for england 's title-decider against france .\nbaron the german shepherd was filmed using the bathroom . in the footage shared on facebook , the dog raises the toilet seat , relieves himself and puts the seat down before flushing the toilet . the video has been viewed more than 16,400,000 times to date . five-month-old pup was professionally trained at hill country k9 school .\nloganair aberdeen to shetland flight struck by lightning on approach . plunged to just 1,100 ft above the ocean before pilot regained control . probe found autopilot ignored pilot 's commands to climb and tried to crash .\ninvestigators have been searching andreas lubtiz 's internet search history . lubitz sought information online on various methods of taking his own life . he is also believed to have researched the cockpit door locking system . investigators now want to determine why the captain left the cockpit .\nmarried businessman mohammed khubaib convicted of raping girl , 14 . also guilty of trafficking girls as young as 12 over more than two years . co-defendant cleared of raping 16-year-old and seven trafficking charges . conviction part of cambridgeshire police 's probe into child sex offences .\nsteven howie , 28 , attacked his girlfriend karen murray in a hotel bedroom . punched and kicked her during the hour-long assault on new year 's eve . stirling sheriff court heard bedroom was a ` bloodbath ' following incident . he was jailed for eight months but the couple plan to rekindle relationship .\nkathy hughes called her dad doug hughes ' a patriot ' for landing his gyrocopter on the west lawn last week to protest campaign finance laws . speaking out on monday , mr hughes called the journey ' a huge thrill ' and said he never feared he 'd be shot down . he said it would be worth losing his job and going to jail if the country took note of his message . he faces four years in prison for crossing a no-fly zone and is under house arrest in florida before a hearing in washington d.c. next month .\nsimulation available on oculus rift shows plane crashing on water . cries , screams and shouting heard as plane rapidly descends . shows what happens if you make attempts to grab your luggage . based on actual incident in 2009 when u.s. airways airbus a320 made successful landing in hudson river with no casualties .\ngraeme swann revealed the exact moment alastair cook 's form turned . if adil rashid was picked for the second test he 'd be england 666th player . devon smith was the first grenadan ever to score a test run in grenada .\npostman adam prowse danced with customer nichola sullings . pair boogied to michael jackson 's ` do n't stop 'til you get enough ' adam has since received much admiration from female viewers . royal mail said : ` it is a pleasure to have him working for us ' .\ngreat-grandfather robert clark has lived in the house for 50 years . he has spent # 50,000 life savings on a live-in carer over last two years . brent council says it can not afford the care package the veteran wants . help for heroes has launched a fundraising drive to pay for robert 's care .\ntroy university students delonte ' martistee , 22 , and ryan austin calhoun , 23 , have been charged in connection to the alleged sexual attack . police in troy , alabama , found the video while investigating a shooting . video ` shows two men raping unconscious woman on florida beach ' authorities say hundreds of people walk past but do n't intervene . two additional suspects are being sought in connection to the incident .\nbelt was unveiled by world boxing council president mauricio sulaiman . he was joined by larry holmes and adonis stevenson in mexico city . it will be awarded to winner of floyd mayweather vs manny pacquiao . creation contains diamonds and gold and is worth over $ 1million .\njames anderson took the wicket of denesh ramdin to break the record . anderson surpassed sir ian botham 's record of 383 test wickets . england declared on 333-7 in their second innings on day four . alastair cook 's side set west indies an unlikely victory target of 438 . but the home side held firm on day five to force a draw .\n12 months ago , it was man city who reeled in liverpool to win the league . now , the boot is on the other foot as reds hunt fourth place . the gap currently stands at four points but city are in freefall . derby loss to man united has increased the pressure on manuel pellegrini . liverpool , by contrast , may have come good at the perfect moment . missing out on champions league is unthinkable for both clubs .\nsir bradley wiggins will bid to break cycling 's hour record this year . he will race at london 's olympic velodrome in front of 6,000 fans in june . wiggins will ride in next month 's tour de yorkshire . he is also targeting his eighth olympic medal at the rio 2016 games .\nterrorist group al-shabaab has attacked a kenyan college , killing and taking hostages . it is a clear indicator the security situation in east africa is deteriorating , says stefan wolff . more than military action aloe is needed to combat terrorism in the region , he says .\nthe south african comedian , whose announcement as jon stewart 's replacement surprized many , was spotted at citi field on monday . he was spotted enjoying the mets taking on the philadelphia phillies in the company of jerry seinfeld , larry david and matthew broadrick . noah 's very public appearance with new york jewish comedy royalty comes not long after he was accused of anti-semitism . he and seinfeld were also photographed filming a segment for seinfeld 's acclaimed comedians in cars getting coffee online series .\ntania watts has spoken of the ` hell ' she has endured since bristol murder . becky went missing in february and her body parts were found weeks later . her stepbrother nathan matthews , 28 , has been charged with killing her . mr matthews is the son of anje galsworthy , who appeared in appeal videos .\na woman was accidentally ordered to pay # 3.35 quadrillion to her pension . massive sum is more than the entire gross domestic product of germany . blunder by pensions office was discovered before any money was taken .\nmedical experts reveal analysis of scenes likely to kill movie characters . in real life , james bond would have died before skyfall 's opening credits . home alone character kevin should have died from serious head injuries . and it is ` laughable ' halloween villain michael myers survived stabbing . the new issue of total film is out tomorrow .\ndefense seeks to make case to spare life of convicted boston bomber dzhokhar tsarnaev . defense : brother tamerlan , who was killed during police showdown , was obsessed with jihad . dzhokhar tsarnaev was well-liked , polite and docile , according to witnesses .\nfarmers in struggling country towns are renting properties for $ 1 a week . residents of rural communities are hoping to attract young families . it 's hoped more young families will help keep local schools open . 20 townships across australia have adopted the rent-a-farmhouse model .\nariana miyamoto was born and raised in japan and speaks fluent japanese . but 20-year-old found it tough growing up as only black girl in her class . was raised in sasebo near nagasaki where japanese mum met her father . has faced hostility for not being a ` pure japanese ' beauty pageant winner . father bryant stanfield says japan will ` never be as proud of her as i am ' .\nthe vancouver-born actor was not injured in friday 's incident , police said . he was walking in an underground hotel parking garage during hit-and-run .\njames holmes was once a doctoral student and neuroscientist-in-training . but prosecutors say in the months before the shooting he was preparing for violence , amassing weapons and sending threatening text messages . said holmes searched online for ` rational insanity ' knew exactly what he was doing when he opened fire at the 2012 batman premiere . if the jury finds holmes was mentally ill at the time of the shooting , he will avoid jail and be committed indefinitely to a state psychiatric hospital .\ncristiano ronaldo 's 300th goal for real madrid came at rayo vallecano . the portugal man reached the landmark in only 288 games . he has scored more goals against sevilla than any other opponent . read : ronaldo still some way behind pele in the one-club scoring charts .\nl'hermione is a painstaking replica of an 18th century ship of the same name . the original fought with american colonists against the british in the revolutionary war .\nthe officers have been placed on administrative leave after shocking video footage surfaced of them harassing a group of four students . the incident occurred at el centro college in dallas and was captured on cell phone by student charles adams . footage shows the young men being ordered to face a brick wall , while one cop searched , questioned , and even hit one of the teens . el centro college president jose adames has said a full investigation is underway .\narsenal maintained they superb run of form by thumping liverpool . arsene wenger 's side moved into second place following the 4-1 victory . wenger believes everyone can ` smell ' what is happening at the emirates . however , french manager is refusing to get complacent with their form .\nthe russian outfit have been wound up after going bankrupt . rotor volgograd famously beat manchester united in the uefa cup . david beckham , paul scholes and roy keane played against rotor in 1995 .\ndwayne harvard , 46 , charged with simple assault , aggravated assault , reckless endangerment , and dui . he claims steven sutton , 36 , tried to attack him at his home in springdale . argument over sutton 's girlfriend , anna mazzetti , who was with harvard . harvard took off and sutton clung to the hood of his car for 11 miles . harvard claims he feared for his life and should not have been charged .\nrenner showed off his vocal skills . he sang an ed sheeran hit .\nexperts have warned against trend where people cut out all carbohydrates . suggest instead to eat less processed foods with more wholegrains . australian nutritionist susie burrell has revealed her top five breads . also named the five least nutritious ones that should be avoided .\noldham have signed 16-year-old winger ronaldo brown . brown was released by liverpool and has joined the league one club . he is named after brazilian ronaldo and has a brother called rivaldo . brown also has a younger sister called trezeguet .\nsandie konopelski , 58 , of shiloh , illinois , struck by train on friday morning . hit by st louis metrolink train on tracks between swansea and belleville . licensed by state department of natural resources as wildlife rehabilitator . she died of blunt-force trauma and was pronounced dead at the scene .\nthe bridal centre , in brisbane , shut down unexpectedly earlier this month . around 140 brides were left out of pocket and without a dress . they created a facebook page called ` where 's my dress ' so the women could connect and try to find alternative ways to get their dream dress . ladies and bridal companies started to donate dresses to the women . adele mckenzie was one of the women who have been left without a dress . she said the way the brides have been treated is ` disgraceful ' . many brides have taken to social media to slam the bankrupt company .\nqatar airways flight was due to land in manchester airport at 7pm monday . but pilots severe winds meant pilots were forced to divert to birmingham . plane spent five hours on tarmac as it waited for refuelling and new crew . police were called twice after ` disruptive ' passengers tried to disembark . meanwhile , video shows angry passengers delayed at manchester airport .\narsenal are looking for their eighth victory in succession against burnley . manchester city also managed seven wins on the bounce this season . the gunners can match their own record if they win their remaining games . manchester united , chelsea and liverpool are also high on our countdown .\nfather , only known as john , noticed his daughter was acting strangely . confronted her and she confessed taking cocaine , ecstasy and mcat . told him drugs were available to buy at school , parks and youth groups . father is now calling on local authority to take the issue more seriously .\nwilliams has abandoned idea for underground extension to his mansion . previous plans had angered next-door neighbour , rock legend jimmy page . the pop star has now scaled back his proposal and submitted fresh plans . he wants to lower floors and knock down walls to create bigger rooms .\naustralians everywhere remembered the bride-to-be on the day she planned to wed her partner of five years . hundreds of women shared pictures of their wedding dresses in tribute . social media users flooded twitter with pictures of yellow clothing and balloons after ms scott 's sister asked memorial attendees to wear yellow . police located a body believed to be ms scott at a national park , the night before her wedding day .\nnewcastle owner mike ashley is an unpopular figure at the club for his perceived lack of ambition and investment in the last few years . mark jensen , editor of the newcastle fanzine , the mag , predicts that unless ashley changes his approach the club will lose supporters . the magpies have lost their last six consecutive league games . thousands of supporters boycotted the last defeat by spurs on sunday .\ngeoffrey kondogbia impressed against arsenal in the champions league . gunners have scouted french midfielder for some time . but now liverpool hold the main premier league interest in midfielder . 22-year-old is currently at monaco but has also played for lens and sevilla . jamie redknapp : arsenal should have signed kondogbia .\n`` i had never seen a judge conduct himself in that way , '' defendant 's lawyer says . a judge reduces prison sentences for 3 educators in the atlanta public schools cheating scandal . `` i 'm not comfortable with it , '' judge jerry baxter said of the original longer sentences .\njon moss will take charge of fa cup final between arsenal and aston villa . mark halsey has slammed the fa for overlooking mark clattenburg . former premier league referee halsey has called the decision ' a joke '\na man rescued twice in the same night after falling from boat dock . it happened at cockle bay wharf in sydney 's darling harbour . the man fell in the first time and was rescued . before paramedics could wrap him in a foil blanket he fell backwards again . darling harbour is known for it 's treacherous waters .\naustralians buy 54mil hot cross buns & 2,900 tonnes of chocolate at easter . seafood sales rise by 80 per cent over the easter weekend . drinks expert advises on the best wines to match your favourite seasonal foods , from chocolate to seafood .\nwest ham united drew 1-1 with stoke city at upton park on saturday . marko arnautovic scored a 95th-minute equaliser to stun the hosts . hammers manager sam allardyce says his players need more experience . allardyce believes his players will be better prepared next season .\npasser-by saw thief trying to drive honda from car wash in georgia . female owner had jumped on the bonnet but teenage thief was driving off . good samaritan shot suspect in the shoulder , hailed for saving woman 's life . suspect recovering in hospital , police hunting for three alleged accomplices .\nkira hollis , 27 , weighed just 6st and was deemed clinically underweight . she was diagnosed with borderline personality disorder three years ago . doctors ordered ms hollis , from tamworth , to start going to the gym . she reveals bodybuilding gave her confidence to overcome depression .\nharry redknapp quit as qpr manager in february due to knee surgery . redknapp will manage men united xi vs leyton orient legends on may 31 . charity match is to raise funds and awareness for prostate cancer .\nbarway edwin collins , 10 , went missing from his crystal , minnesota apartment complex march 18 after school . on saturday , searchers from boy scout troop found a body ten feet from mississippi river 's edge which was identified as barway . crystal police chief said electronic evidence shows boy 's father pierre collins , 33 , was in area where body was found at time he disappeared . hennepin county medical examiner said the cause and manner of barway 's death are still being investigated .\nronald anderson , 48 , was arrested and charged for the crime spree . anderson was previously convicted of manslaughter and arrested in an assault case involving his ` visibly afraid ' girlfriend . the kidnapped woman was found safe - she may be related to suspect . the guard , lawrence buckner , died at a hospital in cheverly , maryland . officer and suspect both conscious when they were taken for medical care . guard saw two people fighting in a car that matched the description of a vehicle described in a report of an armed kidnapping . incident took place at gate of u.s. census bureau in suitland , maryland .\nthere are no english clubs left in the champions league or europa league . diego simeone admits he is surprised at the plight of premier league sides . he believes barcelona and real madrid are the top two clubs in europe . atletico madrid face real madrid in their champions league quarter-final .\nmichael bisping targets impressive win when he returns to the octagon . bisping will look to get back into the title hunt with a win over cb dolloway . the 36-year-old brit last fought in the uk almost five years ago .\nindia has launched a massive aid mission to its earthquake-hit neighbor nepal . disaster relief troops and tons of food , water and medicine have been flown in .\nfour brown leatherette bean bags placed in library at ickworth house . furniture dating nearly 200 years removed to make way for bean bags . designed to encourage visitors to ` dwell and take in atmosphere ' . art historian brands the experiment ` patronising nonsense ' .\nbus driver in queens seen highlighting timetables as he drives with wrists . ten minutes of distracted driving caught on camera by commuter . at least nine pedestrians were killed by new york city buses last year .\nmick schumacher made pre-season test debut in formula 4 in germany . the 16-year-old was driving weeks after a 100mph crash at another circuit . pictured turning into gravel once again during tests at oschersleben track . his father , michael , is still recovering from a december 2013 ski accident .\ncomedian ricky gervais led an online charge against rebecca francis . the brit shared a picture of the grandmother lying next to her ` trophy ' caused to an online backlash against francis - with 14,543 retweeting post . francis is proud of hunting and hopes to inspire more women to take part .\nmuslim engagement and development -lrb- mend -rrb- has made the claims . says it has been in talks with both the tory and labour leadership . mend is said to have links to a number of extremists .\nhomecamp is a service which connects homeowners and tourists . travellers can pitch a tent in a homeowner 's backyard at a cheap rate . the average cost of staying in a backyard is $ 30 per night . homecamp launched in australia in january and is available worldwide .\nchris smalling joins twitter just days before the manchester derby . the 25-year-old posted a photo of himself and his girlfriend sam cooke . smalling could return for the clash after missing the win over aston villa . read : manchester united players train ahead of sunday 's big derby . click here for all the latest manchester united news .\nfloyd mayweather takes on manny pacquiao in las vegas on may 2 . he is the richest sportsman in the world and will earn $ 180m next month . but he makes no attempt to conceal his wealth on social media . and marvin hagler claims his behaviour does not befit a world champion .\namy bass : baltimore rioting caused postponement of two orioles-white sox games . now third game of series will be played to empty stadium . she says baseball can bring cities together . but with so few black fans , players , it will be hard for baltimore to gather around this sport to heal .\ntwo studies warn that rising temperatures could wipe out animals . university of connecticut research warns 1 in 6 species could face extinction , especially in south america , australia , and new zealand . uc berkeley research says marine animals such as whales near north america , antarctica and new zealand are most likely to die out .\njacob polyakov plunged off the sec ` globe ' centre in kiev , ukraine . 17-year-old cracked his head open and is now in intensive care . friend jamal maslow broke his coccyx after landing on corner of step .\nwoman drove red peugeot towards southend on london-bound stretch . several cars crashed as she drove wrong way on a13 . man was left with neck and back injuries after swerving out of the way . incident closed busy stretch for more than an hour causing big tailbacks .\nbarcelona beat psg 2-0 on tuesday to reach champions league semi-final . xavi came on at half-time to make his 148th appearance in the competition . it is more than any other player but iker casillas can equal it on wednesday . xavi also broke the record for most knockout stage appearances with 53 .\nsouth african troops help police conduct raids in jeppestown . defense minister says police are spread too thin trying to prevent attacks on immigrants . seven people have been killed in recent violence against poorer immigrants .\nchelsea edged ever closer to the title with win against leicester city . but not before jose mourinho gave his squad a half-time rollicking . chelsea fell behind in first-half injury time via marc albrighton 's goal . the blues reacted well and earned the victory with three second-half goals . read : leicester city manager nigel pearson calls journalist an ostrich .\na man named john posted the advert in a newsagents in muswell hill . it details that he is looking for a companion , apprentice , worker and lover . he says the role will bring ' a way of life with quality ' . his ideal woman is aged between 30 and 40 and is happy to be interviewed .\namanda beringer asked her brother brad to make a toast at her wedding . instead of a speech , he wrote a song poking fun at the burdens of marriage . the perth man 's musical toast had the wedding guests in stitches .\nlabour leader said it 's ` not good enough ' for staff not to have regular pay . he said workers should get the right to a regular contract after 3 months . comes after the pm struggled to say if he could live on zero-hours contract .\nlpac , a pro-lgbt super pac , launched lesbians4hillary on monday . group is co-chaired by tennis great billie jean king . hillary clinton opposed gay marriage until 2013 - a year after obama came out in support . she also did not publicly object to passage of do n't ask do n't tell and the defense of marriage act as first lady under her husband 's administration .\nprime minister makes culinary blunder as he tries to woo devon voters . chatting in a barnstaple cafe , he tried to guess jam or cream first . cornish use jam with cream on top , but people in devon do it in reverse .\nmanchester united and england defender chris smalling has taken a trip to his old judo club . the international judo federation shared photos of the visit on twitter . before deciding on a career in football , smalling was a talented martial artist and named national judo champion as a teenager . he has experienced a meteoric rise from his days playing for non-league maidstone united to turning out for the red devils now .\nqueen arrived at st george 's chapel alongside the duke of edinburgh and was dressed in a bright blue coat and hat . couple were joined by family members including princess beatrice , the countess of wessex and autumn phillips . they were greeted by the dean of windsor , the right reverend david connor , who led the easter day service .\nmeet the australian families who have pet kangaroos in their homes . samantha wills rescued the joey from the side of a road nine months ago . she welcomed ` crash ' into her family and he goes to events with them . another owner , suzie nellist also found a roo when his mother died . she said they are like ` naughty toddlers ' but they make ` great pets ' .\nlewis hamilton qualified in pole position for sunday 's bahrain grand prix . ferrari 's sebastian vettel pipped mercedes ' nico rosberg to second . rosberg 's father keke was 1982 world champion . rosberg and his wife vivian are expecting their first child in august . while hamilton courts fame and has a lavish lifestyle , rosberg 's focus is on his family while his life is more settled .\nnicole p. eramo was ` deeply damaged ' by the article , she says , which portrayed her as the as ` the personification of a heartless administration ' eramo said in an open letter wednesday to publisher jann s. wenner that the magazine has not done enough to make amends .\ntara mcintyre , 24 , was left with life-changing injuries after horrifying smash . ben hagon had been more than double legal alcohol limit when he crashed . witnesses claimed his mercedes was speeding up to 75mph in 40mph zone . victim suffered fractured spine and pelvis leaving her wheelchair-bound .\ntulsa county sheriff 's office reserve deputy robert bates faces a charge of second-degree manslaughter for the april 2 shooting of eric harris . in an interview on the today show on friday , he described his shock and remorse at the shooting and how he never intended to kill anyone . he demonstrated that he kept his taser near his chest and his gun on his right side - but insisted the mix-up could have happened to anyone . bates said he had completed all proper training and was not allowed to ` play cop ' just because he had donated equipment to the sheriff 's office .\nsan francisco property to be auctioned at $ 2.5 m starting price . it was made available on april 4 after police evicted a hoarder and removed her mother 's mummified corpse , which was at least five years old . body is believed to be that of anna ragin , who lived with daughter carolyn . police said house was full of black widows , rats , feces , bottles of urine . authorities struggled to open the door of the home because of the debris . carolyn is being mentally assessed .\nmrs. clinton enjoyed some downtime in chappaqua , new york , with husband ahead of her two-day swing through new hampshire this week . the aspiring leader of the free world and the former leader of the free world were spotted strolling hand-in-hand as they soaked up the sun . meanwhile , her two ` scooby ' campaign vans got some tlc of their own at a local body shop , where they were also hand washed . clinton starts second leg of her endeavor to win the vote of ` everyday ' americans . but report shows she makes more money for an hour 's worth of work than the country 's top ceos .\nleigh griffiths revealed that ronny deila and john collins warned him . the celtic striker took a while to settle in at his new club after his move . griffiths has been in red-hot form and scored three against kilmarnock .\nbennett slated graham after the seahawks beat the saints in the playoffs two years ago . and even though the tight end joined seattle , the defensive lineman says his views have not changed . ` just because he 's on my team i do n't stop feeling that way , ' he said . bennett also denied he asked for a trade to the atlanta falcons .\nnorwich beat bolton 2-1 at the macron stadium in the championship . graham dorrans gave the visitors the lead inside 10 minutes . adam le fondre drew neil lennon 's side level after 18 . gary hooper won the game for norwich in the closing moments . norwich remain second ahead of watford on goal difference .\ndavid cameron has admitted that he and wife samantha were ` falling apart ' frank admission over pressure of trying to care for their disabled son ivan . ivan was born with rare disorder - ohtahara syndrome - and died aged six .\nman , 50 , allegedly rammed into home north-west of brisbane on monday night . police say driver climbed out of vehicle and stabbed a man to death . five people were inside including a woman believed to be man 's ex-partner . driver was charged with murder and string of other charges .\ndartford goalkeeper jason brown was racially abused in october last year . the former blackburn goalkeeper was facing bristol rovers . brown criticised kick it out for not doing enough with the case .\nthe incident occurred on april 7 north of poland in the baltic sea . u.s. says plane was in international airspace . russia says it had transponder turned off and was flying toward russia .\nfood52 's not sad desk lunch series has inspiring midday meal ideas . simple crackers and cheese or go complicated with stuffed steamed buns . british workers spend an average of of # 1,840 a year on takeaway lunch . preparing your lunch at home could see a saving of up to # 1,300 a year .\njosh meekings handball should have been a penalty and a red card . if the penalty was awarded and converted celtic would have gone to 2-0 . caley manager john hughes admitted his side were fortunate in win . virgil van dijk scored celtic 's opener with a superb free-kick . celtic keeper craig gordon was sent off early in the second half . greg tansey , edward ofere and finally daven raven scored for caley .\ncleveland 's variety theater was a renowned rock venue that hosted the likes of metallica , rem and dead kennedy 's . but as metal band motorhead performed in 1984 , the ceiling cracked and plaster began to fall on to the audience . the gig was stopped and the theater was sealed off two years later - staying hidden from the public for 30 years . now a photojournalist has ventured into the building , capturing eery photos that offer a glimpse into music history .\naguero opened scoring in the 8th minute , tapping in silva 's pinpoint cross . young levels minutes six minutes later , reacting to a loose ball in the box . fellaini nods in young 's cross for his sixth of the season in the 28th minute . mata punished weak city defending to add a breakaway third in the 66th . an unmarked smalling nodded home young 's free-kick to make it four . aguero finished zabaleta 's cross to add a his second late on . vincent kompany 's challenge on daley blind attracted criticism - and a booking - and he was subbed after half-time . city had won the last four manchester derbies but sank to their fourth defeat in six premier league games . for united , this was a sixth successive win , and a hugely impressive one . view all the stats and pitch maps from the game with our match zone . read : ashley young laughs at manchester city as manchester united silence ` noisy neighbours ' with big derby win .\nlucas hinch , who runs an herb and tea shop in colorado springs , said he 'd simply had enough of the computer 's ` blue screen of death '\nscientology-connected narconon wants to build center at trout run . land use laws mean that it must prove site is historic in order to have a medical facility on the land in frederick county . scientology-affiliated real estate company bought land for $ 4.8 million . group contends land is significant because herbert hoover fished there . organization has been criticized after string of mysterious deaths at centers that use saunas and megadoses of niacin to treat drug addicts .\nupdate : shelby offrink lost her battle to cancer on june 28 , 2015 . offrink was diagnosed at 30 with rare inoperable brain cancer . her husband , ben , was diagnosed with hodgkin 's lymphoma , which had been in remission 15 years .\nhector bellerin claims 12 per cent of the vote to replace dani alves . barcelona fans would rather brazilian right back extended his contract . bellerin has impressed for arsenal in his breakthrough season at the club . 20-year-old left barcelona for north london in 2011 as a teenager . read : bellerin and francis coquelin are a delight for arsene wenger .\nthe crew of the liana 's ransom , an 85-foot-long replica schooner , were rescued by the coast guard early monday morning . crew members had to jump from the ship to waiting coast guard boats . luke arbuckle shorted the jump and struck his head against the side of the ship , later being airlifted to a hospital where he was treated and released . captain ryan tilley was the last to leave the vessel , which was towed to a boatyard in eliot , massachusetts , on tuesday .\nthe scantily-clad strippers danced around the casket at mr jian 's funeral . dancers were booked by deceased 's wife as a final gift to her husband . tradition for exotic dancers at funerals began is linked to taiwanese mafia .\ntop gear presenter was sacked after punching oisin tymon in the mouth . the ` fracas ' started when mr clarkson was told he could n't get a steak at yorkshire hotel after a day 's filming . but mr tymon told police he did not want to press charges . officers have now announced that mr clarkson will not face prosecution .\njack grealish was excellent in fa cup semi final victory . tim sherwood praises his young star , who outshone liverpool midfield . grealish was wearing children 's shin-pads during the wembley fixture .\nbradley wiggins finished 18th in the paris-roubaix . wiggins is set to leave team sky to ride in his own squad called ` wiggins ' race almost had dramatic incident when riders narrowly missed a train .\nrobert dellinger , 54 , was sentenced in court on thursday . amanda murphy , 24 , and jason timmons , 29 , were killed instantly in the crash in lebanon , new hampshire in december 2013 . investigators said dellinger was depressed and drove his suv head-on into the couple 's car on purpose . murphy was eight months pregnant with their first child , a girl . dellinger was given credit for the 15 months he has already spent in jail . he could could be out of prison in less than eight years .\nandy murray and long-time girlfriend kim sears will tie the knot in the scottish town of dunblane on saturday . the british no 1 and his partner met when they were teenagers at the us open in new york in 2005 . murray and sears confirmed their engagement last november after more than nine years together .\njohn helm was commentating on the game the day the fire broke out . he gives his insight into what cause the blaze 30 years ago . ` from everything i have been told there is n't a jot of evidence to suggest the blaze was caused deliberately , ' says helm .\nrichard eckersley started his career with manchester united . but the defender played only two premier league games for the red devils . eckersley recently left new york red bulls and is training with elche .\ndebris landed on paula viccica 's property in west pittston , pennsylvania . she said she saw bits of paper falling from the sky for several minutes . homeowner believes the debris came from a plane flying overhead . she filed a complaint with the federal aviation administration . paula said she wants an assurance ` that it does not pose a danger '\nromanian-born alexandra harra , 28 , has become an instagram star . model , who 's posed for playboy , posts selfies with inspirational messages . after dyeing locks black , being hailed as a rival to kim kardashian .\nchris ramsey says he has no problem shaking hands with john terry . queens park rangers host chelsea in the premier league on sunday . terry was once banned and fined for racist comments at loftus road . rio ferdinand , brother of anton , will not be fit to play against chelsea .\nwarning : graphic content . footage was released along with other key pieces of evidence . video played in court shows truck pulling up to driveway of burger stand . his pickup then backs up after a struggle and runs over sloan 's leg . the vehicle is then seen plowing over carter , killing him . other pieces of evidence included an hour-long interview with cle ` bone ' sloan , who survived being run over by the death row records co-founder . a number of images taken immediately after his arrest were also released . close-ups of his face were intended to show injuries he sustained after being punched by sloan .\nrebecca eldemire and larry tipton , 27 , were found dead in her bedroom in oxford , ohio on feb. 1 after her roommates heard loud bangs . a coroner 's report revealed tuesday eldemire was shot at ` intermediate ' range and there were no signs of struggle . the night before , eldemire had called oxford police to ask for protection when he arrived at the apartment and police stopped him in the parking lot . she instructed the officers to accompany them to her apartment but after talking , she asked them to leave and they did .\na 41-year-old driver hit and killed a 2-year-old girl sunday evening when the toddler ran front of his van in a milwaukee neighborhood . the driver , archie brown jr. , stopped at the scene . moments later , someone from the home where the toddler lived opened fire - shooting brown dead and fatally wounding a 15-year-old . police are investigating whether the shooting was revenge for the fatal traffic accident . the gunman responsible has not been arrested . brown was a father of four with a young daughter of his own .\nnew royal caribbean cruise ship anthem of the seas is sailing out of southampton this summer . it has innovations including robot bartenders who dance to music as well as pour margaritas . the liner holds the title of being the world 's third largest cruise ship , with room for nearly 5,000 passengers .\na superior court judge in north carolina ruled on monday that craig hicks is ` death penalty qualified ' he has been charged with first-degree murder in the killing of three muslim college students on february 10 . his victims were deah shaddy barakat , 23 , his wife , yusor mohammad abu-salha , 21 , and her sister , razan mohammad abu-salha , 19 . the victims ' families are adamant that they were targeted because they were muslims and have pushed for hate-crime charges .\nshooter identified as kenneth stancil who was once a student at college . he ` carried a long gun ' and ` fired one shot ' that killed worker rodney lane . wayne community college in goldsboro was on lockdown just before 9am . college campus was systematically evacuated as swat teams arrived . the college is one hour away from raleigh and has 3,900 students .\n21-year-old student jackson gordon has designed and built a functional batsuit . made with money raised on kickstarter , the outfit has received a prestigious endorsement .\nmanchester united take on rival manchester city on sunday . wayne rooney knows pride is at stake in the premier league clash . united have lost their last four meeting against city . sergio aguero : scoring at manchester united gives me shivers . read : just how ` manc ' is the manchester derby ?\naustria drew 1-1 against bosnia-herzegovina on tuesday night . david alaba picked up a knee injury during the first half of the game . alaba was out for three months earlier this season after he suffered a partial ligament tear in his right knee .\namir khan could be set to face manny pacquiao in abu dhabi , uae . khan 's hopes of taking on floyd mayweather jr in las vegas have faded . pacman 's promoter bob arum has a mega offer for a uae fight late in 2015 . khan is a hero of the muslim world and his lure in the middle east is clear . the brit will be ringside when the money man fights the pacman on may 2 . khan must first win interim bout with chris algieri in new york on may 29 .\nandrew chan is the youngest of four children and the son of chinese immigrants who worked as a supervisor for a catering company . myuran sukumaran , a university drop-out and the eldest of three , lived with his parents while working in a mail room . both men revealed that flashy lifestyles attracted them to drug smuggling . they were arrested in 2005 for organising eight kilos of heroin to be smuggled out of indonesia , and sentenced to death five months later . in nearly ten years on death row , chan found god and become a christian pastor ; sukumaran became an artist .\na routine scan showed danielle davis ' baby had a cyst on her brain . she refused a termination , but baby daisy was later born with no eyes . suffers from rare condition called anopthalmia , meaning a lack of eyes . daisy will never be able to see , but cosmetic glass eyes could be fitted .\nstudy analysed those taking selective serotonin reuptake inhibitors -lrb- ssris -rrb- found 69 % did not meet the criteria for clinical depression . and 38 % did not meet the criteria for other mental conditions like anxiety . experts : ` drugs are prescribed without an evidence-based diagnosis '\njudge jerry baxter called the cheating scandal ` the sickest thing that 's ever happened in this town ' as he sentenced the teachers on tuesday . all but one of the 10 former atlanta public school educators were sentenced to jail time . the judge had encouraged all of the accused to negotiate deals , but only two agreed and received lighter sentences . the remaining eight received harsher sentences , ranging from one to seven years in jail .\ndiane mclean 's four-bedroom rent-stabilized apartment was destroyed in the explosion last week . she paid $ 1,500 a month of east village home - a deal she may never find again . gofundme has raised $ 87,000 for her family .\ndavid cameron to announce that children will have to retake the three rs . children who do not pass tests aged 11 will sit them again the next year . about 100,000 pupils a year do not pass primary school english and maths . these children will be given extra help to stop them falling behind , pm says .\nfloyd mayweather has posted a video showing off $ 210,000 purchase . the video shows the mercedes-maybach s600 at a number of angles . boxing legend mayweather has an incredible collection of sports cars . the american takes on manny pacquiao in las vegas on may 2 . the 38-year-old is expected to get # 120million for fight with pacquiao .\nyaya toure arrived at manchester city in 2010 from barcelona . he has led city to two premier league titles , an fa cup and a league cup . if he departs city in the summer , the club will find it hard to replace him .\ntyson gay had his ban reduced after helping authorities . usain bolt says he is not looking forward to competing against gay . bolt says he feels ` let down ' by someone he used to respect . gay is the joint-second fastest man of all time , behind bolt .\nnew programming tools can rapidly adapt apple and android apps . firm also revealed new browser to replace ie will be called edge .\nbrent council told veteran robert clark they were unable to afford his care . added he would have to move from his own home and into a care home . mr clark had already used most of his life savings paying for a live-in carer . an appeal has raised # 10,000 in four days to help him stay in his own home .\nkevin coulton , 16 , from manchester stuck his mouth in the rim of a glass . the schoolboy wanted to achieve a fuller pout like celebrity kylie jenner . but , like scores before him , he was left with painful bruising around lips . now he is warning peers not to take part in craze sweeping social media .\n` egg thief lizards ' preserved in rock for 75 million years were studied . university of alberta experts said differences in size and shape of tail bones enable male and female small feathered dinosaurs to be sexed . males have long ` chevron ' bones so they can wiggle their feathered tails seductively to woo mates , while females have shorter bones in their tails .\nconservationist edwin sabuhoro founded a cultural village in rwanda . the village provides work for poachers and unemployed youth .\nprince william had been expected to work as pilot until the end of april . duchess of cambridge is based in london and baby is due this saturday . william using unpaid leave and paternity leave to stay off work until june 1 . prince harry is back for marathon on sunday so could see niece or nephew .\ncriticised over ` incompetent ' handling of bank 's tax evasion scandal . announced her departure in a letter to shareholders . follows calls by mp margaret hodge for fairhead to quit bbc role .\nthe walter scott shooting inspired a local artist to create artwork . phillip hyman crafted the angel-winged artwork in the middle of the night . protesters from the black lives matter movement have started using it as his symbol .\nphotographs taken by satellite show sandstorm hitting arabian peninsula . massive dust cloud was believed to be almost as large as the u.s. . it billowed across saudi arabia , the uae , oman and as far east as india .\ndr. kristen lindsey has since removed the post of her holding the dead cat by an arrow . her employer fired her ; the sheriff 's office is investigating . activist offers $ 7,500 reward .\ngood friday commemorates the crucifixion and death of jesus christ . ` way of the cross ' walks took place in ohio , pennsylvania , los angeles and over the brooklyn bridge , among others . just a few of the events that were taking place all over the world at holy week nears its end . tens of thousands of people flocked to pope francis ' good friday procession at the colosseum in rome .\nleaked report suggests g36 rifle did not shoot straight when it overheated . german army carried out tests and none of the 304 assault rifles passed . the weapon is used by british counterterrorism officers across the uk . an urgent home office review has been called for in light of the findings .\nconfessed to dr. phil that she is struggling with alcohol in emotional interview . spoke about her arrest on april 16 when she was taken into custody at the beverly hills hotel for a ` drunken incident '\nleslie roy , 52 , and lee wright , 56 , had been visiting relatives in michigan when on april 11 their ford explorer got trapped in snow on remote road . suv lost power and they had no cell phone service to call for help . roy and wright wore layers of clothes to stay warm as overnight temperatures fell to the 20s . survived by rationing eight boxes of girl scout cookies , a bag of cheese puffs and melted snow . helicopter pilot noticed a reflection off the ford explorer friday and rescued the trapped women .\nrommel , nicknamed the desert fox , became an iconic wartime figure . he was known for the stylish goggles he wore across his peak cap . they were actually a gift from british major general michael gambier-parry . he gave them to rommel after the general helped retrieve his stolen hat .\naaron taylor-johnson , 24 , is so mature friends call him benjamin button . hollywood actor says he ` does n't notice ' 23-year age gap with wife sam , 48 . the couple have been married for two years and have two daughters .\njaclyn methuen nearly left her husband ryan ranellone at the altar because she was n't physically attracted to him .\nmiddleton wrote about eating whale for a national newspaper travel story . she described eating it at the # 123-a-night juvet landscape hotel . whale and dolphin conservation group said the news was ` disappointing ' the wdc said ms middleton should have gone whale watching instead .\ncuban leader met venezuelans in havana ` for hours , ' state media says . appearance on monday was first since january art show last year . longtime president had met in private with cuban spies in february .\nthe eight-year-old girl who died in a nsw car crash has been identified . piper was with her brothers , mother and grandmother during the accident . one of her brothers continues to fight for his life in westmead hospital . piper 's death brings the national easter long weekend road toll to 10 .\nspencer gerlach , 20 , admitted to stabbing his ex-wife keltsie gerlach to death as their 15-month-old daughter slept in the next room . the baby girl was unharmed and was taken into custody by child services . the cause of argument that led to the murder is unknown . spencer faces first-degree murder charges and was booked at elder county jail .\nvirgil van dijk was on holiday in dubai while holland played two games . young celtic defender has n't been called up since last year . ronny deila says it is n't due to standard of scottish football . team-mate jason denayer made his belgium debut against israel .\nlazio host empoli at the stadio olimpico in serie a on sunday . roman outfit secured spot in coppa italia final in midweek . beat napoli 2-1 on aggregate and will face juventus in the final . defender mauricio captures fans celebrations with selfie stick .\nthe vivienne westwood suite will debut at the london west hollywood . opening in may , the 11,000 square foot suite is dubbed the largest in la. . the english designer 's cushions , tapestries and scarves are on display . guests can have an exclusive hour of shopping at westwood 's store .\nprince abdul malik , 31 , marries data analyst dayangku raabi'atul ` adawiyyah pengiran haji bolkiah , 22 , today . malik is the youngest child of the sultan and wife , queen saleha , and is second in line to become the next sultan . ceremony took place in the monarch 's lavish 1,788-room residential palace , istana nural iman in brunei 's capital .\nanthony ray hinton released 30 years after being in prison on death row . hinton was convicted of shooting to death two fast food restaurant mangers in two separate 1985 robberies . hinton was granted re-trial by the u.s. supreme court and experts found that there was not enough evidence to prove hinton 's gun shot the men . ` he was a poor person who was convicted because he did n't have the money to prove his innocence at trial , ' said hinton 's attorney .\nmanchester united beat their rivals city 4-2 at old trafford on sunday . it led to supporters claiming manchester had been turned red once more . united had lost their four previous derbies against their great rivals city . louis van gaal appears to have turned united 's fortunes round this year . sportsmail 's ian ladyman examines the issues after the fierce derby . read : five things van gaal has done to transform results at man utd .\nalan gordon put la galaxy into the lead after 23 minutes with a header . robbie keane and clint dempsey both missed the game through injury . lamar neagle had a number of chances to score for the visitors . david beckham was present to watch the mls clash at the stubhub arena .\nthe video was filmed in the state of washington , where recreational use of marijuana was legalized in july of last year . each of the three police officers admitted to trying the controversial drug in the past .\nscott suggs , 28 , and brandy kangas , 36 , locked three children in room . room was ` sparsely furnished ' and stained with human urine and feces . girls , three and four , and 17-month-old boy were fed meals through gate . couple were arrested after police received anonymous tip about abuse . both given six-year suspended sentences after admitting child neglect . victims , who lacked social skills when found by police , are now in care .\npatrick cherry will be placed on desk duty before being transferred out of the nypd 's joint terrorism task force division . cherry was investigated by the civilian complaint review board after an uber passenger recorded meltdown . ` no good cop should watch that video without a wince , ' nypd police chief bill bratton said at a press conference wednesday . cherry was reportedly on his way back from visiting a colleague in hospital . the uber driver ` honked ' at cherry as he pulled into a parking space without signalling .\njohn elder and armin wegner both documented the unimaginable suffering they witnessed through horror pictures . wegner used secret mail routes to sneak images out but was caught by german police and sent to cholera ward . helped build case against turkish government which still denies killing of up to 1.5 million armenians was genocide . as world marks 100 years since the atrocities many western governments including the us still do not use the word .\njohn terry racially abused anton ferdinand at the ground in october 2011 . terry is always the subject of crowds anger when he returns to qpr . however , he performed well as chelsea snatched late winner .\neaze app lets people order marijuana for medical purposes to their home . californian start-up raised $ 10 million to roll out app to other states . lists the composition of cannabis and users pay when they receive drugs . orders can arrive in minutes from drivers that have been vetted by the firm .\nbbc is aiming to compete with internet services which have captured younger generation of viewers . new technology boss vows to make the corporation ` internet first ' . but the move will raise questions over the future of the tv licence fee .\nsydney harbour bridge is the most ` instagrammed ' aussie landmark while the second is bondi beach . the sydney opera house ranks third in the top 20 list , released by love home swap on wednesday . other attractions include the twelve apostles in victoria and the big banana in coffs harbour , nsw . the home-swapping site says nearly 60 million photos are uploaded to instagram each day .\nthe 79th masters tournament starts on thursday at augusta national . rory mcilroy tees off his bid for a grand slam alongside phil mickelson . tiger woods returns to action and plays in group with jamie donaldson .\nex-celtic striker john hartson has opened up about his battle with cancer . he was diagnosed with cancer at the age of 33 . hartson spoke of how he has turned his life around since his recovery .\nthe film is out in theaters today . co-star paul walker died during production . critics say `` furious 7 '' is bittersweet and `` plenty of crazy fun ''\njeremy clarkson last night launched into a bizarre rant about being sacked . he claimed the upside was that he could now swear without punishment . clarkson also mistook a male bidder for a female during charity gig . he later joked to the cotswolds crowd that he was ` trawling the job centre '\nyoung women can get cheaper car insurance than men , economist warns . he says drivers with jobs mainly done by women offered lower premiums . newcastle university 's stephen mcdonald analysed this pay-by-job system . dental nurse , 21 , likely to pay 10 per cent less than they would have in 2011 .\nkamron taylor was waiting to be sentenced for the 2013 murder of nelson williams jr , 21 . recaptured on friday with loaded gun in chicago after police tip-off . he fled illinois prison on wednesday after being guard unconscious . was seen on cctv wearing guard 's uniform and driving his suv . fears he was hunting down victims family after shouting threat in court . he is now in custody on weapons charges .\nnovelist , who died last year , had huge success with adrian mole books . the eight-book series sold more than eight million copies worldwide . she left the bulk of her estate to her second husband colin broadway .\nhull 's chief scout stan ternent has watched maciej rybus in russia . rybus is a poland international and plays for terek grozny . premier league rivals leicester and swansea are also interested . the 25-year-old has one year left on contract and has # 3.2 m release clause .\nyamini karanam , 26 , was diagnosed with a pineal brain tumour . surgeons operating to extract the growth made a startling discovery . they found a teratoma - an embryonic twin with bone , hair and teeth . teratomas are often found in ovaries , testes but more rarely in the brain .\nrussian lgbt activist elena klimova found her trolls on social media . she posted candid photos of them along with their hate-filled messages . mailonline has chosen to blur the faces of those exposed .\njackie mcnamara 's dundee united have lost their last five games . united 's last defeat came against rivals dundee on wednesday . goalkeeper radoslaw cierzniak tipped his side to win treble in january . fans believe mcnamara 's position at the club is ` untenable ' .\namol gupta was playing in a match on roosevelt island in april 2013 when he injured himself . gupta suffered a broke nose and elbow , and damaged his spine when he slammed into retaining wall . kickball game was organized by zogsports league .\nkell brook will make the second defence of his title in just over two months . he will take on fellow brit frankie gavin at the o2 arena on may 30 . brook stopped jo jo dan in the fourth round in sheffield last month . anthony joshua , lee selby and kevin mitchell will also be on the card . click here for all the latest boxing news .\npeta spokesperson pamela anderson joined forces with arizona sheriff joe arpaio to promote the benefits of a vegetarian diet for prisoners . arpaio says cutting meat from the meals served to the more than 8,000 inmates has saved an estimated $ 200,000 per year . reporters on a previous visit to the prison discovered the carrots in the stew were brown and that the soy looked like ` wood chips ' the pr stunt at maricopa county jail on wednesday has been described as ' a new low for peta ' arpaio is better known for his controversial opinions and racial profiling of latinos , than his dedication to a vegetarian diet .\nbritney e. montenegro was charged with disorderly conduct . she got into a fight in downtown orlando about 2.40 am saturday . police say she charged at another woman ` with her fists raised ' she had a minor cut on her shoulder and blood all over her face . montenegro is a college student and originally from queens , new york .\nchildren 's story written by queen victoria aged 10 now set to be published . short story tells tale of girl sent to boarding school after her mother died . story written in monarch 's ` composition ' notebook as part of her studies .\nexclusive : zinedine zidane has confirmed real madrid are keen on signing liverpool winger raheem sterling . sterling has rejected the chance of signing a # 100,000 a week deal . zidane has revealed real have been ` monitoring ' england ace sterling . real monitored the likes of gareth bale and isco before completing deals . read : liverpool may struggle to sign big names , says brendan rodgers .\ntom sturridge , 29 , will star in american buffalo alongside damian lewis . he is fast becoming a critics ' favourite but is picky about his work . engaged to sienna miller , the mother of daughter marlowe . born into an acting family , he 's best friends with robert pattinson .\ncurt almond , from bristol , spent # 40 per week on new calvin klein boxers . during a year-long addiction , mr almond forked out # 2,000 on 365 pairs . he threw them away after one wear so he could enjoy ` crisp pair ' each day . mr almond , 26 , forced to curb habit after craze almost landed him in debt .\ntrailer 'em bedded ' into car windscreen in smash on a444 in coventry . impact would have ` certainly been fatal ' if a couple of inches closer to driver . paramedics were shocked when marcin wasniewski walked out unaided .\nazle has recently been shaken by 27 quakes with magnitude two or greater . scientists say this is the result of injecting wastewater into the ground . this increases pore pressure in the rock causing faults to ` fail ' more easily .\nsnp leader refuses to rule out calling for another vote on independence . nationalists had called last year 's referendum ` once in a generation ' opponents accuse sturgeon of breaking a ` promise the size of ben nevis '\nbayern munich face bayer leverkusen in the german cup quarter-finals . pep guardiola has just 16 fit players to pick from on wednesday night . bastian schweinsteiger , arjen robben and franck ribery all ruled out . guardiola believes jerome boateng is one of the world 's best defenders .\naston villa teenager jack grealish was pictured taking ` hippy crack ' grealish was in impressive form in aston villa 's win over liverpool . villa boss tim sherwood has warned grealish over his future behaviour .\nsarah weatherill , 31 , spent # 5 , 460 every year on the popular energy drink . her 24-a-day habit left her lethargic , depressed and with heart palpitations . if she cut down too quickly she was told she risked suffering a seizure . claims her addiction was cured by one 50 minute hypnosis session .\ntom wood took to twitter to jokingly thank clermont for training session . tweet came after northampton were thrashed 37-5 in the champions cup . hosts amassed an unassailable 27-0 lead by half-time in france . northampton director of rugby jim mallinder admitted defeat was among the most distressing nights of his career .\nmore questions than answers emerge in controversial s.c. police shooting . officer michael slager , charged with murder , was fired from the north charleston police department .\npsg travel to nou camp on tuesday with barcelona in command of the tie . luis suarez inspired barca to 3-1 win in paris . but zlatan ibrahimovic will return for second leg in spain . blanc says barca have ` incredible talent ' but his side have nothing to lose . read : egotistic ibrahimovic will believe barcelona will be in awe of him .\nexperts have voiced concerns over diy brain stimulation kits for children . for a few hundred dollars , one can be purchased online from various sites . it promises to help children with math homework and claims to help adhd . professor colleen loo from the black dog institute strongly believes that the equipment poses a danger to amateurs and children . the equipment is currently being used to treat people with speech impediments but is still very much in trial stages .\nthe queen is celebrating her 89th birthday today at home at windsor . she is spending the day privately with prince philip and her family . her majesty is enjoying renewed popularity , especially on social media . a snap of the queen photo-bombing a hockey player went viral last year . she is set to welcome her fifth great-grandchild within days .\ndarius is world 's largest rabbit at 4ft 4in , weighing three and a half stone . but his son jeff is 3ft 8in and still has six months left of growing to do . the monstrous pair are owned by annette edwards , of worcestershire . both munch through 2,000 carrots and 700 apples per year , costing # 5,000 .\nserie a giants inter milan are stepping up their efforts to sign yaya toure . roberto mancini is keen on working with the midfielder once again . manchester city will offer toure new deal at the end of the season . toure scored in manchester city 's 2-1 defeat at selhurst park . read : toure accused by carragher of ducking out of the way of puncheon 's free-kick . click here for all the latest manchester city news .\nfossilised cone snail shells found in cibao valley of dominican republic . in visible light they appear to be a plain white colour as the pigments faded . under ultraviolet light , however , the vivid patterns and colours fluoresce . scientists were able to reconstruct how the ancient species once looked .\npoll found 45 per cent of briton lied about their spending to their partner . one in four people do n't admit how much they really spend on themselves . finances ` should not be a taboo subject ' urges money advice service .\njon jones is wanted as a suspect in connection with sunday 's accident . a pregnant woman was sent to hospital with ` non life-threatening injuries ' , according to albuquerque police department spokesman simon drobik . marijuana and a pipe reportedly found in star 's car by police . jones would be liable for damages to the vehicles involved and medical costs of the 20-something woman if he was found to have caused crash . 27-year-old is set to defend his light-heavyweight title against anthony johnson in las vegas at ufc 187 next month . click here for all the latest ufc news .\nfritz the golden retriever from california has made quite a name for himself with his inability to catch . his youtube channel boasts more than five million hits . other videos show him being thrown steak , tacos , bread rolls , pizza and donuts , with misses every time .\ngerry sutcliffe does not believe there should be a fresh inquiry into the fire . the inquiry at the time concluded the fire was started by a discarded cigarette in an old wooden stand . a new book claims former bradford chairman stafford heginbotham was linked to previous fires before the disaster .\nthe sister of murdered hairdresser said her sibling visited several women 's shelters every day but was refused a room . leila alavi was found in dead in a car at a sydney shopping centre carpark . she was working when she reportedly received a phone call and left . a colleague found the 26-year-old stabbed to death on saturday morning . court papers allege she was killed with a pair of scissors . her estranged husband was charged with murder and refused bail .\npepperdine university seeks ways to meet new usage allowances , turns off fountains . drought-stricken california for the first time imposes water restrictions . executive order demands that cities and towns reduce water usage by 25 % .\nno fewer than ten english clubs have shown interest in nicky law . brighton , birmingham and reading are showing the strongest interest . midfielder law is rangers ' top scorer with 12 goals this season .\nit 's national park week , and that means the parks are free april 18-19 . stargazing , revolutionary war programs and other fun happens this week .\nleah williamson reveals she could n't sleep ahead of crucial penalty retake as england earn 2-2 against norway . mo marley 's side qualify for european championships in israel . uefa ordered the final 18 seconds of the qualifier to be replayed after a refereeing mistake . referee marija kurtes incorrectly awarded an indirect free-kick to norway for encroachment after disallowing england 's penalty on saturday . england were 2-1 down to norway at the time in the 96th minute . german kurtes , 28 , has been sent home following her error . it is the first time ever that a decision like this has been taken by uefa . watch video below of the controversial penalty incident . read : graham poll 's expert verdict on uefa 's bizarre decision .\na student walked into north thurston high school in lacey on monday morning with a gun and fired twice at the ceiling . brady olson , a government teacher , tackled the teenager to the ground and kept him pinned on the floor until authorities came and arrested the boy . the unidentified shooter only transferred to the school a month ago . students praised the popular teacher for his quick-thinking and said they were not surprised that he had come to their rescue .\nthe tv star was spotted at the martinhal beach resort in portugal . five-star luxury hotels and villas are family-friendly and offer a baby concierge . is one of the best resorts in the algarve and is situated a stone 's throw from the beach .\nexam board officials yesterday unveiled draft syllabus for kids aged 14-16 . some students will be asked to study review of gritty 15-rated foreign film . other gcse pupils will look at spanish tweets on the olympic games . proposals aim to rid classes of ` tired phrases ' now through to be outdated .\nmanchester united looking to tie up a deal for memphis depay . the dutchman has been in scintillating form for psv this season . depay met with united on wednesday but phillip cocu was unaware . cocu did , however , concede the premier league is ` great ' click here for all you need to know about depay .\njessa , 22 , and ben 19 , announced the baby is due on november 1 , their wedding anniversary . the newlyweds said they are talking about baby names now but did not give any hints about the gender . this is a first child for the couple who star on tlc 's 19 kids & counting . this will be the duggar family 's sixth grandchild ; jill welcomed her first son earlier this month and son josh is expecting his fourth child . the couple live in a small house in arkansas owned by jessa 's parents .\ned miliband will announce that he has ` clear , credible plan ' on immigration . but yvette cooper refused to say labour would put target on net migration . shadow home secretary only said she wanted it lower than current 300,000 . during labour 's 13 years in power , foreign-born population rose by 3.6 m.\ntomorrow will be week 's warmest day and met office says above-average temperatures are forecast until june . weather , caused by warm air from the azores , creating conditions we might usually experience in july or august . bookmakers are receiving tens of thousands of pounds in bets on weather records being broken this summer . public alerted to dangers in water as jellyfish arrive early off coast and firefighters issue ` tombstoning ' warning .\ncab driver sings along to pavarotti word perfectly and in tune . passenger is shocked and congratulates the man while filming .\nforecasts show prices will rise at a fraction of last year 's frenetic pace . london will fare worst with prices dropping by 3.6 per cent over next year . this follows last year 's record price hike of 17.4 per cent in the capital . economists said that the housing market had ` got ahead of itself ' last year .\nmanny pacquiao takes on floyd mayweather in las vegas on may 2 . pacquiao will hold a public workout tonight in his gym in la. . mayweather held his last night at the mayweather boxing gym . the fight will be worth at least $ 300m , the richest in boxing history . read : mayweather admits he no longer enjoys boxing .\nrichie sambora is about to be quizzed by police over claims he ` threatened to kill ' his former fashion designer lover and business partner . she is a childhood friend of kim kardashian . police in the wealthy los angeles suburb of calabasas confirmed sambora is a ` person of interest ' in an active investigation into criminal threats . their joint venture collapsed at the last moment and nikki went out on her own . rock star is believed to be on vacation in bora bora with his ex-wife heather locklear and daughter ava .\njohn terry was involved in race controversy with anton ferdinand in 2011 . chelsea defender was banned for four matches and fined by fa . terry was cleared in court of racially abusing then-qpr defender . blues captain will face rio ferdinand 's qpr side at loftus road on sunday . team-mate gary cahill says he will be able to deal with hostile atmosphere .\nchancey luna convicted of murder for gunning down oklahoma college student as he jogged . police : luna and his friends `` were bored '' so they decided to kill somebody .\nderby 's tom ince scored two long-range goals at huddersfield in a 4-4 draw . play-off chasers derby were 1-0 up , 3-1 down and 4-3 behind in the game . the amazing contest also saw huddersfield have three goals disallowed .\nc.j miles and george hill were in impressive form during win over wizards . pacers have chance of making fifth straight playoff appearance . la lakers won final game in regular season against phoenix suns .\nforeign fighters are increasingly signing up to fight isis on the front lines . for some of the jihadist group 's foes , foreign fighters are not welcome comrades . training and logistical support , some argue , is the best way to support the fight against isis .\ndashcam footage shared by dailymotion.com user vidsking , shows a st. bernard dog running across a road somewhere with a child trailing behind . it appears to be a rather uncomfortable excursion , with the young boy being pulled along the ground on his belly .\na woman named michelle told police that the white van drove through a red light at about 2:30 p.m. on tuesday and almost hit her vehicle . cell phone footage shows him throwing a bottle at her car . police have identified the driver as daniel robert frank , 28 . frank is helping police with their misdemeanor criminal mischief investigation and his attorney claims michelle threw something at his van .\na balanced diet can get harder to achieve around the holiday times . to keep healthy it 's important to maintain regular exercise . to burn off four mini easter eggs you 'll need to exercise for 40 minutes . a large easter bunny would have you on the squash court for 3 hours . those who eat hot cross buns would spend an hour hitting the pavement .\na sydney woman has put up posters to find the man who lent his umbrella . missiesmile21 is ` actively looking ' for the man with ` most beautiful smile ' the gentleman helped her cross a road during tuesday nights ' downpour .\narsenal defeated reading 2-1 after extra-time to reach the fa cup final . alexis sanchez scored both goals in his debut season for the gunners . the chile international also scored twice against england at wembley . gianfranco zola and robin van persie both won the cup in their debut seasons in the premier league .\njimmy anderson claimed his 381st test wicket on tuesday in antigua . the 32-year-old dismissed devon smith for 10 on day two of first test . anderson is still two wickets behind sir ian botham 's record of 383 . chris jordan says that the record is ` just around the corner ' .\nryder cup-winning captain paul mcginley speaks highly of rory mcilroy . world no 1 wants to be ` an iconic figure in world sport , ' said mcginley . mcilroy 's not all about winning titles , he wants to propel the game forward . mcilroy could be the sixth man to win the grand slam at augusta national . he is the favourite for the masters , where his best finish there is eighth . mcginley said mcilroy intimidates opponents , but not like tiger woods did .\nliverpool go to blackburn for fa quarter-final replay on wednesday . gary bowyer 's recalled john o'sullivan from league one barnsley . because the midfielder was on loan for first tie he ca n't play in replay . bowyer 's squad have played 13 games in 43 days with a squad of 24 .\nwojciech szczesny has watched on from the sidelines in recent months . form of david ospina has lifted arsenal to second in the premier league . seaman gives poland keeper confidence boost ahead of fa cup semi-final . read : alexis sanchez would grace the great arsenal teams .\nman in his twenties said to have bent down to pick up his bag at stockwell . he was hit on the head on northern line platform of south london station . commuters have said the platforms are too narrow and unsafe when busy . man was rushed to hospital with life-threatening head injuries .\nbrandon afoa , 33 , of puyallup was operating a tug to push back aircraft at seattle-tacoma international airport when the brakes and steering failed , causing him to crash into a luggage lift . the incident , which took place on december 26 , 2007 , left afoa unable to use his legs or right arm . for years the case was locked in courts because the port of seattle claimed it was n't liable as afoa worked for a private company . however , the state supreme court ruled the airport operator had a ` duty ' to provide a safe working environment . a jury awarded the judgment on tuesday .\njamie anderson says cgi characters lack the ` magic ' of the iconic show . says he is ` very fond of puppets and practical effects ' rather than cg ones . thunderbirds returns to our screens tonight 50 years since launch of show . original show aired between 1964 and 1966 and repeated in 1992 and 2002 .\nthe five-year-old pooch was filmed at home in pennsylvania as he struggled to keep his eyes open while sitting on the couch . adding to the comedy , some smooth jazz was dubbed over the final video edit .\nbolton-based direct assist has gone into liquidation after receiving the fine . more than 800 concerns registered about the company in just 18 months . firm plagued households offering people access to solicitors for claims .\ndaniel pena set up an elaborate proposal to ask his girlfriend to prom . teen erected signs : ` alex will you marry lol jk go to prom with me ' but not realizing they were for her alex blasted the proposal as 's **** y ' when the penny finally dropped she was so mortified she burst into tears .\ncelebrities would have competed to outrun rampaging bulls in spanish show . idea axed following anger from local authorities in pamplona . mayor said he feared it would turn world famous san fermin fiesta into big brother .\nfive-year-old ava ciach , from geelong in victoria , had sagittal synostosis . she had to have her skull removed , smashed and put together like a jigsaw . her mother stacey is speaking out about the complex operation to raise awareness for the royal children 's hospital 's good friday appeal .\njondrew lachaux is married to the teenager 's mother kellie phillips . lachaux allegedly sexually assaulted the teen and she became pregnant . parents went on road trip for months and left her to care for sister . she gave birth alone in her mother 's bed and her little sister died . lachaux told the teen she was not allowed to call 911 for help . teen then hid in the body in a box under lachaux 's instruction . lachaux kicked the teen out of the house and she slept at airport with baby .\njamie carragher watched the mediterranean international cup . carragher 's son james plays for the liverpool u12s . lionel messi and cesc fabregas have played in the tournament . neymar , geard pique , oscar and juan mata have also starred .\njason matthews , 40 , parked in side street before manchester marathon . after finishing race in five hours 11 minutes he was unable to find saab 93 . delivery driver spent hours searching around old trafford stadium . council has no record of the car being towed or impounded .\nabdul hadi arwani found dead in his ` perfectly parked ' car on tuesday . gunman probably used a silencer and chose an area away from cctv . father-of-six from acton , west london , had links to muslim brotherhood .\nnew orleans bars are smoke-free as of wednesday morning . a lawsuit by harrah 's and bar owners seeks to overturn the ban .\nin recent facebook q&a , zuckerberg discussed the future of travel . expects that a greater emphasis will be on sharing 3d virtual reality scenes . last year , facebook purchased virtual reality headset marker , oculus .\nfor u.s. moms , the typical time between pregnancies is about 2 1/2 years . experts say mothers should wait at least 18 months to give their body time to recover and increase the chances the next child is full-term and healthy . the study found that about 30 percent of women who 'd had a child became pregnant again within 18 months .\nisis says it controls several buildings at the baiji oil refinery . iraqi government security officials say iraqi forces remain in full control . the refinery , iraq 's largest , has long been a lucrative target for militants .\nbundles of notes spilled onto interstate 20 in albilene , texas , on friday . passenger door of vehicle flung open - releasing the money onto the road . motorists pulled over and abandoned their vehicles to pick up the cash . police have warned anyone caught with the money will be arrested .\nbritish grandmother lindsay sandiford was convicted of smuggling drugs . she has been sentenced to death and is currently on death row in bali . her pal andrew chan who also smuggled drugs will be executed tuesday . she has told friends that if they kill andrew , ` what hope is there ' for herself .\nwilson voiced fears in a letter to then home secretary james callaghan . he said he wanted to be able to tell the queen ` programme ' could proceed . metropolitan police were sent to wales to join the fight against extremists .\njin pai was standing on rim of a toilet in hefei xinqiao international airport . the porcelain toilet then tipped over and shattered on the floor . the 35-year-old is left with deep cuts to his leg and buttocks .\naustralian researchers have tested their drone running companion . called joggobot it is designed to float in front of jogger when they run . technology could allow it to track the speed and direction of the runner . and it could be used for other sports like cycling and rowing .\nmarc wabafiyebazu , 15 , bragged to officials that he and jean , 17 , would go on raids together around canada . the pair were ` buying $ 5,000 of marijuana ' when jean was shot dead . marc may be charged with his brother 's murder under florida law . details have emerged of their indulgent life driving mother 's bmw in miami . their mother is roxanne dube , the recently appointed canadian consul general in miami . they had driven to a house with friend joshua white , 17 , who also died . gunfire erupted soon after they entered , marc was in the car at the time . alleged dealer anthony rodriguez , 19 , was wounded . he was also arrested on charges of felony murder .\nadjoining homes are virtually identical , boasting indoor pool and sea views . but one of the beachfront homes in poole has an extra en-suite bedroom . properties have replaced a four-storey house which was sold for # 4.5 m. lloyds property group said they would suit couple who like independence .\npm says a minority labour administration would be propped up by the snp . latest poll shows the conservatives have nudged 3 % ahead of labour . mr cameron said a tory victory was needed ` effectively to save britain '\nmils muliaina won 100 caps for new zealand before retiring in 2011 . muliaina has been playing for connacht in ireland this season . the kiwi was playing against gloucester on friday night . muliaina was led away led away by police after the match .\ndanilo this week agreed to join real madrid in the summer for # 23million . transfer will take total raised from player sales to # 440m since 2004 . james rodriguez , pepe and radamel falcao among those sold by porto . click here for all the latest real madrid news .\ngertrude pitkanen started the illicit scheme in butte , montana in the 1920s . for around 30 years , she gave newborns to adoptive parents for cash . children involved in the crimes have aged , and are looking for answers . is only since the proliferation of dna that they have found lost relatives . group called gertie 's babies believe there are more children out there .\nshocking photo of baby elephant tied to a pole spark online campaign . more than 50,000 have signed petition to have baby elephant , nadia , freed . marina phuket resort reportedly keeps elephant in tiny enclosure . ` nadia ' is also forced to perform tricks and is ridden by resort guests . ` it is absolutely barbaric , ' says jaime singleton , who started campaign . comes after phuket resort posted pictures of baby elephant near pool . party-goers snapped dancing with elephant , and one person seen riding it .\nrussian intelligence chiefs took part in secret meeting with u.s. officials . outlined three potential flashpoints that could lead to all-out nuclear war . said attempts to return crimea to ukraine will be dealt with as an invasion . also demanded nato breaks up so called ` rapid response force ' in the baltic and stops arming those fighting pro-russian separatists in ukraine .\nkyle walker joins hugo lloris on tottenham hotspur sidelines . jan vertonghen a major doubt following illness . alan hutton , ashley westwood and scott sinclair likely to be absent . carles gil also set to miss out for aston villa but aly cissokho could return .\nlewis hamilton and nico rosberg to renew f1 title rivalry at bahrain gp . tensions rose in china after rosberg accused hamilton of being ` selfish ' but mercedes boss toto wolff is confident the matter has been laid to rest . hamilton heads into the race in bahrain leading the world championship .\nrita , 24 , has designed range for adidas originals . designs are inspired by asian culture , she tells femail . star says she 's excited to see what the future holds for her .\nrandy lerner was expected to make a rare appearance for cup sem-final . but lerner missed sunday 2-1 victory over liverpool after his aunt died . aston villa will face arsenal in the fa cup final on saturday may 30 .\nlandlord was convicted and fined for showing albanian footage of games . but landmark european court ruling has since ended such prosecutions . landlord has now had convicted overturned but has since lost his pub . premier league still taking landlords to civil court using copyrights laws .\nretired engineer dave tyler built his own observatory in garden in 1977 . uses powerful telescope to photograph solar system from home in bucks . takes pictures of variety of phenomena including solar flares and sunspots .\nletizia attended a lunch reception with king felipe today . yesterday , author pedro manas planted a kiss on her cheek . moment came during a literary awards ceremony in madrid . 42-year-old spanish royal had just presented him with a prize . royal looked glamorous in a # 49.99 blue jumpsuit by mango .\nthousands of children turned out for the event in sacramento , california . it was an attempt to break world record but they missed application deadline . adults invaded children-only event with baskets picking up candy . other parents raged that their two-year-olds had been crushed in the chaos .\ntony pulis has called on his players to embrace being cast as outsiders . west brom begin tricky fixture list with visit of liverpool to the hawthorns . baggies also face manchester united , chelsea and arsenal in the run-in . click here for all the west brom vs liverpool team news .\ngeorge osborne has warned that taxes will rise under labour government . chancellor claimed labour has ` done it before and will do it all over again ' taxes on earnings rose nearly # 1,900 under 13 years of labour , stats show .\nwaheed ahmed , 21 , detained alongside eight family members in turkey . rochdale labour councillor shakil ahmed 's son accused of fleeing to syria . he was arrested in turkish border town with family , including four children . will return to uk on a flight to manchester from dalaman later this evening .\nchris early , who owns a production company in knoxville , tennessee , bought a quadcopter to make commercials . however , he decided he could use it for personal monitoring purposes too . early released footage of one of his remote chaperoning sessions . the clip shows how he is able monitor his child 's location from the sky .\nwarning : graphic content . russian climber is struck by a falling icicle , causing a blood clot in his leg . using snow as an anaesthetic he cuts his own leg open with a scalpel . he scoops out the blood clot and sews up the wound with items in his kit . ten days later the stitches are removed and he is left with barely any scar .\na second `` fifty shades '' film will be released in 2017 , a third in 2018 . director sam taylor-johnson wo n't be returning .\nbeer made from waste gathered by sewage treatment firm in oregon , us . alcohol regulators in the state approved production of up to ten barrels . beer brewed to ` raise awareness of the reusable nature of all water '\nthe man , known only as xu , was keen to have a grandchild . he bought the ` daughter-in-law ' for # 1,311 at the beginning of 2014 . both his son and the woman that xu bought suffered from learning difficulties . after realising the young couple were not sleeping together , he began having sex with her himself . but when she failed to fall pregnant he decided to sell her on again . xu is under arrest for human trafficking at lianyungang in eastern china .\nmisao okawa died peacefully in her nursing home , surrounding by family . born in 1898 , great-grandmother celebrated her 117th birthday on march 5 . gertrude weaver , 116 , from arkansas , usa , now world 's oldest person .\ncaitlin kellie-jones was born with hypoxic ischemic encephalopathy -lrb- hie -rrb- medics had to put her on a special machine to help stop brain damage . now her parents paul and nicola want to raise money for the hospital . the family want to raise # 16,000 for two of the special cooling machines .\naustralian model agencies reveal new demand for social media following . gigi hadid and mimi elashiry are examples of models with huge followings . clients demand models have a minimum of 10,000 followers . models are learning to self-promote as part of their job . agencies chic and viviens now have ` influencer ' and ` blogger ' divisions .\nsimba went missing in early march in the town of meckenheim , germany . his owner 's neighbour heard scratching in her bathroom four weeks later . the pet was freed by firefighters and is now starting to put weight back on .\nbilal skaf has reportedly been attacked by inmates in goulburn prison yard . the gang rape leader was assaulted by three other inmates on friday . he was treated in hospital for head injuries and returned to prison . bilal skaf was sentenced a maximum 55 years in prison in 2002 for gang raping young girls in sydney 's southwest when he was just 18 . he is not eligible for parole until 2033 and shares a cell with his brother mohammed .\nmassacre of 1.5 million ethnic armenians under the ottoman empire is widely acknowledged by scholars as a genocide . turkish government officially denies it saying hundreds of thousands of turkish muslims and armenian christians died in intercommunal violence .\nmanchester city fans see prices of some tickets rise from # 885 to # 1,750 . club says those tickets now come as part of a ` different package ' city have reviewed stadium pricing following a 6,000-seat extension . cheapest etihad season tickets cost just # 299 .\n#tacocannon trends in omaha as excited fans eat up the idea of flying tacos . the cannon will shoot off tacos at university of nebraska-omaha 's new arena .\nrichard henyekane died in car accident in the early hours of tuesday . the former south africa striker was the only person to die in the crash . henyekane made nine appearances for south africa back in 2009 .\nwas thought magnetism was responsible for aligning and binding rocks . this could have led to early stages of planet formation , scientists said . rosetta results do not support theory as 67p 's core is not magnetised .\nthe world famous studios have never before been open to the public . but in a google first the web giant has made an app with a virtual tour . includes archived beatles photos and music videos of stars at the studio . users navigate round in the same way that google street view works .\nstan freberg was famed comedian , song parodist . he later became adman , did a number of outrageous commercials . `` weird al '' yankovic : '' a legend , an inspiration , and a friend ''\nmanjinder virk will play pathologist dr kam karimore in itv police drama . it is the first significant role for an ethnic minority actor in the tv show . it is four years since a producer said it was ` the last bastion of englishness ' brian true-may said show ` would n't work ' with ethnic minority characters . his comments caused a race storm that left itv ` shocked and appalled '\nsiobhan-marie o'connor won her second title of the british championships . the 19-year-old also sealed a place in britain 's world championships team .\nthe lonely jihadi has been attempting to give advice on relationships with jihadi brides . the extremists warns of ` temporary delight of sisters following you and praising you ' on social media . hussain initially joined jabhat al-nusra but switched to isis after just four months .\nrobert penny , 83 , is charged with the murder of two women in 1991 . one of the victims was his wife margaret penny , the other claire acocks . pair were found stabbed , their throats cut and were wrapped in hair wraps . penny was cleared of any involvement in the initial investigation .\niran 's elite quds force is training , advising and supporting iraqi shia militias in their fight against isis . iranian officials say they would like better cooperation with the u.s. , but say trust between the nations is lacking .\nnewington college notified parents and former students of child sex abuse allegations in an email on monday . the elite school is latest to be hit by child sex abuse allegations . headmaster david mulford wrote that allegations dating back 35 years were to come before the courts . st ignatius ' college riverview notified its old boys last month that former student had sex abuse allegations .\naaron davis , head chef at the kitchen in florida , was killed while walking on saturday by suspected drunk driver jason lanard mitchell , police said . mitchell , 25 , sped through several red lights before striking davis and his co-worker brian lafrance , who was treated and released from hospital . ana granucci davis , 28 , wife of aaron , had second child andrew aaron lawrence on tuesday . the couple , who married in 2013 , met four years ago and also have a 21-month-old daughter audrey . mitchell faces several charges including dui manslaughter , vehicular homicide , aggravated fleeing and eluding and leaving scene of crash .\nlaunch postponed due to lightning from an approaching anvil cloud . liftoff has been rescheduled by spacex for tomorrow at 4.10 pm et . if successful , it will prove affordable , reusuable rockets are possible .\nultra-competitive racers risk life and limb to cross railway 85km into race . train races past seconds after policeman stops more cyclists crossing . last team sky road race for tour de france winner sir bradley wiggins . sir wiggins - who was n't involved in level crossing problem - finished 18th .\nbrett robinson , 33 , facing 12 charges after allegedly letting an inmate out of his cell and engaging in sex acts between march and july last year . allegedly brought him into the control room where she worked at washing county jail and had sex with him on his birthday under a blanket . relationship continued and robinson wrote inmate a love letter saying he was ' a constant presence in my thoughts , fantasies and dreams ' was caught during an investigation into colleague jill curry , 39 . judge ruled wednesday that robinson 's lawyers waited too long to file an insanity defense earlier this month , with her trial set to start next week . a psychologists report that she suffers from mental illness has been ruled insufficient .\nofficers posted pictures of lego models on their facebook page . part of campaign by police in edinburgh to raise awareness of crime . it follows a 38.7 per cent rise in break-ins in the 12 months to april 2014 . but publicity stunt has been met with criticism from politicians and victims .\nnine people have been arrested by soldiers after 500 feet long tunnel found under home in tijuana , mexico . secret passageway accessed through trapdoor hidden inside wooden wardrobe in property bedroom . underground tunnel was being built close to the mexican border crossing near san diego , california . officials believe gang were constructing the passageway in a bid to smuggle drugs covertly into the u.s.\nbayern munich had only 14 fit players for friday 's training session . mehdi benatia , arjen robben , franck ribery , bastian schweinsteiger , david alaba and javi martinez all ruled out . bundesliga champions face eintracht frankfurt ahead of champions league clash with porto .\nelena udrea , 41 , is accused of abusing her position in government . udrea was a member of the romanian government for four years until 2012 . prosecutors claim she accepted bribes worth an estimated # 1.3 million . the former presidential candidate strongly denies all of the allegations .\nboca juniors defeated palestino 2-0 with two late second-half goals . leandro marin and jonatan calleri were both on the scoresheet . boca now face arch rivals river plate in the copa libertadores last 16 .\nhas appeared in hobbs and seraphine during her pregnancy . some of her outfits have cost as little as # 35 , among them asos dress . recycled dalmatian print hobbs coat from her last pregnancy .\nthe gender price gap website has exposed nine products that have identical female versions that cost more . these include shirts , disposable razors , deodorants and even chocolates . website encourages women to find and share other ` cost gap ' examples . while the difference is only small in the short term , getup argues that it accumulates to hundreds and even thousands of dollars more over years .\nphenomenon formed of two separate double rainbows snapped on tuesday . fashion entrepreneur amanda curtis saw it at glen cove lirr station .\nthe duke and duchess of cambridge have been turned into puppets . they will feature in a new comedy sketch show similar to spitting image . other royals to feature include charles and camilla and prince harry . newzoids begins on the 15th april on itv1 .\nstuart mccall insists he 's loving life managing rangers despite pressures . the gers lost their first under mccall losing 3-0 to queen of the south . the former motherwell boss does n't regret taking on the difficult role . click here for all the latest rangers news .\njenny-lee and unborn baby aroura died after refusing a blood transfusion . the 28-year-old suffered from leukaemia but refused treatment . over 80 per cent of treated pregnant leukaemia sufferers go into remission . her family have spoken out to defend the mother , saying she was told she had six weeks to live and chose to give up her life for her unborn daughter . doctors and staff have described the distressing scene after the baby died and the woman suffered a fatal stroke and multi-organ failure .\nphilippe mexes own goal disallowed in controversial circumstances . milan keeper diego lopez makes several good saves to keep scores level . draw keeps both sides stuck in mid-table after disappointing seasons . mauro icardi misses late chance to win the game for inter as game ends goalless .\nthe par 3 contest is played every year on eve of the masters tournament . world 's best players take on a nine-hole course with wives , girlfriends , friends and their kids as caddies . tiger woods and bubba watson were some of the many who brought the whole family along to play . rory mcilroy brought one direction 's niall horan to caddie the contest . the masters tournament kicks off thursday at 8am in augusta , georgia .\nandy carroll is currently out injured nursing a knee ligament damage . the west ham striker posted a photo of him posing on a wooden throne . carroll will miss the rest of the season but should be back for pre-season . click here for all the latest west ham united news .\nkarla hornby , 29 , gave birth 12 weeks prematurely on holiday in benidorm . baby freddie weighed just 2lbs after being born by emergency caesarean . hospital staff said he needs to build up his strength before he flies home . it means ms hornby and her partner face being stranded for three months .\nolivier giroud won march 's premier league player of the month award . he is the 16th french winner of the top flight 's monthly accolade . france are the award 's most successful foreign nation ahead of holland . eric cantona , thierry henry and nicolas anelka have all won the prize .\ntv cook gizzi erskine poses at feline feast with her british shorthair cat . told puss puss magazine kimchi loves taramasalata and tortilla chips . loves cats so much she 's planning a feline tattoo behind her ear .\npilot begins in may for prime customers who drive audis in germany . at the checkout , a customer pinpoints the location of their car . a dhl delivery driver will then receive a temporary digital access code . this code gives the driver keyless access to the boot and as soon as it is closed the vehicle locks automatically and the code is revoked .\nfrances bean cobain , daughter of the late kurt cobain , spoke to rolling stone about a new film on the nirvana frontman . 22-year-old cobain is an executive producer of the documentary `` montage of heck '' she describes growing up with the legacy of her father looming large .\nrowyn johnson was 17-months-old when she was killed in september . cassie miller accidentally ran the child over in the driveway of her home . miller was picking up rowyn 's brother for preschool . rowyn 's mom , brynn johnson , forgave miller , knowing it was an accident . the two have now started a charity to honor rowyn and help other families .\njames moody , 24 , officer on the titanic , died helping passengers escape . brother christopher wrote to ship 's owners asking for body to be returned . was sent a reply asking for # 20 , or # 2,000 in today 's money , to comply . instead bosses offered brother a picture of his headstone overseas .\nrecruiting sergeant accused of series of sex attacks in 2010 and 2011 . one victim says she became pregnant after she was raped by him . he denies all charges and tells a court the offences ` did not happen ' in cross-examination , he tells jury that the army was ` his life ' .\ngrant shapps has been accused of altering wikepedia pages of his rivals . the tory party chairman is in charge of the party 's election campaign . he has denied the claims calling them ` an extreme dirty tricks campaign ' david cameron stood up for shapps saying he is doing ' a great job ' .\nkristen bieniewicz of westland is suing bassel saad , who was convicted of involuntary manslaughter and is serving eight to 15 years in prison . another man who controlled the team and the soccer league is also listed in the lawsuit . bieniewicz died after saad punched him in the head just moments before saad would have been ejected from a weekend game in livonia .\nricky chiles iii , 27 , shot himself on thursday as police closed in on him . police had warrant on wednesday for his arrest in connection to shootings . chiles iii killed himself with single gun shot while at illinois motel . rasheed chiles , 15 , was shot in the shoulder and died after two-year-old brother damani terry was run over by van after darting into street sunday . gunman shot dead the driver of the van , 40-year-old archie brown jr , in a milwaukee neighborhood in a revenge shooting , police said . brown was a father of four daughters , including a six-month-old girl .\nsea shepherd rescues the crew of an alleged poaching ship it had chased for 110 days . the conservationist group had pursued the vessel since it was found illegally fishing off antarctica , it says . sea shepherd captain tells cnn he believes the ship was deliberately sunk to destroy evidence .\nthe aaron hernandez jury and alternate jurors sat down as a group with cnn 's anderson cooper on thursday . the jury wanted to make it known that they gave hernandez a fair trial and did not let his notoriety get in the way of their difficult decision making . hernandez , 25 , was sentenced to life in prison without the possibility of parole on wednesday for the 2013 murder of odin lloyd . before his arrest , hernandez was a star tight-end for the new england patriots , with a $ 40million five-year contract .\ndetroit tigers pitcher justin verlander snapped a selfie in front of an unsuspecting little boy wearing the player 's shirt in line at a starbucks . verlander uploaded the photo to instagram saying the fan was ` pretty surprised ' when he turned around . the photo has gotten more than 16,000 ` likes ' and 600 comments .\nmiranda has been linked with a summer move to manchester united . however the brazilian centre back is keen on staying at atletico madrid . miranda has said he is ` proud ' to be on louis van gaal 's radar .\nrangers winger david templeton is full of praise for the impact of new boss stuart mccall . he feels that the new regime is far better than that under ally mccoist and kenny mcdowall . templeton has singled out a new-found intensity and more astute tactics as reasons behind the recent upturn in fortunes at ibrox . rangers go into saturday 's game with championship title-winners hearts off the back of two consecutive wins .\ngerman forces launched first attack using gas on april 22 , 1915 . 150,000 tons of gas were used by german and allied forces in ww1 . around one million soldiers were exposed to gas and 90,000 killed . prohibition of chemical weapons organisation to hold memorial event .\nben sunderman , 19 , of mckinney , texas learned he got the job on april 10 . in three-minute video , he reads the letter from embassy suites to family . at the end , he freezes with shock realizing he is one of 12 to get internship . he shouts ' i get it . i get the job ! ' before leaping into his father 's arms .\nthe black pooch was filmed in action as he took a rescue rope out to his owner at the clarence j. brown dam and reservoir in ohio on saturday . footage shows the unidentified man then being hauled to shore by firefighters after spending almost two hours in cold waters .\nseven of the colorful ensembles worn by the children in the movie will go under the hammer later this month . the costumes are being auctioned as one single lot , alongside a vhs tape of the movie , signed by actor dan truitt , who played rolff von trapp .\nsir philip green and benedict cumberbatch also enjoy home cinemas . costs less than # 10,000 to install the technology , according to experts .\nmanny pacquiao meets floyd mayweather on may 2 in las vegas . the fight worth $ 300 million to both camps is boxing 's richest ever . pacman 's shorts alone will carry sponsorship worth # 1.5 m . mayweather has released a video with uncle roger about his gloves .\ncarlos colina , 32 , pleaded not guilty to assault and improper disposal of a human body on monday after the remains were found near his building . he was seen walking to his apartment in cambridge , massachusetts with the victim , jonathan camilien , hours before the remains were found . colina also has an outstanding assault and battery case pending against him after he ` attacked a man at his gym and left him bloodied ' witnesses said colina had been intimidating other gym users for months .\nbrad pitt set up charity to build new houses after hurricane katrina in 2005 . make it right foundation embroiled in legal action after homes began to rot . claims it was lured into buying the special wood only to discover it rotted . charity is suing timber treatment technologies for ` in excess ' of $ 500k .\n71-year-old tycoon used to live in texas and went by name of dorothy . clair schuler , who goes by the stage name cici ryder , said that when he met durst he was pretending to be a deaf , mute woman . said that durst was shy and never let anyone touch him or take photos . schuler said durst was a generous tipper and although there were some strange things about his nature he did not think of him as a threat .\nrobert ambercrombie , a professional wrestler , shot video outside home . tied son james 's tooth to the back of his muscle car before driving off . string pulled wobbly front tooth straight out of the eight-year-olds mouth . mr abercrombie said son had been begging him to perform diy removal .\nsol campbell has put his flat in chelsea on the market for # 6.75 million . he bought the property in 2011 and it has been renovated by his wife fiona . former england footballer is an outspoken critic of labour 's mansion tax . campbell , 40 , sold his # 20million london townhouse earlier this year .\niona costello , 51 , and daughter emily went missing on march 30 . recognized by someone at the new york hotel they were staying in on sunday . nypd officers questioned them and say the case is now closed . iona called her mother , diana malcolmson , at 3:30 a.m. on monday morning to tell her she was ok . ` she had n't listened to the news . she did n't know she was causing all this trouble , ' said malcolmson said .\nroger is an alpha male at the alice springs kangaroo sanctuary in the nt . he was gifted the new stuffed toy bunny by a fan and grew attached to it . manager chris barnes said he tried to take it off roger and was attacked . mr barnes adopted kangaroo after finding its mother dead on a highway .\nlebron james posted an unhappy picture at the dentist on instagram . his visit to the dentist 's chair follows his first triple-double for cleveland . james brought 20 points , 10 rebounds and 12 assists in win over chicago .\njeannie flynn has spoken of terror as people screamed about saving her . chip shop worker , 53 , said bricks were falling all around her after she fell . onlookers describe her ` disappearing ' down a hole on busy road in fulham . she ended up in cafe basement but miraculously was not seriously injured .\na brace for mauro vilhete sealed a 2-0 win for barnet over gateshead and a return them to the football league next season . the bees clinched the conference title ahead of bristol rovers . manager martin allen has revealed the club will be celebrating with a holiday to benidorm .\nkenneth stancil made his first appearance in a north carolina court on thursday after he was transferred from a florida jail . in an expletive-filled rant , he told the judge he knew he was going to get life in prison but shot dead his boss for wanting to molest his brother . his victim , ron lane , and brother had never met and there were no complaints against lane when he was shot dead on monday . stancil has admitted that he partly shot lane - who had been his work supervisor before he was fired last month - for being gay .\nvictorino chua , 49 , denies murdering patients at stockport hospital in 2011 . filipino nurse also accused of poisoning 18 more at stepping hill hospital . denies injecting insulin and other poisons into bags of medicine on ward .\nchris evans and jeremy renner get in hot water after a joke made about `` avengers '' character black widow . renner called scarlett johansson 's character a `` slut '' and evans referred to her as a `` whore '' the actors issued an apology on thursday .\nlewis hamilton claimed his third straight pole position of the season . nico rosberg was just 0.042 secs slower than his mercedes team-mate . german says : ` oh , come on , guys , ' when told he is slower than hamilton . sebastian vettel will start third for ferrari with felipe massa fourth . mclaren endured another difficult day with jenson button and fernando alonso only 17th and 18th on the grid for sunday 's race .\nchelsea beat stoke 2-1 at home in the premier league on april 4 . diego costa limped off in the second half after aggravating his hamstring . blues travel to qpr on sunday in a west london derby at loftus road .\nkoby hodder was playing british bulldog on his break when he collapsed . he suffered a series of cardiac arrests and was treated in intensive care . was fitted with a device to shock his heart back into beating if it stopped . now can only carry out light exercise but feels ` lucky to be alive ' .\nthe todd family died sometime between march 28 and april 6 . rodney todd , 36 , lived in the princess anne , maryland home with his seven children , aged six to 15 . the six-hour funeral brought 1,200 people together to pay their respects . todd and his children were poisoned in their sleep after a power company discovered a stolen meter and cut off electricity to their rental home . todd had bought a generator and put it in his kitchen to keep his two sons and five daughters warm .\ndzhokhar tsarnaev was found guilty of all 30 counts , may face death penalty . the sentencing phase starts april 21 ; a judge predicts it will last four weeks . he warns jurors not to do anything that could be prejudicial to the case .\nron aydelott , coach of the riverdale high school warriors in murfreesboro , tennessee , sustained serious facial injuries in the attack .\njimmy anderson could move past ian botham 's record during first test . anderson is just four wickets away from beating botham 's tally of 383 . the lancashire fast bowler has always been a natural swing bowler . lowest points of anderson 's career have come with too much tinkering . peter moores deserves credit for allowing bowler to be himself for england .\npeter schmeichel and oliver kahn star in tipico 's latest advert . duo square off in a top trump style competition of honours and accolades . pair were involved in the dramatic 1999 champions league final . manchester united came from a goal behind to beat bayern munich 2-1 .\nfifty top fashionistas all posted photos of the same lord & taylor dress on instagram at the weekend . the retailer has admitted that the bloggers got ` unspecified compensation ' to lend their credability and give the dress their seal of approval . the ploy proved an instant success as the $ 88 paisley asymmetrical dress sold out and created an online buzz for the entire design lab collection . the deal highlights the gray area of bloggers failing to disclose when they 've received payment for promoting some goods and services .\npierre fulton was in the car with scott during their traffic stop . he was being searched by an officer as michael slager shot scott dead . in a statement , he pays tribute to scott , says he does n't know why he ran . audio has surfaced of michael slager , 33 , laughing and admitting to experiencing a rush of adrenaline in the minutes following the shooting . walter scott , 50 , was shot five times in the back as he ran away on april 5 . slager has been charged with murder after cell phone footage of the incident emerged which contadicted the initial police report . the audio of slager talking with a senior officer at the scene was picked up the damcam in his vehicle which had been recording the initial incident .\nthe proposed # 30million gives the fa the resources to ensure the monies received by the clubs for progressing in the tournament . figures range from # 1,150 for winning an extra preliminary round game to # 1.8 million for being crowned champions . sky 's agility and flexibility ' strategy is set to result in 70 redundancies .\nwarning : graphic content . series of photos appear to show the beheading of a man in hama in syria . man is handcuffed and blindfolded as he is led from a van to area of land . he is surrounded by men with guns and executioner with a meat cleaver . it is claimed the man was beheaded because he is an alleged ` blasphemer '\nthe rosehall estate near inverness boasts a 22-room main house , five separate buildings and 700 acres of land . the duke of westminster would spend his summers at the property with french fashion designer coco chanel . she redesigned the whole of the property 's interior and painstakingly decorated each of the estate 's rooms .\nmonaco defeated arsenal on away goals in the champions league last 16 . arsene wenger upset leonardo jardim by refusing to shake hands . ligue 1 boss claims their next opponents juventus are ' a better team ' . read : arsenal 's wenger accused of disrespecting former club monaco . read : arsenal manager wenger brands monaco boss jardim a liar .\nrandy pierce was one of only 10 percent of competitors to successfully leap off a ledge , grab onto a rope and ring a bell while 25 feet in the air . pierce lost his sight at 22 from a neurological disease . he left his wheelchair for good in 2006 and has been running and climbing ever since . hiked all 48 mountains in new hampshire with his guide dog quinn . will run in memory of quinn , who passed away last year from cancer .\nbikram choudhury pioneered ` bikram yoga ' - practicing yoga in a room heated to 105f - and has a huge following , including celebrities . he has been accused of unwanted sexual advances in six civil lawsuits . speaking out about the accusations for the first time , he has denied ever assaulting the women and said he feels sorry for them . he became emotional when asked how his wife of 30 years has reacted to the claims , saying : ` she never looks at me anymore ' .\nmarvin `` papi gallo '' jones and ramon luis nicolas were in the middle of a bout when the black phone slipped out from jones ' black and red shorts . jones said he was listening to music before the fight on friday and put his phone in his shorts but forgot to take it out . he believes the mishap cost him the fight .\nmandy dunford forced out of home after neighbour exposed himself to her . kenneth ward was naked apart from socks and boots as he followed her . military historian performed sex acts in front of her at north yorkshire farm . 67-year-old jailed in 2011 but now released and able to return to his house . ms dunford , 54 , said her ` only option was to pack up and leave ' her home .\ngerard pique will be making his 300th barcelona appearance against psg . the 28-year-old joined the spanish giants in 2008 from manchester united . pique is poised to star in barca 's champions league quarter-final with psg .\nthe victims confronted the woman , kayla , on an episode of dr phil . none of the women had met impostor despite regular texts and conversation . kayla said she is gay and mormon , but thought she ` could n't have both ' , and used catfishing to ` figure out ' who she was , which she said was wrong . it emerged kayla was a catfish when one of her victims became suspicious and looked further into who she was talking with .\nrivals have revealed dozen oddities about themselves in build up to fight . floyd mayweather has a thing for twizzlers , brad pitt and pedicures . manny pacquiao loves cameras and butterfinger peanut butter cups .\nbritons spend an average of # 62 a week on treats , a new study claims . rewards range from bar of chocolate to glass of wine to pair of shoes .\n400 zimbabweans fled durban on buses to escape the xenophobic protests . among thousands of african immigrants who have fled home amid attacks . zulu king denies sparking hatred saying his remarks were ` misrepresented '\nliverpool great steve heighway predicted great things for steven gerrard . gerrard was described as ` an outstanding talent ' by heighway . the liverpool captain has become of the clubs greatest ever players . click here for all the latest liverpool news .\ntwo french tourists who tried to set a quokka alight on rottnest island . the men allegedly ignited aerosol spray with lighter and singed the animal . aged 18 and 24 , they were evicted from the island in western australia . both have been charged for animal cruelty and appear in court on april 17 .\nmike heatlie , 42 , punched fiona mccartney outside edinburgh nightclub . she is facing # 7,000 dental bill and says she is too scared to leave home . heatlie pleaded guilty at edinburgh sheriff court to attacking 43-year-old . stefani previously described trainer as a ` tireless , wonderful motivator ' .\ndriss diaeddinn , 50 , ` shot dead his two brothers , mother and his sister-in-law amid a dispute about the family business ' on thursday afternoon . the gunman 's wife escaped the home with their two toddlers and called 911 , and an hour later , his sister emerged saying she had been hiding .\nblack players allegedly heckled and racially abused during sunday 's game . milan say incidents if true are ` simply unacceptable ' . milan take on benfica in universal cup semi-finals in tuscany on monday .\nmichelle mone bought glasgow duplex after split with ex-husband michael . tycoon had extensive work done and the home is now worth # 1million . she is selling and will move back into mansion she shared with michael . couple put the five-bedroom ` dream home ' on market following 2011 split .\nnursing student went missing during night out with friends at weekend . her body was found on a farm six miles north of glasgow this week . alexander pacteau , from glasgow , has been charged with her murder . 21-year-old is also charged with attempting to defeat the ends of justice .\njonas gutierrez will not be offered a new deal by newcastle in the summer . the midfielder was dropped from squad for sunday 's match against spurs . the argentine was axed following a heated argument with john carver .\njeremy peace looking to sell the club for between # 150m and # 200m . groups from america , australia and far east interested in the club . peace determined any deal must be completed by july to ensure stability .\nproperties associated with 239 crime syndicates were stormed nationwide . 913 of those caught have been charged with crimes including murder . hoards of weapons , drugs and money were all seized by authorities . operation known as project wildfire ran from february 23 to march 31 . nearly 200 foreign nationals were arrested during the operation .\nfour masked raiders used saws and an angle grinder to break into an atm . when police arrived they fled in a stolen audi , reaching speeds of 145mph . police helicopter tracked gang to flats in tamworth and they were arrested . driver of stolen car was found hiding in dense bushes after he was picked out by a thermal imaging camera on board the police helicopter .\nhollie tillbrook 's heart momentarily stopped after she fainted in basildon . but two nearby officers thought to be from the met rushed to give her cpr . mother denise bennett was told to expect worst , but hollie unexpectedly woke up from her induced coma . the family now want to try and find the off-duty officers who saved her life .\nnashville 's district attorney banned prosecutors from offering female sterilization in plea deals . danny cevallos : present-day sterilization plea deals are voluntary and unlike creepy antiquated practices .\narsenal were title contenders in 2013/14 season before faltering at the end . gunners have same record after 31 games : won 19 , drawn six , lost six . arsene wenger insists arsenal have improved with likes of alexis sanchez . arsenal started this season poorly with defeats at swansea and stoke city . adrian durham : arsenal only turn it on when the pressure is off .\nsunderland beat newcastle 1-0 at the stadium of light on sunday . jermain defoe scored the winner with a stunning volley from 25 yards . the striker was lost for words as he tried to describe the feeling .\nmichael maggio is already banned for life from holding judicial office for revealing actress 's adoption of boy two months before she went public . posted on louisiana state university sports forum in 2012 that theron had applied to take on the youngster in same court division where he served . as ` geauxjudge ' he also posted derogatory comments about women . faces prison sentence of 10 years and $ 250,000 fine for bribery conviction .\nthis week chrissy teigen shared a picture of her stretch marks . the model was praised for sharing her real body . recently singer pink hit back at critics of her figure at a red carpet event .\ndidier drogba insists he has no intention to retire at the end of the season . the striker returned to chelsea last summer after leaving the club in 2012 . after signing a 12-month deal with the blues , drogba is yet to be offered a new contract at stamford bridge . click here for the latest chelsea news .\nthe house sold for 300 times average price of home in england and wales . nine-bed property in chelsea is 18 times the size of the average new home . mansion , marketed for # 55m , been bought by company based in bermuda . stamp duty alone is enough for treasury to pay year 's salary of 330 nurses .\narsenal moved up to second with 4-1 win over liverpool on saturday . gunners are bucking their recent trend of ending the season badly . but they had already dropped 13 points in premier league by mid-october . signing a defender , midfielder and forward may make them title favourites .\ngoogle maps has a temporary pac-man function . google has long been fond of april fools ' day pranks and games . many people are turning their cities into pac-man courses .\nthe fat duck in bray named as the eighth best restaurant in the world . dinner by heston at london 's mandarin oriental hotel makes it to top 25 . best restaurant in the world is grant achatz 's alinea , chicago . the awards are voted for by readers of elite traveler magazine .\nrone odendaal , 24 , took pictures of two lions hunting an elderly buffalo . beast managed to escape hunters ' clutches , but headed straight for road . in its desperation the animal ran straight into the side ms odendaal 's car .\napril 8 , 2014 , the who finally started reporting the ebola epidemic was a `` concern '' front line health care workers and ebola survivors say the world has to act quicker .\nit interrupted a state department briefing and forced the white house onto back-up generators . outage ` briefly had an impact on the white house complex ' but it was ` back on the regular power source ' an hour and a half later . white house press secretary says he was in the oval with the president when it happened , and it was barely noticeable . related to a dip in power in a transmission line at a maryland facility , power company says ; another report says it may have been an explosion . homeland security says there 's no evidence of malicious activity .\nterry cooper , 79 , said a badger the size of a large pig burst through hedge . the pensioner from somerset said his jack russell dragged him indoors . fears he may have been attacked by the badger if his pet had n't been there .\nrare set of female quintuplets was born this month in houston , texas . the girls were born via c-section at 28 weeks and two days . another family kept the news of twins secret until birth .\nnicholas tooth , 25 , was playing for the quirindi lions in regional nsw . on saturday he hit his head on an opponent 's shoulder during a tackle . he was airlifted to newcastle 's john hunter hospital in a critical condition . on sunday mr tooth , who had been living in sydney , died in hospital .\nmountain bike athletes were captured as they took giant leaps at portland rock , near weymouth in dorset . group are made up of renowned professional trial bike riders , jack gear , 25 , andrei burton , 29 and joe seddon , 19 . bikers seemed unfazed as sea crashed 10 metres below them while they jumped from one jagged rock to another .\ned miliband vowed yesterday to end casual employment contracts . but labour councils and mps hire many workers on zero-hours contracts . foi requests reveal labour councils have 21,798 zero-hours contracts . miliband has been accused of hypocrisy after his crackdown backfired . 68 of the party 's mps were revealed to have employed staff on zero-hours contracts over the past two years ; . 22,000 more of the contracts were handed out by labour-run councils , including doncaster where mr miliband is standing for mp ; . employers and legal experts said his crackdown would cost scores of jobs ; . statisticians accused labour of using ` unjustified ' propaganda ; . 17 more business leaders came forward to sign a letter supporting the tories in may 's election -- taking the total to 120 .\nman , who has not been named , turned gun on himself at 2.15 pm . his estranged ex-girlfriend , mother of his child , works at the site . he visited the park twice last week , received two restraining orders . was standing by new despicable me minion mayhem ride at the time . four visitors witnessed suicide , sheriffs tried to talk him out of it but failed .\nedwin ` jock ' mee allegedly told 18-year-old she had visa problems . he told her he could make a call and help her stay in britain , court hears . sergeant then allegedly attacked the teenager and nearly suffocated her . mee , 46 , denies carrying out a string of rapes and sexual assaults .\nthe girl in the spider 's web is fourth installment in stieg larsson 's series . written and translated on computers with no web connection to avoid leaks . plot kicks off with artificial intelligence intrigue involving a u.s. spy agency .\nofficial ground-breaking for the 630-ft new york wheel will take place this week on staten island . construction started last week on the dubai eye , which will be just 60ft higher . new york wheel will have mobile bar cars , a 20-seat restaurant and a 4-d ride on the ground .\neduardo vargas has been ruled out for 10-12 weeks with knee injury . chilean ace vargas will miss the rest of the premier league season . vargas picked up the injury during saturday 's win against west brom . scans revealed he sustained a grade two medial collateral ligament injury .\npolice seized rafi , 10 , and dvora , 6 , in a maryland park on sunday and their parents say they were n't reunited by cps for hours . scientists danielle and alexander meitiv believe in ` free range parenting ' meaning the children are afforded total independence from infancy . the meitivs were found guilty of neglect in march . after sunday 's incident they were forced sign a paper pledging not to leave them unattended .\nsarah brennan , 36 , was on the ivf waiting list when she became pregnant . project manager from south wales went into labour at 33 weeks . couple had ten pregnancies , none of which went past 12 weeks .\nap mccoy has two rides at sandown before he retires from horse racing . iron man mccoy will be awarded with his 20th champion jockey trophy . peter scudamore lists his top 10 achievements by racing hero mccoy .\njack grealish was pictured inhaling nitrous oxide through a balloon . tim sherwood has told him such behaviour will not be tolerated at the club . grealish has assured the aston villa manager ` it wo n't happen again ' the young winger inspired aston villa to victory over liverpool on sunday . grealish seeks assurances from roy hodgson before playing for england .\nan april fools day prank involving fireworks resulted in an apartment fire near the grand valley state university in michigan . a girl allegedly threw a lit firework at a roommate , which landed in a laundry hamper , and set the contents on fire . no one was hurt and the girl is not expected to face charges .\nmanor driver will stevens has been using the facilities at st george 's park . the state-of-the-art centre is used by the senior england football team . stevens is preparing to race in the bahrain grand prix on sunday .\nfeidin santana , 23 , went to the scott family 's charleston , south carolina home on thursday to meet with the slain man 's mourning relatives . he was embraced by the man 's parents and son , who told him that he should now consider them family . santana has been hailed a hero for filming the moment officer michael slager fired eight shots at scott as he ran away on saturday , killing him . after the video emerged , the officer was arrested and charged with murder .\npaula radcliffe will retire from competitive running after london marathon . radcliffe set the world record at the event in 2003 . and she says that she will be thinking of that moment during final race .\nfinal show for mbfwa took place at 7pm at the carriageworks venue in sydney . johanna johnson 's show , called sirens ' call , was inspired by hollywood glamour . the designer said the collection was ' a call to all independent strong women ' stand-out pieces from the show included a hand-beaded mirror gown , intricate wedding gowns and gold fringing .\nthe executive director of zeta beta tau fraternity apologizes for `` ugly and unacceptable behavior '' university of florida and emory university fraternity members are being investigated . wounded veterans , fraternity members stayed at the same resort at panama city beach , florida .\nreanne evans faced ken doherty in world championship qualifier . doherty won the world championship in 1997 . evans lost the first frame 71-15 against doherty . but the dudley native fought back to lead 4-3 . ken doherty , however , managed to close out an enthralling contest 10-8 .\nthe critically acclaimed `` daredevil '' will be back for season 2 . charlie cox plays a blind attorney by day who is a superhero by night .\njurgen klopp will leave borussia dortmund at the end of the season . a number of clubs are interested in securing the german 's signature . liverpool and man city have both been mooted as possible destinations . but klopp is only concerned with remainder of dortmund 's campaign . klopp met with man city in 2013 but manuel pellegrini landed top job .\nkyli wolfson , 29 , felt severe pain whenever she ate thanks to the disorder , which developed in october 2012 , when she was 26 . she dropped to just 80lbs and doctors told her she would likely need a feeding tube for the rest of her life . diagnosed with chronic pancreatitis , kyli 's only hope was to undergo a 14-hour surgery to remove her pancreas .\nthe yeatman has been open for just five years , but has the feel of a place steeped in decades-old tradition . there is a wine theme throughout the five-star hotel , with guests enjoying amazing views of the douro river . the hotel is built into a hill in vila nova de gaia , with almost every room themed after a portuguese winery .\nahmed gaddaf al-dam says the west is to blame for the ` chaos ' in libya . he 's a senior member of gaddafi clan and late muammar gaddafi 's cousin . mr gaddaf al-dam blames western countries for the migrant shipwreck . the uk government has defended its role in helping to overthrow dictator .\nlawsuit tried to block encinitas union school district from teaching yoga . family 's lawsuit said yoga promoted hinduism and inhibited christianity . 4th district court of appeal in san diego upheld court ruling against suit . district said yoga taught in secular way to promote flexibility and balance . yoga taught to district 's 5,600 students at twice-weekly , 30-minute classes .\nbritish driver will stevens did not compete in australia or malaysia . he hopes manor 's problems are now over and he will be able to race . the chinese grand prix takes place in shanghai on sunday .\nstephanie from houston , texas , has a father who works as an astronaut . she wrote a message on land that could be seen from the space station . 11 cars created the 59 million sq ft message in nevada 's delamar dry lake .\nsexpert says eye contact is the most effective way to signal sexual interest . even the simple act of blinking can demonstrate attraction . here tracey advises on how to use your peepers to get their attention .\ncath kidston , aden + anais and les petites abeilles boosted by george . everything he has worn - and similar designs - sold out instantly . george effect has boosted high street copy-cat sales . royal baby number two , who is due within weeks , is likely to do the same .\njohn carver revealed he would use a whip to motivate his players . newcastle have lost their last four matches against rivals sunderland . massadio haidara has been ruled out for the rest of the campaign . mehdi abeid is expected to be in the squad after returning to training . click here for all the latest newcastle united news .\nbrian gemmell said spy chiefs ordered him to ` stop digging ' at boys ' home . former army intelligence officer claims mi5 covered up the sexual abuse . staff jailed in 1980s for sexual abuse at notorious kincora children 's home .\nchelsea face manchester united at stamford bridge on saturday afternoon . united topped a great run of form with a 4-2 win over manchester city . jamie carragher says jose mourinho will not allow united any freedom . he believes kurt zouma will play in midfield to combat marouane fellaini .\nformer prime minister struck deal in 2013 to advise on mining industry . contracts boasts about his ` on-the-job experience and politician instincts ' critics question whether ex-premiers should work for other nations . blair 's office deny any conflict of interest involved in his business dealings .\npolice revealed they are ` vigorously perusing ' paedophile ring theory . parents of william tyrrell have released a plea for his safe return . ` we ca n't live like this , ' mother said as search entered its seventh month . police say search of nsw bushland is reaching the conclusion stage . divers were brought in to search a murky dam in a bush reserve . william tyrrell vanished from his home in kendall , nsw in september 2014 .\nlondon-based designer claims to have made the world 's safest bike . called the babel bike it has a host of features including a roll cage . crispin sinclair is seeking # 50,000 of funding on site indiegogo . bike also has foot protectors and an electric motor .\nriot squads were called to the enmore theatre in sydney on monday night . us rapper yg has alleged gang affiliations and a history of violent concerts . 24-year-old man was charged with indecently assaulting a 15-year-old girl . police dispersed about 2500 fans after the concert had finished . several arrests were made and police are continuing their investigations .\nracing legend tony mccoy ended his record breaking career today . the irish legend finished with a total of 4,348 winners over the jumps . he has ridden a record-breaking 289 winners in one season . mccoy was handed the champions jockey trophy for the 20th time .\njafar adeli thought he had been chatting to a 14-year-old girl he met online . arranged to meet the girl at a leicester bus station so they could have sex . but he had been duped by paedophile vigilante group letzgo hunting . was arrested and now been jailed for attempted to arrange a child sex offence .\nkayla mooney , who is in her first year teaching in danbury , connecticut , ` engaged in sexual contact with a male student off campus last year ' she appeared in court on monday but arraignment was postponed after her attorney requested evidence from prosecutors . she turned herself in march following a seven-week-long police investigation after administrators learned of the alleged relationship .\namy-beth ellice , 17 , from essex started baking at three years old . she published her first cookbook , amy 's baking year , at age 14 . teen chef held recent cupcake masterclass in harrods . her second , entertaining-themed , book is set to come out in 2016 .\npacks of cadbury fingers have come down by 11 grams to weight of 114g . popular biscuits made under licence by another manufacturer , burton 's . sainsbury 's price up from # 1 to # 1.50 in a year , but down to 80p at tesco . shoppers facing stealth price rises in what economists call ` shrinkflation ' .\njack rowe died in july after falling into his family 's garden swimming pool . the ` kind ' three-year-old was trying to reach a new toy floating on the water . a coroner said she would write to minister urging for new laws to be made . dr clare balysz cited australian law which enforces fencing around pools .\ntoddler mikaeel kular was killed by mother rosdeep adekoya last january . she beat her son before dumping his body in a suitcase in woods in fife . social workers had visited family on a number of ocassions before tragedy . report published today concluded they could not have predicted killing .\ned miliband said he would have to pay labour 's proposed ` mansion tax ' but the labour leader insisted that did not mean he lived in a mansion . mr miliband lives in a four-storey victorian town house worth # 2.7 million . comes after he faced ridicule over revelations that he had two kitchens . the downstairs kitchen is used by the family 's live-in nanny .\nwilliam and kate are turning anmer hall into a secluded fortress home . couple want informal , away-from-the-cameras upbringing for their children . anmer is set to become their principal residence over the next few years . royal aides confirmed the cambridges will head to anmer after the birth .\ntom daley won bronze in the men 's 10m platform at the 2012 olympics . firework dive is a forward three-and-a-half somersaults with one twist pike . daley won silver with the plunge at the world diving series last month . daley 's main aim this year is to win gold at the world championships .\ndavid templeton endured injury-induced frustration during time at hearts . but , rangers winger insists he will show no envy towards them on sunday . templeton will form part of a celebratory guard of honour if he starts clash . the winger made his first start in almost three months last weekend .\nshannon hamilton was arrested on sunday attempting to build a barricade on a bridge in georgia where his 16-year-old daughter had died . cecily and her friend taylor swing died just three weeks ago after their vehicle plunged off the bridge and into the river . hamilton , who had grown fustrated waiting for the local authorites to act , has been charged with interference with government property . white county commissioners have approved a motion to add guardrails , but there is no exact timetable for when construction will begin .\njay alvarrez and alexis rene snap amazing photos of their glamorous travel around the world . the sportsman and model enjoy a sunkissed life of beaches , surfing and travel . the pair share their snaps on tumblr and instagram and have almost two million followers between them .\nbarcelona cruised into uefa champions league semi-finals . neymar and andres iniesta star men for barca in 2-0 win over psg . paris saint-germain lost 5-1 on aggregate and must make smart transfers . neymar has blend of cristiano ronaldo and lionel messi .\npower failure sparked a ` total meltdown ' on london trains across the day . thousands of passengers stranded on two trains near clapham junction . police boarded trains to hand out water and paramedics had to be on hand .\nu.s. rc-135u plane was flying near poland when russian jet ` cut across ' pentagon says russian su-27 flanker made ` aggressive maneuvers ' russia insists they were trying to identify the plane by circling it .\nhayley adams , 29 , admitted stealing # 65 from william tanner 's bedroom . mother to mr tanner 's great-grandchildren was caught on cctv device . mr tanner says he felt ` violated ' and ` ca n't trust anybody ' after the theft . adams escaped with community order , restraining order and # 175 fine .\nluke shaw joined manchester united for # 31.5 million in the summer . the 19-year-old admits ashley young is the biggest joker at the club . players hung a fake bird in the dressing room after young was hit in mouth . shaw says united goalkeeper david de gea is the ` nicest guy in football ' read luke shaw : ` i 'd give myself a c - for my debut united season ' .\nbruce is set to star in an eight-episode docu-series on e! starting july 27 . kim , burt , brandon and brody ` do n't want him to do the series ' jenner 's sons and daughter casey tell gma the star left them in the '80s .\nin terminal 3 , cushioned running paths direct passengers to their gates . the money-saving trick cuts down on the cost of walkways and signage . catering to low-cost carriers , the new terminal first opened on april 8 .\nlincicombe beat lewis on third play-off hole to claim first win since 2011 . she jumped into water hazard at mission hills to celebrate victory . lincicombe carded an eagle on the par-five 18th to draw level with lewis . she then prevailed in the play-off to claim a sixth lpga tour title .\nadam federici 's error gave arsenal a 2-1 victory in fa cup semi-final . federici fumbled alexis sanchez 's shot - allowing it to go through his legs . federici left the pitch in tears and apolgised for his error after the game . fa cup final is on may 30 - same day federici will marry his girlfriend . there is no suggestion , however , that he let the goal in on purpose .\ngrace dare , who now uses the name khadijah , is with isis in syria . her heartbroken mother victoria , from lewisham , has spoken for first time . has issued a plea for her daughter and grandson to come home . says dare was a devout christian as a child and ` loved to pray ' her daughter has become a terrorist poster girl and regularly issues threats . dare has said she wants to become the first woman to behead a westerner . her swedish husband abu bakr has reportedly been killed . britain 's jihadi brides , tonight at 9pm on bbc2 .\nthere is no anzac day holiday for most states as it falls on a saturday . only western australia and some canberra bureaucrats will get day off . first time since 2009 anzac day has fallen on a saturday . experts predict rise of up to 25 per cent of people calling in sick on monday . some businesses told staff they risk their job if they fake a sick day . losses from absent employees estimated at $ 7.5 m in queensland alone .\njustin rose bounced back from florida misery by carding 69 in houston . three-time masters champion phil mickelson enjoyed return to form . paul casey celebrated last-gasp masters invitation with fine round of 68 .\nan annual photography competition produced some amazing works that give some insight into life on the land . judges look for images that illustrate the northern territory 's unique outback lifestyle and their distinct people . marie muldoon won the competition with a heartwarming shot of her daughter cuddling up to a horse . the categories include ` industry at work or play ' , ` nt landcapes ' and ` best portrait of person or animal ' . the competition is run in conjunction with the northern territory cattlemen 's association 's annual conference .\nonly a year ago adam johnson was still considered an england prospect . the former manchester city winger never fulfilled his potential . johnson has shown flashes of his talent , but never been consistent . the future of both sunderland and their star player hang in the balance .\ndundee face rivals dundee united in the derby on wednesday night . united have lost seven of their last nine matches in all competitions . but hartley is not reading in to their troubles as dundee themselves stutter . dundee are without a win in three matches themselves going into the game .\nin response to lawsuit , ncaa says it does n't control quality of education for student-athletes . but its website emphasizes importance of education , `` opportunities to learn '' lawsuit claims students did n't get an education because of academic fraud at unc .\nparks department officials had a permit to attempt a controlled burn . fire officers had to deploy four aircraft and two bulldozers to fight the fire . more than 70 acres of the mojave narrows park were affected by the blaze . residents were able to return home once firemen controlled the inferno .\nsharon edwards , 55 , was last seen on saturday in grafton , nsw . son said his family were struggling to come to terms with disappearance . eli edwards said they need answers ` one way or another ' to get closure . police are now treating the 55-year-old 's disappearance as a homicide .\nscottish first minister said mr miliband simply ` wo n't have the votes ' she reiterated her call for labour to ` work together to lock the tories out ' mr miliband this morning insisted he would not make any deals with snp . labour is expected to suffer heavy losses in scotland - where it has 41 mps .\nandy burnham says labour would enforce the premier league to invest an estimtated # 400million into grassroots football with the new tv deal . the shadow health secretary accused prime minister david cameron of not fulfilling his promises of investing and improving grassroots . labour 's sports spokesman clive efford promised to get tough .\nyannick bolasie scored a hat-trick against sunderland last week . the crystal palace star is the wishlist of clubs for during the summer . alan pardew warns his admirers that bolasie will cost them at least # 20m .\nuniversity of oregon 's tanguy pepiot had strong lead over meron simon . he raised his arms in triumph while running down the home straight . simon , of the university of washington , managed to close the gap . he beat pepiot by a tenth of a second at track event in eugene , oregon .\nlinda and george hunter became mortgage free around 15 years ago . but eight years ago , their street became part of a regeneration scheme . liverpool city council bought houses and boarded them up for demolition . estate agents say couple will now struggle to sell home for more than # 1 .\nbus carrying 40 players and staff back from away game was attacked . fenerbahce want turkish championship halted while matter is resolved . the bus driver was wounded in the attack and taken to hospital .\na maths problem for 14-year-olds has baffled people across the world . question uses logical reasoning and aims to sift out the most intelligent . it was set in the singapore and asian schools maths olympiads -lrb- sasmo -rrb- teaser appeared as number 24 out of 25 questions to test students .\njavier hernandez scored a late goal to secure victory for real madrid . thierry henry says hernandez owes cristiano ronaldo for the assist . sky sports pundit henry responded to those who disagreed with his comments by posting a video of michael laudrup 's passing . he said on twitter : ` the pass can be just as important as the goal ' .\nlewis hamilton claimed his third straight pole position of the season with a scintillating lap in shanghai . nico rosberg was just 0.042 secs slower than his mercedes team-mate . german said : ` oh , come on , guys , ' when told he was slower than hamilton for third time this season . sebastian vettel will start third with felipe massa fourth ... valtteri bottas and kimi raikkonen complete third row . mclaren endured another difficult day with jenson button and fernando alonso only 17th and 18th on the grid .\nhenry rayhons was arrested for sexually assaulting his wife in august . the 78-year-old politician was accused of having sex with her in a care home when she had dementia and did n't have mental capacity to consent . mr rayhons always claimed they kissed and prayed but did not have sex . found not guilty by a jury and he said tearfully ` the truth finally came out ' .\nthe friends were on their way to see les misérables on broadway when a conductor on the 6 train called for help . the men , who are all police officers in their native sweden , wrestled the suspect to the floor and held him until nypd could arrive . ` we 're no heroes , just tourists , ' says uppsala , sweden , police officer .\nwolfsburg drew 1-1 with schalke in the bundesliga on sunday . nicklas bendtner was due to start but was dropped from the squad . it was punishment after bendtner arrived late for training on friday .\nmother and autistic son face deportation to philippines when their visa expires today . maria sevilla and her son tyrone have lived in australia since 2007 but have been told they need to leave due to tyrone 's autism . tyrone has designed a poster asking the immigration minister if he could stay in the country and hand-delivered it to the minister 's office . the family live in queensland where maria sevilla is a nurse at townsville hospital .\nmiddlesbrough secure championship play-off place with win over wolves . chelsea loanee patrick bamford scores one and sets one up . boro one point off automatic promotion with three matches to play .\nfestival also includes novelist kate mosse and explorer ranulph fiennes . event attracts more than 30,000 visitors to idyllic venue in wiltshire field . lord fellowes will discuss huge social change brought by first world war .\nnational grid has revealed the uk 's first new pylon for nearly 90 years . called the t-pylon it is a third shorter than the old lattice pylons . but it is able to carry just as much power - 400,000 volts . it is designed to be less obtrusive and will be used for clean energy .\na second teen has been charged with helping plan an `` isis-inspired '' attack . one 18-year-old suspect has already been charged , report says .\nfaith and hope howie were born with one body and two faces on may 8 . they tragically died in hospital just 19 days after they were born . parents simon howie and renee young visit their grave at pinegrove in western sydney fortnightly . they arrived on thursday to find the grave bare of all the girls ' mementos . staff had cleared entire baby section and thrown belongings in rubbish .\nisobel attwood , 16 , has not made contact with her family since saturday . friends believe she could be in southampton with a man in his 20s . the schoolgirl is described as white , small , 5ft 4ins tall , with brown hair . she posted on facebook saying ` sorry for causing s *** for everyone '\nkevin perz , 56 , owns a construction equipment business in kansas city . he has spent time over the years tracking down high school teachers and sending them checks to thank them for making an impression on him . marilyn mecham taught perz home economics in 1977 at parkway central high school in chesterfield , missouri . he sent her $ 10,000 and told her to spent it all on herself . ` gratitude is something in this society today that we just do n't do enough of , ' mecham said of the gesture .\npair ` visibly upset and shaking ' as they left the hong kong court together . herminia garcia charged with ` wilful neglect ' after death of daughter . blanca cousins , 15 , plunged to her death from luxury apartment block . births of her and her sister never registered and girls ` did not go to school ' .\npupils in spokane , washington , were removed from classes on monday . a total of 143 were kicked out of school because they did not have documents to prove they have had legally required vaccinations . officials decided to act after spread of the measles virus in america . experts have warned there is a danger of a pandemic as people who have not been vaccinated are being exposed to the rest of the population .\nshaker aamer has been held at guantanamo without charge for 13 years . the 48-year-old , from london , could be freed in june , it has been revealed . us president barack obama has repeatedly vowed to close the facility .\nmodular robotic vehicle developed at nasa 's johnson space center . each wheel can be controlled independently and turn 180 degrees . shows off the technologies that could let man move across other planets . could also be used to improve self driving cars on earth .\nauthor of ` why women hate me for being beautiful ' article speaks out . the 44-year-old is ` utterly peeved ' by the ` exploitative ' dove campaign . samantha claims women 's need for modesty is down to self-protection .\nmichael owen said newcastle would be relegated if there were 10 games left to play in the premier league . john carver 's newcastle side have lost their last six straight league games . phil neville and sportsmail 's jamie carragher have also criticised the club . carver believes such pundits do not know the ins and outs of management .\na study suggests overweight people are less likely to develop dementia . those who had a bmi of 25 to 29 had an 18 per cent lower risk . having more fat when you fall ill is associated with better recovery . remarkably the obese -lrb- with a bmi of 30 plus -rrb- did even better .\nworld cup winner jason robinson came close to committing suicide . robinson spiralled out of control after drinking six nights a week . the former rugby ace was arrested for affray , assault and criminal damage . samoa star va'aiga tuigamala talked robinson out of suicide .\ncounty supervisors approved the settlement with 30-year-old francis pusok in a closed meeting . a news helicopter following the chase recorded police tasering pusok , putting him in handcuffs and continuing to beat him after he was subdued . the incident has prompted an fbi civil rights investigation . 10 deputies placed on leave pending an internal probe .\nronnie o'sullivan is closing in on world championship quarter-final spot . but , he found himself in a spot of bother with referee olivier marteel . o'sullivan was warned about his behaviour after obscene hand gesture . five-time world champions needs one more frame to secure progression .\npresident obama kicked off festivities for annual event monday morning . mrs obama joined so you think you can dance all stars for routine . white house expected 35,000 to attend the annual tradition . the easter egg roll dates back to 1878 , during rutherford b hayes ' administration .\npatrons at the masters can get themselves a decent meal for a reasonable price . lee westwood nearly got off to the perfect start with a stunning shot at the par-five second . padraig harrington has enjoyed a resurgence of form in recent months and the secret of his success could be down to his unusual practice technique .\ngetty images photographer john moore received the industry 's top gong last night for his incredible photographs . his pictures show the horror and heartbreak of the deadly ebola virus as it ravaged west africa last year . the expert judging panel said his photographs conveyed the situation with ` heart , compassion and understanding ' he was named the winner from group of 13 photographers across categories that included landscapes and culture .\nthe cat was trapped behind the wall at mohamed naguib metro station . he survived thanks to a man uncle abdo , who owns a shop outside station . uncle abdo gave biso water and fed him scraps through hole every day . thanks to a social media campaign , biso the cat is now finally free .\nformer tory pm warns snp would use role in government to breakup uk . snp leader accuses him of being ` silly and over the top ' in speech . polls suggest snp will prop up a labour minority government .\na blast rocks a chemical plant in china 's southeastern fujian province for the second time in two years . six were injured after the explosion and are being hospitalized . the explosion was triggered by an oil leak , though local media has not reported any toxic chemical spills .\nnasa 's messenger probe smashes into mercury , ending mission . space probe hit the planet 's surface at 8,750 mph .\nchelsea loanee patrick bamford continued good form with goal vs wolves . young striker has hit 17 goals on loan at middlesbrough this season . parent side chelsea are keen to tie him to a new long-term deal . his current deal at stamford bridge expires next summer . read : will chelsea ever bring through english players ? .\nchris smalling agrees new long-term manchester united contract . the deal is believed to worth around # 80,000 a week . 25-year-old has become a regular starter under louis van gaal . van gaal reveals he 's ` delighted ' that smalling has penned a new deal .\npeter endean re-tweeted a message with an image of the fleeing refugees . a caption read : ` labour 's floating voters . coming to a country near you ' it comes just days after up to 950 refugees drowned trying to reach europe . mr endean later apologised ` unreservedly ' but insisted it was an accident . the council candidate from plymouth said it was ` unintentional '\nsubstitute eidur gudjohnsen scores equaliser for bolton in stoppage time . veteran striker netted with virtually the last kick of the game . michael jacobs had opened the scoring for blackpool after nine minutes .\nst patrick 's parish in wisconsin said its four-decade tradition , original pig rassle , will be replaced with human mud foosball this summer . global conversation group started online petition last august to cancel event claiming it was inhumane ; it collected more than 81,000 signatures . the group said they are ` very proud of the church for doing what 's right ' and consider this a huge step for animal welfare .\nfrench actress is filmed , photographed and judged as she ` ages ' mother-of-two is followed throughout her day showing effects of fatigue . public guess her age based on photos to promote new garnier face cream .\nmanchester united beat their rivals city 4-2 at old trafford on sunday . louis van gaal celebrated the derby demolition at wing 's restaurant . van gaal was snapped with city 's toni duggan and isobel christiansen . city striker duggan uploaded the snap to instagram of her with van gaal . england women 's international duggan later deleted the post . juan mata , daley blind and ander herrera also celebrated the victory .\nchristine davidson lost her battle to cancer at an adelaide nursing home . her diamond ring was last seen three weeks before she passed away . the family has claimed a brazen thief is behind the missing ring . the 61-year-old wanted to hand her ring down to her only granddaughter . the family have launched an emotional public appeal to get her ring back . a local jewellery store has offered a $ 1000 reward for anyone providing information that leads to finding the missing ring .\nphilippe coutinho 's strike secured a 1-0 victory for liverpool . blackburn goalkeeper simon eastwood almost snatched a draw . eastwood drew a save from opposite number simon mignolet in the box .\nwaitress amanda bailey , 26 , said nz pm john key pulled her ponytail . she wrote that she gained unwanted attention from him last year at a cafe . ms bailey said mr key kept touching her hair despite being told to stop . the prime minister apologised and said his actions were ` all in the context of a bit of banter ' social media users have posted other photos of mr key touching girls ' hair .\nfifth of young people do n't remember how they got home after drinking . third forgot their entire night while one in 20 drove themselves home drunk . but nearly a quarter considered alcohol to be more harmful than smoking . half said the nhs should stop treating alcoholics given health warnings .\ntranssexual kellie was formerly boxing promoter frank maloney , 61 . she has completed her sex change and is at home recovering . tweeted to her fans : ` still very sore and got pain but in good health ' started transition to change gender two years ago and has now completed .\nthief stole 124 watches from vintage watch shop in hampstead , london . he scaled two-storey building before slipping through a 4sq ft roof vent . then squeezed down narrow chute and snaked along floor to avoid beam . owner simon drachman compared saturday night heist to tom cruise film .\njavier hernandez scored winner against atletico madrid on wednesday . the mexico international is on loan at real madrid from manchester united . hernandez does not feature in louis van gaal 's plans for next season . the striker , who will have one year left on his contract , would cost # 7m .\nwhile some have gone under the knife , these a-listers look effortless . many have undergone style and hair changes , but look as young as before . some celebrities like jennifer lopez still look the same after 16 years .\na student has revealed she turned to sex work to cover the cost of living and studying in london . she tried regular work but still struggled to pay the bills . she says that sex work is becoming common practice among students .\nmemphis depay held a secret meeting manchester united recently . the holland winger scored last week as psv clinched the eredivisie title . depay is eredivisie 's top goalscorer with 20 - even though he is a winger . louis van gaal previously admitted he lacks a 20-goals-per-season striker . the 21-year-old is a left winger who cuts inside with a powerful right foot . nobody in eredivisie completed more dribbles -lrb- 101 -rrb- last season than him . in 2014 , depay became the youngest-ever dutch scorer at a world cup . van gaal put him alongside robin van persie and arjen robben in 4-3-3 .\nclean eating alice is the latest healthy living instagram sensation . she posts pictures of her body transformation and healthy meals . the pretty blonde has a six pack thanks to the ldn muscle bikini plan .\nman city 's last premier league win having trailed at half-time was in 1995 . man city came from behind to beat blackburn rovers 3-2 at ewood park . uwe rosler , keith curle and paul walsh scored in the comeback win . manchester city lost to crystal palace on monday night . click here for all the latest man city news . city have lost their last three premier league away games , after losing two of the preceding 26 on the road . the last time man city lost three straight league away games was between february and march 2011 . city have scored more than once in a game once in their last six away from home in the league ; they scored two or more in 11 of their 13 preceding away games . they have kept three clean sheets in their last 16 pl matches . they have lost six premier league games in 2014/15 , the same number as in 2012/13 and 2013/14 . swansea have won two more premier league points than manchester city -lrb- 16-14 -rrb- since selling wilfried bony on january 14 .\nwinchester council in hampshire claimed annual clean-up hit by new rules . but the health and safety executive denied tightening rules and added that councils were ` over-interpreting ' legislation . poet laureate sir andrew motion accused town hall bosses and highways agency of ruining the countryside by failing to remove rubbish .\ncctv camera captured a man in a hoodie dragging woman 's limp body from car parked at 131st street and jamaica avenue in queens saturday . woman was left slumped on the sidewalk for 20 minutes until paramedics arrived and took her to a hospital . she was placed on a ventilator and remains in critical but stable condition with leg injuries .\nsophomore tiffany gay thought she was being led outside for a routine fire drill but instead she found luis velasquez holding a bouquet of flowers . gay 's classmates cheered as she held back tears of joy and some of them held signs that read , ` will you go to prom with me ? ' gay is a special needs student who struggles with a genetic disorder called prader-willi syndrome -lrb- pws -rrb- pws causes insatiable appetite along with other physical abnormalities . video of the cute promposal has over three million views since being posted to facebook on tuesday .\njose mourinho under fire after chelsea only have 30 per cent possession in saturday 's 1-0 win over manchester united at stamford bridge . chelsea 's football this season has been pragmatic but ultimately effective . mourinho has learnt from the mistakes of last season to lead a title charge . read : mourinho warns his young players he can not play them all . click here for all the latest chelsea news .\nstarted dating in july 2014 , two months after her split from ex-husband . second wedding for nikki following previous marriage to paul mcdonald . tied the knot in romantic ceremony in santa monica mountains . guests included lea michele and her boyfriend matthew paetz .\nandrea catherwood stayed at the modern masterpiece hotel arts . dined in the hotel 's two michelin-starred flagship restaurant , enoteca . drank miraval rosé from brad pitt and angelina jolie 's estate in provence . of all the stunning buildings , the one i 'm drawn to is gaudi 's casa batllo . a great city to get lost in with some of the best sights not in tourist guides .\nthibaut courtois was superb in chelsea 's goal with a number of key saves . cesar azpilicueta and john terry impressed at the back for qpr . charlie austin caused problems and was brilliantly denied by courtois .\na sting set up by the nypd shows weinstein did n't deny touching italian model ambra battilana , it has been claimed . she alleges he asked her for a kiss and then groped her during a ` business meeting ' at his manhattan office on friday night . a source claimed during the recorded conversation set up under the watch of the nypd , he did not deny touching her . the hollywood producer has denied the allegations and has spoken to police , who have not filed charges .\njared mccarroll head chef at m restaurant and grill shares his expertise . the more fat your steak contains the more juicy it will be after cooking . look for thickness rather than weight when choosing which steak to buy .\nflorida couple quincy hazel and sabrina golden-hazel ` locked up the 12-year-old girl and 17-year-old boy in a closet for days on end ' they ` were eventually allowed to sleep on the floor of a bedroom but were fed from a bucket or found food to eat in the trash ' their conditions emerged when the boy ran away from home last month and confided in a friend , who spoke to authorities . golden-hazel claimed she home schooled the children but there were no books in the home .\nbayern munich take on porto in the champions league quarter-final . pep guardiola bidding to reach sixth semi-final in sixth year as a manager . from 2005-2009 england had 12 out of 20 champions league semi-finalists . in last five years only three semi-finalists have been from premier league . guardiola changed barcelona tactically , introducing relentless pressing . lionel messi brought into it when guardiola supported him against the club . premier league clubs have struggled to cope with that intensity in europe .\nshanice farier , 22 , stole # 15,336 between october 2012 and february 2013 . court heard she was paid a decent salary and got handouts from her father . farier told her probation officers that taking the money was ` just too easy ' judge ordered her to do 240 hours of unpaid work in the derby community .\nben stokes took three wickets for 10 runs as england bowled st kitts & nevis xi out for just 59 in tour match . alastair cook -lrb- 95 * -rrb- and jonathan trott -lrb- 72 -rrb- made big opening stand . stokes praised batsmen , particularly ` one of the best in the world ' cook .\nelbit systems are working with the israeli ministry of defense . sensors are so precise there will be ` no false alarms ' israeli army considered more than 700 proposals for the project .\nrussia 's euro 2016 qualifier with montenegro on march 27 was abandoned . russia no 1 igor akinfeev was hit by a flare in the opening minute . game was later called off following a player brawl and more crowd trouble .\nmark o'mara : video captured michael slager shooting walter scott ; if cop had been wearing a body camera , he probably would n't have fired . o'mara says such cameras are expensive , but cheaper than wrongful death payouts -- and the cost of a human life . the underlying problem is racial bias in policing ; until that 's solved , body cameras are a good interim solution .\nscott sinclair is currently on loan at aston villa from manchester city . the 26-year-old winger has impressed for the club since his january move . villa could make the switch permanent in the summer for a # 2.5 million fee . meanwhile , joe cole has backed villa to beat arsenal and win the fa cup .\nsydney cafe lowenbrau keller has released an advertising campaign which features the slogans ` wunderbra ' , ` make mein a dubbel ' and ` haus party ' the campaign has been slammed by activist group collective shout as objectifying women and opening staff to sexual harassment . lowenbrau keller 's parent body said that the ads use ` fun play-on words ' to portray of the typical bavarian cultural experience of oktoberfest . the eatery has further been slammed for directly comparing the serving size of food and drinks and the size of women 's breasts . the same group withdrew a campaign last year comparing women to meat using the slogan ` we 've got the best racks ' .\nbrazilian ronaldo paid a visit to former club real madrid on wednesday . teen sensation martin odegaard posed for a picture with the former striker . the 16-year-old shared the snap on instagram with the caption ` legend '\npadraig harrington had fallen out of top 300 before winning honda classic . irishman returns to the masters after failing to qualify last year . the three times major winner tips dustin johnson to challenge rory mcilroy at augusta .\nassyrians are an ancient middle eastern minority -- they are part of the rapidly dwindling christian population of iraq . after isis overran their villages , some assyrians formed a militia to fight for survival against the terror group .\nu.s. , venezuelan relations threaten to overshadow obama , castro meeting . venezuelan president says united states moved to oust him ; he has the support of the cuban foreign minister .\nyom hazikaron , held this year on april 22 , is israel 's official memorial day traditionally dedicated to fallen soldiers . sirens blasted across the country at 11am marking a two-minute silence for people to pray and pay their respects . shoppers , drivers , classrooms and workplaces all come to standstill during emotional remembrance day .\nsix-bedroom brothel in melbourne 's fitzroy will go up for auction on may 1 . edwardian-style shopfront was owned by wei tang who was jailed for keeping five thai women as sex slaves . property , formerly known as club 417 , comes with a brothel licence . tang was convicted in 2006 for forcing women to work off debts incurred by bringing them from thailand to australia . it stopped operating as a brothel in 2013 and has been vacant ever since .\na robotic probe into the fukushima nuclear plant released crucial information on conditions inside the reactor . tepco : recorded radiation levels and temperatures are lower than expected . the robot was sent into the plant after the first one broke down .\nlord fellowes , 65 , has revealed he is to turn trollope 's 1858 novel doctor thorne into a new three-part historical drama for itv . tale considered one of his best works and is likely to attract an a-list cast . tv insiders say hugh bonneville , who plays lord grantham in downton and lily james would be ideal as thomas thorne and mary .\nzachary davis , 17 , is on trial for the murder of his mother and attempted murder of his brother . brutally bludgeoned melanie davis to death in her own bed in august 2012 . then set fire to the family home in an attempt to kill his older brother josh . the teen confessed to the arson and murder but alleged sexual abuse . police have found no evidence of rape and josh davis , 19 , has denied it .\nceltic missed out on the chance to secure a domestic treble after crashing out of the scottish cup semi-final 3-2 to inverness on sunday . the hoops were controversially denied a penalty after a blatant handball by inverness ' josh meekings in the area . still , with the league cup already won in march , celtic have the opportunity to win two trophies if they can clinch the spl title . defender virgil van dijk wants to wrap up the league as soon as possible .\nbrian o'driscoll laments lack of money in the english game . the french league has become a honeypot for billionaires . saracens are the only english team left in the champions cup .\nthe school girls , aged between 16 and 18 , undergo a five-day intensive knife-fighting course to learn self defence . the students are being trained by a former special forces soldier called inspector tan who supervises the drills . the 27th march huizhou integrated high school purchased 250 knives - with plastic retractable blades for safety . however , instructor tan said following his course the girls will be able to defend themselves even with chopsticks .\nbadou jack beat anthony dirrell on points at the uic pavilion . it saw jack narrowly claim the wbc super-middleweight title . george groves is the mandatory challenger for the title .\nmother-in-law is often jokingly portrayed as least favourite family member . poll on modern families reveals this is a reality for almost a quarter of brits . they said their pet dog was more important to them than their in-laws . research found households where children had multi-parental figures was also on the rise .\na white police officer in south carolina is charged with killing an unarmed black man in the back . david love : what happened tells us the epidemic of police deadly force against black people continues .\njonathan trott out cheaply twice in basseterre . the england batsman preparing for his first test since ashes turmoil . england 's low-key warm-up week in st kitts drew to a close . ian bell retired on 43 and alastair cook after making 22 .\ncolin farrell is infamous for dating high-profile actresses and models . his early career has been overshadowed by his party-hard lifestyle . the 38-year-old now says he 's dedicated to being a father to his two sons .\nmoeen ali will join up with england ahead of second west indies test . moeen recovered more quickly from a rib injury than anyone expected . england batsman suffered when facing short balls in last summer 's ashes . moeen says he has rectified problem and is ready to take on the mitchells .\naljaz bedene wins first round of qualifying for casablanca open . beats frenchman maxime chazal in straight sets 6-3 6-2 in morocco . bedene is now british no 2 behind andy murray after switch .\n19-year-old from north west of the capital arrested at airport today . he had just landed in britain on a flight from istanbul in turkey . teenager is accused of committing and assisting acts of terrorism . charged at police station and due to appear before magistrates today .\nheadteacher linda shute has banned tea , coffee , fruit juice and soft drinks . pupils at rowdown primary school in new addington can only drink water . but outraged parents have launched a campaign to overturn the decision . they claim children are going all day without a drink because they do n't like water .\npolice in kinnelon , new jersey , rushed to the crash scene after a tip-off about someone driving erratically in the local area . with smoke already coming from the vehicle the officers had to act fast to get the injured woman free . just 2 minutes and 30 seconds after the officers had removed the woman from the wreckage the vehicle became engulfed in flames . dawn milosky , 45 , has been charged with driving while intoxicated and having an open container of alcohol in the vehicle .\nsuspect identified by french authorities as sid ahmed ghlam . prosecutor : someone in syria asked the arrested man to target french churches . evidence connects terror plot suspect to the killing of aurelie chatelain , he says .\nthe patriots qb posted a picture of himself in a hospital bed on facebook and wrote : ` jordan 's crossover no joke ' brady and michael jordan spotted playing some pick-up ball few days ago . google had a few bizarre treats for users along with domino 's pizza which apparently introduced the ` domi-no-driver ' .\nu.s. president implied that china was bullying its neighbouring countries . america criticised china for building artificial islands in south china sea . chinese leadership claim washington wields the greatest ` military muscle ' nearby countries say china could use the land mass for military purposes .\nliverpool 's mario balotelli receives more abuse than any other player . the italian was on the end of 8,000 messages , with danny welbeck receiving 1,600 in a study carried out by kick it out . anti-racism campaigners found 134,400 derogatory messages were made in just seven months on facebook , twitter , blogs and other social media . rio ferdinand was fined for including the word ` sket ' in a tweet .\nwest brom will make a # 3million bid for swansea defender neil taylor . the left back is seen as the player to fill the left back void for tony pulis . swansea are believed to be open to offers for the 26-year-old . click here for all the latest west brom news .\nsatire puppet show depicts prince george as a ` blinged-up rascal ' duke and duchess of cambridge seen worrying about ` common ' son . prince puppet seen addressing female doctor with ` oi , oi ! hello treacle '\nemail from mp toby perkins reveals that interns are paid # 25 per week . that equates to # 4 per day for putting in a 12-hour shift helping campaign . labour swore to up minimum wage and promote living wage in manifesto . party denies using interns and said the group are actually volunteers .\namanda knox , 27 , and her family have been left in financial difficulties by the fight to clear her name . biographer douglas preston claims the seattle native now suffers ptsd . claims that the knox family have used up the $ 4 million advance she got for autobiography . he says that despite being declared innocent last month the victory was bittersweet . in late march , knox , 27 , and ex-boyfriend raffaele sollecito were acquitted of murder of meredith kercher in november 2007 . pair were convicted of murder in december 2009 , before being acquitted in october 2011 and reconvicted in 2014 . spent a total of four years behind bars while they were in italy .\nwilliam kerr was released on licence in january but left bail hostel in hull . 53-year-old was jailed in 1998 for the murder of maureen comfort . ms comfort 's body was found in a cupboard in her flat by relatives .\nmackenzie moretter , of shakopee , minnesota , celebrated her tenth birthday on saturday . when none of her classmates could come to her party , mackenzie 's mother posted on facebook groups , inviting strangers to the celebrations . more than 700 people joined a facebook event for the birthday party . hundreds of people flocked to a park in shakopee on saturday . they brought mackenzie gifts and food and she made new friends . mackenzie was diagnosed with sotos syndrome when she was a year old . the disorder delayed her development and makes it hard to socialize .\nnorwich scientists have developed a # 50 adaptor for colour blindness . it can be plugged into any hdmi port on a tv or a computer monitor . a remote control or app then adjusts the colour adjustment . it allows colour blind people to watch shows they otherwise could n't .\nmanchester united take on manchester city on sunday . match will begin at 4pm local time at united 's old trafford home . police have no objections to kick-off being so late in the afternoon . last late afternoon weekend kick-off in the manchester derby saw 34 fans arrested at wembley in 2011 fa cup semi-final .\n39-year-old man shot numerous times while sitting in a car at his mother 's . the man is reportedly known on facebook under the nickname karl kay . police believe the attack was targeted and the victim was known to them . authorities refuse to comment on whether the incident was gang-related . ` it 's a vendetta i believe , ' one concerned neighbour says , however .\ntop muslim prosecutor warned that another 7/7 terror attack could happen . nafir afzal said british teenagers see isis as ` pop idols ' like one direction . children are manipulated by islamists like sex grooming gangs , he added . next government should recruit muslim role models to help mentor teenagers who have been radicalised , prosecutor said .\nbradley dew was drinking with his deaf friend at pub in faversham in kent . he later stole his friend 's mobile and hit him in the face to steal # 10 . dew fled , hiding from police in toilets of a pub close to his friend 's house . the 26-year-old was jailed for two years and labelled a ` bully ' by police .\nrandy lerner was expected to make a rare appearance for wembley game . but lerner had to miss the match on sunday after his aunt died . aston villa beat liverpool to reach the fa cup final .\nben stokes holed out in the deep for eight on day three in grenada . as stokes left the field , marlon samuels stood and saluted his foe . curtly ambrose said : ` there 's nothing wrong with a little bantering ' graeme swann said the salute made him ` laugh tea out of my nose ' england lead by 74 runs at stumps on day three in st george 's .\na # 250,00 lamborghini supercar hit a tree and then smashed into a bollard . the car crashed just metres from a primary school and wheel flew off . wheel narrowly missed martin johnson and granddaughter charly pennett . owner apparently got out and joked he would buy a new one tomorrow .\nchristopher wheeler , 54 , worked at the exclusive tower hill in delaware . police discovered 2,000 indecent images on his computers in october 2013 . composer and pilot was found guilty of multiple sex offences in december . he was headmaster for nine years and earned around $ 370,000 a year . his attorneys claim the court tried to paint him as ` mr filthy ' . elite school was founded in 1919 by members of the du pont family . past graduates include us senator chris coons and tv personality dr oz .\n18-year-old xie xu met his 19-year-old classmate zhang chi at school . zhang has muscular dystrophy , a condition which makes it difficult to walk . xie has been carrying zhang to and from school each day for three years . he helps him wash his clothes , get his meals , and get to classes . both boys are the top of their class and hope to go to university .\nreality tv star is meeting party leaders to try to understand the election . essex boarded a boat after telling reporters he ` likes fish and stuff ' farage is a keen angler and essex used to work at billingsgate fish market . ukip leader ` has n't a clue ' what a vajazzle is and has never had a fake tan .\nwhite house communications director jen psaki is expecting a baby girl in july ; legislative director katie fallon has a may due date for twin boys . both women say the president has been supportive of their decision to grow their family while serving in his administration .\ncarl bradey lost everything he owned in a raging house fire last month . he lost all feeling in his arm and suffered severe burns to his whole body . he was burned after rescuing a three year old girl from the blaze . the 25-year-old has undergone four major operations since the fire . he has launched a crowdfunding appeal to help replace his belongings .\nthe ohio-based national school safety and security services reviewed more than 800 school threats covered in the media during the first half of the 2014-15 academic year . researchers found that about one-third of cases involved violent remarks sent anonymously via text message , social media or other online means .\npolice made the discovery as they searched the home of bruno fernández . the 32-year-old has been arrested over disappearance of his former lodger . neighbours say he used to sacrifice live animals in apparent satanic rituals . landlord seen being led away from home in madrid suburb of majadahonda .\nstegosaurus fossils have been found with two different types of plate along their backs - large broad plates and taller sharper plates that are smaller . experts long believed they belonged to separate species of stegosaurus . new research found the different shapes may distinguish male and females . palaeontologists say the plates could have been used to help attract a mate .\ncountry music star booked july 17 concert benefiting sandy hook promise . conservative fans mad that star helping raise money for gun control . commenters say that he could slide to obscurity like the dixie chicks did after statements criticizing george w bush .\njoan langbord , in her mid-80s , and sons win back ten 1933 double eagles . family had brought rare coins to secret service when they were taken . coins from langbord 's father israel switt had been in a lock box until 2003 . very few of the $ 20 coins exist because fdr ordered us off gold standard . government said switt stole them , though he could have traded for them .\nduncan burton , 57 , was charged last week with rape in houston , texas . released from jail in 2012 after serving 14-years of an 18-year sentence .\nmelbourne-born designer martin grant will refresh qantas pilot uniforms . a key focus of the redesign will be the female uniform , to cater for an increasing number of women joining the ranks . the focus will be on comfort and durability as pilots can spend up to 16 hours in the cockpit at any one time . the attire worn by the airline 's pilots has evolved significantly since 1935 .\ndiego maradona was filmed hitting a dummy during boxing training . former argentina star hit dummy in head and on the body .\nrotherham beat brighton 1-0 at the new york stadium on saturday . matt derbyshire opened the scoring for rotherham after just eight minutes . rotherham move seven points clear of the relegation zone with victory .\nbullish brendan rodgers says he is the man to take liverpool forward . his time at the club is under scrutiny after fa cup semi-final defeat . liverpool can hit back with victory at west brom on saturday . jordan henderson ` over the moon ' after signing new liverpool contract . man united and liverpool target memphis depay holds talks with psg .\nadrien broner posted a video of a facetime conversation with amir khan . the american has made it clear he wants to fight the briton next . khan said on twitter that he had given his word to his next opponent . kell brook is another possible opponent but khan wants to wait .\ndeputy michael hubbard spotted the woman on a highway overpass . south carolina cop pulled over on the i-16 and tried to talk to her . she tells him : ` just looking for my way out and being at peace ' officer then grabs her and drags her away from the ledge . he says : ` give me your hands , you 're not going out like this today '\nstuart armstrong has backed jackie mcnamara to come good again . mcnamara faced a furious fan backlash recently amid woeful results . club have won once since armstrong and gary mackay-steven left . was also revealed that mcnamara receives cut of transfer fees .\nmanchester united beat manchester city 4-2 at old trafford . win moved united four points clear of their cross-town rivals . city went from joint top on new year 's day to 12 points behind chelsea . marouane fellaini continues his rebirth in the last few weeks .\nzara and mike tindall were at a help for heroes event in wiltshire . cheered personal trainer rob edmond who was completing a challenge . edmond rolled a whisky barrel 517 miles from perthshire to wiltshire . tindall ran the final mile and says he would like to do a similar challenge . zara strapped herself into the barrel and laughingly gave tindall a lift .\njeff astle scored west brom 's winning goal in the 1968 fa cup final . he died in 2002 from chronic traumatic encephalopathy at the age of 59 . west brom wearing 1968 kit to mark launch of the jeff astle foundation .\nrichard stearman headed into his own net from a set-piece to gift ipswich an early lead at molineux . wolves equalised on 50 minutes with striker benik afobe volleying in from close range . the result keeps ipswich sixth in the championship , just three points ahead of play-off chasing wolves .\ndana perino and bush were visiting families at the walter reed military hospital in washington , d.c. in 2005 . perino said one mother of a soldier from the carribean was devastated . ` she yelled at the president , wanting to know why it was her child and not his who lay in the hospital bed , ' perino wrote . perino said bush ` needed to hear the anguish ' and later said he did n't ` blame the woman one bit ' for being mad at him . perino shared the story in her new book and the good news is : lessons and advice from the bright side .\nhenry rayhons , 78 , is preparing to stand trial in iowa for sexually assaulting his wife donna lou rayhons . suffering from dementia and alzheimers , she had been moved into a nursing home by her daughters from a previous marriage last year . doctors had told rayhons that his wife of seven years was no longer mentally capable of legally consenting to have sex . he ignored the request and charges were filed against him days after his wife died last august . rayhons faces 10 years in prison if he is found guilty of sexual abuse charges .\ndoaa and umm were smuggled from raqqa , in syria , to southern turkey . both used to work for the group 's female police unit , the al-khansa brigade . women reveal the different levels of punishment given out by the unit . they believe they have been followed by isis fighters since escaping .\no'malley using youtube to test out attack lines . how clinton 's new hire could help keep the obama coalition together . republican concerns about the new 2016 primary calendar .\naaron cresswell moved to west ham from ipswich for just # 2m in 2014 . the left-back has proved a good fit in the premier league since his move . john stones , nathaniel clyne and scott dann are other examples .\ncity 's players are on incentivised contracts because of financial fairplay . they will lose # 500k each if they miss out on champions league . manuel pellegrini 's team are currently fourth in premier league . but they are only four points ahead of fifth-placed southampton .\nmanchester united lost 3-0 by everton at goodison park on sunday . louis van gaal said united 's motivation did not match everton 's . the united boss could tell the attitude was not right in the warm-up .\nfreddie gray died on sunday after slipping into a coma . he was arrested a week earlier under murky circumstances .\nin game of thrones , valyrian steel was forged during the valyrian freehold . it is said to be sharp , light , strong , heat resistant and dark with patterns . scientist has studied which materials could create a similar , real life sword . and concludes it 's not a steel at all , but is instead a metal matrix composite .\nqpr beat west brom 4-1 away from home on saturday in bid to beat drop . club remain 19th in the premier league but are three points from safety . chris ramsey 's side face aston villa in crunch match on tuesday . qpr manager says his players have belief that they can stay up .\njamie carragher has slammed newcastle united owner mike ashley . the sportsmail columnist called the club ` boring ' saying ashley just wants to make money while in charge . carragher says he understands the fans frustration at how club is run . click here for all the latest newcastle united news .\nvideo footage captured by rumble user sean c shows bourbon the doberman enthusiastically licking a baby boy on the face and nose . while some have deemed the clip ` cute ' other viewers have been turned off .\ntottenham manager wants to speak to fa over harry kane 's involvement in the u21 european championships . spurs striker is available despite breaking into england senior squad . kane and spurs will travel to australia and malaysia for post-season tour .\nbeatrice seen watching race on terrace with the gulf state 's crown prince . marks 13th holiday since november last year , and fourth in a month . princess quit her job at sony pictures in new york before christmas . despite that she is described as working full-time on her father 's website .\nthe tiger sanctuary has been told their 147 cats must be handed over . wat pa luangta bua yanasampanno does not have permits for the tigers . the animals will be rehoused at breeding centres in thailand . animal rights activists have been campaigning against the treatment of the chained tigers posing with tourists for photos for years .\nmusacchio snapped his ankle chasing ball 13 minutes from end . the horror injury overshadowed villarreal 's 1-1 draw with getafe . ikechukweu uche penalty was villarreal 's first goal in five league games . diego castro equalised to ensure a point for getafe .\neamon sullivan proposed to girlfriend naomi bass in kyoto , japan . the pair were out for an evening walk when he dropped to one knee . proposal took place under a cherry blossom tree filled with white doves . pair met in perth in 2011 , where they live with their three dogs . sullivan previously dated fellow olympic swimmer stephanie rice .\nscientists at grand valley state university , michigan , studied elite runners . they found the men tended to have greater competitive drive than women . women tend to prioritise other aspects of their lives like academic studies .\nweinstein 's wife georgina chapman , 38 , is seeking to find a resolution to the allegations as soon as possible , according to one of the sources . on friday it emerged a sting set up by the nypd shows weinstein did n't deny touching italian model ambra battilana - and apologized to her . she alleges he asked her for a kiss and then groped her during a ` business meeting ' at his manhattan office on friday night . a source claimed during the recorded conversation set up under the watch of the nypd , he did not deny touching her . the hollywood producer has denied the allegations and has spoken to police , who have not filed charges . but a spokesman for chapman denied the marriage was in trouble and said they had spent the weekend together .\ngirl disappeared from a car wash in gardena , california , on april 2 . she was found two hours later naked at a burger restaurant 13 miles away . police searching for driver of white nissan altima with tinted windows . man in torrance noticed his neighbor was altering his car and called police . michael david ikeler , 36 , was then arrested one week after abduction . charged one count of lewd act upon a child with a kidnapping allegation , and two counts of oral copulation or sexual penetration of a child . ikeler pleaded not guilty on april 13 .\nthunderstorms with large hail are predicted for the midwest and the plains . tornadoes could strike thursday night and friday .\nsergio aguero went up against marco reus in an unusual head-to-head . the stars were helping promote puma 's newest football boot . the manchester city revealed that his side have n't given up on the league . click here for all the latest manchester city news .\nfemale jihadis shown firing ak 47 rifles and parading in the syrian countryside . the group of women enthusiastically chant slogans about islam and jihad . fully dressed in burqas , some of the women appear to struggle with their weapons . the footage was filmed near the ancient pilgrim site of st simeon 's church , around 60km from the syrian city of aleppo .\nfloyd mayweather v manny pacquiao is now just nine days away . sportsmail 's jeff powell has been counting down the greatest fights . in the sixth of a series of 12 fights that shaped boxing history , we have sugar ray leonard v roberto duran . leonard humiliated his opponent until he said ` no mas ' - no more . it took duran three years to reclaim his mantle as a hero in panama .\nsearch archive can be downloaded by visiting history.google.com . feature exports all your searches to google drive in a zip archive . google is also allowing the option of deleting search archive entirely .\ntony abbott insists tough line on migrants is the only way to stop deaths . said army should be deployed to prevent asylum seekers arriving on land . he has ordered australian military to turn back boats carrying migrants . controversial move has seen near-daily arrivals fall significantly , with no reported deaths at sea off the coast of australia so far this year .\njessica kensky and patrick downes call their view 'em otional and practical ' their words come after similar statement from family of eight-year-old martin richards , who was killed in the blast , and his sister jane who lost a leg . jury will decide on tuesday whether dzhokar tsarnaev gets death penalty . two weeks ago he was found guilty on all 30 counts relating to the bombing .\nmichael vaughan said alastair cook 's movement had improved since last year . cook was caught for 13 moments after vaughan 's praise . cook has struggled with the bat over the last year .\nhuman bones found at gough 's cave in cheddar gorge , somerset , bore cuts and bite marks proving the people there engaged in ritual cannibalism . the remains have been found to be 14,700 years ago and belonged to prehistoric modern human hunter-gatherers known as the magdalenians . skulls found in the cave also had been cut and shaped into bowls and cups . researchers at the natural history museum in london believe cannibalism may have been regular part of disposing of dead relatives at the time .\ngary lincoln , 48 , from wales severed hand using an electric angle cutter . he was working in cardiff when his jacket sleeve got caught in the blade . surgeons were able to reattached hand and he is back at work weeks later . mr lincoln said he ` did n't feel any pain at all ' when he chopped hand off .\nchild has amassed thousands of twitter followers with ` gang life ' photos . in one video he points gun at camera as adults look on unfazed . his tweets have prompted backlash with calls for intervention .\nwhite house weighing whether obama should meet with raul castro . a serious congressional ripple effect from the menendez indictment ? it 's decision time for gop operatives as the 2016ers get ready to launch .\ndoctors and nurses have criticised ashya 's parents in bbc documentary . dr wilson claims chemotherapy was essential to reduce chances of five-year-old 's cancer returning . complained of ` vitriol ' to which he had been subjected as a result of case . consultant warns case - which saw parents ignore medical advice to take ashya to prague for proton beam therapy - could set a worrying precedent .\nnew york is currently enjoying a cultural makeover . highlights include the sculpturecenter in queens and experimental plays . classic new york spots such as the marvellous moma remain excellent . another highlight is the museum of moving image in queens . icelandair allows travellers flying to the us to stop off en route . itineraries include visits to reykjavik and the stunning golden circle .\nkathrin goldbach 's family are reportedly afraid to face ` hatred of the world ' her boyfriend andreas lubitz flew the plane he was co-piloting into alps . kathrin , brother andreas and their parents have left home in montabaur . close friends say family have no plans to return to close-knit community .\ncnn 's dr. sanjay gupta answers questions about medical marijuana . readers wanted to know how medical marijuana could ease symptoms of illnesses .\nthe actress was woken up the morning of june 8 by a strange sound . she walked around her home and found a stalker fan had broken in . bullock then locked herself in her closet , which has a safe door for security , and called police . on thursday , accused intruder joshua corbett had a hearing in la court . during the hearing , bullock 's emotional call to police was played . a judge is currently deciding whether there is enough evidence to put corbett on trial for stalking and breaking into bullock 's home .\nbaroness hale of richmond wants to see ` bitterness ' taken out of disputes . the current system means one person must be ` at fault ' in a divorce . lady hale suggests year 's ` cooling off ' after declaring relationship 's end . she also wants plans for children and money sorted before divorce is given .\ncraig roberts , 36 , went to chadderton post office to top up electric meter . but staff said he would not be served unless he left his guide dog outside . mr roberts was born with glaucoma and has 30 per cent vision in one eye . he was eventually served after a ten minute standoff with an employee .\nhelen dunn opened sunday mercury newspaper , saw raunchy pics . the 78-year-old was on cover of vintage lads mag , span , in 1955 . went on to marry manchester united pro footballer , alan dunn .\ntremors subside finally in kathmandu , but after-effects of saturday 's staggering tragedy will be felt for years . arwa damon and gul tuysuz take tour of devastated city as locals struggle to cope . workers dig painstakingly , slowly removing piles of stone and debris .\nsecond modified , armored van spotted near des moines , iowa alongside the one that hillary clinton travels in . visually identical black vehicles ' biggest difference is the color of their new york license plates . one is a chevy and the other a gmc but they are mechanically identical and one was seen using secret service-fitted red and blue lights . van dubbed ` scooby ' in homage to the scooby-doo cartoon show brought clinton to iowa from her new york house . ` scooby-two ' made its debut in norwalk , iowa on wednesday outside a fruit processing plant where clinton made a scripted appearance .\ncristiano ronaldo bagged five goals in 9-1 victory against granada . karim benzema scored twice for carlo ancelotti 's real madrid side . benzema believes ronaldo ` deserves everything he has achieved ' .\nnakhi wells opened the scoring after an error from on-loan zeki fryers . james vaughan doubled the advantage after 30 minutes for the home side . luke varney pulled one back for ipswich straight after the break . ipswich have now lost four out of five away in the championship .\nstudy from commerce department says us was worth $ 26trillion in 2006 . dc and new jersey worth the most per acre , with wyoming the least . forty-seven per cent of the us is farmland , only 5.8 per cent developed .\nreview by catholic news service says hit show is not historically accurate . slams depiction of catholic saint sir thomas more as ` just plain rude ' audience encouraged to root for ` monster ' thomas cromwell , review adds . programme starring damian lewis screened for first time in us on sunday .\ngemma the pit bull was filmed at home in california being fed some treats . but in a bid to trick her , her owner throws a broccoli spear into the mix .\nricardo moniz has six games to save notts county from relegation . the magpies are in the league one drop zone , one point from safety . notts county sacked shaun derry as permanent boss on march 23 . the club have confirmed that dave kevan will be moniz 's assistant .\n20-time champion ap mccoy 's penultimate race will be with mr mole . his last mount is box office in the 20-runner handicap hurdle . mccoy 's closes the curtain on a glittering career at sandown on saturday .\ndeath toll rises to more than 6,100 . pemba tamang , 15 , shows no apparent signs of serious injury after rescue . u.s. special forces helicopter 30 , including 3 americans , to safety .\nlewis hamilton claimed third grand prix win of the season on sunday . he will now help nicolas prepare for british touring car championship . younger brother set to become the first disabled competitor to take part .\nthe stoke player stunned chelsea faithful with breathtaking strike today . scottish midfielder picked ball up deep into his own half before shooting . the goal is already been hailed as one of the best ever on social media .\nrecord numbers have flocked to see local boy jordan spieth in action . spieth and phil mickelson have been gearing up for the masters . texas-born spieth quit university in order to concentrate on golf career .\nwest brom are seven points above the relegation zone . tony pulis has never guided a team into the top half of the premier league . pulis has never been in charge of a side who have been relegated .\nrangers ' teenage striker ryan hardie scored a brace on his full debut . haris vuckic 's stunning volley sealed the points for gers against dumbarton . stuart mccall fulfilled his promise of experimenting with academy players .\nst mary 's hospital in west london is the first choice of venue for the birth . but royal berkshire in reading and queen elizabeth in norfolk on standby . plans in case kate goes into labour while visiting parents or country estate .\nman was driving to visit his elderly mother when he saw injured woman . said he did n't stop because he did n't want the inconvenience . returned to find that woman was his mother , and she died from her injuries . drivers in china often reluctant to stop at accidents for fear of getting sued themselves .\nfire crews in south wales stretched to breaking point by wave of wildfires . authorities call on parents to report children if suspected of starting blazes . fires ` turned the valleys black ' and devastated wildlife in surrounding area .\neo pp03 runs on 50 kwh lithium-ion battery pack that drives six motors . it produces 1020 kw -lrb- 1368 horsepower -rrb- and has a peak torque of 2160 nm . car will compete in the pikes peak international hill climb in colorado .\nfor a limited time starbucks will be introducing the s'more frappuccino which is scheduled to hit stored on tuesday , april 28 . the drink will be made with a combination of marshmallow whipped cream , milk chocolate sauce , graham crackers , coffee , milk and ice . starbucks says that the drink is inspired by the ` the nostalgic summer experience of roasting s'mores '\nkevin bollaert was found guilty of 27 counts of identity theft and extortion . he operated ugotposted.com , where anonymous users posted nudes without the subject 's consent . he then earned tens of thousands from running changemyreputation.com , where victims would pay fees of $ 300 to $ 350 to have their photos removed . also published their names , addresses and social media details . victims spoke out and said they received a slew of ` crude comments ' on social media but no longer feel ashamed for sending nude pictures . bollaert was sentenced to 18 years friday , which judge said reflected amount of victims .\nair india has evacuated 2,500 people in recent days from yemen , indian official says . passengers could only bring carry-on luggage onto the airplane . the saudis have not destroyed the airstrips , which are controlled by houthis .\n' i have a video of you walking away from your car on numerous occasions , you are not handicapped ! , ' reads a note to natasha hope-simpson . hope-simpson became disabled after her leg was crushed in a tragic hit-and-run accident in 2013 and she lost a part of her left leg below the knee . instead of being upset by the note , hope-simpson says she is flattered because someone could n't tell she was handicapped .\njameela jamil , 29 , is convinced dental work triggered health problems . for months she would suffer swelling , feel exhausted , and faint . thought she might have a serious disease such as lupus . tests suggested she had high levels of mercury due to amalgam fillings .\nsisters yogita rameshbhai nandwana , five , and anisha , three , and brother harsh , 18 months , live in india . they are among world 's heaviest young children - weighing 5st 5lbs , 7st 8lbs and 2st 5lbs respectively . food eaten by three siblings - who have sister of average weight - in a week would feed two families in a month . father rameshbhai nandwana is planning to sell his kidney to earn the money needed to see top specialists .\nzinedine zidane has revealed his admiration for chelsea 's eden hazard . zidane said he likes him more than cristiano ronaldo and lionel messi . hazard is one of the main reasons chelsea will win the league , says zidane .\niain mackay , 40 , saw his thai girlfriend talking to another man in a bar . trio reportedly got into a furious argument at the coastal hua hin resort . shortly afterwards mr mackay appeared in a nearby shop bleeding heavily . was suffering injuries caused by shards of glass from a smashed mirror . paramedics were called to the scene but he died in hospital hours later .\nthe santo seat -lrb- special accommodation needs for toddlers and overweight passengers -rrb- won the prize for passenger comfort hardware . the crystal cabin awards took place this week in hamburg , germany . the sii deutschland design is one-and-a-half times the usual chair width .\nchelsea are poised to join arsenal in the hunt for raheem sterling . manchester city are also interested in the 20-year-old liverpool star . brendan rodgers said reds winger is ` going nowhere ' this summer .\njoe launchbury has been out of action for wasps since october . 24-year-old suffered a nerve problem caused by a bulging disc in his neck . wasps face leicester tigers at the ricoh arena on may 9 .\ndaniel sturridge appeared in a promotional video for bt sport . he was joined by comedian darren farley , who impersonated michael owen . farley 's impression of the former reds striker left sturridge giggling . liverpool take on aston villa in the fa cup semi-final on sunday .\nhudson swafford shares the lead on 11-under with boo weekley . play was later suspended on friday due to the threat of sever weather . england 's justin rose is four shots off the lead on 7-under .\nicon has amassed # 77million fortune since rise to fame eight years ago . former dumfries shelf-stacker now owns # 11 million beverly hills mansion . ivor novello winning dj has worked with the brightest stars in pop music .\nbobbi kristina brown has `` global and irreversible '' brain damage , her grandmother says . `` we can only trust in god for a miracle at this time , '' cissy houston says . bobby brown , her father , had said at a concert that she was `` awake ''\npunting aces say they have found a way to beat the odds in australia 's iconic game of chance . if you lose a bet then keep doubling up until the coins fall your way . gambling experts say it is not vital to stick to your original call . most rsls and pubs across australia will feature games of two up . the game of two up can be traced back to the 1790s .\nthe dharahara tower in kathmandu was brought down by the force of yesterday 's 7.8 magnitude earthquake . durbar square in the centre of the nepalese capital is filled with rubble after historic temple collapse . complex above the city which is considered one of the holiest sites in buddhism was also hit by the disaster . more than 2,500 people are believed to have died in the devastating earthquake in nepal and neighbouring countries .\nmegumi igarashi makes pieces of art that are modelled on her vagina . her case has sparked accusations of heavy-handed censorship . ` the data for female genitals is not obsence , ' she told a tokyo court .\nphotographers in the uk captured the lyrid meteor shower in the sky last night . it occurs every year around 16 to 25 april , so you can still catch some meteors tonight and tomorrow . the strength of the showers vary from year to year and most years there are no more than 20 meteors an hour . but in 1982 americans counted nearly 100 an hour and in 1803 it was as high as 700 an hour .\nclare goldwin has forked out for pricey boden clothes for her daughter . but she has never wanted to be labelled a boden ` yummy mummy ' herself . the brand seems to have its style and the fashion world is impressed . clare put a selection of their latest outfits to the test for femail .\ntv doctor used thursday 's show to hit back at his critics who he accused of having ` conflict of interest issues - and some integrity ones also ' ten doctors signed a letter last week calling oz a ` charlatan ' who promotes ` quack treatments ' oz said he was being targetted because he supports gmo labeling . his show featured a report on how some of the 10 doctors have received grants from monsanto , who manufactures gmo seeds . he also told nbc news that the dr. oz show is actually ` not a medical show , ' but it will no longer use ` inflammatory ' words like ` miracle '\na fight took an unusual turn outside a grafton pub late friday night . a woman reportedly joined an altercation armed with two rubber sex toys . witnesses say she was swinging them in the air , threatening bystanders . ` out of nowhere this other woman joined the fray with a dildo in each hand ' police attended the scene but no complaints were made about the woman .\naustin hatfield of wimauma was keeping the potentially deadly snake , aka a cottonmouth , in a pillow case in his bedroom . a friend said hatfield 's ` not afraid of death ' and the 18-year-old won himself the chance to face death down on saturday . hatfield was rushed to a tampa hospital in critical condition but has since improved and he 's expected to recover .\nshrewsbury and telford hospitals nhs trust paid the huge figure . equates to # 183 an hour and is double to going rate for a neurologist . hospital said temporary staff have to be used to cover staffing shortfalls .\nan estimated 50,000 americans are newly infected with hiv each year , cdc says . kevin robert frost : syringe exchange programs save millions in hiv treatment costs .\ncameron said he knows that ` fear and worries ' remain over immigration . under tories , two-thirds of uk job growth now benefits british citizens . pm said he will continue ` serious , sustained attempt ' to control immigration .\nhafeez bhatti and his wife khalida were verbally abused on a sydney train . the couple said they will be pressing charges when the woman is identified . ` she touched my wife 's head , that is one issue that i will raise , ' he said . the islamic couple are preparing a statement for queensland police . police sources confirmed an investigation ` definitely ' underway . the identity of the ranter remains unknown .\nthe phoenix mercury 's brittney griner and her fiancee glory johnson , both 24 , were arrested after a fight in their phoenix home on wednesday . the couple , who got engaged last year , ` had been fighting for days before the arguments turned physical and friends were unable to stop them ' both were released from police custody at 4am on thursday .\ndawn mackeen : 2015 marks 100th anniversary of slaughter of armenians by ottoman empire . kim kardashian has used fame to spotlight this . she says armenian community has long sought global recognition of the atrocity , but it took a kardashian to catapult it into the news .\npolice in troy , alabama , found the video while investigating a shooting . video ` shows two men raping unconscious woman on florida beach ' authorities say hundreds of people walk past but do n't intervene . troy university students delone ' martistee , 22 , and ryan austin calhoun , 23 , have been arrested in connection with the alleged incident .\nkim callaghan , from ireland , piled on the pounds after having children . limited to size 28 clothing kim , 39 , worried she resembled a man . she joined slimming world and dropped ten dress sizes as well as 10st .\nthree rabbis found guilty of conspiracy to commit kidnapping in new jersey federal court . they were accused of orchestrating kidnapping , torture of jewish men who refused to allow their wives a religious divorce . lawyers for the rabbis said they plan on appealing the verdicts .\nastronomer claims bright light and divine voice heard by paul 2,000 years ago may have been exploding meteor similar to the one over chelyabinsk . uv radiation could have caused temporary blindness called photokeratitis . scientist claims this may have been the source of paul 's ` vision ' in 30ad . paul the apostle was an instrumental figure in the spread of christianity .\namedy coulibaly stormed jewish store before being shot dead by police . hostages - including child , 3 , and baby - survived by hiding in cold store . lawyer claims broadcasters endangered their lives by revealing location . he said jihadist was following coverage of his raid on different channels .\nbacary sagna left arsenal for manchester city on a free transfer last year . the defender insists he does not regret making the switch to the etihad . city are behind fa cup finalists arsenal and face a season without a prize .\nteacher suggested german tanks should invade france to subdue pupils . frenchwoman also alleged to have defended adolf hitler 's domestic record . she has since been suspended from auguste remoir college in limoges .\ndr penman argues british people have lived too peacefully to innovate . rising inequality and division will lead to a collapse in society , he warns . adaption of genes means we are less aggressive or likely to go to war .\njenson button 's mclaren suffered electrical fault in first practice session . the brit managed just three laps in second session before break down . he fears he will again be at the back of the grid at bahrain grand prix .\njihadis face fines , whipping or even jail time for wearing nike products . ban is also partly due to the brand sharing its name with a greek goddess . commanders say the name also sounds like sexual slang words in arabic . those living under isis are already banned from wearing jeans or items of clothing carrying provocative language or swear words .\nvowed to set up exclusive club of ex-statesman in newsweek interview . described his ideas of leadership as ` close to a benevolent dictatorship ' . hopes to stay active in both politics and business well into his 90s . tory mp andrew bridgen claimed mr blair came across a ` megalomaniac ' .\nthe plane might have hit an object on the runway , the japanese transportation ministry says . 23 people have minor injuries , officials say . the airbus a320 overshot the hiroshima airport runway at 8:05 p.m. tuesday , officials say .\nilkay gundogan is seen as a successor to michael carrick in midfield . manchester united boss louis van gaal has been impressed by carrick . van gaal feels gundogan can replicate 33-year-old carrick 's displays .\nengland beat south africa 21-14 in the final at the prince chichibu ground . england had n't won a tournament since wellington in february 2013 . phil burgess , charlie hayter and tom mitchell scored england 's tries . win puts england fourth in series into the final olympic qualifying spot .\nfive men and one woman were arrested at 8am in the port 's departure zone . the group , all in their 20s , are currently being questioned at police station . searches taking place at a number of addresses in birmingham , west mids . suspects are not a family group and were not accompanied by children .\npeter kelly , 34 , was fatally stabbed on tuesday night at the st croix river . levi acre-kendall , 19 , charged friday with first-degree reckless homicide . max sentence is 60 years of combined prison and extended supervision . kelly and friend were fishing on minnesota side of river and heard swearing . asked three men on wisconsin side to be quiet and an argument ensued . kelly and friend drove over to other side and the fatal stabbing occurred . dead man , who volunteered as a high school wrestling coach in his spare time , leaves behind a wife and five children , all under the age of nine .\nnancy perry wo n't teach again at dublin middle school after giving students her highly critical personal opinion of president barack obama . one student told his father , jimmie scott , who complained to the school and requested a parent-teacher conference . she is the wife of a school board member and brought her husband along to parent-teacher meeting . scott says that perry showed him what he described as propaganda and called the president a ` baby killer ' a superintendent has said perry was already planning on retiring before the complaint about her behavior .\narsenal in advanced talks with velez sarsfield over deal for maxi romero . the 16-year-old wonderkid has been dubbed the next lionel messi . romero is expected to remain with velez on loan for at least two seasons . velez president confirmed arsenal have made a ` big offer ' for the player . romero 's agent revealed he has met twice with arsene wenger in london .\nclassic biscuits feature rolled oats , golden syrup and coconut . sarah wilson 's sugar-free version substitutes rice malt syrup . food blogger not quite nigella adds chocolate . raw foodie taline gabrielian came up with no-cook version of the classic .\nmain parties ' school spokesmen backed right to opt out of state education . they were asked if an education secretary could choose private school . labour 's shadow education secretary said : ` yes . in certain circumstances ' education secretary nicky morgan agreed , as did the lib dem david laws .\nsimona trasca , 34 , made a joke about cheap boob job on romanian tv . the joke implied that her plastic surgeon must be avoiding tax . surgeon dr marek valcu successfully sued ms trasca for # 1,500 .\nthe print ad ran in the most recent issue of vice magazine . the controversial company is looking to rebrand after founder and former ceo dov charney was ousted in december following a string of sexual harassment lawsuits .\nat three months old miles roberts was diagnosed with flat head syndrome . as it is considered a cosmetic problem , the nhs does not fund treatment . but a private clinic said it could cause blindness and facial disfigurements . mrs thomas raised # 2,000 in a day for helmet therapy to treat the condition .\nbenik afobe is aiming to become the country 's leading goal scorer . the wolves striker says he feels ` unstoppable ' at the moment . afobe has scored 31 times this season , one more than harry kane .\ncompulsory fitness tests introduced thanks to expanding waistlines . those who fail could move from assignments involving physical activity . fbi chief james coney : force depends on agents to ` run , fight and shoot '\nxabi alonso has been in fine form for bayern munich . robert lewandowski ensured bayern beat dortmund on saturday . pep guardiola 's side are top of the bundesliga by 10 points .\nphotographer atif saeed crept to within ten feet of the hungry male lion . fearless mr saeed left the safety of his car to sit on the ground for the shot . as soon as the camera captured the image , mr saeed had to flee for his life . the lion charged at the intrepid photographer as he closed the car 's door .\nmother of three erica leeder allegedly squirted breast milk at a police officer . the 26-year-old was picked up on an outstanding arrest warrant on april 7 . was charged with assaulting a police officer and fronted court on tuesday . perth woman spent a week in jail before she was released on bail .\nsikander rafiq and samara jabreen were in an eight year relationship . couple had three children together , but lied about their relationship status . they pocketed # 66,268 housing , council tax and income support benefits .\nreal madrid expected to have a summer clear-out when the season ends . barcelona want to limit first-team departures due to their transfer ban . but the b-team face relegation and barca want youngsters playing at a higher level .\npresident barack obama is attending the summit of the americas . frida ghitis says he must work to improve ties with region .\nfrench artist thomas lamadieu combines photography and illustration to create clever imagery . he takes photographs of the sky in urban locations around the world . the buildings in the photographs act as a frame for him to draw on abstract illustrations .\ncnn hero chad bernstein started music program that helps at-risk middle school students . nonprofit group guitars over guns pairs miami-area kids with professional musician mentors . do you know a hero ? nominations are open for 2015 cnn heroes .\nmanchester city are interested in arsenal midfielder jack wilshere . but arsene wenger insists the england international is not for sale . wilshere , abou diaby and mikel arteta passed fit for burnley clash . laurent koscielny facing fitness test on injury sustained against liverpool .\nmexican archaeologist found mercury in chamber of teotihuacan pyramid . the chamber had been sealed at the end of a tunnel for nearly 1,800 years . because of the potential supernatural significance of liquid mercury in rituals , archaeologist sergio gomez hopes to find king 's tomb in pyramid . teotihuacan , or ` abode of the gods ' in the aztec language of nahuatl , was distinct from the mayan civilization .\nrafa benitez 's contract at napoli expires this summer and he is set to leave . manchester city , west ham and newcastle could be looking for a new boss . benitez was a success at liverpool , but struggled to win over chelsea fans . but he still won the europa league with the blues and they are thankful . he would bring success to almost any premier league team next season .\nlatika bourke was born in india and adopted by an australian couple . her parents had two kids , adopted three then had another three naturally . she grew up in bathurst in nsw and had a very happy childhood . latika showed no interest in her heritage until she watched the movie slumdog millionaire where a girl had the same name as her . instantly besotted with her home country she has been every since 2012 . now 31 , she hopes to live in india one day and tell their stories .\nover 100 items including children 's jewellery , floor mats , kitchen utensils and silly straws contained either harmful plastics , metals or chemicals . many of the chemicals can be absorbed through ingestion and skin exposure , with children at risk due to their very high hand to mouth ratio . a study of four discount retailers in the us found 81 % of the products tested contained at least one hazardous chemical ` above levels of concern ' . ceo of australian college of environmental studies , nicole bijlsma , said the accc 's active chemical inspection program was ` not good enough '\nalmost 2 feet of ash fell in some areas . authorities evacuate 4,400 people . the last time calbuco erupted was 1972 .\nvera baird has allocated # 500,000 to be given to victims first northumbria . police and crime commissioner is a director at the newly set-up charity . chief constable sue sim is also on the organisation 's board of directors . critics have accused northumbria police of creating ` its own soap opera '\nabdul hadi arwani was found dead in wembley on wednesday morning . the 48-year-old imam had been replaced at the an-noor mosque in acton . his replacement was 53-year-old hassan anyabwile from the caribbean . anyabwile involved in attempted coup in 1990 , parliamentary report found . belonged to a local radical islamic group called jamaat al muslimeen . he moved to the uk after being given amnesty in exchange for surrender . he denied any dispute between the west london mosque and mr arwani . the mosque has refused to answer questions over mr arwani 's time there . counter terrorism police are now leading the investigation into his death .\ncolombia striker spotted out and about in manchester on thursday . radamel falcao scored three times in two games for his country . falcao has not found his best form , but wants to stay at old trafford .\nngo where lo porto works describes him as a lively , positive man with lots of friends . london university says he was a `` popular student ... committed to helping others '' he was killed in a u.s. counterterrorism strike in january , authorities say .\na piece of space history is going up for auction in new york this month . it is a bloodstained checklist from the gemini 4 mission in 1965 . this spacecraft orbited earth 66 times with two astronauts on board . blood came from astronaut 's hand while trying to close the hatch in space .\nmauricio pochettino 's tottenham travel to st mary 's on saturday . pochettino was hugely successful in charge at southampton . and saints midfielder steven davis is confident ahead of the clash .\njams mean ukip leader forced to pull the plug on farm visit in staffordshire . last year blamed ` open door immigration ' for getting stuck in traffic on m4 . plans to attack the tories over refusal to spend 2 % of gdp on defence .\nnatural world safaris offers tourists the opportunity to share space with the endangered species . the seven-day package includes ` basic accommodation ' and no guarantee you 'll see a rare tiger . guests are guided by conservationist alexander batalov , who works tirelessly to protect siberian tigers .\nsources in spain suggest real madrid could sell gareth bale this summer . the welsh winger is wanted by both manchester clubs and chelsea . bale has a # 75million release clause in his contract at the bernabeu . real madrid are keen to sign borussia dortmund midfielder marco reus . petr cech could join real if david de gea signs a new deal at old trafford . liverpool may make a summer bid for aston villa striker christian benteke . tottenham striker emmanuel adebayor is a target for french side monaco . sam allardyce could manage abroad if he leaves west ham this summer .\nlast week the apple watch went on sale to british tech fanatics . but it 's not the only one of its kind on the market , there are many more . now there 's a watch for everyone and we 've had a look at what 's on offer .\ngel contains platelet-rich plasma -lrb- prp -rrb- the concentrated mix of substances in the blood play a role in healing . it is made by taking a small amount of blood from a patient 's arm .\nalastair cook 's old failing against the full ball just outside off stump was again exploited by west indies . bbc 's test match special pundit geoff boycott questioned wisdom of jonathan trott returning to the england side . england recovered from a shaky start to end third day of first test on 116-3 in their second innings , a lead of 220 .\nukip leader nigel farage risks alienating those watching debate last night . complains of ` remarkable audience even by left-wing standards of bbc ' comments on housing pressure due to immigration greeted with mutters . david dimbleby says independent polling firm chose ` balanced ' audience .\nmost of the victims were children , according to reports . condolence messages appear online with images of boys in soccer uniforms . the bus collided with a fuel tanker near the southern moroccan city of tan-tan .\ndr mehmet oz is vice chairman at columbia 's college of physicians and surgeons and is a professor of surgery . he said in a statement that his show provides ` multiple points of view ' , including his , ` which is offered without conflict of interest ' comes after ten top doctors sent letter to school urging for oz 's dismissal . said there 's no scientific proof his ` miracle ' weight-loss supplements work . the dr oz show will air a special episode thursday , most of which will be dedicated to his rebuttal .\nringling brothers barnum and bailey circus announced that it will no longer have elephants in the show starting in 2018 . the elephants will be taken to the ringling brothers elephant conservation center in central florida . some will live their lives out there while others will be used for breeding .\naston villa 's players were sent in messages ahead of fa cup semi-final . tim sherwood 's side face liverpool in fa cup clash at wembley stadium . jack grealish posted snap of encouraging message written by a supporter . brad guzan also revealed the contents of his dressing room message .\nmany large chinese cities ration license plates as they look for a solution to gridlocked roads and pollution . it means many prospective car owners have to bid in license auctions . but hybrid vehicles automatically qualify for a license plate .\nflight lieutenant stephen beaumont took cherished bear on every flight . treasured mascot was by his side when he flew in battle of britain in 1940 . he was named beaumont bear and has raf tie and royal crest on chest . teddy expected to sell for # 10,000 when it goes under hammer at bonhams .\nthis week a recording of sandra bullock calling 911 was released . it was made in 2014 when the actress discovered stalker joshua corbett in her house . corbett was carrying a note addressed to the actress describing her as ` hot ' , ` taut ' and ` lithe ' other celebrities to have experienced stalkers , including justin bieber , kim kardashian and gwyneth paltrow .\nwashington company unveils matches that burn in testing conditions . the # 5.47 uco stormproof matches use a coating that always smoulders . they will start burning again once they comes into contact with oxygen . rigorous tests have drenched the matches in buckets , buried them in mud , and blown them with a compressed air hose .\nadriana giogiosa , 55 , was reported missing after flying back to madrid . police searched majadahonda flat she was staying in and arrested landlord . they found blood stains , a knife and an industrial meat grinder at house . officers are searching for three other missing tenants and the man 's aunt .\nkenneth morgan stancil , charged with first-degree murder , swears at the judge . deputies escort him from court after he tries to flip over a table . stancil is accused of killing an employee at wayne community college .\nhorrifying cctv footage shows two dogs tearing into a three-legged cat . dogs dragged family pet into a garden before mauling it to death . a woman arrives and calls the dogs away but leaves the cat to die in agony . warning : graphic content .\ngiant pig fell into the swimming pool at his home in ringwood , hampshire . it took the efforts of a team of firefighters to winch him out of the water . a wayward horse also had to be rescued from a swimming pool in sussex .\nashy bines started exercise program , ashy bines bikini body challenge . the 26-year-old has attracted enormous online following on social media . in a video , she admits recipes she shared were copied from ` other sources ' ms bines explained she outsourced her recipe finding to a nutritionist . she said she did this so her followers would get best advice from experts . pregnant fitness guru said her unborn child was targeted by online trolls .\nsandra garratt died on good friday after more than a year spent in agony . the 56-year-old underwent two operations on her back for a slipped disc . but her pain was so severe afterwards not even morphine could relieve it . days before her death doctors said there was nothing more they could do . mrs garratt 's grieving husband said the news had been ` the final straw ' hours before her death , she told him she was ` just popping out ' for awhile . for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here .\ntwo prototype aircraft were tested off the coast of haikou , in the hainan province of china . the cyg-11 plane can reach a top speed of 155mph and boasts a maximum range of 930 miles . the super-efficient craft uses increased lift and reduced drag from its wings to fly 16ft -lrb- 5m -rrb- above thewaves . engineers hope the groundbreaking aircraft could be used on ` motorways of the sea ' in the future .\nsouthampton have dropped out of the premier league top six . ronald koeman has pinpointed his team 's struggle to hit the net . he feels the problem is down to opponents having more respect for saints .\ngareth macdonald was murdered by glen rycroft in 2007 . fatally struck across head with fire extinguisher by his lover . he 'd discovered rycroft had been conning him and his family out of money . gareth 's parents wish they could have prevented their son 's death .\nabdirahman sheik mohamud , 23 , from columbus , said he got training from terror group linked to al qaeda in syria . was instructed by cleric to return to us and carry out terror attack . his suspected plan was to go to a military base and kill three-four soldiers ` execution-style ' . mohamud was arrested in february on state charges of money laundering and providing support for terrorism . if convicted in federal case , the 3-year-old could face up to 40 years in prison .\nkenya 's athletic federation has banned runners ' agents for six months . marathon world record holder dennis kimetto is a client of one of two banned management companies - volare sports and rosa & associati . investigations into a doping spike among runners is set to take place .\npresenter will be a guest host satirical quiz show have i got news for you . is believed to have been booked before he was dropped from top gear . bbc decided that despite his sacking , he is n't banned from corporation .\nswiftkey analysed one billion sets of emoji data across 60 categories . us uses lgbt emoji - such as men holding hands - 30 % more than average . russians use three times more romantic emoji including the kiss mark . while australians use double the average amount of alcohol-themed emoji .\ngate at border field state park , california , was opened for selected families on sunday in honor of children 's day . it was only the second time it had been unlocked by border patrol officers since it was put in place in mid-1990s . two young boys fell to their knees as they saw mom for first time in two years after she was deported to mexico . ` we talked about how life was without our mom . about how much we love each other , ' said one of boys , aged 10 . meanwhile , one grandmother wept as she embraced her seven-year-old granddaughter in front of photographers . many of the deported relatives had been living in us without documentation - and had not seen families for years . they were given just minutes to hug and kiss their loved ones ; event was organised by non-profit border angels .\npicture shows elisha wilson beach nursing her child while on the toilet . the photo has gone viral with more than 211,000 likes on facebook . but many have criticized the mom of two for her bathroom breastfeeding . la-based wilson beach says ` motherhood ai n't pretty '\nohio couple suing author lacey noonan as well as apple , amazon and barnes & noble . claim personal photo of them on the book 's cover was appropriated without permission and without them knowing . say the book has caused them to be ridiculed and humilaited . the fan fiction is about a woman 's sexual infatuation with new england patriots tight end rob ` gronk ' gronkowski .\nmanny pacquiao ran along griffith park trail as he worked on his fitness . the filipino was accompanied by his pet dog pacman during jog . pacquiao goes toe-to-toe with floyd mayweather in las vegas on may 2 . read : pacquiao reveals his colourful mouth guard ahead of his bout .\nhome secretary theresa may warned last night that lives will be in danger if britain is saddled with a hung parliament unable to pass anti-terror laws . said new legislation is urgently needed to update mi5 and gchq 's powers . but based on current polling parliament could be left deadlocked .\nthomaz alckmin , son of city governor geraldo alckmin , said to have died . he was on board when aircraft crashed in carapicuiba area of sao paulo . house was apparently empty of people and said to have been unfinished . three mechanics also thought to have died in crash at 5.20 pm yesterday .\ndebra lobo , 55 , is unconscious but is expected to survive after being shot thursday , police say . she is vice principal of the jinnah medical and dental college in karachi . police : she was on her way to pick up her daughters from school when she was shot .\nthe 23-year-old also revealed that she has been signed as the new face of beauty brand make up for ever . andrea is thought to be the first ever transgender model to land a major cosmetics campaign . the serbian-born fashion star underwent gender-confirmation surgery last year . before her surgery , andreja made a name for herself within the fashion industry as both a male and a female model , with her androgynous look .\nbilly vunipola was citied on monday night for an alleged butt . the saracens no 8 will face an rfu disciplinary panel on tuesday . toulon are plotting a move for australia fly-half quade cooper .\nrugby school in warwickshire known as the birthplace as modern rugby after celebrated incident . pupil webb ellis ran with a football during a match in 1823 , with the new game codified by pupils within decades . school is steeped in tradition and maintains its historic link with sport of rugby on its playing fields and in museum .\nisco unhappy with his role at real madrid . the spanish midfielder moved to the bernabeu in 2013 . isco had a choice of real madrid or manchester city . the 23-year-old worked with city boss manuel pellegrini at malaga . click here to see who real madrid will face in the champions league .\nhealth experts slam pete evans ' new baby milk formula as a danger to kids . dietitians says formula has five times daily vitamin a intake for babies . evans ' is an outspoken advocate for the paleo diet and lifestyle . pete evans has shared two incredible stories on social media . a woman , ` hollie ' , claimed the paleo diet alleviated her ms symptoms . another woman , marg , who also has ms , said her condition has improved . health experts say there is no scientific evidence to back up the claims .\nfullips device was created by linda gomez and her daughter krystle . works by creating a mini-vacuum while you suck on the apparatus . charlotte griffiths puts the suction-thimble that is sold for # 30 to the test .\nthe clip was taken in warrilla in nsw at about 1am on wednesday morning . the 15-year-old girl is flung into the air and appears to land on her head . amazingly , she escaped serious injury and was released from hospital . police have spoken with the driver and are continuing their investigations .\nstephen docherty admitted he lost control when he attacked a concreter . he took a large hook and tore another man 's scrotum open . the victim just finished a concrete job on mr docherty 's home . mr docherty said the job was not done to his specifications .\nburnley and tottenham played out a 0-0 draw low on quality on sunday . harry kane captained spurs but the league 's top goalscorer struggled . kane could not find the net and michael duff says his team stopped him .\nmidfielder had been a key performer while james rodriguez was out . but isco lost his place in the team when the colombian returned to fitness . injuries to luka modric and gareth bale saw isco return against atletico .\nsiem de jong has been out of action since the end of august . the # 6m summer signing suffered a collapsed lung in february . de jong was ruled out for the rest of the season but is close to full fitness .\nsocial media users flooded the internet with selfies on anzac day . several images had inappropriate and disrespectful captions . trend of misspelt hashtags , included #lessweforget #leastweforget . people pulled faces , stuck their tongues out and posed under #anzacday . the photographs were taken from instagram and shared on a tumblr page .\nthe 29-year-old attended the ivy chelsea garden launch party with friend . prince harry 's ex looked fresh-faced and in high spirits at the london party . paired chiffon top with slim-fitting navy trousers and tan wedges .\nsunderland beat a lacklustre newcastle 1-0 in tyne-wear derby . janmaat played the full 90 minutes despite suspected calf injury . the holland full-back admitted performance was n't up to standard . black cats have not taken 17 of last 21 point available in derby games .\n11 points split leaders setif and bottom-placed hussein dey with four rounds of the algerian league to play . all 16 teams could mathematically still win the championship . top two qualify for caf champions league while three are relegated . incredibly tense final day is expected on june 12 .\ntranmere on brink of relegation from league two with two games to play . rovers manager micky adams left club by mutual consent on sunday . tranmere could drop out of football league after 94 years .\nstudy looked at neanderthal forearm bone , left leg and right thigh bone . all of the bones had unnatural breakage marks possibly made by tools . scientists say neanderthal groups pulled apart bones on dead bodies . it is not yet known whether this was done for food or in a funeral ritual .\nthe duchess of cambridge is due to give birth on the 25th april . new arrival will have the use of two nurseries , both shared with george . one at anmer hall in norfolk and a second at kensington palace . duchess is thought to have ordered # 18.95 pots of pink paint .\ntravolta spoke out about the scientology-bashing hbo documentary on monday as he promoted his upcoming film the forger . the saturday night fever star says he wo n't watch a film by ` disgruntled ' ex-members that is ` so decidedly negative ' travolta says the church helped him get through the ` loss of children , loved ones , physical illnesses ... many tough , tough life situations '\na company called ultrahaptics has developed a technology to create 3d shapes in mid-air . a tactile sensation is provided by ultrasonic waves , which alter air pressure . the technology could be applied to electronic devices , car dashboards , and virtual reality headsets .\nthe woman was later identified as jacqueline carr , age 65 . still uncertain who owns the tree or was responsible for its upkeep . carr was the vehicle 's only occupant .\n# 2.99 editing app is thought to be loved by kim kardashian . allows you to retouch face , banish wrinkles and change eye colour . femail tests out retouching skills on their selfies .\nmanchester united face manchester city in the premier league on sunday . marouane fellaini has played a vital role in united 's rise to third in the table . fellaini was jeered by united and city fans in this this fixture last season .\npit crew member todd phillips was hit by a car on sunday during the inaugural indycar grand prix of louisiana . he was injuried when he was struck by the car of francesco dracone , who had come in on lap 25 for tires and fuel . phillips received stitches for a cut on his leg and has been released . dracone did not finish the race and wound up 23rd .\nleicester city travel to west brom in premier league on saturday . nigel pearson 's side have eight games to save top-flight status . currently sit bottom of the division six points from safety . foxes boss pearson admits they have no margin for error .\nmonsour alshammari , 27 , was arrested on friday at the border near san diego . he is set to be extradited back to utah where he faces charges related to the rape of a student in february . utah police said in court documents that they want him held without bail . they fear he could try again to flee the country and has already soon willingness to walk away from $ 100,000 bail .\nnew york university psychologists studied how the brain stores memories . found boring details become more memorable with emotional context . emotional experience can enhance memory for old neutral information .\nmichelle unveils full lipsy summer range . star , 27 , was also unveiled as face of tanning brand recently . swears by peanut butter smoothies and alkaline food delivery service .\nphotographs taken after the 7.8-magnitude earthquake sparked an avalanche on mount everest on saturday show the campsite buried beneath snow and belongings strewn across the mountain . eighteen people were killed in the avalanche , including three americans , and more than 60 were injured . survivors recalled harrowing tales of being pummeled by snow and rocks as they prayed for their lives . the massive earthquake is believed to have killed at least 4,352 people across the region .\nbeverley davis stole # 9,164 from ray warren , 89 , over three month period . the mother-of-three paid for chinese food , a creche and her mortgage . portsmouth crown court heard mr warren died after the cash disappeared . davis , 35 , will be released on licence after serving six months in jail .\ndocumented and undocumented immigrant population in the united states could reach a record high of 51million in just eight years . president barack obama is trying to use executive powers to expand immigration policies in the united states . changes could exempt 5million undocumented immigrants from deportation . republican presidential candidates have to figure out what their stance is on the subject as potential new policies could be established .\nsome smiled over an honor they felt was overdue , but also clenched their teeth over needs they say the army has denied . ' i try not to be bitter . but it 's kind of hard not to be bitter , ' said jackson , a former staff sergeant . thirteen people were killed and 31 were injured in the 2009 attack carried out by an army psychiatrist who is now on military death row .\nreal madrid return to action at rayo vallecano on wednesday night . they kept up the pressure on barcelona with a 9-1 thrashing of granada . cristiano ronaldo scored five goals in the bernabeu rout . carlo ancelotti now faces a selection poser ahead of rayo visit . isco and james rodriguez are both fit and available again . barcelona , four points clear , host almeria on wednesday night .\ntaxpayer money used to pay for an ` army ' of spin doctors in local areas . the number of communications staff in local government more than 3,400 . total is more than double the number working across central government . london has 425 members of pr staff working across its local authorities .\nthe #kyliejennerchallenge is currently sweeping social media . method involves creating an airlock which forces lips to swell . teens are hoping to emulate kylie jenner 's puffy pout .\nliberty island evacuated by boat around 12:30 pm friday , officials said . bomb threat made by 911 who said ` they would blow up the statue ' police dog unit sniffed out potential explosive in locker on island . but a full security sweep determined that it was a false alarm . area was deemed safe at 4:30 pm , but island remained closed . 2,700 tourists were removed from the island ; had tickets refunded .\ndeath ring is made up of i-80 and route 101 which run beside the bay . other hotspots include sacramento and route 94 in san diego county . the map uses different coloured markers to highlight the species at risk . scientists believe the drought has caused animals to take bigger risks .\njesse roepcke , 27 , charged with pointing a laser at a driver or pilot and possession or use of narcotic paraphernalia . he is accused of riding around ormond beach , florida , with his fiancee and shining a laser at passing cars . during traffic stop , roepcke told police he was just having fun and did n't know shining a light in drivers ' faces was illegal . a strip search in jail revealed roepcke had 18-gram bag of marijuana in his rectum .\njose mourinho says he he is getting better at every aspect of his job . the chelsea boss has won titles in all four leagues he has managed . but mourinho says he has one problem that he can not change . that is that he is never a hypocrite when he faces the media . mourinho was fined for claiming there was a campaign against chelsea . he was fined a similar amount last season for three separate incidents .\npelvic organ prolapse occurs when tissue in the womb becomes weak . many who suffer the painful condition are only offered hysterectomies . but the surgical removal of reproductive organs ends fertility in patients . now one gynaecologist claims thousands undergo operation needlessly . jonathan broome says more should be offered half-hour key hole surgery . sacrohysteropexy uses a sling to lift and hold the womb back in place .\nmiss wendy and owner marc métral put through to semi finals by panel . but viewers said act was ` cruel ' while rspca said it would work to ` ascertain what methods were used ' . cowell called act ` incredible ' - amanda holden said : ` you made tv history ' but similar act was seen on america 's got talent in united states in 2012 .\nchefs should embrace ` le doggy bag ' to stop edible food going in the bin . food waste costs average french household hundreds of pounds a year . popular practice was previously ` unthinkable ' for french food lovers .\nthe 11 teachers , testing coordinators and other administrators were convicted wednesday of racketeering after a five-year investigation . evidence of cheating was found in 44 schools across the atlanta school system , with nearly 180 educators involved . a racketeering charge could carry up to 20 years in prison and most of the defendants will be sentenced on april 8 . the cheating came to light after the atlanta journal-constitution reported in 2008 that some student 's scores were statistically improbable . prosecutors said the educators were guaranteed bonuses by inflating scores , while improving the poor reputation of their school system . superintendent beverly hall , the alleged ringleader who received up to $ 500,000 in payouts , died of breast cancer as the scandal went to trial . one principal would wear gloves to erase answers and write in new ones .\nleeds teenager moves to london broncos until end of the season . the 19-year-old has made six sub appearances in super league .\nbarcelona beat paris saint-germain 3-1 in the champions league . injured david luiz forced into the fray after thiago silva limped off . luis suarez nutmegged luiz in lead up to both of his goals . the internet soon filled with memes at the brazilian 's expense .\nhill says the other teams in the relegation struggle will be worried . qpr drew 3-3 with aston villa in six-pointer on tuesday night . rangers remain two points shy of safety in the premier league table . defender hill is encouraged by four points taken from last two matches .\nabdul hadi arwani was found dead in on a street in wembley on tuesday . counter-terror police are investigating claims he was assassinated by the assad regime in syria . family paid tribute to him claiming that he loved british democracy . mr arwani was a preacher at london mosque with extremist links .\ncoffee can stop cancer returning in women treated with tamoxifen . tamoxifen stops oestrogen reaching tumour cells , so they do not grow . coffee drinkers had fewer cancers and their tumours were smaller . caffeine cuts of signalling pathways that the cancer cells require to grow .\nsmartphones are the most common web devices , at 1.7 per home . laptops and tablets are just behind , a yougov poll has found . meanwhile , digital advertising has hit a record high of # 7.2 billion .\na new york city woman caught a man robbing her apartment after he was captured on her cat camera . the woman is now thrilled she purchased the $ 200 device and has handed the video over to police . the thief took her laptop , jewelry and a digital camera .\nhakaoro hakaoro was jailed in january 2014 for working without a licence . a string of new complaints against him have come to light this week . he tried to lure women into sexual services for their promised visas . the tribunal will wait to decide on a penalty for the new complaints .\neuropcar started a campaign to show how incredible the drive is to scotland 's isle of skye . the location is only accessible by bus or private car , and the company enlisted the help of prolific instagrammers . eight photographers from denmark and scotland embarked on an incredible roadtrip . they used the hashtag #movingskyewards so others could join in on celebrating the picturesque area . together the photographers have over a million followers on the social media site .\nafter scoring a try on friday night , david pocock gestured in sign language to a friend . miranda devine mistook it for ` jazz hands ' , calling him a ` tosser ' on twitter . the rugby player gracefully corrected devine , who promptly apologised . social media went into a frenzy following the exchange .\ndavid cameron announces extension to right-to-buy housing policy . pm promises to extend right to buy to all housing association tenants . discounts of up to 70 % to allow 1.3 million families to buy their home . national housing federation said the subsidy will cost taxpayers # 5.8 bn . claimed it was effectively worth # 100,000 for each family who benefited . but the tories said it would be funded by making councils sell off homes .\nnew milford , new jersey , police officer daniel demarco was arrested friday . he was spotted in an elmwood park car lot and was in possession of one bag of crack cocaine , a hypodermic syringe and drug paraphernalia . he was also charged with being under the influence of a controlled dangerous substance and dwi . new milford police confirmed on monday that he 's still employed by the force .\nslovenian-born aljaz bedene defeated belgium 's arthur de greef . bedene will face jiri vesely after beating arthur de greef in 70 minutes . the 25-year-old switched allegiance from slovenia to britain in march .\n30-year-old duke of wellington fought tipu sultan as an army general in 1799 . tipu was killed in the defeat and soldiers plundered the city and palace for jewels and riches . modern british collector was ` obsessed with ' sultan , acquiring works over 30 years . sale of his collection could fetch # 1million with personal gun tipped to get # 150,000 alone .\npolice discovered the body of a female in bushland on friday afternoon . stephanie scott was last seen on easter sunday which sparked a search . new details revealed alleged killer vincent stanford reportedly had an obsession with online video games and neo-nazi propaganda . it comes as police will contact authorities in holland for a background check on 24-year-old stanford , who was charged with murder . stanford 's family led police to cocoparra national park north of griffith . forensic testing will be carried out on the remains of the body on monday .\nsarah watson had a brief liaison with married footballer marcus rojo . fitness instructor claimed rojo then tried to frame her for blackmail . his representatives tried to entrap her with promises of cash to spin story . high court overturned gagging order and ordered rojo to pay # 25k costs .\ngary lineker launched the scathing attack after historic election debate . labelled nigel farage a 'd *** ' over his comments on foreign hiv sufferers . football stars tweeted as seven major party leaders went head-to-head . sol campbell also attacked ed miliband saying it was clear he 's ` no leader '\ndavid potchen , 53 , robbed bank and sat on curb waiting for police in june . he had served 12 and a half years starting in 2000 before parole . potchen lost job and housing before spending night in the woods . judge gave him conversion charge and will drop recent robbery charge if he stays out of trouble for a year . he is employed as welder and estranged cousins are taking care of him .\ngael monfils beat roger federer 6-4 , 7-6 at the monte carlo masters . the frenchman showed how good he can be in thrilling last-16 win . monfils now faces grigor dimitrov in the quarter-finals in monaco .\nleeds forward steve morrison is surprised by the drama at the club . six leeds players recently withdrew from the squad to face charlton . manager neil redfearn is facing increasing pressure in his role .\nrobert charles bates , 73 , was allegedly trying to pull out his taser . he killed 44-year-old eric harris , who was ` buying ' a gun from undercovers . police in tulsa , oklahoma , said harris may have had a gun on him . the victim was being restrained by an undercover officer when bates ran up .\nlimmy posted the shocking seven-second video on his vine account . the 38-year-old comedian starts with the spider crawling out of his mouth . the three-inch house spider crawls across his chin and runs up his cheek . the video ends with the spider approaching limmy 's forehead .\na 12-year-old boy found the world 's largest european wasp nest ever found . jordan waddingham made $ 20 from his mum for his startling discovery . it measures at one metre tall and a circumference of three metres . the nest was destroyed overnight when the wasps were dormant . it took two days to remove the 90-kilogram nest from the ground . the nest is being displayed at the queen victoria museum and art gallery .\ngeorge north knocked out after scoring against wasps on friday . concussion was the wing 's third suffered in recent months . north will sit out saturday 's champions cup clash on medical advice . wasps no 8 nathan hughes been banned for three weeks for the incident .\njohn higgins beats robert milkins 10-5 to reach second round . higgins says he would love to challenge for world title again . but the 39-year-old admits there are many more favoured players . graeme dott sees off ricky walden 10-8 .\nugandan ashish thakkar built a vast business empire . the entrepreneur says the answer to unemployment lies in nurturing small businesses . africa 's lack of legacy systems has sped up innovation on the continent .\nrabea darduna 's gaza home was destroyed last year ; he sold his door to bring in some money . on thursday , gaza police seized the door , which had originally been sold for $ 175 u.s. . some of banksy 's art has sold for hundreds of thousands of dollars .\nengland were held to draw against west indies in 2009 despite leaving their opponents with a hefty target of 503 . gary ballance battled on in antigua despite suffering a knock to his arm . joe root made an impressive contribution with his 142 runs .\narsenal face chelsea on sunday in the premier league . gunners legend ray parlour insists the club are just three signings away from winning the title . arsenal go into this weekend 's game 10 points behind leaders chelsea . parlour says a summer move for petr cech would be a ` no brainer ' the former midfielder doubts whether chelsea would sell to a title rival .\nresidents of beckley club estates saw man steal bird on saturday . wild peacocks have lived in the dallas neighborhood for two decades . unidentified man seen on video stalking the bird for 20 minutes .\nthe baby boy was taken away four days after he was born in oregon to chalena mae moody , 25 , and her father , eric lee gates , 49 . authorities say moody and gates , were living as a couple in springfield , before moving to klamath falls - they now have had two children . pair did not know each other during moody 's childhood . moody was married when she gave birth to child and already had three other children .\nthe 100th anniversary of the start of the mass killings will be commemorated friday . turkey and others reject the use of the word `` genocide '' most estimates of the deaths fall between 600,000 and 1.5 million .\nflorida mailman breaches no-fly zone and lands gyro-copter on us capitol west front lawn . doug hughes , 61 , concocted the stunt to raise awareness of campaign finance reform . flew undetected from an undisclosed location near to washington d.c and landed at 2pm . stunned bystanders just watched as the helicopter flew past the gen. ulysses grant statue and came to a halt . he has been planning the stunt for two years and said he kept his wife in the dark about it .\nliverpool face aston villa in their fa cup semi-final at wembley on sunday . pele was a special guest as the reds played manchester united in march . philippe coutinho has been nominated for the pfa player of the year and pfa young player of the year awards .\nthis is the third part of our major good health series on dementia . we look at ways to help minimise the impact of memory problems . for example , we need just as much sleep as we get older . the problem is that older people find it harder to reach a deeper sleep . when the short-term memory starts to go , it can make it hard for someone to recall what they have already done that day , such as whether they 've had breakfast , or showered , or spoken to someone . it can help to keep a diary - a record of what has been done through the day . writing also helps encourage the cognitive processes , which can help slow down future decline . create a memory hub - that is , a central place in the home , perhaps the dining room table or a desk , where important notes , car keys , house keys and drugs that need to be taken are kept . put things here that you want to be able to find quickly . get into the habit of having everything in this one place rather than having things scattered about the home . get a whiteboard or blackboard - that can be used to record a timetable of what needs to be done each day that week . things that get done can be ticked off . it is another way to show what has been done , but also shows what remains to be done . label doors , drawers , cupboards and cabinets to avoid confusion about what goes where . have a list of the numbers of key people by the phone - your gp and other care professionals , carers , family and reliable friends . have a daily newspaper delivered - it is a simple way of keeping aware of what is happening in the world and is a useful reminder of that day 's date . when showering or having a bath , establish a routine as a reminder of whether your hair has been washed . for example , move the conditioner and shampoo from one side of the bath to the other once you 've used them . eat regular meals . while other body cells can take fuel from elsewhere , the brain relies on a good supply of glucose from the blood . that 's why skipping a meal can affect reasoning , cognition and memory . in the early stages of dementia , begin a reminiscence book to act as a reminder of key events in that person 's life and who people are . it 's a nice thing for the person with dementia and a loved one to do together . include pictures and snippets of information and date and label every entry .\ncars parked at ricahrd dunn sports centre near odsal were vandalised . bradford are appealing for witnesses and working with police . stadium manager mark leadbeater says club ` will leave no stone unturned ' .\nmichelle obama has jokingly issued a warning to motorists in the washington d.c. area that eldest daughter malia is now a licensed driver . the first lady was making a special appearance on live ! with kelly and michael broadcast from the white house on monday . mrs. obama also noted that both her teenager daughters are very familiar with the concept of sarcasm . ` when they get a little snarky , i 'm like , `` oh , you sound like your dad ! '' ' tens of thousands of people gathered on the white house south lawn on monday for the annual easter egg roll festivities .\nnasa scientists in california have released an image of distant giant cluster of 3,000 stars called westerlund 2 . massive stars are seen feeding regions of dust and gas in the image , sparking new star formation . the image was released to mark the hubble space telescope 's 25th anniversary tomorrow . it was launched on 24 april 1990 and , after a shaky start , has had a hugely successful career .\nboris majnaric , 75 , of south jordan , built the 384-sq-ft , four-room bird house in 1996 and went on to rear more than 200 birds . local laws stipulate that residents must not keep more than 40 birds . majnaric fought a four-year battle with the city council to keep his flock . however , he finally lost the case and last tuesday the aviary was destroyed .\nclassic fm dj and former itn presenter 's wife bonnie died on april 15 . suchet , 71 , described bonnie said marriage was ` made in heaven ' he had been open about her dementia diagnosis and wrote a book about it .\nengland women 's under 19 's came from behind to secure impressive win . mo marley 's side smashed nine past northern ireland womens under 19s . manchester city striker natasha flint bagged a first-half hat-trick in the win . however , it is still touch and go as to whether england qualify for euros .\ncasey , 30 , found fame on big brother . has unveiled debut fashion range full of summer styles . wants to take hollywood by storm and is filming now .\nbrian klawiter posted a message on his company 's facebook page announcing that openly gay people are not welcome at his business . he claims the decision is based on his religious views and michigan does n't currently have laws in place preventing such discrimination . critics have accused him of trying to cash in on the anti-gay backlash which netted an indiana pizzeria over $ 840,000 earlier this month . klawiter claims he does n't need the money and has a successful business but at least one manfacturer has asked him to remove its logo from his site .\ntateyama kurobe alpine route opened to the public on today allowing guests to marvel at the colossal snow walls . the 1000ft section can be walked by visitors , and usually draws a million tourists every year . the snowy section is part of a 37km route , with sights such as kurobe dam and the hida mountains on the way .\nfollow in the footsteps of the gold rush prospectors . search for grizzly bears ... but do n't be taken unawares . fly over the world 's largest non-polar ice field .\n55 decomposed greyhound carcasses have been found in queensland . a 64-year-old woman and 71-year-old man have been charged . it is thought the site is common ` dumping ground ' for greyhounds . they were charged after police found a .22 calibre gun in their home . police have not confirmed that microchips were found alongside the dogs .\nbillionaire microsoft founder has defended meat eating in his latest blog . green campaigners are pushing for global reduction in meat consumption . climate studies say livestock emit more greenhouse gases than transport . bill gates says some environmental impacts of meat have been overstated .\npensioner alan spencer 's life was saved by his 18-month old labrador lexi . the 67-year-old began choking on pickled onion and felt life ` slipping away ' but lexi jumped on his back - dislodging the onion and saving his life . an earlier version of this article stated that lexi the labrador had saved mr spencer 's live by performing the heimlich manoeuvre . in fact , the dog jumped on his back to clear the blockage . heimlich involves applying sudden , strong pressure on the abdomen , which was not the case in this instance . we are happy to clarify this . .\njia binhui can not afford hospital treatment for deadly disease . he says experts told him temperatures of 42c can kill cancer cells . built barbecue contraption in his garden so he can use it every day . plans on returning to hospital to see if it has worked .\ncampaigners are calling for easter day to be fixed between april 9 and 15 . say it would help businesses and schools plan in advance for summer . an act was passed in 1928 to make sure easter sunday was on a fixed date . but despite being agreed in parliament it has never been implemented .\n50 die each year as a result of being exposed to the sun at work in britain . 250 in jobs like agriculture and construction register skin cancer each year . institution of occupational safety and health says ` macho culture ' to blame .\nmohammed ali malek , 27 , has been charged with multiple manslaughter . arrived in malta on italian rescue ship with bodies of 24 migrant victims . he was arrested alongside his 26-year-old syrian ` smuggler accomplice ' prosecutors say malek crashed into ship which had come to its rescue . migrants then shifted position as result of collision , causing it to capsize .\njose mauri scores only goal of the game for bottom of the league parma . parma are bankrupt and players have not been paid all season . but roberto donaoni 's side became second team to beat juve this season .\nlabour leader ed miliband attacked the tories for trying to ` privatise ' nhs . strategy backfired as welsh first minister 's father sought private treatment . carwyn jones ' father caron has a hip operation at a private bridgend clinic . said he paid because welsh nhs could not perform procedure soon enough .\nsubmarine is in zvyozdochka shipyard , in northwestern russia . no `` dangerous '' substances on the submarine , shipyard spokesman told itar-tass .\n50 vietnamese asylum seekers are allegedly being returned to vietnam . reports claim australian vessel hmas choules transferred them on friday . the secret voyage would cost $ 2.8 million of taypayer money . 15 asylum boats and 429 asylum seekers have been stopped since 2013 . abbott government claims a 90 % reduction of illegal maritime arrivals under operation sovereign borders .\ndan fredinburg was one of three americans killed in the earthquake . 33-year-old was head of privacy at google x and once dated sophie bush . friend max stossel wrote a heartbreaking letter to him before he left . he said : ` your story has already impacted mine for the better ' . fredinburg was one of four americans killed when the earthquake hit nepal .\nseventh-placed southampton 's wage bill for last season was # 55.2 million . third-placed manchester united have the highest wage bill at # 215.8 m. qpr 's salary bill was almost twice what they earned in total last season . click here for the latest premier league news .\nmiddlesbrough started the day top of the championship on 75 points . troy deeney opened the score before odion ighalo 's brilliant strike . watford end the day in third place after bournemouth and norwich win .\ncoronation street execs have ditched a ban on talent doing voiceover work . former star katy cavanagh had been ticked off for doing bbc iplayer ad . show 's other actors staged a ` mutiny ' , forcing ban to be overturned . other actors who 've cashed in include benedict cumberbatch -lrb- pedigree -rrb- , olivia colman -lrb- andrex -rrb- , shane richie -lrb- plenty kitchen roll -rrb- .\npolice release 13 photos as they investigate nrl bottle-throwing incident . fans pelted officials with bottles as they left stadium on good friday . referee awarded south sydney last minute penalty over the bulldogs . fans reacted angrily when south sydney sealed a 18-17 victory . one official sustained a broken shoulder when he slipped dodging bottle .\ncolin turnbull was caught having sex in a classroom at a catholic school . teacher and model lover were walked in on by private school 's governor . he has been told to ` never return ' to the # 13,000-a-year birmingham school . priory school was packed with pupils and parents for entrance exam day .\nfirearm licence holders grew from 177,675 to 215,462 in the last five years . tamworth has the most at 3259 , with bathurst a close second at 3075 . however there has not been a related increase in gun related crime . detective superintendent mick plotecki said u.s. 's popular national gun laws and their influence through pop culture , is likely reason for increase .\nronnie o'sullivan had to borrow pair of shoes from audience member . the 39-year-old played one frame in socks due to ankle discomfort . o'sullivan was breaking snooker etiquette in failing to wear smart shoes . read : ding junhui misses out on maximum break -lrb- and # 30,000 -rrb-\njoseph t. brennan jr. of norwell , massachusetts was found with a home full of bomb-making materials . police searched the home after an incident saturday night where brennan blew up his car while smoking a cigarette near gun powder . police searched the car and seized 14 different substances . in addition to brennan 's home , the hingham condo of benjamin young was searched and bomb-making materials were also found . the relationship between the two men is not yet known , and authorities say there are no ties to terrorism and there was no intent to harm anyone . brennan , who called himself an ` idiot ' after blowing up his car , was arraigned from his hospital bed on monday .\nkimi raikkonen 's deal with ferrari expires at the end of the season . team principal maurizio arrivabene wants finn to improve performances . maranello driver has struggled to replicate team-mate sebastian vettel .\njiaojiao , 5 , fell 150ft when her mother , zheng jiayu , left her at home alone . when she returned , zheng saw daughter 's lifeless body below the window . jiaojiao suffered multiple broken bones and internal bleeding but survived . family is now facing a huge # 100,000 hospital bill they are unable to pay .\nbikram yoga involves 26 poses performed in a room heated to 40 °c -lrb- 105 °f -rrb- typical sessions last 90 minutes and advocates say it improves mindfulness , flexibility , strength , muscle tone and general fitness . 20 volunteers took part in a new study to monitor body temperatures . experts warn one man 's temperature reached 40 °c / 105 °f putting him at risk of heat exhaustion and heat stroke .\nfather of autistic teenager kept christmas lights up to raise awareness . but angry neighbour sent him abusive letter branding them ` an eyesore ' he now plans to switch them on to support autism awareness month . former publican says he 'll keep them up until next year ` out of principle '\njoseph kent 's attorney says his client was released from jail . police in baltimore detained kent on live tv after start of curfew . that triggered a wave of interest on social media .\ned miliband will allow scotland to set a more generous benefits system . the move is a desperate attempt to reverse the exodus of voters to snp . he will unveil the proposals in his manifesto , due to be published tomorrow .\nwarrington slipped to their third straight defeat in the super league . game was delayed for eight minutes after a flare thrown by visiting fans . widnes captain captain kevin brown returned to inspire them to victory .\ntwo types of cereal in an easter egg with marshmallows and brownies . served at black milk cafe in manchester 's northern quarter . ` easter is less about what is used to mean , ' cafe owner olly taylor said .\nkayonna cole holds her female rose hair spider to the camera . the exotic pet owner is bitten numerous times by the tarantula . the video was recorded by kayonna at her home in los angeles .\neden hazard will make his 100th league appearance for chelsea on sunday . the belgian 's form dipped when roberto di matteo left the club . but jose mourinho 's return helped take hazard to another level . the midfielder has slowly bought into the dressing room culture . initially he was one of the first to leave the training ground . in time , he could rival gianfranco zola as the club 's greatest player .\nraymond handley was jailed for more than 13 years for assaulting child . the 62-year-old 's estranged daughter , becky , read of his crimes online . she is calling for her father to be hanged for his ` sickening ' assault of girl . the restaurant worker , 20 , is planning to change her name via deed poll .\ncameron visited cheltenham for a speech on cutting inheritance tax . aides ordered that the jack russell and poodle cross-breed be kept away . owner sarah style joked : ` i 'm surprised mi5 are not getting involved '\nleroy j. toppins went missing 6pm friday from his parents ' front yard . major search was launched , with 100 locals joining in to help . divers found the boy 's body in a run-off pond at 7pm saturday . the quarry was adjacent to the family 's home . police do not suspect foul play .\na judge has sentenced former blackwater guard nicholas slatten to life in prison for his role in a 2007 shooting that killed 14 and wounded 17 . charges against paul slough , evan liberty and dustin heard included dozens of counts of manslaughter and attempted manslaughter . the former blackwater guards were convicted in october on a combined 33 counts including manslaughter , attempted manslaughter and murder . they left behind a hellish scene in a baghdad traffic circle where bombed out and bloodied cars littered a street strewn with bodies .\ndrake thanks madonna and says he `` got to make out with the queen '' singer madonna kisses rapper drake onstage at coachella . drake 's reaction was priceless , according to the web .\nonce a super typhoon , maysak is now a tropical storm with 70 mph winds . it could still cause flooding , landslides and other problems in the philippines .\nlevar jones was shot and wounded by police officer in columbia , south carolina , when he was stopped and told to produce a license . he reached for his wallet and state trooper sean groubert opened fire , hitting him in the stomach . jones writhed in agony on the ground and said : ` why was i shot ? ' as the officer accused him of a seatbelt violation . jones tells daily mail online walter scott 's death should force rethink of police procedures with new non-lethal methods favored . cop was sacked and charged with felony assault and faces maximum 20 year sentence if guilty .\nfrank lampard showed his support of a gay footballer coming out . the midfielder says the game is changing and would be accepting . lampard also spoke about his plans when he retires from playing . the new york city star revealed what he thinks went wrong for england .\nbayern munich trail porto 3-1 in their champions league quarter-final tie . pep guardiola 's contract as bayern manager expires in the summer of 2016 . manuel pellegrini 's deal at manchester city finishes at the same time too .\nsteve miller is on a mission to tackle britain 's obesity crisis . the former fat families star is an advocate of constructive fat shaming . steve claims his interventions could save the country and the nhs millions .\nkeaway lafonz ivy , known as kealo , was shot and killed in seat pleasant , maryland , wednesday night . police arrested 21-year-old lafonzo leonard iracks in washington dc friday in connection to killing . iracks allegedly shot ivy once in the chest from a gun used in the filming of the video .\nislanders have cut six names from squad for first training camp . uncapped duo hope and brathwaite have made 14-man squad . first test against england start in antigua on monday .\nchief justice john roberts , 60 , arrived in rockville , maryland court on wednesday .\ndeputies reassigned after threats , sheriff says . the two deputies pinned eric harris to the ground and one yelled `` f*ck your breath '' at him after he was shot .\nnext month 's visit to moscow by the north korean leader is off . this victory day marks the 70 years since the soviet victory over germany in world war ii .\na sexual harassment complaint has been filed against pm john key after a waitress complained about him repeatedly pulling her ponytail . kiwi prime minister accused of pulling a waitress ' hair on several occasions despite her obvious discomfort . pm key later apologized , but said that he was merely engaging in `` banter '' politicians and public figures have condemned his behavior .\ndr omar saadi al-atraqchi , 42 , is a family doctor specialising in urology . he was caught cutting holes in empty lynx shampoo bottles to hide an iphone inside so he could lay it in cubicles to secretly film men showering . al-atraqchi said he secretly filmed men to ` let off steam ' because of pressure from his job and was found guilty of four charges of voyeurism . he now faces a hearing to determine whether he will be struck off register .\nandrew chan and myuran sukumaran lost last appeal against execution . indonesia 's attorney-general said the pair would now be put to death . the two australians are currently in isolation on nusakambangan island . they were moved last month from bali jail to the island to await execution .\nleicester face saracens at allianz park on saturday in aviva premiership . just two points and two places separate the sides with four games left . bath , exeter , wasps and sale all also still involved in play-off chase .\ncommuters are now able to make phone calls and send texts via internet . the new technology rolled out by ee can be used at underground stations . it automatically connects to wi-fi when a phone signal is unavailable .\nefan james died in his mother hannah 's bed in october last year . ` well cared-for and loved ' baby was found ` face-down and unresponsive ' coroner says advice should be changed to suggest never bed-sharing . nhs says not to if parents smoke , drink , have taken drugs or are very tired . open verdict on efan 's death but pathologist said it was likely a cot death .\ncarla zampatti releases celebratory 50 year collection as part of spring/summer 2015-16 . the collection unofficially kicks off mercedes benz fashion week . dela goodrem , shanina shaik , kate waterhouse in attendance .\nhotelier danny lambo said he wanted to buy natasha flynn an extravagant easter present . the bespoke gift costs # 10,000 to buy and costs # 1,000 every time it 's filled with melted milk chocolate . the 37-year-old is renowned for his love of lamborghinis and his luxurious lifestyle .\nlarry upright wrote impassioned plea for people not to send the democrat to the white house in 2016 . family said that upright would most likely be ` up there giggling right now ' .\nfloyd mayweather takes on manny pacquiao in las vegas on may 2 . the two men will split a $ 300m purse , with mayweather taking 60 per cent . the fight has been five years in the making and was agreed in february . it pits the two pound-for-pound boxers in the world against each other . mayweather-pacquiao is 11 days away ... why are there no tickets on sale ?\nten pieces collection was presented at the beachside pool during final day of mbfwa . guests sat in and around the pool to take in the capsule collection of monochrome unisex pieces . label is owned by icebergs restaurateur maurice terzini and partner lucy hinckfuss .\nthe billion dollar chicken shop is a three-part bbc programme on kfc . viewers unleash a barrage of negative comments after yesterday 's episode . programme showed how chicken burger is prepared for cameras . kfc has 860 stores nationwide and serves 22 million customers a year .\njamal al-labani is believed to be the first american killed in current violence in yemen . he was on his way back from mosque prayers when he was hit in the back by shrapnel , his family said . he went to yemen in february in hopes of bringing his wife and baby back to the u.s.\nclaims of gang rape and physical abuse at qld orphanage have emerged . allegations came out during royal commission hearing in rockhampton . one woman said she was allegedly raped with a broom handle by abuser . same victim claimed she became pregnant at 14 after she was gang raped . while a retired nurse said she had been punched and slapped repeatedly . a third victim said she was raped more than 100 times by a parish priest .\na video captured a hammerhead shark in the shallows off destin , florida . two swimmers had no idea the giant shark was hunting so close to them . men on a balcony yell to warn them of the proximity of the shark .\nmichael allen 's deal at edinburgh will see him at the club until may 2017 . ulster academy graduate back can either play at wing or centre . 24-year-old is a former pupil of methodist college belfast .\nbrondby 's superligaen game with fc copenhagen ended goalless . ex-liverpool defender daniel agger allegedly elbowed mattias jorgensen . former liverpool defender left anfield for his former club last summer .\nleanna norris admitted killing her daughter loh grenada , 2 , in june 2013 . she plied the toddler with benadryl and duct-taped her mouth and nose . court heard ` depressed ' norris did n't want loh 's father dating other women . 25-year-old entered insanity plea but was sentenced to 37 years in prison .\nsouthampton have seen several of their best players leave in recent years . nathaniel clyne looks set to be the next to move on from st mary 's . manchester united have been linked with a move for the right back . saints boss ronald koeman admits it will be difficult to keep him .\nkeith crandall : five years after the deepwater horizon rig exploded , we are only beginning to understand its effects on the gulf . a crab species may be a key indicator of the impact , he says .\nlewis hamilton led every lap after clinching pole position to seal his second victory of the campaign . nico rosberg was second for mercedes with the ferrari of sebastian vettel completing the podium . hamilton seals the 36th victory of his grand prix career to extend his lead at the top of the standings . kimi raikkonen finished fourth for ferrari with the williams drivers of felipe massa and valtteri bottas 5th and 6th . jenson button was involved in a collision with the lotus driver of pastor maldonado late on in the race .\nprovidenciales consistently ranks as one of the best beach destinations on the planet . greece is home to three of the top four islands in europe , including santorini at no 1 . jersey ranked sixth in europe , its best ever position in tripadvisor 's annual rankings .\nnew antibody blocks protein receptor needed to infect human cells . patients injected saw 300-fold reduction in amount of hiv in their blood . scientists believe breakthrough could result in new vaccines against virus .\nsportsmail have teamed up with golfbidder for the giveaway . the exclusive bundle includes a callaway xr driver , callaway xr 3 wood , callaway xr hybrid and a set of callaway xr irons . a dozen callaway chrome soft golf balls is also included . click here to enter the competition .\nmary day , 60 , claimed over # 16,500 in benefits despite not being eligible . she had # 27,000 savings in the bank which meant she was not entitled . day used taxpayers ' money to go on luxury holidays to indian resort of goa . pleaded guilty to dishonestly claiming benefits and has paid back money .\ntransport for london are removing ` are you beach body ready ? ' posters . tfl say protein world has come to end of three-week ad placement period . a rally has been organised against protein world in hyde park on may 2 .\nkensington palace has revealed details of plans in place for royal birth . william will remain in norfolk and faces a two-hour hospital dash . kate , meanwhile , remains in london close to the lindo wing . the couple have thanked people ` around the world ' for good luck notes . also said that prince george is ` excited ' about the impending birth . the couple also say that they wo n't be hiring a second nanny .\ndarren jones was seen swaying on his feet moments before going on air . the 28-year-old stepped away from his podium with seconds to spare . he collapsed in front of the audience on made in bristol 's decision made . later the candidate said he had been feeling poorly all day before show .\napple has approached over a dozen names like florence and the machine in an effort to get top talent on beats exclusively . beats music will be re-launched in coming months with a $ 9.99-a-month subscription for individuals and a family plan for $ 14.99 . jay z 's tidal is doing the same thing as he tries to convince artists to sign exclusive deals and beat out the competition .\nander herrera has started the last eight games for manchester united . midfielder says he is in the ` right team in the right league ' . herrera scored twice against aston villa during man united 's 3-1 victory .\nbeech-nut nutrition is recalling 1,920 pounds of ` stage 2 beech-nut classics sweet potato & chicken ' baby food . a small piece of glass was discovered in a jar by a consumer . jars with the product numbers ' 12395750815 ' and ending at ' 12395750821 ' are affected , all of which have the establishment number ` p-68a ' .\nsheree morgan , 25 , and sister sophie , allowed their bank accounts to be used to accept thousands of pounds stolen from elderly couple . morgan sisters allowed # 17,500 to be put into their accounts during scam . sheree recruited ex daniel webster , 23 , and her mother justine davies , 44 . but the conman who masterminded the scam originally has not been found .\nlipscomb police chief warren carey was trying to arrest mayor lance mcdade , who refused to leave his office when the fight broke out . mcdade is currently in jail for resisting arrest and assaulting police officer . mayor was holding a letter that would have placed all city employees , with the exception of dispatch , on paid administrative leave . mcdade has been arrested before for domestic violence and for obstructing the government process at the scene of a fire .\ndeion sanders calls out son for `` hood doughnuts '' comments . `` you 're a huxtable with a million $ trust fund . stop the hood stuff ! ''\njoel wilkinson , 3 , has duchenne muscular dystrophy - a disease that will cause his muscles to slowly waste away , leaving him unable to walk . he will eventually need a wheelchair and has a life expectancy of just 20 . his sister phoebe , 5 , adores him and looks after him at home and school . family are now trying to make his short life is as full of joy as possible .\nseven artifacts were found to have come from an art dealer facing charges . unbeknownst to museum officials , they were looted from indian temples . the discredited source of the display items was noticed by visiting tourist . immigration and customs agents will now return the artifacts to india .\nthe town had recently been freed from the boko haram terror group . volunteer from burial : '' we collected over 400 corpses from the streets and in shallow graves ''\nvideo posted by youtube user richard stewart showing a porsche cayman flying out of control . police cited unidentified driver for the crash . car reportedly wrecked and needed to be towed from the scene .\nvets have launched the big tick project urging owners to get pets checked . they warned of a rise in disease-spreading ticks in the last 10 years . half of owners did not know ticks can spread lyme disease to humans . lyme disease can cause joint and heart problems if left untreated .\nserge gnabry impressed for arsenal last season before suffering injury . midfielder has been out for more than a year after with serious knee injury . gnabry played 90 minutes for arsenal development squad on monday . germany under 21 international says he is feeling ` better and better ' read : arsenal have doubts over signing liverpool star raheem sterling .\nthe luxurious hotel room is suspended 200m above the ground and offers stunning views of the arabian gulf . measuring 1,120 sq metres , the massive suite rents for a staggering aed 100,000 or # 18,188 per night . in-room amenities include : separate elevator access , three bedrooms , library , cinema , and a private full-service spa .\neric carter , 21 , and stephanie mccassin , 24 , were arrested thursday after allegedly overdosing on heroin while giving their three-year-old son a bath . the toddler 's grandmother and primary caretaker found the parents passed out on the bathroom floor while the toddler remained in the bathtub . the two were charged with endangering the welfare of a child .\ngender-based violence is at epidemic levels in guatemala . according to the united nations , two women are killed in guatemala every day . five abuse survivors known as la poderosas have been appearing in a play based on their real life stories .\naaron lennon opened the scoring for the visitors with his second goal in three games for the visiting side . but jonjo shelvey converted from the spot in the second half after seamus coleman handled in the penalty area . shelvey had a goal ruled out by referee michael oliver after leighton baines was adjudged to have been fouled . the 1-1 draw leaves swansea eighth in the premier league table with roberto martinez 's men sitting in 12th .\nafghanistan veteran bobby burnett regularly beat partner samantha chudley and forced her to hand over passwords for e-mail and facebook . court heard he changed because he was taking a powerful illegal steroid . the soldier had an exemplary service record but was thrown out of the corps after a routine drug screen showed he was taking the drugs . he was jailed for two years and two months at exeter crown court today .\npolice say the woman and child were stranded in their vehicle as the water rose around them . around 150 water rescues as kentucky residents continue to leave homes . seven inches of rain pounded ohio valley as storms move across south . dozens of vehicles abandoned as sections of the interstate 64 closed .\nthe 2015 sydney royal easter show opened to the public last thursday 26 . the website displays the retail value of the showbags and their official cost . some cost more than their retail value , others list grossly inaccurate costs .\nthe mutilated body of violet price discovered in two different locations . mrs price , an 80-year-old british expat , went missing late on saturday . french police say they have arrested 32-year-old man known to her . prosecutors said he led them to the location of her body in two areas .\nup to 420 million acres of forest will be lost in the next two decades . warning comes from the world wide fund for nature -lrb- wwf -rrb- 80 per cent of project losses will occur in just 11 ` deforestation fronts ' the include the amazon , eastern australia and sumatra .\njordan speith poised to play in the rbc heritage classic , south carolina . the 21-year-old won the masters in record-breaking style at the weekend . spieth does n't want to rest on his laurels and plans to catch rory mcilroy .\npiglet was born in china with only two front legs has learned to walk . villagers have flocked to see the two-legged animal in qionglai city . a video released online and has captured the hearts of thousands .\nmitchell keenan and his father keith were evicted from their family home . they were forced to live in a tent during the winter on a local hill . mr keenan 's toes turned black with frostbite and they were amputated . warning graphic content .\nthe little greek island of skopelos is known as the setting for mamma mia . with no airport on the island , most visitors arrive by ferry from skiathos . with small coves galore , skopelos is an ideal location for a week 's sailing .\nryan heritage ,18 , charged with theft , burglary and failing to appear in court . ` check if there 's a warrant for my arrest , if so good luck , ' he posted online . he possessed cannabis when police caught him in trowbridge , wiltshire . local police then re-posted his facebook message with : ` his luck ran out '\njamaluddin jarjis , former malaysian ambassador to the u.s. , among casualties . azlin alias , a member of the prime minister 's staff , also dies , news agency reports .\njust a third of consumers have heard of campylobacter germs on chicken . millions are still ignorant of dangers of eating chicken despite campaigns . most britons rightly identify chicken as the main source of food poisoning .\nrory mcilroy and tiger woods spoke with augusta club member jeff knox . mcilroy believes knox reads augusta putting surfaces better than anyone . knox played as a non-competing marker with mcilroy last year . on friday knox answered call from tiger woods to play a practice round .\ndr adrian quarterman has suggested mirrored satellites to collect sunlight . the beams can then be converted into laser light and sent down to earth . the physicist believes it could even make solar power feasible in scotland . but he admits you might need to worry about who is in control of them .\nalan davey controversially laid bare the difficulties of the station 's top job . was asked about changes to classical music knowledge over 30 years . said ` modern audience might not be getting same education ... in school '\nthe 14-year-old had communicated with terror suspects in australia , authorities said . police : the teenager encouraged others to attack a parade and behead someone in australia .\ntimothy eli thompson was born without nasal passages or sinus cavities . mother brandi mcglathery said facebook removed a photo of her son that a pro-life group posted about his story because it was too controversial . a post she wrote about it was shared 30,000 times and photo was put back . eli had to have a tracheotomy and family now has a gofundme page for him . mother-of-three calls him ` the most beautiful boy i 've ever laid eyes on '\nfigures show that while millions still tune in they listen for shorter bursts . average listener spent ten hours a week tuning in last three months of 2014 . this was 14 % down on decade earlier , when people tuned in for 11.6 hours . the bbc trust has cleared the way for firms to buy their way into lifestyle programmes on the world news channel in a product placement experiment . for example , publishers could pay to have their books reviewed on talking books . the bbc trust will review the scheme in a year .\nmatt phillips recorded two assists in qpr 's 3-3 draw with aston villa . the hoops winger now has seven in 2015 - just one less than lionel messi . wolfsburg midfielder kevin de bruyne also has seven assists this year . arsenal 's santi cazorla and napoli 's marek hamsik also make our list .\nmanchester united have won their last six premier league games . louis van gaal has made several changes since the start of the season . juan mata , marouane fellaini and ander herrera have all impressed . angel di maria and radamel falcao have struggled to make an impact . read : van gaal celebrates derby win with city stars from ladies team .\nnicola sturgeon alleged to have made comments to french ambassador . sir jeremy heywood ordered probe after she dismissed memo as untrue .\nshannah kennedy and lyndall mitchell are ` thelma and louise of wellness ' the pair have decades of life coaching and retreat experience . run a course called the masterclass of wellness : the boardroom retreat . teach mindfulness to ceos and executives across australia . clients include nab , macquarie bank , sportsgirl , pwc and kikki.k . skills taught include dealing with stress , and accumulative mindfulness .\n` miracle on ice ' doctor george nagobads was allegedly mugged by a teenager on sunday as he was visiting his wife 's grave . he was released from the hospital on tuesday with 18 stitches in his head . he was played by kenneth welsh in the 2004 movie ` miracle , ' about the usa 's improbable gold medal in their 1980 run in lake placid .\nrichard hammond has become the final presenter to leave top gear . former producer andy wilman also accused bbc of ` meddling ' with show . attack in top gear magazine came day after he sensationally quit bbc . jeremy clarkson was seen plotting their next move in a pub last night .\nliam stewart had been named in the 23-man squad ahead of tournament . the son of rod stewart has been replaced after suffering shoulder injury . the spokane chiefs forward was in line to make his debut for gb . ice hockey world championship takes place in holland next week .\nstash valued at # 5,620 discovered in 67-year-old christine carriage 's home . officers said property looked more like clothing warehouse than a dwelling . she was handed a six-month suspended sentence at norwich crown court .\ngovernment jet carrying president tomislav nikolic went into a dive . incident , which occurred last friday , initially blamed on ` engine failure ' . serbia 's civil aviation directorate found cause was actually a coffee spill .\neuropean pilots must fill out forms that ask about mental and physical illnesses . road to crash site is almost finished , says mayor of le vernet , france . german newspaper bild releases a timeline of the flight 's final moments .\nthe 38-year-old suspect was questioned by kansas city police after neighbors complained he was blasting music in his 2007 infinity . instead of handing over his id , driver smiled , said ` i 'm out ! ' and took off . after crashing into bridge , the man stripped down to his underwear and jumped into brush creek . it took cops armed with a bb gun 15 minutes to fish out the fugitive .\neshima ohashi bridge in japan is the third largest of its kind in the world . has a gradient of 6.1 per cent on shimane side and 5.1 per cent on tottori . spans mile across lake nakaumi linking cities of matsue and sakaiminato .\njohn clarkson 's chocolate pie is covered in pastry before being battered . ` pie-egg-ra ' dish sold at mr eaters fish and chips in preston , lancashire . each expertly baked and fried pie contains one and a half creme eggs .\nthe earthquake that struck nepal has left thousands of nepalis without shelter . torrential rains making situation worse ; food and drinking water supplies could become a serious issue soon . it 's unclear how bad conditions are closer to the epicenter .\nprotests spread to new york and denver , with more scheduled for other cities . more than 100 people arrested in baltimore this week are released .\nshe claims a california judge deported her children illegally in 2012 . california court ruled rutherford 's ex-husband daniel giersch could take the children to live in france and spend vacations with in the us . her petition to custody battle was dismissed in court last august . but in one final attempt she put in another appeal , which was dismissed . court order states that it did ` nt have jurisdiction to force kids to live in us . the permanent dismissal says that rutherford failed to argue why the federal court should intervene in custody case .\nmauricio pochettino returns to former side southampton for the first time since leaving last summer . the tottenham boss done an excellent job during his 16 month spell . the argentine manager has adopted the same methods at spurs as he did during his time at st mary 's . pochettino blooded the likes of calum chambers and james ward-prowse while at southampton , and has done the same with harry kane at spurs . his passing and pressing philosophy has taken a while for his new set of players to adjust to , though .\ngary ballance is now averaging in excess of 60 for england . ballance 's knock of 122 was impressive at no 3 . joe root shone before he was eventually dismissed for 59 . jos buttler also did well with the bat , an unbeaten 59 off 56 balls . stuart broad struck early , clean bowling out kraigg braithwaite . england finished the day eight wickets from victory in first test .\nthe houston texans defensive end released the video as part of his announcement of signing a reebok endorsement deal . watt , 26 , is 6-foot-5 and 289lbs .\nfor years , the garden shed has been the domain of the man . but now women are demanding their own huts at the bottom of the garden . they come in an array of styles including beach huts and tudor cottages .\nauthorities in the indian city of malegaon have asked residents to take a ` mugshot ' of their cattle . cows are revered by the majority hindu population , and many parts of the country have laws banning the slaughter of cattle . officials in malegaon believe this is the best way to solve cow slaughter cases and enforce the law .\nepic struggle between lioness and giraffe in zimbabwe caught on camera . the lioness was pictured battling the animal in hwange national park . predator was very lucky to survive as a kick from a giraffe can be lethal .\npolice in lucknow , northern india , have bought four drones to help control crowds . the unmanned aerial vehicles are being fitted with cameras and pepper spray to subdue angry protesters . some indians have questioned why police are resorting to `` authoritarian and forceful methods ''\npaul scholes hopes ryan giggs will become the next top british manager after working with louis van gaal . scholes would like to see jurgen klopp manage in the premier league . former manchester united man believes pep guardiola will manage manchester city once his contract expires at bayern munich .\nwildlife photographer einar gudmann caught the violent encounter on camera while he was camping in iceland . after emerging into bitter sub-zero temperatures from his tent he spotted a female and male fox copulating . but the pair were n't alone - a third arctic fox lurked nearby and wasted no time in battling his rival for the female . the losing fox was seen by the photographer limping off up a snowy hill and was n't expected to last the night .\ngoa is india 's smallest state but one of its most popular travel destinations . it offers bargain beach breaks -lrb- and luxury too -rrb- in the west of the country . weak rouble means there are currently fewer russian visitors than usual .\nedinburgh engineer detailed how bullion was lost during secret mission . leonard h. thomas served on hms ulster queen during arctic convoys . his secret diaries reveal a crate of bullion was lost while being transferred . mr thomas wrote it fell into river clyde while being moved to another ship . the mission was so secretive it is not known if bullion was ever recovered .\nnelson oliveira is on-loan at swansea from portuguese giants benfica . oliveira set to make only his second premier league start against leicester . swansea outcast is hopeful of proving his worth in england . portugal international was once linked with a move to manchester united .\naround 200,000 people were deported to the nazi camp in northern germany during world war two . british soldiers took over the camp on april 15 , 1945 and found tens of thousands of dead bodies . their intervention came just two months after diarist anne frank , who was held at the camp , died .\nnew on board playlists include rockers such as the xx , haim and hozier . unfavourable customer feedback about previous music prompted switch . so far , all mainline and some regional aircraft have adopted the change .\nhouse sold for more than $ 1.25 million below value after owners put it on the market for just one dollar . the four-bedroom home near auckland , new zealand , was valued at $ 1.5 million and sold for $ 125,000 . the price was almost ten times lower than the average in sydney , and almost six times below melbourne .\nunnamed man was found dead from an apparent self-inflicted wound around 5 p.m. on sunday . incident happened near the buffet at the m resort spa and casino in henderson , nevada . witness describe hearing a large boom and then seeing a man lying on the ground with a pool of blood surrounding his salt-and-pepper hair . a car fire was reported at the same time in the parking garage , and police are investigating if the two incidents are related .\nzimbabweans make up the largest group of immigrants in south africa . attackers have targeted foreigners and their businesses .\nsam allardyce has told david sullivan to not judge his side on 2015 form . the co-owner described recent form as #exceedingly disappointing ' enner valencia returns to the west ham set-up following a toe injury . click here for all the latest west ham news .\nwayne heneker says the incident a year ago still haunts him today . he was dropping off funds at a queensland tavern when he was ambushed . mr heneker shot the masked gunman when he tried to tackle him . seconds later , mr heneker discovered the man was an ex-colleague . mr heneker says he still struggles to cope with the fact he shot his friend .\nmidfielder fires a warning to his detractors that he is now back to his best . iniesta ran from his own half to set up neymar 's opener in 2-0 win . world cup winner had recorded zero assists this season prior to tuesday . neymar and andres iniesta star men for barca in 2-0 win over psg .\nwaters in a huge area of the pacific are running 5.5 degrees warmer than normal . marine life that likes cooler water has moved and others that like warm seas are seen in new places . `` the blob '' might be having an effect on rain and snow -- and the west coast drought .\njournalists are known for being a fund of good stories . robin esser has worked in newspapers for 60 years and is no exception . in his new book he reveals the inner workings of fleet street as it was .\nleigh griffiths is making the right sort of noise with celtic . as a youngster griffiths had his fair share of controversy . then celtic manager neil lennon took a gamble signing him last year . griffiths has been a real success for the bhoys since - most notably scoring 14 goals in his last 17 games .\nboy named shiva was found in possession of stolen stationary items . teacher reported him to school 's headmaster for a formal investigation . lalit verma reportedly launched in to a furious assault on the young boy . shiva later complained of a bad stomach ache and started vomiting blood . ambulance was called but the 11-year-old died before reaching a hospital .\nburnley host tottenham in the barclays premier league on sunday . sam vokes ' only goal this season came against spurs in the fa cup . tottenham defender ben davies ready for clarets test at turf moor .\nmagazine ads from the seventies have n't stood the test of time . alcohol commercials almost always featured a moustachioed man . rod stewart is seen wearing a garish outfit for footwear company kickers .\njohn carver had a training ground bust-up with jonas gutierrez . the newcastle boss dropped the defender in the aftermath of incident . now , carver says the pair have shaken hands like men and moved on . gutierrez will be in newcastle 's squad to face swansea on saturday .\ncesc fabregas ' poor form continued for spain against holland on tuesday . chelsea midfielder captained his country but they lost 2-0 in amsterdam . if his form goes on he will not match premier league assists record . thierry henry 's mark of 20 in 2002-03 is four more than fabregas ' total . a resurgence in his form could help his club wrap up the premier league . fabregas : i am going through a great moment at chelsea . click here for all the latest chelsea news .\nclimbers are returning to everest after 2014 season on nepal side was canceled . climbing permits increase in tibetan and nepalese side this year . 16 nepalis died in khumbu icefall on everest last year .\niowa-based writer daniel p. finney , 39 , weighed 563lbs when he started sharing his weight loss journey a month ago in the des moines register . he knew it was time to shape up after x-rays found arthritis and a narrowing of his spinal cavity . daniel , who is already down 20lbs , is attempting to lose the weight without surgery but is terrified to give up pizza and nachos .\nmanuscript of `` american pie '' lyrics is sold to unnamed buyer for $ 1.2 million . douglas brinkley : the song , a talisman for its age , brings joy to people 44 years later .\nricky woolaston , 35 , posed as engineer to break into students ' homes . stole laptops and phones in order to feed his drug habit , court told . was caught after leaving behind charge sheet with name and address on .\ncloned camel was born in 2009 and called inzaz , which means achievement . she was cloned from ovarian cells and born by surrogate mother . injaz is now six years old and is said to have conceived naturally . she 's expected to give birth late this year , proving cloned animals ' fertility .\nflour made from peanut kernel majorly stimulated growth of friendly bacteria . this means it can lower amount of e.coli , university of maryland study found . harmful bacteria is out-competed as friendly takes up space on intestine wall .\njayden wingler of arizona was interviewed by fox news earlier this week about a theme park accident which left him with severe burns on his legs . while on camera , the youngster eloquently recalled what happened with arm actions and wide-eyed facial expressions to match his emotions .\ndarrell brown , 31 , accused of breaking into house in hagerstown , maryland . black man was tasered outside of house and pronounced dead at hospital . police say he was under influence of drugs and ` agitated ' when approached .\nash handley has now scored six tries in six appearances for leeds . the rhinos are now six points clear at the top of super league . leeds have lost just once in their opening 11 matches .\nkaren gaynor appeared in court accused of causing criminal damage . came after she pruned neighbour 's tree that was hanging over her garden . prosecution said her pruning was beyond lawful and had caused damage . but magistrates took just 15 minutes to find ms gaynor not guilty .\nceltic are outraged by the proposed ticket prices for their scottish cup semi-final later this month at hampden . the sfa had already been criticised for scheduling the match as an early kick-off , before the first trains from inverness arrive in glasgow . adult ticket prices are # 23 for the north and south stands , while the east stand will be charged at # 15 .\nformer rangers manager and chairman walter smith hopes that the worst of the off-field drama at ibrox over so they can target new stability . rangers are aiming for a return to the spl as soon as possible . however , promotion from the championship is proving difficult .\na charity group is preparing aid packages for those who want to return home . the attacks have left 5 dead -- two immigrants and three south africans . a 14-year-old boy is among those killed after a mob with machetes targeted foreigners .\ndeputy leader harriet harman said policy would help millions of families . but proposal is likely to meet with backlash from some business leaders . critics will argue firms can not cope with more rights for employees .\nmartial law has been lifted in thailand after 10 months . it has been replaced by a new order granting sweeping powers to the military junta . critics warn the move deepens the country 's `` descent into dictatorship ''\ncrystal palace beat manchester city 2-1 at selhurst park on monday night . jason puncheon 's free-kick doubled palace 's lead in the second half . yaya toure was accused of ducking out of the way of the winning goal . sportsmail 's jamie carragher : ` the rest of them are desperate to be hit with the ball in the face and it 's poor from yaya toure ' gary neville : city have a mentality problem ... they can not sustain success .\ncharlotte crosby was criticised for her slim frame on social media . the star has lost more than two and a half stone in the past year . her geordie shore cast mates have also shed the pounds . a doctor warns that they could be taking their diets too far .\ntimothy norris-jones left his mother with a bruised face and a cut hand . 59-year-old told police she fell and he accidentally ` caught her face ' . handed two-year suspended sentence at guildford crown court .\na sydney psychologist has surrendered his registration . darryl dewar was accused of misconduct after a 2012 consultation . a woman claimed mr dewar told her she had ` nice t ** s ' and swore at her . she also said he patted her head and asked her for a neck massage . a tribunal found the woman 's evidence was credible .\nalfonso thomas to coach in indian premier league this month . veteran somerset bowler has agreed a deal with the delhi daredevils . 2015 edition of indian premier league to begin on april 8 .\nyoung girls were sent sexualised facebook messages but police did n't act . abbie conman , 12 , and kerry green , 13 , were targeted by online predator . one of the mothers challenged the man , who was pretending to be 17 . police said no crime was committed when the mothers reported the man .\nzlatan ibrahimovic will line up against former club barcelona on tuesday . psg travel to face the spanish giants trailing 3-1 in their european tie . the french club must score at least three times to reach the semi-finals . ibrahimovic is back in action after missing the first leg through suspension . read : laurent blanc labels semi-final qualification ` practically impossible ' .\nliam dawe was born healthy but suffered on-going health complications . died at 21 last year having developed cerebral palsy following the assault . inquest in plymouth , devon , heard he was shaken at just four weeks old .\nrichard attenborough 's treasured possessions will go under the hammer . actor-director died aged 90 last year and his items will be sold at bonhams . his son , richard , says it would n't be possible to keep all of the belongings .\nman raped his daughter repeatedly over four years from when she was 10 . he had ` poisoned ' youngster against her mother who did not live with them . his depravity was exposed when the girl became pregnant as a teenager . despite the abuse she told derby crown court she still loved her father . he was told to serve a minimum sentence of 15 years for horrific abuse .\ngang member was intended target of shooting which shocked uk in 2011 . rival criminals instead shot thusha kamaleswaran , who was paralysed . four years on , gang member admits horrific knife-point burglary . he and an accomplice are locked up for targeting two women .\nclive howard , 57 , preyed on lone women on norfolk and cambridge streets . he was jailed for life after final victim was able to describe his volvo car . jessica howard , 23 , was returning from a night out when he raped her . since he was found guilty 15 more potential victims have come forward .\nmohamed salah scores as fiorentina beat sampdoria 2-0 in serie a. on loan chelsea winger scores second as his side go fourth . roma beat napoli 1-0 for first home win in four months . carlos tevez strikes as juventus maintain huge lead at the top .\ntriple killer ronald jebson died of kidney failure almost a fortnight ago . he killed three children but only admitted two of crimes 30 years later . prison authorities had respected final wish that his death would be secret . jebson ` did n't want people to have the satisfaction of knowing he 's dead ' family of his victims wept today and one said : ` he deserves to rot in hell '\neuropa league semi-final draw : napoli vs dnipro , sevilla vs fiorentina . last-four ties to be played on may 7 and may 14 . final takes place at national stadium in warsaw on may 27 .\njames webster , 35 , took photos as victims leaned against display cabinets . shoppers became suspicious when saw him angling his bag for best view . webster admitted one count of outraging public decency in the lidl store . ordered to complete sexual offences treatment programme as part of three year community sentence .\nat 240lbs , lillian bustle says she 's not being negative when she calls herself ` fat ' - she is just being factual . she says she likes performing burlesque because it helps open people up to liking different body types . the dancer says she 's thrilled at the positive reception her ted talk has received , adding that she believes it means ` body-positivity ' is working .\noshun cafe serves four variations of brazilian superfood , costing # 6 each . pop-up restaurant will be open from 8 to 27 april . berries packed with amino acids , as well as vitamins a , b , c and e .\nluis suarez scored a brace while neymar also netted in 3-1 win at psg . suarez has 17 goals for the season after slow start to life at the nou camp . suarez , lionel messi and neymar is the best front three in world football . psg missed zlatan ibrahimovic 's world-class qualities in their defeat .\nanthony mann admitted killing his wife janet who suffered from dementia . court heard how she begged for him to bring her suffering to an end . he stabbed her in the chest after she became distressed at their home . after stabbing her , mann , 78 , kissed his wife and told her : ' i love you ' mann pleaded guilty to amended charge of manslaughter with diminished responsibility .\nterminally ill simon mitchell , 44 , stole laptop and satnav from charity . he volunteered as a fundraiser for children 's charity donna 's dream house . mitchell has pleaded guilty to two counts of theft following investigation . charity 's chairman says mitchell is a ` fantasist ' who claimed to have celebrity contacts but repeatedly let charity down - costing them # 6,500 .\nthe tiny garden gnome is signed by all four members of the iconic band . it appeared with celebrities and world figures on 1967 sgt pepper 's artwork . it was given to an assistant photographer following the shoot for the cover . the cardboard garden ornament sold at auction for a surprising # 29,000 .\nyo ! sushi founder simon woodroffe is among new signatories of letter . he is a former labour backer and appeared in a 2004 political broadcast . total of 150 business leaders have signed the letter praising the tories . the announcement will heap more pressure on labour and ed miliband .\ndonna hussey , 32 , targeted by trolls online over three-year-old son 's death . young freddie died after being crushed against a wall by a runaway trailer . tony davies spared jail after admitting causing death by careless driving . mrs hussey branded ` bad mum ' by trolls who blame her for freddie 's death .\nmatt lauer donates $ 1,000 to charity for each thank you in racy bit with ellen degeneres . betty white honoured with a lifetime achievement award . craig ferguson wins for outstanding game show host . entertainment tonight wins outstanding entertainment news program .\na man has been charged with more than 100 domestic-violence offences , which were allegedly committed over 18 years . the man , from leumeah , in sydney 's south-west , faced court on wednesday and was remanded in custody . police arrested him in february after the woman , 51 , jumped from a balcony to escape him , fracturing her leg .\nmohammed alam , sayed juied and sadek miah raided a total of 21 homes . surveyed homes before striking , often waiting until owners were away . had taught themselves how to disable security systems and cctv cameras . took ferrari , porches , art and jewels worth total of # 1million in 11 months . were jailed at kingston crown court after admitting burglary offences .\namit yadav was driving his red honda civic up to 25 miles over speed limit . yadav lost control of his car and smashed into an oncoming renault cleo . two passengers - brothers haider , 20 , and taimur kayani , 17 - were killed . yadav was found guilty of causing death by dangerous driving in february .\nstudents spend $ 1,000 a year on prom on average , according to survey from visa .\nformer nfl cornerback will allen and his business partner susan daub are facing civil fraud charges from federal regulators . they allegedly reaped over $ 31 million in a ponzi scheme that promised high returns to investors from funding loans to cash-strapped pro athletes . allen , 36 , was a cornerback in the nfl from 2001 to 2012 , playing for the new york giants and the miami dolphins . the sec said allen and daub paid about $ 20 million to investors but received only around $ 13 million in loan repayments from athletes . to make up the gap they paid investors with other investors ' money rather than actual profits on the investments , the agency said .\nashley james , who starred on made in chelsea , models the bold bra . the # 38 jessica plunge bra , by tutti rouge , comes in sizes 28d - 38hh . features removable foam pads that push your boobs in for extra oomph .\ncynthia lennon was john lennon 's first wife . she was there during the rise of the beatles . her death was announced by her son , julian .\nmagazine published a rape on campus in november 2014 issue . graphically recounted supposed gang-rape of university of virginia student . sabrina rubin erdely wrote article based on interviews with victim ` jackie ' did not speak to alex stock or ryan duffin , who were portrayed poorly . they could have revealed jackie 's unreliability before story went to press . duffin today took the magazine to task and said its reputation is shot .\nadidas go app uses the phone 's accelerometer to monitor the user 's stride . it then automatically plays tracks with matching beats per minute . songs are also selected based on the runner 's musical interests . these selections become more relevant the more the app is used .\neast asia sees soaring rates of myopia , with 80-90 % of young adult population affected . evidence that myopia rates are increasing in europe and the u.s. scientists advice for kids : go outside and play .\nwayne rooney is set to appear on ant and dec 's saturday night takeaway . the england captain jokes around in interview with little ant and dec. . manchester united forward admits that public attention can get annoying . the programme and interview will be aired on saturday night from 7pm .\nnasser hussain believes it 's time to look at the structure of english cricket . hussain believes paul downton is just the latest victim to take the flack . he feels the system is broken and desperately needs attention and fixing . alastair cook 's sacking shows we are painfully slow to react problems .\nchris copeland and his wife , katrine saltara , 28 , were arguing in the street when a stranger tried to intervene . the man , shezoy bleary , ` pulled out a knife and stabbed copeland in the abdomen and his wife in the breast , buttocks and arm ' on a video showing the victims being treated in the street , copeland 's wife is heard shouting : ` we were stabbed . we are scared for our lives ! ' two atlanta hawks players , pero antić and thabo sefolosha , were also arrested ` for obstructing police when they arrived '\ngemma collins , 34 , launched several additions to her evans range today . the star paid a nod to the summery weather in a floral dress . new additions to collection include a lacy lbd and a set of floral kimonos .\nngo official says people will urgently need food , water , medicine and shelter . more than 1,800 people across nepal confirmed dead , official says . people treated outside hospitals ; avalanches reported on everest .\ndanny ings ' contract atburnley expires at the end of the season . liverpool have held an interest in the striker since earlier in the year . united have made contact early with burnley to hurry through a move . ings also linked with manchester city , tottenham and real sociedad . danny ings : the man with an inspiring tattoo .\nmiddlesbrough beat wolves 2-1 in the championship on tuesday night . patrick bamford scored his 19th goal of the season for boro in the win . bamford is one of 26 players out on loan from chelsea this season . 21-year-old has opened contract talks with the blues over a new deal .\nporto host bayern munich in the champions league on wednesday . bundesliga champions have an injury crisis with the likes of arjen robben , franck ribery and bastian schweinsteiger all ruled out . julen lopetegui has been boosted by the return of jackson martinez .\nfareed zakaria : isis has thrived because of a local sunni cause in syria and iraq . leaders of isis have recognized they are a messaging machine , he says .\npost-mortem examination showed the actor had undiagnosed dementia . the condition could explain his insomnia , anxiety and paranoid tendencies . internet searches suggest he knew something else was wrong , expert says . his wife described how he stuffed watches in socks shortly before death . autopsy : the last hours of robin williams airs tonight on channel 5 at 9pm . .\nkenyatta leal was handed life sentence for firearms in 1994 . inside san quentin he was accepted to unprecedented tech scheme . prisoners who never experienced the internet learn to code .\nmuhammad naviede died after his piper tomahawk aircraft crashed in field . the 60-year-old sent text to relative shortly before plane span out of control . air accident investigation branch investigation says message is ` unusual ' his daughter was on x factor and brother entertained cherie blair at home . the father-of-two was jailed for nine years in 1995 for a # 45million fraud .\npolice in paramus , new jersey , captured stray goat in middle of the road . authorities still working to find owner of goat , who is with animal control .\nspring is the perfect time to fill your home with seasonal flowers . we 've gathered a list of simple , unlikely tips to help them last . include spraying them in hairspray and keeping them far away from fruit .\nsteve ashton was horrified by the meal served to his mother joan , 81 . the elderly woman lives in aneurin bevan court in duffryn , newport . her son is campaigning for changes to ensure better food standards . mr ashton 's photo of ` terrible ' serving of food was shared 129,000 times . send your photos to jennifer.smith@mailonline.co.uk or call 02036150193 .\npolice were too busy chasing labour crime targets to protect young girls . whistleblower says money was diverted away to pursue ` priority crimes ' meeting targets on car crime linked to top officers ' pay in south yorkshire . girls suffered abuse at hands of sex gangs in sheffield and rotherham .\nthomas tuchel has signed a three-year deal to replace jurgen klopp . tuchel will officially take over at borussia dortmund on july 1 . the 41-year-old 's last job was at bundesliga side mainz .\nreal madrid have exclusivity on signing javier hernandez until friday . if real do not agree deal by friday , then other clubs can swoop for striker . manchester united to field offers of # 10million for 26-year-old hernandez .\ntehsin nayani spent six years as spokesman for the glazer family . his new book , the glazer gatekeeper , tells all about his time in the job . nayani insists that the glazer takeover was always a long-term project . sir alex ferguson used to invite the owners into the home dressing room . nayani believes the red knights consortium were never serious suitors . the glazers are not ` ogres ' despite fan opinion , according to nayani .\niraqi and u.s.-led coalition forces say they retook a key refinery from isis . peshmerga forces also report retaking terrain from isis .\nronnie o'sullivan is a five time world snooker champion . the rocket revealed his mind wanders to his stomach during games . the world no 2 claims he never gets nervous hunting a 147 break . the 39-year-old was speaking in an interview with forever sports .\nfootage shows mario valencia walking along a street in marana , arizona . alleged robber points item that appears to be rifle into air ; shot rings out . seconds later , officer michael rapiejko starts speeding toward valencia . his police car mounts the sidewalk , before crashing into armed suspect . valencia taken to hospital with serious injuries ; released two days later . police chief has defended officer 's actions , which saved ` valencia 's life ' suspect had allegedly stolen rifle from walmart and threatened suicide . comes as us police remain under scrutiny for alleged racially profiling .\nluis suarez receives a painful knee where it hurts from team-mate neymar . south american duo shared a joke in training ahead of champions league . barcelona face paris saint-germain at the nou camp on tuesday night . suarez admits he was timid at the thought of playing alongside neymar . read : psg coach admits getting past barca is ` practically impossible ' .\nreal madrid beat rayo vallecano 2-0 in la liga on wednesday night . cristiano ronaldo scored his 300th goal for the spanish giants . ronaldo was also booked for diving in the area but it appeared unfair . carlo ancelotti plans to appeal the yellow card shown to ronaldo . click here for all the latest real madrid news .\nandrew steele , 40 , claims that the terminal disease affected his brain . steele is charged with first-degree intentional homicide for the murders of his wife , ashlee steele , 39 , and her sister , kacee tollefsbol , 38 , in 2014 . he has plead not guilty by reason of mental disease or defect . jury was presented with steele 's letter written before slayings claiming he had had threesomes with ashlee and kacee . his attorney said steele 's last memory from day of killings was looking for scissors to cut zip tie from around his wife 's neck during bondage sex .\na french rescue team finds rishi khanal more than three days after the quake . a 4-month-old baby is reported to have been rescued after 22 hours in rubble .\nkim , 27 , looked chic in a big hat and off-the-shoulder dress in miami . watched andy murray play against kevin anderson in fourth round match . kim and andy will tie the knot at dunblane cathedral on april 11 .\nnew pictures show raheem sterling and jordon ibe with shisha pipes . sterling will avoid punishment from liverpool after inhaling ` hippy crack ' arsenal and other clubs are getting cold feet over their interest in sterling . pictures emerged last week of liverpool star sterling smoking shisha . footage also emerged of him inhaling nitrous oxide from a balloon .\njuan mata scored both times as manchester united beat liverpool 2-1 . he also impressed as united emphatically beat tottenham 3-0 at home . mata thanked his fans after becoming united 's player of the month .\narman nejad , 24 , dragged girl into his house and raped her in october 2009 . police interviewed the victim in 2010 but then the case was never pursued . in 2013 teenager had demanded to know why nejad still living close-by . nejad was then arrested and jailed on friday for five years for the rape .\npolice officers have shut down an enormous 1000 rave in sydney 's east . they were called to abandoned industrial area in botany on saturday night . police were forced to use capsicum spray on the group after back up came . one officer had glass removed from his head after the crowd threw bottles . a woman was arrested and is being questioned after assaulting an officer .\ncarol costello : talk to any millennial and you can envision an america virtually marriage-free . in countries like sweden or denmark , people do n't feel pressured to marry even if they have kids together .\nrobin van persie has been sidelined with an ankle injury since february . he came on as a substitute for the senior team against everton on sunday . van persie opened the scoring for united 's under 21s at craven cottage . joe rothwell scored united 's second and third before half-time . van persie grabbed his second goal to secure the win for united .\nnumbers of native red squirrels have been rapidly dwindling in the country . now , several sightings have been reported in windermere , lake district . experts say a lack of habitats caused them to disappear from the area . but they are now returning to woods in the area and some have even been spotted in the town centre .\nwilliam smith died four months after his mother lost battle with leukaemia . the ` brave ' 14-year-old was found dead by his grandmother at his home . an inquest heard how he had settled back into school well following loss . coroner ruled he was likely trying to play a prank when he died in august . for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here .\nlawmakers in colorado and washington are considering spelling out what 's allowed when it comes to making the concentrated marijuana at home . at least 30 were injured in colorado alone in 2014 in butane explosions involving hash oil . people make hash oil at home to save money , make it to personal taste , or as a hobby .\n5,300-ton hms talent has a huge dent and will be out of action for weeks . defence officials have refused to disclose exact details of the crash . it will cost an estimated # 500,000 to repair , navy sources have claimed .\nraghunandan yandamuri , 29 , sentenced to two death sentences last year . montgomery county , pennsylvania man acted as his own lawyer during trial . killer knew victims , 10-month-old saanvi and 61-year-old satayrathi venna . appellant accused the attorneys of not responding to his calls or letters . he asked for death during sentencing and had previously tried to kill himself .\naer lingus flight ei 660 to vienna was forced to return to dublin mid-air . the event happened yesterday just after two ryanair planes had collided . it was confirmed to be due to ` technical issues ' and no one was harmed .\nmiddlesbrough 's ben gibson is nephew of club chairman steve . as a teenager he used to play as middlesbrough on football manager . the teesiders have spent six consecutive seasons outside of top flight . lifelong boro fan gibson believes the squad has what it takes to secure a return to the big time .\narchives reveal list of drunkards banned from every pub in birmingham . were all put on the 1904 blacklist after convictions under inebriates act . list was then sent to landlords who were not allowed to sell them booze . offenders were also ordered to work up to 21 days of ` hard labour ' .\nvisitor numbers to the spanish port are soaring and they are set to rise . pop-up gallery , centre pompidou malaga , opened this week , in a giant cube . a museum of fine arts and archaeology will open to the public in 2016 .\ntwo bmw drivers violently clashed after a road rage row in east london . a 25-year-old motorist rammed fellow driver who had stripped in street . he was arrested on suspicion of actual bodily harm and has been bailed . video shows shirtless man punching fellow motorist through car window .\na new zealand family has transformed an old truck into a travelling castle . it comes complete with turrets that feature a toilet and a shower . when packed away the compact vehicle meets minimum road requirements . jola siezen is an acrobat who performs around the country .\nbubba watson pulled off an incredible baseball style trick shot in practice . the 36-year-old smashed the airborne ball straight down the middle . watson 's form was poor at the masters and shenzen international .\noutrage in china as ` two unemployed rich kids ' race and crash luxury cars . cars thought to be worth combined total of # 1.3 million were both wrecked . residents say people often race along stretch making the road dangerous . internet users have branded drivers as ` irresponsible ' and ` spoilt rich kids '\ntiger woods was joined on the course at augusta national golf club by his young children and girlfriend lindsey vonn . woods has returned to action following a self-imposed break from the sport to work on his game and recover from niggling injuries . he is bidding to win the 15th major of his career at this year 's masters .\nmilos raonic , last year 's wimbledon semi-finalist , will play at queen 's club . australian nick kyrgios will also make his debut in west london . kyrgios knocked rafael nadal out of wimbledon in a huge shock last year .\ned miliband is pressing on with his plans to cap rent above rate of inflation . housing experts , business and labour figures have warned it will backfire . generation rent campaign said miliband 's plan is ` riddled with loopholes ' tories said ` drivel ' proposal would suppress house building and push up rents .\nsteven gerrard and frank lampard to be given special merit awards . gerrard is leaving to join la galaxy , lampard moving to new york city fc . pfa will hand out the awards this weekend to acknowledge their careers .\npeter gale has been fired from nonsuch high school for girls in surrey . headteacher accused of ` inappropriate ' and ` unprofessional ' behaviour . governors said there had been ` serious breaches ' in safeguarding . but the high-performing school refused to confirm nature of allegations .\nuniversity of cologne scientist led research proposing new theory . it suggests temperatures at the equator were -40 °c 2.4 billion years ago . the reasons why the whole planet was frozen are not understood . but it could have implications for finding life on frozen moons like europa .\njermain defoe scored stunning winner as sunderland beat newcastle 1-0 . carver admitted that newcastle 's performance was 'em barrassing ' manager said his team were second-best to rival in all departments . counterpart dick advocaat said result was a ` boost for everybody ' win puts the black cats three points clear of the relegation zone .\njonathan trott out after three balls , caught by darren bravo at slip . trott is playing his first test for over a year after stress-related illness . warwickshire batsman was promoted to open , but failed in first innings . follow the first test live here .\nkaren catherall , 45 , was beaten and strangled to death by darren jefferys . they met weeks earlier on dating site plenty of fish before he killed her . police revealed the mother-of-two tried to call 999 on night of her murder . call handler got no response and so the call was not connected to police .\nvincent kompany reveals sir alex ferguson tried to sign as a teenager . the manchester city captain turned them down on the advice of his mum . kompany has called on his team-mates to perform well at old trafford . click here for all the latest manchester city news .\nknight appeared at the cleveland rape crisis center 's faces of change luncheon on wednesday . she received a standing ovation as the spoke to a crowd of 1,200 . ' i want to overcome and flourish and rise above all that , ' she said of ordeal . afterwards she revealed she is in a relationship and writing a second book .\nred fox spots a deer bone among a group of black crows on a frozen lake in furen in japan and goes in to take it . but the animal is challenged by two advancing large eagles who surround him as he holds bone in his jaws . as the fox and eagles clash , it becomes clear the young fox is destined to lose the battle against his larger foes .\nmanchester city 's hopes of retaining the premier league title were dealt a hammer blow after a 2-1 defeat at crystal palace . vincent kompany and city players were visibly frustrated and the belgian even manhandled referee michael oliver . glenn murray and jason puncheon gave palace a 2-0 lead before yaya toure scored what proved to be a consolation for city . for the 16th league game this season , city fielded a starting line-up with no english outfield players .\ncalfornia gov. jerry brown ordered a 25 percent overall cutback in water use by cities and towns in the state on wednesday . this series of photos taken on saturday show the ongoing drought is already taking its toll on once technicolor landscape of lush yards , emerald golf courses and aquamarine swimming pools . the crackdown comes as california and its nearly 40 million residents move toward a fourth summer of drought with no relief in sight . state reservoirs have a year 's worth of water and with record low snowfall over the winter there wo n't be much to replenish them .\narsenal 's alexis sanchez is enjoying a fine debut season in english football . he has scored 22 goals in all competitions since signing from barcelona . sanchez has been nominated for the pfa player of the year award . the 26-year-old has spoken highly about the quality of his arsenal team-mates and singled out fellow attacker santi carzola for particular praise . the gunners are currently second in the premier league table and through to the fa cup final for a second consecutive season .\nthe new rangers board have held their first meeting with mike ashley . sports direct and newcastle united owner ashley has 8.92 per cent stake in the club as well as control over a number of its assets . ashley has the right to appoint two directors at rangers .\nevan summerfield had just learned to laugh and giggle when he fell ill . developed a large rash and was rushed to hospital with meningitis . doctors battled to save the four-month-old but he died in hospital in devon . death has left parents shannon and kris confused over how quickly he fell ill .\nidentical twins marcus and markieff morris , 25 , play for the phoenix suns . are being investigated in connection to felony assault in late january . erik hood , 36 , claims he used to mentor the twins until they had falling out . hood said another man , julius kane , misinterpreted text to twins ' mother . claims morris twins , kane and two others beat him until unconscious . there have been no arrests or charges filed and twins deny involvement .\ncar first designed to help french farmers transport their sheep for sale . from humble origins the 50-year-old hatchback is popular the world over . accounting for two thirds of cars sold in the uk it dominates most markets .\nluke rockhold takes on lyoto machida in new jersey on saturday . the middleweights will hope the winner will earn a title shot . rockhold believes he has to dominate machida to earn the win .\nreports emerged on social media suggesting mike ashley was now the official owner of the light blues trademarks . rangers have promised to investigate the claims . ashley was given security over the icons and logos as part of the # 5m loan .\nbiologists at jyväskylä university in finland studied how wild great tits reacted to images of the wings of butterflies and the faces of owls . the tits were startled and tried to flee at the sight of owl faces with open eyes , and butterflies that had eye spots on them that mimiced owl eyes . they say their study is evidence that butterfly eye spots mimic predators . scientists have long debated whether butterfly eye spots were an example of batesian mimicry or if the patterns simply served to confuse predators .\njermain defoe scored a superb dipping volley against newcastle to secure a 1-0 win for sunderland in the wear-tyne derby . the 32-year-old believes that the goal has vindicated his decision to return to the premier league from mls side fc toronto . defoe has compared the feeling of scoring the winner in the derby to scoring for england at a world cup . sunderland have beaten newcastle in their last five consecutive meetings .\nprince andrew has changed the fate of 100 vulnerable women in calcutta . they were rescued from brothels , child labour and trafficking by charity . key to freedom was launched by the duke after a trip to india in 2012 . he recently denied allegations he had slept with a sex slave in america . the accusations , made by virginia roberts , have been struck from court records .\ndrinks company offered premier league # 45million-a-year deal . but clubs turned it down because they have other deals with beers . sky sports block thierry henry from presenting award on channel 4 . richard thompson looking to bring t20 blast highlights to terrestrial tv .\nian guffick , 31 , allowed pupils to make changes outside exam conditions . he also made changes to the pupil 's work before the papers were sent off . probe was launched after officials were tipped off he breached exam rules . a disciplinary panel has now banned guffick from teaching for two years .\ndan klice , 57 , was hit by soaring projectile ` after a gust of wind ' tried to dodge it , but fell , leaving his heel exposed when javelin struck . he was judging a contest at ramapo college , mahwah , new jersey .\nthe april lunar eclipse is set to turn the moon into blood red this easter weekend . the sydney observatory has been concerned over the bad weather forecast for the big night . adelaide will be have the clearest skies out of all the states , according to the bureau of meteorology . a lunar eclipse occurs when the moon passes in the shadow of earth .\nspanish newspaper marca have praised real madrid 's james rodriguez . the colombian has impressed since joining from monaco last summer . roberto mancini wants to sign eight ` quality ' players for inter milan . yaya toure , filipe luis and lucas leiva among mancini 's targets . juventus striker alvaro morata claims he is not interested in joining real .\nmanchester city will make signing english players a priority this summer . raheem sterling , danny ings and ross barkley are all on city 's wanted list . club chiefs want to sign young , hungry potentially world-class players . the premier league champions , however , will not compromise on quality . manuel pellegrini has admitted it 's hard to sign the best english talent . city need eight homegrown players for their first-team squad next season .\nreckless ' by-election majority of 2,920 in rochester and strood my be lost . it 's just the latest secret polling bombshell to hit nigel farage 's party . top ukip source said : ` it is not looking easy for mark , but we are hopeful '\nchelsea have revived their interest in west ham forward enner valencia . patrick bamford is to be offered a new long-term deal at stamford bridge . despite having an interest in raheem sterling , the move looks unlikely . click here for all the latest chelsea news .\nwellington held its inaugural cubadupa festival bringing in performers from across the world . new zealand 's capital shut down several streets for the colourful party that spanned several blocks . the iconic and bohemian cuba street was the centre point of all activity and drew in thousands despite the rain .\ntracey neville is phil neville 's twin and sister to gary neville . she will manage england at the netball world cup in australia this summer . tracey believes her personality is a mixture of her brothers ' she would love to pick the brains of man united legend sir alex ferguson .\nsally kohn : april 14 is equal pay day , and hillary clinton should make an announcement about wage gap . clinton should say that if elected , she will take a 23 % pay cut to stand in solidarity with working women .\nryanair post promo photo in terminal 2 - where aer lingus fly out from . they tweet that ` low fares have come to dublin airport t2 at last ' the low-cost airline are actually based out of terminal 1 . aer lingus respond saying they get customers to central locations , not ` nearly there ' .\nreal madrid and atletico madrid meet for the fifth and sixth time in europe . that brings them level with inter and ac milan in number of city duels . there will have been eight madrid derbies by the end of this season . no city showdown has been played more time in recent years . see where cristiano ronaldo and gareth bale unwind after madrid training .\nmats hummels has been linked with a move to manchester united . germany defender admits he is considering his future at the club . hummels said his future will become clear at the end of the season .\nnew jersey police have released a sketch of an infant whose headless body was discovered last year in an attempt to find the child 's mother . the body of the infant , called 'em ma grace ' was found in a trash heap in november , authorities located her head more than 50 miles away . police say the mother may have been trying to hide her pregnancy prior to giving birth .\nthe actress and granddaughter of ernest hemingway describes what it was like for her growing up . she has written two distinct books , one for adults and one teenagers . around 10 per cent of americans suffer from depression . the books speak about about mental illness and what it is like living in a troubled family . hemingway tells about her own experiences with depression , eating disorders , ocd , and how she learned to overcome the issues .\nbarry lyttle pleads guilty to causing grievous bodily harm . he allegedly struck his brother patrick during a night out on january 3 . barry is negotiating with prosecutors for a lesser charge . irish brothers barry and patrick lyttle hoping to return home soon .\ndashcam footage shows the officers using their patrol vehicles to steer the one ton bison off the road and back to his farm near the city of round rock . as they beep their horns the animal , named big boy , continues to run along the sidewalk . however , at one point he veers in front of the police car and on to the other side of the road . despite the detour , the buffalo made it home safely free of injury . .\nsusan farmer , from eddy , texas , weighs 43st -lrb- 605lbs -rrb- . the 37 year old is told to lose half her body weight or face an early grave . she achieves it over 12 months after her mother stops buying her junk food .\naccident happened just before 10am on sunday in durham , north carolina . derek lowe , 38 , and tina lowe , 33 , were pronounced dead at the scene . northbound train struck pair on property owned by norfolk-southern . train no. 80 , the carolinian , was headed from charlotte to new york city . trip continued after about three-hour delay and no passengers were hurt . man who met pair while collecting scrap metal said they were homeless .\nwalter smith believes ally mccoist deserves another managerial job . ibrox legend believes mccoist still has something to offer in football . mccoist is still being paid # 14,000 a week while his notice period runs out .\n` ena ' was designed by walter reeks in 1900 and undertook war service as hmas sleuth in world war i . the 29 metre steam yacht sank near hobart in 1981 but was salvaged . it was turned into a commercial cargo and fishing vessel , renamed ` aurore ' the historic steam boat has been listed by paul sumner at mossgreen . it has been marketed as ` the finest steam yacht in australia and only one of three of its kind remaining in the world ' .\ncrystal palace face sunderland at the stadium of light on saturday . ex-newcastle boss alan pardew is prepared for a frosty reception . but he believes black cats fans should be more concerned about his side . sunderland are 15th in the table and three points clear of the drop zone .\nuk celebrity cook book author annabel karmel shares her thoughts on paleo for kids . the acclaimed author has over 40 children 's cook books . says the paleo method goes against everything nutritionists and child health experts recommend . karmel is in australia to launch nutritious children 's food range at coles .\nvalencia were held to a 1-1 draw by athletic bilbao after aritz aduriz netted . getafe boosted survival chances with 1-0 win over strugglers elche . felipe caicedo scored a brace in espanyol 's 3-0 defeat of villarreal .\nthe sigma alpha epsilon fraternity at clemson university was penalized for holding a christmas theme party that flared up racial tensions . white students dressed in red and blue bandanas , t-shirts with images of the late rapper tupac shakur and sported fake ` thug ' tattoos . photos from the party flooded social media and were accompanied by comments such as : ` merry cripmas to all , and all a hood night ' the incident caused a backlash as black students protested and said clemson was n't doing enough to promote racial tolerance .\nmore details of the so-called ` everyday americans ' have been revealed . gardener julie stauch was state campaign manager for wendy davis . sean bagniewski , who appears with his wife , has campaigned for clinton . but he held an event for likely rival o'malley days before video 's release .\nduring her father 's presidential campaign and subsequent two terms in the white house , chelsea was well known for her tight curls . the new mother , who gave birth to daughter charlotte in september , explained that her iconic hairstyle simply changed over time . in her interview , published days after her mother 's presidential candidacy announcement , she also addressed america 's ` need ' for female politicians .\njonas bjorkman joined andy murray 's camp on an initial trial . amelie mauresmo is due to give birth to her first child in august . bjorkman will work with murray right through to the us open . murray is in munich to compete in this week 's bmw open on clay .\nnew world wealth compiled list of fastest-growing cities for the super-rich . ho chi minh city has seen a 400 % rise in multi-millionaires since 2004 . however , it 's hong kong that boasts 15,400 millionaires among its borders .\n5 suspects arrested in attack on kenyan campus , official says . student tells cnn of smearing herself with blood to escape death . al-shabaab gunmen opened fire , and 147 people died .\nukip leader says it is a ` reasonable position ' to charge repeat offenders . reveals he is finding the gruelling election campaign ` knackering ' . lib dems and tories have signalled they back the idea of fines for drunks .\nthe 25-year-old signed for cardiff from stade rennais for # 2.1 million . but the defender has been on loan with st etienne this season . the club have an option to make the deal permanent for # 1.5 million . st etienne will not take up an option to sign norwich striker ricky van wolfswinkel on a permanent deal .\nsalty dog 502 trailed omega air refuelling 707 tanker from a mile off . it used optical sensors and a camera to monitor approach to 20 feet . it then plugged its refuelling probe into hose of the omega air kc-707 . drone is size of an f/a -18 super hornet and weighs 44,000 lb -lrb- 20,000 kg -rrb-\nmark wood part of the england squad flying to the caribbean . alastair cook 's side to play three test matches against west indies . at 5ft 11in and 12st , he is not the size of traditional fast bowler .\nthe boxer shared the images on snapchat while driving his car in the u.s. came as he was travelling in the city of fremont close to san francisco . under californian law , it is illegal to use a mobile phone while driving .\nalastair cook completed his century on the second morning of action . england captain resumed on 95 and reached three figures before retiring . that allowed ian bell to arrive at the crease as tourists continued to bat .\nthe seesaw was created by talented temecula-based carpenter kyle toth . kyle placed the large trunk into natural split of tree and cut it down to size . rope attached to one side of the seesaw helps people get on and off . seesaw is made from raw material and sends occupiers to height of 25ft .\nfulham scrapped a draw at home to fellow strugglers rotherham . matt derbyshire gave the away side an early lead from close range . ross mccormack poked home an equaliser in the second half . fans booed heavily when the final whistle was blown at craven cottage .\njuventus reach final without carlos tevez , paul pogba and andrea pirlo . the old lady raced into 3-0 lead thanks to goals by alessandro matri , roberto pereyra and leonardo bonucci . alvaro morata was sent off for innocuous tackle on alessandro diamanti . juventus will face either napoli or lazio in coppa italia final .\nspanish paper sport say barcelona want to sign juventus ' paul pogba . la liga leaders are thought to be offering # 50million for the midfielder . real madrid are looking to win their last 10 games to overtake barca .\nliverpool will face aston villa in the fa cup semi-final on sunday . brendan rodgers ' side are still in the hunt for a champions league spot . simon mignolet insists the club are not prioritising one over the other .\n65 parmigiani watches given to fifa delegates at world cup in brazil . fifa ethics committee ordered the watch be given back . greg dyke did not give his back as he wanted to auction it for charity . dyke has now given the watch back with all 65 to be donated to charity .\nthe ` space bins ' have been designed for the next generation of 737s . they can hold six standard-sized bags -- two more than the current set-up . that would create enough space for up to 62 more carry-on bags . so far two airlines -- delta and alaska -- have ordered the new luggage bins . monarch , ryanair and thomson have all placed orders for new 737s .\npolice in london are trying to catch the gang which staged a multi-million heist during the easter vacation . former police commander : such crimes require meticulous planning and use of information by criminals . the masterminds behind such complicated crimes carefully assemble their gangs with men they can trust .\nmaurice watkins is a sports lawyer whose firm represents qpr . raheem sterling 's agent has emerged as key player in his contract talks . peter moores will begin review into england 's failed world cup next week .\nsouthampton target tonny vilhena wants out of feyenoord this summer . ronald koeman had tried to sign the 20-year-old in january , but was rebuffed . vilhena has one year left on his contract , but wants to move away . koeman is also keen on signing his team-mate jordy claise .\nflight 448 had just taken off when the pilot heard banging from beneath . la-bound plane was forced to return to seattle for emergency landing . worker emerged calm but was taken to hospital as a precaution . cargo hold was pressurized and temperature controlled , so the man was not in danger .\nbad quality sleep could be to do with the layout of your bedroom . infographic from made.com shows proven interiors tactics for better rest . sleep experts recommended you install heavy curtains and keep pets out .\nthe paleo way co-authors have spoken out in defence of pete evans . charlotte carr and helen padarin have made changes to the recipes . they have added vitiman c to their ` happy tummy brew ' the formula was slammed for containing liver and bone broth . evans ' infant cookbook bubba yum yum : the paleo way was set for release on friday march 13 but was delayed due to health concerns .\nsnp leader says she is not planning second referendum ` at this stage ' forced to deny her mps will wreak havoc in westminster after the election . cameron warns labour already punishing areas where they have no seats . snp holding labour to ransom means rest of uk ` would n't get a look in ' cameron urges tactical voting from ukip and lib dems to block labour .\nfuneral strippers in rural china are the latest focus of the country 's crackdown on vice . in some areas of china , the hiring of professional mourners is commonplace , but some performances are getting racy . government report says that stripteases undermine `` the cultural value of the entertainment business ''\ndiorama at the green jackets museum in winchester shows the extent of the battle in june 1815 . it features five key moments in the battle 's progress as well as several more light-hearted vignettes from the day . there are 21,500 soldiers and 10,000 horses depicted in the diorama - far fewer than the number in the battle . the model was made in the 1970s and has now been restored in time for the battle 's 200th anniversary .\nangela merkel and husband spotted while on italian island holiday . chancellor has been staying in the same village and hotel for years . the five-star spa hotel where she vacations cost up to # 280 a night . mrs merkel has been ejoying pilates classes and ` healthy meals ' .\ngrant allen , 38 , spent # 30,000 holidaying with girlfriend gaynor godwin . he bought houses in costa del sol as well as in essex and hertfordshire . court heard meat trader hid fraud by funnelling cash into partner 's bank . allen was previously jailed for six years for fraud and money laundering .\nsteven nelms writes that he ` ca n't afford ' his wife to be stay-at-home mom . he calculates the monetary value of what she contributes to the home , including child care , cooking , cleaning and running the finances . nelms concludes that his wife 's annual salary should be $ 73,960 . he writes that he was ` ashamed ' that his wife ever ` felt like she does n't have just as much right to our income as i do ' . nelms said his wife has worked since she was 14 and he wanted to make sure she felt appreciated .\nhalf of pensioners in us with investments during 2007 financial crisis sold them at wrong time , research finds . experts analysed 1,204 retirees with investments between 2006 and 2008 . findings come days before uk retirees are given power to decide how to spend life savings .\nchelsea flop kevin de bruyne has been linked with bayern munch . the belgian is touted has a possible replacement for franck ribery . ribery said de bruyne 's is ` great ' but the wrong style of player . he said chelsea star eden hazard 's attributes would suit bayern .\nthe ibrox board last week launched a probe into claims mike ashley 's firm had taken ownership of intellectual property . they are satisfied the position stems solely from the security attached to the loan from sports direct . ` although the trademarks are registered in sports direct 's name , the position is not as alarming as it may first appear , ' a statement said .\nuniversity of illinois scientists create first 3d simulation of black holes . it shows what happens when two supermassive black holes collide . material swirls around the objects and jets fire out from the poles . comes after two black holes found to be seven years from merging .\nmaria sharapova lost to angelique kerber in stuttgart on thursday . the german fought back to claim a 2-6 , 7-5 , 6-1 victory . sharapova will now be replaced by simona halep as the world no 2 .\nclem schultz 's beloved wife geraldine died in the deadly tornado in illinois on thursday . schultz 's dog missy went missing for two days but luckily was found two days later unharmed . missy was so traumatized by the storm that she ran 2.5 miles from her loved ones once she was found until they could catch up with her .\nboxes of cadbury 's fingers will contain two fewer chocolate fingers . joins creme eggs , pg tips and john west tuna in goods getting smaller . strategy allows manufacturers to increase profits without raising prices . food industry experts believe shrinking ploy is becoming more common .\nall hunting memorabilia removed from public display at norfolk estate . more than 60 items , including an indian tiger , have been placed in storage . and the blood-red walls have been painted white to make change clear . new sign outside sandringham museum makes pointed reference to how changing times have spelled the end for some exhibits .\nfred pagan , personal assistant to sen thad cochran -lrb- r-ms -rrb- , is charged with possession and intent to supply meth , plus trafficking drugs . police raided his home after seizing date rape drugs addressed to him . pagan is accused of intending to swap drugs for sexual favors . he faces up to 40 years in prison , has been released until may court date . sen cochran has yet to comment on the arrest .\nfox news sunday host appeared on the mike gallagher show on friday . said mom-of-one clarkson ` could stay off the deep dish pizza for a while ' within minutes , his response had sparked outrage among internet users . now , wallace has apologized for comment , which he dubbed ` offensive ' says he should have discussed singer 's ` remarkable talent ' - not weight . clarkson , who gave birth to her daughter river last july , coincidentally discussed criticism about her weight with ellen degeneres same day .\nsquaretrade 's video shows phone breaking under 110lbs of pressure . but samsung argues this is an unrealistic portrayal of everyday forces . it added that original test ` does not show the strength of the back side ' samsung last year poked fun at apple during its bendgate controversy .\nelle cites the item as the most surprising thing in her handbag . the body 's ph value tells you how acidic or alkaline your body is . many nutritionists say having an alkaline body helps defend against sickness . elle has unveiled a new health product : the super elixir nourishing protein .\npaul mcgowan is currently on house arrest for assaulting a police officer . the dundee midfielder has been ruled out of evening matches for his club . boss paul hartley says he will not risk playing mcgowan again this season .\njustus howell , 17 , was running from scene of an ` argument ' on saturday . police chased him down , shot him twice in the back , according to autopsy . he was pronounced dead at the scene in zion , il , at 2pm .\nskin laundry , a trendy new skin clinic in manhattan , offers a ten-minute laser facial which promises to tighten skin . clients have to sign a waiver allowing the clinic to give information to a funeral director , a coroner and to donate their organs .\nmadelyn yensen , 94 , died five hours before husband marcus , 95 . salt lake city couple with three children lived in same house since 1949 . madelyn suffered seizure while holding her husband 's hand at his bedside . marcus later died of cardiac arrest , family said . couple met in 1940 when marcus took dance lesson from his future wife .\nlionel messi has played at celtic park three times with barcelona to date . celtic failed to qualify for the champions league this season . barcelona face psg in the champions league quarter-finals this campaign .\nliu guijuan shared pictures of the headdress on chinese social media . headpiece is said to cost # 10,775 and uses feathers from 80 kingfishers . conservationists criticised miss liu as condoning animal cruelty . artist fought back stating she bought the luxurious piece in name of art .\nin a letter to the mail , 80 headteachers said academies benefit children . but they warned that labour is threatening to reimpose state controls . heads expressed alarm at ed miliband 's comments on school reforms . teachers signing the letter are from some of the best schools in britain .\nthe organisation has classified over 100 resorts into ` risk ' categories . urges boycott of those considered to have ` high risk ' of corruption . among those listed to avoid is the popular conrad maldives rangali island .\nthe two disturbing videos were uploaded to facebook on wednesday . a woman unleashes a racist tirade on her neighbours from over the fence . she swings a crowbar at the group of men and a tussle breaks out . the woman is struck in the face during the fight and is visibly bleeding . a woman has been charged with assault and several other offences . the 51-year-old will appear in perth magistrates court on april 8 .\ndavid beckham was a spectator as romeo competed in mini-marathon . beckham was joined by wife victoria and sons brooklyn and cruz . family congratulated romeo , 12 , at the finish line of three-mile course .\ndavid cameron revealed that the london mayor had seen him as a rival . pm said mr johnson ` suddenly realised ' his competition was elsewhere . comes after he named johnson , osborne and may as potential successors . mr cameron also admitted bullingdon club past ` cripplingly embarrassing '\nthe man , known only as jason , is filmed popping the ganglion on his wrist . involves hammering a needle into his arm with the handle of a screwdriver . a sticky ball of see-through jelly emerges from the cyst afterwards . doctors do not advise popping ganglions as more fluid returns in future .\nbelinda , 56 , from essex , had the budget facelift in turkey . she was left with prominent scarring ` dragging down her earlobes ' need a full face and necklift and added surgery to correct botched op .\ned miliband said the crisis was ` in part a direct result ' of the pm 's policy . miliband made a rare address on the issue of foreign policy in london . senior conservatives accused miliband of exploiting a human tragedy . liam fox claimed the labour leader was ` weaponise drowning migrants ' .\ndamon muller was diagnosed with rare autoimmune disease in november . the 11-year-old ca n't go out in the sun or be active due to muscle swelling . he was rushed to a brisbane hospital because his throat closed over and there 's a chance his heart could be affected too . juvenile dermatomyositis effects muscles including thighs , hips and chest .\nbring your own large `` cup '' for a $ 1.49 7-eleven slurpee . any sanitary container less than 10 inches in diameter is fair game .\nstuart dallas scored either side of half-time for brentford . the 23-year-old opened the scoring in the 24th minute before adding a second just before the hour mark at craven cottage . ross mccormack scored a penalty to pull a goal back for fulham . alan judge came off bench to score brentford 's third in injury time . jota added a fourth for the visitors late in the game .\npaul armstrong flew to cyprus to celebrate new job as it project manager . was stopped at airport with stun gun , baton and knuckle duster in his bag . pleaded guilty to possession of a firearm and lost his job before starting it . 26-year-old was sentenced to eight months in jail , suspended for two years .\nfaith myers , 14 , from nebraska , was filmed by her mother as she woke in bed still high from the procedure 's anesthesia . footage shows her being quizzed about what she would like to eat , with the thought of a shake clearly filling her with dread . ' i do n't want all the boys in my yard , ' she mumbles . after sausages are also given a thumbs down , faith and her mother finally settle on jell-o .\nsimon brann thorpe 's project makes real-life soldiers resemble toy soldiers . he shot the images in western sahara , a disputed region of northwestern africa .\ncarlos manuel perez , 28 , allegedly made to fight andrew jay arevalo , 24 . fight happened at high desert state prison in indian springs in november . perez was shot dead by corrections officer ; arevalo survived with wounds . attorney has claimed officers staged the fight between the two . filed lawsuit for large amount of damages in nevada state court .\nmanchester united beat manchester city 4-2 at old trafford on sunday . gary neville praised united 's recent performances against big clubs . he said ` that was a proper performance they 've put in out there today ' niall quinn said it was united 's best performance since sir alex ferguson .\nraheem sterling has been videoed allegedly inhaling nitrous oxide . young liverpool star was pictured on sunday puffing on a shisha pipe . the 20-year-old scored in liverpool 's 2-0 win over newcastle united . brendan rodgers said he will remind his player about his responsibilities .\nronnie o'sullivan beats craig steadman 10-3 at the crucible . the five-time world champion was 7-2 ahead overnight . o'sullivan won the final three frames he required on wednesday morning . the 39-year-old was forced to change his shoes on tuesday .\nmohammed emwazi wanted to join al-shabaab in somalia , source claims . stopped in 2009 after flying to africa and was put on flight back home . source claims he intended to go back , but did not after friends were killed . bilal al-berjawi and mohammed sakr died during drone strikes in 2012 . the same year emwazi travelled to syria where he joined islamic state .\ngeorgia powers : rand paul , running for president , would like minorities to think he 's an advocate . his record on rights shows otherwise . on civil rights , women 's choice , voting rights , immigrant dreamers , education , he has shown he 'd take country backwards , she says .\ntony pulis says jeremy peace will only sell club to right person . west brom are available for # 150m as long as a suitable buyer is found . pulis ' relegation-threatened side face rivals leicester at the hawthorns . click here for all the latest west brom news .\ndanielle jones ' bridesmaids started campaign to get barlow at her wedding . he replied saying he would come - but kept it secret from the 33-year-old . singer turned up at reception in berkshire and sung ' a million love songs ' mrs jones said : ` i 'm still on cloud nine - i just ca n't believe it happened '\ndr. ayse giray first sued hamdi ulukaya in 2012 on claims her family lent him $ 500,000 that helped him build the yogurt empire .\n`` monty python and the holy grail '' celebrates 40 years thursday . the 1975 film is considered a comedy classic . troupe made three movies together , not including concert works and compilations .\nmarc macrae says the snp ditched him when he fell ill with prostate cancer . he was election agent for party 's westminster leader angus robertson . claims snp questioned commitment while he was fighting illness in 2013 . mr macrae is now backing the tories - and wants them to beat his old boss .\nyvonne camargo , of victorville , california , was arrested after she was identified from the video . the cameraman films camargo for more than a minute before she notices . he then asks what she 's doing but camargo does not respond . the cameraman said he started filming after seeing the woman ` pulling this kid by his hair ' out of a kohl 's .\npaul ceglia on the run from criminal charges he falsely claimed ownership . his family accused facebook and prosecutors of conspiring against him . judge said mark zuckerberg has two days to hand over all relevant emails . the order ignores zuckerberg 's request to wait until ceglia is found .\nmicrocon 2015 is the first north american gathering of micronations . places like molossia , westarctica and vikesland will be in attendance . one country is the size of a football field , another is as large as alaska . they print their own stamps , wave their own flags , and mint their own money . but most of their citizens do n't actually live on the land .\nross barkley impressed during england 's 1-1 draw against italy . roberto martinez hopes barkley can kick on for everton . everton face premier league clash against southampton on saturday .\njason lee , 38 , was arrested in august 2013 after a woman accused him of attacking her at the home he and his wife rented in east hampton . lee invited the woman , her brother and friends back to the house after they met at trendy restaurant . he allegedly forced his way into the bathroom while the girl was inside , then undressed and pinned her to the floor . he was found by police allegedly hiding in a car with tinted windows in his driveway . lee walked hand in hand into court with his wife for trial on wednesday .\nmedical incident officer sent to help at worcestershire royal hospital . came as staff were forced to treat some patients in the hospital 's corridors . nhs trust that runs the hospital admits circumstances are ` less than ideal ' . said they are ` working very hard ' to prevent a similar incident again .\nmen were in canada playing a hockey tournament with canadian forces . alleged sex attack took place at military base in nova scotia . sailors are being held and are due back in court on monday .\nthe crash occurred at the exotic driving experience at walt disney world speedway . officials say the driver , 24-year-old tavon watson , lost control of a lamborghini . passenger gary terry , 36 , died at the scene .\ndrew hollinshead , 21 , stopped as he thought an elderly woman was dying . he pulled over in a space reserved for disabled people and ran to help her . but as he tended to pensioner a warden slapped a ticket on his windscreen . bournemouth council say appeals procedure is available to mr hollinshead .\njames tomkins underwent surgery on a dislocated shoulder last month . defender tomkins picked up the freak injury during a gym session . surgery went well and the 26-year-old is closing in on a return to action . however , tomkins accepted it may be too late to feature again this season . click here for all the latest west ham news .\nsteve esmond , his wife theresa divine and their two teenage sons fell seriously ill while staying at the sirenusa resort in st. john . divine was released from hospital and is now in occupational therapy . the family 's lawyer said the boys are in ` rough shape ' . on friday the us environmental protection agency said preliminary tests showed there was ' a presence of methyl bromide in the unit .\ngreek government has proposed a law to crack down on crowd violence . fifa and uefa have strict rules to protect federations ' independence . greek minister claims football 's governing bodies are ` not interested in solving the evils plaguing greek football ' . matches in greece to be suspended three times this season due to unrest .\nlionel messi , luis suarez and neymar have scored 93 goals this season . messi , thierry henry and samuel eto'o scored 100 goals in 2008-09 season . the trio will attempt to steer barcelona into champions league semi-final . luis enrique 's side hold a 3-1 advantage from the quarter-final first leg . read : messi has a place at barca until he retires , claims club president .\nsarah harding and denise van outen are the latest big-name signings to agree to contracts with british soap operas . they join a long line of stars who 've looked to soaps to boost their careers . barbara windsor , patsy kensit and danny dyer all saw their profiles rise after taking to the small screen .\nthe plot focuses on a rogue mission to steal plans for death star . felicity jones will star as a rebel soldier .\nohio court hears that ryan poston was supposed to meet audrey bolte the night he was shot dead . shayna hubers , shot dead lawyer ryan poston in 2012 . she claims it was in self-defense but the prosecution claims it was murder . hubers , then 21 , told police she shot poston in the face and then fired again to put him out of his misery .\nleonie granger , 25 , has been jailed for 16 years for luring gambler to death . convinced mehmet hassan , 56 , she was interested in him at mayfair casino . went to his flat and let in boyfriend kyrron jackson and nicholas chandler . they kicked mr hassan to death and stole some of his gambling winnings . granger convicted of manslaughter and two men found guilty of murder . judge william kennedy today described the attack as ` pitiless and wicked '\nphotos obtained by daily mail online show surgeon to the stars dr brandt , who hanged himself in miami on sunday , the year he graduated from his new jersey high school . they are in sharp contrast to the razor sharp cheek bones , sunken eyes and platinum blond hair of the well-known dermatologist . dr. brandt was mercilessly lampooned in tina fey 's netflix show . he was a ` jewish kid from newark ' who was described as ` scholarly ' with an infectious grin by his peers . he was voted most ambitious and most talkative student .\nted cruz and ben carson want the charity to return every dollar its received from foreign governments since its launch in 2001 . bum rush came about after a report cast a new shadow over the charity 's fundraising practices while hillary clinton was the country 's chief diplomat . cruz said : ` having raised tens of millions of dollars from foreign nations presents a clear conflict of interest for anyone running for president ' carson said they ` should they definitely give back the money and cease accepting foreign donations , but should also make every effort to find missing documents that would shed light if in fact they are innocent ' carly fiorina said , ` it 's the clinton way : raking in millions from foreign governments behind closed doors while making promises about transparency that they never intended to keep '\ndontrell stephens was paralyzed from waist down after the 2013 shooting . shot by palm beach county sheriff 's office deputy adam lin in florida . then-20-year-old had nothing in his hand but a cellphone during incident . state officials ruled the shooting was justified after an investigation . lin returned to work just four days after the south florida shooting . 114 people shot at by a palm beach county sheriff 's deputy since 2000 .\nchelsea sealed a 1-0 victory against manchester united at stamford bridge . eden hazard struck in the 38th minute after a storming run into the box . john terry marshalled the chelsea defensive line superbly . wayne rooney 's midfield role blunted his influence . radamel falcao struggled to cope with terry all afternoon .\njordan henderson struggled being played as a wing back for liverpool . john o'shea captained sunderland to a crucial 1-0 win over newcastle . loic remy got a fifth premier league goal in only 456 minutes this season .\nu.n. agency says 900 refugees from yemen have arrived in horn of africa , asks ships in area to be vigilant . who : at least 643 people have been killed , more than 2,000 injured in three weeks . unicef : aid includes medical supplies for up to 80,000 people and more airlifts are planned .\nsulforaphane known to block inflammation and damage to the cartilage . people would have to eat several pounds daily to derive significant benefit . drug company evgen pharma has developed synthetic version of chemical .\nmichael vaughan in the frame to replace paul downton . former england captain has a chequered past with peter moores . moores insists there are no personal issues between he and vaughan . downton was sacked as managing director of england cricket .\nharry redknapp made his pitchside return at arsenal vs liverpool . former tottenham boss was a pundit for live broadcast on bt sport .\nchildren as young as seven can take part in bull riding competitions . youngest children ride calves before graduating to bullocks then bulls . between four and six , they hone their skills by ` mutton busting ' on sheep . bull riding is thought to be one of the most dangerous sports in the world . an estimated one in every 15 bull rides ends in some sort of injury . unreported world , tonight at 7.30 pm on channel 4 .\nthe psa spoof highlights a series of shocking statistics about the number of women working within the movie industry . on broadway last year , '13 out of 13 ' plays were written by men , while 88 per cent of hit movies in 2014 starred men . the satirical video , which says it 's ` only fair ' that men ` have it all ' includes appearances from other actresses including mamie gummer . in the clip , the women also point out several other areas in which men remain the dominant gender .\nmyer to make way for new overseas collections with unprecedented sale . balmain , dkny , pucci and alexander mcqueen all to be slashed in price . the new strategy will compete with online retailers . the sale will knock 65 to 75 per cent off handbags , shoes and accessories .\njamie robbins raided a select 'n' save shop in birmingham last january . case was not solved until he walked into a police station and confessed . 35-year-old was sentenced to four-and-a-half years on thursday .\nsonia sharrock 's stud farm near maitland , in the hunter region of new south wales , was badly flooded . the water rose rapidly and the horses became tangled in barbed wire when the could n't see the fences . her brother-in-law steve spowart decided to paddle out on his surfboard to rescue them . he plunged down into the freezing flood water to cut them free from the barbed wire . it took six hours in total to bring the horses up to the safety of ms sharrock 's hilltop garden . maitland was one of the areas hardest hit in the state by what 's being called the storm of the decade .\nhundreds of patrons at resort world casino started brawling friday night . fists , metal poles and chairs flew as gangs tore around the premises . fight reportedly broke out at 10.30 pm after two women clashed in a lineq . three people were arrested in the aftermath of the brawl .\nsean donohoe , 30 , from wilnecote , tamworth , befriended woman in 2007 . he took over her finances , applied for credit cards and ran up huge debts . he made her change her will , secretly took out life insurance policies and abused her trust ` in every conceivable way ' donohoe , who admitted theft and fraud , has now been jailed for 21 months .\nup to 21 million acres of jungle will be torn down in the next decade alone . university of east anglia research says forest species at risk from industry . rising demand for rubber tyres for cars and planes driving deforestation .\nrelegation strugglers leicester city took the lead in the first half thanks to footballing legend esteban cambiasso . nigel pearson 's side had the chance to double their lead three minutes later when the hosts were awarded a penalty . however , foxes striker david nugent failed to convert the penalty as spanish goalkeeper adrian saved smartly . west ham united equalised with 32 minutes gone when senegalese international cheikhou kouyate found the net . bot sides hit the post in the second half but it was leicester city who earned a vital win thanks to andy king .\nthe couple are reportedly renewing their wedding vows in the french capital . kim kardashian shared pictures from the baptism of her daughter north , held at saint james cathedral in jerusalem 's old city . the 12th century church sits within the armenian quarter of the old city , the reputed site of the crucifixion of jesus christ . khloe kardashian is godmother , while a priest acted as north 's godfather . north wore white baptismal gown in keeping with traditionthe youngster is now a christian and a member of the armenian church .\nboth chelsea and manchester city are keen on signing nathan . the attacking midfielder has been in contract dispute with his current club . nathan is due to speak to chelsea next week ahead of proposed move .\nandrea pirlo scored a stunning free-kick for juventus against torino . however , juve fell to a 2-1 defeat and missed the chance to wrap up their fourth consecutive serie a title . despite the loss , juve remain 14 points clear at the top of the league table . pirlo is still playing at the top of his game at 35-years-old .\nbroke down during los angeles concert as he talked about his daughter bobbi kristin , who has been in a coma since january 31 . in the middle of his set in front of 4,000 people , he offered a pitch for his line of bbq sauces .\nmaxine fohounhedo , 30 , was charged in december with kidnapping and raping a female passenger who ordered an uberx ride . woman , 22 , told police she was intoxicated during the ride and alleged she woke up in fohounhedo 's apartment and found him having sex with her . fohounhedo 's attorney said the woman made a pass at the driver when he picked her up and they ` went back to his place ' . ` whatever happened there did not arise to anything criminal , ' he said . attorney said the nine-minute recording shows woman having a friendly conversation with fohounhedo as he drove her home . fohounhedo was released from jail on monday night .\nlee judson had gone to ann malsbury 's home to collect his belongings . they had broken up after 18-month relationship , leaving her ` distressed ' . malsbury jumped on his back and wrapped ipod cable around his neck . 22-year-old chef from coventry avoids jail but receives community order .\na passenger caught a driver reading the paper on a bus in auckland , nz . he sent the video to bus company ritchies coachlines with a complaint . his boss said he was embarrassed by the ` idiot ' driver 's actions .\nchris ramsey says he 's ` really happy ' at qpr and plans to stay long-term . the 52-year-old was handed the reins until the end of the season . the former right back wants to show loyalty to his current employers . les ferdinand believes he is the man for the job , according to ramsey . ramsey has been linked with a reunion with tim sherwood at aston villa . click here for all the latest queens park rangers news .\nthe prodigious pumpkins were transported to the zoo on wednesday . one 728kg pumpkin was the biggest to ever grace the easter show . the asian elephant herd were quick to pounce on the novelty breakfast . the zoo introduces new foods to challenge and stimulate their animals .\ndoug gregory flew beaufighters and mosquitoes in the second world war . the war hero survived 67 missions flying over nazi-controlled europe . he later became britain 's oldest stunt pilot and only retired two years ago . no-one has been arrested or charged in connection with the hit-and-run .\nayaan hirsi ali has championed the u.s. as the best country in the world to live as a woman and as a black person . ` is it perfect ? no . are we confronted with threats ? yes . but it 's the perfect place to fight -lsb- them -rsb- off , ' she said . a liberal , she has accused fellow liberals of failing to have a proper sense of perspective about life in the u.s. and for not being more critical of islam . hirsi ali was raised in a strict muslim family , but after genital mutilation , beatings and an arranged marriage , she renounced the faith in her 30s .\ncompany behind ashy bines bikini body challenge is being chased by tax office for an unpaid $ 300,000 tax debt . debts include income and tax , a fine and $ 295,955 worth of interest . face of the company is online fitness and diet queen ashy bines . ms bines and husband steven evans sold their shares in company . mr evans is currently being sued by rival fitness guru emily anderson .\na family brunch with tori spelling , dean mcdermott and their four kids turned into a disaster . tori 's heel caught as she was walking out of benihana restaurant in encino and she fell backward onto a hot hibachi . she was later taken to the grossman burn center at west hill hospital . doctors said she risked severe infection and scarring if she did n't act right away .\nkinessa johnson served four years as a weapons instructor and mechanic . now she works for veterans empowered to protect african wildlife . patrols with park rangers and assists in intelligence operations . insists she is not a ` poacher hunter ' , and only catches and detains them .\narjen robben has missed his side 's last three games through injury . the bayern munich winger is expected to miss match against porto . robben has said it ` is the worst situation for a footballer ' to be in .\nfootage of a brawl involving 70 teenagers has been released . the fight happened on tuesday outside a community centre in brisbane . owners were told that 30 people were attending but more than 200 arrived . the violent fray was captured by police helicopter footage . four people have been arrested over the incident and will appear in court .\n` extremely rich ' german woman 's taxi was stuck in traffic as thieves struck . they smashed rear window of vehicle before running away with handbag . the victim says one of the stolen rings was worth close to # 1million alone . claimed she was on her way to loan some of the items to museum in paris .\ncruz is personally against the legalization of marijuana but believes states have the right to put decriminalization laws on the books if they want . implied he would n't make his ag enforce federal pot laws in states that have approved sales - even though directly conflict with federal law . stands in contrast to the views of at least three of his gop competitors who said they 'd lay the hammer down on colorado and washington .\nreferee for the fight in las vegas will earn $ 10,000 -lrb- # 6,800 -rrb- fight is expected to earn around $ 400m -lrb- # 273m -rrb- in revenue . kenny bayless and tony weeks are leading candidates to referee .\nduchess of cambridge is due to give birth at st mary 's hospital , london . a surgical unit has been closed after patients contracted mutant superbug . bacteria , cpe , can cause potentially-fatal infections in blood and urine .\nlorna mccarthy was fatally stabbed through the heart last september . ex-husband barry mccarthy attacked her in the norfolk home they shared . mrs mccarthy had previously sent texts saying she feared for her life . mccarthy , 51 , was found guilty of murder at norwich crown court today .\nuefa have confirmed a significant hike in champions league prize money . celtic could earn # 16million just from competing in the group stages . manager ronny deila is eager to secure a fourth straight title for celtic .\ncara lee-fanus died day after being rushed to hospital in churtsey , surrey . medics found bruises all over her body and burn marks on head , court told . mother kirsty lee and lee 's ex boyfriend alistair wayne bowen appeared in court today . jointly charged with causing or allowing death of a child and causing or allowing serious physical harm to a child .\nshannen hussein lives on a farm in rockbank , north-west of melbourne . she has cats , dogs , birds , sheep , snakes , scorpions and many more pets . the 21-year-old 's animals shot to fame when one of her vines went viral . it was shared by celebrities like taylor swift and ellen degeneres .\ndr habeeb latheef is accused of sexually assaulting three of his patients . assaults allegedly happened at hendford medical centre in yeovil . one woman patient , 37 , went to see gp with a stiff neck and headache .\ni 'm up alarm is designed to help those who have trouble getting out of bed . alarm will sound at a preset time and continue until a qr code is scanned . app is expected to be available on apple and android phones from june .\nabby swinfield , 18 , collapsed in early hours of march 30 at a house party . taken to hospital where she was placed in coma but died a week later . mother kay said teen had two heart attacks before dying of organ failure . police are investigating and have arrested girl , 20 , for supplying drugs .\ntoddler filmed beating her chest at the silverback at a nebraska zoo . gorilla then takes a run at the glass - and hits it with such force it cracks . the footage captures the terrified family running for their lives . video of thursday 's incident has got 126,000 views since it was uploaded .\nnew approach targets cancer stem cells that evade conventional treatment . the cells cause tumours to re-grow , causing secondary breast cancer . treatment combines sulforadex with standard hormonal treatments .\nashley shupe says kaiden tried choking himself and jumping from a height . he ` has been diagnosed with depression after two years of bullying ' shupe filed police report after latest ` attack ' left him kaiden bruised face . in a lawsuit against the school she says they failed to protect her son .\nnasa is on track to launch the james webb telescope in three years . telescope will be able to see back to 200 million years after the big bang . it will be 100 times more powerful than hubble with mirrors 3 times larger . astronomers hope the telescope will help further the search for alien life .\nmargaret gretton , 46 , has been barred indefinitely from the profession . she was headteacher of burton joyce primary school in nottingham . she talked of ` bombs and blowing up the school ' in an asian accent . disciplinary panel concluded she ` exhibited clear intolerance on the grounds of race , as well as disability '\ngloriavale is a christian sect of around 500 new zealanders . all residents wears blue uniforms and there is no birth control . closed off from the outside world , it has come under scrutiny recently . several former members have come forward with abuse , bullying allegations . the incidents were rare but several have occurred . one former member tells daily mail australia female victims cop the blame . ` they 're called s *** s and w **** s , ' she said . ` some think 13 year old girls are ready to have babies ' , another told stuff.co.nz .\njack wilshere played full 90 minutes as arsenal under 21s beat stoke 4-1 . midfielder is targeting return after recovering from ankle injury . england international has been on the sidelines since november . he believes he can play a part in arsenal 's season-defining games . wilshere is on manchester city 's summer shopping list .\ncrashed porsche 911 into builder 's lorry on traffic queues in nottingham . traffic was built up because of road closure after nearby cycling accident . onlooker said driver ` looked absolutely distraught ' after collision with lorry .\nfrancis coquelin defends arsenal striker olivier giroud after criticism . thierry henry believes arsenal need a ` top quality ' striker . coquelin insists the gunners ` can win titles ' with giroud in the side . french striker has scored 14 premier league goals this season . giroud : i get p ***** about everyone talking about my hair and not my goals .\ndustin smith , a 21-year-old gay man in bismarck , received messages and explicit photos from user going by top man ! on grindr . smith realized that user was staunch state conservative randy boehning after reading of the lawmaker 's vote against a gay rights bill this month . smith went to the press and boehning soon admitted he uses the gay app -- but the 52-year-old says its part of a rival 's smear campaign .\nlist is dominated by european nations - particularly those in scandinavia . switzerland is now the happiest nation , with iceland the most rapid riser . reasons range from strong gdp to beautiful scenery and a vibrant culture . uk ranks at a lowly 21 , although brits are happier now than back in 2012 . world 's least happy nations are unsurprisingly places ravaged by war and extreme poverty , such as syria , burundi and togo .\njan bearman surprised her family and decided to get her first tattoo at the age of 80 after her daughter shelley died in 2011 . she has returned to the tattoo parlour twice on her birthday to have more tattoos inked in memory of her daughter and other children . abc2 's tattoo tales followed jan as she went in for her third tattoo . jan said that she feels as though her tattoos are a memorial , and she is able to carry her daughter with her .\nthe quadruplet male cubs were let out into their glass cages for the first time recently at the tobu zoo in tokyo . however , curiosity soon got the better of the cats and one accidentally fell into the play pool . his brothers quickly came to the rescue after noticing he was in trouble .\nkevin de bruyne has been linked with a transfer away from wolfsburg . his agent patrick de koster says that clubs are watching the belgian but denies a deal is in place with any team to buy the talented playmaker . de bruyne has starred for the german side this season in the bundesliga .\ncaykur rizespor lost to fenerbahce in the turkish super lig on saturday . rizespor midfielder ludovic obraniak was substituted after just 30 minutes . obraniak was taken to hospital for tests on suspected heart problem . former lille player was reported to be in a stable condition .\nmadison small woke up feeling ill on monday night so was rushed to hospital , but her organs began shutting down and she died on tuesday . the health department confirmed on friday that she died of meningococcal meningitis - the school district 's first case in two years . the health department does not believe any one else is at risk but is monitoring people who came into close contact with her just in case .\nthe business mogul was speaking to dailymail.com ceo jon steinberg . he insisted it 's time that colleges cut out expensive middle management . with his wife suzy welch he is dedicated to changing business education .\ninvestigation shows colleagues expressed concerns about robert bates . probe reveals he was not given special treatment during his application . however report in 2009 says he was once he was employed in tulsa . supervisors allegedly intimated colleagues to benefit bates . he has been charged with second-degree manslaughter in relation to the death of eric harris in tulsa , oklahoma , on april 2 . district attorney steve kunzweiler has begun contacting outside law enforcement agencies for further investigation .\nreality tv star said mr miliband ` definitely ' topped her list of politicians . she was asked who she would pick in a game of ` snog , marry or avoid ' bright said mr miliband was ` good looking ' and had ` good dress sense ' it comes after the labour leader became an unlikely pin-up for teen girls . thousands of teenagers took to twitter claiming to be ` milifans '\nella parry took the pills on april 12 and began to feel unwell hours later . her metabolism began to soar , her body overheated and she died . her mother has now issued a stark warning about buying diet pills online . tablets contained highly-toxic substance known as dinitrophenol , or dnp .\nthe illusion is the work of german body-painting artist joerg duesterwald , who spent hours painting his model . stunning set of pictures was taken in front of a rockface in a forest in langenfeld , germany , yesterday .\nschoolboy bradley parkes , 16 , discovered hanging in woods in coventry . sophie wilson , 17 , performed cpr on the teen after raising the alarm . bradley 's mother said he had been bullied and terrorised by gang . says her son is now out of coma and thanked the girls who found him .\nmanchester united beat aston villa 3-1 in the premier league on saturday . manchester city lost 2-1 at crystal palace on monday night . result means united sit one point ahead of city with seven games left . two sides meet in the manchester derby at old trafford on sunday . click here for all the latest manchester united news .\nashley is now starring in lane bryant 's i 'm no angel campaign . she also has her own line of plus-size lingerie . the 27-year-old admitted that her first ever professional job was as an underwear model .\nretiring jockey ap mccoy has vowed to never return to professional riding . the 40-year-old rider said : ` shoot me if i ride professionally again ' olympian sir steve redgrave said similar phrase when he retired . but , redgrave returned to claim olympic gold four years later in sydney .\nphilip garrod caught while on way to work with welsh ambulance service . pleaded guilty to offence but asked for special consideration to avoid ban . claimed he was rushing to see injured cyclist after message from colleague . falsified patient document for fake cyclist injury on the a470 at dolgellau . rumbled after bosses checked 999 calls and found none matching the claim .\nlouise nesbitt was employed as an office bookkeeper at a perth company . she mistakenly sent a text message to boss calling him ' a complete d *** ' . it was sent on january 12 last year and she was fired for gross misconduct . the long-time employee claims it was meant to be a ` light-hearted insult ' but the fair work commission ruled against her , saying text was ` hurtful '\ndikembe mutombo was an eight-times nba all-star famous for swatting away opponents ' shots and wagging his finger at them . he has been elected to the naismith memorial basketball hall of fame . mutombo played in the nba from 1991 until 2009 , and mostly spent his 18 seasons with denver , atlanta and houston .\nporto 3-1 bayern munich : click here to read ian ladyman 's match report . pep guardiola 's side were beaten in the champions league quarter-final . the bayern manager remains first choice to replace manuel pellegrini . jurgen klopp confirms he will leave borussia dortmund in the summer .\nrichie benaud has died at the age of 84 after a short battle with skin cancer . benaud captained australia as a player before going into broadcasting . his commentary style became globally synonymous with cricket . click here for benaud tributes as the cricket world mourns his death .\nchris greenwood travelled with his family to argeles-sur-mer , france . it offers water slides and a heated pool with a retractable roof . port of collioure , located nearby , has a beach perfect for swimming .\nlabour plans to change rules that allow foreigners to lower their tax bills . non-doms only pay tax on their uk income , not earnings from overseas . estate agents claim non-doms are selling up and deals are falling through .\nmemories pizza , in walkerton , indiana , has reportedly closed its doors . move comes days after owners said they would not cater gay weddings . restaurant 's webpage was attacked and owners received abusive calls . but supporters have donated $ 440,000 to the eatery via fundraising page .\nchad pregracke was the 2013 cnn hero of the year . mike rowe visited pregracke for an episode of `` somebody 's got ta do it ''\ncarlo ancelotti will make a decision on gareth bale 's fitness . the welshman injured his left foot during real madrid 's training session . los blancos take on rayo vallecano on wednesday , kick-off at 9pm . midfielder isco is likely to replace bale if he is unable to play .\nhead of coffee at pact coffee will corby recommends the best pairings . have a crumbly , hard cheese like lancashire with your irish coffee . a delicately spiced pastry will let you detect light espresso flavour in latte .\nsnp 's nicola sturgeon looked glamorous as she arrived at bbc yesterday . nationalist wore fuchsia dress that flattered her slimmed-down physique . miss sturgeon has left her boxy jackets and severe suits in the past . she is rumoured to have hired a personal shopper and a stylist in 2007 .\ncolin mcinerney , 28 , was allegedly beaten outside darwin mcdonald 's . he says he gestured at family on friday night thinking they were his friends . colin pulled up at mcdonald 's drive-through before the other driver got out and allegedly started bashing him . windscreen wipers and bottles were allegedly used to beat him . police say the two vehicles pulled up at traffic lights and 35-year-old man took offence to colin 's gesture . colin , the 35-year-old man and his 36-year-old female companion were all arrested over the incident but later released without charge .\nraheem sterling could leave liverpool in the summer transfer window . arsenal and manchester city are both interested in signing him . chelsea could make a big money move if sterling becomes available . bayern munich boss pep guardiola is believed to be an admirer .\naaron hernandez will serve life in souza-baranowski correctional center outside boston . souza opened in 1998 and is one of the most high-tech jails in the united states . it 's also `` dangerous , '' `` sterile '' and `` violent , '' a legal advocate for inmates says .\napple launches its first smartwatch today - but its stores will not stock it . online consumers must shell out # 300 and then wait for a june delivery . analysts believe apple feared queues may have been embarrassingly small . however , it is believed apple is sitting on some two million pre-orders .\nlib dem leader explains how his party would eradicate deficit by 2017-18 . includes tax rises , limiting welfare rises and whitehall spending cuts . but warns osborne 's plan to cut # 12billion will cause ` real pain ' . mansion tax scaled back by # 700million but car tax to rise by # 25-a-year .\nharry kane has been in superb form for tottenham this season . the 21-year-old has scored 30 goals in all competitions for spurs . kane also made his england debut , and scored within two minutes .\nevent will be held at tesla 's california studio on april 30 at 8pm pt . battery is likely to build on the packs used in tesla 's electric cars . while similar products already exist , elon musk has said they ` suck ' . toyota already uses a fuel cell in its mirai car that can power a home .\nford unveiled its gt earlier this year to the surprise of industry experts . the supercar has 600 horsepower , up-swinging doors and a rear engine . its design was showcased in a light installation at milan 's piazza de fidele . it comes as bosses say autonomous car is '10 per cent ' from complete .\njeffrey klein apologizes for tweet with search for susan del percio . state senator said that newly hired female staffer accidentally sent it . experienced strategist del percio said that incident was ` silly mistake ' .\naustralian radio host stands up for women going through ivf treatment . mel started her own ivf treatment and was showing solidarity with others . she uploaded photographs of injecting herself for the first time on her blog . ' i joined a new club ... it 's the ivf baby club , ' the 33-year-old said . she married her fiancé steven pollack at byron bay in november .\nkejonuma leisure land in tohoku , japan , attracted 200,000 visitors per year in its heyday . now , the abandoned site , which is believed to be cursed , has become a tourist attraction in its own right . photographer florian seidel visited the creepy location to photograph the park 's ongoing dereliction .\nbeckhams are spending # 5m on renovations on west london mansion . property will have gym , wine cellar and rooms for manicures and make-up . neighbour unhappy air-con plans ` will damage historic character ' of street . council sided with beckhams in row and approved planning application .\nsean dyche says danny ings needs to smile and the goals will come . the 23-year-old , who is heavily linked with manchester united , has n't found the net in seven appearances for the premier league strugglers . dyche believes it 's only a matter of time before he does break his duck . click here for all the latest burnley news .\njeff powell looks ahead to saturday 's fight at the mgm grand . floyd mayweather takes on manny pacquiao in $ 300m showdown . both fighters arrived in las vegas on tuesday with public appearances . read : mayweather makes official arrival ahead of manny pacquiao fight . al haymon : the man behind mayweather who is revolutionising boxing . mayweather vs pacquiao takes centre stage ... but who 's on the undercard ? .\ncar plunged off a road into los angeles harbor on thursday . the parents swam to the surface but the two boys were trapped . both died were pronounced dead in hospital . the adults are in a fair condition . police are investigating whether the crash was intentional . the victims have not been identified . firefighter miguel meza who dove into the water has been hailed a hero .\nmanny pacquiao 's conference call with boxing writers was cancelled . question and answer session had to be postponed due to technical issues . pacquiao responded to one question in what was supposed to be his last media event before travelling to las vegas for may 2 fight .\nsteve esmond , his wife theresa divine and their two teenage sons fell seriously ill while staying at the sirenusa resort in st. john . divine was released from hospital and is now in occupational therapy . the family 's lawyer said the boys are in ` rough shape ' . on friday the us environmental protection agency said preliminary tests showed there was ' a presence of methyl bromide in the unit .\nbarbara beam died in the home she shared with her sister and nephew in greenville , south carolina in january . a coroner ruled that she died from homicide by neglect and prosecutors are now deciding whether to charge her family members . her sister told officers that she had not been moved from her bedroom chair for six months , and beam had sores over her legs . when paramedics removed her from the chair and put her body on the ground , her legs stayed bent in a sitting position , police said .\ndoug hughes , 61 , steered his small gyrocopter through protected washington airspace for 30 miles to the u.s. capitol . rep. jason chaffetz said hughes ` should have been blown out of the air ' chaffetz said security tracked hughes as he approached the capitol last week after taking off from gettysburg , pennsylvania . a ` judgment call ' was made not to shoot hughes down , chaffetz said . rep. elijah cummings said officials were concerned about injuring people on the ground if an attempt was made to shoot down hughes . hughes landed the gyrocopter on the west lawn . he was charged with two federal crimes , violating restricted airspace and operating an unregistered aircraft .\na young man has died after he was stabbed during a violent brawl . greg gibbins and his friends were at a central coast hotel on sunday night . the 28-year-old was stabbed and killed outside a pizza store on monday . his 25-year-old friend was also attacked when he tried to help mr gibbins . he remains in a serious condition and is expected to undergo surgery . the offender fled the scene and police have n't found a weapon . investigations are continuing and police are appealing for any witnesses .\nclosing arguments in the case are set for tuesday . aaron hernandez is charged with first-degree murder in the killing of odin lloyd . his defense lawyers made their case on monday .\nman , 36 , arrested on suspicion of conspiracy to murder abdul hadi arwani . syrian imam was found shot dead in his car on a street in wembley . leslie cooper , 36 , has already appeared in court accused of murder . burnell mitchell , 61 , and a 53-year-old woman were also arrested on suspicion of terror offences .\nset in a remote valley , the shire of montana is located about 100 miles south of the us-canada border . it is built into a hill on a 20-acre property which boasts decorative hobbit homes , fairy doors and a troll house . there is no mobile phone service as the 1,000 square foot guest house is located entirely underground .\nfa chairman greg dyke wants to increase the minimum homegrown players in a premier league squad of 25 from eight to 12 . arsenal manager arsene wenger has criticised the proposal . wenger has had his fair share of dud buys for the gunners . perhaps he should pay attention to building a core of homegrown players . click here for the latest premier league news .\nmehmet oz is on staff at columbia 's college of physicians and surgeons . dr oz is the vice chairman and professor of surgery at the medical school . group of ten top doctors sent letter to school urging for oz 's dismissal . said there 's no scientific proof his ` miracle ' weight-loss supplements work . columbia said it ` is committed to the principle of academic freedom ' university has not removed tv celebrity doctor from his faculty position .\nswiss researchers carried out an experiment to make artificial ` ghosts ' the sensation was re-created by researchers using a robot to interfere with the sensory signals in the brains of blindfolded volunteers .\nseveral arabic pages reportedly found on the social media site . pages claim to offer ` comfortable ' and ` reliable ' passage for around $ 1,000 . comes after the deaths of some 1,700 refugees in the last week alone . facebook removed the pages after being alerted to there existance .\nmost modern phone models have batteries that only last a couple of hours . problem is n't batteries , but amount of tasks mobiles are expected to do . battery life can be improved by turning off bluetooth , sounds and gps .\nthe greek island was the ` sex tourism capital of the ancient aegean ' former apprentice tv star margaret mountford will describe life on the island in a new television programme . show also examines life and legacy of the female poet sappho , who lived on the island around 600bc .\nraheem sterling was filmed inhaling laughing gas less than two weeks ago . saido berahino was another england starlet filmed inhaling ` hippy crack ' jack grealish inspired aston villa to their fa cup semi-final win on sunday . the 19-year-old has seemingly been caught inhaling from a balloon .\nauthorities searching for other potential victims of william ` frankie ' dugan , 29 , and 32-year-old valerie ojo .\ngoogle introduced face unlock in android 4.0 ice cream sandwich . now rolling out new voice unlock feature to users . it acts as an alternative to screen locks involving a pattern or a pin .\njihadis entered the camp through the nearby hajar aswad neighborhood . al qaeda-linked rebels reportedly opened a closed road for isis militants . once inside extremists battled a palestinian group who run the camp . terrorists seized control of the majority of the refugee camp , which they are now likely to use as a base from which to assad .\nhouses and shops have been left deserted as resident try to escape the worsening violence . months of isis pressure has left iraqi forces outnumbered inside the city . us forces previously waged a eight year battle against insurgents in ramadi and fallujah .\ncharity campaign aimed at ` women of all different shapes and sizes ' for the first time ever the models featured range from a size 10 to 20 . m&s , debenhams and laura ashley have all designed charity collections . kate moss and naomi campbell have starred in previous years ' shoots .\navalanche of appellate rulings have struck down state bans on same-sex marriage . judge jeffrey sutton is behind only recent appellate decision to uphold such state bans . `` judge sutton 's opinion stands alone , '' says official with gay rights advocacy group .\nengland begin their world cup campaign against fiji on september 18 . stuart lancaster 's side will also face australia and wales in pool a. england will play final pool game against uruguay at the etihad stadium . lancaster must name his 31-man world cup squad before august 31 .\nzhou yongkang most senior politician to face court since mao 's widow . he is the highest-level official charged in anti-corruption campaign . destroys any chance him rivalling the party leadership .\nthe everglades were drained a century ago and are now being restored . `` the wonder list '' season finale takes places in the everglades .\ntim sherwood has had an instant impact since taking over at aston villa . the 46-year-old has won five out his ten games in charge at the club . sherwood led villa to a 2-1 win over liverpool in the fa cup semi-final . sportsmail looks into the five key reasons behind his immediate success . click here for all the latest aston villa news .\ninjured chelsea striker diego costa is expected to be out for two weeks . he could return in time to face arsenal in the premier league run-in . spain striker limped off just 11 minutes into appearance against stoke city .\nprincess , 25 , spotted in sports luxe outfit in new york with a friend . cousin of princes william and harry is working at auction house in city . celebrated her 25th birthday at the end of last month .\nfabian delph and jack grealish impressed for aston villa at wembley . villa captain delph scored to send tim sherwood 's men to fa cup final . grealish is a similar player to former england star steve mcmanaman . villa boss tim sherwood has got the club 's passion and excitement back . leicester look the most likely of the promoted clubs to stay up . the foxes have six games remaining , four of which are at home .\njoshua van haften , 34 , was apprehended by authorities on wednesday . landed at o'hare international airport following a return flight from turkey . allegedly posted on facebook he could n't cross the turkey-syria border . he claimed people just wanted his money and he was left on a road . was sentenced to eight years in prison for sexual assault in 2000 .\nolive fowler was caught by police at jfk airport on april 12 after taking a caribbean airlines flight from her hometown in guyana to new york . authorities said they spotted her ` sweating profusely ' and ` avoiding eye contact with officers ' so they decided to pull her aside to conduct a search . it 's estimated the drugs found in her panties have a street value of more than $ 73,000 . she now faces federal narcotics smuggling charges .\nmaya wang : 5 women held by china authorities after planning international women 's day protests on sex harassment remain detained . she says in a year when country poised to adopt anti-domestic violence law , beijing also sending chilling message on women 's activism .\nliverpool are set to play aston villa in fa cup semi-finals on april 19 . steven gerrard will leave anfield for la galaxy at end of the season . simon mignolet insists reds are not talking about a dream send off . read : gerrard 's fa cup dream on 35th birthday remains a reality . robbie fowler : liverpool fa cup hunt must not be all about gerrard .\nscientists in southern italy have known about him since 1993 . researchers worried that rescuing the bones would shatter them .\nin 2013 , anthony stokes ' family said a hospital refused him a heart due to his `` history of noncompliance '' hospital eventually gave stokes a heart ; on tuesday he carjacked someone , burglarized a home , police said . stokes shot at an elderly woman , hit a pedestrian with a stolen car and died in a police chase , authorities said .\napp is in development and will be trialled in wandsworth later this year . as customers scan items , a pricing tool will create a list with store prices . when the shopper enters the store , a map will appear showing the customer where each of their grocery items are located . if wandsworth trial is successful , app will be rolled out wider next year .\nsir frank kitson , 88 , accused in 1973 case of patrick eugene heenan , 47 . first time a retired senior officer has been personally sued over troubles . but sir frank claims he was not even serving in northern ireland at time . mr heenan died when paramilitaries threw grenade at bus carrying him .\nsteam engines draw crowds at the world 's busiest heritage railway as north yorkshire moors begins its spring gala . train enthusiasts will ride aboard seven trains between pickering and whitby over the course of the three day event . teams of firemen , fitters and cleaners prepared the steam engines this morning ahead of the family favourite gala .\neverton defender leighton baines plays the guitar and is a big music fan . he was less than impressed after listening to some of today 's pop tunes . baines admits he does n't know any one direction songs . england international is friends with rockers miles kane and alex turner .\nneymar : ` it will be a great game between two great teams with excellent players . that means it 'll be a real spectacle ' barcelona face psg in the french capital on april 15 . barca saw off manchester city in the champions league previously .\njordan sharifi , 17 , ` gave raymond howell , jr. , 14 , a gun and ammunition to protect himself from bullies but raymond used the gun to take his life ' . sharifi found his friend 's body in a rain culvert on thursday morning ` and threw the gun in a nearby drainage tunnel ' he was arrested by mckinney , texas police on friday and charged with theft of a firearm and making a firearm accessible to a child . raymond left him a note before he took his life , sharifi said . the school district says it has found no evidence that raymond or his family contacted them about bullying .\nhannah moore posted photos of her stretchmarks to instagram to inspire . the 20 year old suffered from marks after giving birth to twins last year . instagram then deleted hannah from broxburn , west lothian 's account .\nblood moon will be visible in the skies of north america , asia and australia . it 's the third blood moon in the ` tetrad ' that will end in september . red moons are predicted in the bible and signify important events . us pastor says strange event could predict the second coming .\nrichie benaud revealed late last year he was suffering from skin cancer . he had radiation treatment for lesions on his forehead and top of head . he used the chance to ` recommend to everyone they wear protection on their heads ' benaud had looked frail after suffering serious injuries in a 2013 car accident . after the crash and cancer treatment richie benaud was walking daily with wife daphne . he hope to get fit enough to return to the commentary box but never did .\nchristopher swist was on a break from a relationship with jessica mccarty when she allegedly killed her children in palm bay , florida , police say . lacey mccarty , seven , phillip mccarty , six , and swist 's son with mccarty , a five-month-old also named christopher swist , died in march . swist was close with the kids and coached the two oldest in little league . he 's created a non-profit for underprivileged kids in honor of the children . a little league baseball field in palm bay has been renamed ` angels ' field ' as a memorial for the slain kids . mccarty faces three counts of first-degree murder for the incident .\ndelroy facey is standing trial in birmingham over match-fixing allegations . the former premier league footballer denies conspiracy to commit bribery . facey formerly played for bolton , west brom and hull city . he stands trial alongside former non-league player moses swaibu , who also denies the charges .\npolice say the thieves gained entry through the building 's communal elevator shaft . police give no value of the amount taken in the heist in london 's jewelry district . there 's no evidence of forced entry to the building , police say .\n# a ** holeparents is a hashtag on instagram to expose ` flawed parenting ' parents posts pictures of their children crying with the hashtag . children are shown crying because they are being fed and cleaned . ' i would n't let her have a knife , ' captioned one snap of a child sobbing . the hashtag has almost 4000 posts from parents all over the world .\ngerman discount supermarket aldi now has a 5.3 per cent market share . in comparison , waitrose has 5.1 per cent , according to consumer research . both lag behind tesco , asda , sainsbury 's , morrisons and the co-operative . the total market share of the ` big four ' fell to its the lowest for a decade .\ninter milan have asked manchester city about loaning stevan jovetic . city are willing to listen to cash offers for the former fiorentina star . roberto mancini is also keen on a deal for city midfielder yaya toure . he believes toure would choose to join inter if he leaves city this summer .\nliverpool need new faces in the summer after an underwhelming campaign . danny ings and james milner could join when their contracts expire . memphis depay , petr cech and asier illarramendi also linked to anfield .\nbrendan rodgers insists liverpool can still attract the best players . liverpool are unlikely to be able to offer champions league next season . rodgers still believes players like memphis depay would move to the club . depay has been linked with moves to whole host of premier league sides . read : depay admits he dreams of making a big money move this summer . read : just how good is memphis depay ?\nphoto essay book , gays in the military , released by new york photographer vincent cianni . individual stories tell the history of homosexuals in the military . many were discharged because of their sexuality and suffer ongoing psychological damage . rape , assault and bullying remain prevalent . being gay was considered a criminal offense in the u.s. military until 1993 .\ndartmouth is the only ivy league school in an early primary state , giving he school enormous influence and a recurring role hosting primary debates . random sampling of 50 students found just nine who said hillary clinton would make a good president . seven of those nine said they knew little about her political baggage . age and gender do n't matter to millennial academic elites , but they 're concerned about clinton extending barack obama 's foreign policy . clinton will visit new hampshire on monday and tuesday for the first time since her campaign launch a week ago .\nface wipes have long been a lazy part of our daily beauty regimes . but a new generation of wipes promises to retexturise and brighten skin . dr nick lowe and lauren libbert decided to put them to the test .\nactor kit harington made the comments on late night with seth myers . he said belfast is ` wonderful for two or three days ' , drawing laughter . harington plays the character jon snow on the hit hbo programme . he appeared on the talk show to promote game of thrones ' new series .\ngypsy secretariat foundation complained over the definition of ` gypsy ' spanish dictionary has one of the definitions for the word as a ` swindler ' group has delivered protest letters to spain 's royal language academy .\nhenley and partners 's visa restrictions index calculates travel freedom . it is based on the number of countries citizens can visit visa-free . the best passports include those from finland , usa , germany and the uk . lowest ranking countries include iraq , afghanistan and pakistan .\njohn r. lind , 34 , from new brighton , minnesota admitted to tainting drink . the bizarre act was part of a ploy to get co-worker pat maahs to notice him . would do it when she was n't at her desk at beisswenger 's hardware store . he will be sentenced for the misdemeanor on may 22 .\njessica knight loves eating carpet underlay and furniture stuffing . she also snacks on sand and rocks even though parents try to stop her . family now give her a purse full of sponge to control her cravings . jessica suffers from rare condition pica but doctors say they ca n't treat her until she is six years old .\nhangover treatment found in documents uncovered at oxyrhynchus , egypt . the texts included 24 new ` recipes ' for preventing the spread of ulcers and treating hemorrhoids , toothache , gangrene and various eye conditions . one text provides advice for treating a ` drunken headache ' by stringing the leaves of the evergreen shrub alexandrian chamaedaphne around the neck .\nparents of miracle baby sonit awal overjoyed as infant pulled from rubble . father dragged rocks away with his bare hands to try and free the boy . infant was saved by a cupboard that fell , protecting him from aftershocks . mum rasmila has thanked ` god and the rescuers ' for saving her child .\nrobert durst was indicted wednesday on the two weapons charges that have kept him in new orleans . grand jury charged durst with possession of a firearm by a felon , and possession of both a firearm and an illegal drug : 5 ounces of marijuana . on thursday he appeared in court to plead not guilty . durst , 71 , is wanted in california for the murder of his friend susan berman . berman , an author who formerly acted a media spokeswoman for durst , was shot in the head at her benedict canyon home in 2000 .\nsavage swan nicknamed asbaby attacked punters on the backs area of river cam in cambridge over easter . mr asbo , the swan believed to be his grandfather , was moved away in 2012 after repeatedly attacking rowers . asbaby seen getting close to tourists , eating sandwiches , drinking from bottles and trying to steal handbag . swan , which still has many brown baby feathers , said to be son of asboy - which has also terrorised punters .\ndumbarton boss ian murray believes rangers ' tough run-in could mean they miss out on second place in the scottish championship to hibernian . rangers face difficult fixtures against hearts and queen of the south . murray played for both rangers and hibs during his career .\ntim sherwood took time to reply to aston villa fan charlie pye . the six-year-old applied for the villa job when paul lambert was sacked . aston villa face liverpool at wembley on sunday .\naiko chihira will only speak japanese - but is capable of sign language . created to appear , talk and move as humanly as possible . will offer guidance to customers with information about store .\nthree former captains in the frame to lead english cricket . paul downton was sacked as managing director on wednesday . michael vaughan has emerged as a leading candidate for the role . alec stewart said he would consider taking up the position . andrew strauss is also well respected within the game of cricket .\nhe made the statement before in march . o'malley is low in the polls with democrats , but he has been flirting with a presidential run .\nfirm previously revealed smart cocktail dress that can repel people . is also developing wrist mounted drones . intel also showed off button sized computer and wrist mounted drone .\nground-breaking tv documentary followed three children in medical trials . they were the first in world to have pioneering treatment immunotherapy . it uses powerful drugs to kill off cancer cells and destroy bone marrow . toxicity of immunotherapy means children often need to be sedated . in the film , the children 's parents reveal why they decided to take part . the documentary , raining in my heart , will be shown on itv on april 15 . raining in my heart will be shown on itv on april 15 .\nher bike 's front wheel was ` completely squashed ' under lorry in incident . was pronounced dead at scene near houses of parliament this morning . today 's incident follows four other deaths of cyclists in capital this year . cycle campaigners have organised ` vigil and die-in ' at site on april 20 .\nmascot among dozen of staff concerned about their jobs . from august , adidas will replace nike as united 's kit supplier . workers at old trafford megastore offered no assurances about jobs . nike say they have entered into a consultation process with staff .\nzeta beta tau students are being investigated for the ` disgusting ' acts . have been accused of the deplorable acts at the warrior beach retreat . is designed to give ex-servicemen a relaxing break in panama city , florida . university of florida and emory university branches were there at the time . they allegedly ripped flags off cars and threw items off balconies . three students from university of florida have been expelled . both fraternities have suspended all of their university activities .\nbogan shire council in nsw is planning a statue to honour its namesake . it would depict a ` bloke ' in shorts and singlet carrying a rod and tuckerbox . mayor ray donald said the statue could have tourism benefits . would join the trend for ` big ' things in country towns . existing icons include the big merino , the big banana and the big pineapple .\nafrican elephant has regularly visited etali safari lodge for four years . he 's earned the nickname troublesome for his regular poolside antics . troublesome empties the pools with drinking , playing and spraying . lodge manager said kristoff potgieter said they 've tried to deter him . but he said they 've been out-witted : ` troublesome is no ordinary elephant ' .\nwe 've enjoyed some of the highest temperatures of the year this week . the range starts at # 31,995 and the audi can cost as much as # 50,000 . no matter how good , the new audi tt still has nothing on the 1999 model . with the sunshine beaming this week and some of the highest temperatures recorded so far this year , what better moment to splash out on the new third-generation audi tt roadster . it goes on sale this month . just the time to get the roof off on this softtop german sports car , which has established itself as a firm favourite in the 16 years it has been on the road . i drove the fully stocked four-wheel-drive 2-litre tfsi in s-line quattro trim with 230 bhp , which was adept at whipping around the cotswolds in style . sure-footed and fun to drive with lively acceleration that takes it from rest to 62 mph in just 6.1 seconds up to a top speed electronically limited to 155 mph . co2 emissions are a fair 154g/km . supportively cossetting sports seats leave you sitting comfortably at the wheel . a nicely tuned exhaust pipe gives the tt roadster a most satisfying ` brrrm brrrm ' . you wo n't break the bank at the filling station . even with the satisfying performance you 'll average 43.5 mpg , rising to 52.3 mpg when cruising and still managing a respectable 33.6 mpg around town . great wind-in-the-hair motoring with a top that will come down in ten seconds at speeds of up to 31mph , and a more streamlined body . it 's easy to make a hands-free phone call with the automatic three-layer fabric hood down because microphones are embedded in the safety belt . auto-dim led headlights have been transferred across from the flagship audi a8 saloon . if it ai n't broke , do n't fix it . though this version is on an allnew platform , the progression is evolution , not revolution . the car i drove cost well in excess of # 50,000 . the range starts from # 31,995 for the 2-litre tdi sport in six-speed manual . the optional open-top driving package includes head-level heating to keep your bonce from getting chilly , an electrically operated wind deflector , which stops parky draughts whistling behind your neck , and handily heated super sports seats . no matter how good , nothing will have the jaw-dropping impact on the car market as the original audi tt of 1999 . it was dubbed the ` bauhaus bullet ' because of its clean , minimalist lines reminiscent of the german art movement of the twenties and early thirties . hefty prestige price tag . the base price of the car i drove was # 41,630 . but it was loaded up with extras adding another # 13,000 -- or the price of a half-decent family runaround . these include an open-top driving package -lrb- # 1,000 -rrb- , rotorgrey fine nappa leather and super-sports seats -lrb- # 1,390 -rrb- , a comfort and sound package -lrb- # 1,590 -rrb- , technology package -lrb- # 1,795 -rrb- , electric front seats -lrb- # 995 -rrb- , 19 in twin-spoke alloy wheels -lrb- # 450 -rrb- , metallic paint -lrb- # 545 -rrb- , and led headlights -lrb- # 945 -rrb- .\nsan bernardino sheriff says 10 deputies have been put on leave . video from a news helicopter shows deputies punching and kicking a man repeatedly .\ntwo australian drug traffickers on death row in indonesia have had legal bids rejected . the men were seeking to challenge president widodo 's decision to refuse clemency in their cases . andrew chan and myuran sukumaran are members of the `` bali nine '' drug syndicate .\npresident spoke to the camera for 12 seconds , beginning in southern drawl . obama has previously said he is a fan of the show and its ruthless efficiency .\njeremy trentelman , 36 , of ogden , built fort for young son and daughter . he received letter one day later saying it violated ordinance against waste . father plans on keeping castle up for 14 days before he receives fine .\ngareth bale has been chosen in the football league team of the decade . eleven players and one manager picked as part of awards 10th anniversary . ashley williams , rickie lambert and adam lallana are all included . bournemouth boss eddie howe is picked as the manager of the side .\nsebastian kehl scored in extra time to edge borussia dortmund past hoffenheim 3-2 in the german cup quarter-finals . dortmund had taken an early lead in the 19th minute through neven subotic 's goal before kevin volland equalised for the visitors . roberto firmino then gave hoffenheim the lead with a superb chipped shot before patrick aubameyang pulled dortmund level . in extra time , kehl hit a wonderful volleyed effort from outside the box .\nparis saint-germain begin early discussion with paul pogba . french champions have been tracking pogba 's availability . real madrid may have to pay iker casillas # 10million to leave the club . yaya toure remains inter milan 's main summer transfer target .\nsteffon armitage was named european player of the year last season . billy vunipola was superb for saracens during his season 's tournament . nick abendanon has starred for 2015 finalists clermont .\nwillingness to learn is significantly influence by our genes . study was by goldsmiths university in london and ohio state university . more than 13,000 twins aged nine to 16 took part in the research . but there is no specific gene for how much children enjoy learning .\nnasa scientists in maryland are preparing for historic mission on 14 july . this is when new horizons will arrive at pluto after a journey of nine years . and it has now released its first colour image - from 71 million miles away . the mission will be humanity 's first ever visit to the dwarf planet .\nthe tham khoun ex cave has 15km of spectacular caves waiting to be explore by kayak . explorers can witness the incredible caverns , lake and even the vibrant forest at the entrance . cave photographer john spies captured the labyrinthine chambers to unfold the mystery .\nat the height of her addiction julie merner drank a bottle of vodka a day . 39-year-old has been admitted to hospital 13 times in six years . mother-of-three has been told one more drop of alcohol will kill her . admits she is to blame but does not feel bad about # 100,000 nhs care bill .\nsydney family claimed the remains of a baby found on maroubra beach . filomena d'alessandro and bill green have vowed to give her a funeral . the baby 's body was found by two boys , buried in sand on november 30 . the infant was found about 20-30 metres from the water 's edge . police were unable to identify the baby girl or her parents .\nruslan bazarov was on a 100km cycle ride when he was struck by the truck . the truck passed barazov on the inside sucking him towards the trailer . the 28-year-old cyclist suffered two fractures to his leg and a pelvic injury . the driver stopped soon after the incident road and blamed bazarov .\nwill out-of-date sun lotion protect your skin from sun damage ? can you keep using last summer 's bite cream ? alice smellie finds out which summer supplies we need to restock .\nthe ecb 's involvement with fraudster allen stanford has been defended . sir curtly ambrose said he thought stanford did ' a lot of good ' in deal . michael vaughan is staying at england 's sugar ridge hotel in antigua . stuart lancaster is unperturbed by claims that he has n't walked the walk . the grand national peak viewing of 8.8 million was good for channel 4 . jimmy anderson said he would tell young bowlers to : ` ignore the media ' graeme swann and kevin pietersen 's feud seems to have ended .\na beloved dog was believed to be killed by a driver , but days later , she showed up . left injured after being run over , someone attempted a misguided mercy killing and beat the dog in the head with a hammer . now named theia , her surgery will cost upward of $ 9,000 .\nmanchester united face rivals manchester city in the league on sunday . eight of united 's first-team squad are native spanish-speaking players . six city players are from spain or spanish-speaking countries .\nmimi and joe lemay of massachusetts say their son jacob was never happy as a girl , adding that he has called himself a boy since he was two . it took years and many emotional ups and downs before the couple finally decided to let him transition . now attending a school where everyone knows him as a boy , jacob is the happiest and most outgoing he has ever been .\ngerman team has developed new technique giving ` personalised treatment ' tests carried out on cancerous cells in lung , skin and bowel tumours . survival rates boosted by more than 50 per cent during animal trials . patients with skin cancer now being recruited for the first human trials .\nin a survey conducted by direct line , 2,025 adults in uk were questioned . nearly half -lrb- 46 % -rrb- of people get anxiety from not being able to sleep . many of the worries come from work-related situations .\njesper blomqvist was part of manchester united 's treble winning side . the midfielder rejected sir alex feruguson 's first approach before signing . the swede spent two years out injured before moving to everton . blomqvist now lectures with his brother to help people handle setbacks . the 41-year-old is playing for united 's legends against bayern munich 's at old trafford on june 14 in a charity match for the club foundation . click here for all the latest manchester united news .\nan elderly man has reportedly been attacked by a crocodile in queensland . the man was playing golf at the palmer sea reef golf course on monday . golf owner clive palmer sent his well wishes to the man after the attack . paramedics treated the man who suffered a bite wound to his lower leg . he has been taken to mossiman district hospital in a stable condition .\nsheriff mbye died in hospital after being stabbed to death outside a kfc . today a second 18-year-old has been arrested in connection with his death . another 18-year-old was arrested on suspicion of murder on friday . officers have now been granted more time to question the man arrested .\na study has shown that a quarter of australians have opted to live alone . of the women who live solo , most have university degrees , reputable careers and healthy social lives - unlike their male counterparts . many women feel they are labelled as socially isolated for living alone . julie sweet from clovelly said she is constantly questioned for her choice .\nthe landgate cottage in rye is outfitted in an earthy atomic age aesthetic . travel to brighton to experience the era of brit-pop at wonderland cottage . and nothing says 1970s nostalgia like renting your own vw campervan .\na bubbler at a melbourne high school has been dispensing recycled water . students at st peter 's college in melbourne may have been drinking treated sewage water for around 16 months . the horrific discovery was made by maintenance during school holidays . investigation is under way by the department of health and human services . students were at risk of contracting gastro while drinking from the bubbler . the other 20 bubblers at the school have been tested and deemed safe .\nunison member said tired staff have ` detrimental effect on patient care ' jane smith likened longer working hours for nhs staff to ` slave labour ' called for more research to examine the impact on workers ' health .\nmany people also confessed that they would love to take a tour of lifestyle martha stewart 's home , as well as the obamas ' private living area .\nkarim benzema will miss his side 's la liga match against malaga . the real madrid star is expected to be fit in time to face atletico madrid . real madrid are just two points behind la liga leaders barcelona .\nduke university study looked at 1,000 years of temperature records . it compared it to the most severe emissions scenarios by the ipcc . found that natural variability can slow or speed the rate of warming . these ` climate wiggles ' were not properly accounted for in ipcc report .\npolling shows scottish national party has extended its lead over labour . constituency surveys suggest labour party faces unprecedented wipeout . jim murphy , its scottish leader , among those on course to lose their seats .\nqpr manager chris ramsey is the premier league 's only black manager . he supports john barnes ' claim that black bosses ca n't find second clubs . ramsey says he believes covert racism continues in football boardrooms . rangers boss endorses rooney rule introduction to raise awareness .\nsara errani beat seventh seed agnieszka radwanska 7-6 -lrb- 8/6 -rrb- 6-4 . radwanska follows fifth seed ana ivanovic out of stuttgart event . errani to meet zarina diyas who beat sabine lisicki 6-0 6-0 .\nnina moric , 38 , claims she collapsed at her apartment in milan on saturday . she told followers on instagram her fall was due to ` low blood pressure ' . italian media claimed the croatian-born model tried to take her own life . moric told her 40,000 followers ' i fell banging my head and hurt everwhere ' .\none of the earliest televisors is expected to fetch up to # 22k at auction . forerunner of the television was manufactured in 1928 and cost around # 26 . television had tiny , poor quality picture - little bigger than a postage stamp .\nmanuel garza jr. died from a lethal injection on thursday . he was put to death for killing a san antonio police officer in 2001 . he shot officer john riojas after a struggle that ended with riojas being shot in the head . garza was pronounced dead 26 minutes after being injected .\nmadison small woke up feeling ill on monday night so was rushed to hospital , but her organs began shutting down and she died on tuesday . her parents have not been given a diagnosis for their daughter 's illness and the medical examiner 's office is now determining the cause . hundreds of students and family members gathered for a candle-lit vigil on tuesday night , where she was remembered as a great athlete and friend .\ngina rinehart called ` the fat ' and ` fatty ' by son john hancock in emails . ` fat would have quickly grown tired of supporting your shopping , ' he said . nearly a decade later , the siblings are united in a bitter trust dispute . bianca rinehart gave evidence in the dispute into the family 's finances . ms rinehart was forced to sign contracts , and left ` distressed and crying ' . children of gina rinehart lodged case to increase stake in family company . siblings currently control just 23 per cent of family 's hancock prospecting . gina rinehart has a stake of more than 76 per cent in the company .\ncarey mulligan 's grandmother suffers from alzheimer 's disease . margaret booth has struggled to recognise her grandchild for eight years . mulligan , 29 , has urged for greater awareness of the illness in society .\nfc tokyo claim that chelsea have bid for forward yoshinori muto . the forward would be the first japanese player to sign for chelsea . chelsea have a # 200million sponsorship deal with yokohama rubber . jose mourinho admits that commercial deals do play a part at chelsea . but the blues boss insists he will only buy players who are good enough .\nthe duchess of cambridge made revelation at goring hotel 's 105th party . husband prince william was on an official tour of china .\nlatasha gosling , 27 , of tisdale , saskatchewan , was found murdered in her home early wednesday . her two daughters , janyaa , 4 , and jenika , 8 , and her son landen , 7 , were also discovered dead . hours later police found the suspect dead at his residence , along with a six-month-old baby who was unharmed . police are not releasing much information at this time , but did reveal the suspect and victims knew one another .\ntories will be hoping to scare floating voters with puppet-master image . comes as snp leader ms sturgeon claims that she can help ` lead the uk ' . party manifesto to include pledges in policy areas which do n't even directly affect scotland .\njimmy anderson becomes england 's leading test match wicket-taker . the 32-year-old surpassed the record held by sir ian botham -lrb- 383 -rrb- . anderson picked up his 384th wicket during first test against west indies . he took the wicket of denesh ramdin , caught behind by alastair cook . he drew level with botham on 383 when marlon samuels edged to gully .\nlindsay jo rimer , 13 , went missing from hebden bridge 20 years ago . her body was found five months later , weighed down in rochdale canal . kate , her sister , has spoken out as 20th anniversary of her death approaches in a bid to try and trace lindsay jo 's murderer . ms rimer said the last 20 years have been like a ` life sentence ' for family .\njustus howell was shot dead on saturday afternoon in zion , illinois . police now claim he was fleeing after trying to steal a handgun . tramond peet , 18 , said he met howell in zion in order to sell him the firearm . but claims howell tried to take it , and pointed weapon at him during scuffle .\nhealth expert mark bellis says alcohol abuse goes back as far as ancient civilisations such as the greeks and mesopotamians . the egyptians used to warn against mixing alcoholic drinks with drugs . authorities tackled public drunkenness with street lights and advertising .\nvirgin australia launches complimentary food on all domestic flights . package will also include free checked baggage on all local flights . food and beverage service tailored to time of day and duration of journey . move also includes free checked baggage on all domestic flights .\nniamh geaney , 26 , found her doppelgänger through social media . her lookalike , karen branigan , lives only a hour away in ireland . the pair met in real life and although it was ` freaky ' , they got on very well . both have sisters , and say they do n't look similar to either of them .\nborussia dortmund host bayern munich on saturday at signal iduna park . teams contest germany 's biggest domestic game , der klassiker . but little is riding on it with bayern munich cruising to bundesliga title . dortmund hope home win will keep them in shout of europa league spot .\nthe camellias evergreen foliage provides a contrast to the bright flowers . they are easy to grow and like acid , free-draining and nutritious soil . camellias are happy in sun or shade and grow readily among other shrubs .\nkelvin day , from surrey , has played a handful of events on web.com tour . he entered the qualifying for the houston open and finished tied first . he then made the cut and is now three shots off the lead . victory for day would earn him a place in the masters field .\njordan henderson is set to sign an improved deal with liverpool . the 24-year-old midfielder has 14 months left on his current contract . henderson could replace steven gerrard as club captain this summer . liverpool will resume talks with raheem sterling at the end of the season . read : liverpool launch bid to rival man utd for psv 's memphis depay .\nstrikes by french air traffic controllers will affect thousands of brits today . new border control checks may also mean major delays for holidaymakers . ba , easyjet , flybe and ryanair among airlines forced to cancel flights . three days of disruption start today at 5am and end on friday morning .\nchristopher flowers , 84 , was driving on rochester , ny , street on march 9 . dropped lit cigarette , causing several layers of clothes to burst into flames . three drivers stopped to help as fire engulfed pensioner 's torso and head . one tried to put out flames with hands ; another threw him into snow bank . flowers , from chili , rushed to strong memorial hospital with severe burns . on sunday , hospitals officials announced retired marine has passed away .\nbricks along the top of the former national city bank building collapsed and showered down onto the street and sidewalk at 4 p.m. on monday . no one was injured but a minivan was crushed below . cleveland fire spokesman larry gray said the falling bricks might have been a ` freak accident '\nscientists at the swiss federal institute of technology in zurich modelled the probability of extreme weather events being caused by human activity . they found humans are to blame for the worst heatwaves and floods today . conclusion was made by comparing levels pre and post industrial times . experts warn storms will grow more common as global temperatures rise .\njames anderson plays his 100th test match in antigua starting monday . the quick needs four scalps to become england top test wicket taker . he was called ` pro killer ' as a teen knocking over batsmen for burnley . mark butcher recalls jimmy 's test debut at lord 's back in 2003 .\nkits are intended to be a temporary solution to broken fillings and crowns . they can be bought in supermarkets for around # 5 or even pound shops . products are on the rise as people say they ca n't afford dental treatment . study reveals that 20 per cent of people would carry out diy dentistry .\nolympic champion charlotte dujardin remains world 's leading dressage rider after vegas contest . swiss olympic showjumping champion steve guerdat finally wins world cup jumping title at 10th attempt .\nin italy , one oceanfront property was used as a summer home by european royalty until the 1940s . meanwhile , in mauritius , a new 288-villa development is underway situated in a protected nature reserve . antigua 's villa nicobar has neighbours , such as giorgio armani , who are as stylish as its airy interiors .\nresearchers examined 4,200 studies and selected 11 weight loss plans . included atkins , jenny craig , meal replacements and online support sites . wanted to see how successful they were at first and in the long term . very few plans had evidence they worked better than getting information elsewhere for free - or that they helped weight stay off permanently .\nunite boss len mccluskey told members that unions created labour . he urged members to ` take back our country ' and ` bring back decency ' . last week his union pumped a further # 1 million into the labour party . more than half of labour candidates in winnable seats are backed by unite .\nsweet cakes by melissa in oregon found to have discriminated against lesbian couple by refusing them wedding cake in january 2013 . melissa and aaron klein ordered to pay fine that they say will ` ruin ' them . rachel bowman-cryer and her wife laurel said to have suffered emotional distress from case , which prompted death threats . fine of $ 135,000 may be increased or decreased by state labor head . fundraising page for bakery raised $ 100,000 before it was shut it down . bakers said ` satan 's really at work ' and urged donations on christian site .\nclip shows moment helmet camera becomes detached and falls to earth . remarkably , the camera remains intact despite plummeting from 10,000 ft. was found in a meadow in gringelstad , sweden , and returned to its owner .\ngeorgina bartter 's best friend has pleaded guilty to a drug supply charge . rebecca hannibal , 19 , was first charged with supplying ecstasy to ms bartter in december but originally pleaded not guilty . police allege she purchased the ecstasy pills from matthew forti , also 19 . ms bartter , 19 , died from a suspected ecstasy overdose in november . she was taken to hospital after suffering multiple organ failure .\nharis vuckic has spent second half of season on loan at rangers . slovenia star has been a success at ibrox with six goals in 10 games . newcastle may decide to sell him with one year left on his contract .\nnurhayada sofia fell to her death after being dragged by an escalator . the 6-year-old was shopping with mother at the mall in pudu , malaysia . cctv shows her playing with the handrail before she slips through gap . her mother - who had been on the phone - was said to be inconsolable .\nthe drawing was discovered by fan site cult of android . it appears on the map 's standard view at 33 ° 30 ' 52.5 'n 73 ° 03 ' 33.2 ` e. addition is believed to have been added using google 's map maker . and google told mailonline : we 've terminated the android figure involved in this incident , and he 'll be disappearing from google maps shortly . ' .\nthe queen attends reception as part of first world war commemorations . she was joined by her husband the duke of edinburgh at london event . at reception , her majesty posed with calgary highlanders dressed in kilts .\ntaffee the shetland pony had to be put down after the breeze block attack . tiny pony 's skull was caved in and concrete was found embedded in brain . charlene bishop , who is 17 months old , groomed her horse every day . mother says epileptic toddler ` has lost her best friend and is devastated ' warning : graphic content .\npatient came to ipswich hospital after industrial accident in july 2012 . pioneering professor ninian peckitt performed surgery but was needed again when patient fell from hospital bed and his cheekbone was displaced . colleague told to hold patient 's head as he applied ten punches like a boxer . hearing heard the patient could have been blinded by force of the blows . professor quit post days later and is now believed to be working in dubai .\noskar groening is being tried on 300,000 counts of accessory to murder . the former ss officer described how jews were marched to gas chambers . one survivor , eva kor , told of her agony as her mother was ripped from her .\nroyal caribbean 's legend of the seas docked on tuesday in san diego with 135 sicken passengers aboard . on monday , celebrity 's infinit docked with 106 ill people . both ships had sailed from fort lauderdale , florida , for a 15-night voyage .\nfans downloaded seven million episodes between february and april . illegal downloads beat favourites the walking dead and breaking bad . season five of the hit hbo show premieres on sky atlantic on sunday . cable network launched internet streaming service to curb piracy .\nedward 's snow den was listed for a time as a snowboarding business . when clicked on it the opening hours were revealed as 5am to 11pm . one review for it said that it was a ` great source of classified information ' whistleblower edward snowden is thought to be hiding out in russia .\nthe id network launches in may and will offer free roaming in 22 countries . it will offer 12 and 24-month plans with a focus on providing affordable 4g . carphone warehouse will use three 's existing network to offer the plans . it follows the announcement of sky 's standalone mobile network on o2 .\nmick schumacher makes his adac formula 4 debut this weekend . the season 's first race takes place at the motorsport arena oschersleben . the 16-year-old is part of the dutch van amersfoort racing team . seven-time formula one world champion michael is recovering after a serious head injury in december 2013 .\nbell has been banned after being found in possession of a 20 gram bag of marijuana and was hit with a dui charge last august . a key piece of the steelers offense , his absence during the play-off game with the ravens was a key factor in the steelers defeat . and they will have to start the season without the 23-year-old running back . legarrette blount was in the vehicle with bell and he was banned for the first game of the season earlier this week .\nhighly rated striker obbi oulare attracting attention from around europe . manchester united and borussia dortmund among sides scouting oulare . the 19-year-old found the net as brugge extended lead at top of league .\nmoeen ali picked up side injury during england 's dismal world cup . injury meant all-rounder was not considered for squad to tour west indies . but moeen is hoping to join up with the squad later in the tour .\nsteven and sarah nick are facing a combined total of 15 felony charges . accused of embezzling more than $ 50,000 to stockpile arsenal of weapons . said to include 50-caliber machine gun and sniper rifle with suppressor . weapons were legally owned but bought using stolen money , police say .\nbobby brown has maintained his daughter is awake from her coma . maternal grandmother cissy houston updated fans clarifying that her grandchild is ` no longer in a medically induced coma ' . but cissy explained that her granddaughter is irreversibly brain damaged and unresponsive . the hospitalised woman 's 46-year-old father told fans at a dallas concert on saturday that ` bobbi is awake . she 's watching me ' on monday , his wife alicia tried to clarify bobby 's statement saying ` she has made it out of icu and opened her eyes ' a source close to the houston family shared that they ` have no idea where bobby is getting his information ' the 22-year-old only child of the late whitney houston was first hospitalized on january 31 after being found face down and unconscious in a bathtub at her georgia home .\nchristopher dodd , 24 , and fay purdham , 27 , are planning their wedding . the couple grew up together as boys playing football and playstation . after losing touch as teenagers fay , who was born kevin , came out as gay . having taken hormones for years , she had gender reassignment surgery . the pair reunited at mr dodd 's 21st birthday party and are now engaged .\nmanuela arbelaez handed contestant andrea a $ 21,960 hyundai sonata se for free on thursday 's show . model revealed the correct price of the car too early - ending the show . host drew carey was left with little option but to tell the contestant , ` congratulations ! manuela just gave you a car ! the game is over , folks ' arbelaez said she wanted to ` go into a wormhole and disappear ' . claimed her body reacted quicker than her brain , leading to the mistake .\ntracey woodford , 47 , was found dead in a pontypridd flat last week . christopher nathan may , 50 , accused of murdering and dismembering her . his alleged victim had been missing for three days before being found .\nphil blackwood was sentenced to two-and-a-half years with hard labour . posted the mocked-up image advertising a cheap drinks night on facebook . 32-year-old was found guilty of insulting religion despite apologising .\na three-metre crocodile ate a one metre long lizard in one bite at a river . fishing guide carol gleeson watched the battle at mary river this week . ms gleeson said she has never witnessed anything like this before . it comes after a 4.38 m croc had been eating dogs was caught last month .\ngang built cabinet so one of them could hide inside large void in middle . wanted to secretly switch euros for fake cash during deal in manchester . officers recovered $ 2.2 m in counterfeit money and # 52,000 of real notes . four men aged 17 , 37 , 45 and 73 are jailed for total of almost ten years .\nthe oak bottle claims to ` oak age ' wine in hours rather than years . the product retails at # 50 and promises to impart authentic aged flavours . oz clarke says its a fun product and would make an interesting gift . visit oakbottle.com . the pocket wine book by oz clarke is published by pavilion books at # 9.99 .\nnicola surgeon hailed shock winner of tv debate , according to one poll . scotland 's first minister left ed miliband squirming during an attack on tax . tories immediately mocked up poster of tiny ed in miss sturgeon 's pocket . other polls suggest mr cameron came out top at 40 % and miliband trailing . mr clegg turned on mr cameron at the first opportunity after five years in coalition , accusing him of relishing spending cuts ; . the prime minister rammed home the tories ' economic message , by indicating each leader in turn and delivering the simple verdict : ` debt and taxes ' ; . ukip 's mr farage stunned his rivals by launching an attack on foreign hiv sufferers using the nhs for treatment ; . labour 's infamous ` no money left ' note , left in the treasury in 2010 , was brandished by an angry prime minister ; . mr clegg challenged the labour leader to apologise for his party 's toxic economic legacy -- a challenge mr miliband ducked .\nnick cannon has demanded $ 30m to settle his divorce from mariah - even though their prenup calls for less . mariah has refused and now nick has inked a deal with an imprint of simon & schuster , gallery books . nick filed for divorce last december after six years of marriage . mariah and nick have been battling about money and custody of their twins ever since . nick to reveal secrets about drug use , strange eating habits , her put-downs of other artists , her sexual proclivities .\n78,000 sign petition to demand removal of spikes in leeds city centre . fast food giant says that the spikes are to prevent anti-social behaviour .\nagent was taken to an area hospital as a precaution . he passed a drug test and was discharged , alaska airlines says . the cargo hold is pressurized and temperature controlled .\nin the new chapter released on friday , clinton shared her experiences as a grandmother and how they had motivated her political plans . she recalled how disorganized she had been before the birth of chelsea , whereas chelsea had been so composed before becoming a mother . the clintons ` whooped ' with delight when charlotte was born last september and hillary noticed bill becoming emotional . while she had been nervous about being a mother , being a grandmother is ` pure joy ' - and has made her think about all children 's futures , she said . she is expected to announce her run for president on sunday .\nann price was the woman behind the ` ghetto burger , ' called best in america by the wall street journal in 2007 . cause of death has yet to be released . price 's signature creation was a double cheeseburger with bacon , grilled onions , ketchup , mustard and chili .\nnovak djokovic beat qualifier albert ramos-vinolas in straight sets . david ferrer is also into the next round after his opponent retired . jo-wilfried tsonga had to be alert as he was pushed by jan-lennard struff .\nman brought down at pearson international when he did not communicate . tried to board turkish airlines plane after being denied access to the flight . was carrying a case through the security gate which he refused to drop .\ntiny cubs were abandoned in a cardboard box , next to a clothing donation point , in a car park in pennsylvania . seven baby foxes - five males and two females - were taken to animal rehabilitation center for care and treatment . cubs were dehydrated but healthy , and will stay in the center for a few months before being returned to the wild .\nup to one in five chinese eateries could be selling soup using illegal meat . charity says it is often disguised on menu or only offered if requested . loophole lets people bring 20 kg of meat into uk for personal consumption .\nisis has seized control of large parts of the yarmouk palestinian refugee camp in syria . an estimated 18,000 refugees are trapped between militant groups and regime forces . u.n. : `` in the horror that is syria , the yarmouk refugee camp is the deepest circle of hell ''\ntim sherwood worked with massimo luongo at tottenham hotspur . luongo has played a pivotal role in swindon 's play-off bid in league one . australian international was player of the tournament during asian cup .\njoanessa clawson , 35 , her husband james , 38 , and her mother patti ann baldassarre , 68 , all face felony conspiracy charges . they ` set up the page claiming the couple 's three-year-old daughter had a heart infection after undergoing surgery and asked for $ 3,000 ' after other parents expressed their suspicions , mrs clawson ` provided them with the number of a nurse - which led to her own mother 's phone ' a teacher asked police to check on the girl and she was found to be well .\nnow 5 months old , the 14-inch , 11-pound tuah is starting to crawl . tuah was revealed to the public on saturday at salt lake city 's hogle zoo . tuah 's parents died shortly after she was born . tuah 's father was eli , an orangutan who became famous for correctly predicting the super bowl winner seven years in a row . once she is ready , tuah 's sister acara will care for her instead of humans .\nsudheer khamitkar , shot his wife , smita haval khamitkar , and their sons arnav khamitkar , 10 and arush khamitkar , six , earlier this week . their bodies were found after mrs khamitkar 's employers , american airlines , requested a welfare check when she failed to turn up to work . police say they still do not have any motive but are speaking to mr khamitkar 's employers ; he recently switched jobs , they said .\nputin has spent hours fielding questions from the general public on live television . sanctions and russia 's deep economic crisis are a major theme .\nthree-strong crew at helm of luxury yacht arrested by sicilian police . boat filled with syrian and palestinian migrants - including 23 children . syrian crew identified by selfies taken by the yacht 's passengers . latest boat stopped making crossing turning the med into a ` cemetery '\nbroadcaster vows to do less after hosting everything from rugby to crufts . speaking to radio times , said questions about sexuality were ` exhausting ' said : ' i suspect gabby logan is n't asked about being married or a mother '\ndentist dr sameer patel highlights the dental dangers of your desk diet . some breakfast cereals contain up to three teaspoons of sugar , he warns . swap your daily tea or coffee for green tea to prevent tooth staining . steer clear of white bread , popcorn and watch out for ` healthy ' smoothies .\nelanora baidoo married victor sena blood-dzraku in 2009 . marriage was not consummated and blood-dzraku has disappeared . judge in brooklyn has allowed baidoo to issue divorce papers via facebook .\nimages from dawn reveal the mysterious spots on the surface , named feature one and feature five , in infrared . feature one is cooler than rest of surface , but give is in a region that is similar in temperature to surroundings . leading theory for spots is that ice covered by a thin layer of soil is exploding due to pressure in the asteroid .\nkourtnie a. sanchez , 25 , was arrested monday in eureka , kansas . she has been charged with unlawful sexual relations and three counts of promoting obscenity to a minor , among other charges . alleged incidents ' occurred over five months in 2014 . sanchez was a student teacher at marshall elementary school and was a sports coach at the nearby junior high .\nzeus joined the ridgefield police department in 2006 and retired in 2014 . the 11-year-old german shepherd had severe degenerative hip disorder . on wednesday , officers gave tribute to him in grand procession . the k-9 officer responsible for over 250 narcotics arrests . police department said he will be dearly missed but never forgotten .\ndr christopher valentine 's colleague saw the pictures on his ipod touch . gallery of his pets contained an image of a semi-naked man , tribunal told . doctor was out with members of clydebank community addiction team . later revealed that he had used his ipod to take around 53 photos of at least two patients .\nliverpool striker daniel sturridge is missing for game against newcastle . brendan rodgers says he will be monitored ahead of fa cup semi-final . liverpool face aston villa at wembley stadium on sunday afternoon . rodgers also said he believes the race for the top four is not over yet .\nthe spanish royal family attended easter mass at palma 's cathedral . first appearance of princesses sofia and leonor in several months . the children 's grandmother , queen sofia was also in attendance . the family are staying at the marivent palace royal holiday residence .\nthe 6ft 5in , 330lb nfl player told fans on twitter of his application to uber . he explained : ` you know what 's better than nfl money ? more money ' he 's yet to play in nfl game but predicted to make $ 510,000 next season . he will drive passengers around florida in his brand new dodge charger .\nthe university said thursday that they have identified an undergraduate student responsible for hanging a noose from a campus tree . however , officials at the durham , north carolina school have not named the student , citing federal education laws . an official at duke told daily mail online that the student will now face judgement by a panel of peers and faculty members . the student is not currently on campus , but officials would not say if he or she had been kicked off .\naustralia 's ` tiny hearts ' approach to stopping the boats should be copied by britain . controversial columnist katie hopkins wrote that tony abbott 's policy was effective and like ` an aussie version of sharia stoning ' ` australians are like british but with balls of steel , can-do brains , tiny hearts and whacking great gunships ' . she calls those on board migrant boats ` cockroaches built to survive a nuclear bomb ' it came as more than 900 people were feared drowned on a sunken fishing boat headed for italy .\npaul gregory said he could only walk 200 metres in blue badge application . however , council staff noticed 51-year-old in newspaper report after hike . article described gregory as an ` experienced walker ' on a three-day trek . gregory fined # 795 after admitting to dishonestly obtaining a blue badge .\ndemolition of beautiful beaux arts pennsylvania station in 1963 led to landmarks preservation commission . there are now more than 33,000 properties with landmark status , mostly in historic districts throughout new york . exhibition shows the architectural losses that occurred before the law and the buildings that have been preserved .\nsean jefferson and elizabeth jowitt decorated flat with trinkets off graves . couple had wreaths , lanterns and homemade gift tributes hung in york flat . the pair admitted handling stolen goods and were banned from cemeteries . victims described couple as ` heartless and cruel ' for having grave tributes .\nchelsea 's u19s side were crowned uefa youth league champions . they defeated shakhtar dontsk 3-2 in the final on monday . despite chelsea 's successful academy , very few graduate to the first-team . izzy brown , dominic solanke and ruben loftus-cheek represent the best chance the club has of bucking the trend .\nwatford striker troy deeney is yet to play in the premier league . deeney is regarded as one of the best strikers outside the top-flight . he has scored 64 goals in 123 games during his last three seasons . the hornets are currently just one point behind leaders bournemouth .\nscientology exposé has been halted over differences in uk libel law . hbo 's ` going clear ' was due to be broadcast by sky earlier this month . lawyers warned church could sue because of northern ireland 's libel law . john travolta has slammed the documentary and said he would not watch .\nour houses are overtaken with dust mites , leading to winter illnesses . we shed 50g every week in dead skin , mostly in our bed . dust mites feed off dead human and animal skin and multiply . they leave australians with cold or flu-like symptoms . scientists recommend a weekly wash of our bed sheets .\nliverpool players mario balotelli , fabio borini , rickie lambert and lazar markovic believed that bas van velzen was acompetition winner . the reds players were all set to give van velzen a free-kick masterclass . but van velzen 's dead ball skills became apparent very quickly . click here for the latest liverpool news .\nmarouane fellaini was substituted during manchester united 's 3-0 defeat against everton on sunday . fellaini has starred for united this term following a difficult first season . united face west bromwich albion at old trafford on saturday .\nenner valencia back for west ham united after toe injury . james tomkins , andy carroll and doneil henry out for hammers . marc wilson available for stoke city despite having broken hand . jon walters is carrying a knee problem but is in contention .\ntottenham 's new # 400m stadium due to be completed for 2018-19 season . nfl said to be within five years of having a franchise in london . wembley stadium currently hosts nfl international series games . three regular-season nfl games will be played in london this year . click here for all the latest tottenham hotspur news .\nan ebay listing posted friday showed a laminated badge featuring a photo of hernandez and identifying information including height and weight . the listing claiming id was from soffolk county jail was deleted saturday . no bids had been put on the listing , which had a starting price of $ 500 . hernandez is currently in prison during his trial for the the june 2013 shooting death of odin lloyd .\nsue sharp shocked to find ` home-grown ' leg of lamb from new zealand . she refuses to accept asda 's explanation that it was a one-off mistake . the sheep farmer has now warned shoppers to be extra vigilant .\nhyalinobatrachium dianae was found in the mountains of east costa rica . it 's lime-coloured on top but has translucent skin on its underside . glass frog has a distinctive mating call that resembles a tin whistle . distinguished from other glass frogs by its eyes , which look like kermit 's .\ncesc fabregas wore protective face mask during chelsea clash with qpr . midfielder scored the winning goal as chelsea claimed a 1-0 victory . spaniard broke his nose in a challenge with charlie adam last saturday . chelsea midfielder travelled to italy to have a protective mask fitted . ortholabsport have also made masks for petr cech and fernando torres .\nlaura stevens , 38 , who lives in paris , suffered a painful relationship break-up . british photographer asked friends and women she met to pose for photos of ` how she was feeling ' therapeutic , personal project is called another november -lrb- the month in which she and her partner separated -rrb-\nmichelle woods told by her daughter of ` something moving ' in the bath . went to check and found a four-foot orange corn snake slithering around . panicking she posted an appeal on facebook for help to rescue the reptile . believes her home 's previous tenant kept snakes as pets and may have lost it moving out .\njudge also throws out bombshell sex claims against lawyer alan dershowitz . he asks a federal court to `` strike '' sex-related allegations against him . a court filing says dershowitz had sex with minors via jeffrey epstein ; he denies it .\ntravel site , wanderbat , evaluated the reliability of top international airlines . considered : on-time performance , flight record , checked baggage costs . qatar airways received a perfect 100-point score , followed by emirates .\niker casillas consoled a young fan who was struck during la liga match . the real madrid supporter was handed casillas ' shirt during the interval . real madrid hit nine past granada at the santiago bernabeu .\nman , who has not been named , turned gun on himself at 2:15 pm . was standing by new despicable me minion mayhem ride at the time .\nformer australian captain died peacefully in his sleep at a sydney hospice . he had been receiving radiation treatment for skin cancer since november . benaud had witnessed , as player and commentator , over 500 test matches . tributes flowed in to the legendary ` godfather of cricket ' from all circles . australian prime minister tony abbott offers his family a state funeral .\nst louis was hit tuesday by flash floods . a nearby town had more than two inches of rain in less than half an hour .\nfashion retailers have started to produce their own make-up ranges . you no longer have to head across town to a chemist or department store . but are any of these high street ranges worth splashing your cash on ?\ncarlos bacca puts sevilla ahead from the spot after vitolo was fouled . salomon rondon equalises following blunder from beto . beto gives away second goal when he turns hulk shot over his own line . kevin gameiro wins the tie for sevilla on break in closing minutes .\nthe 22-year-old teamed up with the flatiron school in new york to offer 20 girls free tuition to a two-week software engineering program . karlie attended the course last year and was inspired to share her experience with young girls across the country . the model gave $ 20,000 of her own money to create the scholarship , with the flatiron school matching her donation .\neric cantona says psg midfielder javier pastore is world 's best player . pastore cost the french champions # 29million from palermo in 2011 . argentine has scored three goals and made five more this season . pastore is the most creative player in the world according to cantona . frenchman also says spain only won world cup because of barcelona .\nkim kardashian shared pictures from the baptism of her daughter north , held at saint james cathedral in jerusalem 's old city . the 12th century church sits within the armenian quarter of the old city , the reputed site of the crucifixion of jesus christ . khloe kardashian is godmother , while a priest acted as north 's godfather . north wore white baptismal gown in keeping with tradition . the youngster is now a christian and a member of the armenian church .\namy wilkinson , 28 , falsely claimed housing benefit and council tax benefit . court gives her suspended sentence and orders her to pay back # 18,000 . her grandfather tommy docherty managed man united from 1972 to 1977 .\nrichie benaud died at the age of 84 after battling skin cancer . his commentary style is considered synonymous with cricket . sportsmail recalls 10 of his best moments in the commentary box . read : when richie benaud welcomed viewers , they were able to relax . click here for richie benaud tributes as cricket world mourns legend .\ntottenham full-back kyle walker sustained a foot injury against burnley . early fears that the foot was broken were allayed following scans . however , england international faces another four weeks out .\nto honour the warm weather , mailonline travel has compiled a list of the world 's must-visit springtime destinations . in the netherlands , the country 's famed keukenhof gardens are open only from march 20 through may 17 . head to kanazawa , japan , to take in the cherry tree blossoms , which traditionally bloom in the first half of april . in nearby northumberland , vibrant red poppies light up the area 's rolling hills from late spring to early summer .\npippa middleton , 31 , was spotted arm-in-arm with nico jackson , 36 . the two live in different countries but are clearly very much together . earlier this year , it was reported they were on the verge of a split . miss middleton will become an aunt for the second time within days . the duchess of cambridge 's due date is thought to be this saturday .\nthe university of kentucky 's winning streak was brought to an end saturday night with a 71-64 loss to the university of wisconsin . the wisconsin badgers will now play duke for the ncaa tournament title monday night - their first final since 1941 . a crowd of more than a thousand gathered near uk 's lexington campus saturday night to mourn the loss . police in riot gear arrested 31 people at that gathering on charges of public intoxication and disorderly conduct .\nbrawl caught on video at langham creek high school , houston . the mother , who has not been identified , was reportedly angry with the girl because she had allegedly been bullying her daughter . a circle of students watch the brawl from the sidelines - the video was later posted on social media .\npromotion is part of al pacino 's speaking tour in the uk and ireland . package includes tickets to two shows and a five-star hotel stay in london . if it 's too pricey , fans can pay # 2,500 for alone time in his dressing room . scarface and godfather actor is speaking in glasgow , london and dublin .\nlouis jordan , 37 , had been missing at sea for more than two months before he was picked up off the north carolina coast by a ship on thursday . jordan had told his family in january that he was ` going into the open water ' to go fishing but the boat capsized and the mast broke . he was found sitting on the capsized hull of his sailboat and plucked from the sea by a helicopter . he had a broken collarbone and was dehydrated but looked in good health and was able to walk to the hospital unaided . ` to us it 's just a miracle . we 're just so thrilled that he was found alive , ' said his mother norma davis . jordan told rescuers he survived drinking rain water and eating raw fish and read a bible repeatedly from cover to cover .\njuventus defender giorgio chiellini was yellow carded against monaco in the champions league after a deliberate handball in the first minute of the game . he slipped on the turf and scrambled to recover the loose ball . the serie a leaders have progressed to the semi-finals of the competition . click here to read neil ashton 's match report from stade louis ii .\njapan 's kei nishikori emerged triumphant from second-round encounter . he beat his russian challenger in straight sets of 6-3 6-4 in barcelona . rafael nadal 's first match will be against fellow spaniard nicolas almagro .\ncbs news ` face the nation ' moderator bob schieffer announced wednesday at the texas journalism school named for him that he 'll be retiring this summer . schieffer is a former newspaper reporter at the fort worth star-telegram . he joined cbs news in 1969 and has been the network 's chief washington correspondent since 1992 . he began at the political affairs show ` face the nation ' in 1991 , asking direct questions to politicians in a texas twang . covered the assassination of jfk and 11 presidential campaigns - dating back to richard nixon .\ncatherine grove disappeared from fayetteville , arkansas , in july 2013 . two months later she was discovered living at the church of wells compound in wells , texas , saying she was ` seeking the lord ' the church denies all forms of leisure in favor of prayer and believes in deep self-loathing to repent for sin . grove left on april 2 and called 911 , saying she needed assistance . she was with her parents for six days before returning to the church . in a video posted to youtube she announced plans to marry ronnie saltsman , a church member , and denounce her family .\nlast month , the company and health officials said a 3-ounce cup of ice cream contaminated with listeriosis was traced to a plant oklahoma . officials determined at least four people hospitalized with the bacteria drank milkshakes that contained blue bell ice cream , three of whom later died . the disease primarily affects pregnant women , newborns , older adults and people with weakened immune systems .\njenson button and fernando alonso both retired in malaysia last month . button says , however , that mclaren are moving in the right direction . the chinese grand prix takes place in shanghai this weekend .\nhigh costs are one of the reasons which keep travel plans grounded . with some hard work and sacrifices people can find free places to stay . house-sitting is becoming a popular form of accommodation . people can also see the world by getting paid to teach english . ski resorts are always looking for instructors and hospitality staff .\nwoman called emergency services as she tried to drive to louisville hospital . interstate 65 north was closed so obama could drive into town from airport . a nurse also stuck in traffic helped her through the delivery .\nnovak djokovic beat andy murray 7-6 4-6 6-0 in florida on sunday . djokovic won the first set tie-break 7-3 after each player broke serve twice . murray claimed the second set 6-4 , breaking djokovic with the final game . the serbian raced away in the final set to claim his fifth miami open title . murray rises to world no 3 for making the final in key biscayne , florida . serena williams beat carla suarez navarro 6-2 6-0 in the women 's final .\nvincent kompany was injured in the manchester derby defeat by united . manuel pellegrini is not sure if the belgium star will return this season . the premier league champions face west ham at the etihad on sunday .\nian joll was a squadron leader who flew a bristol blenheim light bomber . was shot down during strafing attack on german aircraft and crash landed . joll was missing presumed dead , and his mother was sent a telegram . but minutes later he appeared at her front door after having survived the crash and made his way back to english shores to see his parents .\nemmanuel adebayor is behind harry kane and roberto soldado at spurs . adebayor last appeared for tottenham in 3-0 defeat at man united in march . tottenham are keen to get rid of the striker who earns # 170,000 a week . west ham tried to sign adebayor in january but deal did not go through .\nscotland has been named the most popular wedding destination in the uk . a quarter of all marriages in scotland involve couples from elsewhere . wedding tourism industry has had # 80 million impact on the economy . hometown hero , andy murray , to wed kim sears in dunblane cathedral .\nsouth korean lawmaker quotes intelligence officials as saying kim jong un countenances no disagreement . official reportedly executed for expressing dissatisfaction with forestry program . four member of unhasu orchestra also reportedly executed .\nkenne worthen was arrested on friday after some of his students told staff ` he was having inappropriate contact with one of their classmates ' the married father of one ` started flirting with the girl last august and asked for her mother 's permission for her to remain behind after school ' they ` kept in contact out of school by messaging on google hangouts ' the girl and worthen ` both admitted to the relationship ' and he now faces sexual exploitation and child molestation charges .\nferme de montagne is a boutique , chalet-style hotel in france . guests are wowed by a rich variety of peaks including the dents du midi . ski resort , les gets , boasts 400 miles of groomed pistes .\ncaesar went missing at the weekend from his owner 's home in ispheming . brandy savelle and tony gervasi followed his tracks and found blood . after news spread in the area , a dnr officer came to their home . he explained caesar came running at him and he shot him dead . he believed caesar was wild and a threat , he said . shooting occurred on state land so the officer was within his rights .\nmiss kensit said the duchess of cambridge is ` our generation 's suffragette ' the 47-year-old also said the duchess was her ` regal inspiration ' made the comments during an interview with a weekly fashion magazine . kate is famed for charity work but has never been dubbed a feminist before . the duchess is due to give birth to her second child later this month .\nwilliam mccollom , the chief of police in peachtree city , georgia , called 911 on january 1 to say he had accidentally shot his wife , margaret . margaret was left paralyzed below the waist and believes it was an accident . mccollom resigned from chief position in march after working in policing for nearly three decades . he was indicted on a reckless-conduct charge on wednesday .\nsmita srivastava currently holds record for longest hair in india . her hair was measured at 6ft -lrb- 1.8 m -rrb- in the limca book of records . it now stands at 7ft -lrb- 2.1 m -rrb- and has made her a local celebrity . smita has long way to go before she knocks current holder off her perch .\nproceeds will help build medical clinic in abidjan , ivory coast 's capital city . charity ball held at london 's dorchester hotel on saturday evening . drogba was joined by chelsea directors , players and staff at the event . grammy-nominee christina milian and fuse odg entertained guests . live auction included vip tickets to mayweather vs pacquiao fight .\nproject doubles number of new starter homes in england to 200,000 . properties will be 20 % cheaper than their market value for under-40s . starter homes can cost no more than # 250,000 or # 450,000 in london .\nfemale student , who has not been identified , pictured in snapchat photo . detailed ` reasons why usc wifi blows ' on board using a red marker pen . reasons included ` ratchets ' and ` parking ' , but top of the list was ` n ***** s ' student , formerly of kappa delta chapter sorority , has been suspended . also facing university code of conduct investigation into the incident .\nalan pardew was warned about his behaviour following touchline spat . the former newcastle boss called manuel pellegrini a ` f *** ing old c ** t ' he wrote to pellegrini to apologise for using such offensive language . crystal palace host manchester city at selhurst park on monday .\ntoulon reached the champions cup semi finals with win against wasps . but , bernard laporte 's men were underwhelmed by their performance . french side had frederic michalak and ali williams late try to thank . toulon will host leinster at marseille 's stade velodrome on april 19 .\nprovidenciales in the turks and caicos is the top tripadvisor travelers ' choice award winner for islands . maui ranks first on the top 10 islands list for the united states .\nformer qpr manager says raheem sterling should stay at liverpool . sterling has turned down a new # 100,000-a-week contract at the club . steve mcmanaman brands sterling interview ` ridiculous ' and ` baffling ' .\njustine miliband reveals how she met future labour leader at dinner party . but she was ` furious ' when she discovered he was dating the party hostess . mr miliband was at the time seeing newsnight editor stephanie flanders . she was just a number of women he dated from the same privileged clique .\nqueensland man shocked delivery from 5km away was sent interstate . package was sent on a 2,000 km journey before arriving at the man 's door . ` there 's just no common sense , ' the man , chris , says of delivery process . he suggested fines be introduced to help improve australia post 's service .\ngary neville has backed manuel pellegrini despite dismal run of form . pellegrini is under fire following city 's recent performances in the league . premier league holders sit fourth , 12 points adrift of chelsea . but neville insists pellegrini should be given time to turn things around .\naston villa manager tim sherwood faces chris ramsey 's qpr on tuesday . both clubs are fighting relegation from the premier league this season . sherwood and ramsey will put their friendship aside when they meet .\nsunderland face a fight to remain in the premier league after poor season . the black cats sit only three points above the drop zone . strugglers fell to humiliating 4-1 loss against crystal palace last weekend . sunderland are without a game this weekend before they travel to stoke .\n` temporary assistance for needy families ' funds can buy goods and services beyond food and necessities intended by program 's designers . tattoos , manicures , lingerie , jewelry , movie tickets , cruises and pornography will also be off the list if gov. sam brownback signs a bill . republicans in kansas also want to limit benefit recipients to $ 25 per day in cash withdrawals with their government-issued welfare debit cards . democrats say it 's mean-spirited and will make welfare enrollees think they 're ` less ' valuable ` than other people ' brownback 's administration has shrunk the tanf rolls by 60 per cent since 2011 ; the law would also force recipients to try to find work .\nthe labour leader insists snp mps will not be able to dictate policy . insisted the snp would not ` call the shots ' if there was a hung parliament . comes after nicola sturgeon said he could only govern with snp support . she promised to use snp influence to increase government spending . mr miliband also accepted his doom-laden claims about jobs were wrong . before the recent jobs boom he said millions would be put on the dole .\nit 's been a longtime tradition for the conga to play during memphis grizzlies games with cartoon bongos appearing on the court tv screen . spectators are then filmed attempting to play the imaginary drums . but one competitor who continues to turn heads is mother-of-two and attorney , malenda meacham . she says she likes to drink coffee before playing the air bongos so she can give it her all .\nround four of the 2015 formula one season takes place at the sakhir circuit for the bahrain grand prix . bahrain was the first country from the middle-east to hold a world championship grand prix in 2004 . fernando alonso is the most successful driver in sakhir having won three times in the desert . lewis hamilton looks for second win in bahrain in bid to make it three out of four victories in 2015 season . click here for all the latest f1 news .\nursula ward talks about the shock and pain of her son 's murder . odin lloyd 's sister said her brother 's death has felt like ' a bad dream '\nhow to be a young billionaire airs tonight on channel 4 . documentary features robyn exton , who 's launching a lesbian dating app . tech entrepreneur josh buckley attempts to save his shrinking fortune .\ndavid cameron claims he is a west ham fan during a speech . the prime minister has previously said he supported aston villa . the tory leader apologised , saying he experienced ` brain fade ' .\ntory chancellor mocks labour 's deputy leader as they share tv sofa . harman refused to row back from ` posh ' attacks on the conservatives . insisted tories are ` standing up for people at the top ' while others suffer . osborne says that as ex-pupils of st paul 's , the ` attack sounds a bit thin '\nthe attack at a garissa university last week killed 147 people , mostly students . mohamed mohamud taught at a madrassa in the kenyan town . authorities fear the rise of homegrown terrorists in the african country .\ndavid cameron and boris johnson visit nursery to promote childcare . duo left flummoxed by jigsaw aimed at teaching children about seasons . london mayor resorted to brute force to hammer wrong pieces together . prime minister gave his approval , telling boris : ` if in doubt , wedge it in '\nmarc benioff announced wednesday he was helping remove salesforce employees from indiana after numerous had complained to him . one employee has received a $ 50,000 ` relocation package ' said earlier he was reducing investments in the state and stopping all work-related travel and events . salesforce is a san francisco-based tech company that offers ` customer relationship management ' . lawmakers said friday morning they had amended the religious freedom restoration act so no one will ` be able to discriminate against anyone ' numerous companies and ceos have spoken out in protest .\njihadists shown smashing shrines and statues in 2,000-year old city that was declared a world heritage site in 1987 . isis thugs recorded on ladders using hammers and ak-47s to smash down historic relics on the ancient walls . the fanatics claim relics are ` false idols ' which promote idolatry that violate their interpretation of islamic law . authorities also believe they have been sold on the black market by the terrorist group to fund their atrocities .\nabraham lincoln and george washington were gay , says a new book by larry kramer , 79 , who is a gay activist and award winning writer . in ` the american people , ' kramer says that abraham lincoln was gay and his killer john wilkes booth was actually lincoln 's spurned gay lover . the book claims that the original jamestown settlement was all male and that men would have sexual relationships when there were no women . larry kramer claims that many historians do n't have ` gaydar ' and could n't recognize gay attributes .\nactivists in the missouri suburb , protesting over the shooting death of unarmed black teen michael brown , were also known as ` adversaries ' the national guard was first activated in ferguson in august after missouri governor jay nixon declared a state of emergency when riots broke out .\nsuperyacht owners spare no expense when they throw extravagant parties . they will do whatever it takes to impress their celebrity guests . one owner had two tigers brought in so guests could pose for selfies . a load of fresh fruit and vegetables was flown from france to the maldives . three ` a-list ' musical acts were hired for a private party on a desert island .\nconstable neale mcshane has spent 10 years patrolling birdsville in qld . the 59-year-old is one of the most remotely stationed officers in australia . his jurisdiction , which contains the simpson desert , is the size of the uk . temperatures in the remote region can reach upwards of 50 degrees . mcshane will retire later this year and police are looking for a replacement .\ngavin tobeck of washington was attacked by one-and-a-half-year-old smash while in his backyard on april 1 ; he was released late on tuesday . during the attack , his mother 's friend dumped a cup of hot coffee on the dog to get him to release his grip on gavin . the boy suffered from a broken cheekbone , jaw and nose bridge and lost five baby teeth and three permanent tooth buds . smash is scheduled to be euthanized on saturday by thurston county animal service .\nreal madrid host atletico in champions league quarter-final second leg . first leg at vicente calderon finished 0-0 after physical encounter . carlo ancelotti reportedly spoke to diego simeone about life in madrid . italian boss told him life would be a lot easier if atletico were n't around . real must win at the bernabeu to go through , and ancelotti may not last . winning nothing at real madrid results in an automatic dismissal . galacticos are currently two points adrift of la liga leaders barcelona . ancelotti has only won three times in 12 games against simeone 's atletico .\nreading beat bradford city in their fa cup quarter-final replay last month . charlie sumner , 20 , invaded reading 's madejski stadium pitch in march . he did four front flips during fa clash before being tackled by the stewards . sumner , from wokingham , faces three-year ban for home and away games . but he said he has no regrets and that his family had ` seen the funny side '\nformer journalist amanda goff has spoken out about her life as an escort . in a tell all book the mother of two revealed the abuse she was faced with . she told the world about her x-rated career on national television . since then she 's received a combination of hate and kindness from mothers , people in the sex industry and those aspiring to be sex workers . ms goff charges clients $ 800 an hour or $ 5,000 a night for her time .\nsecond-placed preston hosted league one leaders bristol city . jermaine beckford fired the home side into the lead in the 59th minute . aaron wilbraham equalised for bristol city four minutes later .\nphilippe coutinho has been nominated for pfa player of the year . brazil international arrived at liverpool from inter milan for # 8.5 m in 2013 . serie a side admit they should have shown more patience with reds star .\nthe revised indictment is released monday . dilkhayot kasimov is charged with two counts of providing support to a foreign terrorist organization . three other men have also been charged in the plot and pleaded not guilty .\nted cruz has built a brand as a stalwart conservative on fiscal issues . but he 's also eager to champion social issues at a time when many republicans are eager to avoid them . cruz says the gop needs to unite young libertarian-minded voters and evangelicals .\nmacaca leucogenys long mistaken for macaca assamensis say scientists . new macaque has a distinctive rounded rather than arrow shaped penis . researchers say the remote highland forests of medog , in south east tibet , could be hiding many other new species that are waiting to be discovered . they warn new macaque is threatened by hunting and habitat destruction .\nruth davison , of the national housing federation , is a critic of tory plan . she bought islington house for # 440,000 in 2005 , now worth # 1million . anti-right to buy ms davison , is also a member of her local labour party .\nthe seven signs around hollywood were erected this week by street artist plastic jesus . he says he got the idea while driving down melrose ave a few weeks ago . a kardashian shopping on the street caused such a ruckus that traffic was stopped on the busy avenue and he thought ` how is this news ? ' . plastic jesus says the signs are n't meant to target the kardashians specifically but the obsession with reality tv stars in general .\nfriends of tuti yusupova claim she was born in uzbekistan in 1880 . officials believe her birth certificate and passport can prove her age . they have asked the guinness book of records to update their figures . the previous record holder jeanne calment was 122 when she died .\nambra battilana , 22 , accused weinstein , 63 , of groping her at his manhattan office on friday night . the next day she snapped a picture of her matinee ticket to a preview of finding neverland , the hollywood producer 's new show . a movie industry source said weinstein gave battilana the ticket during their friday night meeting . source said weinstein also told her he 'd be backstage during the show . the married father-of-five has denied the model 's allegations . her ex-boyfriend says she is a ` victim of her beauty ' .\njack wilshere was joined by former england manager glenn hoddle . the arsenal midfielder interviewed pele at launch of 10ten talent . pele scored 77 goals in 92 games for brazil and won three world cups . the brazil legend says the 2014 world cup performance was not expected . the hosts were humiliated 7-1 by germany in the semi-finals last summer . pele is , however , not surprised by reaction of oscar and ramires this year .\njose mourinho : john terry was one step ahead of every other player . jamie carragher : terry is the best defender in the premier league era . chelsea drew 0-0 with arsenal at the emirates on sunday .\nover 250 thousand people have visited nazi concentration camp in 2015 . visits have increased by 40 % since same period of the previous year . january saw 70th anniversary of its liberation and a surge in interest .\nhometown of stephanie scott paid tribute to the murdered teacher with a stunning hot-air balloon display . more than a dozen hot air balloons hovered above the small community in canowindra . hundreds gathered to mourn the tragic death of the 26-year-old after she was murdered last week . friends and family gathered for a memorial picnic on saturday -- the day she would have been married .\nsons of new york times bestselling author , ann rule , have been charged with theft and forgery in alleged financial exploitation case . she has been in declining health since october 2013 and is ` vulnerable to undue influence ' , according to court documents . michael rule , 51 , is accused of forging her signature on her checks amounting to $ 103,628 between march 2014 to february 2015 . andrew rule , 54 , is accused of bullying her into giving him $ 23,327 and is said to have at times ` threatened suicide and screamed obscenities at her ' two sons , along with their two siblings , are given an estimated $ 25,000 combined monthly salary through mother 's corporation , rule enterprises . ann rule has published 33 books including small sacrifices and the stranger beside me , and eight books have been made into movies .\nnasuwt union said indiscipline is a ` significant problem ' at many schools . teachers are sworn at , kicked and punched while one had her arm broken . deputy headteacher was restraining boy when she fell and fractured arm . last year staff at eight schools refused to teach badly behaved pupils .\ncows are treated as sacred in nepal , where the majority are hindus . killing a cow used to be punishable by death , but now carries a 12-year jail term . nepalese government officials have informed the country 's pm . an internal inquiry is underway and the matter will be raised with pakistan .\nsean heslop has been questioned by detectives over the allegations . he has been suspended from the academies in folkestone and ramsgate . the governors confirmed a confidential investigation has been launched . mr heslop has been released on police bail until july 30 .\nengland drew 1-1 with italy in an international friendly in turin on tuesday . their flight home after the game was delayed due to a technical problem . but the team arrived safely in manchester on wednesday lunchtime . roy hodgson 's players will now return to their clubs ahead of the weekend .\ncases of nine out of 12 journalists awaiting trial were dropped today . urgent review of cases prompted after lucy panton 's conviction quashed . former news of the world reporter was first to be found guilty in case . calls made outside old bailey to stop ` persecuting innocent journalists ' .\nkatie gallegos from clackamas county , oregon , decided to take the pooch to a mcdonald 's drive-thru for an ice cream with his pal daisy . but while the small female pup takes a few ladylike licks , cooper gobbles the rest of the cone up in one bite . gallegos says ice cream is a weekly treat for her pets .\ndavid de gea has been integral to man united 's success this season . spanish keeper has been linked with a move to real madrid in the summer . phil neville says keeping de gea would be best business the club can do . gareth bale and de gea swap ? pair will likely be real madrid team-mates . click here for all the latest manchester united news .\ndame maggie smith 's character may appear in american period drama . the guilded age was by julian fellowes and is based in new york . there may also be a plot for american-born cora in the u.s. show .\nbecky james is in her last week of rehab following a serious knee injury . james is hoping she can resume ` normal training ' in upcoming weeks . the 23-year-old supported boyfriend george north during six nations .\nspanish national maría jose carrascosa , 49 , was jailed in 2006 after refusing to return her daughter to the custody of her father in new jersey . she was released friday , in part because her estranged ex peter innes wrote a letter asking the court to do what 's best for their daughter , now 14 . carrascosa , now the focus of widespread media attention in spain , plans to return to valencia as soon as possible to be with her daughter . the two have already had a tearful reunion after carrascosa 's release via skype .\nsan antonio spurs beat los angeles clippers 100-73 in game 3 . kawhi leonard scores 32 points as spurs take 2-1 lead in series . game 4 takes place on sunday at the at&t center in texas . houston rockets move 3-0 ahead on dallas mavericks with 130-128 win . washington wizards beat toronto raptors 106-99 in game 3 .\njordan henderson has signed a new five-year deal at anfield . the england international is hoping to add to his trophy cabinet . henderson has urged raheem sterling to follow lead by signing new deal .\nthierry fremaux , director of cannes , aims to make red carpet selfie-free . said celebrities taking pictures of themselves slows entire event down . mr fremaux then added : ` you never look as ugly as you do in a selfie ' stars featuring at 68th event include cate blanchett and michael caine .\nvictoria beckham has updated her black wardrobe with a hint of navy . the duchess of cambridge 's favourite nude shoes make legs appear leaner . sticking to one neutral colour palette like kim kardashian is flattering .\natletico madrid and real madrid played out 0-0 draw at vicente calderon . uefa champions league quarter-final dominated by second half scraps . mario mandzukic was in wars following battles with real madrid defenders . raphael varane , daniel carvajal and sergio ramos tussled with striker .\nfive-day-old hippopotamus calf mauled to death after straying between two brawling adults in south africa . helpless calf was hurled into the air as its mother looked on in horror , with the young hippo dying hours later . adult hippos had been fighting for hours before attacking the baby in the isimangaliso wetland park .\nkim howe 's stepchildren are said to have ` lawyered up ' following her death . mrs howe , 69 , died after being involved in a crash with the reality tv star . thought she has no living blood relatives so stepchildren have only claim . attorneys : ` sky 's the limit ' for pay out in a successful wrongful death suit .\nthe bbc is set to air a two-hour , real-time documentary following a boat . for many , the languid film will be as interesting as watching paint dry . corporation hopes it 'll be a change of pace from usual frenetic pace of tv .\nahead of launching her anticipated campaign on sunday , two senior advisers said strategy has echoes of obama 's 2012 re-election campaign . she is expected to reach out to donors in coming weeks , but does not plan to headline many fundraising events over the next month . advisers said she planned to talk about ways families can increase take-home pay and making higher education more affordable . she intends to sell herself as being able to work with congress , businesses and world leaders . president barack obama said on saturday ' i think she would be an excellent president ' clinton 's growing team of staffers began working friday out of a new campaign headquarters in brooklyn .\nkamal criticised umpires ' decision to award controversial no-ball against rohit sharma in india 's world cup match with bangladesh . the bangladeshi president alleged india had used its influence in the icc . governing body asked him to withdraw his statement or apologise . but kamal confirmed his intention to step down .\nthe fast food chain will pay a dollar over minimum wage at its company-owned restaurants . the pay hike will not affect franchise restaurants , which account for 90 percent of mcdonald 's locations . the company was targeted in protests last year , with fast food workers demonstrating for a union and a $ 15 an hour wage .\nchelsea played out a 0-0 draw with arsenal at the emirates on sunday . jose mourinho started with no striker despite having didier drogba . his tactics were not pretty but of deserving premier league champions . willian gave perhaps his best performance in a chelsea shirt .\n` mama ' june shannon and mike ` sugar bear ' thompson have filed a missing persons report after his older brother disappeared three days ago . billy thompson was last seen on saturday at sugar bear 's home in mcintyre , georgia . the family are especially worried because billy has been struggling to find work and recently suffered a difficult split from the mother of his children . since april 11 he has n't been seen and he is n't returning phone calls or texts .\ncomedian dave hughes called derryn hinch a ` w ** ker ' on monday 's q&a . the pair were speaking about the binge drinking culture in australia . radio broadcaster hinch said he drank because he liked ` the taste of wine ' . this was met with hughes replying : ` that 's because you 're a w ** ker ' hinch retorted with : ` it takes one to know one ' hughes said he stands by his comments made on monday night .\nmanhattan district attorney concluded ` criminal charge is not supported ' . 63-year-old was accused of grabbing model at tribeca film center office . father of five denied the claim but did face possible misdemeanor charges . battilana , 22 , did n't cooperate with police for four days after allegation . has been claimed delay was because she wanted to try and land a film role .\npaul downton loses job as england and wales cricket board 's managing director of cricket after a little more than a year in the job . chief executive of ecb , tom harrison , announced changes to the structure . downton 's job description has been abolished as a result . michael vaughan immediately said he would like to speak to the ecb about the newly created job of director of england cricket . fellow former skipper andrew strauss is another possible candidate .\namerican expat brad reynolds wrote his first review in 2010 while visiting saint petersburg , russia . the 38-year-old teacher critiques every hotel , restaurant and landmark he visits on holiday . brad 's 66,000 contributions to the travel website include nearly 40,000 photos of the places he has visited . the teacher has posted reviews from nearly 400 cities and almost 50 countries . now living in hong kong , his travel tips have been read by millions of people around the world .\noriol romeu is on a season-long loan at stuttgart from chelsea . the spanish midfielder predicts the scores in saturday 's matches . romeu goes head-to-head with sportsmail 's martin keown .\ntories returned donation from beatrice tollman , founder of hotel chain . she had previously been charged with conspiracy to evade millions of dollars in tax before the charges were dismissed by a judge . but on same day husband stanley tollman pleaded guilty to tax evasion .\nalistair brownlee beat javier gomez in a sprint finish in south africa . he was tripped but recovered in his world triathlon series return . olympic champion warned rivals he ` should only get fitter from here ' . great britain 's vicky holland won the women 's race on saturday .\nnew archeal virus infects primitive bacteria living off methane underground . the virus has genes that speed up its own mutation rate helping it to adapt . scientists believe it holds the key to life surviving in extreme environments . they discovered the virus in samples taken from beneath the santa monica basin off the coast of california but say the viruses live around the world .\na us naval officer suffered serious injuries after plunging off a balcony . guests at a perth hotel heard a disturbance between a man and a woman . police say the duo were involved in an altercation at about 1am on monday . it 's understood the pair were both heavily intoxicated at the time . the man broke his legs and sustained internal injuries , reports say . the 22-year-old was taken to hospital with non-life threatening injuries . details of the incident have been handed to the us navy for investigation .\nyes , it is possible to steal a robe from your hotel without being charged . many properties often have extra complimentary amenities up for grabs . but beware of minibar glasses - they 're often cleaned with furniture polish . author jacob tomsky answers every question you have about hotel stays .\nreading face arsenal at wembley on saturday in fa cup semi-final . aston villa and liverpool clash in second semi-final on sunday . chelsea and manchester united clash in premier league on saturday night .\nschoolboy xiao gao , 11 , drank water spiked with perfume and chalk dust . he has not spoken since the prank which went wrong five days ago . doctors ca n't explain sudden voice loss and think it may be psychological .\nhakeem kuta , 17 , died on saturday morning after being listed in critical condition at st barnabas hospital . police said he appeared to have misjudged a ledge while backing away from approaching cops and was injured after falling on thursday night . officers were responding to complaints of a group of teens smoking marijuana and loitering in the lobby of the building on valentine avenue .\nthe juventus starting line-up which faced monaco had average age of 30years and 64days . juventus have one step in champions league semi-finals after 1-0 win . inter milan hold record for oldest side to play in europe 's elite competition . portsmouth fielded most experienced xi to play in the premier league .\npekingese dogs marley and mitzy were taken from garden in doncaster . suspected pet-napper caught on camera after the animals were snatched . theft reported to the police and owners offer # 1,000 reward for their return .\nadam deacon , 32 , appeared in court over allegations against noel clarke . court hears abusive tweets were sent from actor 's account to mr clarke . some of them ` amounted to death threats ' made against his former friend . deacon denies harassment without violence against kidulthood writer .\nthe giant mansion used to film the hit show empire is on the market for $ 13 million following a price drop . the 20,000 square feet french country-style estate took five years to build . the five bedroom , nine bathroom house features waterfront views , custom woodwork and lots of space for entertaining . fit for a mogul , the house is owned by strip club owner sam cecola .\nadult-themed ` midsummer night wet dream ' party got the mansion its first noise complaint in august 2014 . school was called pharaoh 's daughters and advertised to help ` promising young strippers ' find work at ` prestigious gentlemen 's clubs ' . it has since been shut down by its principal owner , canadian millionaire gordon lownds . lownds said he had planned to film a reality show at the mansion about the day-to-day lives of strippers .\nfireball captured on camera by the uk meteor observing network . it says that it came from an asteroid orbiting between mars and jupiter . the meteor burned up at the relatively low altitude of 21 miles . there were dozens of sightings of the event , from england to ireland .\nrobert gentile was charged with selling a firearm to an undercover agent . but his attorney claims the arrest was a ruse to get gentile to talk about the 1990 boston art heist at the isabel stewart gardner museum . gentile 's house was searched in 2012 and police found a list of the stolen art pieces and their estimated value , as well as police uniforms . the half-a-billion heist remains unsolved and fbi has never come close to finding thieves . gardner museum continues to display empty frames , and is offering $ 5million reward for the return of the works .\nfreddie roach said floyd mayweather would be better off with his uncle . mayweather jnr will fight manny pacquiao in las vegas on may 2 . the mega-fight is expected to generate a final purse of $ 300m . mayweather uploads photo inside his private jet ahead of pacquiao bout . pacquiao turns on the charm for interview on mario lopez 's extra . click here for all the latest mayweather vs pacquiao news .\nscientists hope immunisation against virus is possible with one injection . vaccine based on animal virus and the protein covering of ebola virus . ebola antigen in vaccine acts as ` trojan horse ' to create immune response . ebola has killed more than 10,000 people in a year across six countries .\nprotein world 's billboard features a svelte bikini-clad model asking ` are you beach body ready ? ' the advertising campaign is facing a massive backlash with vandalised posters , a petition and a protest rally . now head of marketing richard staveley revealed the company has even had bomb threats over the ad . but he added it had been ' a brilliant campaign ' and protein world had no plans to change it any time soon .\nresearchers at the university of washington studied so-called telerobots . they found robots designed for surgery could be hacked and manipulated . this is because robots being tested were operated over public networks . it allowed the researchers to access them and stop them working .\nrussia says kim jong un has canceled trip to moscow . frida ghitis : gauging kim 's state of mind no easy task .\ncesc fabregas had his nose broken in a challenge with charlie adam . chelsea midfielder has travelled to italy to have a protective mask fitted . the spaniard will wear guard branded with his initials and squad number . ortholabsport have also made masks for petr cech and fernando torres .\nten years on , glitter 's victim tells how shamed star 's abuse ruined her life . had sex with her three times when she was just 11 and a virgin . he paid # 9 each time . fiend faced death penalty for child rape , but paid victims ' families to get off . given just three-year jail term for the lesser charge of child abuse . victim bravely spoke exclusively to mailonline to tell of her heartache .\nthe group were on a crabbing trip near anderson island , washington . they video two killer whales jumping from water at a safe distance . suddenly the pod get closer and swim underneath the small boat . video maker and friends panic and begin rowing back to shore .\nsteve spowart rescued his friend 's horses stranded in deep storm water by paddling out to them on a surfboard . the animals were in flooded fields near dungog , in the nsw hunter region . one of the horses was caught in barbed wire and became startled as mr spowart tried to free it . dungog is one of the areas hardest hit in the state by what 's being called the storm of the century . three people have died in the severe weather and four houses were washed away .\njames weld had to stump up # 15,000 to restore steps to the beach at durdle door which were washed away in 2012 . decision ends a three-year stand-off with natural england over who was responsible for access to tourist attraction . in 2009 , natural england was handed responsibility for the country 's coastal paths under the coastal access act . but the government body claimed steps were n't part of coastal route and refused to pay for repairs for three years .\nnavinder sarao lived in parents ' modest home in suburban west london . thousands of his ` high-frequency trades ' could be faster than city dealers . 36-year-old amassed over # 26million in just four years living at their house . he is accused of using computer programs to create ` spoof ' transactions .\nchad hurst of salt lake city , utah was sucker punched by a plane passenger when they landed in the city sunday . this after hurst asked the young man to stop using foul language following their flight . hurst , a former corrections officer , then took down the man and pinned his arms behind his back while waiting for law enforcement . the young man , who has still not been named by police , was charged with assault and public intoxication .\nlaura bernardini , a lifelong catholic , has decided to finally read the bible from cover to cover . this is week two . some surprises : two creation stories , seth , and what on earth are the `` men of heaven '' ?\ndavid cameron will announce the new # 350 million childcare places today . he will cut tax relief on pension contributions for those on more than # 150k . mr cameron will tell his audience he wants to ` make hard work pay ' . he will say that work rather than benefits is the best way to avoid poverty .\ngeneral in charge of us army recruiting has warned that america 's growing obesity epidemic ` is becoming a national security issue ' major general allen batschelet says 10 percent of young men and women are currently refused because they are too heavy . current trends project that the military will be unable to recruit enough qualified soldiers by the end of the decade . maximum body fat percentage that the army allows for recruits aged 17-20 is 20 percent for men and 30 percent for females .\npope francis says christians coming under increasing number of attacks . asked for ` tangible help ' for those ` persecuted solely for being christian ' speech follows attack on kenyan university which left 148 students dead .\nconrad clitheroe , 54 , and gary cooper , 45 , were taken to a police station . they were told they would be allowed to leave if they signed arabic form . but they were held in prison along with friend neil munro for two months . officials confirmed today that charges of espionage against them dropped .\na tory government would create a new principle to review snp policies . prime minister to tell english voters snp 's powers could impact their lives . there has been growing resentment at ` apartheid ' between north and south . cancer drugs are available on nhs in scotland but not england and wales .\ngareth blanks was beaten as he walked home from the shops in truro . the 31-year-old has autism and police confirmed that he is vulnerable . three men and a woman began punching and kicking him for no reason . police believe that the four attackers are all in their late teens or early 20s .\nthe exotic driving experience park lets racing fans drive top-end cars . gary terry , 36 , died in the crash and was on the passengers side . tavon watson , 24-year-old hotel bellhop , was driving and was taken to hospital for treatment . day at the racetrack was a gift from watson 's wife for his birthday . disney world spokesman said driver ` lost control ' of the lamborghini . family friend said working at disney attraction was a ` dream job ' for terry , a former race car driver from michigan .\nmarvel studios releases first looks at paul bettany as the vision in `` avengers : age of ultron '' and charlie cox in full `` daredevil '' costume . jamie bell 's character of the thing was also unveiled for 20th century fox 's marvel-based reboot of `` fantastic four '' bryan singer unveiled the first look at `` x-men : apocalypse '' angel played by ben hardy .\nmarie surprenant , from atlanta , georgia , was left paraplegic after being severely abused as an infant . when marie was eight-months-old she was admitted to the emergency room with more than 14 fractures , weighing only 14lbs . after social workers investigated her case , she was put into foster care and adopted by michele surprenant . michele , who is also a social worker , says it was her adoptive daughter 's idea to write the letter because she is grateful for her new home .\nglenn murray has scored four goals in 364 minutes this season . crystal palace striker has best minutes-per-goal ratio in premier league . olivier giroud third on the list , harry kane fourth , diego costa fifth .\nquinn patrick stands over the fish while on a trip with his dad . bowfin propels itself from ground and slaps him in the face . makes a noise not dissimilar to a sound effect used in cartoons . youngster stumbles backwards but takes the hit remarkably well .\ndea head michele leonhart is expected to resign soon , an obama administration official said tuesday . she has led the agency since 2007 and is only the second woman to hold the job . has been criticized as ` woefully ' unable to change the agency 's culture as detailed allegations about agent scandals mount .\nkevin pietersen was sacked by england 14 months ago after ashes defeat . batsman scored 170 on his county cricket return for surrey last week . pietersen wants to make a sensational return to the england side this year . but andrew flintoff thinks time is running out for him to resurrect career .\nfa cup is set to be named emirates fa cup as part of sponsorship deal . it is understood fa have agreed a three-year sponsorship deal with airline . the agreement is due to be rubber-stamped on thursday and will be worth at least # 10million-per-year .\nchad mendes expects war with ricardo lamas in saturday 's main event . having both fallen to featherweight champion jose aldo in the past , both men feel a win could put them back in title contention . lamas thinks that both he and mendes will drag the best out of each other . mendes sees aldo taking july 11 's title fight with conor mcgregor . two of the lightweight division 's best strikers , al iaquinta and jorge masvidal , meet in the co-main event .\nphotographer j.m. giordano was covering freddie gray protests in baltimore , maryland saturday night when he was attacked by police . a friend recorded the moment cops in swat gear ` swarmed over ' him laying helpless on the ground . in the background , a friend is heard yelling ` he 's a photographer ! he 's press ! ' .\nthe migrants were picked up 30 miles off the coast of libya , an italian leader says . at least 480 migrants have died while crossing the mediterranean this year .\nwarning graphic content . bill parker , 34 , of mississippi was mowing his lawn on april 19 when the wire shot up his left nostril and was lodged in his sinus cavity . dr timothy haffey removed the wire through a 20-minute sinus surgery and said the wire miraculously dodged parker 's important nerves and arteries . the wire was sent to a pathology lab and parker is taking antibiotics . dr haffey said parker should not have any long-term effects .\nkristen jarvis , 34 , is moving on to become chief of staff to the ford foundation president darren walker in new york . the spelman college graduate decided to move on as the focus in washington has shifted from the obamas to the 2016 campaign . jarvis first joined the obamas ' orbit in 2005 when she took a job in then senator obama 's office .\nactress jane horrocks drives her teenagers dylan and molly down route 1 . the travel from san francisco to the city of angels in three weeks . ` take your foot off the gas , relax and take it all in ' says jane .\nan author says `` avengers '' director joss whedon and `` cabin '' director drew goddard stole his idea . peter gallagher alleges similarities to his `` the little white trip : a night in the pines '' from 2006 .\ntheodosia aresti , 71 , was horrified when sewage erupted from her bath . the cause was a blocked pipe and her flat became filled with human waste . sewage from 239 other flats spewed into her apartment . tide of excrement soaked her carpet and left bedroom smelling ` foul ' was forced to sleep in sewage-filled flat for four days . workmen eventually fixed the problem and replaced the carpet . she says the experience left her needing counselling . theodosia aresti appears on britain 's horror homes , tonight at 8pm on channel 5 .\nronda rousey told roddy piper 's podcast she loved her wwe appearance . ufc star 's debut in the ring with the rock at wrestlemania 31 was a hit . she would n't commit to another appearance in interview with wwe legend . rousey 's focus in on ufc title defense against bethe correia on august 1 . read : rousey backs pacquiao as fast and furious 7 star visits filipino .\nscottish football coverage is at the mercy of sky and bt 's schedules . yet , scottish football is never afforded the same precedence as england 's . the demand for scottish football is nearing an all-time low .\ndanish scientists studied ice hidden under the surface of mars . dust is thought to be covering huge glaciers on the surface . and the researchers say there is more water-ice than anticipated . if spread out it would cover the surface in 3.6 ft -lrb- 1.1 metres -rrb- of ice .\nmr miliband makes first appearance on the campaign trail in over 48 hours . labour leader out campaigning in bristol after going to ground over easter . cameron , clegg , farage and sturgeon all campaigned over the weekend . the pm has today embarked on whirlwind tour of all four nations of the uk .\nfirst drawing of yellow submarine to fetch more than # 10,000 at auction . rare celluloid painting depicts vessel used in 1968 film starring beatles . featuring handwritten notes , it was used as a master for animation team . yellow submarine was a success and led to the beatles ' 10th studio album .\nmanchester city defeated west ham 2-0 in the premier league on sunday . sam allardyce was seen ranting at fourth official during game at the etihad . hammers boss explained he was frustrated that referee anthony taylor missed eliaquim mangala 's foul on stewart downing .\ndavid adam pate from lancaster , north carolina , killed ricky james in 2013 . lured him into some woods with wine before knifing him 39 times . dumped his body in a creek , but it was found a month later by children . told police he used a knife ` like the one michael myers used in halloween ' 25-year-old pleaded guilty to the brutal slaying in court on thursday . victim 's brothers said they hope he suffers in prison and is the ` devil ' . one of them stormed out of court screaming after testifying at sentencing .\nchelsea owner roman abramovich has bought a new # 17.1 m property . he has bought tel aviv 's varsano hotel to convert into his israeli home . the hotel is listed as a preserved building and covers 1,500 square metres .\nsarah stage , 30 , welcomed son james hunter into the world last tuesday . the baby boy weighed eight pounds , seven ounces and was 22 inches long . during her pregnancy sarah was criticized for her trim figure and abs .\nthe $ 39.99 -lrb- # 26 -rrb- gadget is called the nanoheat wireless heated mug . it keeps hot drinks at between 68 and 71 °c -lrb- 155 and 160 °f -rrb- for 45 minutes . mug can be used more than seven times before it needs to be charged . and it can be charged wirelessly or using a traditional usb cord .\nrussian authorities have cancelled the release of hollywood 's child 44 . the blockbuster film stars tom hardy , gary oldman and vincent cassel . it depicts a private investigator attempting to hunt down a serial child killer . russia 's culture minister accused the film of ` distortion of historical facts '\nmary cowan , 92 , has generously left share of # 2million fortune to charities . former teacher said in will # 325,000 should help poor children go to school . other groups to benefit include blind veterans uk and the salvation army . money also left to alzheimer scotland , children 's hospital and churches .\none-year-old baby malaja was shot while riding in backseat of her parents ' car in seattle suburb thursday afternoon . driver and passenger of passing car pulled up and opened fire on silver chevy impala carrying malaja .\ndefender jason denayer will not be returning to celtic next season . manchester city have decided he should play championship football . denayer nominated for the pfa scotland player of the year award . click here for all the latest celtic news .\nanticipated departure stems from concern that agents of the federal drug agency divulged secrets at sex parties with prostitutes . colombian drug lords may have staged rendezvous to elicit information . house committee on oversight and government reform is investigating . dea declined to comment today on her reported resignation ; the white house would n't give leonhart its backing . leonhart , head of the agency since 2007 , has been accused by the inspector general of not giving out stiff enough penalties for misconduct .\nchef ally lees of alfie bird 's in birmingham made festive eggy dish . beastly omelette contains 12,000 calories and 945g of protein . three food wide dish took an hour to cook for the easter promotion .\n22 people had legal action taken against them after a sydney dance party . 20 people were charged for drug related offences during the all-night rave . a 22-year-old spent the night behind bars after he was allegedly found with 441 mdma pills at ` midnight mafia ' at the sydney showground . the marrickville man fronted parramatta local court on sunday morning .\ncustomer being charged one yuan -lrb- 11p -rrb- extra as an ` air-purifying fee ' . eight air purifiers operate 24 hours a day between two floors . manager says move will raise awareness about air pollution . customers said they think fresher air makes their drinks more enjoyable . the café is located in hangzhou , which had 154 days of smog last year .\nmarc albrighton opens the scoring for leicester with neat finish in the area after a slip by cesar azpilicueta . didier drogba equalises for chelsea just three minutes into the second half after an assist from branislav ivanovic . john terry puts chelsea ahead with a close-range finish with just 11 minutes left to play . ramires seals the win for chelsea with a stunning drilled effort from just outside the box . chelsea can win the premier league title with victory against crystal palace at stamford bridge on sunday .\nkalman kallai travelled from borden , ontario to comox , british columbia . he brought the green rocking chair to make his journey more interesting . along the way the traveller was accompanied by friends and his father . the journey took nine days to complete and 4500km of land was covered .\nreal madrid beat malaga 3-1 on saturday but gareth bale got injured . they face atletico madrid in the champions league quarter-finals . welshman has a calf problem that could sideline him on wednesday . luka modric is also missing for real and could be out for six weeks .\nqpr host chelsea at loftus road in sunday 's west london derby . chris ramsey 's side need points as they battle the drop with six games left . the qpr boss believes chelsea can afford a blip in race for the title .\nnato is holding huge war games exercises off the coast of scotland . alliance says planning started long before russia renewed its status as the alliance 's chief adversary . but commanding officer says russia 's behavior is an added motivation to do well in these exercises .\nnick woodman 's dynamic cameras became instant success in 2006 . before they took off , he acted as the model for the self-made adverts . now , nine years later , he is a billionaire and top of bloomberg pay index .\ncolby ramos-francis was born with a small growth over his eyelid . but this soon developed into a large , uncomfortable benign tumour . parents claim nhs doctors could n't help and would n't perform surgery . he has now successfully had the op in new york - thanks to a us charity .\nthe fashion police host dated actor jerry from 2003 to 2004 . in her new tell-all going off script she confessed he cheated on her . first he hooked up with singer geri halliwell then actress rebecca romijn . o'connell went on to marry rebecca in 2007 and they had two children .\nhill was diagnosed with a rare form of brain cancer when she was 18 and by last september , she was told she would not live past december . she passed away in hospital on friday after defying doctors ' expectations . last year , the ncaa agreed to bring the season 's first game forward so she could achieve her dream of playing collegiate basketball . she ultimately played four games for mount st. joseph university before her health forced her to quit and coach instead . she continued to raise awareness for her cancer and raised $ 1.5 million .\nsokaze-ki q uses fluid dynamics to boost how much air is released . air is brought through the rear of the 10-inch -lrb- 25cm -rrb- device . a ` high-pressure jet airflow ' then turns this air into blast of directed ` wind ' the ` q ' fan is on sale in japan for ¥ 39,350 -lrb- # 220 -rrb- .\nfootage shows best friends carmarie and kanya sat buckled up in the device at the indy speedway park on panama city beach in florida . at the start they appear to be pretty calm but when the carriage tilts back and fires 300ft-high panic sets in . at one point carmarie - who appears to be older - tells kanya : ` if i die , tell my mama i love her ' . to date the clip of their traumatic theme park outing has been watched more than 17 million times on facebook .\na quote attributed to maya angelou on her commemorative stamp released by the us postal service is actually that of another writer . ' a bird does n't sing because it has an answer , it sings because it has a song , ' reads the stamp , a quote that has long been attributed to angelou . joan walsh anglund wrote the words in her 1967 book a cup of sun . angelou , the acclaimed author of such classics as i know why the cage bird sings , was issued the forever stamp for her contributions to the arts . the stamp was unveiled tuesday at an event featuring first lady michelle obama , oprah winfrey and postmaster general megan j. brennan .\ntim sherwood replaced paul lambert as aston villa boss in february . villa are four points above the bottom three with five games remaining . philippe senderos and aly cissokho are available again .\npsg take on barcelona in the champions league quarter-final first leg . but ligue 1 leaders will be without a trio of key players for the fixture . zlatan ibrahimovic , david luiz and marco verratti are all missing . la liga giants barcelona will be without dani alves for the clash in paris .\nstoll is a center who has played for the kings since 2008 . he is reportedly involved with sportscaster and `` dancing with the stars '' host erin andrews .\nlabour has jumped to 35 % in the polls , up one point from last month . the tories remain stuck on 33 % , according to the pollsters ipsos mori . greens have pushed nick clegg 's lib dems into a humiliating fifth place . lib dems are on 7 % , the greens 8 % and nigel farage 's ukip 10 % .\nmap spans nearly two billion light years . will help astrophysicists predict the universe 's expansion . could help identify where , and how much dark matter exists .\nit took jurors just an hour to convict susan monica on the murder charges on tuesday . on monday , monica 's former cellmate testified in court and said she sent her a letter signed from ` the sweetest murderer in jackson county ' prosecutors said monica murdered two handymen who worked on her farm between 2012 and 2013 . monica said she killed the first man , stephen delicino , out of self defense when he attacked her . she says she later found robert haney being eaten by her pigs and shot him out of mercy . however , she never reported either of their deaths to police . the remains were found buried on her farm , with signs that they had been fed on by animals - most likely her pigs .\nunnamed teacher at foster high school in richmond , texas , allegedly gave his students anti-muslim propaganda during class . the eight-page handout , entitled islam/radical islam -lrb- did you know -rrb- , included references to terrorism and beheadings . the lamar consolidated independent school district has admitted that it was n't approved by administrators . a muslim student showed the document to her parents who contacted the council of american islamic relations and they complained to the school .\nbryan santana of orlando , florida has been charged with murder in the death of his former roommate shelby fazio . in court documents , santana admitted to strangling and stabbing fazio , a disney world employee , to death , and then having sex with her corpse . he is also charged with attempted murder for allegedly attacking their third roommate with a knife and killing fazio 's dog . his trial was set to begin on tuesday , but was pushed back after he smeared feces all over his body at the courthouse and tried to hit an officer . in opening statements on wednesday , prosecutors described how he ` delighted ' in the murder of fazio . they also showed photos of the messages he allegedly wrote on his wall in her dog 's blood , including one that said ` i 'm not sorry for what i did ' .\nben affleck admits he asked pbs show `` finding your roots '' to avoid mentioning his slave-owning ancestor . dean obeidallah says the actor and the show were right to leave the detail out .\nfredric brandt had been suicidally depressed for 10 days before he took his own life . police report into the 65-year-old 's suicide reveals brandt was found on sunday morning by friend , john joseph hupert , inside his garage . hupert was staying with the cosmetic surgeon on doctors orders to monitor brandt 's suicidal tendencies . hupert revealed that brandt had been taking medication for his depression . paramedics declared the plastic surgeon dead at the scene after having found he hanged himself . brandt 's psychiatrist , dr. saida koita , arrived soon afterwards and told police she had been treating brandt daily . brandt was reportedly devastated by parody character dr franff in hit netflix series unbreakable kimmy schmidt which debuted on march 6 . friends said that , though dr brandt was upset , show did n't cause his death .\nmilk is main source of iodine in british diet , providing 40 % of daily intake . academics say switching to organic milk could significantly impact health . uht longlife milk was also found to have similarly low levels of the mineral .\nwhitney fetters turned herself into cops in february after it emerged she ` had exchanged x-rated photos and videos with the student ' on wednesday , she was charged with soliciting sex with a minor for ` inviting the boy over to stay the night so they could have sex ' but the plans were scuppered when the school learned of their relationship . fetters allegedly began texting the boy when he was just 12 .\nspanish football manager tore the side of his trousers exposing his thigh . guardiola said later : ` i 'll have to buy new ones for the next match ' trend for tight suits has seen dermot o'leary and olly murs left red-faced . fashion blogger says men should n't ` stuff themselves ' into too-snug suits .\njockey blake shinn lost his pants while riding down the home straight . ` the pants went ... and there was nothing i could do , ' he said afterwards . shinn , atop miss royale , only managed to finish second in the race . acting chief steward greg rudolph said he had never seen anything like it .\njoe root threw bat down in his anger when he was denied double century . england 's root was 182 not out when james anderson was run out . jason holder ran anderson out after the bowler strolled back to wicket . pair kissed and made up as they made way in for lunch during the west indies ' second innings .\nsilas and eli keslar , both 18 months old , drowned in an arizona canal . their mother was trying to fend of a bee when the stroller rolled away , police say .\nliverpool are taking action against fan stephen dodd who photographed asif bodi and abubakar bhula praying at anfield last month . dodd captioned the photo : ` muslims praying at half time #disgrace ' . kaka famously displayed a ' i belong to jesus ' vest after ac milan 's champions league win against liverpool in 2007 . bubba watson and webb simpson are part of a pga tour bible group . religion in sport only becomes a topic when it is someone else 's religion .\nthose named nigel are twice as likely to vote ukip , according to research . the three names most likely to vote tory are charlotte , fiona and pauline . and those named michelle , june or andy are likely to vote for labour .\nsheriff mbye , 18 , died in hospital after being stabbed outside a kfc . a 19-year-old suffered serious stab wounds and is in a critical condition . police are trying to trace a ` number of men ' as part of murder investigation . an 18-year-old from birmingham has been arrested on suspicion of murder .\nterry richardson is accused of releasing film without model permission . the minute-long footage shows upton dancing in a skimpy bikini . the photographer has long courted controversy . he has previously been accused of sexual assaulting young models . richardson has previously denied the allegations made against him .\nnathan brown , 19 , was working with father david testing lights in a factory . he climbed up on a crane but accidentally touched exposed power supply . the shock made him fall 12ft head first and he died of his injuries . inquest hears that the power supply was not clearly marked as dangerous .\ngreenstone acts like a booster for so-called wireless mesh networks . it currently works with open garden 's firechat ` off-the-grid ' firechat app . both use an ios feature called multipeer connectivity framework -lrb- mcf -rrb- . instead of sending messages using a mobile signal , the free app and gadget create a localised network where each mobile becomes a ` node ' .\natletico madrid 0-0 real madrid : click here for martin samuel 's report . atletico have a knack for replacing star players with others just as good . jan oblak is the latest , having replaced goalkeeper thibaut courtois . mario mandzukic looks to be a suitable replacement for diego costa .\nstore manager claims detective ian cyrus was caught on camera stealing . new york detectives were arresting workers for selling untaxed cigarettes . he 's been suspended without pay and his supervisor placed on desk duty .\njuventus take on monaco in champions league quarter-final on tuesday . juve coach massimiliano allegri warns it could be a ` boring ' game . monaco beat arsenal in the last-16 and are the outsiders in the tie .\npictures show the laugh out loud moment loved up tortoise takes a tumble . photographed at kiev zoo , he falls flat on his back while trying to mate . there are no second chances for the reptile who is left all alone in the mud .\ndanielle davis of savannah , georgia looked to her faith after her husband brian nearly died seven months after they were married in 2011 . doctors encouraged her to pull the plug but she refused and brian was eventually able to go home in her care . three years of brian 's memories were wiped and he 's challenged by everyday task but continues to improve with danielle 's help .\nthe two jets have been permanent fixtures at memphis estate for 30 years . but city council has agreed hound dog ii and lisa marie can be taken away . they will form part of a new museum about the king of rock 'n' roll . decision follows a year of wrangling between planes ' owner and graceland .\nvictim 's brother says he felt `` anger and happy at the same time '' upon seeing video . officer michael slager pulls over scott at 9:33 a.m. saturday . video shows the officer firing eight times as scott runs away , with his back to police .\nman united have shown great promise for the future in recent matches . louis van gaal has a decent squad at old trafford but must add to it . gareth bale , memphis depay , mats hummels and nathaniel clyne on list . van gaal is a serial winner and can get united challenging for honours . dutchman will want to leave united with record that compares to sir alex. read : liverpool launch bid to rival man utd for psv winger depay .\nabe did express `` eternal condolences '' about the loss of american lives in world war ii . but he has been evasive and ambiguous about embracing responsibility for japan 's wartime actions . kingston : he is putting his personal agenda on history ahead of the national interest .\nkate t. parker was inspired to create her series strong is the new pretty after years of shooting pictures of her daughters ella , nine , and alice , six .\njack black the friendly jackdaw is a welcome resident in penryn , cornwall . one fan has set up a facebook page for him which has 450 members . they share pictures , videos and stories about jack and his adventures .\nschool print shop operator ron lane was killed , college president says . the man believed to be the gunman is identified as former student kenneth stancil . the two knew each other , authorities say .\nthe prosecutor looking at allegations against argentina 's president says no crime committed . the original prosecutor who brought the case was found dead in january .\nfloyd mayweather will have $ 25,000 mouthguard for manny pacquiao bout . the mouthguard to contain diamonds , gold and $ 100 dollar bills . he also spent $ 300,000 on mercedes ` land yacht ' people carrier . carl foch unlikely to meet andre ward or julio cesar chavez jnr . click here for all the latest news from the world of boxing .\nex-soldier riki hughes , 31 , was the club secretary at tidworth town fc . he set up fake bank account in the name of the team 's landlord and siphoned off at least # 17,000 . jailed for 16 months after spending the cash on camping gear and holiday .\nfloyd mayweather and manny pacquiao go toe-to-toe on may 2 in vegas . pacquiao shared a video of his morning run as he continued his training . mayweather also shared a video of his late-night training routine . read : muhammad ali hopes pacquiao beats mayweather . click here for the latest pacquiao vs mayweather news .\nsteve mcclaren says newcastle were interested in him to become their new manager after alan pardew left the club for crystal palace . the former england boss is believed to be on the shortlist for the newcastle job next term . mcclaren is on course to reach the play-offs with derby this season .\na coroner found child protection agency broken and fundamentally flawed . chloe valentine died from head injuries in 2012 after falling off motorbike . she was forced to ride it by her drug addicted mother and her partner over three days . coroner condemned families sa 's dealings with chloe 's mum . their interactions involved a ` history of drift , irresolution and aimlessness ' coroner recommended 22 changes to the government . grandmother belinda valentine said the families could now move forward . ` the sun will rise in the morning , even though we do n't want it to ' . ` we are actually the lucky ones , because we had chloe in our life ' .\nwarning : graphic content . terrorists killed 148 people in the garissa university college massacre . kenyan special forces took seven hours to arrive at the scene . some journalists arrived at university before troops , who came by air . government defended slow response time with football analogy .\nresearchers in usa , canada and germany analyzed 6,100 responses . found men were more likely than women to say ends justify the means . whichever way they decided , women also found the decisions harder . scientists speculated it is because women 's reasoning is more emotional .\nroma gang ` sold ' newborn baby to childless french couple in 2013 . gang received # 6,500 and a car , but claims the boy was a ` gift ' faked id to make it look like frenchwoman was baby 's mother .\nuk-wide conspiracy offered cheap erectile dysfunction pills to customers . neil gilbert headed one group , which made up to # 60,000 a week in sales . family and friends were recruited to help with massive criminal enterprise . eight-year conspiracy continued even after gang was arrested in 2011 .\nnetwork regains control of facebook page and one of its 11 channels . isis logos displayed but no claim of responsibility made by any group . network reaches 260 million homes worldwide .\nrspca considering dropping policy of prosecuting people for fox hunting . animal charity dropped its last case against hunt master and has none left . a total of # 22.5 million was spent on animal welfare cases last year alone . campaigners say rspca should stop ` pursuing pointless prosecutions '\nthe stunt was pulled by local tourism groups and an ecuador airline . fake signs , passport control , posters and adverts were created in the ruse . it sparked outrage from costa rican officials prompting a formal apology . the video was taken down , but was reuploaded by la nación .\na total of 47 bodies have been exhumed from two mass graves . iraqis find mass graves inside presidential palace compound in tikrit . isis claimed to have executed 1,700 iraqi soldiers captured outside camp speicher .\nnorthern ireland beat finland 2-1 in their euro 2016 qualifier on sunday . northern ireland host romania next in june at windsor park . match at venue is dependent on structural engineers damage assessment . windsor park 's west stand suffered damage on monday night .\nderry mathews will fight ismael barroso for the interim wba world title . mathews was set to face richar abril , who was forced to withdraw through illness . the liverpudlian will now face venezuelan southpaw barroso on april 18 .\nmotiongate dubai will open in october , 2016 with themed zones . guests can enjoy rides and gift shops based on the billion dollar franchise . there will also be live performances based on step up movies . the dubai theme park will be four million square foot in size .\nscientists quizzed more than 5,000 teenagers about their drinking habits . also the films they watched , including bridget jones ' diary and aviator . those who watched most films featuring characters drinking alcohol were 20 % more likely to have tried alcohol and 70 % more likely to binge drink . researchers have called for films to be rated by alcohol content .\nsnl castmember skewers hillary clinton , obama and republican hopefuls . twenty-minute speech poked fun at buzzfeed , brian williams scandal . jokes touched on police brutality and secret service security lapses .\nisis has announced that all nurses working for them must speak english . rule was one of the entry requirements for a new nursing school in raqqa . nhs has also attempted to introduce english language checks for nurses . but despite the law being approved , a lengthy consultation process means eu-trained nurses are still being employed without english tests .\nreality star was acting ` unruly ' and ` reeked of alcohol ' at the polo lounge . she was asked to leave restaurant but became belligerent and locked herself in a bathroom . after being taken to jail she was cited for trespass , resisting arrest , battery on a police officer and drunk in public . mother-of-four staunchly defended her sobriety in rhobh finale this week . rhobh cast mates brandi glanville , eileen davidson and lisa rinna shares reactions on twitter .\nlauren hill was diagnosed with an inoperable form of brain cancer aged 18 . despite illness , she achieved dream to play college basketball in cincinnati . also raised a huge $ 1.5 million for diffuse intrinsic pontine glioma research . she died in hospital on friday , aged 19 , after defying doctors ' expectations . now , lebron james has penned a touching farewell letter to the teenager . in letter , he praises lauren for the ` leadership ' and ` strength ' she showed . basketball star tells her : ` you time spent on earth will never be forgotten '\ncomres survey for itv shows ukip falling behind in key constituencies . latest in a series of polls showing the losing ground to the tories . ukip leader said he had ` made some mistakes ' by trying to do too much . he said he had to scale back his campaigning to rejuvenate himself .\ncaldwell was unveiled as the new wigan athletic manager on wednesday . the 32-year-old is the football league 's youngest manager . former defender replaces malky mackay , who was sacked on monday . latics are seven points from safety in the championship table .\nrachel lehnardt , 35 , ` allowed her 16-year-old daughter and her friends drink alcohol and smoke marijuana in her georgia home ' they ` all played naked twister and lehnardt had sex with an 18-year-old man in the bathroom before playing with sex toys in front of the teens ' . she said she went to bed alone but awoke to her daughter 's 16-year-old boyfriend having sex with her ; there are no charges against him . her lawyer says she is a life-long mormon who turned to alcohol after her husband returned from iraq with ptsd and they divorced . he said she is now committed to getting her life back on track . after the incident , she lost custody of her children and told her aa sponsor , who contacted authorities .\nceltic beat dundee 2-1 away at den 's park on wednesday night . the win sees them extend their lead at the top of the scottish premiership . gary mackay-steven set the bhoys on their way with a cool first-half finish . virgil van dijk scored a stunning free-kick in the second-half . jim mcalister grabbed a late consolation for the home side on 87 minutes .\nindian man , 41 , accused of posting insulting status about islamic prophet . allegedly told police he wrote the status after watching footage of iraq war . if found guilty he faces up to seven years in prison , a huge fine , or both .\nthousands of dead fish were found at a lake in huizhou city in southern china 's guangdong province on friday . owner of a fish farm which operates from the lake says he found evidence the water was polluted with ammonia . he claims the loss of 100 tonnes of fish overnight will cost him over 1 million rmb -lrb- # 110,000 -rrb- in potential sales . employees are working to save any live animals by adding salt to the water to restore the chemical imbalance .\nthe mother-daughter duo dined at lupa in the greenwich village saturday . the enjoyed a five-course italian lunch of pasta , salad , meat and cheese by the restaurant 's owner , mario batali . michelle was in new york this week launching an interactive online map to encourage people to join their local ` let 's move ' program . mother 's day is may 10 .\nbody discovered in pontypridd property identified as tracey woodford , 47 . she is thought to have been attacked in woodland before being taken to flat . she was ` liked and loved by all ' and would ` help anyone ' , family said . man named locally as christopher may , 50 , charged over the murder .\nworld experience average temperatures of 56.4 °f -lrb- 13.6 °c -rrb- last month - 1.5 °f above average for the 20th century . first 3 months of 2015 have set new high temperature marks , and the trend could continue throughout the year . scientists warn fossil fuels are pushing greenhouse gas into the atmosphere , leading to increased temperatures . but el niño , a blob of record hot water in the northeast pacific ocean , could also be driving up temperatures .\naustralia to allow overseas players with over 60 caps to be selected . they also must have held australian rugby contract for seven years . matt giteau and drew mitchell -lrb- both at toulon -rrb- are both now eligible . george smith -lrb- lyon -rrb- is another wallaby currently playing overseas . host of top australian players are heading abroad next season .\nmacau in china offers a whirlwind of activities and attractions . from the 764ft bungee jump to the 26 casinos , thrillseekers will be satisfied . nearby the sleepy island of coloane is waiting to be discovered .\narsenal beat liverpool 4-1 in their premier league encounter on saturday . raheem sterling won a second half penalty for the visitors at the emirates . sterling has turned down a liverpool deal worth # 100,000-a-week . 20-year-old gave an interview to the bbc on wednesday over the issue . defeat leaves seven points adrift of fourth-placed manchester city - in race for qualifying for next season 's champions league .\nswiss researchers examined the ` hot jupiter ' planet hd 189733b . temperatures reach 3,000 °c in the atmosphere and wind speed is 620mph . findings were comparable in quality to the hubble space telescope . but the researchers used a ` relatively dinky ' telescope , suggesting the method could be replicated by other astronomers to study exoplaents .\nprosecutor marilyn mosby has only been on the job since january . she comes from a long line of police officers . `` i think that she will follow where the evidence leads . i do not think she will follow just public opinion , '' says a supporter .\nleaj jarvis price , 24 , ran into a doctor 's office in jemison , al , on monday . she screamed ` call the police ' , prompting doctors to run out to help her . seconds later , she was allegedly shot dead by husband , eric price , 25 . price then staged standoff with police at their home and ` shot himself ' taken to hospital in unknown condition ; has been charged with murder . court records show pair had been locked in custody battle over their son .\njim furyk has won the 2015 rbc heritage at harbour town . us veteran defeated kevin kisner in the second play-off hole . it was the 17th pga tour title for the 44-year-old former us open winner .\nnovak djokovic beats rafael nadal 6-3 6-3 in monte carlo . serbian world no 1 will face tomas berdych in the final .\nchris strodder 's the disneyland book of lists contains 200 lists of secrets about the magical amusement park . learn how people spend 83 times more money at disneyland now than they did in the 1950s . archive photos from imagineering disney show its changes over the years .\nnaughty boy has come under fire after posting zayn malik 's music . the hit producer has been blamed for him leaving one direction . but he is one of the biggest hit makers in the world . he has previously worked with the likes of cheryl cole and leona lewis . the 30-year-old launched his career after going on deal or no deal . he won # 44,000 in 2005 on the tv show hosted by noel edmonds .\nkaren davis was photographed on google street view flashing her breasts . she handed herself in after reported by police with disorderly behaviour . south australian law professor says oral swab test was unnecessary . professor rick sarre also believed ms davis should not be charged . police said her ` actions were the same as someone flashing their genitals ' . sa country town mum hit back at critics saying they are insecure . she plans to do a topless skydive for her 40th birthday next year .\nmore than 70 animals were found living in disgusting conditions in arizona . one cat was found dead and many were suffering with medical problems . belonged to john koepke who is banned from keeping any pets until may . he is now facing charges of failing to provide shelter and veterinary bills .\nburnell mitchell held over conspiracy to murder and terrorism offences . the 61-year-old muslim convert is brother of boney m singer liz mitchell . he was arrested by police investigating the death of abdul hadi arwani . leslie cooper , 36 , has been charged with the syrian-national 's murder . a 53-year-old woman was also arrested on suspicion of terrorism offences .\nmilitary has not confirmed if any rescued girls came from 2014 chibok mass abduction . nigerian troops raided boko haram camps in northeastern nigeria , military says .\ngrand prairie , texas officials say rick yoes , 57 , has refused to respond to two decades worth of code violations for unruly lawn . when he received notice that he owed $ 1,700 and that there was a warrant out of his arrest , yoes reported to jail instead of paying the fine . he spent two nights in jail before a friend paid the fine and secured his release . officials for the city say they would never arrest someone for not mowing their lawn and that yoes had plenty of opportunities to work with them . yoes claims in one interview that he never received the warnings , while in another interview said he ignored the letters .\nangelique kerber beat madison keys 6-2 , 4-6 , 7-5 in the charleston final . kerber battled back to win six of the last seven games in the decider . it is the german 's first wta title since linz in 2013 .\nderby keep their promotion hopes alive with easy win at ipro stadium . craig bryson gave them the lead in the third minute on tuesday . tom ince scored against his former side , but did n't celebrate . darren bent on target twice , including a penalty in the second half .\nannegret raunigk , 65 , from berlin , is pregnant with quadruplets . pregnant following artificial insemination using donated sperm and eggs . refused ` selective reduction ' abortion and will keep all four babies .\ndemetric nelson , 27 , broke into a 53-year-old woman 's home and demanded money , deputies said . he allegedly told the woman to take him to another home , where he ordered her to get in the trunk of her car . nelson could n't drive the car because of the manual transmission , however , and the woman used the emergency trunk latch to escape , authorities said .\nluo kun kun expelled from his village in china when diagnosed with hiv . residents - including his grandfather - signed a petition to banish him . he was refused admission to schools and said ` nobody plays with me ' now a specialist school in linfen , shanxi province , has stepped in to help . the red ribbon school is equipped to look after hiv-positive children .\nsee cheetahs , lions and leopards in africa , siberian tigers in russia , polar bears in svalbard and grizzlies in alaska . madagascar , borneo , rwanda , sri lanka and brazil feature on the itinerary - which is a dream for wildlife lovers . during the tour , guests stay in accommodation including tented camps , mountain lodges and beachfront hotels .\naverage cost of property in london is now less than in salcombe , devon . in salcombe , property tops # 671,759 and waterfront value is even higher . known as ` chelsea-on-sea , ' the area is famed for its yachting and sailing .\nnatasha willard appeared to be suffering from flu just before christmas . but four months later the teenager can barely move her limbs or talk . she has been diagnosed with encephalitis , or swelling , of the brain . doctors are unsure whether miss willard , 17 , will be able to fully recover .\neight faculty members at columbia university penned an op-ed accusing dr oz 's on-air tactics of sullying the reputation of the ivy league school . but they said he should not be forced to stepped down from his ` well-earned position ' at columbia because of these ` foibles ' it comes after 10 doctors called on columbia to fire oz for promoting ` quack treatments ' on his tv show , including weight-loss supplements . the piece came as dr oz insisted his show would survive the criticism and said the doctors only attacked him for supporting gma labeling .\nkeith curle is one of only four england players to currently manage . former manchester city player has managed clubs including mansfield , chester , torquay and notts county before ending up at carlisle . curle turned his back on a career in punditry to remain on the sidelines . ' i have done a bit for sky and i really enjoyed it but first and foremost i am a coach and manager , ' he said .\njosh meekings got away with a deliberate handball against celtic . celtic went on to lose their scottish cup semi-final clash 3-2 to inverness . celtic wrote to the sfa in the aftermath of last weekend 's defeat . the club sought ` to understand ' how steven mclean and his assistants failed to act on the meekings incident .\n` why do n't we let me explain instead of talking over me , ok ? ' he asked today 's savannah guthrie as she tried to corner him wednesday morning . paul unleashed on on a female cnbc anchor during a line of questioning he considered ` slanted ' ; he shushed her and told to ` calm down a bit ' . ' i think i have been universally short-tempered and testy with both male and female reporters . i 'll own up to that , ' he now concedes . admission summed up the freshman lawmaker 's second day as an official 2016 contestant - a day that also included a confrontation with the chairwoman of the democratic party over late-term abortion . paul declared that she seems to be ` ok with killing a 7-pound baby '\nalfie taken when burglars raided kirsty mitton 's home in west midlands . later ran out in front of inspector 's car 112 miles away in gerrards cross . he leapt inside after inspector opened door and his chip revealed identity . owner says safe return of seven-year-old dog has left her ` over the moon '\nulster and ireland prop declan fitzpatrick has announced his retirement . the 31-year-old was advised to on medical grounds following ' a number of concussive episodes ' in recent seasons . medics and the guinness pro12 province referred him to a neurologist . fitzpatrick was capped seven times by his country .\nceara lynch , 28 , is paid to indulge men 's fetish fantasies , which often include elements of humiliation . she began her career at age 17 selling used underwear online and has gone on to create web videos . ceara now owns a minimum of $ 1 a minute for making custom videos . she ` gets a kick out of ' her job , which includes hearing the secret fantasies of thousands of men .\njulie walters pretended to be trusted official to gain access to care homes . claimed to be both a council warden and from church to steal cash . fleeced three elderly residents of money in three separate attacks . admitted burglary and was jailed for two and a half years at minshull street crown court .\nthis year 's treats come in various forms , from ` fried ' to boiled and stuffed . you will either love or hate marmite 's meaty-tasting easter egg . fortnum & mason 's ` chotch egg is encased in venison and 55 % chocolate .\nmajor steve thompson with the alabama department of public safety 's marine patrol division said a second person was found dead on sunday . on saturday the first body was found in alabama waters following storm . authorities said crews are still searching for five people . coast guard capt. duke walker said ten vessels were capsized and three of those were with the regatta . the identities of those who are dead and missing have not yet been revealed .\nthe boy , who can not be named , must stay in the care of the local authority . comes after having half of his teeth extracted due to a high-sugar diet . details emerged at a family court hearing that took place in reading .\nthe race for promotion from the championship is set to go to the wire . the top four teams in the second tier are separated by just two points . the next four sides in the table are covered by a single point . bournemouth spent 101 days at the top - the longest this season .\npooch mavis was brought to arlington park in mobile sometime last weekend by her owner for a fishing trip . mavis was reportedly close to the park 's boat launch as an alligator attacked her and came out of the water . mavis was viewed as a ` neighborhood dog ' in mobile 's midtown section . local resident nicole lavirriere has said of mavis ' i think she 's like the norm of `` cheers '' ' .\nthe 90-condo holiday home building in westhampton collapsed at around 3pm on wednesday . twelve fire teams were deployed to fight the blaze but could only battle it from the outside , it lasted past 8pm . the fire was so intense it melted the paint off buildings in the vicinity and sent smoke up three miles high . nobody was hurt in the fire . the sandpiper complex is open between may and november .\nhealth apps such as myfitnesspal ` fuel anxiety ' says senior gp . dr des spence calls the health apps ` untested and unscientific ' . defenders of apps say they are ` encouraging healthy behaviour ' .\nkevin pietersen playing his first county championship game for two years . pietersen was caught at slip off the bowling off craig meschede for 19 . kumar sangakkara scored a debut century for surrey after kp was out . surrey reach 363 for three at stumps on day one against glamorgan .\nuniversity of nebraska researcher has revealed why stress is bad for you . limited periods of stress are good , as they release cortisol . this is useful in helping you recover from very tense situations . but too much will lower your immune system and make your bones fragile .\ndavid norris pounced as his wife was about to lay flowers on a grave . she begged him to think of their children but he stabbed her repeatedly . norris , 51 , only stopped when his estranged wife ` played dead ' he was jailed for 20 years after being found guilty of attempted murder .\njihadis were fighting in hammam al-alil , south of their mosul stronghold . several of them sustained injuries so visited local doctors for treatment . doctors reportedly refused to help because they did not support isis . terrorists then dragged the 10 men out in to the desert and shot them .\nsue perkins received abuse on twitter when her name was mentioned . the general opinion being stated was ` men do cars , women do cake . ' . here , sarah vine states why women are often just as keen on cars as men .\nnorwich midfielder alexander tettey scored an own goal on eight minutes . win for middlesbrough moves them ahead of bournemouth with 84 points . defeat drops norwich into fourth - two points behind with two games left .\naqap says a `` crusader airstrike '' killed ibrahim al-rubaish . al-rubaish was once detained by the united states in guantanamo .\nthe driver , 16 , of arizona who has not been identified was saved from full weight of car landing on her due to depression in roof of car . it took five hours to pull her from wreckage on wednesday . the passengers , aged 16 and 17 , also not identified were able to climb up to the road ; both were taken to hospital with non-life threatening injuries . driver lost control of car after turning a curve too fast , according to police .\nmichael rapiejko was accused of approaching luis colon as he got out of his car in october 2005 , pointing a gun at him and threatening to shoot him . colon , who was with his wife and four children , claimed rapiejko also handcuffed and choked him , over charges which were later dropped . colon sued and in december 2008 was awarded $ 20,000 by the city , the same month rapiejko left the new york police department . this as rapiejko is under fire for using possible excessive force when he mowed down an armed suspect in his police vehicle . rapiejko , a cross fit devotee , calls himself robocop .\nkevin davies tweeted a photo of right hand cut in two places on tuesday . 38-year-old has scored one goal all season for preston north end so far . davies was an unused substitute in their 3-0 win at bradford on monday .\ncharles piutau has played 14 internationals for new zealand . piutau can play as full back , wing or centre and will join ulster in 2016 . ulster team manager bryn cunningham is excited to secure piutau .\nstudents from the university of surrey discovered thousands of colonies . they submerged coins and notes in agar to accelerate growth pf bacteria . most were harmless on the money , but one caused boils and spots . previous studies have revealed mrsa bacteria on notes and coins .\nsir alex ferguson managed manchester united between 1986-2013 . 73-year-old won 38 trophies during his 26-and-a-half years in charge . honours include 13 premier league titles and two champions leagues .\njames mccarthy puts everton ahead after 5 minutes as everton counter-attack at speed . john stones doubles host side 's advantage with brilliant header from a corner in 35th minute . kevin mirallas takes advantage of poor manchester united defending to make it 3-0 late on .\njuan arango has apologised for his bite on monterrey 's jesus zavala . arango had earlier scored a free kick in his team 's 4-3 defeat . the 34-year-old venezuela captain has admitted he was in the wrong . he was not punished in the game but could face retrospective disciplinary action from the mexican league authorities .\nbouvier 's red colobus monkeys was last sighted in the congo during 1970s . biologists have captured the first ever photographs of the rare primates . the monkeys live in noisy groups in the swampy forests alongside rivers . they are feared to be threatened by growing bushmeat trade in the area .\nputin said on saturday that the countries need to work on common agenda . he said us and russia are working towards same efforts of making the world order more democratic . putin 's latest remarks come two days after saying us wanted ` not allies , but vassals '\ngeraldine alcorn , 29 , of pittsburgh waived a preliminary hearing on a felony charge that she interfered with the parental custody of her 11-year-old student . in exchange for the waiver prosecutors dropped two misdemeanors alcorn faced : luring a child into a vehicle and corruption of minors . police believe her interest in the child was not sexual , but it was obsessive and she allegedly told the girl she wanted to run away with her . the girl 's mother , a single parent , complained to school officials after finding out alcorn had visited the girl at their home while the mother was working .\nthe xylella fastidiosa bacteria has ravaged olive trees in puglia region . its spread has so alarmed the eu that france has boycotted the fruit . yesterday officials began destroying trees affected by the deadly disease . protesters failed in an attempt to stop the government-ordered destruction . the spread of the bacteria is expected to cause olive oil prices to rocket .\nfloyd mayweather and manny pacquiao fight in las vegas on may 2 . both men are nearing the end of their respective training camps . singer mariah carey paid a visit to mayweather 's boxing gym . pacquiao made his latest appearance on jimmy kimmel live ! read : floyd mayweather vs manny pacquiao tickets finally go on sale . jeff powell : mayweather now the mature man who weighs words carefully . click here for all the latest floyd mayweather vs manny pacquiao news .\noscar hernandez jr has pleaded guilty to transporting firearms , obstruction of justice , lying to a federal grand jury and witness tampering . confessed to shipping aaron hernandez three weapons a month before odin lloyd 's killing june 2013 . hernandez jr said he was blinded by new england patriot 's fame and ` grateful to be noticed ' . aaron hernandez has been convicted of first-degree murder and sentenced to life in prison without parole .\nwest indies batsman marlon samuels was 94 not out at stumps on day one . england have the home side 188 for five after samuels was dropped on 32 . ben stokes clashed with samuels , who is six runs from a seventh test ton . he claimed a similar exchange with james anderson helped him do the same to england back in 2012 .\nthe fda may take a more hands-on approach to regulating homeopathic medicine . it does not go through the same approval process as over-the-counter drugs . some studies suggest homeopathic medicine is no more effective than placebos .\nukip leader said ` millions ' of refugees could arrive on boats in europe . he said britain could only take ' a few thousand ' refugees but no more . up to 950 refugees drowned trying to reach italy on saturday . boris johnson called on the pm to send the sas to libya to solve crisis .\na second terrifying eruption from the calbuco volcano in southern chile has forced over 4,000 to leave their homes . the cities of puerto varas and puerto montt are covered in ash and locals are becoming frightened for their health . yesterday 's blast , which shot ash six miles into the air , was the first since 1972 and the first major one since 1961 . no one is thought to have died from the two explosions but chile 's president has declared a state of emergency .\narchbishop of canterbury justin welby hail victims of kenya university massacre as martyrs . thousands of catholics brave bad weather to hear pope francis lead easter sunday mass in the vatican . pope gave sombre message in st peter 's square , praying for an end to the persecution of christians . pope francis also commemorated students massacred by islamist militants at a university in kenya . the pontiff made a nod to lausanne agreement between iran and the international community a nuclear accord .\nchannel 7 were left red faced after letting a rude name appear on screen . a donation for $ 32.38 earned hugh . g rection some screen time . twitter users were quick to identify the on-screen blunder . the telethon appeal for the royal children 's hospital saw a record breaking number of donations .\ndavid lynch says he wo n't be directing new episodes of twin peaks . showtime `` saddened '' over decision , which involved a dispute over money .\na catholic priest has called for the ` gay panic ' laws to be removed . an archbishop said he supports the homicide defence to be scrapped . homosexual advance defence means a murder charge may be reduced to manslaughter if the defendant establishes their victim ` came on ' to them .\nwei tingting , wang man , zheng churan , li tingting and wu rongrong are free . they will be under police surveillance for a year and have their activities restricted , attorney says . the international community has harshly criticized keeping the women in custody .\njoelison fernandes da silva , 28 , is the third tallest man in the world . he hid at home for ` half his life ' due to bullying over his height . the brazilian , who has gigantism , later became a national celebrity . he met his 21-year-old 5ft wife evem medeiros through facebook .\naaron finch suffered injury setback during indian premier league match . mumbai captain rohit sharma said the injury ` looked bad ' finch tweeted on wednesday scans ` showed a bit of damage ' .\nslovenian archaeologist ivan šprajc discovers ancient mayan cities in the jungles of mexico . his discoveries could help explain why so many mayan cities were abandoned before the arrival of the spaniards .\nsupport for greens on campuses falls from 28 % to 15 % in two months . dramatic slump means the tories as well as labour are now more popular . since september , percentage who dislike natalie bennett doubled to 24 % .\njimmy anderson 's recent performance in the second test was one of the greatest i 've ever seen from an england cricketer . however , alastair cook 's played an even bigger role in england 's success . cook 's battling and captaincy qualities were clear to see throughout . elsewhere , england will have a very good player back on their hands if jonathan trott can regain his old calmness going into the third test .\njean-marie le pen reignites tensions after defending view of gas chambers . he claimed they were a ` detail of the war ' and should ` not shock anyone ' le pen 's comments likely to revive allegations far right party is anti-semitic . daughter and current fn leader marine le pen said she ` deeply disagrees '\nsteve thompson suspended by leeds just 19 games in to no 2 role . speculation mounting over future of manager neil redfearn . leeds are 13th in the championship with 52 points .\namber rachdi , 24 , weighed an unhealthy 46st at her heaviest . student , from oregon , was confined to her home and was always in pain . has turned her life around after having bariatric surgery . ms rachdi has shed an impressive 20st and weighs 26st -lrb- 377lb -rrb- amber rachdi appears on my 600lb life , thursday at 9pm on tlc .\namerican transgender woman hayley carney has never met british fiancee . she will marry in hope of fulfilling ` lifelong dream ' of becoming uk citizen . said she believes britons are more ` openly accepting of people like her ' .\nheather mack is accused of murdering her mother and is in a bali prison . teenager is caring for her baby in cell shared with eight other prisoners . a minister paid her a personal visit today and offered her extra comforts . mack will get own room until she decides whether to give baby to a family .\ndisgruntled flyers have taken to social media to shame feral passengers . the photographs show people with less than desirable habits on planes . images are submitted anonymously by passengers and flight attendants . the images were posted on an instagram account passenger shaming .\ntaya kyle , 40 remembers crying as she told her young son and daughter . reveals the difficult moment for new upcoming abc 20/20 show . navy seal chris kyle was shot dead in february 2013 by eddie ray routh . routh was convicted of murder and sentenced to life without parole in february . taya kyle will release new book in may called , ` american wife : a memoir of love , war , faith and renewal '\ntommy thompson , 62 , led an 1988 expedition to the ss central america . ship sank off the carolina coast in 1857 laden with 21 tons of gold . allegedly failed to share profits with investors and went on the run . pair now facing jail after pleading guilty to contempt of court in ohio .\npit crew member todd phillips was hit by a car on sunday during the inaugural indycar grand prix of louisiana . he was injured when he was struck by the car of francesco dracone , who had come in on lap 25 for tires and fuel . phillips received stitches for a cut on his leg and has been released . dracone did not finish the race and wound up 23rd .\nthe mark 1 version of the iconic plane was one of the first spitfires to go into action , and was built in march 1940 . but spitfire p9374 never made it to battle of britain as it crash-landed on french beach and lay hidden for 40 years . at one point it was almost certainly flown by squadron leader roger bushell , later big x of the great escape fame . the wreckage was discovered in 1980 and restored to its original condition . it is to be auctioned for # 2.5 million .\ntrident nuclear deterrent could be moved to gibraltar , according to reports . snp want to eject trident from its current base on the clyde in scotland . military source says the mod have sounded out gibraltar as an alternative . nuclear submarines ' move could cost # 3billion and take 10 years .\nmark selby leads kurt maflin 6-3 and needs only four more frames to win . no first-time champion in sheffield has returned to retain the trophy . selby and maflin shared the first four frames before selby pulled away . marco fu leads jimmy robertson 5-4 after break of 66 in final frame .\nnigel short said women should accept they 're ` hard-wired very differently ' . made comments when explaining why there were so few women in chess . female chess players reacted angrily to mr short 's statements last night .\narsenal midfielder alex oxlade-chamberlain could miss the remainder of the season with a groin injury . he will definitely miss the gunners ' fa cup semi-final with reading . club captain mikel arteta is also on the arsenal injury list . however , jack wilshere looks set to return to the first-team squad shortly .\ncharlie adam scored brilliant long range goal against chelsea on saturday . the scot scored a similar effort for blackpool reserves in 2009 . the goal was captured on video by blackpool 's tangerine tv .\nresearchers chose 120 passages from across all seven harry potter books . these passages were read by participants while in an fmri scanner . each was rated on how negative or positive , and how arousing they were . scans revealed passages rated high for arousal activated parts of the brain associated with emotion , including the left amygdala .\nvolvo and a start-up made life paint - a wash-off reflective spray for bikes . invisible spray covers anything in reflective particles and glows at night . cans were given away in london cycle shops and proved a big hit . now some are on sale on ebay and volvo is considering selling the spray .\ntwo large cruise ships - anthem of the seas and explorer of the seas - both sailing out of southampton this summer . the liners , both owned by royal caribbean , were spotted passing each other in southampton docks earlier today . the anthem of the seas is now the world 's largest cruise ship with room for nearly 5,000 passengers and 16 decks . sister ship , the explorer of the seas , has recently undergone refurbishment and will sail around the mediterranean .\nnew york police detective ian cyrus has been suspended pending internal investigation . he is accused of stealing $ 3,000 during an illegal cigarettes raid , police say .\nlaura everley had bloating , back pain , constipation and bladder problems . thought she was suffering from irritable bowel syndrome or endometriosis . saw a facebook post on ovarian cancer symptoms and realised she had it . test confirmed she did have cancer and she underwent a hysterectomy . then had chemotherapy - and lost her hair - but doctors are now confident she can beat the disease .\ncctv footage captured moment shopkeeper grappled with armed raider . mohammad ali akhtar was stabbed as he tackled the knife-wielding robber . hooded thief targeted the premier stores shop in flixton , manchester . teenage thug escaped empty handed after being chased out of store .\ntola ore attached a high-tech gadget to her workstation in july 2013 . fraudsters attempted to transfer the cash before the branch opened . ore removed the device and handed it to someone in a supermarket toilet . she pleaded guilty to one count of fraud at the old bailey on friday .\nrangers boosted their chances of promotion with a win against hearts . kenny miller and haris vuckic earned gers victory at ibrox stadium . rangers lost captain lee mcculloch to a reckless red card during match . boss stuart mccall is confident of getting rejuvenated rangers promoted .\nal-shabaab claims responsibility for the attack . a car bomb explodes outside the front gate of the education ministry building in mogadishu . assailants storm the building and engage in a gunbattle with guards .\ndaniel boykin plead guilty to charges of unlawful photography , aggravated burglary , wiretapping and unlawful telephone recording . he became obsessed with a female colleague . she discovered he was stalking her after finding photos on boykin 's phone . he had 92 videos of the victim - 29 taken from the bathroom at nashville international airport - and 1,527 photos . also broke into her home five times and took photos of her clothes . told the court thursday he was ` truly sorry ' sentenced to six months prison followed by five years probation .\nreal madrid boosted by cristiano ronaldo 's yellow card was rescinded . carlo ancelotti will be without iker casillas , toni kroos , james rodriguez and gareth bale but jese will start in the clash against eibar . lionel messi can reach 400 career goals if he scores another two . chelsea star oscar is being touted for a move to serie a side juventus .\npictures show french second foreign parachute regiment dropping down . taken on airborne operation at the salvador pass on libya-niger border . french troops in the desert region battling jihadist fighters and smugglers .\nniamh geaney , 26 , found her doppelgänger through social media . her lookalike , karen branigan , lives only a hour away in ireland . the pair met in real life and although it was ` freaky ' , they got on very well . both have sisters , and say they do n't look similar to either of them .\npauline mckee thought she hit it big when she put a penny in an iowa slot machine and the game announced she won a $ 41.8 m bonus award . but the state supreme court ruled the game 's rules state it only allows a maximum award of $ 10,000 - and does not allow for bonus awards . during an investigation it was discovered the machine had a software glitch , causing the game 's erroneous bonus messages . court ruled that mckee only won $ 1.85 based on how game 's symbols aligned .\nluke lazarus was convicted of raping an 18-year-old at soho nightclub . lazarus was sentenced to a minimum of three years in jail on march 27 . he is the son of the sydney venue 's owner andrew lazarus . the photo was posted on april 3 to promote soho 's easter club event . soho management told daily mail australia the image was uploaded by an ` external promoter ' who they had given access to their facebook page . the club agrees that the image used was ' 100 per cent inappropriate ' .\n` beaching a boat , brighton ' taken from jewish owner in second world war . export permit discovery could bolster claims it came to britain legitimately . tate and descendants of painting 's original owner are locked in dispute .\nnico rosberg and lewis hamilton were 15th and 16th in fp1 . they came to the fore in fp1 , finishing first and second respectively . hamilton was faster than rosberg in sectors one and two , but a lock-up in sector three cost him four tenths of a second . sebastian vettel had problems throughout the day , and his car was clipped by sergio perez in fp2 , ripping off his front-wing endplate on the left side .\nwilliam schultz was arrested sunday afternoon , hours after jordan almgren was stabbed to death in his home in discovery bay . deputies put out an alert for schultz after they said he got away in someone 's truck . the motive for the stabbing remains under investigation . day before the stabbing , deputies had also been called to the home on a request for a psychological evaluation of schultz .\nchief tells cnn that deadly force was warranted . chief : if suspect ended up shooting people , police would be answering different questions . incident happened february 19 in town near tucson , arizona .\nian poulter often uses acupuncture to help his recovery . english golfer recently finished tied sixth at the us masters . floyd mayweather -lrb- kriotherapy -rrb- , robin van persie -lrb- horse placenta massages -rrb- and amar ' e stoudemire -lrb- vinotherapy -rrb- are among other sportsmen to use alternative medicine .\nwladimir klitschko will defend his world title in new york on saturday . klitschko will make his return to us soil for the first time in seven years . wba , wbo , ibf and ibo champion klitschko has n't shown any signs of decline in recent times despite being just a year short of his 40th birthday .\na sneak peek at amal clooney 's wardrobe reveals she spends thousands of pounds on chic designer outfits . outfits she is pictured in below cost at least # 66,900 but george clooney 's wife always appears effortlessly elegant . london-based lawyer often spotted across europe in designer numbers including prada , d&g or stella mccartney .\nlaura robson has not played since january 2014 due to a wrist problem . she has had surgery and is now reportedly eyeing a french open return . robson took time out to enjoy some country music at tortuga festival .\nolly barkley has signed a contract extension at london welsh . the exiles were relegated from the aviva premiership this season . fly half barkley is keen to fire the welsh back up to the top flight . click here for all the latest rugby unions news .\nboth william and kate appear to be relaxed about baby 's imminent arrival . the two were spotted shopping in kensington and chelsea this week . the duchess bought a basket of goods for prince george from zara home . and prince william bought # 800 of jumpers and jeans from peter jones .\nlabour grandee escaped prosecution for string of child abuse allegations . lawyers have told of botched investigations in 1991 , 2002 and 2007 . former dpp said evidence in 2007 case was not passed to him for review . branded decision by local cps lawyers a ` grave failing ' and a ` great regret ' .\n27-year-old danny willett will make his debut at the masters next week . willett insists he is not competing to make up the numbers . willett is a two-time winner on the european tour .\nnewcastle owner mike ashley owns 9.82 per cent stake in rangers . rangers were fined # 5,500 by scottish fa for breaching two rules . ashley was himself fined # 7,500 last month concerning dual ownership .\nyougov poll of scots : 49 % backing snp , 25 % labour , 18 % conservatives . snp leader nicola sturgeon offered to prop up miliband in government . but she is demanding full fiscal autonomy as a price for her support . miliband warns it would create a # 7billion blackhole in scottish finances .\nluka modric had to be replaced with a knee complaint on saturday . gareth bale suffered a calf strain early on at the bernabeu . bale will almost certainly miss the clash with atletico on wednesday . real madrid beat malaga 3-1 to keep up the pressure on leaders barcelona . carlo ancelotti 's side face rivals atletico madrid on wednesday .\njavier hernandez scored winner against atletico madrid on wednesday . mexican is on a season-long loan at real madrid from manchester united . real will not take up option to buy the striker at the end of the season . hernandez is wanted by a host of premier league and european clubs .\nellen weirich opened her us school after successfully helping a friend . le femme now helps both transgender and cross-dressers alike . women are taught airs and graces required to be more female . also taught how to cover up stubble and create a convincing cleavage .\nsystem uses combination of powerful software and ` mems ' technology . this allows the camera to pick up the hyperspectral image of an object . hyperspectral imaging reveals chemical composition from a distance . data will be analysed elsewhere and the results sent to a smartphone .\nswastika and ` scum ' sprayed in white paint on window and blue door . labour offices around half a mile away were also targeted by vandals . scottish councillor ross thomson posted images of graffiti on twitter .\nhilary mantel has been tweaking stage version of wolf hall for broadway . her award-winning bring up the bodies has been renamed ` wolf hall ii ' it may also be shorter as the author was said to have cut ` lot of repetition ' show opens in america 's broadway with original british cast tomorrow .\nsbs sports journalist scott mcintyre made the comments on the 100th anniversary of the gallipoli campaign . he accused anzac 's of war crimes and mocked their bravery . outraged social media users launched the hashtag #sackscottmcintyre . minister for communications malcolm turnbull called the comments ` inappropriate ' and ` despicable ' and called for their condemnation .\nan ocean photographer has captured the unique and surreal moment ocean foam hits the sand . surfer lloyd meudell formed a severe photography obsession after buying a gopro two years ago . he now shoots on a eos 5d mark iii dslr and uses numerous lenses but does not reveal his secrets . the ` foam surrealism ' pieces are shot on the south coast of nsw at kiama beach through to gerrigong . mr meudell 's shots draw from works of surrealism such as salvador dali and appear very dream-like .\nmanchester united face rivals manchester city in the league on sunday . robin van persie has missed united 's last six games through injury . 31-year-old striker has scored 10 goals in 24 league games this season . united have won their last five league matches , climbing up to third . rio ferdinand : wayne rooney up top is reason behind united 's good form .\nscene portrays teenage ` victim ' testifying at the trial of his teacher . is asked how long the relationship lasted by the attorney . the youngster responds by saying : ` five glorious weeks m ` amm ' he points to the teacher , played by cecily strong , saying she looks ` fine ' . twitter users said the sketch was ` gross ' and a ` new low ' for the nbc show .\nthe animation was the work of joe penna and jeff schweikart . penna , aka mysteryguitarman , was assisted by three people . project took the group between three-to-four days to complete . video features a robot finding love of his life on another planet .\nthe 37-year-old rapper covers paper magazine 's april issue , in which he penned an essay about his ` world dream ' .\ngran canaria is one of the most popular winter holidays for britons . it is said to have the best climate in the world , according to a us scientist . instead of driving the motorways , take the winding mountain roads to see cobbled villages .\nmore than 200 people queued up to get their hands on aldi 's spot prizes . the company issued golden tickets to first 100 customers through doors . it was to celebrate the launch of a new store in avlaston , derbyshire .\nnursultan nazarbayev has been re-elected as the president of kazakhstan . 74-year-old was elected with 97 % of the vote , winning a five-year term . international monitors have voiced their concern about the result . but nazarbayev says it would have been ` undemocratic ' to intervene to make his victory smaller .\nneymar opens the scoring for barcelona after just 18 minutes thanks to an assist from lionel messi . luis suarez makes it 2-0 after a brilliant individual goal - nutmegging david luiz before beating two more defenders . suarez scores his second of the night in equally stunning fashion - again nutmegging luiz . gregory van der wiel 's deflected effort gives psg some hope ahead of the second leg on april 21st .\nafzal khan accused of conning customers and financial firms in us . federal agents hunting the 32-year-old fear he may have fled the country . flamboyant khan , from edinburgh , was known to his clients as ` bobby ' . he ran the emporio motor group in new jersey and appeared on reality tv .\nchelsea beat third-placed manchester united 1-0 on saturday . eden hazard scored the winner for chelsea at stamford bridge . the blues need two more wins to be crowned premier league champions .\nmanchester united travel to chelsea in the premier league on saturday . red devils squad head down to london on friday ahead of showdown . united have won six straight games prior to their meeting with the blues . but louis van gaal will travel to stamford bridge without several key men . phil jones , marcos rojo , michael carrick and daley blind are all sidelined . united captain wayne rooney may have to revert back to holding midfield .\napple helping nonprofit buy large tracts of timberland on the east coast . firm now powers u.s. operations with renewable energy .\nmichael olsen , 52 , abandoned his car after ploughing into a traffic island . he was confronted by pcs mark bird and robert wilson but pulled out gun . pc bird lunged at olsen in bid to save colleague but was shot in the hand . olsen claimed gun was toy but found guilty at inner london crown court .\ndiane blankenship , 45 , was arrested at her home in tampa on friday . she is accused of having sex with a boy , 14 , in her car . in another incident she ` had sex with a boy , 17 , at his house before school ' she is said to be a ` clerical worker ' at dayspring academy .\nfloyd mayweather will be fighting manny pacquaio on may 2 . the welterweight unification bout will take place at the mgm grand . fans will be able to buy commemorative jewellery from friday .\nyoutube star promise tamang often recreates disney princess make-up . she used contouring to replicate the bad fairy 's chiselled cheekbones . promise has 2.8 million subscribers and often posts tutorial videos .\nfootage shows thabo sefolosha being grabbed around neck by officer . also shows fellow star pero antić being led away from scene in handcuffs . they were arrested for trying to prevent police from setting up crime scene . came after chris copeland and wife were stabbed outside new york club . shezoy bleary , 31 , accused of attacking pacers star and two women with switchblade .\nderby were held 2-2 at home to watford in the championship on friday . watford had marco motta dismissed and derby moved 2-1 up . but watford equalised through odion ighalo and held on for a point .\nemma walker 's weight plummeted to just five-and-a-half stone in months . after two hospital visits and counselling she is on the road to recovery . rather than being skinny , is focusing on getting fit and building muscle . now weighs eight stone and is keen to share her story to help others .\niona costello , 51 , and daughter emily were last seen on march 30 . were heading into manhattan to visit the theater when they disappeared . mom 's stepson , george costello jr , was visiting the hamptons at the time . has a long criminal record and has a tense relationship with the family . he returned to florida two days after they went missing and was jailed . police have so far said they do not suspect foul play is involved .\nthe united states ' national defense reserve fleet was set up after the second world war in 1945 . the fleet can be activated within one to four months to aid in national defense and emergencies . at its height in 1950 , the ndrf consisted of 2,277 ships , reduced to 230 by 2007 , and 122 in april last year .\nnasa scientists in california reveal new images of dwarf planet ceres . they show new views of the two brightest spots in a crater . however , scientists are still not able to explain what they are . dawn will begin its first science orbit around ceres on 23 april .\nhand-written cardboard signs appear on lampposts in milford , surrey . mystery surrounds who created then and the reason behind the gesture . signs asked the intended recipient to ` forgive me ' and recall their first date . others contained declarations of love and said ` i 've never been happier '\nlee cattermole will return from suspension to face rivals newcastle united . sunderland midfielder has missed the black cats last two matches . but , manager dick advocaat insists the midfielder will face newcastle . however , defender wes brown will miss the derby match through injury .\nitalian designers have unveiled a concept for a bio-printed synthetic eye . they say enhanced retina could increase vision to make images sharper . filtering signals to the brain to produce vintage or black and white effects . currently just a concept , the designers say it could be available by 2027 .\nxherdan shaqiri joined inter milan from bayern munich in january this year . the switzerland international 's form has tailed off in recent weeks . reports have suggested he could leave the club at the end of the season . inter boss roberto mancini insists those reports are completely made up .\neddie howe was left to rue the decisions of referee paul tierney . bournemouth manager feels his side should 've been awarded a penalty . callum wilson was sent flying in the 65th minute of the draw at dean court . howe also believes the owls defender deserved to see red for the foul .\nboston marathon takes place monday , two years after bombing , and sentencing phase of trial begins tuesday . kayyem : it was n't the puritan ethic but good disaster response that kept the marathon bombing from being even worse .\na person 's brain often reflects their gender . however their hands can also indicate if their brain is more female or male . why are some skills or characteristics considered male or female-specific ? documentary examines if gender-specific traits are due to biology -lrb- occuring from birth -rrb- or develop as a result of environment . the film examines different theories and studies about gender and the brain . study says fingers can indicate how much testosterone is in a person 's body . is your brain male or female ? documentary premieres on sbs one on monday at 7.30 pm .\nsingle mother from philadelphia is facing four counts of endangering welfare of a child . firefighters rescued a boy and three girls , ages 9 to 13 , from basement in kensington section sunday . police say the children were without access to food or bathroom for about 15 hours . family friend said the mother locked her kids after one of them stole money .\ntwo moon bears on vietnamese bile farms are brutally slaughtered a day . bears are kept in tiny 2ft by 4ft metal ` crush cages ' with no room to move . their body parts are sold on the black market for just # 625 per bear . mailonline probes resort where 30 bears have been killed in three months . dame judi dench signs petition calling for end to cruel bear bile trade .\nbristol city have earned promotion to the championship . 25-year-old aden flint has been crucial to their promotion push . flint has chipped in with an impressive 11 goals so far this season . defender scored during city 's jpt victory against walsall in march . steve cotterill 's side are 10 points clear at the top of league one .\nmesut ozil missed three months because of injury this season . the german has returned in better form , and says injury helped him . ozil worked on his strength , and still does extra sessions after training .\ntroy university students delonte ' martistee , 22 , and ryan austin calhoun , 23 , have been suspended from the alabama school . both have been charged in connection to an alleged sexual attack on an unconscious woman during a spring break part in florida . police in troy , alabama , found the video while investigating a shooting . video ` shows two men raping unconscious woman on florida beach ' authorities say hundreds of people walk past but do n't intervene . two additional suspects are being sought in connection to the incident and more arrests are suspected . martistee was a promising track star from bainbridge , georgia .\nbook by robert streeter and robert hoehn republished from 1930s . originally designed to discover clever people by posing hard questions .\nstudy found 60 % of prawns tested had traces of harmful bacteria . included e.coli , antibiotic resistant mrsa , salmonella and vibrio . warned farmed prawns are more likely to trigger violent food poisoning . majority of supermarket prawns from indian , thai and indonesian farms .\nh.m. prasetyo praises firing squad that carried out bali pair 's executions . andrew chan and myuran sukumaran were killed on wednesday morning . ` these executions were carried out smoothly and in order , ' prasetyo says . hundreds take to social media to urging people to #boycottindonesia . tony abbott will withdraw australia 's ambassador to indonesia . indonesia 's ag dismissed the move as a ` momentary reaction ' chan and sukumaran were executed 12:25 am local time . julie bishop has n't ruled out cutting australian aid to indonesia in protest .\nrochelle holmes , 26 , ballooned to 20st on a diet of pizzas and kebabs . she smoked 20 cigarettes a day and got out of breath walking up stairs . doctors warned her blood pressure was so high she was at risk of a stroke . she managed to lose 8st and drop 6 dress sizes by changing her lifestyle .\nprincess beatrice is at the condé nast international luxury conference . she watched a lecture by vogue 's suzy menkes and karl lagerfeld . first night spent partying at a palazzo with ralph lauren 's son . returned to the lecture room for a second day in a row today .\nkent police received reports of a kick-about on a closed stretch of the m25 . came after an air ambulance was called to rescue an injured motorcyclist . two teens were also rescued after becoming stranded on opposite carriage . happened when the pair wandered on to the clockwise carriageway as it reopened .\nnadine crooks , 33 , has four children aged 18 years to 18 months . she was told she would n't be able to conceive again after fourth child . stopped taking contraceptives and was stunned to fall pregnant again . the shocks continued as she found out she 's expecting triplets .\nbasketball star was bundled to ground by six officers and arrested . suffered a broken right fibula and is not able to play for rest of season . statement over twitter said he was in ` great pain ' from ` significant ' injury . nypd investigation launched to judge if officers used ` excessive force ' .\nparties back the mail on sunday 's campaign to add first aid to curriculum . previously , only liberal democrats promised to add the crucial lessons . now labour , ukip and the green party have added their support . conservatives are only major party not to make same manifesto pledge .\nkenya 's security has been bogged down by concerns over civil rights . kenyan muslims have been targeted in raids and robbed , says human rights watch .\nrickie lambert has barely played since joining from southampton . brendan rodgers ' decision to continue with mario balotelli is illogical . balotelli has to go down as liverpool 's worst-ever signing . lambert may not be world class but he deserves better than this . read more : manchester united need to raid borussia dortmund . read more : mesut ozil is in danger of becoming an arsenal flop .\nmum 's email invite to her son 's first birthday was shared on reddit . in it she demands a $ 64 water table , a $ 20 tent , $ 15 play tunnel and a book . says gifts should n't have his name on it because personalised clothes are ` the number one thing that leads to kidnapping '\nnatasha jonas has announced her retirement from the world of boxing . the 30-year-old was the first female to represent britain at the olympics . jonas won the bronze medals at the world and european championships . click here for all the latest boxing news .\nroad safety video stars walk streets in bizarre ` safety suit ' costumes . campaign says that 37 people pedestrians killed each year in philadelphia . some have criticized program for blaming those hit rather than motorists .\nfreddie gray , 27 , died sunday a week after his arrest at the gilmor homes . four officers arrested him for a violation that has not been disclosed . was dragged during the arrest and witness said his legs ` looked broke ' . he was loaded into a transport van and put in restraints on way to station . 30 minutes later ambulance was called to station to take him to the hospital . died , was resuscitated , stayed in coma and underwent extensive surgery . justice league nyc organized rallies at station where gray was taken . baltimore mayor has promised thorough investigation and ` real ' answers .\nquota system abolished so farmers can produce as much milk as they like . production increase expected in ireland , germany and the netherlands . could drive down prices for british farmers who are already squeezed .\nrapper says that his streaming service is ` here for the long haul ' report claims that app is being affected by delays from apple , which is launching its own music service this summer . jay z claims that tidal already has more than 700,000 subscribers . app purchasing data shows that it has fallen out of top 750 downloads .\nleigh griffiths gave celtic a third minute lead which lasted only 60 seconds . edward ofere levelled for inverness with a close-range finish . celtic failed to unlock the inverness defence again and had to take a point .\nscientists aim to build robot that thinks , senses and acts like honeybee . so far team has managed to replicate part of brain that allows bee to see . green brain project is a collaboration between universities of sheffield and sussex .\nwill stack , 22 , posted honest video on facebook ; it has since gone viral . in footage , he disputes claims all white officers racially profile suspects . he recounts his own experience with ` caucasian ' cop in south carolina . says he was given warning and went on his way after listening to officer . ` not all officers are crooked ... racist , bad people , ' he says in the footage . mr stack is a former college student and u.s. army national guardsman . has been widely praised for video , which has received 1.7 million views .\nbear seen chained to a tree for baiting competition to hone dogs ' hunting skills in eastern russia . masha , a five-year-old bear , can be seen attacked by a pack of dogs as she is chained by her neck . hunting contest is celebrated in the region as a way of recognising the best canine bear hunter .\nroar , the film that took 11 years to create and was originally released in cinemas 1981 is being re-released at some cinemas in the us in april . film features noel marshall , his real-life partner tippi hedren and their kids , james marshall and melanie griffith . family lived alongside 150 untamed animals in order to make movie . ` dad was a f**king ** hole to do that to his family , ' says james in a new interview . injuries to the crew included a broken leg , gangrene and large wounds , with james needing six men to pull a lion off him at one point .\na passenger discovered excrement in a newspaper on a cross city train . train was held at birmingham new street so the carriage could be cleaned . london midland said cctv images of the culprit would be given to police .\nthere are eight teams in contention for promotion to the premier league . every side involved will be targeting wins from their remaining games . prize money for promotion could come in at # 120 million .\ncarl thompson has put on an astonishing 30 stone in just three years . while having always loved food his weight doubled when in 2012 . the 32-year-old credits the death of his mother with his huge weight gain . gorges on takeaways five nights a week and blows # 10 a day on chocolate . mr thompson is now desperate to shed 45 stone after health warnings .\nnathan dailo has found a way to get his son to sleep in 42 seconds . in a youtube video he demonstrates how stroking his 3-month-old son 's face with a white piece of tissue paper sends him to sleep . the video has received almost 26,000 views in just two weeks .\npilgrims flock to see relic which is believed to have wrapped jesus ' body . 13th century cloth is imprinted with image of man who has been crucified . more than two million people visited shroud when it was last on display .\n56-page book contains turing 's thoughts on tricky ` leibniz notation dx/dy ' it was written at the bletchley park code-breaking headquarters in 1942 . only extensive turing manuscript thought to exist , the auctioneer said . it will be sold by an anonymous seller by bonhams in new york on monday .\nkitson fashion brand founder allegedly swore at employees in la store . fraser ross , from aberdeen , faces $ 1million lawsuit following dispute . firm running his store at la airport want to end their business relationship . stores popular with celebrities including victoria beckham and lady gaga .\nthe trials of dzhokhar tsarnaev and aaron hernandez are coming to a close . voting has put rahm emanuel and ferguson , missouri , back in the headlines . rand paul has announced his bid for the presidency .\nthe value of the bounty in american dollars is about $ 774,000 . al qaeda in the arabian peninsula wants a houthi leader and a former yemeni president killed or captured .\nadam johnson could feature against stoke on saturday afternoon . read : johnson has been charged with three offences of sexual activity with a 15-year-old girl . the 27-year-old could face up to 14 years in prison if he is found guilty . jill saward , the first rape victim in england to waive her anonymity , has hit out at premier league outfit sunderland . saward insists sunderland are sending out a ` very poor message ' .\nboat travelling from libya to sicily when 12 christians thrown overboard . police arrested muslim migrants for murder ` motivated by religious hate ' . survivors said they clung to each other to stop men trying to drown them .\njessa , 22 , and her husband ben seewald , 19 , revealed earlier this month that they are expecting their first child in november . the couple are known to be incredibly passionate about health and fitness . jessa 's older sister jill , who gave birth earlier this month , remained very active throughout her pregnancy .\ndominique johnson , 19 , was arrested on wednesday and has been charged with conspiracy to commit armed robbery . she is the roommate and alleged girlfriend of jamyra gallmon , 21 , who last week was charged with first-degree murder . david messerschmitt , 30 , was stabbed to death on february 9 at the boutique donovan hotel in washington d.c. gallmon has admitted to police that she set up the lawyer so that he was expecting to meet a man for gay sex at the hotel . when she attempted to rob him they got into a struggle and she pulled a knife from her pants and stabbed him repeatedly .\ngeologists used undersea vehicles to record two underwater volcanic vents - called hades and prometheus - as they erupted near samoa . scientists found the acoustic signatures of the eruptions were different . they hope to use sound to monitor underwater eruptions as they happen .\nnew shepard spaceship is designed to fly three people . will reach altitudes about 62 miles -lrb- 100 km -rrb- above earth . firm expected to sell tourist tickets for its spacecraft .\nwinds swept the ocean foam off lashing waves before mixing it with sand from the shore line . the result was a bizarre and grotesque yellow , thick , jelly-like foam substance which coated the entire beach . it stretched more than 15 metres up avoca beach in the central coast and onto the pathways and shrubbery . sylvia freedman , who was holidaying there when the storm hit , captured the strange phenomenon on her camera .\npresident michelle bachelet signs law that will take effect in six months . chile joins several other south american nations that allow the unions .\nprince harry arrived in canberra and visited the australian war memorial in his only official public appearance . during this visit , he told a teenage admirer to give up the trend of snapping self-portraits , saying ` selfies are bad ' . the prince , who is in australia for a four-week secondment with australian defence force , then reported for duty . the 30-year-old touched in sydney on monday at 8.30 am , before travelling to canberra in the act on a raaf jet . dressed in his white tropical dress uniform of the british army , he also visited the australian war memorial .\nvera maresova , 50 , killed five women and one man over a four-year period . police said she committed the murders to make her workload easier . maresova , who has been dubbed ` nurse death locally , has admitted killing the victims with massive doses of potassium . drug caused the elderly patients ' hearts to fail and eventually killed them .\nformer assistant school principal lisa webb , 34 , moved to france in 2009 . she feared her daughter would go hungry after seeing french school menu . fussy three-year-old refused to eat vegetables at home with her parents . lisa says the food and way pupils dine has transformed her daughter 's diet .\nno serious injuries were reported in the crashes on u.s. highway 36 between boulder and denver , but tow-truck drivers were kept busy hauling away damaged cars . in the mountains , interstate 70 was temporarily closed after several trucks spun out on snowy vail pass . meanwhile , lagging colorado river to keep relief from drought-weary californians .\nal-hijji family left cars and food behind when they fled in august 2001 . fbi agent 's report said family of saudi advisor had ` many connections ' to hijackers , some of whom were said to have visited the house . agency now says report ` poorly written ' and ` unsubstantiated ' 9/11 review commission accepted fbi verdict , did not interview agent . congress document redacted by bush administration pointed ` very strong finger ' at financing from saudi arabia .\nbrawl at spring gardens station in philadelphia was captured on cctv . fight involved students from nearby benjamin franklin high school . at one point an attacker falls onto the tracks , but manages to get back up . after the confrontation , the victims and attackers walk onto the same train .\nantonio valente , from dallas , texas , learned his photos had been used in a scam after he was contacted by the victim , marianne heinrich from vienna . she had been befriended online by a man calling himself ` johnson michael lynn ' who said he wanted to marry her and live with her and his daughter . she sent him $ 4,000 - but realized it was a scam and tracked valente down . he has now reported the problem to facebook who removed the profile .\npaul is already under fire for his evolving views on iran , foreign aid to israel and defense spending . why do n't we let me explain instead of talking over me , ok ? ' he asked the ` today ' host as she tried to corner him . paul launched his presidential quest on tuesday in kentucky andis already on a five-state campaign swing . he pinned his 2007 claim that iran was not a threat to the us on the fact that he was campaigning for his father 's presidential bid at the time .\nhawaii 's legislature passes a bill raising the legal age for buying tobacco to 21 . the bill is now before gov. david ige , whose signature would make it law . most states allow tobacco sales to anyone 18 and older .\nfrustrated elephant misses its target as it attempts to douse bull in water . huge african elephant is with its baby , who nestles close for protection . kruger national park , where pictures were taken , is home to 147 mammals .\ncharles collins , 28 , saved elderly alfred mcnamee after he fell onto tracks . leaped onto rails at subway stop in philadelphia and helped him escape . identity was revealed this week after wednesday rescue . collins visited mcnamee , who has several broke bones , in hospital .\nlabour 's reduction in stamp duty would benefit nine in ten first-time buyers . tax break funded by squeeze on tax avoidance , higher levies on foreign buyers and cuts in tax relief for landlords who fail to maintain properties . labour would also give the buyers ` first call ' on half of homes built locally .\nthomas will be a line judge for the 2015 season . the 41-year-old was in the league 's officiating development program in 2013-14 . she was the first female official on the fbs level and the first to officiate a bowl game . thomas , a former college basketball player , was inspired to become an official in the 1990s when she attended a meeting with her brother .\nlauren hill was a promising basketball player diagnosed with rare tumour . was given two years to live at just 18 , which was reduced to two months . teenager defied the odds to carry on playing basketball for months more , raising money for research into childhood cancer before her death . at a public memorial today her casket was placed in the arena and at the site where she made her first basket , with items from her basketball career .\nfemail rounds up practical products for summer . gwyneth paltrow is selling a sun-proof t-shirt on her site . temperature-regulating dresses aim to keep you cool in hot climes .\nphotos from across the nsw coast show the devastation caused by the worst storm to smash the area in ten years . in the hunter region of new south wales a staggering 312mm of rain fell in 24 hours . in dramatic scenes , four houses in the town of dungog were washed away in the raging floodwaters . animals have been stranded by the floods with one horse rescued from drowning by a woman in a tin boat . beaches including bondi have been forced to close due to high winds . but surfers have braved the huge tidal surge despite grave warnings from authorities .\nbritish monarchy 's 1,000-year history has seen 34 kings and just 6 queens on the throne . victoria arbiter argues the royal family needs a baby girl to fill the female void of future generations .\nalassan gobitaca , known as al the jumper , completed the stunt . gobitaca has previously jumped a lamborghini and a motorbike . the daredevil jumper is a swedish guinness world record holder . gobitaca represented sweden in tv show world 's most talented .\nvery few manchester united players possess the intelligence demanded . michael carrick , wayne rooney and juan mata can claim to have it . the dutchman suggested some of his other players lack brains . luke shaw was n't fit enough when he arrived last summer . phil jones thunders senselessly into tackles and gets injured . even ander herrera is guilty of playing senseless long balls . durham : arsenal only turn it on when the pressure is off . adrian durham : sterling would be earning the same as balotelli if he signed # 100,000-a-week deal at liverpool ... that 's the real issue here . click here for all the latest manchester united news .\ngertrude weaver became the world 's oldest person last week following the death of a 117-year-old woman in japan . waver died from complications due to pneumonia in camden . she attributed her long life to treating others well and eating her own cooking . weaver was born in arkansas in 1898 and worked as a domestic helper . 115-year-old jeralean talley , of detroit , is now the world 's oldest person .\nlucy and lydia star in beauty campaign for fake tan brand sunkissed . both say it was ` really lovely ' to work together on the shoot . lucy says she loves the waist she works hard to achieve . admits she is jealous of her teen sister 's long legs .\nwarrington wolves host castleford tigers on easter monday . daryl clark will be facing the home-town club he left last year . wolves are keen to end a a three-match super league losing streak . widnes viking will rest a host of regular for visit to catalan dragons .\nmonarch ranked 302 on sunday times rich list - slipping from 285 in 2014 . ukrainain oligarch len blavatnik tops the roll with a # 13.17 billion fortune . the wealthiest 1,000 individuals have a combined wealth of almost # 550bn . high-rollers include jk rowling worth # 570m and billionaire lord sugar .\ngraph show dominant colours of 94,526 artworks from 1800 to 2000 . orange and yellow have always been the most popular colour . in recent years blue has begun to catch up - and nobody is sure why .\nwill hatton has travelled to about 50 countries in seven years and plans to make it to 100 by the time he is 30 . the 26-year-old backpacks , hitch-hikes and dumpster-dives in order to keep to his budget of us$ 100 each week . he picks up odd jobs as he goes , including goat herding in the middle east . his adventures have led him into tricky situations , including being robbed at knife point and strip searched at gun point .\nbilby numbers are dropping with only around 600 left in queensland . the native marsupial once occupied 70 per cent of the australian mainland . now , they have disappeared from around 80 per cent of that area . introduced predators like feral cats and foxes are their biggest threat . controlled breeding programs are in place to try and save the easter icon .\ntwo different online audit tools say no more than 44 per cent of hillary 's 3.6 million twitter fans are real people who participate in the platform . the newly minted presidential candidate is fending off accusations that her facebook page is full of fake ` likes ' her facebook fan base includes more people from baghdad , iraq than any us city . when she was secretary of state , her agency paid $ 630,000 to bulk up its facebook likes , but pledged to stop after she left .\nfor non-americans the white house it is a respected power symbol . a journalist assigned to cover the obama white house became intrigued . she interviewed staff to get an insight into the inner workings of the house .\nbarry hawkins qualified for next round with 10-9 win over matthew selt . the 2013 finalist led 7-2 overnight however selt launched comeback . hawkins held on to win after selt reeled off five frames in a row .\nholland beat spain 2-0 at the amsterdam arena on tuesday night . stefan de vrij and davy klaassen scored goals for holland . defeat recalls horror 5-1 defeat by holland at the world cup . vicente del bosque used game to give younger spain players a chance .\nthe cdc says `` the risk to humans is low , '' but , as always , they are preparing for the worst case . you ca n't get bird flu from eating poultry or eggs . at least 100 people who worked with the sick birds are being monitored for any sign of sickness . so far 3.5 million birds have been euthanized .\nbath face london irish at the rec in the aviva premiership on friday night . sam burgess is set to play his second game at blindside flanker . bath coach mike ford reckons burgess is more suited to the forwards .\nthe hermione carried france 's marquis de lafayette to america in 1780 . was sent to warn george washington french troops were being sent . they were being deployed to help the revolutionaries defeat red coats . the replica set sail on saturday for it 's maiden voyage across the atlantic .\nlondon mayor praised the coalition for having kept down unemployment . he said creation of more jobs was ` one of moral triumphs ' of government . comments will be seen as attempt to position himself as future party leader .\nnew range of suncreams claim to stop damage from infra-red a rays too . some even say they protect the skin from the inside , but what 's the truth ? consultant dermatologist bav shergill offers his expert verdict .\nthe oratory school was ordered to revise its admissions policy last year . came after watchdog found it was biased against poor and non-catholics . high court overturned decision of the office of the schools adjudicator . judge said the decision was ` flawed ' and ` unreasonable ' .\nliverpool fc boss brendan rodgers has scouted pedro . barcelona forward pedro is considering his future at the nou camp . raheem sterling could leave liverpool after rejecting # 100,000-a-week deal . arsenal , chelsea and manchester city are keen on the liverpool star . adrian durham : the real problem with sterling contract saga at liverpool . read : real madrid are monitoring raheem sterling , reveals zidane . click here for all the latest liverpool news .\nanders lindegaard posted instagram photo with model wife misse beqiri . the man utd goalkeeper tied the knot with beqiri last year . lindegaard is third-choice keeper at old trafford under louis van gaal .\ntechnical university of braunschweig researchers analysed peppermint . found raised nicotine levels in plants subjected to cigarette smoke . also showed peppermint plants take up nicotine from contaminated soils . findings could explain high nicotine levels in some spices and teas .\nsurgeon general vivek murthy enlists elmo for pro-vaccine campaign . video sees dr murthy explain to elmo why vaccines are important . released in the wake of recent measles outbreak in north america . started at disneyland in california , and sickened 147 people in the u.s.\nmamamia used a photo of wilson on a story about orthorexia nervosa . the i quit sugar author and wellness blogger complained to the website . they have apologised and removed her photo from the story . ` the choice of images originally used to illustrate this story were n't ideal , ' mamamia said . wilson was pictured alongside controversial blogger belle gibson . paleo preacher pete evans 's photo was also used in the article . in 2013 mamamia 's founder mia freedman called wilson ` obsessed '\ndele alli signed for tottenham in the january transfer window for # 5million . midfielder was loaned straight back to mk dons for the rest of the season . the 19-year-old was crowned football league young player of the year . alli wants to help get mk dons promoted to the championship . england under 19 international says spurs are the perfect club for him . alli is excited by the prospect of working under mauricio pochettino .\nsince 2012 taxpayer has forked out # 15,500 for james bowen 's flat . 36-year-old denied responsibility and claimed he told the council .\naustralian model renee somerfield wears bikini in new protein world ad . campaign pushing weight loss blasted by some body image campaigners . fitness model calls the backlash ` contradictory ' . protein world have defended campaign and refuse to remove the advert .\n77-year-old wrote letters from his bed at ashworth hospital in merseyside . hopes ukip will ` decimate ' the other political parties in general election . branded david dimbleby an ` establishment dumpling ' in the rant . murdered five children in 1960s and buried bodies on saddleworth moor . he hopes that ukip will ` decimate ' the other political parties in the general election , describing david cameron 's views as ` the usual mob-pleasing pr drivel expected from such bovines ' . the political leaders are unworthy of ` even being assassinated ' . voters must choose between ` public school millionaires ' or a ` refugee , privileged german jew ' - an offensive and inaccurate reference to ed miliband , whose belgian father fled the nazis . . after ` half-a-century 's imprisonment ' , he believes most professional criminals are tory voters . he also scoffs at the pm 's ` disgust ' over the possibility of convicted killers getting the vote by saying he ` could n't care less about voting ' . branded question time ` for the dumb ' with the ` same old party hacks ' and labelled host david dimbleby an ` establishment dumpling ' . . claims he does not like the bbc and stopped reading newspapers in 1998 - instead getting his information from al jazeera .\ngareth bale joined real madrid for # 86million from tottenham in 2013 . bale the won copa del rey and champions league in first season at real . 25-year-old 's car was attacked by fans after losing to barcelona last month . see where cristiano ronaldo and bale unwind after madrid training .\nchrystie crownover told gma that bruce revealed his ` true self ' the year they were married in 1972 . chrystie told gma that she has kept his secret for the past 43-years . revealed she was shocked at first but was pleased he told her and ` never felt threatened ' told gma that she watched friday 's diane sawyer interview with bruce . the olympic champion and chrystie have two children together and are grandparents .\nkyrie irving scored 30 points and lebron james had 20 for the cavaliers . chris paul scored 32 points for the clippers as they beat the spurs . kyle korver had 21 points as the atlanta hawks beat brooklyn nets 99-92 . memphis grizzlies defeated portland trail blazers 100-86 on sunday night .\nturnham primary school demands pupils sign ` agreement ' before starting . includes line asking children to ` refrain from using ... transphobic language ' shocked parents say asking three-year-olds to sign agreement is ` bonkers ' chairman of school 's governing body apologised for any offence caused .\nkatie price 's husband kieran hayler cheated on her twice . the former stripped slept with two of her best friends . it has today been reported that she still checks his phone . sam bailey , a friend of katie 's , says star ` panics ' when he 's with women .\nroman abramovich has never spoken in public since buying chelsea . but marina granovskaia , chelsea director , is set to speak next month . she is among speakers at a conference to be held at stamford bridge . greg dyke finally handed back the # 16,400 watch given to him by fifa . graeme swann has asked twitter followers to help find his jaguar car . channel 4 have been let off by sponsors 32red after an ad-break gaffe . c4 special , my big fat gypsy grand national , included an aintree hen party . sepp blatter 's rivals ' fifa bids look doomed after africa pledge .\nlydia ko posted a round of 71 in first round of the ana inspiration . the 17-year-old equalled annika sorenstam 's lpga record of 29 successive rounds under par . michelle wie stumbled with a double bogey at the 18th for a score of 73 .\njessica kemp , 32 , has slammed seminole county elementary in eustis . faculty have threatened to remove her kindergartner son logan . claims the oils aide him and have n't caused problems before . school district have said they will not suspend him as it 's a ` health issue ' .\nstall-owner tania rahman , 27 , was invited to take part in the celebrations . but then salisbury council told her food was n't english enough for event . she called move ` discriminatory ' and said st george was born in palestine . and locals were also left furious forcing council to do embarasing u-turn .\ngraeme mcdowell carded a final round of 73 on sunday . mcdowell thinks his style of putting is not suited to augusta . the former us open could have had a worse score . mcdowell was initally give a one-shot penalty for moving his marker as he was attempting to swap a bee away from his ball on the third green . but the penalty was rescinded later in the day .\nnational union of teachers expected to call for a vote on industrial action . ballot of its 300,000 members would take place after general election . fears funding cuts will lead to redundancies in schools .\nsamia ghadie and boyfriend sylvain longchambon spent four days in nyc . while there the dancing on ice stars stayed at the jw marriott essex house . their suite on the 31st floor offered up panoramic views of central park . the couple enjoyed a three-hour bateaux new york cruise on the hudson . the confirm burger joint in le parker meridien hotel lives up to the hype .\naltamura man was discovered in a cave in lamalunga near altamura , italy . researchers say the body has been in the cave for 128,000 to 187,000 years . scientists have extracted dna that has confirmed bones are neanderthal . they say dna might reveal new details about the evolution of hominids .\njohn thurston started building the bizarre vessel while getting divorced . he took the hull of a catamaran and placed the caravan on top . the 80-year-old enjoys cruising up and down the river swale in kent .\nliverpool 2-0 newcastle united : click here to read the match report . philippe coutinho starred in liverpool 's premier league win on monday . sportsmail 's jamie carragher feels coutinho is becoming their key man . liverpool boss brendan rodgers : we can still finish in the top four . click here for all the latest liverpool news .\nluis suarez scored barcelona 's opening goal against valencia in the first minute of the game . claudio bravo kept out a tame penalty from valencia captain dani parejo in the ninth . lionel messi sealed the three points with one of the final kicks of the game .\nthe death sentences will be appealed . mohamed soltan , a 27-year-old u.s.-egyptian activist on a hunger strike , is sentenced to life in prison . letter from soltan 's sister : `` your face , with its beautiful smile ... now looks permanently in pain ''\nsoaring popularity of home coffee machines has led to increasing waste . eason chow believes his innovative new product could be the solution . pods are made of coffee granules in milk powder are then dipped in sugar . price will be around # 4 for a pack of 20 and a machine will cost around # 80 .\nsurvey found one third of teachers suffer online bullying by parents . the bullying is on the rise accounting for 40 % of all reported online insults . survey by teaching union reveals disturbing picture of how parents are increasingly using facebook and twitter to intimidate staff . further 15 per cent of teachers said they had threats made against them .\nan anonymous post on pastebin.com claims to reveal addresses of fbi director james comey , dhs director charles johnson and others . also included in the post were p.o. box addresses the writer claims are used by the cia as cover addresses . the post also read ` jesus is lord , and the public is in charge , not these satanic nwo stooges '\npublicity surrounding case has prompted 30 people to contact police . revealed dossier on lord janner was among files lost by home office . dpp alison saunders has told critics to challenge her ruling in court . also said that her decision is ` the right one ' and will not change .\nkansas spotters report at least four tornadoes . potosi , missouri , sees wind damage to roofs and some flooding . thursday 's forecast calls for more storms but to the east .\nbarcelona struggle to 1-0 la liga victory against celta vigo . jeremy mathieu gave barcelona 1-0 lead with second half header . orellana shown red card for throwing grass at sergio busquets . luis suarez shown a yellow card for diving by referee inaki vicandi garrido .\ngolf 's first major of the season , the masters , tees off on thursday april 9 . rory mcilroy is bidding for a career grand slam while tiger woods is back . extreme weather conditions including high temperatures and storms have been forecast across the four day event in augusta . click here for all the latest news from the masters 2015 .\nasabi barner , 37 , of south carolina got a tattoo at black ink tattoo parlor while visiting new york city . the parlor in harlem specializes in tattooing dark skin and the shop 's owner and artist have their own reality show called black ink crew on vh1 . barner went to the shop last year to get a new chest piece to cover up an older chest tattoo . after the first day , barner says the new tattoo started to puss and continues to be painful to this day . she is currently in the process for suing the tattoo parlor .\nthe fregoe family of massapequa park , new york built their own frosty in january . thanks to late winter storms that stretched into spring , the family was able to keep the snowman alive for months . the snowman finally melted this weekend , when temperatures reached a high of 75 on saturday and 57 on sunday . mike fregoe is keeping a small snowball in the freezer to start a new snowman next winter .\naround one in seven couples suffer with infertility . dr xiao-ping zhai offers help via with traditional chinese medicine . uses acupuncture and prescribes course of chinese herbs .\nthe man records himself descending mountain with fellow skier . he negotiates a number of trees and video is initially a success . pair stop but the snowboarder fails to move from path of chairlift . while posing for the camera the chairlift hits him hard in the head . the footage was recorded in the chiisagata district of japan .\n71 % of voters say they do n't need to know about families of politicians . only a quarter feel it is important to know about leaders ' domestic lives . ed miliband , david cameron and nick clegg have all invited the tv cameras into their homes and given their wives prominent campaign roles .\nsolomon khoorban , 33 , raped teen at club after punching her unconscious . he then raped second victim , 32 , at knifepoint in the bushes in greenwich . both crimes reported at time but it took 12 years to trace him through dna . he has been jailed for 16 years after pleading guilty to three counts of rape .\nkong meng xiong , 21 , of st. paul , minnesota has been charged with kidnapping , third-degree criminal sexual conduct and false imprisonment . xiong allegedly tried to kidnap his 15-year-old girlfriend and force her to be his bride in a traditional hmong marriage . in hmong culture , bride-napping is a frowned-upon tradition in which a male suitor kidnaps his bride if her family does not approve of the marriage . xiong pleaded guilty to sexual assault against a 13-year-old girl in 2009 when he was 15 .\nozzie the goose has been given a new leg manufactured using a 3d printer . he broke his leg and had it amputated before being nursed back to health . but he was unable to fly and struggling for self confidence after operation . rescuer sue burger made an appeal on public radio for help with ozzie . tech company bunnycorp stepped in to 3d print him a new prosthetic limb .\nstephanie coontz : indiana , arkansas governors caught off guard by outrage , boycotts over anti-lgbt law . she says religious conservatives who discriminate no longer hold sway in a culture comfortable with diversity , including same-sex marriage .\nfriday 's tweet is the first public comment linda has made about her former husband 's personal journey . she compared his anticipated tv revelations about his ` true self ' to the magnitude of his olympic achievement . an ex-girlfriend of elvis presley , linda tied the knot with bruce in 1981 . the couple had two sons brandon and brody before they divorced in 1986 .\nalton hines , the fiancé of leah o'brien , 33 , the beloved teacher killed in a car crash on april 25 , is speaking out about the night the woman died . the other driver , 19-year-old ramiro pedemonte is facing charges including homicide , reckless driving , and serious injury by motor vehicle . police determined that pedemonte was going over 100 mph when he hit o'brien . authorities say pedemonte was on probation at the time of the accident with a june 2014 charge of of possession with intent to distribute .\nmanchester united will embark on a short tour of america this summer . they are likely to spend 12 days on the west coast , staying in one place . united will defend their international champions cup title . louis van gaal has avoided a lengthy , energy-sapping tour this year . click here for all the latest manchester united news .\nengland begin their tour of west indies in saint kitts on monday . captain alastair cook says he is ` refreshed ' by winter sabbatical at home . cook was axed as england 's one-day captain , missing awful world cup . he will now seek to restore some national pride in the west indies . england face new zealand and australia at home later this summer .\npm absent tonight when five party leaders take part in tv showdown . nick clegg has been excluded from the ` challengers ' debate on the bbc . ed miliband said david cameron was ducking the chance to defend record . pm said he had ` unblocked the logjam ' to ensure debates happening at all .\nmichael easy first went on the run in 2013 after assaulting a woman at party . while hiding from police , he taunted them by posting photos on facebook . caught and jailed for 15 months before going on run again on his release . now facing four months in jail for assault and breaching restraining order .\nholly barber , 25 , thought she was hungover but began coughing up blood . hospital tests revealed 13 clots called pulmonary embolisms in her lungs . incredibly , a year later doctors found a melon-sized blockage in her lung . she must now take blood-thinning medication for the rest of her life .\nmercedes-benz fashion week australia 2015 came to a close on thursday night in sydney . stand-out shows included maticevski , romance was born , tome , steven khalil and johanna johnson . sheer and metallic fabrics and slouchy and voluminous silhouettes were recurring trends .\non divorce court episode nathan sellers went on show with lia palmquist and accused her of sleeping with every single member of wu-tang clan . he said it was during one night as she partied with them at a hotel . palmquist would have had sex with rza , gza , ghostface killah , masta killa , u-god , inspectah deck , raekwon , cappadonna and method man . ol' dirty bastard is dead so he was n't involved no matter what happened .\nbabies flown from nepal to tel aviv , israel , with their parents on monday . several premature infants evacuated on small military plane in morning . later in the day , five more youngsters touched down at sde dov airport . up to 33 babies could be flown from nepal in total following earthquake . many gay israeli couples travel abroad to have children with surrogates . in israeli , the procedure is limited , by law , to only heterosexual partners . earthquake and triggered avalanches have killed more than 4,600 so far .\nofficers suspended by chief greg suhr with recommendation for firing . texts targeted blacks , mexicans , filipinos , gay men and women . ` it 's not against law to put an animal down , ' one said of black house guest . those facing termination include a captain and a sergeant . man with captain 's name was promoted after alleged homophobic incident where gay man says officers said he had ` aids-infected pee '\nfive people were hospitalised following a crash on the central coast , nsw . the 17-year-old driver was travelling with four other people on thursday . emergency services were called after a car collided head-on into a wall . the driver had apparently received her p 's on the same day of the accident . it is understood five people were in the mitsubishi lancer sedan . the driver and a female were taken to hospital in a serious condition . while three other passengers were taken to hospital in a stable condition .\njessica ennis-hill second to tatyana chernova in 2011 championships . chernova has since been found to have failed a test in 2009 . she has been banned but her 2011 world championship title still remains .\ndame barbara hakin , 57 , facing threat of a new inquiry over patient safety . calls for inquiry into claims she risked lives in a drive to meet set targets . accused of gagging whistleblower gary walker who tried to warn of risks . general medical council said no case to answer but reviewing its decision .\nthe canberra based dfat workers got an ` announcement ' on a screen . the message said their office was being closed and moved to melbourne . the announcement was displayed for five hours before it was revealed . it comes as the department plans to cut 500 jobs by june this year .\njamar nicholson , 15 , was shot in the back by officer miguel gutierrez on february 10 because his friend was holding a toy gun . nicholson and his friend jason huerta , 17 , are suing the city of los angeles for $ 20m . officer miguel gutierrez who shot nicholson has returned to duty but the incident is under investigation .\nmanny pacquiao made his arrival at the mandalay bay hotel in las vegas . the filipino takes on floyd mayweather at the mgm grand on saturday . the fight will be the richest of all time , grossing more than $ 300million . pacquiao is confident he can end mayweather 's unbeaten record .\nchelsea had three appeals for penalties turned down in first half . cesc fabregas was wrongly booked for diving , but no penalty was right . oscar should have been given a penalty for foul by david ospina .\njodie barden 's daughters ella , 8 and chloe , 1 , have cockayne syndrome . this rare genetic disorder means they are unlikely to live to be teenagers . mrs barden , 28 , has faced heartbreak of planning her daughter 's funerals . family is now trying to make the most of the remaining time they have .\nmother amy murray , 23 , was arrested in cinema after assaulting film-goer . she and friend were drunk when they went to see fifty shades of grey . row broke out when others became annoyed with pair for laughing . murray has admitted charges of assault and being drunk and disorderly .\ndavid chase walks through the ending of `` the sopranos '' the use of particular shots and `` do n't stop believin ' '' build tension . chase still does n't reveal tony soprano 's fate .\ndata bosses were caught boasting their underhand tactics to reporters . they admitted ignoring and official no-call list meant to protect vulnerable . said they could n't be honest with people because they would n't answer . david light of data partnership revealed tactics used to coax information . for 8p a record he also offered to sell information on people with pensions .\nwest coast railways services suspended after train failed to stop at signal . 100mph collision with steam train missed by barely a minute . wcr must take steps to address network rail 's concerns . the company owns the hogwarts express now at warner bros studios .\npaddlers get a fright when large shark swims into the shallows . papamoa beach is a popular bay of plenty destination in new zealand . holiday-makers were soon running for cover out of the sea . but before long they were back on the shore taking photographs of it . the last fatal shark attack in new zealand waters was in 2013 .\nthe disturbing video was uploaded last week by raymond yeung . the description claims it was captured in china 's shenzhen reservoir . the video has sparked online debates over the species of the creature . some have claimed the hairless animal is a mythical ` water monster ' others believe it is a malaysian bear suffering from a skin disease .\nfootage reveals huge variety of life on the seabed . sea stars , sponges and anemones can be seen at the ocean bottom . probe could help in the search for life on europa , a moon of jupiter .\nreal madrid host atletico madrid in the champions league quarter-finals . the two sides drew 0-0 in the first leg at the vicente calderon last week . real have not beaten atletico since last season 's champions league final . diego simeone 's men have won four of their seven meetings this season .\njodi arias is sentenced to life in prison with no possibility for parole . arias expressed remorse for her actions .\nhit head on chair when he fell at previous bail hearing in los angeles . knight , a diabetic with blood clot , said he had n't received any medication . lawyer said chains and wheelchair were a ` ploy ' to ` humiliate ' his client . cle ` bone ' sloan was hurt and terry carter died in the alleged hit-and-run . knight , 49 , charged with murder and attempted murder for january incident .\nflight was traveling from reykjavik , iceland to denver when it was struck . passengers said it was hit by lightning shortly after the plane took off . pilots reported the lighting and continued eight-hour flight to denver . it was n't until they landed that pilots notice huge hole at the nose of plane . no one on board was injured and the plane landed safely in denver .\ngable tostee will remain in jail for a drunken car chase involving police . the judge threw out his appeal hearing saying he should remain in jail . nsw and gold coast police chased tostee at 3am across state borders . the accused balcony murder will be eligible for parole in august . the sentenced comes two months after he was released on bail . he was granted bail last year on charges of allegedly murdering warriena wright . he denies he murdered warriena tagpuno wright on august 8 . ms wright fell to her death from his 14th floor surfers paradise apartment . the pair met via mobile dating app tinder six hours before she died . he is due to face a murder trial by 2016 or 2017 in brisbane .\ngloucester led 13-11 at half-time thanks to a billy meakes try . a charlie walker try and two nick evans penalties kept quins in the hunt . charlie sharples register another try for the cheery and whites . but two more evans three-pointers kept the home side in front . late tries from marland yarde and ollie lindsay-hague secured the win .\nharley renshaw has been given the all clear after battling cancer for a year . disease was in his kidney and has spread to bones , neck and left lung . he underwent months of gruelling chemotherapy and radiotherapy . made himself a superhero outfit to help him feel brave during treatment .\nmaria malone-guerbaa , 41 , used just brushes and paint to transform face . posted pictures of the process ahead of the easter weekend . london-based talent has also painted a cougar and owl on her features .\npod of melon-headed whales beached in hokota , 60 miles from tokyo . rescuers worked tirelessly to save creatures , but only three survived . 146 helpless dolphins were ` dead or dying ' as rescue operation called off . scientists believe creatures ended up on shore after being disorientated .\nleicester can move out of the drop zone by beating burnley on saturday . nigel pearson 's side were bottom of the table on christmas day . the foxes have won last three league games on the bounce .\nwomen in india are street harassed , primarily in crowded areas like trains and railway platforms . elsa marie d'silva : it 's time we speak up ; we can not accept harassment as part of our daily routine .\nthe account 's creators have made ` thousands ' of one-of-a-kind pieces for the iconic doll . she actually travels to new york , paris , london , and miami to be photographed in beautiful outfits . famous designers like moschino and rachel zoe have styled her .\nfloyd mayweather is widely considered the best boxer in the world . but he believes he is better than heavyweight legend muhammad ali . mayweather did admit that he respects both ali and sugar ray robinson . he takes on manny pacquiao on may 2 in their $ 300m mega-fight . mayweather-pacquiao weigh-in will be first ever with paid-for tickets .\narsenal face reading at wembley in the fa cup semi-final on saturday . the gunners won the fa cup last season and are defending the trophy . per mertesacker feels they have become stronger since winning last year . the german defender will not allow complacency to creep in however .\nharry kane nominated for pfa player of the year after prolific season . eden hazard and diego costa from chelsea also in contention . philippe coutinho , david de gea and alexis sanchez also up for the award .\nnsw ses warns scammers are phoning people claiming to fundraise . the state emergency service say they never call and ask for money . people have responded with disgust at the heartless . con artists are taking advantage of people 's goodwill as nsw is facing severe weather conditions . nsw ses have received more than 6500 requests for help since monday .\na kangaroo has been found hopping through a field in bruhl , germany . german police initially believed the report was an april fools day prank . after realising the caller was serious they found the beast in a nearby field . the owners later called police when the animal returned to it 's enclosure . it is suspected that the it 's fencing was damaged after severe storms .\nchancellor pledged to double the number of people buying their first home . since 2010 there have been 1.2 million first-time buyers getting first homes . mr osborne wants at least 2.4 million more over the next five years .\nit depicts sturgeon as a dominatrix in a short red dress with a whip in hand . her husband peter murrell gave snp leader the painting as a birthday gift . he is credited with ` transforming ' her into the national stateswoman she is . murrell is nicknamed penfold after danger mouse 's loyal hamster sidekick .\nmark west , 32 , was sentenced tuesday to four months jail and eight years probation for having sex once with a student , 18 , during 2012 prom event . judge said west made ' a poor decision to have an inappropriate extramarital affair ' and that the girl was graduating just three weeks later . the girl admitted to police she seduced west and met him in the office . west is married with a son and resigned from spring high school in spring , texas , following his arrest . staff reported other ` inappropriate ' behavior with female students . west apologized , saying it was a ` selfish , impulsive decision ' .\nstephanie hannon , google top dog on product management for ` civic engagement , ' will help hillary navigate the digital waters in 2016 . hannon will oversee a team that develops websites , apps and other outreach tools designed to attract democratic voters . tech gurus are in high demand among presidential campaigns . rand paul poached ted cruz 's senior digital strategist away last year . hillary has also filled a few key slots with obama white house aides .\nthe car crashed when a left rear tire tread separated on the florida turnpike on saturday . the crash took place at about 4:45 p.m. uriel miranda , 38 , who was in the car with his wife and seven children as well as his three brothers , died at the scene . his daughter , yaretsi miranda , 2 , died along with yordi miranda , 8 . troopers say all 12 occupants were relatives from apopka . police report indicated half of them were n't wearing seat belts .\nsix leeds players withdrew from squad for saturday 's match with charlton . manager neil redfearn described the events as ` freakish ' ahead of defeat . former leeds captain trevor cherry says it is ` disgraceful ' behaviour . cherry wants to see the six players involved sacked by leeds .\njames holmes has pleaded not guilty by reason of insanity in the 2012 theater shooting . his trial begins monday , and homes faces 165 counts , including murder and attempted murder .\nbombardier beetle mimics machine gun using chemicals in its stomach . as chemicals pass into the abdomen they mix with enzymes and explode . each explosion causes the foul-smelling liquid to be forced from its rear . it ` pulses ' repeatedly from the beetle 's rear - and the bug can even aim .\ncardinal francis george , a chicago native , died friday . he was to be buried thursday in his family 's plot at all saints cemetery in nearby des plaines . he was appointed by pope john paul ii in 1997 to lead the chicago archdiocese . george earned a reputation as an intellectual leader and a leading figure in some of the most prominent events in the u.s. church .\nnick clegg lists why lib dem support ` collapsed ' in economist interview . blames ` protest voters ' who did n't want to take responsibility for collation . claimed public sector workers left because pensions hit and jobs cut . says those reasons were more important than policy decisions he made . tory source says interview ` sums up ' clegg , who ` is like a petulant child '\nbrazilian rafael broke three ribs while on under 21 duty on monday night . rafael sustained injury in a challenge with leicester 's anthony knockaert . it means brazilian may have played his last game for the red devils . the 24-year-old is surplus to requirements and will be sold in summer .\nmeaghan keeler-pettigrew , stuart bradin : u.s. must rethink special forces . united states is spreading foreign military assistance too thin , they say .\ncasey levi filmed the moment he tried to get his son sam to eat a california roll with a $ 10 prize up for grabs . footage shows the youngster stepping up to the challenge but backing down after a minute 's hesitation and running off ` to be sick ' . after sam 's ruled out of the game , his younger sister charlie confidently steps up to the mark . with $ 10 in her pocket she gives her father a celebratory a high five .\nburnley host tottenham in the premier league on sunday . michael duff is the only man to appear in all eight english divisions . the 37-year-old can not wait to take on spurs sensation harry kane .\ndusan bako , 18 , flew into a rage with his 16-year-old pregnant girlfriend . put his arm around her neck and repeatedly punched her in the stomach . the victim was rushed to hospital where she later miscarried the child . he was jailed for fours years , eight months at manchester crown court .\nkevin streelman beat camilo villegas on third play-off hole at augusta . tiger woods played in the par-three contest for the first time since 2004 . jack nicklaus recorded his first ever hole-in-one at the masters .\nlouis van gaal handed andres iniesta his barcelona debut . spaniard thanked the trust the manchester united manager placed in him . iniesta claims 2009 champions league success was one of his best finals . barcelona defeated chelsea and man utd on the way to rome victory . frank ribery : van gaal is a bad man !\nlondon-based trotters has unveiled the ` new born baby collection ' . range includes boy 's t-shirts and romper suits and smocked dresses . kate apparently shopped at king 's road store for george . george effect has boosted high street copy-cat sales . royal baby number two , who is due next week , is likely to do the same .\nceltic are considering a # 400,000 move for hearts captain danny wilson . hoops could struggle to keep hold of virgil van dijk while loanee john denayer is expected to return to manchester city . scottish championship winners claim they have no need to sell .\ntoni elliot , 53 , thought she had hurt a tooth when she sat for dinner at puckett 's boat house in franklin , tennessee , on thursday . however , when she spat out the mouthful she was chewing she discovered a pearl in the palm of her hand . forty-nine precious stones followed . as naturally-occurring pearls are rare , it 's expected that elliot 's stash could fetch a princely sum .\ngloucester beat exeter 30-19 to book their place in the challenge cup final . the cherry and whites will face edinburgh at twickenham stoop on may 1 . jonny may was overlooked for the last three rounds of the rbs 6 nations .\nanimal traders had kept terrified three-year-old in the box for two weeks . they 'd been trying to find a buyer for the chimp on lucrative black market . men stopped at checkpoint trying to cross into sierra leone from guinea . guinea is a hub of wildlife trafficking , but prosecution rates are low .\nmax azria 's 30,000 sq ft home is spread across three acres and boasts 60 rooms . there is also a glass-enclosed tennis court with its own viewing box and five different gardens . the zero-edged swimming pool has a moroccan-style bathhouse , complete with a sauna and spa . azria and his wife lubov bought the house for $ 14.4 m in 2005 before giving it a $ 30m renovation .\narsenal have a chance at the premier league title if chelsea throw it away . the gunners are on a terrific run of 15 wins in 17 since january 2 's loss . the two defeats in this spell were at tottenham and at home to monaco . these were the two key games all arsenal fans desperately wanted to win . read : arsenal have exactly the same record in league as last season . click here for all the latest arsenal news .\ngary bowyer hopes jordan rhodes can fire blackburn into next round . blackburn face liverpool at home after drawing with the reds at anfield . the championship outfit will have their first sell-out crowd since 2011 .\nunai emery 's sevilla take on barcelona in la liga on saturday . sevilla beat levante 2-1 on monday and are fifth in the la liga table . after five straight wins , sevilla on course for a place in the europa league .\nfarrend rawson played against brighton as rotherham confirmed his loan deal from derby had been extended . rawson missed defeat to middlesbrough however after being recalled . football league have charged the club for rawson playing brighton game .\nwladimir klitschko takes on bryant jennings in new york on april 23 . victory will take him to within one of larry holmes ' record of 19 defences . klitschko would need another six wins after that to match joe louis . the ukrainian hopes to face deontay wilder in a unification clash . click here for all the latest news from the world of boxing .\npolice arrested a 27-year-old man on thursday on the nsw south coast . he had been on the run since wednesday after police pulled over a car . daniela d'addario 's body was found in the boot of the blue car . she was reported missing by worried family members on monday . she vanished along with her boyfriend josaia -lrb- joey -rrb- vosikata , 27 . vosikata had a wife and children back in fiji , ms d'addario 's friend says . mr vosikata will face court on friday after being extradited to the act .\nsurveillance video shows a sound transit link light rail carriage going along a straight trackway in south seattle . all of a sudden a white sedan veers left into its path . luckily the driver survived and was taken to hospital with only minor injuries . the incident occurred just after 11am on monday where the rail tracks intersect at 7150 martin luther king way south .\ndelaware family becomes ill at the sirenusa resort in the u.s. virgin islands . preliminary epa results find methyl bromide was present in unit where family stayed . u.s. justice department has initiated a criminal investigation into the matter .\netienne capoue and nabil bentaleb win crossbar challenge on thursday . the game ended a morning of fun for fans during an open training session . tottenham host aston villa on saturday at white hart lane .\nnhs gave out 404,500 prescriptions for suncream at a cost of # 13m in 2014 . also handed out 4.7 million prescriptions for indigestion pills costing # 29m . other items routinely prescribed include vitamins , vaseline and toothpaste . critics branded prescriptions ` ludicrous ' at time of financial crisis for nhs .\ngerman primary school teacher is in 21st week of pregnancy and ` feels fit ' she became pregnant through artificial insemination using eggs and sperm . in 2005 , she gave birth to her youngest daughter leila , at the age of 55 . children - eldest of whom is daughter antje , 44 - are by five different fathers .\nlookalikes niamh geany , 26 , and karen branigan , 29 , made headlines . the pair , from ireland , live only an hour apart . a retired priest has also found his doppelgänger , a retired head teacher . london-based journalist sophie robehmed found hers in birmingham . two male university students found their body doubles on campus .\npolice investigating links between hatton garden heist and berlin bank raid . german detectives expected to make contact with scotland yard this week . they are keen to find out whether any dna was recovered from the scene .\nnewcastle entertain swansea in the premier league on saturday . newcastle 's 3-1 defeat vs tottenham was their sixth straight loss in league . magpies sit seven points clear of the relegation zone with five games left .\nophelia conant managed to crawl backwards through cot and get trapped . her mother was watching baby monitor and found her hanging by neck . days later another toddler found dangling in # 450 bed from same company . phillip dickens , owner of furniture supplier , was given suspended sentence .\njeffrey dahmer 's killer tells new york post he did it because of the convict 's creepy practical jokes . dahmer 's former minister tells the paper he 'd say to guard , `` i bite ''\na woman discovered a tree snake curled up inside a shopping trolley . snake catcher richie gilbert was called to the rescue at coles caboolture . when he arrived , he managed to untangle the snake from the trolley . he safely released it back into the bushland just kilometres away . mr gilbert also gave daily mail readers his top tips to avoid getting bitten .\nscientists in colorado have found evidence for a new solar season cycle . every two years it appears ` bands ' of magnetic field move to the surface . the sun was already known to have an 11-year solar cycle . when the two combine it can create amplified and dangerous storms .\ndavid cameron appeared to forget which football team he supported . the pm named west ham as his team , despite supporting aston villa . labour said the gaffe exposed mr cameron as a ` phoney ' leader . the conservative leader said he had suffered a ` brain fade ' mr cameron insisted that he had supported aston villa his ` whole life '\ntanka maya sitoula was at home in kathmandu , nepal , when deadly quake struck . she was trapped inside the ruins of her wrecked home for 36 hours .\nthe soviets invaded poland in world war ii and deported hundreds of thousands of people . tomasz lazar photographed some of these poles and listened to their stories .\ninstinct to avoid arachnids developed as evolutionary response to threat . scientists say it could mean arachnophobia represents survival instinct . could date back to early human evolution in africa , where spiders with very strong venom existed millions of years ago .\nan outside review found that a rolling stone article about campus rape was `` deeply flawed '' danny cevallos says that there are obstacles to a successful libel case , should one be filed .\nyoungsters were at the arcadia palms apartment complex in las vegas . residents then heard an explosion and saw a huge plume of smoke . police say it was accidental and they are not expecting to file any charges . authorities said the pair who died were related .\ngregory van der wiel does n't want to leave psg in the summer window . the dutchman revealed his ` love ' for the club and his team-mates . psg continue to be linked with a move for barcelona full back dani alves .\nthe unidentified man was photographed in the distasteful clothing item by a twitter user . dozens of people responded to express their disgust at the t-shirt .\nsergio ramos opened the scoring for real madrid in the first half at the bernabeu . cristiano ronaldo then hit the post with a penalty before james rodriguez nets . juanmi pulled one back for malaga but ronaldo scored late on to secure the win . gareth bale and luka modric go off injured for real madrid .\nchelsea are seven points clear at the top of the premier league table . blues have announced partnership with fitness leaders technogym . kurt zouma , eden hazard and nemanja matic have been working out . jose mourinho 's side host man united at stamford bridge on saturday .\nreal madrid host granada at the bernabeu on sunday , kick-off 11am . the match will be real 's first since their el clasico defeat at barcelona . cristiano ronaldo and gareth bale are both back from international duty . martin odegaard took part in the first-team session with carlo ancelotti .\nmateo musacchio fractured fibula and dislocated ankle during getafe draw . santi cazorla tweeted : ' a lot of best wishes to my friend mateo ' arsenal midfielder cazorla and musacchio played together at villarreal .\nlinda hogan purchased the 23.63-acre property for $ 3.5 m a year after she divorced the wwe hall of famer in 2009 . linda remodeled the 6,300 sq ft house , adding stone walls , stone fireplaces , carved wood details and coffered ceilings . the five bedroom , 5.5 bathroom estate , which has been put up for sale , also features a 1,200 sq ft guest house .\nthe manchester derby is crucial in the race for the premier league top two . under-pressure manuel pellegrini ca n't afford to lose the clash . the performances of sergio aguero and wayne rooney will be important . man united can open up a four-point gap if they beat their bitter rivals . click here for all the latest manchester united news . click here for all the latest manchester city news .\nandrew else was knifed by ephraim norman after getting off bus last year . the 52-year-old estate agent had been at pub with friends before the attack . wife clare else says her ` life has been turned upside down ' since murder . norman , 24 , is now being detained indefinitely under the mental health act .\njuanette cullum , 48 , also allegedly stole two laptops and many toiletries . she was arrested after a witness saw her stealing property , prosecutors said . officials said cullen admitted to stealing from american airline planes for the last three years . was charged with grand larceny and criminal possession of stolen property .\na big pitfall on dinner dates is a struggle to find topics to discuss . tumblr blog called conversation sparks lists funny facts to avoid silence . they include ` tall men marry earlier but short men stay married longer '\nsarkozy faces charges over funding of failed 2012 bid to retain presidency . declared that ` hope has been reborn ' after huge gains in regional elections . but just days later , he is pictured being driven to a financial court hearing .\n`` rosie the riveter '' appeared on the cover of the saturday evening post on may 29 , 1943 . mary doyle keefe was a 19-year-old telephone operator at the time .\ncloud nine ridden by leighton aspell won the grand national at aintree . ap mccoy finished fifth on shutthefrontdoor in his final ever national . aspell has won two years running after 2014 success on pineau de re . saint are finished second while monbeg dude made up the top three . aspell said mccoy is as good in defeat as he is when he is winning .\nformer england captain michael vaughan is favourite to replace paul downton as director of england cricket . kevin pietersen has backed his former team-mate to take the role . surrey chief alec stewart would also be open to talks with the ecb .\nhilary wilson suffered an amniotic fluid embolism during labour . she had a cardiac arrest and ` died ' for 11 minutes as her son was born . was given a 30 % chance of survival but thankfully woke up 4 days later . had no memory of being pregnant or giving birth after she woke up .\nzimbabwe have reportedly agreed to visit pakistan for odi series in may . pakistan have not played host to major cricket series since 2009 . there have been security fears since sri lanka were victims of terror attack . team bus was targeted by gunmen in lahore , and eight people were killed .\nus ambassador stephen mull apologised for james comey 's comments . comey , head of the fbi , wrote editorial opinion piece in washington post . it said : ` in their minds , the murderers and accomplices of germany , and poland , and hungary and so many other places did n't do something evil ' mr mull said nazi germany alone bears responsibility for the holocaust .\nmanchester united host manchester city in premier league on sunday . mark clattenburg has been named as the manchester derby referee . official sent off vincent kompany for belgium and both his red cards shown in the league this season have been to united players .\nheartbroken mother speaks out about the brutal murder of her baby son . baby zayden was murdered as his family slept during a random robbery . harley hicks , 19 , attacked the 10-month-old baby in an ice-fuelled rampage . casey veal opened up about the pain she lives with since her son 's death . it comes as the federal government announced a task force this week to combat the ` national ice epidemic '\ndavid a. clarke jr. and jonathan thompson : why does google have an app that ambushes police ? with waze , we are confronted with a tool that can be lethal to police officers and deputies .\nchelsea to face sydney fc at the anz stadium on june 2 . the blues are following tottenham 's lead in organising post-season game . tottenham play on may 28 and fixtures come days before england 's friendly away at ireland . arsenal vs chelsea team news , probable line ups and more . click here for all the latest chelsea news .\ntulsa reserve deputy robert bates was silent as he appeared in court in tulsa on tuesday and pleaded not guilty to 2nd-degree manslaughter . despite the charges , the judge told the millionaire retiree that he is allowed to take a previously planned vacation to the bahamas . bates has said he mistakenly pulled out his gun instead of his taser when he shot eric harris , who was fleeing from a sting operation on april 2 . on tuesday , harris ' family said that while they continue to mourn the loss of their loved one , bates will be enjoying his ` wealth and privilege ' abroad .\n90 per cent of women experience menstrual pain during their period . one in ten will suffer from endometriosis but it can take up to ten years to be diagnosed . despite this women do n't know what it is or if their pain is normal . naturopathic doctor lara briden shares natural remedies for period pain .\nnew york-based artist catalina viejo paints only the rear ends of famous stars , never their faces . she uses paparazzi snaps , rather than airbrushed images from magazines , to create her paintings . catalina has produced 42 miniature bottom portraits , and sells them for $ 90 -lrb- # 60 -rrb- each .\nbath scored tries through leroy houston , jonathan joseph , matt banahan , sam burgess and semesi rokoduguni . fly half george ford added 18 points from the boot . the exiles replied with tries from tom court and blair cowan .\nchad mendes keeps his no 1 ranking after demolition of ricardo lamas . a right hand to the top of the head dropped lamas in under three minutes . al iaquinta takes split decision after 15-minute war with jorge masvidal . julianna pena and dustin poirier won their fights in the first round .\nemilia clarke who plays daenerys targaryen will be central to series five . female characters seem to outlive their male counterparts on the show . last season saw several of the main male characters murdered horribly . despite the carnage , kit harington , who plays jon snow is in series five .\ninter milan held 1-1 by bottom-of-the-table parma in serie a on saturday . roberto mancini cancels players ' day off after criticising attitude . inter milan players will now report for training early on easter sunday .\nalec stewart admits he would happily consider a role within ecb . england would need permission from surrey before contacting stewart . ex wicketkeeper-batsman claims it would be silly not to listen to an offer .\nswimmer uses selfie-stick to film her reaction when manatee floats past . frightened spring-breaker was in water in florida when she took footage . the short clip shows the giant herbivorous creature passing within inches .\nmother akon guode was released from police custody on thursday night . she crashed 4wd into melbourne lake just before 4pm on wednesday . her three young children died and another is now recovering in hospital . children 's father says ms guode ` did n't feel herself ' as she was driving . ms guode reunited with her daughter , aluel , on friday night .\nharry and charlie davies-carr starred in the clip some eight years ago . in the video charlie bites his older brother 's finger . the film was originally made to send to the pairs ' godfather in america . it has since amassed 816million views on youtube .\nelizabeth sedway , 51 , has rare plasma cancer and was returning to california with her husband and two children from hawaii vacation . sedway shared video of her removal from alaska airlines flight on facebook . she said airline representative took note of her because she was wearing a surgical mask and was sitting in handicapped section of boarding area . sedway was told the airline was concerned she might collapse on the plane . the cancer patient is expected to miss two chemotherapy sessions because of the delay caused by the airline .\nelizabeth dawes was diagnosed with breast cancer in july 2013 . doctors advised a double mastectomy but she refused , instead undergoing extensive surgery to remove a tumour and reconstruction afterwards . four days later she was told staff had confused her notes with those of two other patients and that she had never had the disease . royal wolverhampton nhs trust has admitted liability and apologised .\npaul casey left the european tour to get back into world 's top 50 . former world no 3 is ` desperate ' to return to the 2016 ryder cup team . captain darren clarke has said he wants casey at hazeltine next year .\ndoug hughes landed a gyrocopter on the us capitol lawn on wednesday . charged with multiple offenses and is under house arrest until court date . he spent two years planning stunt to protest campaign-finance laws . will appear in court on may 8 and is facing up to four years in prison . hughes thought he 'd make it after leaving gettysburg , pennsylvania .\nraheem sterling has rejected a new contract worth # 100,000-a-week . liverpool boss brendan rodgers says sterling wo n't be sold this summer . his achievements at 20 are not on the same level as some anfield greats . steven gerrard won three trophies in the first year out of his teens . michael owen had scored more than 50 career goals for liverpool . sterling has a long way to go if he is to fulfil his huge potential .\njohanna basford has sold 1.4 million copies of her book secret garden . the trend for grown-ups colouring in is said to have started in france . craze has spread across the globe with fans starting colouring-in groups . experts say the pursuit allows those doing it to rediscover their creativity .\nalan pardew left newcastle to take over as crystal palace manager . there have been rumours linking him with magpies keeper tim krul . pardew is disappointed that reports emerged suggesting the move . he says there has been no contact between him and the club or the player .\nufc woman 's bantamweight champion visited manny pacquiao 's camp . rousey is backing pacquiao in his megafight against floyd mayweather . pacman thanked rousey for her support in a twitter picture together . read : mayweather vs pacquiao referee to earn $ 10,000 -lrb- # 6,800 -rrb- on may 2 . watch : pacquiao releases music video ahead of mayweather bout .\nwarning : graphic content . justin whittington , 23 , was taken into custody in california on friday . initially charged with child cruelty , it was dropped to ` endangerment ' on saturday , after his bail went from $ 1m to $ 20,000 , he posted bond . whittington was ` filmed hitting a toddler in the face so hard that he falls ' he took to facebook on sunday asking for a ` second chance ' asked for his son and wife to be ` left out of this ' as he is ` made to suffer ' .\neu has been investigating the us search giant 's practises for five years . 3 previous attempts to settle matter have stalled due to political pressure . one complaint is that google search leads users on to the firm 's own sites . current case could result in google being fined 10 % of its annual revenues .\nbath face newcastle falcons in the aviva premiership on friday night . sam burgess has played predominately at centre so far for bath . but the former rugby league superstar will line up at flanker on friday .\nap mccoy rode in his last races on saturday at sandown park . his final ride was a third place finish on box office in esher . mccoy said the reception from fans has made retiring easier . he said he considered retiring quietly , but is glad he did n't .\nboko haram jihadis posed for photos somewhere in north-eastern nigeria . they are the first images of the terror group since it became part of isis . fighters pose with guns and alongside isis ' sinister black and white flag . isis branding suggests the terrorists now controls boko haram releases . release comes as nigerian soldiers stormed the islamists final remaining stronghold in the country .\nkezzia french , 46 , thought she 'd laid baby daughter andrea to rest in 1999 . the six-month-old died after being flung against a wall by meyrick fowler . police informed ms french they had andrea 's organs in a fridge after audit . she will hold a second funeral at ipswich chapel in suffolk tomorrow .\nroyal superfans have arrived to set up camp outside the lindo wing . margaret tyler , 71 , owns a # 10,000 collection of royal souvenirs . fellow fan john loughery , 60 , never misses a single royal event . both spent prince george 's birth camped outside st. mary 's hospital .\nchris smalling in contention but luke shaw and jonny evans out . robin van persie will not be risked by manchester united . vincent kompany a doubt for manchester city with hamstring injury . wilfried bony , stevan jovetic and dedryck boyata will be absent for city .\nitalian navy retakes fishing boat seized by smugglers . boat was being steered towards libyan port of misrata . italian navy says shots were fired accidentally , one fisherman injured .\ncylvia hayes allegedly used her relationship with disgraced governor john kitzhaber to land contracts for her business . emails show she routinely attended meetings and was copied in on emails among senior staff . also requested information and clerical assistance from state employees .\njohn lewis has slashed the prices on almost 200 christmas products . with just days until easter its part of a bid to sell leftover festive goods . it comes after spending millions on touching christmas ad campaign .\nqueen 's club will host great britain 's quarter final against france in july . andy murray and gb captain leon smith were keen to play at queen 's . tie is five days after wimbledon finishes so could not be played at sw19 .\nparma declared bankrupt last month and have n't paid players all season . they were deducted three points earlier in the serie a season . the four-point sanction leaves them with 12 points from 30 games .\nkevin franklin left his 80-year-old victim without any money to buy milk . meanwhile fraudster funded dream alps wedding with eight-years of thefts . franklin said he needed money for failing business and after family deaths . when he was arrested the fraudster had told police : ' i played him ' jailed for nearly five years despite franklin saying he 's ` terrified ' of prison .\nalan rogers smashed the head of fred hatch in their communal garden . mr hatch 's wife enid found rogers standing over her husband 's body . rogers claimed he wanted mr hatch dead as he was involved in witchcraft . he told officers arresting him ' i have been waiting a long time to kill that man ' .\nshamima begum , amira abase and kadiza sultana fled to be ` jihadi brides ' believed trio are training with al-khansa brigade in isis stronghold raqqa . one of its leaders is british-born aqsa mahmood who fled to syria in 2013 .\ndwelling values rose by 5.8 per cent in sydney over the last quarter , the strongest increase since april 2009 . the increase has brought the median house price to $ 690,000 in the harbour city . sydney 's strong performance led the national dwelling value to heighten by 3 per cent . canberra performed second best with a 4.1 per cent increase followed by melbourne at 3.5 per cent and $ 518,000 .\njonathan trott will be given chance to reinvent himself as an opener . alastair cook feels trott is ready to return to the england squad . the batsman has been impressive for his side warwickshire .\ntom colicchio : `` the meatrix : relaunched '' is an important benchmark of the evolution of sustainable food movement . but factory farms continued to reap large profits while producing subpar meat , polluting nature and damaging our health . colicchio : we need to ask members of congress to promote sustainable farming .\nitalian-american tenant adele sarno , 85 , received a letter from her landlord , italian american museum , seeking to increase rent to market rate of $ 3,500 . fight over her two-bedroom apartment began five years ago . she has been living there since 1962 when rent was just $ 150 a month .\nnewcastle goalkeeper tim krul was seen laughing at half time . jermain defoe had scored a stunning goal past him moments earlier . sportsmail 's jamie carragher criticised krul for being too friendly . but the keeper was simply showing respect to an opponent .\nfor the first time after worldwide speculation , bruce jenner confirmed to diane sawyer : ' i am a woman ' he once encapsulated what it meant to be an alpha male : olympic champion , muscle-clad , hairy . told sawyer he was ' a confused person at that time ' during those olympic days . he revealed all of his three wives , including kris jenner , knew he cross-dressed .\nlicensing system for new agents was due to change on april 1 . new rules allow anybody to become a football agent . mel stein warns that new regulations will ` create anarchy ' .\nsonia pereiro-mendez says she was treated unfairly after getting pregnant . mother-of-two claims she missed out on bonuses worth millions . senior banker says she was told she was n't ' a significant long-term player ' she is suing goldman sachs for sexism and maternity discrimination .\njonathan trott has struggled on his test comeback against west indies . ben stokes took to twitter to voice his frustration with a no-ball call . former england rugby 2015 chief executive debbie jevans has made her first public appearance since that twickenham storm .\nthe stunning photos of the butterfly wings were taken by 51-year-old linden gledhill from staffordshire . he used a trinocular-reflecting light microscope with a canon eos 5d mark ii camera is fitted to the top . images include close-up shots of the peacock swallowtail , a sunset moth and the mother of pearl butterfly .\nemployment in uk rose above 31million in last three months to february . conservative 's economic strategy praised by international monetary fund . prime minister david cameron says tories have overseen a ` jobs miracle '\nnathan hughes accidentally knocked out george north during northampton 's 52-30 victory against wasps on march 27 . the wasps no 8 was initially suspended for three matches . hughes missed his side 's champions cup defeat against toulon . it was north 's third blow to the head in the space of two months . the welsh winger has been advised to take a month off from playing .\nlindsay , 28 , moved to the uk last spring before making her london stage debut . the former child star has become more famous for her run-ins with the police and the media than anything else in recent years . but lindsay is now vowing to stay in london to ` grow up ' . she appears in a provocative spread for homme style magazine , having been shot by famed fashion photographer rankin .\nshocking video captured at the sunoco on north 5th street in philadelphia . five attackers stream out of a minivan and target the helpless 51-year-old . after beating him to the ground , they continue to stamp on his head . two alleged attackers have been charged with attempted murder . police are still searching for the other suspects involved in the attack .\nnate silver predicts the conservatives will win 283 seats and labour 274 . means both david cameron or ed miliband could find it all but impossible to cobble together a workable coalition -- let alone rule on their own . respected us pollster predicted results of 2008 us election almost exactly .\njacob fairbank injured his ankle while on loan at halifax . huddersfield forward faces lengthy spell on the sidelines following scans . giants managing director richard thewlis said ` it 's another bad blow ' .\nhayley okines , from bexhill , had the premature ageing condition progeria . the disease ages the body - but not the mind - at eight times normal rate . gives sufferers the appearance of an octogenarian with symptoms including baldness , arthritis and heart problems . hayley defied odds to live 4 years longer than expected and died yesterday .\nscottish tv presenter has lost weight through regular zumba classes . dance routine has helped 55-year-old lorraine drop two dress sizes . has also found a friend for life in zumba instructor maxine jones . read the full interview in this week 's issue of woman , on sale tuesday 14 april .\ntony toutouni has amassed 750,000 followers on photo-sharing site in eight months thanks to outrageous posts . la-based entrepreneur is endlessly surrounded by supercars , piles of cash and bikini-clad women in pictures . he 's friends with controversial instagram playboy dan bilzerian and says ` it 's not hard to get any girl you want '\nsearch engine reveals top 10 questions asked by viewers during debate . voters wanted to know why david cameron did not take part in contest . also wanted to know how hold ed miliband and nicola sturgeon are .\njose luis gaya is wanted by both chelsea and manchester city . the premier league clubs are willing to pay his # 13m buyout clause . left-back gaya , 19 , is also the subject of interest from real madrid .\nbayern munich beat porto 6-1 in their champions league tie on tuesday . result saw bayern win quarter-final encounter 7-4 on aggregate . it was the first-time porto had reached that stage since the 2008-09 season .\ndr. seuss ' new book , `` what pet should i get ? '' will have a first printing of 1 million copies . the publisher released a never-before-seen image from inside the book by theodor geisel .\nsergio ramos was superb in midfield during win over atletico madrid . ramos is filling in for injured luka modric in central role . real madrid legend is primarily a centre-back , but can play elsewhere . spain star started his career up front , and even fools around in goal .\nbarcelona were desperate for reinforcements at the end of last season . everton defender john stones was on the club 's list of transfer targets . la liga giants instead signed thomas vermaelen and jeremy mathieu . read : manchester united midfielder ander herrera tracked by barcelona . read : arsenal defender hector bellerin tops poll to replace dani alves .\nclintons ' new year 's vacation included stay at casa de campo , where sen. bob menendez spent time with salomon melgen , the wealthy donor at the center of his criminal charges . bill clinton 's previous visits to casa de campo included at least one trip where he stayed with melgen , according to the doctor 's former secretary . power couple stayed there with alfy fanjul , a billionaire sugar baron who owns the resort and played a small part in the monica lewinsky scandal . dominican newspaper reported that they discussed hillary 's presidential ambitions . melgen has contributed $ 8,600 to hillary clinton 's senate and presidential campaigns .\nanalysis of google search results has revealed the areas in europe and the united states most concerned with different sexually transmitted diseases . herpes are a concern in norway while finland searches most for chlamydia . mississippi searched for gonorrhea and syphilis more than any other state . while in the uk , chlamydia seemingly causes the most concern and is incidentally the most commonly diagnosed std in the country .\nthe duke of edinburgh has been presented with his australian knighthood . the queen gave him the insignia of a knight of the order of australia . the citation said that the duke ` has served australia with distinction ' . tony abbott 's decision to award him with the honour was controversial . he was criticised by members of his government as well as the public .\ncarlos tevez is yet to make a final decision on his future at juventus . tevez 's current deal at the serie a giants is due to expire in 2016 . boca juniors president daniel angelici claimed tevez is close to returning . transfer talk intensified when tevez replicated famous boca celebration .\nwarning : graphic content . journalist at russian tv channel step on landmine in east ukraine . andrei lunev received serious head and lower extremities wounds . six government troops and one rebel fighter dead after clashes overnight .\nthe football star is said to be flying his closest friends to the five-star luxury amanjena resort outside marrakech . tom cruise , guy ritchie , gordon ramsay and best friend dave gardner are set to attend the lavish event . the opulent hotel is where david and victoria renewed their vows in 2004 .\nisis released images showing graves being destroyed on social media . group said graves above ground showed dead closer to allah than living . this meant that they must be destroyed , the terrorist organisation argued .\nfbi agents and a suspected serial robber exchange gunfire in an fbi stakeout . two fbi agents are injured and the suspect is shot during the gunfight .\nbayern munich beat porto 6-1 in the champions league on tuesday . pep guardiola 's side progressed 7-4 on aggregate to reach semi-finals . thomas muller scored 27th champions league goal to pass mario gomez . muller is now the leading german scorer in the competition . after game muller led the celebrations with supporters using a megaphone .\nisraeli prime minister benjamin netanyahu slams nuclear framework deal with iran . he says it would legitimize iran 's nuclear program and bolster its economy .\njodie taylor fired england into the lead in the opening minute . reading striker fran kirby doubled england 's advantage . wang shanshan pulled a goal back for china in the 16th minute .\n`` x-men '' original character bobby `` iceman '' drake is revealed to be gay in latest issue . `` all-new x-men '' no. 40 has psychic jean grey discovering drake 's sexuality . iceman has been in marvel comics for over 50 years .\nplan was revealed in an email sent out to youtube partners . consumer can pay for an ` ads-free ' version of youtube for a monthly fee . believed new service will launch on 15th june .\njenna marotta , 27 , suffered from dermatillomania , a psychosomatic disorder that caused her to obsessively pick at the skin on her face . the new york-based writer said she used to spend up to four hours a day squeezing her skin in front of the bathroom mirror . she developed the condition while trying to battle binge-eating addiction . has now managed to overcome it - but sees psychiatrist ` to stay on track '\naustralian plus size model laura wells releases eco-friendly swimwear . the swim range goes up to size 24 and is 100 per cent recyclable material . the prints australian ocean inspired designs and coral reef colours . the swimwear is a collaboration with us brand swim sexy .\nliverpool beat newcastle 2-0 in the premier league on monday night . raheem sterling and joe allen saw off the magpies at anfield . liverpool are four points behind fourth-placed manchester city . read : jordan henderson hopes liverpool can turn up heat on man city . read : rodgers will talk to raheem sterling about his behaviour .\npatricia wilnecker has visited lamorna cove every year since 1948 . pensioner , 81 , even moved to the area and wrote book about cornish coast . but landowner claims she deliberately knocked down son daniel , 36 . roy stevenson said she can come back if ` she tells him she 's sorry '\ndanielle and adam busby welcomed five girls into the world last week . she has only held two but described the feeling as ` amazing ' . born at houston 's woman 's hospital of texas the babies are healthy . they are the first set of all-girl quintuplets born in the us and the first globally since 1969 . team of 12 doctors helped to deliver the babies by c-section . delivery was at 28 weeks and took the team less than four minutes .\nali maffucci , 28 , wanted to slim down for an upcoming photoshoot . she replaced pasta , rice and potatoes with spiralized vegetables . along with exercise , she managed to lose 11kg -lrb- 24lbs -rrb- in three months . says spiralized food is ` delicious ' and she has more energy than before .\njerry moon , 72 , had pre-arranged to be buried in a family plot in chehalis . but shocked relatives found his body had been replaced by a stranger 's . mr moon - who was afraid of cremation - had been accidentally incinerated . the family are now suing brown mortuary service for the upsetting blunder .\nthe pets wear tulle wedding dresses and tuxedos with bow ties . couples are given marriage certificates after ` exchanging vows ' wedding is organised to promote a social media app designed for pets . no expense spared as pooches arrived in bmws and a stretch hummer .\nwoman charged with having sex with a dog lashed out at a photographer . jenna louise driscoll hit him over the head with a bottle outside of court . she fronted brisbane court after she failed to appear on april 7 . she was arrested on friday afternoon by police after a warrant was issued . police allegedly found bestiality videos when investigating text messages on her mobile phone for allegedly dealing cannabis in october .\nmarisa curlen , a student at james madison university in virginia , was found unresponsive in her room at sorority house friday morning . police are awaiting autopsy and toxicology test reports , but no foul play is suspected . curlen was a sister at alpha phi sorority on campus . played volleyball at rye high school in rye , new york ; her 2013 graduating class lost three people in less than a year .\njune whitfield will appear in the bbc soap next week as sister ruth . her character will offer advice to anguished kat , played by jessie wallace . ` it was an absolute delight to work with jessie ' , ab fab actress said .\nsherwood is a passionate man but he ca n't afford to let things get personal . at new club aston villa , he has set the emotional bar high but it 's working . christian benteke has found a new lease of life at the midlands outfit .\ngov. mike pence extends public health emergency by 30 days . 129 cases of hiv have been confirmed since mid-december . more than 4,300 needles have been distributed through temporary needle exchange program .\nben affleck has revealed name of the slave-owning ancestor which he got pbs to cut from finding my roots . he says his freedom rider mother chris anne was descended from benjamin cole , a georgia slave-owner ` about six generations ' ago . oscar winner apologized last night for having pbs show cut revelation of his slave-owning roots , which was first revealed last week by daily mail online . ' i did n't want any television show about my family to include a guy who owned slaves . i was embarrassed , ' he wrote on facebook . pbs has launched an internal investigation into whether or not finding your roots violated their editorial standards and its host 's future is in doubt .\npreston slipped up in their promotion bid with 2-2 draw with gillingham . mk dons closed the gap with an impressive 3-0 victory over fleetwood . swindon remain in the hunt following a 4-2 away win at rochdale .\nmiller : while the u.s. entangles itself in the nuclear negotiations , iran is gaining a freer hand to assert its regional influence . he says united states is being outfoxed , not outgunned .\nbrian nicol , 32 from glasgow , dived into a pool but failed to resurface . frantic friends dragged him out of the water but he could not be revived . group were partying around pool after night out in marbella , says source . early investigations show death was a ` tragic accident ' according to police .\nspaniel alfie had a heat pad placed on him during an mri scan at a clinic . but vets had warmed it up in a microwave rather than in an incubator . after his owner lynne edwards then suspected something was wrong . the 12-year-old pet was then found to have suffered three degree burns . warning graphic content .\nmanchester city lost 4-2 to manchester united at old trafford on sunday . yaya toure was the subject of scathing criticism on sky sports . gary neville said toure can not handle central midfield against ` quality ' neville used ivorian as an example of ` weeds in the garden ' at city .\njaclyn methuen and ryan ranellone moved into their marital home together on last night 's episode of the fyi reality show . 30-year-old jaclyn , from union , new jersey , nearly left her new husband at the altar because she was n't physically attracted to him . the couple 's new one-bedroom apartment is in astoria , queens .\nwomen are wearing the ribbon and posting pictures on social media . the breast-lifting look is inspired by the anime character hestia . ribbon is tied so that when the arms move up , the breasts are lifted .\nfemale juror : `` everyone 's life changed because of this '' the jurors said they did n't learn of the other charges against hernandez until after the verdict . for these jurors , the system worked : it 's `` designed to be fair to both sides ''\nartist frank mckeever from florida created these amazing posters . they show how we might colonise various worlds in the solar system . included are humans skiing on a moon and living in cities on mars . others show life on europa and near saturn - and a destroyed earth .\njustin bettman began the popular set in the street project in december . caught the attention of jose luis , who asked for his help . luis told his girlfriend that they had been cast in a photo shoot . when bettman asked during the shoot if luis wanted to try any more poses , he dropped on one knee and popped the question . bettman told daily mail online the scene made his makeup artist cry .\nskegness featured among picturesque places like windermere and cornwall . lincolnshire town famous for its butlin 's attracts over 400,000 visitors a year . research revealed 165,000 people in england and wales have holiday homes .\njan hansen 's giant egg is the equivalent of 1,600 chocolate bars . egg will be sold at hansen 's chocolate house in folkingham linconshire . all proceeds raised from the sale to be donated to st barnabas hospice .\nfootage shows the seven-day-old foal nuzzling sunny bayne 's shoulder before pushing her to the ground and lying on top of her belly . the young rider from kentucky ca n't stop smiling at the animal 's antics . to date the clip of bayne has received thousands of hits online .\nthe stolen peruvian mummy was abandoned by archaeological dig site . street cleaners found the remains in a box and called police . believed stolen from chan chan capital of the chimu empire .\njamie peacock scored two tries for leeds in their win over salford . the victory is the super league leaders ' 20th in a row over the red devils . the rhinos have now won their last five matches on the bounce .\ndozens of people clambering around debris of dharahara tower in kathmandu to take selfies in front of wreckage . taking pictures amongst rubble of historic nine-storey structure , which has been reduced to pile of red brick dust . but one rescuer said those taking photographs of themselves and friends were not ` understanding the tragedy ' not clear how many people were killed in tower in quake-hit city , but it was said to have been filled with tourists .\njoanna goodall forged signatures for cash refunds at a premier inn . bosses noticed high level of refunds and cctv which showed goodall taking money from the till . the pregnant 30-year-old admitted thefts at newcastle crown court . goodall , of newcastle , was given a nine-month suspended sentence .\nryanair has informed passengers they can not bring alcohol into the cabin . decision follows a handful of incidents involving unruly behaviour . passengers risk being kicked off the flight if they do n't comply . travellers ' hand luggage will be searched before they board the plane . fourteen men were kicked off a flight that diverted to an airport near paris .\ndeputy pm was met by protesters in surbiton , south-west london . protesters chanted : ` nick clegg lied to me , he said uni would be free ' mr clegg ignored the protesters and launched new assault on the tories . he said george osborne 's plan was ` socially and morally unacceptable '\nphillip buchanon was a first-round draft pick for the oakland raiders in 2002 when his mother made what he called the ` desperate demand ' . buchanon , who is now retired , instead bought her a brand new house . but she refused to sell her old house and rented it to her sister . so he ended up paying maintenance for both houses for seven years without getting any of the rent money . when buchanon finally had enough his mother asked for $ 15,000 instead of a smaller house whose upkeep she could afford .\njames ritchie was voted into the job at the tasmanian university union with a clear majority over a female candidate more than three weeks ago . mounting public pressure and an online petition forced him to resign . no gender was specified in the union 's job description guidelines . but the union has now introduced that the applicant must be a female .\na new reddit thread asked users to submit their experiences . many men were disappointed with their mail-order brides . meeting a woman this way can cost up to $ 50,000 -lrb- # 32,700 -rrb- or more .\ndina amos-larkin was in salou , spain for a four-day sports festival . plunged 50ft off balcony at hotel jaime 1 around midnight on april 3 . law student , 21 , was in medically induced coma for two weeks . gofundme page has been set up to raise # 20,000 to get her home .\nthe australian government will make a multi-million dollar telemovie . it has been commissioned by the customs and border security agency . the drama is set to be shown in syria , iraq and afghanistan . it will be produced by sydney-based company put it out there pictures . abc program lateline reports the story-line will be of the australian navy and asylum seekers drowning at sea . the drama will reportedly be shown later in the year , urging asylum seekers not to trust people smugglers .\nalison saunders wo n't quit because ` making the right decision is not a resigning issue ' head of cps decided against pressing charges against lord janner . she was persuaded against taking a case by the labour peer 's dementia . she said : ' i thought long and hard and i 'm confident i got it right '\nman threw a wheel spanner at security night patrol car in harts range , northern territory . he then deliberately drove his car through doors of a police station . the 42 year old man managed to drive away in the damaged car . car had no front number plate , front bumper bar or working headlights . vehicle may still have rear number plate which is sa-registered s145 avi . station is located 240km northeast of alice springs in northern territory .\nprison officers and kkk members thomas jordan driver , 25 , david elliot moran , 47 , and charles thomas newcomb , 42 , arrested on thursday . each face one state count of conspiracy to commit murder in florida . the murder plot allegedly started after driver had a fight with the black inmate , believed to have hiv , and he allegedly bit the prison guard . fbi gave informant a cellphone with the doctored photograph of the inmate who looked like he 'd been fatally shot - klans men celebrated .\nvideo shows six children asked to pick out their mother while blindfolded . mums become emotional waiting to see if their child will recognise them . pandora created ` the unique connection ' for mother 's day . the video has so far been viewed 2.8 million times on youtube .\nthe chef and healthy food campaigner 's company said influential stars should be careful about adverts appearing next to their video posts . jamie oliver 's food tube channel has a ` firm agreement ' with youtube to stop ads for unhealthy foods running next to his own posts . the advertising standards authority currently does n't safeguard against unhealthy ads appearing on online videos , just television programmes .\nwomen in brisbane are protesting offensive slogans on wicked campers . the group claims the slogans promote violence against women . in 2014 the company agreed to remove the slogans but has n't happened . the group is spraying over slogans and posting pictures on social media . over 150 protesters from wicked pickets gathered to rally against the vans .\nowner of manhattan building which exploded could face criminal charges . nicholas figueroa , 23 , and moises locon , 26 , died in the huge explosion . authorities are now building a case against the owner , it has been claimed . investigators are looking into possibility gas was tapped from next door .\nstephen dodd photographed asif bodi and abubakar bhula praying during half-time at anfield last month . he captioned the image : ` muslims praying at half time #disgrace ' liverpool fc now say they will take action against dodd over the post .\namir khan is currently training for next month 's fight with chris algieri . the brit took a break from the speed ball to show off his party trick . khan kept bottle in the air by punching it before delivering knock out blow .\nramp agent tells authorities he fell asleep in cargo hold , alaska airlines says . the cargo hold is pressurized and temperature controlled .\na hilarious note left by a chip shop owner has circulated on twitter . in it the owner laments the fact that he has to go youth hosteling . he jokes that his wife would have been , ` better off with saga ' .\npolice discovered the body of a female at a national park on friday . it is believed to be the remains of teacher stephanie scott , 26 . the body had been burnt and a gasoline can was found nearby . vincent stanford , a cleaner at her school , has been charged with murder . stanford 's family led police to cocoparra national park north of griffith . forensic testing will be carried out on the remains of the body . ms scott was due to marry her partner aaron leeson-woolley on saturday .\nstuart pearce feels manuel pellegrini deserves more time at the etihad . pellegrini is under pressure following their recent league capitulation . the citizens were smashed by rivals manchester united on sunday . manchester city now sit fourth in the league 12 points adrift of chelsea .\nsuper league title sponsors first utility have announced a new format for the competition 's player of the month award . working with rugby dedicated newspaper league weekly , a shortlist of players will be drawn up each month for fans to vote on via facebook . voters will be entered into a prize draw with one lucky supporter being given the opportunity to present the award to the winning player .\nfloyd mayweather uploaded a picture inside his private jet on wednesday . mayweather will face manny pacquiao on may 2 in a welterweight unification bout at the mgm grand in las vegas . mayweather will pit his wba and wbc world belts against pacquiao 's wbo .\niranians ban saudi pilgrimage following claims of abuse on two teenagers . the boys , 14 and 15 , say abuse occurred as they were searched at airport . international incident sparked protests outside saudi embassy in tehran . ban comes amid escalating tensions over saudi-led bombing in yemen .\nebola tests for a senior doctor has come back negative for the virus . doctor john parker has been working at an ebola clinic in sierra leone . nsw health said he had developed flu-like symptoms on saturday . dr parker was assessed at a sydney hospital as a precaution .\nfor-profit school closing after being fined $ 30million by dept of education . corinthian found to have misrepresented student job placement data . california-based company closes schools , largely on the west coast . students face thousands in student loan debts with no answers as to whether they will receive refunds . institution generated $ 1.2 billion in government loans its final year .\nphotographs taken in micheldever woods , hampshire , show flowers in full bloom after unseasonably warm week . but fine and dry weather seen by much of the country is set to be replaced by widespread showers this weekend . there is a chance of hail and thunderstorms in the south and wintry showers on higher ground in northern scotland .\nhighthere ! app is the world 's first social network for cannabis enthusiasts . app lets people swipe profiles to start conversations , like tinder . it began life limited to us states were cannabis is legal , but is now global . denver-based founder insists high there is more than a dating site .\njeff yang : the media has a misconception about urban unrest in light of baltimore turmoil . he says there 's no pattern of african americans `` targeting asian-owned businesses for destruction ''\nthe app was designed by researchers at the university of michigan . participants complete health tracking surveys via an app on facebook . they can also send a spit sample that is tied to the results of the surveys . researchers said they hope to use results to help find cures for diseases .\nstephen howells and nicole vaisey , from albany , new york , were charged last summer with sexually exploiting the amish girls and other children . the amish girls , aged 7 and 12 , ` were abducted from a farm roadside stand , shackled and sexually abused before being released the next day '\ncouncillor joseph o'riordan found guilty of attempting to murder his wife . court heard attack occurred after he discovered her affair with the postman . amanda o'riordan , 47 , in extra-marital relationship with married nick gunn . postman mr gunn , 41 , had previous affairs with women on his rounds .\nharry kane has scored 20 premier league goals for tottenham this season . in a superb breakthrough year , kane also scored on senior england debut . spurs striker beat off competition from david de gea and raheem sterling . chelsea playmaker eden hazard was crowned pfa player of the year . steven gerrard and frank lampard share pfa merit award . the pfa awards ceremony were held in london on sunday evening .\nmanchester united have lost the last four derbies to manchester city . ashley young is desperate to put that run to an end on sunday . louis van gaal 's side lead their local rivals by one point in premier league .\nmanny pacquaio vs floyd mayweather takes place in las vegas on may 2 . the fight is set to gross more than $ 300million , the most ever in boxing . sky sports pundits jamie redknapp and thierry henry went head-to-head .\nthe company says it expects the new ` artisan grilled chicken ' to be in its more than 14,300 u.s. stores by the end of next week . it says the biggest change is the removal of sodium phosphates , which it said was used to keep the chicken moist , in favor of vegetable starch . the new recipe also does not use maltodextrin , which mcdonald 's said is generally used as a sugar to increase browning or as a carrier for seasoning .\nlove dislocated his left shoulder on sunday during a tussle with boston 's kelly olynyk . olynyk 's right arm became entangled with love 's left arm while his shoulder suddenly popped out . he grabbed his arm and kept running toward the cleveland bench before going to the locker room , where he iced his shoulder . ' i have no doubt in my mind that he did it on purpose , ' love said .\nrobin thomas , of jonesboro , arkansas , says that he failed to find love with online dating sites . the sign reads , ` looking for a date ? would you date a single father ? ' . the retired cook is looking for a ` down-to-earth ' woman who 's ` at least 28 ' thomas says his kids , aged six to 11 , think the advertisement is ` cute '\nbritish actress takes fhm 's top spot in the list of 100 sexiest women in the world . people 's most beautiful woman is nowhere on the list .\nstudy shows uk sellers refuse to admit the housing market has cooled . buyers increasingly treat asking price as starting point for negotiation . average sales price is # 207,000 but average asking price is # 281,000 .\ninverness defender josh meekings won appeal against one-match ban . the 22-year-old was offered one-game suspension following incident . however , an independent judicial panel tribunal overturned decision . inverness reached the scottish cup final with 3-2 win over celtic .\nfather-of-one maajid nawaz asked for two private sessions at a strip club . footage shows prospective parliamentary candidate trying to touch her . staff at the east london club said nawaz had been pestering girl all night . nawaz can be seen repeatedly trying to make contact - which is against venue 's policy .\n$ 4.99 -lrb- # 3.24 -rrb- ` uploader for instagram ' app was created by caleb benn . the teenager is currently making $ 1,000 -lrb- # 675.70 -rrb- a day from the app . instagram allegedly contacted benn saying it violated terms of service . facebook , which owns instagram , says it restricts use of private api .\nalex salmond has been filmed mocking labour 's weakness in scotland . the former snp leader said he would be in charge of labour 's first budget . david cameron said the footage , which he tweeted , would ` shock ' voters .\nplayers in nba are able to vote in end-of-season awards for first time . lebron james asked who he would pick and says : ` myself ' 30-year-old has impressed in first season back with cleveland cavaliers .\ncockpit and front half of the white fuselage are painted with blue panels . the words ` star wars ' , in the movie 's distinctive font , adorn the body . designed in anticipation of the latest scheduled offering , ` star wars : the force awakens ' in december .\nnatal 's dunas arena , which held four world cup matches , is up for sale . its owners are suffering from cash flow problems after a corruption scandal . the company is also selling a 50 percent share of salvador 's fonte nova arena , which held six matches last summer .\nsean dyche says his burnley players wo n't cheat or dive to win . the 43-year-old wants to win games in the right and correct manner . dyche revealed another manager has labelled his side as naive . click here for all the latest burnley news .\ncelebrity chef pete evans strongly endorses fluoride-free water . but health minister jillian skinner said he is putting people 's health at risk . she also added she has refused to watch evans ' show my kitchen rules . medical professionals say fluoride protects from tooth decay . australian dental association supports water fluoridation .\nfarmers named him big ben as he dwarfs other 85 ewes born this season . mum is experienced seven-year-old but other offspring all weighed 8-10lbs . born two weeks after biggest ever lamb born in wales , weighing 24lbs .\ndanny welbeck faces fitness test for arsenal following england duty . gunners are without alex oxlade-chamberlain due to hamstring complaint . daniel sturridge & adam lallana may be fit after pulling out england squad . dejan lovren set to replace suspended martin skrtel in defence . steven gerrard also ruled out following red card vsmanchester united .\ndangelo conner , from new york , was messing around with stun gun . zapped the air and a coke can before deciding to use on metal bracelet . shocked jewelry while he was holding it , sending current into his body . is shown collapsing and twitching while his friends watch and laugh .\njohnny sexton has featured in 11 euro knock-out games and won the lot . racing metro 's no 10 wants to finish two-year stint in paris with a medal . the french side face saracens in last eight of european champions cup .\nthe knightsbridge flat is located in the same building where hollywood star ava gardner spent her last years . it is based in historic ennismore gardens which were built in 1870 as part of the redevelopment of kingston house . the spacious home which boasts five bedrooms has been put up for rent at # 10,500 a week - or # 546,000 a year .\ntests spot chemical signals in exhaled air linked to tumour development . about 7,000 people develop stomach cancer in the uk each year .\ngangs of south americans target shoppers in west end , police have said . many thieves arrive on six-month visa before heading on a ` european tour ' police arrested two chilean women in burkas who had a bag containing $ 130,000 , # 20,000 and jewellery .\nproject fi will be hosted through sprint corp and t-mobile 's networks . it costs $ 20 for basic service and unused data is paid back to customer . the invitation-only service will work only on nexus 6 phones in the us . numbers will live in the cloud so users can talk on any connected tablet .\nben stiller announces that penelope cruz will join cast of `` zoolander 2 '' `` zoolander 2 '' is scheduled for release in 2016 .\nchris roberts of one world labs grabbed after plane landed in syracuse . two fbi agents spent four hours questioning him about cyberhacking . agents confiscated electronic devices and computer files from roberts . he flew in to give talk at aerospace conference about plane vulnerabilities . roberts featured on fox news ' on the record with greta van susteren . regarded as one of the world 's top experts on counter-threat intelligence .\njonathan gottschall : millions to tune in to see mayweather-pacquiao fight , but this does n't show resurgence of declining sport of boxing . so why will so many watch?he says a fight is metaphor for the whole human condition , with everything noble and ugly on display .\nride like the wind is one of 34 colts still in the first classic of the season . the 2,000 guineas will be run at newmarket on saturday , may 2 . ride like the wind is a similar horse to 2014 's fifth runner charm spirit . the horse landed the group three prix djebel by a head last start .\nkevin carr set off on his epic journey from haytor , dartmoor in july 2013 . he is now less than 24 hours away from completing his epic trip . mr carr ran around the world unsupported - taking his own tent with him . he is set to break the previous record held by an australian by 24 hours .\ncars forced to swerve to avoid street collapse in northampton today . emergency services acted quickly to seal off the residential road . witness describes it as ` something you would see in a disaster movie ' hole appeared hours after woman fell through london pavement .\natletico madrid host real madrid in champions league quarter-final . diego simeone 's side have not lost to their city rivals in six games . former chelsea striker fernando torres has hailed manager 's influence .\nexclusive : farage has abandoned hopes of winning dozens of seats . party officials admit most candidates are being left to their own devices . among the seats dropped from the list of hopefuls is folkestone and hythe . ukip candidate janice atkinson was replaced after expenses scandal .\nhannah overton will not be tried on murder charges again in the death of her adopted son . overton was found guilty in the 2006 of killing her adopted son andrew burd , who died of acute salt poisoning . overton has denied killing the boy from the start and her husband and five children have stood by her side . late last year her conviction was overturned because of ineffective counsel , but nueces county district attorney mark skurka was set to try her again . skurka filed a motion to dismiss however and the judge granted his motion .\ngrenada is known as the ` island of spice ' , and is full of foodie flavours . celebrity chef rosemary shrager spent a week on the caribbean island . favourite local dishes include goat 's cheese and salt fish fritters .\nabby bishop took in her two-day-old niece zala in august 2013 . now zala is 20 months old and she follows bishop as she travels the world playing for professional basketball teams . bishop said it was a big decision but she would n't change anything . zala will go with her when she starts playing in the u.s. wnba in may .\nalexis douglas was outside a friend 's house when a pitbull attacked her . the five-year-old required 50 stitches after the dog mauled her face . she is too afraid to go outside her home without her mother or teachers . the dog 's owner put down the pitbull and escaped any convictions . edward powell did not register his dog and the court gave him a $ 1500 fine . monique douglas , alexis 's mother , is outraged with the verdict handed down on thursday .\nwitness who took the video says `` mr. scott did n't deserve this '' north charleston police officer michael slager is fired . the city orders an additional 150 body cameras .\naldi under fire from corporate regulator for not disclosing credit card fees . australian securities and investments commission took action against the supermarket last year after it failed to notify customers of surcharge . supermarket agreed to putting up signs and have cashiers notify shoppers .\nal qaeda confirms that two of its leaders were killed in january drone strikes . other leaders have been killed or captured recently . the terrorist group 's capacity to carry out attacks in the west has been greatly diminished .\nshawn izzo is alleged to have used ` excessive force ' on ariana mason . ariana said she needed 26 stitches and that her teeth were broken . she admits punching the officer but ` did n't realise ' he was with police .\nolivia phillips , 30 , rocked head-to-toe moschino . went to the supermarket and an art event - and got lots of attention . people stared , helped her with her shopping and said she looked like a cake .\nzhou qunfei born in poverty in rural china and started work on shop floor . quickly promoted before she set up her own company at age of 22 . her company went public on march 18 and her shares worth # 4.9 billion . patented scratch-persistent glass was inspired by rainfall on lotus leaves .\nhicks is charged in the deaths of three muslim college students in chapel hill , north carolina . victims ' family members have called on authorities to investigate the slayings as a hate crime .\nyoung babies are more sensitive to pain than adults , according to study . doctors previously assumed very young babies had high pain threshold . new findings by oxford university shows newborn babies do react to pain .\nandres iniesta started on the bench as spain lost 2-0 to holland . iniesta entered the fray in the 76th minute at the amsterdam arena . the spain star was booed by the dutch fans . iniesta scored the winner against holland in the 2010 world cup final .\nan amnesty international report calls for attacks on women 's rights activists in afghanistan to be investigated . the report examines the persecution of activists not only by the taliban and tribal warlords , but also by government officials . some activists continue their work despite their lives being at risk .\nanjelica ` aj ' hadsell , 18 , has been missing since march 2 . residents reported plumbing van driving suspiciously near the pond . stepfather wesley hadsell , 36 , was taken into custody late last month after allegedly breaking into a home and finding her jacket . he is still in custody after judge said he tried to impede investigation .\nvowed to lobby on behalf of other innocent people who have been jailed . she served four years for murder of british student meredith kercher . was freed on appeal with former boyfriend raffaele sollecito . their acquittal was overturned but was finally cleared by italy 's highest court last week .\nnepali pranksters make hidden camera videos of awkward social situations . the three-person team was filming as the nepal earthquake began .\nthe draw for the europa league semi-finals was made in nyon , switzerland . holders sevilla face fiorentina as they attempt to win it for a fourth time . rafa benitez 's napoli , who play dnipro , could set up an all-italian final . warsaw will play host to the europa league final on may 27 .\ntristan da cunha holds competition for architects and designers . islands are most isolated inhabited archipelago on earth .\ncrying syrian girl was photographed in jordanian refugee camp in november . she threw her hands up in the air and began crying when she saw his camera . cameraman broke into tears when he reviewed the heart-breaking image later . follows iconic image of another girl who surrendered to cameraman in syria . thousands of children have fled embattled country to seek refuge in jordan . conflict charity claims their experiences cause terror-inducing flashbacks .\nmila kunis and ashton kutcher respond to impending lawsuit in video . kutcher claims kristina karo was one month old when the alleged incident occurred . kunis says she will counter-sue because of injuries sustained while watching karo 's music video . karo claimed to be kunis 's ` childhood friend from ukraine ' and is suing her for $ 5,000 . claims kunis ` stole her pet chicken ' when they were children . karo , now in la , claims she has been traumatised by the event and is suing actress for emotional distress and therapy bills .\njudy murray has revealed to closer that she ca n't wait to be a granny . son andy married his long term girlfriend kim sears just a few days ago . the tennis coach says she will be an active part of their life .\nnoelle reno believes former fiancee intended to jump from london home . scot young , 52 , died after falling and becoming impaled on metal railings . ms reno , reality tv star , said in blog he ` unexpectedly committed suicide ' others have speculated that russian gangs were involved in his death .\nthree men were involved in a fatal shooting near rockhampton on tuesday . greg mcnaughton , 53 , was shot dead by his son tim . tim is also believed to have shot at his father 's friend lindsay hart . the 24-year-old then turned the gun on himself . mr hart escaped into bushland and phoned police . all three had been target shooting together before the incident . greg and lindsay were both pilots with the royal flying doctor service . tim was an apprentice aircraft engineer with the company . he sustained serious head injuries in a motorbike accident last year . was visiting his parents while on leave from a rfds base in alice springs . police are not looking for anyone else in relation to the deaths .\ntrevor duffy , a university of albany fraternity pledge who died during hazing last november , drank a 60-ounce bottle of vodka . this according to court papers filed by two students who were expelled after his death and wish to return to the college . duffy 's death came after a night of heavy drinking during a party held by zeta beta tau members at an off-campus home . 24 members of the underground fraternity were sanctioned by the university after the incident . an investigation determined members of the frat were guilty of drug , alcohol and student group violations . no one has been arrested in duffy 's death and albany police said their investigation is continuing . four other men were also treated for alcohol poisoning that night .\nfamily stay remarkably calm as birds fly around the room . video maker says ` this is awful ' as they bounce off the walls . he then contemplates how he is going to get rid of them . the bizarre footage was recorded at the family home in texas .\nthe youngster 's mother left the wheelchair in the lobby of their building on merrimac drive in maryland as usual on sunday evening since it 's easier to carry her son to their second floor apartment . but when she went to retrieve the stroller the following morning , it had reportedly disappeared . prince george 's county police have released a piece of surveillance footage which shows a person pushing the empty chair in a parking lot .\nfloyd mayweather and manny pacquiao face off in las vegas on may 2 . joe calzaghe believes mayweather 's unbeaten record is a burden . despite that , the welshman thinks mayweather will beat his opponent . read : ricky hatton gives his prediction to jeff powell ahead of the fight . read : floyd mayweather vs manny pacquiao tickets finally go on sale .\nitv meteorologist lucy verasamy visited le manoir aux quat ` saisons . cooking lessons and luxury awaited at raymond blanc 's manor house . tried the seven-course taster menu at the two michelin-starred restaurant . the day-long food , body , mind course combined nutrition and recipes .\njoao teixeira will miss brighton 's last three games of the season . the portuguese starlet sustained broken leg in 0-0 draw with huddersfield . liverpool 's teixeira joined brighton on season-long loan deal in august .\none in five australians admit to shopping in bed with the lights out . 27 per cent confess to sneakily shopping online at work . three to four times a day is the regular amount people surf the shops . embarrassing items purchased online include underwear , personal hygiene and action figures .\nthe rapper/entrepreneur went `` stream of consciousness '' on twitter . he asked users to be patient with tidal , his new music streaming service . a parody account was set up to mock his hashtag .\naston villa face fellow relegation fighters qpr at villa park on tuesday . villa manager tim sherwood says his players must dig deep to win . sherwood labelled his stars ` icing on the cake players ' on monday .\nthe mother of stephanie scott 's accused murderer is assisting police . anika stanford visited leeton police station on thursday for 45 minutes . ms stanford and her eldest son led police to ms scott 's body . school cleaner vincent stanford , 24 , has been charged with her murder . the school teacher 's funeral was held in eugowra in nsw 's central-west . service was held at the same venue where she was set to wed fiance aaron leeson-woolley .\npolice seized bedding and electronic devices from site of alleged attack . men were in canada playing a hockey tournament with canadian forces . the alleged sex attack took place at military base in nova scotia . sailors are being held and are due back in court on monday .\nlewis hamilton 's fortune has spiralled by # 20m to # 88m in the past year . wayne rooney is now second in the sunday times sport rich list . the manchester united captain 's fortune is up # 12m to # 72m . f1 driver jenson button is # 1m behind rooney in third place .\nin 1915 , 1.5 million armenians were killed by ottoman turks in what historians have described as the first genocide of the 20th century . obama refused to call the mass killings a ` genocide ' in official statement despite promising as a presidential candidate that he would . turkish officials furiously deny there was a genocide , and obama has shied away from offending the close u.s. ally . kim kardashian - who is armenian on her father 's side - and the pope have both called the killings a genocide . kasdashian last week traveled to the country for the first time with her husband kanye west , sister khole and cousins kara and kourtni . the white house will be sending treasury secretary jacob lew to armenia this week to mark the 100th anniversary of the killings .\na woman was allegedly kidnapped thursday in a loveland parking lot . police said the woman told them she was forced into her car by a man . in a 911 call , the woman claimed to have been kidnapped at gunpoint . after driving him to estes park , the woman said she 'd been locked into her trunk by the man , police said . she was able to use her cell phone and contact authorities . officers got the woman out after finding her car keys . a suspect has n't been found , authorities said .\nmanchester city defeated west ham 2-1 in their premier league clash . david silva was taken to hospital after a challenge by chiekhou kouyate . spain international has allayed fans ' fears with a twitter message .\nthe ship was sunk in 1942 hundreds of miles of the coast of south america . a british company says the salvage operation occurred at a world record depth . the torpedoing is the subject of the book `` goodnight , sorry for sinking you ''\nsnp leader said the uk could not pull out of eu without scotland 's say so . ms sturgeon said an ` out ' vote would justify a new independence poll . david cameron has pledged to hold an in-out eu referendum by 2017 . laughed off her title as `` the most dangerous woman in britain '' in a recent daily mail front page , asking : ` do i look dangerous ? ' said many labour voters in england and wales - and significant numbers of its mps - preferred her vision to that of ed miliband . claimed david cameron refused to sit next to her on andrew marr 's sofa when they both appeared on his bbc tv show at the weekend . said new rules on fixed term parliaments meant the snp mps could seek to block key pieces of legislation , including budgets , without bringing down a minority government . insisted governments dependent on smaller parties for support would increase trust in politics because leaders would have to ` win the argument ' not rely on mps as lobby fodder .\nreports police dropped investigation into belle gibson 's whole pantry . however , victoria police say its position has not changed . police had been looking into charging ms gibson with deception . consumer affairs victoria will now decide if any offences were committed . ms gibson expressed concern over her family 's safety in remarks to daily mail australia . ms gibson faced backlash since close friends cast doubt about her terminal cancer diagnosis . ` my son 's childcare details were posted online , ' she claimed , adding that her address and floor plan were also made available . the popular instagram personality still has not addressed questions about her ` cancer diagnosis ' .\npakistan cricket board chairman shaharyar khan aiming for tour in may . khan said zimbabwe is close to agreeing to five odi matches in pakistan . pakistan has n't played a test nation at home since 2009 terrorist attack .\ncarol bennett-chevereau from quebec , canada , filmed her pet moggy getting up to mischievous as he investigated a row of empty suitcases . but footage shows his adventuring took a turn for the worse with him plunging headfirst into one bag and struggling to get free . with some zealous tugs , he eventually managed to free his head and get back on all fours .\nthe 53-second video features footage of the unnamed woman recording an incident involving multiple officers in south gate , southern california . the woman is then approached by a tall man with a riffle who wrestles the cell phone from her . he then throws it to the pavement and then kicks it in a fit of rage . u.s. marshals spokesperson has said the shocking footage ` is being reviewed ' , while the l.a. county sheriff 's department is also investigating .\nit took atlanta-based writer alex gray 20 months to lose the weight from his 354lbs frame . the 27-year-old said he used to visit the drive-through to get fast food three or four times a day .\nex-dortmund star robert lewandowski nets winner in the 36th minute . dortmund are unable to score equaliser despite dictating second half . bayern munich open up 10-point lead over second-placed wolfsburg . dortmund xi vs bayern munich : weidenfeller ; sokratis , subotic , hummels , schmelzer ; gundogan , bender ; błaszczykowski , reus , kampl ; aubameyang . bayern munich xi vs dortmund : neuer ; dante , boateng , benatia ; rafinha , alonso , bernat , lahm , schweinsteiger , muller ; lewandowski .\nburger king is now offering alcohol-free pina colada smoothies . pret a manger has launched wine-accompanied sit-down dinners . nandos has introduced a quinoa salad and a posh new coleslaw . starbucks is also trialling a dinner service with wine .\nrichard hutchinson attacked former friend in betting shop in money row . he landed a single punch to victim 's face causing brain bleed and fracture . his victim spent 16 days in intensive care and a further 11 days in hospital . hutchinson , 40 , admitted grievous bodily harm and jailed for two years .\nclaudetteia love was planned to go to prom dateless with a group of friends . carroll high school principal patrick taylor said the decision was part of the monroe , louisiana school 's dress code . monroe city school board president says taylor is being discriminatory . love is a top student and has a full scholarship to jackson state university .\nconfirmed death sentences for muslim brotherhood leader and 13 others . american-egyptian mohamed soltan , 27 , sentenced to life in prison . he lived in missouri , michigan and ohio before moving to egypt in 2012 . found guilty of ` plotting unrest ' after coup against president morsi in 2013 . ohio state graduate had worked as journalists ' translator at protest site . he had lost 98 pounds during his hunger strike as of last year .\nthe brightly coloured crossing was due to be installed in totnes in devon . was planned to be europe 's first rainbow crossing in support of gay rights . but experts warn they could have side-effects for alzheimer 's sufferers .\nmasked men have robbed three pittsburgh area banks at gunpoint . one of the criminals has a holster and uses police weapon safety method . thefts are becoming more violent , robbers have threatened kidnapping .\nbelle gibson was awarded cosmo 's fun fearless female award last year . bronwyn mccahon wishes her magazine had better investigated ms gibson . despite her cancer lies , cosmo wo n't strip gibson of the prize . ` what she does n't need now is the whole of australia ganging up on her and bullying her , ' mccahon says .\nnatali castellanos-tyler , 30 , married mother of three from virginia , was killed when she crashed into tree february 21 . daughter elisa , now 3 , was in backseat of tyler 's ford explorer and survived crash . police ruled that it was a one-car collision caused by sleek road . craig tyler , victim 's husband , says little elisa has been having recurring dream featuring a white van at crash scene . white box truck has been tentatively linked to three hit-and-run incidents in neighboring communities between march 29 and april 3 . each time , truck side-swiped passing vehicle and sped off ; april 3 crash involved a school bus filled with students .\nteacher karstein erstad found thousands of live worms on top of the snow . there have been reports of worm rainfall in norway following his report . mr erstad says the ` very rare phenomenon ' happened in sweden in 1920s .\ntiger woods : ` have fun , enjoy it , and do n't win . no matter what ' woods made it a family outing with girlfriend lindsey vonn at his side , and his children , charlie and sam , caddying for him . woods played in the par-3 contest for the first time since 2004 . click here for all the latest from the masters 2015 .\npatrick and marianne charles lit the barbecue as their heating was cut off . grandparents choked on carbon monoxide fumes in their conservatory . the couple , 78 and 74 , laid dead for 16 days before they were found . east sussex coroner recorded verdicts of accidental death .\nshell casings , glass and blood stains litter dorm at garissa university college . at least 147 died in thursday attack at the kenyan college .\nresearch was conducted at the university of southern california . scientists there have identified a gene , named nox3 , found in the inner ear . say this is crucial in determining a person 's vulnerability to hearing loss . noise-induced hearing loss is most common work-related illness in the us .\nmargaret tyler , 71 , has been collecting royal novelties for 40 years . the retired charity worker has amassed a collection worth # 10,000 . most of the items are novelties but there are more expensive pieces . among them are a # 1,200 wedgwood bust of the prince of wales . collection is spread through four rooms , one of which is devoted to diana . the ` memorial room ' includes a special ceiling fresco and stained glass . margaret tyler appears on collectaholics , tonight at 7pm on bbc2 .\nrichard ilczyszyn , 46 , died on board a southwest flight of a heart attack . flight attendants ` heard him groaning and crying in the cubicle ' one staffer ` opened the door , saw him whimpering , and left him there ' his widow , a southwest flight attendant , is suing the firm for wrongful death . the airline says staff are trained to treat behavior like his as a security risk .\nnigel farage is considering quitting smoking because of ` terrible ' back pain . ukip leader was n't ` firing on all cylinders ' at the start of election campaign . suffering from flare-up of spinal injury and been prescribed sleeping pills .\na court allowed a wife to serve divorce papers via facebook . danny cevallos : why not let people be found via social media ?\na magistrate has refused a media ban on the trial of a sex offender . brett anthony o'connor is the former head of child safety at education queensland . he was arrested in march for indecently assaulting two sydney school boys more than 25 years ago . police allege they occurred in 1987 and 1989 . he has been suspended from his job at education queensland .\negypt , saudi arabia to launch joint military maneuvers inside saudi borders . the arms embargo applies to the houthis and backers of ex-president saleh . russia abstains from the u.n. security council vote over the inclusion of sanctions .\nheavy drinking among americans rose 17.2 percent between 2005 and 2012 . the increase is driven largely by women 's drinking habits . it 's now more acceptable for women to drink the way men traditionally have , says one expert .\ngonzalo higuain gave visitors the lead after 15 minutes with a smart finish . there was a suspicion of handball as the argentine brought the ball down . marek hamsik doubled lead on 23 minutes , higuain the provider . slovakian midfielder added his second and napoli 's third in second half . manolo gabbiadini added a fourth for visitors moments after coming on . former arsenal striker nicklas bendtner pulled one back for the hosts .\ncomments made by dr dejan stojkovic from the university of buffalo . he says clues to contents lie in interactions between particles emitted . quantum mechanics states that information is always conserved . it backs up stephen hawking 's theory that black holes are ` grey ' .\npictures show veronica bolina face down on the ground in a sao paulo jail . she had previously been arrested over alleged attack on elderly neighbour . reports claim 25-year-old was then set upon by officers on three occasions . images appearing to show her ordeal have sparked outrage across brazil .\ntomas driukas was arrested after paramedics were called to his home . his infant daughter was taken to hospital with breathing difficulties . five-month-old , believed to be a twin , died after suffering ` several injuries ' baby 's mother was also arrested but has since been released on bail .\njulian lines was captured scaling a sheer cliff face in the cairngorms using only his fingers and feet for support . the 42-year-old , from northern ireland , said he has had some ` near misses ' in his nearly 30 years of solo climbing . but insists that ` life 's problems evaporate ' while edging towards the summit and describes climbing as ` simple ' .\nbrother of groom fired kalashnikov in celebration at riyadh reception . caught on camera as he loses control of the powerful rifle at wedding . guests dived for cover as a hail of bullets ricocheted off the walls .\nislamic extremists targeted 11 television channels belonging to tv5 monde . also took control of the company 's websites and social media accounts . channel regained control of website , but later closed it ` for maintenance ' the tv channel was off air for a full three hours - and is still only able to broadcast pre-recorded programmes .\neaster break turns into nightmare for 403 virgin atlantic passengers . subjected to 33-hour delay after problem with rudder eventually detected . one passenger tells mailonline how they were shunted back and forth between airport and hotel as problems mounted . calls for virgin to refund the air fare as well as $ 600 compensation for terrible ordeal .\nlast year 15 million people fell victim to the symptoms of hayfever . this year that number is expected to rise by a third to 20 million . experts told mailonline warmer weather can result in very high pollen counts which trigger symptoms in new sufferers . high temperatures also increase air pollution , which worsen symptoms .\nhorses complete transatlantic trip to las vegas in ` business class ' luxury . 80,000 fans expected as organizers spend $ 8m bringing horses back to vegas . celebrity chefs and legends of sport will mix with top jumping and dressage riders . world cup final trophies to be won -- some of the most prestigious in the sport .\nheavyweight boxer dereck chisora is planning a summer comeback . promoter frank warren has revealed chisora is back in training . chisora has not boxed since defeat to switch-hitting tyson fury . fellow heavyweight david price is being lined up to fight chisora .\nsouthern metal bands khaotika and wormreich were in 15-person van . eight injured in crash after van comes 300ft off the georgia interstate . three men who died were thrown from the vehicle as it hit trees . atlanta-based khaotika , alabama-based wormreich were heading to show .\npm has written to first great western asking for ` urgent review ' of fare hike . passengers in his witney constituency could face increases of up to 87 % . comes after mr cameron pledged to freeze fares for whole of next term . other sharp hikes include virgin 's service between stafford and liverpool .\nhull city are keeping tabs on leeds united 's promising young english midfielder alex mowatt . the 20-year-old has impressed for leeds this season , scoring nine goals . mowatt was watched by hull scouts in leeds ' 4-3 defeat by wolves on monday .\nmohammed nisar had been taking adrian quinn to walsall train station . mr quinn was carrying hefty sum as he 'd just cashed inheritance cheque . after realising he 'd lost the money says he ` felt physically sick ' and ` dazed ' sole trader mr quinn gave cabbie a cash reward and invited him to dinner .\naston villa and qpr drew 3-3 in the premier league on tuesday night . tim sherwood and chris ramsey 's reunion had twists and turns to it . the two clubs ' premier league statuses were not decided by the draw .\nalison , 43 , from gloucestershire , had breast augmentation six years ago . she was initially pleased but an infection killed off some breast tissue . left with one large breast and another that was shrivelled and deformed . now the 43-year-old says she is ` desperate to be normal again ' . extreme beauty disasters is on tlc , thursdays at 8pm .\nnorthampton were 27-0 down at the break at the stade marcel-michelin . noa nakaitaci , wesley fofana and nick abendanon went over for clermont . alex waller scored a late try for the visitors on saturday night .\nunited are without marcos rojo , phil jones , michael carrick and daley blind for stamford bridge showdown . but mourinho says louis van gaal 's ` amazing ' squad will cope . chelsea boss said he players needed no motivation for united fixture . blues can move a step closer to premier league title with three points . click here for all the team news , stats and odds ahead of the game .\nit has been an eventful few days since england arrived in the carribbean . despite the sacking of paul downton , cook is focused on test series . england take on the west indies in the first of three tests from monday . pietersen hit an aggressive 170 for surrey against oxford mccu . james anderson will make his 100th test outing on monday . jonathan trott returns to the test line-up after the ashes series .\nasif malik , 31 , sara kiran , 29 , and their four children last seen on april 7 . left slough , headed to calais by ferry and then took train across europe . they have three boys aged one , two and four , and a seven-year-old girl . thames valley police ` extremely concerned for the safety of this family ' anyone with information should call thames valley police quoting reference 342 -lrb- 19/4 -rrb- .\ndorothy brown : ben affleck and henry louis gates scrubbed segment about affleck 's slave-owning ancestors from tv show . she says they two missed a chance to discuss racial issues that still fester in this country .\ned miliband accused of ` hypocrisy ' after 68 mps used zero-hour contracts . 100 workers and employers from ` all walks of life ' signed letter backing ed . but signatories included affluent students and union and party activists . john-jo pierce and rory somerville both pictured in black tie with cigars . wayne hemingway , red or dead co-founder , has used zero-hour contracts . a picture caption in an earlier version of this article wrongly stated that rory somerville is 31 years old . we are happy to clarify that mr somerville is 21 and was aged 19 in the photo . the caption also wrongly attributed comments said by deirdre pierce about her son , john-jo , to mr somerville 's mother .\njury selection has begun in oklahoma for the murder trial of chancey luna . luna is accused of shooting dead australian baseball player chris lane . lane , 22 , from melbourne , was jogging along a street in the rural southern oklahoma city of duncan in august 2013 when he was shot in the back .\nrensselaer polytechnic institute postponed screening following complaint . college muslim association disagreed with plan to show american sniper . other students say the postponing is censorship and attack on free speech . film will be shown but with forum for discussion to follow the screening .\nmohamad saeed kodaimati , 24 , faced two counts of making false statements involving international terrorism . saeed was born in syria and became a naturalized american citizen in 2008 at age 17 . the 24-year-old allegedly lied to fbi he had not been involved in any fighting , had never fired his weapon and did not know any isis members . posted photos on facebook carrying guns and posing with known isis militants . in online posts , saeed allegedly bragged about working for sharia court and fighting in battle that lasted four months .\nross barkley has been repeatedly linked with a move to manchester city . former city star gareth barry says his everton team-mate is too young . the toffees face manchester united in the premier league onsunday .\nafter beating tommy burns in 1908 , jack johnson became the first ever black world heavyweight champion . he held the belt for six years and sunday will mark the 100 year anniversary of his last title defence . during a particularly racist period of american history , johnson 's title reign was met with many protests . johnson was eventually defeated by jess willard in 1915 , following 26 brutal rounds in the sweltering heat of cuba .\npatrons called police sunday night shortly after discovering no workers at the dunkin' donuts on arundel mills boulevard in hanover . according to authorities , an officer checked the business and found a severely injured woman in the kitchen area . police said palak bhadreskumar patel of hanover , died at the scene . they said the investigation revealed that her husband , bhadreshkumar chetanbhai patel , hit her multiple times with an object and then fled .\nthe box truck collided with a car on interstate 93 southbound in the city 's dorchester neighborhood at about 6am . both drivers were taken to hospital with non-life-threatening injuries . as officials did n't want to risk running trains under the over-hanging truck , replacement shuttle buses were run for southbound passengers . on the highway there were also massive delays .\nthe drone is sparking terrorism concerns , authorities say . it was equipped with a bottle containing radioactive material . it was discovered as a court approved a plan to restart two japanese nuclear reactors .\nben jones-bishop impressed by scoring solo try against the warriors . jones-bishop extended lead as salford 's leading scorer of the campaign . both salford and wigan finished the match with 12 men .\nvalencia claimed a 3-0 derby victory at home to levante on monday . singapore-owned club moved to within a point of atletico madrid .\nhector bellerin scored arsenal 's first goal in the 4-1 win against liverpool . franci coquelin has been a revelation in front of arsenal 's back four . arsene wenger admits he did n't expect the duo to become so vital .\ndavid moyes gave wayne rooney his professional debut at everton . moyes was appointed manchester united 's new manager in 2013 . rooney was heavily linked with a move to chelsea at the same time .\nargentina claims british exploration around falklands for oil is ` illegitimate ' . the country says it will mount a legal challenge but has ruled out a conflict . comment sparks furious reaction from foreign secretary philip hammond .\ncnn 's john sutter told the story of the `` poor kids of silicon valley '' hud secretary julián castro : our shortage of affordable housing is a national crisis that stunts the economy .\nlucas akins scored twice as burton albion were promoted to league one . morecambe victory secured jimmy floyd hasselbaink 's side promotion . hasselbaink says the season is n't over , despite already being up .\nrichard engel was kidnapped in syria with his crew and held for five days . his captors told group they were militants associated with bashar al-assad . but new evidence suggests the kidnappers posed as government forces . they were in fact sunni militants who also staged an elaborate rescue .\nchristianne boudreau 's son damien clairmont converted to islam at the age of 17 , after being bullied in high school . damien eventually became radicalized and moved to syria to fight for isis . he was killed in january 2014 in aleppo . mrs boudreau now helps other families whose children have become radicalized .\njohn truong of renton , washington says sister dropped off 2-year-old boy ronnie tran at his house tuesday . sister alyssa chang told him the boy was her boyfriend 's son and they wanted to have a date night . while scanning facebook the next morning , truong read an amber alert issued for the boy and then called police . truong 's sister was arrested for kidnapping tran and his mother , with the help of the toddler 's grandmother , 65-year-old vien nguyen . nguyen later turned herself into police for questioning . the motive for the abduction has not yet been released .\ndefence secretary michael fallon launches personal attack on miliband . claims labour leader would bow to snp 's demands to scrap trident . fallon says ` snp 's childlike world view would sacrifice uk 's security ' miliband claims the conservative campaign has ` descended into the gutter '\njerry grayson flew dozens of aircrafts during royal navy rescue missions . he was involved in 1979 fastnet yacht race rescue , saving 15 yachtsmen . mr grayson found most helicopters had been turned into museum pieces . but one , a wessex mark 1 , is now a glamping unit in ditchling , sussex .\nmaria sharapova has been forced to withdraw with a leg injury . russia host germany in the fed cup semi-finals in sochi this weekend . venus williams has also pulled out because of a personal matter . the usa travel to face italy in a world group play-off in brindisi .\npellegrini is feeling the heat after man city 's 2-1 defeat to crystal palace . the result left man city nine points behind chelsea in premier league . the last four managers to win title have left their posts soon after . jose mourinho 's first spell at chelsea abruptly ended in 2007 . carlo ancelotti suffered similar fate year after title success . roberto mancini was shown door by city 12 months after first league title . sir alex ferguson retired after winning a 13th premier league at united . click here for all the latest manchester city news .\nwayne rooney has returned to his preferred striking position . he had been deployed in midfield earlier this season . manager louis van gaal has restored his captain to leading the line . rooney 's return up front has coincided with united 's stunning form . united are slight favourites for sunday 's derby with manchester city .\nkim , 34 , shared make-up bag contents on instagram . includes clarisonic brush , hairbrush from her own range and rose water . star is also getting set to launch new kidswear range .\nandros townsend an 83rd minute sub in tottenham 's draw with burnley . he was unable to find a winner as the game ended without a goal . townsend had clashed with paul merson last week over england call-up .\nandre schurrle joined wolfsburg from chelsea in january for # 24m . rafa benitez admitted he wanted to sign germany international . ex chelsea and liverpool boss also tracked luiz gustavo & ivan perisic . napoli face wolfsburg in europa league quarter-finals on thursday .\nneill buchel , 39 , was beaten to death by elvis kwiatkowski and chas quye . his body was cut into ten pieces and disposed of in a fishing lake in essex . the pair were obsessed with doing extreme pranks and filming each other . both jailed for minimum of 21 years with the rest of their lives on licence . three other men also sentenced for conspiracy to pervert course of justice .\nteenager was taken to hull royal infirmary with serious head injuries . she has been named locally as leah price from the nottingham area . her father witnessed the incident and alerted the emergency services . police said the girl is still in a critical but stable condition this afternoon .\ninverness defender josh meekings blocked a goal-bound shot from celtic striker leigh griffiths with his hand during the scottish cup semi-final . no penalty or red card was given for the offence and celtic lost 3-2 . celtic have complained in writing to the sfa following the incident . former striker chris sutton feels more should be done to hold officials to account over poor decisions .\n71 security boxes were raided over easter weekend in # 60m london heist . in january 2013 , 294 security vaults were targeted at volksbank , berlin . in both cases , gangs left with millions worth of diamonds , gold and silver . both gangs used pneumatic drills on the vaults , while dressed as workmen . police - who missed alarms during both raids - believe thefts could be ` inside jobs '\ncarmem dierks , 60 , was running the dodgy practice in west orange county , florida . during the raid on her practice , authorities discovered hundreds of patient files , two dentist chairs , an x-ray machine and dental mold . officers found two patients in the middle of treatment who said dierks had been treating them for eight years .\npeter kelly and a friend were fishing on the minnesota side of the st croix river on tuesday when they heard three rowdy men across the water . they asked them to be quiet and an argument ensued for three hours . the three men asked kelly and his friend to come over so they drove to the wisconsin side , where a fight unfolded and kelly was fatally stabbed . kelly , who volunteered as a high school wrestling coach in his spare time , leaves behind a wife and five children , all under the age of nine .\ndion dublin has been signed up to present homes under the hammer . former footballer made his presenting debut on monday morning . 45-year-old helped renovate three bedroom house in dartford . dublin played for manchester united , coventry city and aston villa .\npolice : a male tsa officer signaled to a female officer when he found a man attractive . female officer would notify scanning machine a woman -- not a man -- was passing through . police : that would trigger an anomaly in groin area , leading male officer to grope passenger .\nadrien broner posted happy instagram image with rapper 50 cent . former world champion was recently criticised by the new york artist . broner called out danny garcia at premier boxing champions event .\ntiffanie didonato , from swansboro , north carolina , was born with diastrophic dysplasia and is only 4 '10 tall . as a child she had numerous limb-lengthening surgeries to ensure that she would be taller than 3 ' 8 - the current size of her three-year-old son titan . the 34-year-old mom and her husband eric gabrielse , a 29-year-old marine who is 6 ' 0 , are expecting their second child in september .\ntv star terry willesee 's son arrested for smoking weed at sydney town hall . jesse willesee ran a #weedisnotacrime social media campaign on monday . the marijuana advocate 's girlfriend provocatively poses in marijuana - themed underwear to support his stance . jasmine dinjar also shows off her marijuana leaf-painted nails and lights up with a pipe in her social media posts .\npolice in yuma , arizona , revealed that tragic accident was caused by a bee . eli and silas keslar were pulled from a canal in yuma , arizona on friday . mom , alexis keslar tried to save her children but currents swept them away . gofundme page set up for family has raised $ 20,000 over the weekend .\nparents of audrie pott reach financial settlement with remaining two teens . family made an agreement with one weeks ago after he ` showed remorse ' issued a lengthy apology as part of the wrongful death civil suit . admitted the teenager was unconscious and did not consent at the time . apologized for spreading rumors that ` served to shame and humiliate her ' . during a hearing one of the boys said he ` missed audrie a lot ' . pair will also have to give presentations on ` sexting ' and ` slut-shaming ' . the trio stripped her naked , drew on her and attacked her during a party .\nmost girls grow out of their yearning for tumbling tresses as adults . but there is now a growing trend for middle-aged women with long hair . supermodel twiggy recently stood up for older women with longer locks . here some of britain 's real-life rapunzels show off their lengthy tresses .\nfloyd mayweather meets manny pacquiao in las vegas on may 2 . chef q quiana jeffries prepares us boxer 's food using organic produce . she says champ has a soft spots for twizzlers , noodles and fried hotdogs .\ngareth southgate led a team to fourth in the toulon tournament last may . aidy boothroyd will take charge this year for the competition . liverpool youngster jordon ibe could be one of the players involved .\nst helena , a 122 square kilometre island in the middle of the south atlantic , will soon be much easier to reach . early next year , the island 's # 218 million airport will be complete , opening it up to tourists like never before . the remote destination is perhaps best known as the place where napoleon was exiled after his waterloo defeat .\nanalyst claims snowden under orders not to speak out against russia . he accused whistleblower of not being ` transparent ' and being ` secretive ' snowden fled to russia via hong kong after leaking classified documents .\nraymond frolander , 18 , sexually abused 11-year-old boy at florida home . child 's father walked in on assault and beat teen to pulp , then called 911 . father told the dispatcher : ` send an ambulance . he is going to need one ' after frolander 's arrest , police released bruised and bloodied mug shot . it was widely shared online , with users congratulating father on actions . now , frolander has been jailed for 25 years for molesting the youngster . will be listed as sexual predator and be electronically monitored for life . ` he 's going to learn in next 25 years why i let him live , ' boy 's father said .\nmanchester city are interested in signing porto stars yacine brahimi and alex sandro and have sent scouts to watch them . the club are also keen on wolfsburg midfielder kevin de bruyne . city have fallen short of expectations in the premier league this season and will look to revamp and improve their squad in the summer .\nfoot locker have released new manny pacquiao advert ahead of fight . the filipino jokes about not knowing if bout against mayweather is on . pacquiao previously starred in advert where he acted as if fight against mayweather was on before official contract was signed in february . read : mayweather vs pacquiao tickets sell out within 60 seconds .\nthe clip was uploaded by youtube user honda4ridered . in another upload the skilled billiards player shows viewers how to pocket four balls in a single shot - and for those who miss it there 's a slow motion version .\nbenjamin mellor ripped package of drugs open after food ran out . 35-year-old was one of three arrested after naval officers stormed yacht . they were all sentenced at cork circuit criminal court yesterday .\nclinton claimed wednesday in iowa that ` all my grandparents came over here ' as immigrants . she said last year that one of her grandmothers immigrated to pennsylvania and worked in a silk mill . but buzzfeed found american census records showing that only one clinton grandfather , adn neither of their wives , was born outside the us . clinton apparently shaded the truth to seem more authentic with her argument that illegal immigrants should have more legal access to jobs .\nryan giggs apologises for his eight-year affair with brother 's wife . manchester united legend rang his brother out of the blue after four years . rhodri 's wife natasha aborted ryan 's baby just before marrying rhodri . natasha and rhodri attempted to stay together but divorced in 2013 . former footballer also had affair with big brother star imogen thomas .\nkim kardashian : hollywood and lindsay lohan 's the price of fame apps . users create an aspiring celebrity and rise to fame in the games . everyone is either a potential love-interest , career-booster , or enemy .\neileen mason , 92 , knocked would-be thief to the ground with her scooter . mrs mason and friend margaret seabrook , 75 , were attacked in swindon . ` evil looking man ' tried to steal contents of their scooters ' baskets . the great-grandmother-of-13 , accelerated , and rammed the attacker . after he was knocked to the ground , they sped off on their scooters .\nthe whales washed up along a 6 mile stretch of coast near hokato , japan . experts have dismissed rumours of impending earthquake as unscientific . the strandings sparked comparisons with the appearance of 50 melon-headed whales six days before the earthquake in 2011 that left 19,000 dead . officials instead believe the whales may have suffered a parasitic infection while others say the animals may have been attempting to avoid predators .\nmigrant women hope to reach europe so their babies will be born there . hundreds of arrested migrants are detained in libya while officials try to figure out what to do . a funeral is held outside a valletta , malta , hospital for migrants killed in ship 's sinking .\nan iowa bulldog named tank took home the crown sunday at drake university 's annual ` beautiful bulldog contest ' . tank beat out 49 other dogs in the 36th annual contest . tank will now serve as the mascot for the drake relays .\nright sagittal stratum of brain is key to recognising sarcastic comments . neuroscientists at john hopkins medical school scanned the brains of 24 stroke patients and tested their ability to detect sarcasm in 40 sentences . the sagittal stratum is a bundle of white matter below the cerebral cortex . the findings may help treat stroke patients who struggle to detect sarcasm .\nlynne briggs only applied for one school because it is only 150 yards away . but her daughter charlotte has instead been offered place two miles away . her mother says she must leave job because she faces four hours on bus . council says mrs briggs wrongly assumed child was in a ` feeder school ' . as a result , despite being in catchment area , charlotte was refused place .\nsofinar gourian found guilty of wearing a dress made from egyptian flag . a court in agouza town sentenced the belly dancer to six months in prison . local businesswoman found the dress insulting and complained to police . strict laws prevents the flag being displayed if damaged or tampered with .\nwest ham will move to the olympic stadium for the 2016-17 season . seasons tickets will cost hammers supporters as little as # 289 . the club will have the cheapest pricing strategy in the premier league . the price of a season ticket for under 16s will be cut to just # 99 . family of four can purchase a season ticket for # 776 - # 41 per match .\naaron hernandez , 25 , has been accused of shooting six people - killing three , including odin lloyd . he was convicted of first degree murder in lloyd 's death on wednesday and sentenced to life in prison without parole . has a long history of troubling behavior , but was never held accountable because cops and coaches looked the other way , according to reports .\nderek murray , a university of alberta law student , could have had his day ruined by the mistake by a stranger 's kindness brightened it up . murray posted his story and the note online and the random act of kindness has now gone viral .\nseveral of nepal 's best known landmarks have been destroyed by the earthquake of april 25 . but outside the capital kathmandu there is hope that many have survived .\nmanchester united 4-2 manchester city : click here to read the match report . manuel pellegrini has orchestrated a limp premier league title defence . city did n't go for diego costa , cesc fabregas or angel di maria . the are stuck with the likes of jesus navas at the etihad stadium . the defending champions must bring in big names to grow as a club . adrian durham : louis van gaal should win manager of the year .\nnicholas connors gave a rousing performance ahead of the houston rockets and dallas mavericks basketball game on tuesday night . one of his favorite nfl players was watching from the sidelines - houston texans defensive lineman j.j. watt . when he finished , the 26-year-old athlete ran across the court to congratulate him , with the heartwarming moment caught on camera .\nnacer chadli opened the scoring with a left-footed strike from outside the box on the half-hour mark . jack colback equalised for the home side immediately after half-time after the ball fell kindly in the area . christian eriksen won spurs the lead back with the swede 's curling free-kick missing everyone . harry kane topped off a relatively quiet game with a runaway goal after regular time was up . newcastle have now lost six consecutive premier league matches under manager john carver . fans protested before and during the match against owner mike ashley 's perceived lack of ambition .\nkim woodward has been appointed head chef at world famous restaurant . art deco grill has fed prime ministers , musicians and actors for decades . yet masterchef runner-up is the first woman to hold the sought-after role . has said ` masculine ' culinary traditions like daily roast trolley to continue .\ndefector deploys balloons with `` the interview '' to north korea . lee min-bok says he finds the movie vulgar , but sends it anyway .\njordon ibe to put pen to paper on a new long-term deal at liverpool . the 19-year-old broke into the first team before falling injured . ibe has been out since february after damaging his knee ligaments . the youngster could make a return against newcastle on monday . brendan rodgers concedes that daniel sturridge will not rediscover his best form this season after a number of injury problems .\npolice arrest demonstrators near union square in new york . protests also held in washington , minneapolis and boston .\na 1,000 ft stretch of land rose up above sea level on japanese island . the 100ft wide mass on hokkaido is now some 30 to 50ft above sea level . it is believed to have been forced to the surface by a landslide nearby .\nkaren buckley , 24 , last seen with a man after visiting a glasgow nightclub . a man has been arrested as police pursue a ` definite line of enquiry ' remains found as officers combed high craigton farm near milngavie . search had moved outside city amid growing fears for nurse 's welfare . ms buckley , from cork , ireland , last seen on sunday morning leaving club .\nliverpool face a summer overhaul with up to 10 players possibly leaving . raheem sterling is wanted by premier league champions man city . wolfsburg have shown an interest in long-serving defender martin skrtel . the anfield club will listen to offers for italian frontman mario balotelli . read : liverpool launch bid to rival man utd for psv 's memphis depay .\nsean reardon was stopped by police on suspected drunk driving charges . he claims once he got out of the car he was wrestled by two police . mr reardon said he was beaten as he lay on the floor in chico , california . said he suffered broken bones and ribs as well as breathing problems .\nwave of deadly anti-immigrant violence has caused thousands to flee their homes in south africa . immigrants fear further attacks despite clamp down by authorities . `` how am i going to pay the rent and feed my wife ? '' says one man .\nvalbona yzeiraj , of white plains , new york , was arrested on thursday and pleaded not guilty to charges of assault . authorities said the 45-year-old woman , from white plains , did injections in people 's mouths and performed root canals . when her boss was out , she allegedly pulled on a white coat and called herself ` dr val ' .\noribe peralta scored a late equaliser to earn american a draw . montreal impact had led through ignacio piatti 's first-half header . the second leg of the concacaf champions league final is next week . nigel reo-coker played 76 minutes before he was replaced .\nap mccoy finished well ahead of rivals in jump jockeys championship . there is no-one on his shoulder , no-one breathing down his neck . he will race at sandown for the last time before retiring on saturday .\nthe worker was caught on camera by a member of the public . field owner th clements & son was alerted and the man was sacked . passer-by who used mobile phone to snap photo branded act ` disgusting ' tesco : vegetables undergo ` extensive assessment ' before hitting shelves .\nscott was driving pierre fulton back to his house after taking him to a nearby church to collect a bag of vegetables on april 4 . but they were pulled over for his broken tail light and scott fled from cops . he was shot multiple times by officer michael slager , who was charged with his murder after a passerby released cellphone footage of the death . fulton , who had known scott for several years , said he does not know why his friend ran and did not see the shooting . ` he is torn up , ' his lawyer said .\nthe new `` star wars : episode vii -- the force awakens '' trailer is released . a fan gathering in los angeles featured the cast and a droid . the movie comes out december 18 .\ndai young wants to reform the current salary cap in english top flight . it means premiership clubs are struggling to compete with french . young 's wasps side lost 32-18 to toulon in champions cup last eight . only saracens made it through to the last four from england .\namazing pictures show a millipede stretching as it tries to escape a tiny , hungry weaver ant much smaller than itself . the weaver ant shows incredible strength as it throws around its large prey and cleverly balances the centipede . student frenki jung , 17 , from sambas , borneo captured dramatic images , he shot the close-ups in his front garden .\na proposed ban on alcohol in indonesia could deter australians from bali . the number of aussie tourists visiting the island continues to rise . mini marts would be the initial focus of the alcohol ban . but it will not apply to certain tourist locations including five-star hotels . the proposal could become law as early as the end of this year if backed by president joko widodo .\nmanuel pellegrini says his side are in a fight for the champions league . manchester city have slipped further behind chelsea in the title race . city travel to alan pardew 's crystal palace on monday night . click here for all the latest manchester city news .\ntwo people treated at the scene after ` boris buses ' crash in goodge street . an audi tt sports car was also involved in the four-vehicle collision . the road was closed near the junction with tottenham court road . eyewitness : at one point 15 buses stuck in queues before diverting area .\nmotorist ravi beefnah claims his # 35,000 audi a5 uses far too much oil . he covered his car in slogans and parked it outside a dealership in essex . car has been there for two months and he claims audi will not fix problem . manufacturer say they have offered to fix mr beefnah 's car free of charge .\nroman general suffered from vertigo , dizziness and weakness in limbs . historians have long believed this was caused by late onset of epilepsy . epilepsy was often referred to as the ` sacred disease ' in ancient rome . new look at symptoms reveal they have more in common with strokes .\nprince william has announced he 'll be taking six weeks of paternity leave . he 'll be staying with kate and the new baby at anmer hall in norfolk . but quentin letts , father of three , says the prince must be mad ! .\na ` blob ' of warm water 2,000 miles across is sitting in the pacific ocean . it has been present since 2013 and causing fish to seek shelter elsewhere . university of washington study says it could be responsible for droughts . but it is not clear where the blob has come from - or how long it will stay .\nsteven mathieson , 38 , stabbed 23-year-old escort luciana maurer 44 times . as she lay dead on the floor , he raped two other prostitutes at family home . crimes occurred while his partner was out and son was asleep in bedroom . mathieson , who was high on cocaine at the time , now faces life in prison .\nlee allan bonneau , 6 , was attacked by a 10-year-old boy and beaten to death with a rock and a stick in august 2013 in saskatchewan , canada . the killer , identified only as l.t. , has not been charged because of his young age . he told friends after the slaying he had witnessed a ` big guy ' murder a boy . l.t. later admitted he was the killer and pleaded , ` do n't tell on me ' . the child had a history of violence , including one incident when he killed a pregnant dog and her puppies . lee bonneau had been removed from his birth mother 's care two and a half months before the killing and placed with foster family .\nchelsea host manchester united in the premier league on saturday . blues are seven points clear at top of the table with a game in hand . manager jose mourinho faces his former mentor louis van gaal . juan mata returns to his former club after keeping angel di maria out . eden hazard , diego costa and david de gea have been nominated for the pfa player of the year award .\ntwin 18-month-old boys were pulled from a yuma , arizona canal on friday . authorities still have not explained what led the boys to be swept away in the canal , but they do n't suspect foul play . over the weekend , a go fund me page was set up to cover their memorial and medical costs . the campaign page identified the boys as eli and silas keslar , sons of mark and alexis keslar .\nbeatrize carrion-moore was charged with trespassing after warning , resisting arrest with violence and battery on a law enforcement officer . the incident occurred outside of a bar in west palm beach in florida . officers were called after reports about woman offering sex for money . bar patrons refused and woman would n't leave during friday night incident .\na study published in tuesday 's journal of the american medical association revealed the figures . almost 30 million health records nationwide were involved in criminal theft , malicious hacking or other data breaches over four years . compromised information included patients ' names , home addresses , ages , illnesses , test results or social security numbers . most involved electronic data and theft , including stolen laptops and computer thumb drives . cyber-security experts say thieves may try to use patients ' personal information to fraudulently obtain medical services .\ncountry band lady antebellum 's bus caught fire thursday on a texas freeway . a cnn ireporter captured the dramatic scene on video . singer hillary scott shared a pic of the charred bus on instagram .\nmartha , aged 10 , had been paddling in the water when she was swept out . her owner launched their own rescue but was unable to grab the pet . rnli eventually found the golden retriever who was cold and shivering . brought her back to the shore after managing to grab her by the collar .\nchris ramsey wants three wins from qpr 's final five league games . ramsey believes nine points will secure their premier league status . the qpr boss want his team to step up a level defensively .\na new tsa report advises against full screening of airport workers . the report says such measures would not lower the overall risk to the public .\ncoast guard says about 50 people were rescued from mobile bay . more than 100 sailboats took part in the dauphin island race , an annual event .\noriginally fined # 120 for the absence from sweyne park school in essex . unsuccessfully appealed the decision but parents still refused to pay . grandmother paid the bailiffs and said it was a ` sober warning to others ' .\nthe rev. robert schuller , 88 , had been diagnosed with esophageal cancer in 2013 . his tv show , `` hour of power , '' was enormously popular in the 1970s and 1980s .\na small boat carrying about 50 migrants left from the area of le borgne , west of cap-haitien wednesday . it got caught in bad weather on its way to turks and caicos .\nhull city travel to swansea city in premier league on saturday . steve bruce is boosted by return from injury of mohamed diame . the senegalese midfielder has been out for four months with knee injury . tigers currently have a three-point cushion to relegation zone . owner assem allam has again applied to fa for hull tigers name change . click here for the latest premier league news .\nrandy linn was sentenced two years ago for starting a fire that caused $ 1million in damages to a suburban toledo , ohio mosque . he is now in a california prison and says he ` ca n't believe ' what he did . prosecutors said he drove two hours from his home and broke into the mosque , where he poured gasoline on a prayer rug and lit it on fire . he said that being forgiven would give him ' a little bit of peace of mind ' .\nthomas driver , david moran , and charles newcomb each were arrested on one state count of conspiracy to commit murder . the florida attorney general 's office said the murder plotting started after driver had a fight with the inmate . driver is an officer at the department of corrections reception and medical center in rural north florida . moran is currently an officer sergeant at that facility . newcomb was fired in 2013 for failing to meet training requirements , the department said . prosecutors said the three were also members of the traditionalist american knights of the ku klux klan . the group has garnered attention in recent months for distributing flyers that likened protesters in ferguson , missouri to terrorists .\neveryone knows freezing is a great way of preserving different foods . but there are a few types of food you may not have thought of freezing . here , tessa cunningham puts a host of our foods to the frozen test .\naston villa owner randy lerner in discussions to sell the club . manager tim sherwood not concerned by takeover talks . sherwood says he is focused on survival and building for next season . aston villa are 16th and three points clear of relegation zone . click here for the latest aston villa news .\nmichael conlan and paddy barnes both win to reach rio 2016 games . conlan won his fight but had to rely on other results to make it through . irishman dedicated his win to his girlfriend after fighting despite illness .\narkansas attorney sarah sparkman observed women are sexualized on tv . someone replied and mentioned britt mchenry , but did n't tag the reporter . however , mchenry found the post and began lashing out at sparkman . she called her a ` rando ' , insulted her appearance , and mocked her for ` bashing more successful ppl on twitter ' echoes how mchenry told tow clerk : ` i 'm on tv , you 're in a f -- ing trailer '\nthe fire on a platform in the gulf of mexico has been extinguished , pemex says . 45 workers were injured in the blaze , according to the state oil company . four workers were killed in the oil rig fire , which started early wednesday .\nbournemouth lead the championship by four points with four games left . yann kermorgant fired the cherries into the lead in the 70th minute . callum wilson doubled the visitors ' advantage 10 minutes later . eddie howe 's side have set a club record 106 goals in all competitions .\nrichie benaud passed away aged 84 on friday . australian prime minister tony abbott has paid tribute to richie benaud . state funerals in australia are usually reserved for politicians . bradman turned down opportunity to have state funeral before his death . click here for more benaud tributes .\nrumours suggest apple will used 7000 series aluminium in the next iphone . alloy is already used to make sports bikes and the apple watch sport . would make next handset 60 per cent stronger than the iphone 6 's case . just days after its launch the handset was shown to be easily bent .\n`` we all share the same pain , '' valerie braham tells memorial day crowd in israel . her husband , philippe braham , was among 17 killed in january 's terror attacks in paris . french authorities foil a new terror plot -- a painful reminder of widow 's recent loss .\nguardian kay-ann morris is on trial for murdering her niece shanay , 7 . paramedics found shanay lying cold and stiff in bed at nottingham home . morris and mother , juanila smikle , claim she had fallen down the stairs . paramedics later found 50 bruises on girl 's face , torso , arms and legs . prosecution say death was due to ` sustained , vicious and brutal beating '\nsarina aziz was flying back from israel with parents mark and ariella aziz . but girl became agitated after being placed on the parents ' lap . pilot turned plane around at ben gurion , and armed police ejected family . father mark aziz insists family were being compliant and asking for help . mother speaks of her disbelief at how the incident was handled by staff .\ncarson daly transformed into olivia newton-john 's iconic character sandy , while savannah played john travolta 's role danny . the pair went up against al roker , willie geist and natalie morales , who donned blonde wigs for their performance of sia 's chandelier . chrissy teigen judged the performances ahead of tonight 's premiere of spike tv 's new show lip sync battle , which she co-hosts with ll cool j .\nlewis hamilton and nico rosberg will renew their rivalry in bahrain . the mercedes pair had argued in the aftermath of the chinese grand prix . hamilton , though , has dismissed mind games and is focused on the next race .\nbaron the german shepard was filmed as he helped get the dishes done at home in california . the pup was professionally trained at the hill country k9 school . to date the clip of baron dishwashing has been watched over 27,000 times . many viewers have deemed the dog 's cleaning antics ` cute ' and adorable '\nmarissa holcomb was held up in channelview , texas , on march 31 . robber held her at gunpoint and emptied $ 400 from the till . she was fired a day later after refusing to pay back the money . the store says she broke their policy by having so much cash in the till . holcomb , five months pregnant with her fourth child , says it was busy .\nriley filmer has been prevented from attending class because of her shoes . she was told that her shoes do not comply with mcclelland college 's rules . the policy states girls are to wear ` black leather lace-up school shoes ' riley 's mother said the shoes comply and are comfortable and practical . the 14-year-old has not been allowed to attend classes for three days .\nadam gadahan was born in oregon in 1978 as adam pearlman . was first american to be charged with treason since second world war . converted to islam at the age of 17 while living in orange county , california . a few years later he moved to pakistan and became an al qaeda propagandist .\ndetective : `` i sincerely apologize '' for berating uber driver . nypd investigating encounter that was caught on tape by passenger . detective placed on modified assignment .\nwarner bros and dc comics wanted to set world record for the largest gatherings of people dressed as dc comics superheroes within 24 hours . the event kicked off on april 18 in queensland , australia , at movie world . us , uk , france , brazil , italy , spain , taiwan , mexico , philippines also hosted . the old world record set in 2010 at 1,580 so seems likely it was shattered .\njohn frost hilariously recounts stories from his career at london airports . frost and his team frequently detect drugs hidden in bizarre ways . he has even had to deal with a monkey ` disguised as a hairy child ' .\njulieane jablonski , 38 , was booked on suspicion of providing marijuana to a minor and felony tampering with a witness . her son was seriously injured when he jumped out of a third-floor glass window without warning . she allegedly told him to lie to police about where he got the pot . the son , austin essig , took to the police department 's facebook page to describe his ` trip ' .\nmany of the companies named in a report out april 9 from the citizens for tax justice even received federal tax rebates . the companies include household names such as cbs , mattel , prudential and time warner .\nnew indiana law : no one has the legal right to ` refuse to offer or provide ' goods , services , facilities or employment to anyone in previously protected classes or based on sexual orientation or gender identity . ` it was never intended to discriminate against anyone , ' indiana senate president pro tem david long said this morning at a press conference . arkansas legislature also passed changes to its legislation at the behest of the state 's republican governor asa hutchinson . altered law more closely mirror federal legislation ; it passed the senate last night and is now under consideration in the house .\nroman ehrhardt became an internet sensation after a snapshot of him cooking bacon while in the front row of a college lecture was shared online . the senior communications major at mississippi state was secretly completing a project , in which he had to violate a societal norm .\nformer barcelona forward ronaldinho came on in the 84th minute . ronaldinho still managed to grab a brace as his side eased to victory . queretaro are now just two points behind club america in liga mx .\nactor was famous for wearing christian dior 's eau sauvage aftershave . it contained hedion , a chemical that activates the brain 's hypothalamus . region is responsible for triggering release of sex hormones in women .\ncomfortably numb is a single-use 3d printed device that numbs the skin . produces a rapid chemical reaction to cool the patient 's skin in 60 seconds . invention costs around $ 2 to make and could help millions terrified of pain . three first-year students behind invention say it could work for tattoos too .\ngloucester fly-half james hook has won 77 test caps for wales . but he has only made two starts since the last world cup in 2011 . hoping to impress in european challenge cup final against edinburgh .\naston villa defender kevin toner captains the club under-21 team . the 18-year-old is being tracked by number of rival premier league clubs . newcastle and stoke have been watching the young central defender .\nri sol-ju appears in public with her husband for first time since december . n. korean leader kim jong-un and wife pictured attending a football match . former singer , ri and her husband kim wore wedding rings at the event . they were flanked by officials at kim 's grandfather 's 103rd birthday party .\nuss independence was sunk in 1951 after weapons tests . carrier was close-in guinea pig to two atomic bomb tests . agency : ship looks remarkably intact 2,600 feet below surface of the pacific ocean .\nscotland youth international jack cosgrove is joining edinburgh . young worcester prop will move north of the border next season . the 20-year-old expressed his delight in joining the european cup finalists .\nelizabeth elena laguna salgado , 26 , from chiapas , mexico , was last seen leaving a language school in provo , utah , april 16 . she moved to provo a month ago after completing mormon mission to mexico . elizabeth smart and her father held a press conference friday to draw public 's attention to salgado 's missing person case . woman 's uncle said she has told him a young man had been pestering her to go out with him , forcing her to pretend having a boyfriend .\nsupport for ukip has fallen by 5 % since october as the election looms . nigel farage also facing a fight to win in south thanet after falling behind . comes after david cameron pleaded with ukip supporters to ` come home ' . mr cameron has previously described ukip supporters as ` fruitcakes '\njapanese-led experiment will see how plants grow on the iss . researchers will monitor how they grow without influence of gravity . results could help farmers on earth get a higher crop yield . and it may also help future astronauts grow plants on mars .\nbrits arrested on turkey-syria border and are now in custody . nine people tried to enter syria illegally , according to local media . the arrested brits are three men , two women and four children .\nbaboon bone was spotted by the american museum of natural history . researchers thought one of the vertebra bones was too small to fit lucy . they say the baboon bone was somehow mixed up with lucy 's remains . lucy is oldest and most complete fossil of an early human ever found .\nanimal gave police a run-around in battery park city on saturday . officers trailed the canine in patrol cars and on foot through the streets . it evaded capture for two hours while dipping in and out of traffic . cops eventually cornered the coyote and shot it with a tranquilizer dart .\nname of ancient goddess of egypt was on wmo list for hurricanes in 2016 . organization deemed name inappropriate and replaced it with name ivette . wmo has rotating lists of names for various regions that run from a to z. mexico requested to retire name odile and odalys will be its replacement .\nmother of four anna james has vowed to take her children to the festival . mrs james , 32 , claims it is part of her ` religion , culture and heritage ' her children 's school has refused to give permission for their absences . the ancient maypole festival is held every year in padstow , cornwall . it is believed to be an ancient pagan ritual that heralds the arrival of spring .\ni 'm a celebrity ... get me out of here ! uk attraction open to the public . maze based on tv show has new bush tucker trials to try and stars to win . thorpe park welcomes creepy crawlies , dark caves and slimey quizzes .\nsuzanne crough was the youngest member of tv 's `` partridge family '' crough died monday at 52 in nevada .\nfilmmakers said they plan to use the latest ultra hd camera technology . eight-part series will take four years to make , will debut on netflix in 2019 . will focus on the earth 's last wilderness areas and the animals living there .\ncustomers can have a picnic basket delivered after ordering online . paris picnics packs all the specialties , including french bread and wine . more expensive menu options include macarons and foie gras .\nangela maxwell returned to coningsby community hall yesterday morning . the 67-year-old and her husband won # 53million in last week 's lottery . couple said they planned to spend money on a new minibus for local oaps . mrs maxwell volunteers for the council preparing meals for pensioners . she returned to the lunchtime club yesterday morning despite the windfall .\nkay bennett , 33 , says she has been turned down for 40 jobs in the last year . suffers depression brought on by her tattoos , which she had done at 24 . the former security worker has gained six stone due to ` comfort eating ' . resigned from the only job she had in years because she felt left out . miss bennett is hoping someone will take pity and buy her laser removal .\niain mackay , 40 , saw his thai girlfriend talking to another man in a bar . trio reportedly got into a furious argument at the coastal hua hin resort . shortly afterwards mr mackay appeared in a nearby shop bleeding heavily . was suffering injuries caused by shards of glass from a smashed mirror . paramedics were called to the scene but he died in hospital hours later .\namanda curtis , ceo of a fashion company in new york , posted a picture of four rainbows to twitter . `` i had a small moment of awe , '' she said .\na new kansas law bans what it describes as `` dismemberment abortion '' supporters say it 's a groundbreaking step . opponents say it 's dangerous and politically motivated .\nnew zealand recently changed how they calculate child support figures . some parents are outraged , labelling the changes as ` unreasonable ' one parent said he quit his job so he would n't have to face a $ 600 increase . he said after he halved his income , his payment dropped by two thirds .\nthibaut courtois went into the qpr game in inconsistent form for chelsea . he had been criticised for his performances against hull and stoke . but he excelled at qpr and said he never doubted his form would return . click here for neil ashton 's match report from loftus road .\naustralia to cut welfare benefits for parents who refuse to vaccinate their children . the `` no jab , no pay '' policy will come into effect in january 2016 . the australian government estimates more than 39,000 children who have not been vaccinated .\nincredible pictures show a city in china devoured by a giant sandstorm . golmud , in the country 's north west , was yesterday blasted for half an hour . the entire city turned red as it was covered by the brightly-coloured sand . as residents fled the streets , the city took on a mars-type appearance .\nsandra mathis , 52 , charged with murder for allegedly stabbing 48-year-old husband multiple times after argument . mathis was caught on camera weeping with blood on her face as she was being handcuffed . couple , who had problems with alcohol , lived in makeshift camp under a bridge in san diego .\ndavid moore , 25 , ` saw red ' after leaving his home only to immediately find himself nose-to-nose on a heavily congested street with rafal cegielka , 45 . pair went to ` have words ' through window when moore hit mr cegielka . he then armed himself with hockey stick , and shouted : ` i 'll f *** ing kill him ' the court heard moore had had a 's ** t day ' had seen red and was sorry .\nnasa scientists in california have revealed an interactive 3d map for vesta using images from the dawn spacecraft . the map lets you see features on the surface including craters , hills , mountains and even ` canyons ' you can also measure elevation changes on the surface and see different measurement data . and a ` gaming mode ' lets you fly around the largest asteroid in the solar system using your keyboard 's arrow keys .\njoshua leakey receives sixth vc queen has given to a living uk recipient . l/cpl 's cousin was posthumous vc recipient in 1945 for gallantry in wwii . he says award highlights efforts of all soldiers who went to battle taliban . three generations of his family including grandparents attend ceremony .\nteens and young adults from mexico use social media to show off wealth . they are known as mirreyes and are members of mexican high society . one such individual , jorge alberto lópez amores , dove off yacht in 2014 . lópez , 29 , asked friends to take video of stunt and was never seen again . expert : ` the economic wealth mirreyes use is the main marker of class ' households in mexico take in an average of $ 12,850 per year after taxes .\ncompletely unqualified brothers were trying to create an indian restaurant . digger then struck load-bearing column bringing down floors and walls . doctor 's wife and student fell through floors and worked was buried . judge jails landlords for a year each telling them it was lucky no one died .\nsarah hulbert claims she was treated differently from her male co-workers during her time as an executive assistant at bates college in lewiston . hulbert claims that bates president a. clayton spencer expected her to jog , play tennis , and watch chick flicks . a bates spokesman said in a statement that ` the college strongly disagrees with the allegations ' and will defend itself in court .\nbubba watson was voted most unpopular golfer by his fellow pros . survey asked which player they would not help if they were in a fight . anonymous questionnaire saw reigning masters champion come top . watson said he took the result ` with pride ' american defends his title as the 79th masters tees off on thursday .\nfukushima nuclear power plant went into meltdown in the 2011 disaster . three reactors blew up after tsunami causing 300,000 to be evacuated . a robot was sent into one of the nuclear reactors to inspect melted fuel . but it stalled within three hours of the mission and has to be abandoned .\nkendall , 19 , helps gigi learn how to deal with negative feedback . gigi , 19 , says kendall has a really good sense of when to stand up . kendall has been bullied on instagram by fellow models .\nrama the elephant , who completed paintings with his trunk , died monday , oregon zoo officials announced on facebook . zoo officials said rama 's leg was hurt in 1990 , when older female elephants shoved him out of the herd and he went into a moat . they said rama was euthanized after health problems from the leg injury . elephant group free the oregon zoo elephants has claimed zoo officials should not have placed rama with the females at a young age .\ncharnelle hughes was at the adelphi pub in preston for a heavy metal gig . she was struck in the head by a pint glass which was thrown at random . the student has been left scarred for life and feared she would lose her eye . jordan goode admitted wounding after throwing the glass while ` hard-core ' dancing .\nmanchester city lost 4-2 at rivals manchester united on sunday afternoon . city players trained on wednesday ahead of weekend match vs west ham . city are currently fourth in the premier league with seven games left .\nbmw mini made the concept augmented vision goggles with qualcomm . give wearers x-ray vision when parking and pop-up data on the dashboard . elvis-style glasses are also designed to be worn out of the car . there 's no news about whether the goggles will ever go on sale .\nmiliband says there 's ` nothing more british than dream of home-ownership ' stamp duty cut would save first-time buyers up to # 5,000 on cost of buying . labour would also ensure new homes go to local people with law change .\nblackburn secure easy win over 10-man leeds united at elland road . midfielder rudi austin sent off in first half for the home side . tom cairney , jordan rhodes and jay spearing strike for rovers .\nweakened st helens suffer another defeat against strong hull side . jamie shaul scored late long-distance score to secure win . inexperienced champions had looked like holding on until late shock .\nvirginia roberts is being sued for defamation by lawyer alan dershowtiz . model agency owner jean luc brunel said he is considering legal action . comes after judge orders roberts ' sex slave claims struck from the record .\nperth glory fans , who set off flares , will face the prospect of a five year ban . this comes after police charged two teens for allegedly setting of flares . a 13-year-old boy suffered burns to his leg and was taken to hospital . the 16-year-old and 15-year-old were charged with grievous bodily harm . the pair will appear at the perth children 's court next month .\nphotos taken for bbc show being human see aidan turner with a full ` rug ' . ... but his chest hair in poldark 's shirtless scenes looks distinctly pruned . fans take to twitter to comment on new poldark male grooming debate . aidan admits he uses baby oil to make his muscles look good in the series .\nla angel josh hamilton filed for divorce from katie two months ago . was around the same time he admitted to a drugs and alcohol relapse . reality star insisted there was no ` big fight or blow up ' causing the split . has maintained she still loves him and will always stand by him .\nrory mcilroy heads to the masters hoping to complete a career grand slam . bose have released a video chronicling mcilroy 's early career . the 2015 masters kicks off at augusta on april 9 . read : mcilroy warned tiger woods he would catch him after penning golf legend a letter ... when he was just nine years old ! . click here for all the latest news and build-up to the masters 2015 .\nsnp leader says she will hold talks with westminster parties after may 8 . first minister is not standing for election and will not be in commons . vows to use fix term parliament act to ` change direction ' of government . mandelson 's firm says the snp will emerge as the winners of the election . tns poll puts snp up two points on 54 % , with labour down two to 22 % .\nsouth africa is battling xenophobic violence after some said foreigners are taking jobs away . a 14-year-old boy is among those killed after a mob with machetes targeted foreigners .\nthe english bulldog puppy named hazel jumps into the basket . after leaning on the side of it , the puppy is thrown across room . puppy gets up , jumps back inside basket and chews on its rim . hazel the bulldog is featured in a number of videos on youtube .\nu.n. says suicide attacks on mass groups of civilians may be labeled as war crimes . taliban condemns the attack , which isis took credit for . the bomber targeted government workers picking up their pay , isis said in a statement .\nlaw allows police to hold suspects for two years without charge or trial . government-appointed terror board can then decide to grant an extension . opponents and human rights groups said the bill was ` open to abuse ' and represents ' a giant step backwards for human rights ' law has been introduced to combat the growing threat of isis in malaysia .\nclarkson was due to host satirical news show at the end of this month . would have been first bbc appearance since dismissal from top gear . however producers today confirmed he has withdrawn from show .\njurgen klopp will leave borussia dortmund at the end of the season . arsene wenger 's contract at arsenal has two more years to run until 2017 . nigel winterburn believes the club should let wenger see out his deal .\nabdulkadir zeyat , wife antika , and six children were discovered at home . authorities suspect food poisoning or a gas leak for their tragic deaths . neighbours became concerned when they noticed house was eerily quiet . only survivor was couple 's eldest son kemal zeyat who 'd been out at work .\nmanchester united welcome manchester city to old trafford on sunday . sergio aguero has scored six goals against man utd since joining city . radamel falcao says the argentine is the main threat for man united . falcao is hoping to make his first appearance in a manchester derby . colombian says he is happy at man utd despite bit-part role this season .\nanjelica ` aj ' hadsell , 18 , has been missing since march 2 , when she was home in norfolk while on spring break from longwood university . her stepgrandmother says police are n't doing enough to find aj and that her son was unjustly arrested while pursuing his own investigation . aj 's stepdad wesley hadsell has been in jail since breaking into a home he says is connected to the crime . mr. hadsell is awaiting a hearing on four charges of obstructing justice , a charge of possessing ammunition after a felony and breaking and entering .\nflorida mailman doug hughes landed gyro-copter on wednesday . flew 80-miles from gettysburg to washington d.c. and was not detected . norad failed to identify the single-seat craft as it flew under the radar . homeland security chief called for calm and no over-reaction to security breach .\nmary queen of scots washed herself in white wine . ancient indian women used cow dung and urine to boost their beauty . cleopatra bathed in donkey-milk to achieve smooth skin .\nit is not known how fairy circles in the namibian desert are made . clue may lie in the distribution of the barren circles of earth in grassland . researchers in japan discovered their distribution is similar to skin cells . like human cells , the mysterious circles typically have six ` neighbours ' .\nmumia abu-jamal was murdered philadelphia police officer in 1981 . he collapsed in prison earlier this month and was taken to hospital . marilyn zuniga allowed her third grade pupils to write to killer abu-jamal . teacher apologised for actions but said her pupils wanted to write to him . she said pupils became interested in abu-jamal after learning about him .\nirish student nurse went missing from nightclub late on saturday night . her body was found at a farm north of glasgow after huge police search . hundreds attended a vigil in her memory today in george square , glasgow . glasgow man , 21 , appeared in court today in connection with her death .\nfloyd mayweather faces manny pacquiao at the mgm grand arena in las vegas on may 2 . 16,000 fans will pack into mgm grand to watch the fight which is worth $ 300m . both mayweather and pacquiao arrived in las vegas on tuesday ahead of the fight . watch : jeff powell on floyd mayweather and manny pacquiao 's arrival in las vegas . click here for all the latest floyd mayweather vs manny pacquiao news .\nsusie clark , of evening shade , arkansas , found the diamond on thursday at crater of diamonds state park . the 3.69-carat gem is teardrop-shaped about the size of a pinto bean . park interpreter said it 's the largest of the 122 diamonds found this year .\ndnp was a chemical used in weapons in ww1 and was found to be toxic . it was also commercially used as a pesticide and poisoned workers . was banned as a diet pill after scientists discovered its risky side effects . has been linked to a string of deaths as it causes people to overheat .\nlewis hamilton showered her with champagne after winning grand prix . campaigners against sexism said action was ` selfish and inconsiderate ' but liu siying says she was n't offended and just doing her job .\nclinton endorsed gay marriage in 2013 ; said she ` was fully in support of gay marriage and that it is now continuing to proceed state-by-state ' in a terse interview with npr last year in which she declined to go into detail about her views on the topic , she repeated that position . spokesperson today said she ` hopes the supreme court will come down on the side of same-sex couples being guaranteed that constitutional right ' high court will hear arguments on april 28 in cases on the matter . clinton brought attention to the issue with her campaign launch video on sunday that featured a gay couple planning their wedding . she spoke out after gop candidate marco rubio took flak for saying tuesday that states , not the federal government , should decide the issue .\nterrill wayne newman is vying to become the next kentucky governor . on tuesday he legally changed his name to gatewood galbraith after a late local celebrity who bid five times for the title but never won enough votes . newman says he does n't expect to be elected but hopes the gesture will ` warm galbraith 's grave '\nalex salmond said ed miliband would find it difficult to avoid an snp deal . former snp leader also said miliband was ` foolish ' to rule out coalition . he said all parties would have to face up to the ` electorate 's judgment ' nicola sturgeon warned miliband not to allow cameron back into power .\nmuhammadu buhari tells cnn 's christiane amanpour that he will fight corruption in nigeria . nigeria is the most populous country in africa and is grappling with violent boko haram extremists . nigeria is also africa 's biggest economy , but up to 70 % of nigerians live on less than a dollar a day .\nexclusive : rapper was booked to play ` intimate gig ' at club in canterbury . but he turned up three hours after advertised start time and played just two songs before leaving . club has apologised and vowed to seek refund from the star 's management .\nthief stole sat nav from elderly woman 's car after she was injured in crash . woman , 73 , was waiting for an ambulance with husband who has dementia . suspect was photographed as he fled the scene in hulme , manchester . bearded man was wearing purple shorts and is aged between 30 and 40 .\nschweinsteiger will miss dfb-pokal tie with bayer leverkusen . germany captain suffered ankle injury in 1-0 win over borussia dortmund . bayern confirmed the injury was n't serious but he did n't train on monday . reserve goalkeeper tom starke ruled out for four weeks . arjen robben and franck ribery are also on the bayern injury list .\njurgen klopp will leave borussia dortmund at the end of the season . bundesliga boss has been touted to take over from manual pellegrini at manchester city . german has told jose mourinho that he will not be coming to chelsea .\njournalist sunir pandey was visiting relatives with nepal 's 7.8 magnitude quake struck . he says they ran to shelter under a concrete beam and prayed , as dust rose from the rubble .\ndrug called azdo5030 originally designed to treat certain types of tumour . scientists say it has restored memory in mice given alzheimer 's disease . human trials have already been launched to test efficacy of drug in patients .\nthe virtual reality headset is available to buy from firebox for # 29.95 . it works with android and ios phones via virtual reality apps and 3d films . the maximum size of the device must be 3.5 x 5.7-inches -lrb- 8.2 x 15.4 cm -rrb- it calls itself an affordable alternative to rivals such as oculus rift .\nthe latest installment in the fast and furious franchise has smashed box office records for the month of april . it ranks ninth among the top ten openings in cinema history with audiences flocking to paul walker in one of his final roles before his death in 2013 . analysts had estimated that it would open in the $ 115 million range , but it managed to earn almost $ 30m more . walker was killed in a single-car accident when his friend roger rodas 's red 2005 porsche carrera gt hit a lamppost and burst into flames .\nandy murray is getting married to kim sears in dunblane on saturday . british no 1 looked a little apprehensive at the wedding rehearsal . former wimbledon champion is set to jet off after the wedding to take a look at prospective new assistant coach jonas bjorkman .\nmanchester city are currently nine points behind league leaders chelsea . city face crystal palace at selhurst park on monday evening . joe hart has said his side will not give up on retaining the title .\nmen are learning to embrace their grey hair with style - and women love it . femail checks out the young trendsetters and classic silver-haired stars . we offer grooming tips from experts to help your man go grey gracefully .\njane bacon , 51 , told to pay # 176 after trying to switch flights due to chemo . grandmother had booked a ` final trip ' with her husband to sharm el sheikh . changed booking after being told she needed 18 weeks of chemotherapy . easyjet has now apologised and agreed to refund money to change flights .\na howler from reading goalkeeper adam federici helped arsenal progress . federici let a late effort squirm through his legs and in during extra-time . he left the field in tears after fumbling sanchez 's shot through his legs . aaron ramsey will be hoping to taste more fa cup success in the final .\nmelbourne based fashion brand elliott label makes it in hollywood . founder kylie gulliver has partnered with pussycat dolls ' robin antin . the pair initially met through instagram . stars including drew barrymore and mimie elashiry attended us launch . the luxe label features leather staples and tailored pieces in range . next the design duo are set to launch sport range .\nphil smith , 25 , forgot his keys and scaled fence to try to get in his flat . but teaching assistant fell and hit his head while climbing through window . he fractured his skull and suffered a bleed on the brain and a blood clot . parents paid tribute to ` lovely son ' who worked at special needs school .\nben stokes returns to the ground where he broke his wrist hitting a locker . he clashed with west indies batsman marlon samuel in the second test . but his aggression , when controlled , is important to england .\naljaz bedene officially became a british citizen at a ceremony on tuesday . the 25-year-old is currently ranked no 83 in the world but will be gb no 2 . andy murray says fellow british players like james ward and kyle edmund should not complain about the assimilation . bedene was born in slovenia and could rise up the rankings , says murray . british no 1 insists young stars should use bedene as motivation .\nalan lawrence created a photo series in which his 18-month old son , wil , appears to be flying to raise awareness about down syndrome . wil has down syndrome and lawrence says the toddler ` brings a light to our family ' lawrence plans to put the photos in a calendar and donate half the proceeds to two down syndrome foundations .\njoe hart has revealed he is inspired by the likes of gianluigi buffon . italy 's record cap holder buffon played his 147th game for the azzurri . man city shot stopper hart recorded his 50th appearance for england . click here to read martin samuel 's match report from turin .\nformer porn actress christy mack claims ex-boyfriend jonathan paul koppenhaver beat and raped her until she almost died at her home . she had been asleep next to a male friend when he ` burst in with a knife ' koppenhaver , who goes by the name war machine , claims to be innocent . mack has opened up about her recovery , now needs glasses and a wig . the case against koppenhaver , who faces 26 charges , resumes in autumn .\nreform proposal would give hong kongers right to vote for their next leader in 2017 . but candidates would have to be approved by a mostly pro-beijing committee . pro-democracy legislators have vowed to veto proposal .\nnigel farage called on tories to vote tactically in seats they can not win . he also dropped demand tories ditch cameron before post election deal . ukip leader said many were closer to position of wanting an eu referendum . farage says he 's held informal talks with tories about post election deal .\nup to 300 runners in yesterday 's bournemouth bay run sent wrong way . some of the racers were said to be ` in tears ' after the two-mile detour . organisation slammed as ` shambolic ' as there was also water shortage .\nursula ward 's wrongful death suit against hernandez , 25 , is set to proceed . suit seeking unspecified damages was put on hold during criminal trial . hernandez made millions and had $ 40million contract at time of murder . convicted april 15 of first-degree murder for killing lloyd in june of 2013 .\ntemperatures at esperanza base on antarctic peninsula reached 63.5 °f . area was hit by two day heatwave that beat previous temperature records . antarctic peninsula is one of the fastest warming areas on the continent .\nbi apologizes on social media : `` my personal speech has led to grave social consequences '' chinese tv star filmed cursing the late chairman mao zedong . making disrespectful references to china 's leaders in public is still taboo .\ncheltenham town are battling to stay in league two with two games left . manager gary johnson became manager of the club at the end of march . he got the team to sign a piece of paper promising to give their all .\nmerger would have given the new company control of 57percent of the broadband internet market and 30percent of the paid tv market . announcement that comcast is ` walking away ' from deal could come friday . comcast has 30million subscribers and time warner cable boasts 11million ; new company would have spun off or sold 3.9 million . fcc staffers recommended the merger be sent to a judge for review - a significant regulatory hurdle . regulators questions whether merger was in the public interest .\nalan pardew claims he has the ability to manage the league 's top sides . however pardew insists he is content with life at selhurst park . the eagles host premier league holders manchester city on monday night .\nnigel benn and ricky hatton returned to the ring for a spot of pad work . the ` dark destroyer ' shows he still has what it takes with a series of hits . he returned from australia to meet up with hatton at his manchester gym . benn is hoping hatton will train his son ahead of 2016 olympic campaign .\nthe stunning mosaic could help scientists better understand how water and lava once flowed across mars . terrain model shows the impressive height of the meridiani planum region at up to 820ft -lrb- 250 metres -rrb- in red . colder colours reveal craters , ditches and plains , which are particularly prominent in chryse planitia region . in three years , the german aerospace center wants to represent the whole of mars as one coherent mosaic .\nno one knows who put up the signs in the municipality of lastres . the signs show a figure defecating within a red circle with a line across it . angry residents claim pilgrims have defecated outside their homes .\ncardiff city have joined their fans in protest against leeds united tickets . the two sides face each other in the championship on saturday at 3pm . cardiff have returned the entirety of their 500 allocation for yorkshire trip . there is a history of trouble between the supporters of both clubs . leeds refuse to give cardiff rights to show the game live at their ground .\nthe plans were revealed in a leaked memo from apple boss tim cook . he thanked staff for their help and offered employees a 50 % discount . this discount applies from friday and will last for 90 days . apple staff already receive discounts on all products at around 30 % .\nmarie le pen has fallen out with her father over his ` extreme views ' . the 87-year-old convicted racist said nazi gas chambers ' a detail of history ' marine said fn ` does n't want to be held hostage to his vulgar provocations ' she will oppose him standing in december poll amid calls for him to resign . but honorary president jean-marie said stepping down is a ` crazy idea ' .\narsenal thrash liverpool 4-1 in dominant display to go second . gunners are still four points behind chelsea , who have a game in hand . arsene wenger says his side looking up , but remain focused on each game . brendan rodgers praises ` outstanding ' raheem sterling despite defeat .\nbarcelona president josep bartomeu says the club are happy with enrique . barca are currently top of la liga and closing in on the league title . enrique 's future at the club has been speculated over the season . click here for all the latest barcelona news .\nfemale yazidi held prisoner by isis , suffered horrific sexual abuse . victims include girl , nine , who is now ` pregnant by her abusers ' . earlier this week , isis released 216 yazidi prisoners in northern iraq . group , made up of 40 children , women and elderly , released after a year .\naxed top gear presenter was seen laughing with traffic warden in london . the warden had tried to leave a parking ticket on his borrowed supercar . after a friendly chat , the warden walks away forgetting to leave the ticket . clarkson had parked his car to inspect a black ferrari pininfarina 275 .\nbrendan cordina found his granddad 's wwii medals at a nt museum . he spent two years looking for jack slade 's medal 's believing they were lost forever . a request to have them returned to the family was refused . mr cordina was told that the museum needed them more than he did . he has now started a petition to have them returned with 15,000 signatures . director of the museum said mr slade asked for them to be left to the public in his will .\nhans-wilhelm muller-wohlfahrt has been working with paula radcliffe . radcliffe admits she was close to pulling out of sunday 's london marathon . the annual race will be radcliffe 's final competitive marathon of her career . german doctor muller-wohlfahrt has previously worked with ronaldo .\nkentucky player mutters n-word under his breath about a wisconsin player at postgame news conference . andrew harrison , who is black , tweets that he apologized to frank kaminsky , who is white . kaminsky says he 's talked it over with harrison -- ` i 'm over it ''\nchris ramsey believes tim sherwood will keep aston villa from relegation . friendships will be cast aside when ramsey 's qpr face sherwood 's villa . qpr are optimistic about survival after beating west brom 4-1 on saturday . a win over villa would put ramsey 's rs ahead of villa on goal difference .\nriff was developed in london and is available on android and ios . it lets you film a video and uploaded it to the app and facebook . friends then film their own clips and tag them onto the end of your video .\naustin bird sat for coffee on tuesday morning in the town of leclaire , iowa , chatting with hillary clinton as photographers snapped pictures . news reports called him a ` student ' and her campaign called it an unscripted event . but clinton 's iowa political director troy price drove bird and two other people to the coffee house . bird is a hospital government relations official who interned with barack obama 's 2012 presidential campaign . the iowa democratic party , which price ran until a month ago , tasked him to be joe biden 's driver during an october senate campaign trip in davenport .\nschools are struggling to cope with children who can not speak english . teachers are using google translate to plan lessons for migrant children . union conference heard other children are n't getting fair share of attention .\nwarner bros slammed by novelist for dropping the deal in 2012 . sony has announced deal to release movies and tv series . the dark tower is an 8-part novel series written between 1970 and 2012 . javier bardem and russell crowe rumored to be interested in the lead .\ndorothy brown : shooting by cop might have followed usual narrative of blaming black suspects . but video in walter scott 's fatal shooting showed the truth , brown says . with hindsight from michael brown case , north charleston did the right thing with arrest .\nmike lane was beaten by masked protesters armed with iron bars on ropes . attack happened as 30 riders and hounds were chasing artificial scent . wiltshire police handed video footage and some names of saboteurs . decision by police to drop probe branded ` pathetic ' by 40-year-old .\nmanuel pellegrini 's position has come under scrutiny at manchester city . patrick vieira is in charge of the champion 's elite development squad . the former arsenal star is well equipped to become a top manager .\nross mccormack gave fulham the lead after eight minutes at the valley . but johann gudmundsson leveled the scores less than ten minutes later . scott parker was booed on his return to club , 11 years after he left . share of the points in london leaves charlton in 11th and fulham in 20th .\nesa 's rosetta spacecraft temporarily lost contact with earth . the problem occurred when flying just nine miles above comet 67p . comet debris caused the probe to lose track of its position in space . but after a nervy 24 hours , engineers successfully made contact again .\nvanessa moe presented as part of the st george new generation show . models walked runway with plastic moulds over their heads . show attendees appeared to be more transfixed with them than clothes .\nlewis ferguson fell from merrion square at wincanton on wednesday . despite spectacular tumble he escaped with just a cut nose . ferguson has been mucking out stables as usual on thursday morning . the 18-year-old says incident that went viral was ` just a blur ' to him .\n`` it is meaningless to congratulate me or others '' because deal not final , ayatollah says . president hassan rouhani : iran will not surrender to bullying , sanctions . u.s. lawmaker : bill to ease sanctions does not stand a chance in house or senate .\nman left passengers feeling nervous after outburst on bus , said witness . he caused more problems on the plane at the airport in hurghada , egypt . plane was taxiing to the runway but was forced to return to its stand . passengers applauded when he was removed by an armed officer . flight was delayed for 40 minutes before departing without the man .\nthe curious canine kitchen is a ` holistic restaurant for four-legged friends ' for # 20 per dog , your pet will be treated to a slap-up five-course set menu . all proceeds will be donated to amazon cares , a street dogs charity .\nraheem sterling 's potential move from liverpool could spark a three-way domestic auction between chelsea , manchester city and united . liverpool have put a # 50million price tag on england international sterling . if one of the three premier league clubs sign sterling , then the other two will try to lure gareth bale from real madrid . brendan rodgers sees theo walcott as an ideal replacement for sterling . palermo 's paulo dybala is a target of both liverpool and arsenal . marcelo bielsa could succeed sam allardyce as west ham manager . manchester united set sights on southampton right back nathaniel clyne .\nlavall hall , 25 , was suffering psychotic episode when fatally shot by police . his mother had called police to help take mentally ill son to hospital . police claim he attacked them with ` deadly force ' using broom handle . but footage from scene appears to show hall running away from cops .\nskyscanner 's future of travel report predicts personalised hotel visits . biometric scanning could revolutionise the airport check-in process . underwater hotels will become mainstream and space holidaying possible . airbus has developed renderings of their panoramic planes of the future .\nsamantha giufre , 19 , endured the horrific attack last september . was dragged behind a car and left in a gutter in casula , south-west sydney . ms giufre spent months in hospital and now has permanent injuries . has lost vision in one eye , hearing in one ear , and smell in one nostril . one man has been charged over the violent incident . police are still searching for others believed to be involved .\nuniversity of sheffield study found six different type of obese person . heavy drinking males , young healthy females , affluent elderly , physically sick elderly , unhappy middle-aged and those with the poorest health . hope their findings will help doctors create tailor-made treatments . heavy drinking males . young healthy females . the affluent and healthy elderly . the physically sick but happy elderly . the unhappy and anxious middle-aged . those with the poorest health .\nfootage show 27-year-old jared henry being knocked off his board to the ground while the deer spins on its stomach into the ditch . the pro-sportsman was shooting a video for the fayettechill outdoor clothing brand before the freak accident took place .\nhungarian national evelin mezei , 12 , has been found safe and well . she had gone missing from the stratford area in london last night . evelin had been seen on cctv footage with an unknown man .\nshannon hayes spotted the tiny egg at her home in carmarthenshire . she rescued it fearing it was going to be crushed by the regular eggs . the 12-year-old measured the egg and discovered it was just 1.9 cm long . it is believed the previous record holder was a 2.1 cm egg laid in somerset .\ndanny garcia is set to face lamont peterson in las vegas on saturday . the unbeaten light welterweight champion defeated amir khan in 2012 . the us fighter revealed he always stays on his feet because of an extra toe .\nsuchet , 71 , said his marriage to his bonnie had been ` made in heaven ' had been open about bonnie 's dementia and even wrote a book about it . she died ` peacefully ' on april 15 , according to a notice in a newspaper .\npope 's sedentary lifestyle said to be aggravating nerve condition . francis is said to have piled weight on since taking papacy . he has suggested he does not expect to live to a very old age .\nthe 26-year-old victoria 's secret angel is max factor 's latest face . campaign celebrates max factor 's former allegiance with marilyn monroe . the make-up brand is credited with transforming her look in the 30s .\ndaniel williams ' video shows a every aspect of a day in the life of an office worker . the 90 second clip has been viewed three million times on youtube . gopros are often used by adrenaline junkies to capture once-in-a-lifetime experiences .\npaul merson had questioned england selection of andros townsend . tottenham winger scored equaliser in tuesday 's 1-1 draw with italy . merson admitted townsend had proved him wrong with ` great goal ' .\njessica bialek found ` safe and well ' after vanishing 36 hours earlier . ms bialek was last seen leaving her home at 8.30 am on wednesday . she was walking to the bank in coogee , south-eastern sydney . police are concerned for her welfare and have launched an investigation . ms bialek 's husband has pleaded for help in finding his wife . on thursday her father made a plea for her to contact family . the mother-of-one is an accomplished arts photographer .\napril 20 marks 5 years since the bp oil spill . at the time , there were dire predictions for the environment . today , it is still too soon to know the long-term impact .\njody marson is prison guard who had alleged affair with kieran loveridge . ms marson is from port macquarie on new south wales ' mid-north coast . the 30-year-old was suspended when alleged relationship was discovered . ms marson is a fitness enthusiastic who competes in ironwoman events . loveridge is serving 12 years for killing thomas king in sydney in 2012 . he was moved to goulburn supermax prison when he assaulted an inmate .\nbarry wilmore and terry virts captured the footage on spacewalks . the astronauts were carrying out repair work on the space station . video captures incredibly clear images of the earth from 250 miles . spacewalks were in preparation for commercial spacecraft arrival .\ntracey says there are certain things that give away a heart-breaker . she lists the six behavioural traits that will give him away . tracey says that honesty and maturity are signs of a keeper .\ntammy abraham opened the scoring for chelsea with a fine strike with just seven minutes of the game played . but , chelsea 's lead did n't last long as the hosts levelled the scores two minutes later via isaac buckley . some poor defending from manchester city allowed abraham to grab an acrobatic second to restore their lead . chelsea wrapped up the win in the closing stages when dominic solanke broke free and slotted an effort home .\nrickie lambert is likely to miss out when liverpool play arsenal . rickie fowler has been urged to develop a nasty streak at augusta . phil jones - can louis van gaal find his perfect position ? roberto mancini has a huge italian job on his hands at inter milan . but he probably enjoyed coverage of the cricket world cup in the paper .\ncitizens gather to honor victims on one boston day , two years after the marathon bombings . `` today will always be a little emotional for me , '' one bostonian tells cnn .\nraheem sterling is currently earning less than half mario balotelli 's salary . even signing new # 100,000-a-week deal would only take him to parity . liverpool boss brendan rodgers has insisted sterling will put pen to paper . but he has assumed he 'll stay at liverpool when he has other ambitions . sterling should be playing in the champions league . and liverpool , seven points off fourth place , may not be able to offer that . adrian durham : arsenal only turn it on when the pressure is off . durham : rooney and carrick are man utd 's only players with the ` football intelligence ' demanded by louis van gaal . click here for all the latest liverpool news . raheem sterling is a very good player . he 's been performing at a high level consistently for two seasons . if a club is prepared to pay # 50m he would play regularly for them . there would be no shortage of clubs wanting to sign him -- real madrid have already said they are monitoring his situation . rodgers says they wo n't sell this summer , but it 's more bluster i 'm afraid . common sense dictates they ca n't afford to let his contract run down to its final year . the situation needs to be addressed . sterling wants to play champions league football . what 's so wrong with that ?\nprecious richard coleman turned herself in to police saturday after running down beatrice ` dee dee ' spence and her uncle . coleman believed spence was going after her boyfriend , family members say . spence had her leg amputated after the hit and run , and the home caught fire while spence 's mother danika accompanied her daughter to the hospital . coleman is being held on $ 750,000 on attempted murder charges .\ndefender darryl westlake fired kilmarnock ahead in the 50th minute . midfielder kris commons levelled for the home side eight minutes later . sub leigh griffiths netted three goals in a remarkable 19-minute spell . celtic moved eight points clear at the top of the scottish premiership .\nmanchester city defeated west ham 2-0 in their premier league clash . david silva was taken to hospital after a challenge by chiekhou kouyate . spain international has allayed fans ' fears with a twitter message .\nmexican prosecutors are looking into possible criminal conduct . alondra luna nunez was flown to texas on april 16 after a judge ruled in favor of a houston woman who believed alondra was her daughter . dna testing in texas showed that she was not dorotea garcia 's daughter . the 14-year-old was returned to her family in mexico on wednesday . alondra 's case drew international attention after a video of her being forced into a police vehicle last week appeared online .\nbobby and stephanie separated three weeks ago after 10 years of marriage . on friday the 50-year-old food network star filed for divorce . his actress spouse is said to be not happy with the prenup in place . they have no children and are ` fighting over property ' it was also claimed she questioned him about romancing january jones .\none of the images posted on the disciples of the new dawn facebook page has been shared nearly 80,000 times since it was posted on sunday . while it is unclear if the group is genuine - or a satire - its messages have prompted thousands of women to share their own c-section stories . others are committing their support to past petitions to have the community 's page removed from facebook .\nclarence house has released a new photo to mark 10th anniversary . the snap was taken last month at the couple 's scottish home , birkhall . camilla parker-bowles became the duchess of cornwall a decade ago . since then , she has become an increasingly popular figure . camilla also enjoys a close relationship with the queen and her stepsons .\ntom ryan , 40 , had one leg ripped off and the other left hanging by a thread . onlookers used shirt as a tourniquet in desperate bid to stop the bleeding . witness : ` tom was screaming . one leg was laying next to him under truck '\nroberto martinez unconcerned by romelu lukaku 's link with mino raiola . raiola has been involved in transfer deals worth over # 400million . martinez backs ross barkley to learn from his difficult season .\njustice dept. sent 7-page letter to house speaker john boehner explaining why the former irs official was allowed to plead the fifth amendment . federal prosecutor in charge of the case sent his decision to capitol hill on the last day before his own resignation took effect . lerner offered a self-serving opening statement during a 2013 hearing , but refused to take questions even though she was under subpoena . hearing focused on the irs 's habit of targeting conservative groups with special scrutiny based on words like ` patriots ' or ` tea party ' in their names . the doj says she ca n't be prosecuted for defying the subpoena ` because she made only general claims of innocence ' and offered few details .\naustralian-born royal placed a wreath at a memorial in copenhagen . anzac day appearance came days after tv interview discussing loneliness . mary said she felt alone and misunderstood after losing her mother at 25 .\naustralian families will consume 124.3 million chocolate treats this easter . some of the quirkiest desserts on sale include a $ 275 chocolate bunny and a ` topiary tree ' made up of 85 solid chocolate eggs . most expensive treat in the world is a $ 64k bunny with diamond eyes in uk .\nlocal media reports of airbus a320 making a tailstrike on landing . plane left facing the wrong way after spinning 180 degrees . airport has been closed as investigators and emergency services attend .\nadam mcburney 's home targeted by gunman who fired through windows . young irish rugby star was not at county antrim property during attack . at least 12 bullet holes counted at scene of home he shares with brother . mcburney deemed bright prospect for irish rugby and plays for under-20s .\ndespite having several tattoos while in the marines , sgt. daniel knapp has been denied re-enlistment because of his ink . after leaving he got a pair of crossed rifles and 0311 designation for marine riflemen on his forearm . the tattoo contravenes the organization 's strict policy concerning size and placement . ` my tattoos never stopped me from shooting anyone , ' said knapp of jacksonville , north carolina . he is now considering joining the army which has less stringent rules about body ink .\nkarim benzema has scored 20 goals in all competitions this season . real madrid face granada in a crucial la liga clash on sunday . benzema is targeting a ballon d'or award in the near future .\nqueen victoria 's holiday residence was osborne house on the isle of wight . but her journeys there involved train and ferry ride and then another train ride to a station more than two miles from the property . in 1875 , a station was built at whippingham just to serve royal residence . building is now a five-bedroom home , currently on the market for # 625,000 .\nthe queen was pictured on her annual visit to newbury 's opening . her richard hannon-trained two-year-old ring of truth went close to a win . the 7-1 shot was making her debut in the al basti equiworld maiden stakes .\nwigan secured their first away win of the super league season . joe burgess scored three of the warriors ' seven tries . wigan climb above st helens into second place , at least for 24 hours .\nman set to walk free from jail just three years after caught drink-driving . raymond laing jailed after caught three times over the legal limit . he had been convicted for drink-driving 26 times before arrest in 2012 . laing told parole board he is ` high risk ' and a ` danger ' to drivers .\nlazio will play juventus in the coppa italia final after defeating napoli 2-1 agg at the stadio san paolo . substitute senad lulic came on to prod home felipe anderson 's low cross for the winner . former liverpool manager rafa benitez is under mounting pressure as the holders crashed out .\nfreddie gray was arrested on a weapons charge april 12 ; he was dead seven days later . he was put in a police van after his arrest ; it 's unclear what happened inside the van . gray has a criminal history but it 's not known if that had anything to do with his arrest or death .\nnrl head of football todd greenberg said the match review committee would ` look very closely at ' the canterbury forwards ' behaviour . graham argued with referee gerard sutton for awarding souths a penalty . klemmer was sin-binned for yelling ` you 're off your f **** ing face , ' at the ref . both could have could have contrary conduct and detrimental conduct charges referred straight to the nrl judiciary . highest charge carries 525-demerit point penalty and five-game ban . it comes as nrl heads slam spectators who threw bottles at referees . police have not laid charges , but two men have had their details taken .\na british passport allows for visa-free access to 174 countries . that is tied for the most , with finland , germany , sweden and the us . uk passport was 10th most expensive of 51 countries included in study . the uae , china , russia and czech republic all pay less than the uk .\nstunning beauty , 24 , was bullied throughout school for her striking looks . new face of maybelline new york and first black model to walk for prada . she talks about caring for her son , riley , five , who has sickle cell anaemia .\ncapitol police said a male shot himself as shocked onlookers watched . the incident appears to have no connection to terrorism , police said .\njack grealish impressed as aston villa beat liverpool 2-1 on sunday . grealish is a republic of ireland youth player and has met martin o'neill . england are monitoring his progress and hope to persuade him .\naston villa have held talks over cordoba striker florin andone . the premier league club could sign the striker for as little as # 2.5 million . cordoba are poised for la liga relegation and need to raise funds .\nresearchers in tokyo placed rats in a cage with three compartments . one room showed photos of rats in pain , and another with neutral faces . rats spent more time in the ` neutral ' room suggesting they recognise fear . experts believe facial expressions are used to communicate with others .\nthomas hoey jr. , 43 , was sentenced to 12.5 years wednesday on charges of conspiracy to distribute cocaine , perjury and obstruction of justice . plead guilty in august that he ` refused to call for help ' in 2009 when sex partner kimberly caho , 41 , began seizing from snorting his coke . the mother-of-two died from a lethal mix of cocaine and alcohol . hoey continued supplying cocaine to friends at wild parties after her death . hoey also admitted he coerced his other sex partner that night , nicole zobkiw , into lying about what happened to a grand jury . ` cocaine distribution was integral to his lifestyle of sex and parties , ' judge said . hoey ` used his wealth to fund a life in which his own pleasure was at the center '\nirish travellers have refused to budge from site in hardhorn , lancashire . last october , the group were told to move out by the court of appeal . they took case to supreme court arguing eviction ` violated ' human rights of 39 children living on the site . locals say they have suffered due to ` neighbours from hell ' for five years .\npunters reacted with amusement and fury to future festival cancellation . many people were genuinely upset over the announcement - blaming the festival organisers for spending too much on drake and avicii . but others were quick to make fun of future festival goers on social media . organisers said the festival ` does n't make financial sense anymore '\nnyia parler , 41 , allegedly left her 21-year-old son in woods on monday and traveled to maryland where she was taken into custody early sunday . her son was found under rain-soaked pile of leaves on friday night and police say he would have died if passers-by had n't spotted him . he was lying on the ground 10 feet from his wheelchair and a bible .\nwisconsin police arrested private investigator dwayne powell in 2013 who claimed he was hired by church of scientology to spy on ron miscavige . david miscavige 's 79-year-old father had left the church a couple of years ago . powell reportedly told police his job was to track miscavige 's movements , read his emails and listen in on his conversations . david miscavige allegedly prohibited the private investigator from helping his father during a medical emergency . church of scientology and david miscavige 's attorneys vehemently denied powell 's claims .\nsinger was partying with pals at coachella music and arts festival over the weekend . video posted on instagram appears to show the singer preparing a suspicious substance and then holding her nose . speculation has been rife as to what exactly is going on in the video . a comment on instagram , believed to be from rihanna , claims it was a joint . this is not the first time rihanna has found herself mired in controversy at coachella . in 2012 she posted a picture of herself ` cutting up ' a white powered substance on the top of a man 's head .\nfrench league president frederic thiriez did not shake players hands ahead of the league cup final . bastia lost 4-0 to psg thanks to zlatan ibrahimovic and edinson cavani . in 2012 , thiriez did not hand bastia their ligue 2 champions ' trophy . saturday 's win led the parisian club to lift their fifth league cup trophy .\nshrinking florida everglades is proof positive climate change is real and is threatening america 's ` national treasures , ' president said today . obama also took a half - hour walking tour of the the anhinga trail at the 1.5-million-acre national park before giving his speech and heading home . ' i ca n't think of a better way to spend earth day than in one of our nation 's greatest natural treasures , the everglades , ' he said , calling the swamp , which he acknowledged is not technically a swamp , ` magical ' day trip , on which obama was accompanied by bill nye ` the science guy ' also highlighted massive amount of fuel it takes to power air force one - 9,000 gallons for today 's flights alone .\njason mcdonald has over 10 years of experience as an alligator handler . walked slackline over pool of 50 reptiles as new way to interact with them . crematory manager volunteers part time at the ` gator farm ' in colorado . footage shows him precariously balancing on rope as reptiles watch .\ncadbury 's freddo frogs have decreased from 15g to 12g . the recommended retail price of the iconic aussie treat will stay the same . comes after cadbury shrunk its family size block by 9 per cent . last year nestle sliced its killer pythons in half from 47g to 24g . the size of the size of smarties ` fun size ' boxes also shrunk by 20 per cent .\njenrry mejia suspended for 80 new york mets games without pay . mejia tested positive for banned substance stanozolol . 25-year-old right hander will not be able to play again until at least july .\nscientists at haverford college in pennsylvania made the finding . they spotted x-ray emissions consistent with thousands of white dwarfs . these are stars left behind after larger ones use up their fuel . but why thousands of these stars are there remains a mystery .\nreal madrid drew 0-0 at atletico in champions league quarter-final first leg . superstars cristiano ronaldo and gareth bale both started for real . ronaldo was kept quiet and bale , though impressive , missed best chance .\nconservative leader was speaking from autocue at croydon election event . but tory party confirmed it was an ` off the cuff ' remark not in his speech . got the wrong claret and blue side despite being a villa fan since his teens . said in his defence : ` these things can happen when you are on the stump ' .\nthe mother of north charleston police officer michael slager is speaking out as her son is behind bars for the the shooting death of walter scott . karen sharpe defended her son , saying she could not imagine him ever murdering someone and that he loved being a police officer . she also revealed that slager 's pregnant wife is devastated about what has happened as she is set to give birth next month . sharpe said she has not watched the video of the shooting or read any news reports or watched any news coverage of the incident . she also expressed sympathy for the scott family , noting this event has caused them both to ` change forever ' slager has not entered a plea to the murder charge nor commented publicly on the killing .\nbowie , 68 , starred as an alien enamored by tv and alcohol in the 1976 film . he has written new songs and arranged older music for 2015 production . the musician is not expected to perform in the show late this year . bowie did not write the music for the original amid contractual dispute .\nroberto carlos has picked his champions league dream team . the brazilian won the competition three times with real madrid . carlos opts for a number of former team-mates including zinedine zidane . his compatriots ronaldo , cafu and ronaldinho also make the cut . carlos also decides to pick himself because of his free-kick prowess .\nratinho was playing for remo in the brazilian cup on thursday night . remo salvaged a late draw against atletico pr . igor joao struck in the 76th minute for remo .\nthe finnish military has dropped depth charges on a possible submarine . its navy twice detected a foreign object within helsinki territorial waters . the charges released were warning shots , about the size of hand grenades . experts believe the object is likely to have been a russian submarine .\nmedics say the driver was fortunate to still be alive given severity of crash . his jeans were left on the underside of the car in southam , warwickshire . firefighters spent 25 minutes trying to free the man trapped under the car . the man , who was thought to be in his 20s , was then air lifted to hospital .\nrodney stover , 48 , a convicted sex offender lived in a shelter group of convicted pedophiles and rapists . the dilapidated bellevue men 's shelter is located just one block from the k through 12 churchill school for learning-disabled children . three of the residents in the shelter are convicted rapists and four of them were pedophiles with male and female victims as young as six . stover was arraigned on thursday and is accused of raping a woman in a manhattan bar . stover was convicted in 1992 for raping and sodomizing a woman he did not know and was released from prison on valentine 's day of this year .\njon reiter was attempting his first climb to the summit at the time . survived the avalanche but then helped to distribute medicine to the hurt . managed to contact his wife susan by satellite phone in the aftermath . three americans who were on the mountain at the time were killed . they were among 18 mountaineers and many sherpas who perished .\nsophia , the daughter of a lesbian , explains how two mothers are able to have a baby . video was posted on a lifestyle website for lesbian moms , gay dads , single parents and adoptive families . the first-grader also put together a series of illustrations to accompany the clip .\nsky allegedly withdrew their title sponsorship of under 16 tournament . bt sport are to broadcast inaugural european games in baku in june . brazilian legend pele is due in london on thursday for an art exhibition .\nwest ham are keen on concluding a deal for 17-year-old deshane beckford . jamaican starlet beckford has been linked with a host of european clubs . read our exclusive : west ham season tickets to cost as little as # 289 .\nsouth africa marks 21 years since the first free election . nation celebrates amid recent violent attack on immigrants .\nthe daredevil , 52 , ` was speeding in an suv when he rear-ended a car and set off a chain-reaction crash involving two other vehicles on tuesday ' he fled but police caught up with him and ` noticed he smelled of alcohol ' the crash took place in butte , montana - the town his daredevil father evel knievel helped make famous .\nmanuel delisle , the man accused of the road rage incident involving a chainsaw , has pleaded not guilty to armed assault on tuesday . karine cyr recorded the confrontation on sunday as she was vacationing with her husband alexandre hermenier and their two children . the family followed delisle because he was driving erratically and when they reached a dead end , delisle allegedly threatened them .\nfootage has emerged of i was only 19 being played at an anti-islam rally . former redgum frontman john schumann condemned the use of his song . he said he was ` disappointed ' to see it used by reclaim australia members . singer said the song was about compassion , tolerance and inclusiveness .\nsabrina rubin erdely wrote ' a rape on campus ' which was published in rolling stone in november . the story focuses on a university of virginia student named jackie who claims to have been gang raped by seven men two years ago . soon after it was published , jackie 's story came under questioning and rolling stone was forced to issue an apology . the columbia journalism school has been conducting an independent review of what went wrong in erdely 's reporting . they will publish their findings sunday night at 8pm . sources tell cnn that erdely will issue an apologetic statement after the review is published .\npilot program allows students at one of sydney 's most prestigious schools to bypass the higher school certificate and attend sydney university . successful completion of the 17-week guarantees scot 's college students a place in a number of undergraduate courses , including law . state education minister adrian piccoli has called this shortcut ` unfair ' . tuition , sporting and curriculum-related fees at the college reportedly topped $ 30,000 per year in 2013 . opposition minister luke foley concerned this will impact success of hsc . ` education should be open to all , not just those who can afford it , ' national union of students spokeswoman tells daily mail australia .\nan unnamed wall street trader made a profit of approximately $ 2.5 million on friday thanks to a tweet from the wall street journal . the trader purchased 315,800 shares of chipmaker altera one minute after the journal reported intel was in talks to purchase them . the shares were sold to the trader at $ 36 , and just 28 minutes later , when the market closed , shares were selling for $ 44.39 . intel 's reported purchase of altera still has yet to happen , and the news has actually caused the price of intel shares to fall .\nkolo toure admitted that steven gerrard was sad after the fa cup defeat . liverpool were beaten 2-1 by aston villa at wembley stadium on sunday . toure says the team are more disappointed to not win a trophy for the fans . click here for all the latest liverpool news .\nsuzi cinalli , a massage therapist , shares her top tips to stay alert at work . from cooing over cute pet pictures to a lunchtime yoga session and snacking on pumpkin seeds , discover how to boost your concentration .\nleft back posted screenshot of text message conversation on instagram . in it , his mum thanks 22-year-old for wiping ` all my debt away ' the ipswich defender drew praise from his followers for generosity . mings gave tickets to a ` skint ' ipswich supporter back in 2013 . and he bought shirts for two fans in 2014 after his number was changed .\nmost americans identify as ` middle class ' whether they earn $ 20k or $ 250k . new study calculates how much middle class citizens earn in each state . highest paid middle class is in maryland , alaska , new jersey , hawaii , dc . lowest paid is in mississippi , arkansas , west virginia , alabama , kentucky .\nruth ben-ghiat : italy 's colonial past plays a key role in the migrant humanitarian disaster in the mediterranean . she says african migrants still bound to histories of exploitation that shaped their home countries long after end of italian rule .\npeople who snore are more likely to experience an early decline in memory . those with sleep apnoea saw a mental decline more than a decade earlier . sleep apnoea is where the throat narrows in sleep , interrupting breathing . onset of alzheimer 's might be accelerated for people with sleep problems .\nleeds rhinos issued statement outlining zak hardaker 's punishment . hardaker has been sent on an anger management course by the club . student suffered two black eyes and bruised neck in incident at flats . no-one has been charged , but other leeds players have been disciplined .\nexperts have discovered a flaw in older versions of the android system . once a hacker has access to a phone they can monitor data from sensors . from this , they can potentially intercept a fingerprint from the scanner . vulnerability has been tested and confirmed on the samsung galaxy s5 .\nwinston reid signed six-and-a-half-year deal with west ham last month . new zealand defender believes he can fulfil all his ambitions at hammers . west ham set to move to the olympic stadium in 2016/17 .\nmore than 1,700 students were spotted taking an exam in an open-air playground at a chinese high school . grade one pupils at school in yichuan , shaanxi province could not all fit inside the building to take exam . yichuan senior high school officials said sitting exam outside would test the students ' organizing capacity .\nabbott government are actively trying to stop parents who do n't immunise their children from accessing rebates . only parents who immunise their children are eligible to access welfare payments and childcare subsidies . however a loophole currently allows parents who do not vaccinate their children from accessing the funds . conscientious objectors are people who oppose vaccinations for personal or philosophical reasons despite knowing the risks . scott morrison confirms the government wants to take a more hard-line approach in the interest of the health and safety of australian children .\noskar gröning is on trial over his alleged role in deaths at auschwitz . lawrence douglas : other mass atrocities still await moment of moral reckoning .\nuruma takezawa , a japanese photographer , has just won the third annual nikkei national geographic photo prize . formerly a marine photographer , takezawa 's latest project documents those who live off the land in harmony . he embarked on a round-the-world photography trip in march 2010 , which took him to all corners of the world .\nkaitlyn granado , 24 , first arrested march 19 for relationship with boy , 15 . admitting kissing and letting him touch her and was released on bail . officers quizzed another 15-year-old on march 24 over second relationship . granado arrested again amid claims she had sex with second boy in car .\nashleigh sokie was asked to wash one direction 's niall horan 's clothes . niall had been staying at a house in augusta for the us open and the washing machine there broke , so miss sokie was asked to help out . she washed clothes and took picture of herself wearing horan 's polo top . miss sokie also claims to have kept horan 's boxer shorts for herself .\nhigh-profile bankruptcies include warren sapp , vince young and michael vick - all of whom earned tens of millions of dollars . 15.7 percent of players go bankrupt within 12 years of leaving the league , researchers from cal-tech , washington and george washington found . average player earns $ 3.2 million over the course of a career . bankruptcy rates are the same of the rest of americans .\ncell phone footage shows the complaint about an unsatisfactory milkshake served at a louisiana branch of burger king . the discussion quickly turns ugly when the employee starts cursing before getting physical with the unhappy customer . ` you wan na get slapped ? ' the employee repeatedly asks the customer while standing next to her in an intimidating manner . burger king has released a statement apologizing for the employee 's behavior and confirming that she has been fired as a consequence .\nliverpool manager brendan rodgers has been found guilty of ignoring a notice to improve a property he co-owns in accrington , lancashire . house had broken windows and doors with rubbish strewn across a yard . the terrace property was left derelict by the owners for three years . liverpool manager suffered defeat by aston villa in the fa cup on sunday .\nfour manchester city stars pull on the gloves for spring derby showdown . no manchester united players chose to take such drastic measures . united defeated city 4-2 at old trafford despite going a goal down early on .\nhillary clinton could be helped by an improving climate for women in politics . republicans hope the gender play backfires and that voters are fatigued by identity politics . the emphasis on women as a possible campaign theme is a reversal of her 2008 strategy .\nharris family attorney says volunteer deputy was a donor who paid to play a cop . an attorney representing reserve deputy robert bates says it was an `` excusable homicide '' eric harris ' brother says the shooting was `` simply evil , '' accuses investigators of trying to cover it up .\nsamuel eto'o laid on chance for roberto soriano opener for sampdoria . a deflected overhead kick from nigel de jong levelled for ac milan . fans continued protests against the running of the club in the stands .\neach year 300,000 people visit salzburg to visit magical filming locations . the first tours started shortly after the film debuted 50 years ago . buses emblazoned with the sound of music circle the city every day .\nfather wanted an aussie to record a message from tooth fairy to his son . jacob hall , from iowa in the u.s. , made a call for help on website reddit . victoria 's jeff pyrotek made a 20-second message as ` bruce ' the tooth fairy . mr pyrotek , who is a father-of-three , said he wanted to make the boy 's day . so far , mr hall 's message has attracted more than 100 comments on reddit . mr hall said his son , evan , believed the tooth fairy was from australia . he explained last time evan , 7 , lost a tooth the fictional creature was late . so mr hall told him this happened because the fairy was from down under .\nlena , 28 , penned ` why i 'm on team weirdo for life ' for the may issue of seventeen magazine . the girls star revealed that she never wanted to be normal while in high school , no matter what her peers thought of her . she explains that being unique and individual is what has helped her to achieve so much success .\neden hazard will start for chelsea against stoke city on saturday . belgium midfielder is ` tired ' following the international break . diego costa has recovered from hamstring injury , confirms mourinho . but the blues top scorer may not be ready to start premier league clash . still a four-horse race for the title , according to the chelsea manager .\na europe-wide survey of 19,000 people revealed that the more a country paid to the unemployed , the more likely its residents were to want a job . norway pays the highest benefits and almost 80 % of people wanted a job . by contrast in estonia , one of least generous , only around 40 per cent did .\nlondon mayor claims labour would embark on ` orgy of state socialism ' accused miliband of being ` hostile ' to people who wanted to own a home . swamped by demands for selfies at conservative launch in london .\nsteven carl day 's confession over drinks that he molested young girls led to his murder , robert mccombs , the roommate of the alleged murder testified . mccombs said that when day confessed to he and his former roommate roger musick that musick said he wanted to kill day . mccombs claims that musick strangled day to death and that the two of him dumped his body and then hid the evidence . mccombs was released from prison in early march for tampering with evidence in day 's death but musick will stand trial for day 's murder .\naston martin db4 series iii will cost up to # 350,000 to restore but could then be worth as much as # 750,000 . attractive prospect for many car enthusiasts by offering rare chance to restore virtually-untouched db4 . 1,100 db4 series iii cars made from 1958 to 1963 - and this one will be auctioned in buckinghamshire . engine was stripped , fully rebuilt and new chassis fitted in 1983 - but it has hardly been touched since .\nkimi raikkonen finished ahead of ferrari team-mate sebastian vettel . british driver and formula one champion lewis hamilton finished 16th . jenson button stalled his car right at start of the practice session .\nfrench stylist nathalie croquet stepped in front of the lens for pic project . she recreated spoof ads for brands such as givenchy , lancome & lanvin . the series of 11 pictures were shot by photographer daniel schweizer .\nfan favorite series `` arrested development '' to return for a fifth season , according to producer . brian grazer claimed the show would be back in a podcast . netflix is not commenting .\ndan kennedy : after boston marathon bombing guilty verdict , now real trial -- the sentencing -- can begin . what justice should tsarnaev get ? he says a plea might have been better , to keep bomber out of the news and let him fade into obscurity in maximum security cell . kennedy : the people who deserve to be remembered are victims and mit officer who was killed .\nnumber of foreign fighters worldwide soared by 71 % from mid-2014 to now . syria and iraq were most popular regions - mainly for is and al-nusra front . united nations report said fighters came from over half world 's countries . it warned if is was defeated foreign fighters could scatter across the globe .\nfelix the cat was found two weeks after going missing in transit . much loved pet disappeared after escaping his plastic crate at jfk airport . owner jennifer stewart said the crate was badly damaged in transit . she is calling for better policies and procedures for the transport of pets . etihad said it is working with ground handlers and ` specialists ' to find felix .\nstefan johansen picked up two prizes at celtic 's award dinner . the midfielder has enjoyed a stunning first season at parkhead . celtic moved eight points clear of the spl with a 3-0 win over dundee . click here for all the latest celtic news .\nbojan krkic has picked his best premier league xi of the season . the stoke striker is currently battling back to fitness after a knee injury . bojan includes compatriots david de gea and santi cazorla . there is room for chelsea 's john terry and striker sergio aguero . bojan also opts for two of his stoke team-mates in his team .\nmarina lyons , 80 , took pet dog rosie for operation to remove her spleen . after successful surgery noticed dark bruising along the dog 's back . was told damage was from surgery , but took pet for a second opinion . second vet discovered burns , and had to operate to remove dead skin . warning graphic content .\nreal madrid and atletico madrid drew 0-0 in their champions league tie . arturo vidal scored the only goal as juventus beat monaco in italy . atletico keeper jan oblak was the main focus in the spanish papers . oblak produced an impressive display in the game at the vicente calderon . vidal 's goal also provoked a strong reaction in the italian newspapers .\ngertrude weaver , 116 , of camden , arkansas , became the world 's oldest person on wednesday following the death of a lady in japan . she attributes her longevity to treating others well and exercising three times a week in her wheelchair . gertrude would like to meet the president at her birthday party on 4 july because she has voted for him twice . she was born in arkansas near the texas border in 1898 and worked as a domestic helper .\nfelipe massa says he is performing as good as he was in 2008 . the brazilian challenged for the title seven years ago but finished 2nd . massa has enjoyed a storming start to the new formula one season . the williams driver sits 4th in the championship standings with 30 points .\nlet toys be toys highlighted some of today 's ` sexist ' toys . started hashtag #notanaprilfools on april 1 sharing pictures online . toys include cookery books with separate foods for boys and girls . babygro for girls reads ' i hate my thighs ' - the boys ' one says ` i 'm super ' .\na texas a&m galveston professor said in an email to students he would fail the entire class . university officials wo n't necessarily stand by failing grades , cnn affiliate kprc reports .\ndefeat by everton showed that manchester united have a long way to go . daley blind is a poverty-stricken pauper 's version of michael carrick . united should bring in sven bender and ilkay gundogan in midfield . playmaker henrikh mkhitaryan would also improve louis van gaal 's side . read more : brendan rodgers is ruining rickie lambert 's career . read more : mesut ozil is in danger of becoming an arsenal flop .\nfor those who were n't disconnected , only 40percent actually got through . many of those people had to wait on hold for more than 30 minutes , irs commissioner john koskinen said wednesday . he blamed budget cuts approved by congress for the phone problems . the agency 's budget has been cut by $ 1.2 billion since 2010 .\nrangers are currently second in the championship with three games to go . finishing third would mean playing two extra play-off matches vs fourth . but manager stuart mccall is relaxed about the prospect of finishing third .\njohn barnes appeared as a guest on sky 's a league of their own show . the 51-year-old rapped 1979 classic rapper 's delight as part of a sketch . barnes ' ex-liverpool team-mate jamie redknapp joins in halfway through . barnes featured on anfield rap and world in motion in the past .\nstudy of 1,302 couples found working men do two hours of chores a day . but once they retired , men upped their housework hours to to 3.9 a day . women 's chores went from 6.8 hours a day to 6.1 a day after retirement . the study , carried out in germany , .\nthree-month old baby alice died of unknown causes and was found with roach bites on her legs and head . brittany bell , 27 , found the lifeless infant and was worried one of her twins might be responsible after she fell asleep while watching a movie with them . as no cause of death was determined authorities could not pursue a homicide charge . bell has a history of leaving her young children unattended , prompting neighbors to call the police on a previous occasion . the twins have been taken into care and bell faces a may 8 hearing .\nal-qaeda linked networks have altered tactics since snowden stole files . he stole intelligence files from gchq and us national security agency . he fled justice in us to hong kong , then russia where granted asylum .\nlane smith died after falling and hitting his head in july 2014 - just a few weeks before his girlfriend , sierra sharry , gave birth to their son , taos . when taos turned six-months-old , sharry asked a local photographer , kayli henley , to make their family complete . the photographer added an image of smith to one of their photos . ` this is how i picture us , ' sharry said . ` taos and i living our lives the best we can with lane always watching over our shoulder ' the image has been shared thousands of times online and henley has been inundated with similar requests from other people .\nlily james , the british star of the upcoming cinderella film , has traveled the world promoting the disney fairy tale . downton abbey star 's 20 stunning outfits included # 70,000 silk gown by christian dior and even a # 40,000 necklace . attended premieres in mexico , canada , london and tokyo - where she revealed her most ` disney princess ' look .\ntory dan poulter , lib dem tom brake and labour 's gavin shuker get fit . three agreed to put themselves at the mercy of a personal trainer . strict diet and exercise regime saw them shed pounds and gain strength . full interview appears in the may 2015 issue of men 's health , on sale thursday 2 april . also available as a digital edition .\nchase lacasse , 19 , of new hampshire , arrested for impersonating police . teenager posted images of himself as officer on instagram , owned gun . customer at king kone thought the costume was an april fools ' joke .\ndevastated fiance of late ` wellness warrior ' jessica ainscough writes touching tribute to followers . ainscough , 30 , died in february following a lengthy fight with a rare and aggressive form of cancer . she advocated treating cancer with a vegan diet and coffee enemas . partner tallon pamenter , who she was to marry this year , said : ` my heart is in a million pieces ' ` this year has stripped me from the one thing that brought magic to every aspect of my life ' mr pamenter also revealed she underwent radiation in her final weeks .\nmanchester united and chelsea to take part in summer tournament . psg and barcelona also set to play in international champions cup . details to be revealed during press conference in new york on april 28 . united won the icc last year after a 3-1 final victory against liverpool . the tournament is set to be played between july 11 and august 5 . steven gerrard could also feature for la galaxy in north america .\na new national survey analysed the travel habits of australian parents . the study revealed one in five nsw families sedate their kids on long trips . the drug commonly used is known to cause breathing difficulties in kids . the medical community said the practice is dangerous for children .\nthe retail scene is changing too with macy 's due to open soon . an opera house is being built in the lagoons area . several trendy art galleries have appeared .\nander herrera fired man united to victory with double against aston villa . the spaniard put in a man-of-the-match display at old trafford . herrera struggled for games between october and february . however he now appears to be an integral member of united 's squad .\nofficials say the investigation originated from intercepted chatter . possible threat focused on parts of california , one says .\nfour of bobby robson 's 1996 squad are still in the champions league . psg boss laurent blanc faces barcelona manager luis enrique . bayern munich boss pep guardiola takes on julen lopetegui 's porto side .\nitv 's britain 's got talent is returning on saturday for its ninth series . teacher 's say kids have bunked off school in the past to attend auditions . so for first time ever producers are holding auditions at dozens of schools . move has helped reduce unauthorised absence levels in several schools .\nhuge inflatable nicknamed ba di has been placed at a commercial complex . doll features a slide , ball pit and a sex education area for children to visit . inflatable woman is entered through the right heel and exited via the left .\ntodd larson , 55 , of taylorsville , utah claims delta a1 aircraft flew over his home dropping ice chunk smashing his dodge challenger 's windshield . he paid $ 4,000 in repairs and wants the airline to ` admit its fault ' mr larson said faa did an investigation and found that at the time of the incident an aircraft matched within two minutes that was overhead .\nenglish photographer john chapple has traveled all over the world - and along the way created stunning panoramic images using a film camera . chapple , originally from north devon , first worked as a news and show business photographer before he got into landscape photography . he has captured grassy fields in england , major us cities , and sandy beaches in australia . chapple often takes landscapes with a linhof technorama 617s iii camera .\nwarning : graphic content . the week-long festival marks the trial , crucifixion and resurrection of jesus christ culminating in easter sunday . the event has been met with awe-inspiring and shocking displays of faith from christians across five continents . in philippines , the week sees thousands of penitents beaten bloody on the streets as part of 13th century tradition .\nfood blogger van de ven wanted to poke fun at tourist cliche pictures . one of his finger missing the eiffel tower went viral on 4chan . over 100 uploads have photoshopped him touching the 301m tower tip . users created multiple memes of him in many various hilarious scenarios .\nfemale fans captivated by new breed of ` pretty but gritty ' male leads . aidan turner in poldark perfects the rugged costume drama look . other heartthrobs include kit harington in games of thrones , sam heughan in outlander and travis fimmel in vikings .\nrisks for cigar smokers of dying from cancer ` at least as bad as cigarettes ' claim follows us study , where cigar use is on rise and cigarettes a decline . cigar consumption doubled from 2000-2011 ; 33 per cent fall in cigarettes . more young people taking up cigars thanks to new range of flavoured ones .\nsaudi minister : `` if war 's drums are beaten , we are ready for them '' u.n. official : at least 182 killed in the past week , including civilians .\na four-month-old baby girl is in hospital with life-threatening injuries . a 20-year-old man 's car crashed into the bedroom of her geelong house . police say a car crashed through a fence and into the breakwater house after its driver apparently failed to negotiate a roundabout .\nthe true cross phenomenon begins with emperor constantine , the first roman emperor to convert to christianity . could fragments of a tree survive millennia ? or are they fragments of forgery that speak to our need to believe ?\nmarissa holcomb was held up in channelview , texas , on march 31 . robber held her at gunpoint and emptied $ 400 from the till . she was fired a day later after refusing to pay back the money . the store said she broke their policy by having so much cash in the till . holcomb is five months pregnant with her fourth child . the store have apologized and offered her job back , with $ 2,000 backpay . popeyes ceo cheryl bachelder asked the owner to ` rectify ' the issue .\nfour babies and two mothers died in oldham royal hospital maternity unit . another three babies and one mum also died at north manchester general . independent inspectors found failings in care and leadership of both . lisa parkisson , 35 , died at oldham 48 hours after giving birth in april . baby thomas beaty died from head injuries after botched delivery in june .\nmore than 1,800 deaths reported after nepal earthquake . rescue efforts range from digging by hand to military deployments .\namy hughes , 26 , broke the world record with her 53:53 challenge . the sports therapist from shropshire has raised # 30,000 for charity . now she 's found love with the man who helped her see it all through .\nsudan is the last hope for a species on the verge of being wiped out . rangers in kenya risking their lives to keep the 43-year-old rhino safe . but ivory is now fetching as much as # 47,000 per kilo as demand grows . animal sanctuary ol pejeta trying to raise money to help pay for guards .\nmagazine published a rape on campus in november 2014 issue . graphically recounted supposed gang-rape of university of virginia student . sabrina rubin erdely wrote article based on interviews with victim ` jackie ' she claims she was raped by seven men and penetrated with a beer bottle . jackie 's account soon fell apart , and rolling stone commissioned review . 12,000-word account published sunday , and recounted failures in depth . rounded on erdely and editors for not probing the account more deeply . erdely is expected to apologize - but will get to keep her job .\ns300 barely takes off before plunging back to the ground . minute-long clip shows people dashing for cover as rocket hits ground . mishap comes shortly after footage of crash killing missile engineers .\nbone from more than one human dates to the late mesolithic in 5,600 bc . it was recovered from a pit with charcoal remains , in landford , essex . evidence suggests ancient people respected and cremated their dead . it was previously thought that nomadic people simply abandoned them .\nfabian orellana was angered by sergio busquets ' time-wasting tactics . celta vigo striker threw lump of turf towards the barcelona star . barcelona needed a jeremy mathieu header to earn 1-0 win .\ndad barles charkley , based in maryland , shot the video . it shows his daughter watching disney 's 1994 hit for the first time . toddler visibly distraught when mufasa is killed and simba left fatherless .\ntake part in probably the world 's largest easter egg hunts in the maze at traquair castle . bottle feed lambs in wales . channel your inner ray mears at hadrian 's wall . watch fireworks to celebrate the 500th birthday of hampton court . watch medieval jousting at hedingham castle . tread the boards with the royal shakespeare theatre .\n50-foot whale washed up on pacifica state beach in california last week . it was sprayed with name of east bay rats motorcycle club at some point . it is unknown how the whale died and results of an autopsy are pending . witness said ` whoever did this , stinks more than whale 's rotting flesh '\nclarence david moore was serving a sentence for larceny when in june 1972 he escaped from north carolina prison . moore called sheriff 's office in frankfort , kentucky , monday admitting he was a fugitive . the 66-year-old outlaw suffers from many ailments but has n't been able to seek medical treatment because he does n't have social security card or id .\nbruce started hormone therapy and had plastic surgery to look more feminine in the late 1980s . he was inspired by the story of transgender tennis player renee richards who was born a man and in 1976 won the right to compete as a woman . olympic decathlete reveals he halted the gender transition process after meeting kris kardashian in late 1990 . bruce and kris married in april 1991 and had two daughters before their divorce last december .\nmonaco host juventus in the quarter-final second leg on wednesday night . the italians hold a slender 1-0 lead from the first leg in turin last week . the squad were put through their paces on tuesday ahead of the clash . dimitar berbatov is confident monaco can progress to the semi-final .\ngroup of vicars say coe schools should stop selecting pupils on faith . many christian schools give priority to those who regularly attend church . but vicars argue the system is open to abuse and oversubscribed schools may reject non-churchgoing families even though they may live nearby . clergymen said affluent parents were more likely to cheat the system by going to church just to get their children into a high-performing coe school .\nnigel farage says refugees into europe could lead to influx of extremists . ukip leader says it could provide a cover for jihadis wanting to do harm . he will make comments in a debate at the european parliament today .\ncarlos boente , 33 , was serving time in prison for harassment-type offences . he began contacting the victim after receiving her number from a cellmate . she spoke to him out of sympathy , but the messages turned threatening . he started telling her she was going to die and threatening her child .\nlib dem leader claims there is a real prospect of a tory-ukip alliance . comes after ukip said tories should vote tactically where they ca n't win . mr farage dropped demand tories ditch cameron before post election deal . ukip said he 's held informal talks with tories about post election deal .\nstand-up routine on the tonight show on thursday branded ' a bomb ' . singer said she was a ` closet comedian ' always wanted to do stand-up . her jokes were about dating younger men and her art collection . ' i crack myself up , ' she said at one point .\nchelsea are six points clear with a game in hand in the premier league . they have led the title race since a brilliant start to the season in august . cesar azpilicueta feels that consistency puts them in pole position to win .\ndeal between iran and six world powers has given iranians hope , writes ghanbar naderi . lifting of international sanctions a possibility , iranians hope for better living conditions , he adds . people will likely keep president rouhani 's `` moderate '' government in power , naderi writes .\nlarry reid was arrested about 12:30 p.m. monday on u.s. highway 95 . the incident happened on a highway in nevada near boulder city .\ncosmetic dermatologist to the stars fredric brandt died at his coconut grove home in miami on sunday , aged 65 . the city of miami police department confirmed that dr brandt 's death was a suicide by hanging on monday . the miami-dade county medical examiner department confirmed to daily mail online that an autopsy will be conducted on monday . brandt was said to have been ` devastated ' over rumors comparing him to a character on the show , unbreakable kimmy schmidt .\nemma jackson , 28 , from hull was subjected to a campaign of terror . unemployed mark ray , 56 , made threats and went on expletive-laden rants . also began following her to work and down the street . dispute began because of mr ray 's fondness for watching tv loudly . ms jackson says constant noise at all hours left her unable to sleep . emma jackson appears on the nightmare neighbour next door , tonight at 8pm on channel 5 .\ndouble falsehood was presented by lewis theobald in the 18th century . theatre impresario made it out to be an adaptation of a play by the bard . claims met with scepticism , including from great poet alexander pope . but new study of its language identifies playwright as the true author . psychological theory and text analysing software lead to conclusion of university of texas study which claims to model bard 's ` mental world '\njourney started at nile linen group in alexandria port in egypt on march 8 . after 17 day and 3,000 mile trip , arrived in moreton-on-lugg in hereford . staff heard meows from inside container , which had laundry linen in . called out rspca who found ravenous eight-month-old kitten , sinbad . given two slices of british beef which was going company director 's lunch . has gone into quarantine for four months and then hopes to be re-homed .\nelijah cook was found to be profoundly death in his left ear and only able to hear 75 decibels in his shortly after his birth in january . the mothers and fathers of both his parents , ahavah and jason cook , of andova , minnesota , were all deaf , so doctors decided to press ahead . last month they fitted elijah with a set of hearing aids . the moment he responded to his mom 's voice for the first time was caught on video , with elijah clearly responding .\ntodd kincannon , 33 , has been arrested and charged with criminal domestic violence following an incident involving his wife last month . arrest warrant alleges that he told wife , ashely griffith , that would kill her , himself and her family -- threats he is accused of having made before . lawyer claims he ` accidentally overdosed ' on benzonatate -- which he says he was taking for an upper respiratory infection . audio recordings of kincannon verbally abusing his wife and threatening to make her ` very f*cking sorry ' has since emerged . kincannon has a reputation on twitter for sending inflammatory tweets that have regularly left him open to accusations of racism and sexism .\nshay given to start against liverpool in fa cup a day before he turns 39 . tim sherwood confirmed the news as he prepares for sunday 's semi-final . given has played in all four of aston villa 's fa cup matches this term .\nst catherine 's island in pembrokeshire will now be easily accessible with a new 100m footbridge . currently , the island can only be reached by crossing a beach during low tide . the bridge , expected to be approved tomorrow , will allow history buffs to explore the fort , which was built in 1867 .\ninitially , the transport bill included language that protected lgbt users . but senator jason smalley rewrote the bill to allow drivers to discriminate .\nsissa abu dahou recently was honored as one of egypt 's ideal mothers . but for 43 years she has dressed as a man so she could work in the conservative country . `` people talked but i said i decided to be a man so i can take care of my small daughter , '' says dahou .\npaddy morrall noticed image after wood was left in rain for several hours . 31-year-old said he was not normally a religious guy but it was easter .\nmemphis depay has scored 20 goals in 26 league games for psv this term . psv beat heerenveen to lift their first eredivisie title in seven years . paris-saint germain are also interested in the highly-rated 21-year-old .\nrangers beat raith 4-0 but mccall is aware of tough test livingston will provide in midweek . he said he was concerned about some lax moments in the win at ibrox . rangers can go three points clear of hibernian with a win . ` there is no singing and dancing today . we have done ok . i still think that we 'll need to be better and we can be better , ' mccall said .\neden hazard has been voted the player of the year by his fellow professionals . the belgian has been in glittering form for chelsea , scoring 18 premier league goals so far . diego costa , david de gea , alexis sanchez , harry kane and phillipe coutinho were also nominees for the award . hazard has helped chelsea to win the capital one cup and the club are on the brink of the premier league title . the 24-year-old received the young player gong last season - an award won by spurs ' harry kane this time out . jose mourinho : hazard is worth # 100m for each leg plus cristiano ronaldo .\nzane gbangbola died at home in the middle of the night after gas poisoning . authorities denied that deadly fumes were coming from nearby landfill site . they insisted carbon monoxide from faulty pump in house caused his death . evidence shows authorities knew hydrogen cyanide leaked into family home . fire crews fled the riverside home for their own safety after their specialist gas detectors sounded the alarm for dangerous levels of hydrogen cyanide four hours after zane was discovered by his mother . the concentration of the gas found could be fatal within 15 minutes ; . carbon monoxide was never detected in the family 's home ; . neighbours were evacuated amid fears of ` contamination from floodwater ' ; . police and other agencies were fully informed of hydrogen cyanide at the property at the time , but never confirmed it publicly despite repeated questioning by this newspaper .\nharlequins and england full-back mike brown may not play again this season due to on-going concussion issues . the 29-year-old has not played since returning from international duty last month after being knocked out in a six nations game against italy . nine weeks later , brown is still suffering from headaches and nausea . harlequins director of rugby conor o'shea has insisted that he does not blame the england set-up for brown 's injury .\npaul tudor jones ii , who is worth $ 4.6 billion , reportedly bought the oceanfront casa apava estate in palm beach last week . last month , he slammed the rising wealth gap during a ted talk in canada and warned there may be a revolution if nothing is done to change it .\nleeds-based direct line is running a competition called #everydayfix . they asked groups to design products to deal with common problems . these include forgetting to lock the door and running out of battery . you can vote for your favourite design and the winner will be crowdfunded .\nkevin pietersen made 170 runs of 149 balls for surrey in oxford on sunday . alec stewart says the batsman can make it difficult for england selectors . pietersen believes paul downton 's departure has given him a ` lifeline ' england started the first test against the west indies in antigua on monday .\nrangers lost first game under new boss stuart mccall on thursday . slumped to disappointing 3-0 defeat at hands of queen of the south . had recorded recent victories over hearts and hibernian .\nsean dyche has been tipped to replace steve mcclaren at derby . burnley boss insists he is enjoying the ` challenge ' at turf moor . dyche ca n't understand why arsene wenger gets stick from arsenal fans .\nleonardo jardim says monaco prove you do n't need to splash the cash . the french side face juventus in the champions league quarter-finals . the days of monaco spending big on players like radamel falcao are over .\nbill would require all new dryers to be no louder than 84 decibels . state senator says the ` air knife ' elicited episodes in his autistic son .\nvictoria 's secret caused huge consumer backlash with ` the perfect body ' campaign was amended after change.com petition started by students . d + bra brand curvy kate spoof ad using top 10 star in a bra contenders . competition for ` real women ' finds their next lingerie model each year .\nian bell 's deal will keep him at the club until the end of the 2017 season . bell signed his first contract with warwickshire in 1999 . the england batsman has played 105 test matches for his country . he has scored 48 centuries in 246 first-class matches .\nnewcastle hope to avoid third defeat in a row when they face sunderland . papiss cisse has scored 11 premier league goals this season . 10 of those have been decisive , and the magpies would be in the relegation zone behind sunderland without his goals .\nsturgeon has shed pounds , bleached her hair and mixed up her outfits . made the male leaders ' dark suits seem as old as their arguments in debate .\nrichard curry , 71 , was diagnosed with malignant melanoma in his septum . was told he had to have his nose removed to stop the spread of the cancer . had magnetic implants inserted into his cheekbones and nasal cavity . now wears a prosthetic nose which is attached to his face using magnets .\nranette afonso , 42 , will marry marko conte , 30 , this october . accident happened in august 2013 , while ranette was still married . began texting regularly after swapping insurance and contact details .\nthe terror attacks in india left more than 160 people dead . a court granted the suspect bail last year .\ndanel hall , 10 , was seriously injured when he was shot in the stomach . it is believed he was hit by a stray bullet intended for an aggressive dog . he was rushed to hospital after the bullet narrowly missed his liver .\njose mourinho reportedly targeting summer move for koke . spanish midfielder has been key to atletico madrid 's recent success . former atletico defender filipe luis could be going back to spain .\n41-year-old mother-of-two has battled back from injury . will take part in london marathon on sunday but wo n't race competitively . she set marathon world record on the course in 2003 . but also suffered embarrassment with loo stop in 2005 event .\nrebels bikie gang boss alex vella has been stranded in malta since his visa was cancelled in june last year . the federal court ruled this week he is banned from returning to australia and the ` the maltese falcon ' has been ordered to pay court costs . millionaire businessman vella sold key rings and t-shirts to raise money for his court challenge . court documents claimed rebels engaged in drug dealing , extortion and kidnapping under vella .\nkatie and dalton met as patients dealing with cystic fibrosis . two years later , they were married . dalton received a lung transplant , but katie is still waiting .\ngabrielle yinka saunders , 32 , stole money from insight investments on the day after she started working there . used company money to pay for # 10,000 wedding and # 5,000 honeymoon . but she was spared jail despite having previous fraud convictions . saunders stole # 35,000 from pwc and was jailed for six months in 2007 .\nsouth wales police launched an investigation into three of its officers . stephen phillips , christoper evans and michael stokes are all facing trial . the thee officers are all accused of ` theft by a serving police officer ' phillips , evans and stokes will stand trial in june in cardiff crown court .\nmandi l. walkley , 39 , and jacob m. austin , 52 , had been in the dungeness bay for one to two hours before the coast guard could rescue them . they both passed away from their injuries after being hospitalized . william d. kelley , 50 , was also rescued by the coast guard and has improved from critical to serious condition . weather was predicted to be stormy on saturday and an advisory had been issued on friday , according to the sheriff 's office . but friend dennis caines , who was kayaking with the group , said the weather had been calm earlier that day .\ntim bresnan pushing for test recall as lv = county championship begins . bresnan last played in the england whites in the winter ashes of 2013/14 . he reached 400 first class wickets as yorkshire face leeds-bradford mccu . the right-arm quick took 30 wickets in 10 games at 31.57 last season . yorkshire begin title defence on april 14 against worcestershire .\nman got into a dispute with bartenders at a bar in port st lucie in miami . he was kicked out then returned with cup of gasoline , poured on bouncer . bouncer chased the man , who then set him on fire .\nsmall group of supporters ejected after supposedly mocking disaster . eight people were arrested at old trafford in relation to manchester derby . but police praised ` overwhelming majority ' of fans for their behaviour . manchester united beat rivals city 4-2 on sunday afternoon .\nterry martin , 48 , shot his girlfriend laurice hampton on saturday . the couple allegedly had a heated argument over the proceeds of the ticket . hampton was able to call 911 to report the shootings just before she died . officers found the couple inside a master bedroom and martin was dead . hampton was taken by ambulance to a hospital where she died hours later .\nwarning : graphic content . justin whittington , 23 , of bakersfield , california was taken into custody on thursday night on suspicion of child endangerment . whittington was allegedly filmed hitting a toddler in the face so hard that he falls to the ground . whittington is believed to be the boy 's father .\nthe ancient tuscan town is based 40 miles south east of genoa . little is known about much of the settlement 's origin or history . seismic instability noted as a reason for the mass abandonment . today the town is seen as italy 's most famous abandoned location . folklore suggests that the depreciating settlement is haunted .\nreverend sharpton was expected to appear sunday in north charleston . he preached at charity missionary baptist church before going to vigil . sermon addressed scott and need for reform around national policing . elected officials and police from north charleston were in attendance . south carolina senator marlon kimpson was also there to hear sharpton .\nmichael hanline , 69 , was convicted in 1980 for murder of jt mcgarry . new dna evidence proved he was innocent and he was released last nov. . on wednesday , a judge dismissed the charges against him . california innocence project posted video of him on day of his release . moment he ate his first burger at a carl jr 's restaurant after being wrongfully imprisoned is captured as well as his first steps of freedom . on thursday , carl 's jr announced they were giving hanline a year of free burgers .\ntanker carrying fracking wastewater struck by lightning in greeley , colorado , about 1pm friday . fracking water contains traces of gas and petroleum , causing the tanker to explode . other trucks also exploded as a result of fires at the facility , owned by ngl energy partners . firefighters had to wait for the fires to subside before entering , because they were ignited by oil . there were no injuries , but the facility appears destroyed . the site is used to pump fracking wastewater into the ground . storms swept from the upper midwest to the southeast on friday and saturday . north texas was placed on a severe thunderstorm warning saturday night , particularly fort worth and dallas . the academy of country music 's party for a cause festival at globe life park , arlington , threatened . houston suffered serious floods friday night as rivers and bayous overflowed from the rain .\nutrecht briefly had twelve players on the pitch against ajax on sunday . winger edouard duplan had n't realised he had been substituted . frenchman saw funny side and made his way off the pitch during 1-1 draw .\ngareth bale has been linked with a summer move to manchester united . the wales forward has been criticised by real madrid fans this season . united want bale but he has no desire to cut short his time in spain . a swap deal involving united keeper david de gea has been mooted . real are interested in bringing de gea to spain to replace iker casillas .\nmain stand redevelopment at anfield starting to take shape . pictures showed new steel structures higher than existing stand . expansion of main stand will be completed by 2016-17 season . capacity of anfield will increase from 45,000 to 54,000 .\nthe cubs were a month-old when they were presented to public . according to the zoo their teeth have already started to grow . the two cubs have also reportedly reached ideal weight of 3kg . jaguars are the fifth brood of mother and father agnes and rock .\njanner sent the card to detective after learning he would not be charged . christmas card even invited retired kelvyn ashby to dinner at parliament . former policeman said he was appalled by the labour peer 's note . officer says superiors forced him to drop inquiries into alleged sex abuse . four medical experts who examined the peer did not all agree on the nature and extent of his dementia , as outlined by mrs saunders ; . janner 's own barrister was surprised he escaped charges in 1991 , and suspected attempts to influence the prosecutors ' decision ; . the director of public prosecutions in charge at the time said he could not even remember seeing the politician 's file .\njeff dubois of kiro was stung during broadcast from site of crash . he and his cameraman were stung dozens of times by bees . beekeepers moved in to try and save as many bees as they could .\nthieves raided supermarkets and electrical shops during 55-day spree . four-man gang used pink umbrellas for disguise and fled in getaway cars . they also threatened shop workers with hammers , knives and screwdrivers . liam bell , 19 , marcus morgan , 21 , ashleigh evans , 26 and 22-year-old trea richardson , all from west midlands , pleaded guilty to conspiracy to rob .\nresearchers from the university of patras , in greece created the algorithm . determines a person 's state of intoxication by their facial temperature . analysing the forehead and nose gives an accuracy rate of 90 per cent . experts say system could one day be used by the police , and even in cars .\nvolcano erupted without warning at around 6pm local time with 1,500 people forced to leave their homes . residents described people crying in the streets as they fled in the aftermath of the ` apocalypse-like ' eruption . it is the first time the volcano has been active since 1972 , and the first major eruption there since 1961 . the plume of ash and smoke blanketed the sky and was visible in towns up to 100 miles away in argentina .\nnottingham forest are close to extending dougie freedman 's contract . the forest boss took over from former manager stuart pearce in february . freedman has since lead the club to ninth in the championship .\ninstitute for fiscal studies says no party has given ` anything like full detail ' labour has left the door open to borrowing an extra # 26billion-a-year . tories were accused of giving ` no detail ' about # 30billion of spending cuts . boost for osborne as he beats borrowing target by # 3billion in last year .\nthe second series is hosted by philip glenister and ant anstead . each episode takes a look at the history of various types of car . the pair return a number of old-bangers back to their former glory . they also help people complete their stalled restoration projects .\nfinnish methods include pupils working in small groups or independently . in 2006 finland was second in world for maths , but down to 12th by 2012 . during period its test scores dropped 29 points in maths and 23 in reading . michael gove has argued for return to traditional teacher-led lessons .\nnypd officers shot dead a suspect as he fled from the scene of a crime and opened fire wednesday night . this after they received a call reporting shots fired at a bar . a weapon was recovered , and no officers were injured .\njason denayer has enjoyed a successful season on loan at celtic . ronny deila will ask manchester city about keeping him for next season . hearts captain danny wilson is also among deila 's defensive targets .\ndiafra sakho could miss the rest of the season due to injury . the west ham striker picked up thigh strain in game against stoke . the 25-year-old was taken off after 58 minutes and went for scans .\nairline visual identity 1945-1975 revisits a time when the skies were dominated by now-defunct airlines . at that time flying was an exclusive experience and passengers wore their best clothes . adverts feature drawings or photos of beautiful women , famous landmarks and natural beauty spots . the book , published by berlin-based callisto publishers , celebrates the creative genius of the designers .\ncaretakers of lincoln 's tomb are on the defensive over an unflattering magazine critique and looming budget cuts . the site was pilloried in this month 's issue of national geographic magazine as having ` all the historical character of an office lobby ' . gov. bruce rauner has proposed eliminating the state historic preservation agency , which manages the tomb . rauner would roll the agency into another department . lincoln 's tomb was designed by vermont sculptor larkin mead , who won a national contest . it was dedicated by president ulysses s. grant in 1874 . the tomb was reconstructed in both 1899 and 1930 .\nsouthampton have scored seven time in their last 10 league games . manager ronald koeman feels a return to scoring will boost europe hopes . southampton are seventh , a point behind liverpool and tottenham on 53 . click here for all the latest southampton news .\nthe two-month-old baby seal came up for a hug on antarctic peninsula . despite being a pup , the seal is believed to have weighed 200lbs . adorable cuddle caught on camera by canadian tourists .\ntori hester was diving in mexico when a huge school of fish began circling . her husband jeff captured the stunning scenes with an underwater camera . a marine park , built in 1995 , has tackled problem of overfishing in the area .\nhaye , 34 , stopped as he arrived at dubai international airport for a holiday . he was taken to a police station and handed over his passport . cheque had been the final payment on a new property in the uae . he says the ` bounced ' cheque was down to an administrative error .\nliverpool take on aston villa on sunday for a place in the fa cup final . brendan rodgers is leading liverpool at wembley for the first time . the manager wants to ingrain a trophy-winning habit into his players .\nporto beat bayern munich 3-1 in champions league quarter-final first leg . pep guardiola is confident his side can overturn the difference at home . the bayern boss says ` only the treble ' will suffice for his team this year .\nteacher adam galloway got home and found nikon on ebay just 35 minutes before end of auction . he messaged seller who admitted he worked for ryanair and begged him not to report him to police . seller has sold 118 items on ebay including ray-ban sunglasses and skullcandy headphones . steward fernando miguel andrade viseu ordered to attend drug rehabilitation when sentenced for theft .\nmore than a third of health trusts are considering rationing some surgery . several admit they may impose ` eligibility ' rules refusing some patients . obese patients could be denied knee and hip replacements and breast ops . while smokers may be told they can not have ivf procedures on the nhs .\nsherrell dillion starred on the hit tv series benefits street . as an aspiring model she has landed herself a place in a top competition . but sherrell is still struggling as she has recently been made homeless . the mother-of-two was removed from her house due to mice .\nfifi m. maacaron , 36 , from newport news , virginia , is a pharmacist . natural beauty alchemy has over 100 recipes for natural products . has organic recipes for face , hair and body that all can be mixed at home .\nthe lamb named winter bends its head down towards the baby duck . duck begins pecking and grooming lamb 's woollen coat . lamb 's owner says animals ' actions are ' a heart-warming sign of trust '\njapanese maglev train sets new speed record : 603 kilometers per hour . the train is planned to begin service in 2027 .\ndetectives raided dr rory lyons ' private health centre in alderney . dr lyons is also suspended by the medical practitioners tribunal service . action sparked by death of karen cosheril , 52 , from pneumonia in january . probe uncovered three more deaths of concern - including karen 's cousin .\nkevin pietersen has re-signed for surrey in attempt to earn england recall . he revealed on twitter he will return to batting for surrey on monday . england coach peter moores said pietersen ` is n't on the radar ' to play .\nsam reese , 22 , appeared on the channel 4 show first dates . the male model suggested he split the # 350 dinner bill with his date . he claims he has received death threats over his behaviour .\nbeloved children 's performer lois lilienstein has died . she was a member of cbc and nickelodeon tv stars sharon , lois and bram . cnn independently confirmed with sharon and bram 's manager that lilienstein passed away at 78 of a a rare cancer .\nholden recalled 26,000 colorado 's as they are at risk of catching alight . five customers have reportedly claimed to have ` thermal incidents ' . affected models were made between september 2013 and january 2015 . holden is the most recalled car in 2015 with five instances in four months . the accc announced safety recalls in australia are steadily on the rise .\nforeign gps now account for 1 in 5 family doctors , new nhs figures show . in some areas such as essex , the proportion is more than two thirds . number will continue to rise due to shortage of home-grown gps .\njack rivera , a new york trucker , captured the collision on his dashcam as he drove along the interstate 35e in texas last wednesday . police said the driver in the suv , identified as laura michelle mayeaux , may have been intoxicated and trying to take her own life . she was transported to baylor university medical center in dallas because of the injuries she sustained during the wreck . her last known condition was reported as critical . it is not known if mayeaux will face charges and the event remains under investigation .\nsudan is guarded day and night by rangers to keep him from poachers . his horn has been removed to stop it being lost to illegal trade . rhino horn fetching as much as # 47,000 per kilo as demand grows .\ntory leader 's wife makes first solo trip of the general election campaign . jokes she is glad she is not taking part in tv leaders ' debate tomorrow . visits rochester and strood to take on reckless who defected from tories . pm david cameron vowed to kick his ` fat arse ' out of the commons .\npeter spinks from the sydney morning herald reported on amasia . within 200 million years , he said the new supercontinent will form . one researcher recently travelled to nepal to gather further information . he spotted that india , eurasia and other plates are slowly moving together .\nvidarbha , the eastern region of the state of maharashtra , is known as the epicenter of the suicide crisis . farmers are becoming burdened with debt due to falling prices but rising costs .\njulie schenecker , 54 , was found guilty last year of murdering her son beau , 13 , and daughter calyx , 16 , in their tampa , florida home in january 2011 . in a jailhouse interview , she has now revealed she does not regret it . she claimed her son was being sexually abused - but would not say by whom - and that her daughter was struggling with mental illness . authorities said she had admitted to shooting the children for being ` mouthy ' and her journals detailed how she was going to kill them .\nit is 24 years to the day since paul gascoigne scored in the fa cup semi-final against arsenal . gascoigne struck a fierce 35-yard free-kick that beat david seaman . it was hailed as one of the best goals in wembley history , and that comment still applies .\nunidentified teen was released on monday from juvenile detention into custody of child protective services , district attorney said . jondrew lachaux , 39 , and kellie phillips , 38 , face child abuse charges . lachaux allegedly sexually assaulted the teen and she became pregnant . four-month-old girl was released from hospital and turned over on monday to custody of child protective services .\nacting clinton foundation ceo maura pally said ` yes , we made mistakes ' fund ` mistakenly combined ' government grants and other donations . foundation faces criticism after report it received millions from executive who sold uranium company to russia in state department-approved deal . pally said canadian law prevented its partner from disclosing the donation . took in $ 140million in 2013 and spent on $ 84.6 million on payroll and operations and just $ 9million on direct aid .\nharry redknapp says tottenham have not pulled up any trees this season . redknapp insists club have not moved forward under mauricio pochettino . former qpr boss says spurs have been rescued by the kids this season .\na red mazda left the road smashed into the front of a property in leeds . luckily no-one was seriously injured in crash which destroyed front of car . occupants escaped with minor injuries while the driver has been reported .\nall saints church , wolverhampton , hosts thursday session for prostitutes . moved traditional maundy thursday service to today to avoid cancelling . religious leaders said the move reflected the true values of christianity .\nin new york and california , there is a tendency for people to use the word ` so ' in sentences to increase drama . phrases such as ` here 's you a water bottle ' are common in the south , but people in the north find it strange . to find more examples of unusual grammar use , zoom in on the map below and click on a red location marker .\n50-year-old man died after suffering a suspected heart attack on holidays . he collapsed after ordering breakfast at a restaurant in 101 legian hotel . the dead man is believed that he was from seymour in victoria . an autopsy has still to be carried out to find the exact cause of death . the man had earlier told a waitress he was not feeling well . kuta is a holiday destination loved by australian tourists .\nborussia dortmund manager jurgen klopp will leave post this summer . klopp ready to take another job with no sabbatical . emotional grip of game makes him ideal for the premier league . premier league clubs on alert after the shock news from germany . klopp has been linked with manchester city and arsenal in the past .\nthe new jersey parents are divorced and share custody of their three kids . father claimed his ex ` abused her parental discretion ' by taking daughter to see pink in december 2013 in newark . judge ruled that while the singer can be suggestive , her works are not inappropriate for a preteen .\nashley pegram , from summerville , south carolina , went on a date with a man she met online on april 3 and has not been seen since . her sister found she had been messaging an 18-year-old man - but he turned out to be 30-year-old edward primo bonilla . bonilla told her and police that he had kicked pegram out of his car because she was too drunk . he has been charged with obstructing justice for ` giving false and misleading information ' and police say foul play is ' a definite possibility '\nfloyd mayweather jr and manny pacquiao 's fight will be the richest ever . sportsmail 's jeff powell is counting down the ring 's most significant fights . joe frazier v muhammad ali in new york in 1971 is the third in the series . smokin ' joe was two-belt champion bizarrely backed by conservatives . ali was darling of young blacks after refusal to fight in vietnam .\ncandle-lit memorials held on beach in malta and rome 's verano cemetery . in memory of libyan refugees who died on a smugglers ' vessel on sunday . italian coast guard has rescued hundreds more fleeing war in africa since . only 5,000 can stay in europe , eu leaders are expected to announce today .\nduring a question and answer session at the white house for children , a little girl named anya brodie asked michelle obama her age . when obama told brodie that she was 51 brodie exclaimed , ` you 're too young for 51 ! ' on wednesday the white house hosted their annual take our daughters and sons to work day .\ncommando says air transport was delayed for hours as al-shabaab forces slaughtered students . on april 2 , 147 were killed at a university in garissa , kenya , most were students .\nwest indies reach 155 for four at stumps on day two of first test . hosts still 244 runs adrift of england 's first innings total of 399 . resuming on 341 for five , england 's final five wickets fell for 58 . jimmy anderson , chris jordan , stuart broad and james tredwell all take a wicket each in west indies ' first innings at sir viv richards stadium . anderson has 381 test wickets , two less than sir ian botham . shiv chanderpaul 29 * and jermaine blackwood 30 * at stumps . nasser hussain : jimmy anderson is still the sultan of swing .\nmillers await verdict of three-man football league disciplinary panel . manager steve evans expects decision before norwich home game . rotherham fielded an ineligible player against brighton on easter monday .\nthe baby elephant walks alongside single file herd . it stops to dawdle pick up something with its trunk . before managing to break the tail-to-trunk chain . the footage was captured by at whipsnade zoo .\nstephanie fragoso cited wednesday after she was stopped in las vegas . nevada highway patrol cop said she was applying makeup while driving . distracted driving fines range from $ 50 for the first offense up to $ 250 . higher enforcement as state hopes to have zero driving fatalities in 2015 .\nukip 's kim rose laid out spread of sausage rolls and sandwiches at event . police are investigating mr rose for ` treating ' - trying to influence voters . laughing off claims , he said : ` thank god they did n't find the jaffa cakes ' nigel farage backed his candidate , branding investigation ` utter nonsense ' .\nsquatters have set up shanty town just yards from runnymede in surrey . the group who are linked to occupy london have left locals outraged . one member said they were using the land to grow their own vegetables . they have been given two weeks to submit a defence ahead of hearing .\nexhausted shoppers regularly fall asleep in ikea stores across china . cheeky nappers kick off their shoes and get under the covers of displays . managers forced to ban visitors from taking off their shoes to go to sleep .\nformer face of nbc nightly news was suspended for lying about iraq . falsely claimed he was in military helicopter downed by rpg fire . bosses began investigation into other tall tales in wake of scandal . nbc 's ceo reportedly told in recent briefing that 11 instances emerged . include seemingly overblown claims about reporting on the arab spring .\nduchess of cornwall has created a buzz with the launch of her own honey . the honey is produced in late spring by the bees in her wiltshire garden . just 250 jars are being made , at # 20 each , with proceeds going to charity . but does luxury honey taste different enough to justify hefty price point ?\nnorthampton face saracens at franklin 's gardens on saturday . the reigning champions have creaked in recent weeks . the saints have lost crucial games to clermont and exeter .\nyobs had ` already drunk a lot ' when they boarded early morning flight . they sung , swore and shouted throughout flight from glasgow to alicante . other passengers were jostled as they tried to calm shirtless , rowdy men . one man was escorted from the plane by spanish police upon arrival .\nexperts question if packed out planes are putting passengers at risk . u.s consumer advisory group says minimum space must be stipulated . safety tests conducted on planes with more leg room than airlines offer .\nmoney expert says spending a few hours and a bit of cash can add tens of thousands to your property value at sale . among her tips are things simple as changing door handles and curtains . michelle hutchison says paint the walls and the kitchen cupboards . other tips include : clear the clutter to make you home appear bigger .\nchelsea travel to arsenal for their premier league clash on sunday . this will be cesc fabregas ' first return to the emirates since leaving . his relationship with arsene wenger has deteriorated since he left in 2011 . wenger : arsenal fans should give fabregas a good welcome . read : jose mourinho deep down admires what wenger has established . read : arsenal fans call for removal of emirates stadium fabregas flag .\np-22 has made himself a new den underneath a house in los feliz . the mountain lion has been living in nearby griffith park for three years . rose to fame after a picture of him in front of the hollywood sign published . so far resisted all attempts by animal welfare workers to make him leave .\nclip shows mysterious black cloud hanging over the village of shortandy . the perfect hoop shape sat in the air not moving for more than 15 minutes . eerie video has been viewed tens of thousands of times on youtube . while some viewers are suggesting the cloud was an alien spacecraft , experts think it could have been caused by nearby factories .\npaul parker played for manchester united , qpr and fulham among others . the right back also made 19 international appearances for england . parker 's expired passport was listed for sale on ebay for # 5,000 .\nharry kane 's participation at under 21 european championship is in doubt . tottenham have confirmed they will travel to kuala lumpur for friendly . spurs will also face sydney fc after taking on a malaysia xi .\ncarwyn scott-howell plunged to his death while skiing in flaine , france . seven-year-old 's body expected to be brought home this weekend . state prosecutor concludes schoolboy 's death was a ` tragic accident ' .\npoll reveals how britons consume an average of 17 cups of tea each week . almost a third of women turn to tea to make them feel better when unwell . survey of 2,000 britons found tea-drinking habits increase as we get older .\nqueensland health confirms there 's a shortage of whooping cough vaccine . there is an insufficient supply of a booster which is used for adults . medical professionals insist the shortage will not affect immunisation program for babies , children and pregnant women . it 's australia 's least well-controlled of all vaccine-preventable diseases . riley hughes died in a perth hospital at just 32 days old on march 17 . his parents are campaigning for adults to vaccinate themselves and their children to avoid other preventable infant deaths . whooping cough is ` highly infectious ' and lethal in babies . immunisation against it is available for children from two months old .\naustralia 's favourite rock star-turned-politician peter garrett has put his family 's sydney home on the market . he is hoping the stunning terrace in randwick in sydney 's east will be auctioned off for at least $ 1.05 million . as to be expected the 193 centimetre rockstar 's home boasts beautiful high ceilings . he bought the property in 2010 whilst he was a federal minister for $ 932k . he also owns a mittagong property .\nmore than half of those newly diagnosed are born overseas , figures show . farage condemned on twitter by ed miliband , nick clegg and gary lineker .\ncara newton , 32 , was told she was infertile after undergoing chemotherapy . was diagnosed with the rare bone cancer ewing 's sarcoma in 2009 . some chemotherapy drugs permanently stop the ovaries producing eggs . after ivf failed , she was overjoyed to conceive baby sebastian naturally .\neverton drew 1-1 with swansea city at the liberty stadium on saturday . they could finish premier league bottom half for first time in nine years . tim howard says his side 's struggles are n't down to europa league . toffees played 10 european games but howard says form is down to luck .\nthe zambi wildlife retreat is the only facility for retired exotic animals from zoos and the movie industry in australia . the sydney retreat is home to lions , tigers , monkeys and dingoes as well as rescued farm and domestic animals . the retreat is hoping to raise money to expand its facilities so it can accept more animals and open a training centre . although not yet open to the public , you can now ` adopt ' one of the zambi pride to support the non-profit facility .\namir khan will fight chris algieri in new york next month . khan has won 30 bouts - including victory over devon alexander last year . algieri has only tasted defeat once in 21-fight professional career . 31-year-old lost via a unanimous decision to manny pacquiao in november . but the announcement has left kell brook frustrated . the sheffield fighter called out khan after his win over jo jo dan .\n25 april is the centenary of the ill-fated gallipoli invasion by allied troops . allies sustained heavy loses , mown down by a better-equipped turkish army . beautiful peninsula is a magnet to relatives of soldiers killed in the battle . the water diviner , russell crowe 's directorial debut , is set in its aftermath .\ndeshawn isabelle allegedly punched the woman in the head and dragged her to the ground by her hair before repeatedly beating her in chicago train . isabelle stole $ 2,000 of the woman 's cash and her iphone , prosecutors said . teen allegedly spent the money on junk food and air jordan track suits . woman suffered a concussion and cuts and bruises all over her body . prosecutors said she was still vomiting two days later from her injuries . isabelle confessed to robbing , beating and sexually assaulting the woman on the cta after his mother turned him in , according to prosecutors .\nhannah campbell , 30 , had miracle baby after shrapnel damaged her womb . but since birth she has battled with a mystery illness - nearly dying twice . as she tried to recover her relationship with long-term partner broke down . anthony mcmorrow , 32 , agreed new baby lexi-river will be their priority . she will have tests next month to explore what is causing rare condition . miss campbell 's pregnancy appears in my extraordinary pregnancy , starting on monday on tlc .\naustralian report suggests ways carbon dioxide could be captured . includes mention of gas from fossil fuels being used to make fizzy drinks . other ideas include typical carbon capture and storage and biofuels .\nserafim todorov beat floyd mayweather at 1996 olympic games . bulgarian won by one point in featherweight semi-finals in atlanta . todorov now lives in an apartment in bulgaria on # 370-a-month handout . mayweather preparing for $ 300m mega-fight against manny pacquiao .\nthe ohio department of heath released birth records for people born between january 1 , 1964 , and september 18 , 1996 , last month . la-sonya mitchell-clark , 38 , searched her biological mother 's name on facebook after receiving her birth records in the mail . her mother , francine simmons , had given birth at 15 years old and had to give mitchell-clark up for adoption . the pair said they always wanted to find one another but did n't know how . mitchell-clark 's adoptive parents have been very supportive of her search .\nthe large hadron collider -lrb- lhc -rrb- begins again after a two-year shutdown . the restart was delayed in march .\nciudad real airport was built in 2009 at a cost of more $ 1billion -- spain 's economy having taken off . it was closed just three years later when its parent company fell into financial difficulties . the airport was designed to cater for spain 's booming economy to serve both city and coast via high speed rail link .\ncampaigner was photographed moments before his murder in rural aleppo . forced to his knees and shot at point-blank range by rifle-wielding militants . man is understood to have been an activist who secretly reported on isis . execution images were released on same day as isis made bizarre attempt to portray life under the terror as a pastoral ideal with farmer photographs .\nmanchester united paid almost # 30million to sign luke shaw last summer . deal made shaw the most expensive teenage footballer of all time . he has not appeared for united since being substituted against arsenal . louis van gaal has told the young left back he is not fit enough . shaw is a home boy and has struggled to adapt to new life in manchester . he has found a manager who has very specific and exacting demands .\nmonaco loanee radamel falcao is not expected to stay at man utd . juventus have ruled out a move for the colombia star over high wages . serie a champions have expressed interest in palermo 's paulo dybala and edinson cavani of paris saint germain .\nmigrants from nigeria and ghana drown after being thrown overboard . fight broke out on rubber dinghy carrying 105 from libya to italy . the men were thrown into sea ` for professing the christian faith ' 15 men arrested for ` aggravated murder motivated by religious hate '\niranian plane came within 50 yards of u.s. navy sea hawk copter . navy copter was on patrol in international airspace . u.s. official think iranian plane may have been under orders of local commander .\ncharlie sumner , 20 , invaded pitch at reading 's madejski stadium in march . he did four front flips during fa clash before being tackled by the stewards . sumner , from wokingham , faces three-year ban for home and away games . but he said he has no regrets and that his family had ` seen the funny side '\nmolly schuyler scarfed down three 72-ounce steaks sunday in amarillo , texas . the sacramento woman , 35 , is a professional on the competitive-eating circuit .\ntreasurer joe hockey wants the 10 % gst to apply to streaming services . netflix customers would pay 90c extra ; itunes songs would cost 22c extra . hockey said the tax measure would raise billions in extra revenue . but consumer advocate says techies will be able to avoid the tax .\nflorent malouda has chosen the likes of john terry and didier drogba . petr cech starts in goal while david luiz is deployed at right back . thierry henry and didier drogba lead line in malouda 's dream team .\ngary goldsmith posted picture of alleged culprit to his twitter account . accompanying message included the words : ` evil s *** ... coming to get ya ' . mr goldsmith was walking in regents park when the incident happened . flamboyant millionaire businessman is carole middleton 's younger brother .\nbath 's england contingent return for champions cup quarter-final . premiership side face leinster at the aviva stadium on saturday . quartet will be seeking to make amends for six nations defeat .\nstaff at clydesdale and yorkshire banks misled the financial ombudsman . they obstructed investigation into ppi complaints by tampering evidence . politicians called for enquiry into wrong-doing between 2011 and 2013 . mp john mann said those who falsified documents could be guilty of fraud .\nhassan rouhani also urged world powers to fulfil their part of agreement . iranians celebrated breakthrough deal that promises to end sanctions . david cameron said : ' i believe this is a great deal and a strong deal ' aims to stop iran making a nuclear weapon in return for sanction relief .\nprosecutors get investigative report a day early , but do n't expect immediate word on charges . attorney general : we 're continuing `` careful and deliberate examination of the facts '' gray family was told `` answers were not going to come quickly , '' and that 's fine , attorney says .\nmaureen mcdonnell 's attorneys argued her corruption conviction should be overturned because it was based on overly broad definition of bribery . mcdonnells were convicted in a joint trial in september of accepting more than $ 165,000 in gifts and loans . bob mcdonnell was sentenced in february to two years in prison and his wife to one year and one day .\ndayot upamecano was close to signing for manchester united in january . the 16-year-old , however , opted to stay in france with valenciennes . centre-back upamecano has played for france at u16 and u17 level . arsenal are also interested in the defender as man city join chase .\nradamel falcao could still earn permanent deal with manchester united . colombian striker joined united on a one-year loan deal in september . falcao has less than impressed during his time in the premier league . monaco vice-president vadim vasilyev claims club could still sign falcao .\nright-wing groups want court to let them sue the irs in a class-action lawsuit for violating their constitutional right to equal treatment . irs applied different criteria to right-wing groups , holding up their applications for years while liberal organizations skated through . obama administration fought the release of a list of 298 groups it denied tax-exempt status beginning in 2010 , citing privacy concerns . judge in cincinnati overruled the government and ordered the irs to hand over the list . if court ` certifies ' class-action status , the tea party groups will be free to demand emails , phone records and other documents .\nvideo was captured at the ngorongoro conservation area in tanzania . israeli tourist filmed a group of baboons approaching a supply truck . as one distracts the driver by lunging at it another jumps into vehicle . before long it re-emerges with its hands and mouth full of snacks . the group of thieves reconvene and run off into the bushes together .\ndc , partners introduce dc super hero girls , intended for girls 6-12 . reaction mostly favorable -- but some caveats .\nthe colorado estate was built in 2008 using materials from italy and gives the homeowners a 360-degree unobstructed view of the vail valley . it has eight bedrooms and nine full bathrooms across 17,000-square-feet . the home is so remote that it took a team of engineers , $ 1 million and two years to build the 1.5-mile driveway .\nlondon-based artist jonty hurwitz creates sculptures that are smaller than a human hair . they 're made using ultraviolet light and resin , and then photographed with an electron microscope .\ngary cahill has won four cup competitions since joining chelsea . the defender could win the league for the first time this season . cahill believes league glory would be his toughest achievement yet .\nandreas lubitz , the co-pilot who crashed the germanwings flight , battled with depression . jay ruderman and jo ann simons : society must talk about mental illness to help people cope with it better .\nsusan pease gadoua says traditional marriages set couples up to fail . she suggests a fixed-term starter marriage of up to a four year contract . at the end the couple decide whether to renew their contract .\nnew study reveals that aussie parents spend 140 hours making breakfast . study of 2.3 million found that 7.35 is the busiest in most households . sophie falkiner , mother of two , says mornings in her house are ` crazy '\nunderweight people are also more likely to be diagnosed with alzheimers . obese person is 30 per cent less likely to get dementia than healthy person . this could help scientists develop new treatments , researchers have said .\ntiger woods to tee off at 1:48 pm alongside wales ' jamie donaldson and usa golfer jimmy walker . rory mcilroy is paired with usa duo phil mickelson and ryan moore for 10:41 am start . the 79th masters tees off on thursday at augusta national golf club . read : mcilroy hoping to become sixth man to win golf 's grand slam .\naustralian prime minister skols a beer with celebrating football players . video emerged of tony abbott drinking the beer in six seconds . the prime minister reportedly earlier gave a speech at the club function . a crowd of 50 people surrounded mr abbott to cheer him on as he drank .\nthe travel writer joins up with the abu dhabi ocean racing team . the volvo ocean race is currently taking on the next stage in brazil . joly was trained by tom daley in tv hit splash ! back in 2013 , but seems to have forgotten some key tips .\ndina nemtsova , 13 , made debut in photoshoot for russian fashion label . her mother : ` i 'm trying to help her overcome terrible killing of her father ' nemtsov was gunned down near kremlin while walking with his girlfriend .\nalert issued over rogue workers in nuclear , transport and public services . mi5 giving advice on risk posed by employees working in sensitive areas . follows actions of pilot andreas lubitz who killed 150 people in the alps . a ba pilot claims his airline does not carry out mental health checks .\nmolly schuyler won the 72-ounce steak dinner challenge at big texan steak ranch in amarillo , texas on sunday . the mother of four from california weighs just 120 pounds , but after the dinner she weighed in at 135 pounds . she said she plans to return next year to beat her record and up the ante to four steaks .\nartist and journalist alison nastasi put together the portrait collection . also features images of picasso , frida kahlo , and john lennon . reveals quaint personality traits shared between artists and their felines .\nchris coleman 's wales rose 15 places to 22 in the fifa world rankings . belgium switched places with colombia to reach no 3 for the first time . england have climbed three places to 14 after win over lithuania . bhutan 's wins over sri lanka boost them 46 places off the bottom . world cup finalists germany and argentina retain first and second spot .\nreverend jonno williams says funeral of teacher to be held on wednesday . he will be speaking with the family this afternoon to finalise the details . reverend williams says it 'll be especially hard for the town 's young people . ` she was a very friendly and cheerful girl , ' reverend williams says . nsw health spokeswoman says ms scott 's body is still undergoing tests . school cleaner vincent stanford , 24 , has been charged with her murder .\nthe two australians are currently in isolation on death row in indonesia . were moved from bali jail to the island they will be executed on last month . a jakarta court will decide whether they can challenge clemency ruling . they are battling to overturn indonesian president joko widodo 's decision to deny the pair clemency .\neden hazard gave chelsea the lead in the 38th minute when he latched onto a flick from oscar . radamel falcao complained of a foul by blues skipper john terry in the build-up to the opening goal . hazard almost made it 2-0 but his close-range effort hit the bar after a surging run from didier drogba . united midfielder ander herrera was booked for simulation in the 95th minute after trying to win a penalty . the result means jose mourinho 's side are now 10 points clear at the top of the table . click here to read oliver todd 's player ratings from stamford bridge .\njohn allan suggested tesco could easily move its hq out of london . cameron has promised to renegotiate britain 's membership of the eu . an in-out referendum on the outcome of the talks would be held by 2017 .\ncarla suarez navarro advances to final of the miami open with win . spaniard will play either serena williams or simona halep in final . suarez navarro beats andrea petkovic in straight sets - 6-3 , 6-3 .\nmembers of the royal household have voted for work to rule in pay row . wardens claim they 're asked to perform extra duty for no extra money . staff complained they 're being paid far below the ` living wage ' they deserve . royal collection trust called the vote for industrial action ` disappointing '\nmillion-year-old star mwc 480 is ` brimming ' with carbon-based molecules . scientists say there is enough methyl cyanide to fill all of earth 's oceans . as mwc 480 evolves it is likely the molecules will move closer to the star . here , the conditions may be suitable for life to flourish , scientists believe .\nphylise davis-bowens , 42 , who attended bethune-cookman university in daytona beach , florida has launched a lawsuit . she claims that she lost 16lb to try out for the dance troupe and was still not allowed by the band director after joining the college in 2009 . she is seeking unspecified damages from the college .\nhospital admissions for allergies rose by 8 per cent between 2013 and 2014 . around 21million britons have some kind of allergy , such as hayfever . but more than two thirds would not know what to do if they saw someone having an allergic reaction .\ndzhokhar tsarnaev is found guilty on all 30 charges he faced . seventeen counts were capital charges , meaning he is eligible for the death penalty .\nfederal education minister smriti irani visited a fabindia store in goa , saw cameras . authorities discovered the cameras could capture photos from the store 's changing room . the four store workers arrested could spend 3 years each in prison if convicted .\ntrespasser managed to get into grounds of presidential residence . secret service in washington dc claim they made an ` immediate ' arrest . intruder 's parcel was examined but deemed not to be a risk . breach comes a few days after a gyrocopter landed on capitol 's lawn .\nharry kane scored his 30th goal of the season for tottenham on sunday . kane and christian eriksen both scored in their 3-1 win at newcastle . eden hazard scored the only goal as chelsea beat manchester united 1-0 .\nschools should display posters warning pupils to respect teachers . union officials say signs are needed as increasing number of staff abused . around 82 % of nasuwt members were verbally abused by pupils in 2014 . a further 23 % were threatened with violence and 16 % were attacked .\nthe armed robbery took place at a service station in watervale on monday . a man dressed in female clothing strolled into the store at 7.30 pm . he walked to the counter and produced a fake machine gun from a bag . staff member handed over the cash which the robber placed in the bag . other customers were in the store , however no one was injured .\nexperts from centre for international research in the humanities and social sciences -lrb- cirhus -rrb- in new york city studied neolithic ornaments . necklaces made from shells and teeth date from 5,000 to 8,000 years ago . spread of early jewellery found to correspond to the spread of farming . experts found farming spread more quickly in southern europe than north .\nboy , 16 , from greater manchester ordered deadly toxin off the ` dark web ' anti-terror officers tracked order as they feared he was planning attack . he was arrested and pleaded guilty to trying to buy deadly poison . but was spared jail after he said he wanted to use toxin to commit suicide .\nchristopher swain donned protective suit to swim through gowanus canal . brooklyn waterway is famous dumping site for toxic industrial waste . roughly 377million gallons of diluted raw sewage poured in each year . swain quit two-thirds of a mile into 1.8-mile journey and said it was like ` swimming into a dirty diaper ' . swimmer gargled peroxide and had special tablet on hand to fight against contaminated water entering his body and making him sick . he urged faster cleanup of the canal , which is slated for dredging in 2017 .\nkroeger , 57 , was a cast member on snl from 1982 to 1985 . he moved back to his home state of iowa 12 years ago to raise his two sons and is now an advertising executive . freshman republican rod blum is currently representing the 1st district . kroeger will be running as a democrat and already has two opponents for the primary .\ndestroyer and support ship sent from bandar abbas , iran , to gulf of aden . military chiefs claim the move is to protect iranian shipping from piracy . saudi arabia is leading bombing campaign to oust iran-allied houthi which has taken most of yemen . us is stepping up weapons deliveries in support of the saudi-led coalition .\nbenaud died in his sleep in sydney after a short battle with skin cancer . he made his debut for australia aged just 18 and played in 63 tests . was the first cricketer to take 200 wickets and make 2,000 runs in tests . under his daring captaincy , australia dominated cricket in the late 1950s . began commentating before he retired from playing , with his face and voice becoming synonymous with cricket the world over . iconic figure 's love of the game , dry wit and understanding of knowing when not to speak gave him a unique voice . his family have been offered a state funeral by australian prime minister . click here for benaud tributes as the cricket world mourns his death .\ndivers margo sanchez and stephanie adamson have been photographing marine life for nearly a decade . the selfie stick allows them to keep a comfortable distance so they do not disturb marine life . the californian pair co-own a diving school and travelled to many exotic locations to see incredible sea animals .\nstephen akers-belcher said he needed time off for compassionate reasons . but the council leader was pictured the same day aboard hms warrior . the mayor was dismissed for his care manager role for gross misconduct . akers-belcher claims he has actually been sacked for whistle blowing .\nresearchers ran a 10-hertz current through brains of 20 volunteers . they wanted to stimulate alpha wave oscillations linked to creativity . these oscillations are thought to be impaired in people with depression . team are now hoping to use the technique to treat depressed people .\nbritain 's got talent presenter amanda holden is a mother of two daughters . the 44-year-old has revealed heartache of giving birth to stillborn in 2011 . opens up on in the june 2015 issue of good housekeeping .\nruben blundell 's brother was four days overdue . family had to deliver the baby at home - and ruben assisted in the birth . fetched towels and even told his mother michelle to breathe . father ben helped deliver baby theo , who ruben is besotted with .\nlisa williams hit neighbour david coleman with a hammer three times . the families had been ` at war ' since the colemans moved in next door . victim - who suffered a fractured skull - was brawling with williams ' brother . she was handed a restraining order and sentenced to 30 months in jail .\nsuzanne evans said she would step in if farage quits because of ill health . ukip leader is suffering from a recurring spinal injury and is on medication . but miss evans , seen as a rising star , played down his medical problems . the party 's deputy chairman wrote ukip 's general election manifesto .\ndenise and glen higgs thought they 'd never have children . he was made infertile due to cancer treatment , but they tried ivf . couple from of braunton , devon , had mazy , born three years ago . tried again using the same batch and had twins carter & carson last week .\nthe ` very blokey joke book ' by jake harris contains highly offensive joke . the quip is about a man watching his wife being beaten up by friends . shocked twitter users branded it ` horrific ' and ` staggeringly offensive ' the clothing brand have said they will withdraw the book from stores . last may the brand was also criticised for misogynistic merchandise . the merchandise featured a gag for women designed to look like a football illustrated with a man putting his fingers in his ears .\nstatue in wuhan , central china , depicts country 's first ruler and his wife . tourists fondling her exposed breast has damaged statue , officials say . legend has it that yu was lead to wife by a magical nine-tailed fox .\njamie jewitt , 24 , and henry rogers , 22 , had no self-confidence . jamie was 15st by the age of 15 but went on a strict vegan diet . henry was 18st at his heaviest but is now a top model . have landed tv careers and want to promote healthy body image .\nalan pardew 's side scored second-half treble within five minutes to secure the three points . glenn murray fired the eagles ahead with his sixth goal in as many matches for the away side . crystal palace winger yannick bolasie scored a hat-trick to keep sunderland in relegation trouble . connor wickham scored a late consolation for the home side , who remain just three points clear of safety .\nolympic hero bruce jenner appears on vanity fair cover as `` caitlyn '' transgender people in the united states are riding an unprecedented wave of visibility . shows such as `` transparent , '' `` orange is the new black '' have raised awareness .\nmartin odegaard named among real madrid substitutes for first time . the 16-year-old was on the bench for the la liga clash with almeria . odegaard could yet become the youngest player in the club 's history .\nkylie leuluai needs surgery on his shoulder . veteran leeds prop facing the prospect of another six weeks out . the 37-year-old new zealander has not played since last month .\n25-year-old was left brain damaged after doctors failed to administer vitamin k shortly after he was born at luton and dunstable hospital . vitamin k helps the blood clot and prevents bleeding in young babies . man suffered a brain haemorrhage and now needs 24-hour care . judge awarded him # 7.3 million to pay for his ongoing treatment and care .\neva chapin , 34 , from west linn , oregon , has been accused of harassment . referred to her neighbors as ` n ***** ' but insists she is not racist . one note said : ` there were no -lsb- expletive -rsb- in w.l until you came ' . victim has said her family may be forced to move as they do n't feel safe .\nv.k. singh is leading the operation to evacuate indians trapped in war-torn yemen . the minister reportedly said the exercise was less exciting that visiting the pakistan high commission . angry singh branded a section of the media ` presstitutes ' after they quoted him . congress called his statement ` abusive ' and ` lamentable ' .\nimages show oscar hübinette skiing on the tolbachik volcano on the kamchatka peninsula in russia . lava bubbles from the active volcano as oscar skis past . photographer fredrik schenholm tried for five years to take these spectacular images . lava flowed 100 metres from their tent during the shoot .\npolice in dallas shot and killed jason harrison last year . a grand jury has decided not to indict the officers . the officers are still facing a civil lawsuit filed by harrison 's family .\na heartbreaking photo of a six-year-old pit mix appeared on an animal shelter 's facebook page . the rescue center was inundated with calls about the dog . after just a few hours , the photo of chester had been shared 6,000 times . a family was found to take care of him within days of the posting .\nkaren buckley , 24 , had been at the sanctuary nightclub in glasgow . left her friends and went back to a man 's house in the kelvindale area . was last seen leaving his house at 4am and was planning to walk home . friends raised alarm after she failed to return home on sunday morning .\nvictor agbafe , 17 , is currently attending cape fear academy in wilmington . he plans to double major in microbiology with government or economics . smart young man faces tough choice after being accepted into 14 colleges . he credits his mother , a nigerian immigrant and physician , for his success . will make decision this month and he hopes to become a neurosurgeon .\nbrenna happy cloud of salem , oregon , has accused facebook of discrimination after her account was suspended . the native american woman has been forced to use a different surname in order to regain access to her list of over 1,000 online friends . ` other people can use their nicknames , inappropriate names , but i ca n't use my real name , ' she said . happy cloud believes her native american heritage has been undermined by facebook 's discriminatory policies .\nchase culpepper , 17 , who was born male , regularly wears makeup and androgynous or women 's clothing . after passing a driving test last year , she was told by officials at a dmv office in anderson , sc , to remove her makeup because of a ` policy '\nmanchester united have won six consecutive premier league games . daley blind wants red devils to focus on run-in starting with chelsea . holland international credited wayne rooney for inspiring derby win . gary neville : man united can beat anyone at the moment .\nchris riley , 56 , from dorset , says turner has the technique all wrong . mr riley , who says his look is more iggy pop , says being topless is a no-no . meanwhile fans have complained about lack of shirtless scenes last night . poldark kept his shirt on for the whole of sunday night 's episode . disappointed fans complained about the oversight on twitter .\narsenal take on stoke city in barclays under 21 premier league clash . jack wilshere and club captain mikel arteta have been out since november . abou diaby has been ravaged by injuries during nine-year spell at club . read : arsenal 's alex oxlade-chamberlain , calum chambers , jack wilshere and danny welbeck keep their agents close . click here for all the latest arsenal news .\nautomated planet finder in california found planets around hd 7924 . planets orbit the star at a distance closer than mercury orbits the sun . scientists say automating the search for alien life could be beneficial . ` it 's like owning a driverless car that goes planet shopping ' they said .\niona costello , 51 , and daughter emily went missing on march 30 . were heading into manhattan to visit the theater when they disappeared . recognized by someone at the new york hotel they were staying in . nypd officers picked them up at 3am and said they 're in good health .\nthe usa women 's soccer team have unveiled their new kits for the world cup . sportswear giants nike have been responsible for the new design . there has been some controversy surrounding the decision to make the kits black and white rather than the traditional red , white and blue .\nvincent nogueira nets stoppage-time winner for union . new york red bulls draw with dc united thanks to lloyd sam equaliser . table-topping vancouver whitecaps lose to san jose earthquakes .\n52 % of scots backing the snp , doubling lead over labour trailing on 24 % . sturgeon buoyed by tv debates despite threat of another referendum . damning survey comes on the day miliband launches labour manifesto . tns surveyed 978 adults aged over 18 across scotland between march 18 and april 8 .\nthe weekend saw bbc 's fa cup coverage compete with sky 's premier league . it was a refreshing throwback to see the bbc 's use of archive footage . gary lineker remains one of the bbc 's prized assets and they must keep him .\nthe ukip leader said he wanted to ` keep his mind as clear as possible ' but he said he would break his drink ban at 6pm before going to the studio . ukip aide said he would have ' a couple of gin and tonics ' before the debate . mr farage has been made the bookies favourite for tonight 's itv showdown .\npolice arrest 133,000 people and seize 43.3 tons of narcotics in a six-month period . china launches a new online campaign to crack down on online drug crimes . celebrities have been embroiled in the nation 's intensifying anti-drug campaign .\nthe explosion at the fresno county sherrif 's gun range happened on a pacific gas & electric co pipe carrying natural gas . an equipment operator and a group of jail inmates were expanding a road alongside highway 99 , which was closed after explosion for three hours . ten inmates and the operator were hospitalized , three of whom were in critical condition . three inmates were evaluated and sent back to jail and two deputies were being evaluated for ringing ears and exposure to the hot blast . california public utilities commission said it is investigating the explosion .\nronda rousey was at the fast & furious 7 premiere in los angeles . the ufc champion features in the blockbuster film , released on april 3 . the appearance follows her starring role in wwe wrestlemania 31 . her agent has said the wwe performance was a one-off occasion . click here for all the latest ufc news .\nu.s. army staff sgt. julian mcdonald of columbus , ohio has adopted a 4-year-old dog named layka who protected him in afghanistan . despite being injured in 2012 , layka completed the mission with her team and her wounds were treated upon her return to safe territory . ` she was the sole reason why i was living and breathing and able to come home to my son and wife , ' said mcdonald of his four legged partner .\nliana barrientos married ten men in eleven years - even marrying six of them in one year alone . all of her marriages took place in new york state . her first marriage took place in 1999 , followed by two in 2001 , six in 2002 , and her tenth marriage in 2010 . barrientos allegedly described her 2010 nuptials as ` her first and only marriage ' . she is reportedly divorced from four of her ten husbands . the department of homeland security was ` involved ' in barrientos ' case , the bronx district attorney 's office has said .\nairline passengers left behind almost $ 675,000 in spare change in 2013 . tsa can keep the money to spend on improving civil aviation security . the figure is $ 107,00 more than 2012 and double that collected in 2008 .\nlisa mcelroy , 50 , who teaches legal writing at drexel university , reportedly sent the ` inappropriate ' message on march 31 . when recipients clicked the enclosed link , they were allegedly directed to a video of ' a woman engaging in a sexually explicit act ' mcelroy appeared on the popular game show in 2010 with then-host meredith vieira but lost the game after reaching just $ 12,500 . along with teaching law , mcelroy is also an accomplished author with a number of published biographies and children 's books . has been placed on leave while school investigates .\nnow outdoor space is more commonly used to store hot tubs , say experts . only traditional flowers still grow in english country gardens as a result . most only contains four species - daffodils , crocuses , roses and tulips .\nkim kardashian shared frantic last-minute easter basket preparations . mariah carey was up late at night baking chocolate easter cupcakes . amanda holden and myleene klass posted sweet snaps of their egg hunts .\neben kaneshiro , 35 , found dead at deschutes county adult jail on sunday . kaneshiro was the owner of new breed jiu-jitsu in portland , oregon . charged with three counts each of first-degree sodomy and sexual abuse . was arrested last week and accused of molesting boy under the age of 12 . mma fighter was a brazilian jiu-jitsu black belt with 31 fights since 2002 .\nshiraz nawaz felt lucky to be alive after the flames shot out the manhole . the fire erupted just moments after he walked over it in the busy street . incredibly no-one was hurt in the incident after nawaz evacuated the area .\nanthony bethell has taken st john 's college , oxford to court over a hedge . bushes divide his home in warwickshire from college 's 1,200-acre plot . he claims college refused to meet to discuss replanting ancient hedgerow . dispute over ` most expensive hedge ' could cost # 150,000 in legal fees .\n31 per cent of british men say they have never washed their own car . only 12 per cent that have cleaned their own car say they do it regularly . rise in hand car washes on local forecourts blamed for art dying out .\ngrey hair has gone glam with social media awash with images . users posting images under the hashtag #grannyhair . models are sporting grey hair on professional beauty shoots . other instagrammers are posting selfies in front of the bathroom mirror . stars including kelly osborne , nicole richie and lady gaga and rihanna have helped the trend gain traction .\ntottenham travel to newcastle for their premier league clash on sunday . magpies supporters are planning a mass protest at st james ' park . spurs boss mauricio pochettino does n't know how this will affect players .\nfather-of-four gavin thorman , 36 , was kingpin of a violent drugs gang . drugs worth # 200,000 seized by police following five year investigation . planned to spend ill-gotten money on new teeth , liposuction and a facelift . he has been jailed for 12 years after admitting conspiracy to supply drugs along with 25 other defendants involved in the north wales-based group . gavin thorman , 36 , of no fixed abode but formerly of caernarfon , pleaded guilty to conspiring to supply cocaine and cannabis - 12 years . james dylan davies , 41 , of cae mur , caernarfon , guilty to supplying cocaine - jailed eight years and six months . richard broadley , 34 , formerly of caernarfon and now of tarporley close , stockport , guilty to supplying cocaine and cannabis - jailed six years and eight months . adam roberts , 33 , of lon eilian , caernarfon , guilty to supplying cocaine and cannabis - jailed for eight years . christopher taylor , 29 , of pool street , caernarfon , guilty to supplying cocaine and cannabis - jailed for eight years and three months . dylan rees hughes , 30 , of glan peris , caernarfon , guilty to supplying cocaine and cannabis - jailed for nine years . jonathan white , 32 , of caernarfon , pleaded guilty to supplying cannabis and having an imitation gun , found guilty of supplying cocaine after a trial - 11 years . gavin rees hughes , 29 , of ty 'n lon , llandwrog , caernarfon , guilty to supplying cocaine - six years and eight months . martin taylor , 26 , of pool street , caernarfon , guilty to supplying cannabis - 40 months . gethin ellis , 23 , of cae bold , caernarfon , guilty to supplying cocaine and cannabis - four years . paul hughes , 36 , of lon nant , caernarfon , guilty to supplying cocaine and cannabis - four years and eight months . martin shaw , 32 , of llanberis road , caernarfon , guilty to supplying cannabis - 20 months . dawn williams , 47 , of lon eilian , caernarfon , allowing premises to be used for supply of cocaine and cannabis - 14 months . julian williams , 40 , of lon eilian , caernarfon , guilty to allowing premises to be used for supply of cocaine and cannabis - 40 weeks . yasmin owen , 25 , of church drive , caernarfon , guilty to money laundering - 12 months . ryan williams , 34 , of caer saint , caernarfon , entering arrangement concerning criminal property - three and a half years . nicole herbert , 30 , of llanddeiniolen , caernarfon , guilty to money laundering - 10 months suspended for 18 months . rizwan hussain , 28 , of rochdale and formerly of caernarfon , found guilty of supplying cannabis after trial - six years . james whitworth , 30 , of manchester , pleaded guilty to cannabis , found guilty of supplying cocaine after trial - 12 years . anthony ferguson , 20 , of tweedle hill road , blackley , manchester , guilty of supplying cocaine and cannabis - six years and eight months . gregory appleby , 20 , of bromfield paark , middleton , manchester , guilty of supplying cannabis - two years . ian ogden , 26 , of hesford avenue , moston , manchester , guilty to supplying cannabis - 16 months . samuel hughes , 34 , of white moss road , blackley , manchester , guilty to supplying cannabis - 18 months . jake crookes , 23 , of selston road , blackley , manchester , guilty to supplying cannabis - 16 months . patrick tynan , 23 , of alconbury walk , blackley , manchester , guilty to supplying cocaine and cannabis - four years . anthony hunt , 30 , of rudston avenue , manchester , guilty to supplying cannabis - 16 months .\nmartin odegaard was dropped by castilla boss zinedine zidane previously . he was substituted after 65 minutes against tudelano on sunday . castilla were a goal down at the time as odegaard was replaced . click here for all the latest real madrid news .\nstars from across the world of sport turned out for the bt sport industry awards on thursday . recently retired jockey ap mccoy in attendance alongside the likes of england midfielder jack wilshere . southampton pair nathaniel clyne and ryan bertrand also pictured on the red carpet .\nliz smith , 92 , is spilling celebrity secrets that she never printed over the course of her 70-year career . smith began working at 25 and went on to become the gossip columnist for both the new york post and new york daily news . smith , a lesbian , claims iac chairman barry diller asked her in 1992 : ` do you think i should come out ? ' despite this claim , smith says diller is in love with his wife diane von furstenberg , who he has been with since the 1970s and married in 2001 . as for enemies , she never again spoke to jackie kennedy 's sister lee radziwill after she refused to defend truman capote and called him a ` f ** ' she counts elizabeth taylor , elaine stritch , former texas governor ann richard and bette midler as her closest friends . barbara walters was a good friend she claims , but lost interest in smith when she lost her newspaper column at the post .\nan australian bat has found an unlikely cure for his arthritis in a cup of tea . the 22-year-old bat picked up the taste while drinking from his owner 's cup . the rest of the 25 bats in the aviary have acquired a taste for the tea too . while it may look like regular tea it is his own purpose-made tea .\ngerman primary school teacher is in 21st week of pregnancy and ` feels fit ' pregnant through artificial insemination using donated eggs and sperm . in 2005 , she gave birth to her youngest daughter leila , at the age of 55 . children - eldest of whom is 44 - are by five different fathers .\njulia van herck used to binge on tubs of ice cream and family-sized pizzas . mum-of-three blamed post-natal blues and ` not talking ' to her husband . wake-up call came in 2011 when a bout of pneumonia knocked her for six . weight-loss surgery followed and now julia weighs just 11 stone .\nangelique kerber beat caroline wozniacki 3-6 , 6-1 , 7-5 in the final . the german world no 14 knocked out maria sharapova earlier in the week . kerber won a porsche sports car for her efforts in stuttgart .\nwarrington wolves beat wakefield wildcats 80-0 on saturday . wildcats are rooted to foot of the table after eight consecutive defeats . coach james webster said he simply does not have enough players .\nfloyd mayweather and manny pacquiao meet in las vegas on may 2 . fight is being shown on pay-per-view , with sky sports offering it in the uk for # 20 while us broadcasters showtime and hbo are charging # 59 - # 66 . fans could turn to social media using new live video streaming apps such as periscope and meerkat to watch the fight illegally for free . read : mayweather vs pacquiao tickets sell out within 60 seconds . click here for all the latest floyd mayweather vs manny pacquiao news .\njoshua burns was sentenced to three years ' probation with the first served in livingston county jail for second-degree child abuse earlier this month . he and his wife , brenda burns , maintain that he 's innocent and that the 11-week-old baby slipped from his lap and he caught her by the face . he claims that he was trying to save his daughter , now one year old , from hitting her head on a coffee table in their home . brenda burns has fled michigan to colorado to escape what she believes is unconstitutional oversight by the department of human services . a june hearing could potentially terminate joshua burns 's parental rights . the couple will be featured on dr phil on monday to tell their story .\ncnn 's nima elbagir describes the boat journey from djbouti to aden . vessel returned with 60 refugees desperate to flee fighting in yemen .\ndamon clay , 17 , of atlanta , has burns covering 70 per cent of his body . officers have arrested quintavious barber , 19 , and malik morton , 18 . they were arrested for aggravated assault and cruelty to a child . relatives of clay say the two men accused him of stealing a playstation 3 .\neleven egyptian football fans face the death penalty over a riot in 2012 . clashes after a match in port said left 74 dead and sparked more protests . appeals courts last year ordered retrial after 21 fans given death sentence . two of the 11 supporters given the death penalty today are still on the run .\nreal madrid face rivals atletico in the champions league on wednesday . quarter-final tie second leg is nicely poised as first leg ended 0-0 . luka modric , gareth bale and karim benzema are all out injured .\nchelsea captain izzy brown opened the scoring from close range on 7mins . blues defender andreas christensen scored an own goal to level the score . dominic solanke handed the initiative back to chelsea after the interval . brown netted a second but adrian viveash 's side could have won by more . substitute viktor kovalenko scored an injury time consolation for shakhtar .\nukip leader nigel farage risks alienating those watching debate last night . complains of ` remarkable audience even by left-wing standards of bbc ' comments on housing pressure due to immigration greeted with mutters . david dimbleby says independent polling firm chose ` balanced ' audience .\njohn axford has been placed on the family medical emergency list by the colorado rockies . his son jameson , 2 , was bitten twice by a rattlesnake last month in the yard of the house his family had rented in scottsdale for spring training . jameson will board an emergency medical flight on monday to denver for more treatment . axford will be out for at least three days and a maximum of a week .\namir khan took his family to an adventure park in northern california . khan posed alongside a rare white tiger as well as a giraffe and sea lion . earlier this week the bolton-born fighter announced his return to the ring . khan will take on former light-welterweight world champion chris algieri .\nbritain 's banks set aside # 4.7 billion last year in ppi compensation last year . another # 2.3 billion was earmarked for fines for rigging foreign markets . total charge of wrongdoing last year was # 9.9 billion , figures revealed .\narsenal and juventus have reportedly bid for palermo 's paolo dybala . argentine forward says final 10 games of season could be his last for club . arsene wenger denies interest but arsenal are said to be his first choice . dybala scored his 13th goal of serie a campaign on saturday .\ncristiano ronaldo scored the 300th goal of his real madrid career . the portuguese did it in just 288 appearances for the spanish club . ronaldo is chasing down alfredo di stefano 's 307 and raul 's 323 totals for real . james rodriguez doubled their lead as real beat rayo vallecano 2-0 in la liga . barcelona sit top of the table but second-placed real cut the gap to four points . carlo ancelotti plans to appeal ronaldo 's ` incredible ' yellow card for diving .\nsenior golfer john lahiff was attacked by a crocodile in queensland . lahiff was playing golf solo at the palmer sea reef golf course on monday . he says he did n't feel a thing during the attack and was even able to drive himself in a golf buggy to the clubhouse to seek help . golf owner clive palmer sent his well wishes to the man after the attack . recovering in hospital , lahiff says the croc was more scared than he was . lahiff feels bad for accidentally disturbing the sunbaking crocodile which he did n't see as he retrieved his golf ball .\njennifer drew estimates she saves # 70 on weekly food shop with coupons . the mother-of-one has dedicated her garage to stockpiling extra products . she has bottles of mouthwash , 52 tubes of lotion and ` tonnes ' of nappies . mrs drew also has ` stacks of cat food ' - even though she does n't have a pet .\nmanchester united travel to the usa 's west coast for the pre-season tour . louis van gaal was unhappy with last year 's arrangements in america . the dutch manager has organised the pre-season plans to his liking . he will face his former club barcelona in california during the tour . van gaal was barca boss between 1997 and 2000 , and won la liga twice . he left in controversial circumstances after an icy relationship with media . read : real madrid confident david de gea is set for spain .\n` precious ' brew has been created by japanese liquor company suntory . it boasts a five per cent alcohol content level and 2g of collagen per can . collagen is a protein found in skin that provides structure and firmness . experts are divided over how effective it is when drunk or eaten with food .\nthe european union is trying to stop thousands of migrants from drowning at sea . migrants risk their lives by paying people smugglers to get them to europe . australia has successfully stopped the flow of migrant boats to its waters .\nluke shambrook was last seen leaving candlebark campground on friday . the 11-year old was camping in the victorian national park with his family . luke has limited speech and his family says he is probably confused . a large search is being carried by a medley of search and rescue teams . police also said conditions are favourable for his survival overnight . they have issued an extensive description of luke and his clothing .\nabdirahman sheik mohamud pleads not guilty to charges of providing material support to terrorists and lying to the fbi . the columbus , ohio , resident became a u.s. citizen in february 2014 . in april 2014 , he went to syria for terrorism training , prosecutors say in a news release .\nmanifesto set to be launched by david cameron and william hague . centrepiece will be a pledge to introduce ` english votes for english laws ' hague expected to warn england risks being held to ransom by snp . but critics likely to say the document risks creating further divisions .\nkim hill was abused by her step-father from a young age . he forced her to wear lingerie and watch ` sick porn ' films aged nine . kim never revealed what had happened until she met her husband rob . with his encouragement kim reported her abuser and saw him sentenced . derek osborne was jailed for 21 years in 2013 aged 72 . he confessed to abusing other girls as well as raping another woman . kim has now set up a blog to help other victims of sexual assault .\ndrive began on march 22 near san francisco 's golden gate bridge . car arrived in new york city today - before auto show opens on april 3 . drive used a specially adapted audi sq5 and drove itself 90 % of the time .\npoets house is a swish new hotel in ely , three minutes from the cathedral . it comes complete with 21 chic rooms - and complimentary valet parking . it used to be an old people 's home , but is a world remove from this era .\npolish lady goska was volunteering at criadouro onça pintada . she bottle fed a one-year-old rescued jaguar called perseu . the big cat sits with her and drinks with great enthusiasm . volunteer said that ` with time he became my good friend '\nmichael carrick changed the game for england against italy in turin . the midfielder has been unappreciated and ignored for many years . carrick has made just one appearance for england at a tournament . england should build their midfield around him for euro 2016 .\nlabourer pham quang lanh had metal plate inserted in head after injury . but the surgery caused his head to swell with a potentially fatal infection . family spotted maggot infestation after he repeatedly complained of pain . surgeons say the maggots had eaten the infected tissue but not his brain .\nlloris has established himself as one of the premier league 's best keepers . with uncertainty over david de gea 's future , united and psg are interested . lloris signed a five-year deal with spurs last year . and daniel levy will put price tag on lloris to keep united and psg at bay .\nthe original migrants to europe from africa arrived 40,000 years ago . up until 8,000 years ago , early hunter-gatherers largely had darker skin . when near east farmers arrived , they carried with them light skin genes . genomes of 83 people found 5 genes linked with diet and skin changes .\njon cryer revives `` pretty in pink 's '' duckie dance routine for `` the late late show '' host james corden tweets that the bit `` fulfilled a childhood dream ''\nteresa bullock captured the video on the monkey 's birthday in ohio . video shows primate getting mascara , eyeliner and moisturizer applied . the controversial content has sparked debate between two groups . peta director said videos like this ` often inspire ill-informed people to obtain monkeys as pets ' and wild futures spokesperson said the clip is ` really very sad '\njack wilshere captained arsenal u21s squad against reading on monday . wilshere is building his fitness following his return from a long-term injury . however , he could n't stop the young gunners from losing the clash . wilshere is hoping to appear in the fa cup semi-final against reading . read : arsenal have doubts over signing liverpool star raheem sterling .\npatrick cherry will appear on nbc new york on friday night to apologize . he has been stripped of his badge , will be placed on desk duty before being transferred out of the nypd 's joint terrorism task force division . cherry was investigated by the civilian complaint review board after an uber passenger recorded meltdown . ` no good cop should watch that video without a wince , ' nypd police chief bill bratton said at a press conference wednesday . cherry was reportedly on his way back from visiting a colleague in hospital . the uber driver ` honked ' at cherry as he pulled into a parking space without signalling .\nthe cdc says 106 passengers and six crew members aboard the celebrity infinity cruise ship were sickened by the gastrointestinal illness norovirus . staff on the infinity stepped up cleaning and disinfection in response to the outbreak , according to the health agency . the ship was on its journey from march 29 to april 13 . symptoms of norovirus include vomiting , diarrhea , fever and body aches . according to the cdc , most people recover within three days . celebrity cruises said in a statement that over-the-counter medication was administered on board . the ship previously experienced gastrointestinal illness outbreaks in 2006 and 2013 .\nborussia dortmund and bayern munich have shared the last five bundesliga titles between them . bayern currently have a 10-point lead at the summit of the table . dortmund are 31 points behind their rivals in 10th place .\n`` the cold war has been over for a long time , '' president obama says . the thaw in ties has dominated discussion at the summit of the americas in panama . the top leaders from the united states and cuba have n't met for substantive talks in more than 50 years .\nresearchers at joint base lewis-mcchord concluded military suicides may be more likely after members leave service than during deployment . the four-year study looked at military records of 3.9 million service members from october 7 , 2001 to december 31 , 2007 . total of 31,962 deaths occurred , including 5,041 suicides , by december 31 , 2009 . there were 1,162 suicides among those who deployed and 3,879 among those who did n't . soldiers with a dishonorable discharge were twice as likely to commit suicide as those who had honorable discharge .\nman is a british national of polish origin , but has not yet been identified . he was arrested on saturday as part of an operation against the dhkp-c . banned leftist militant group took senior turkish prosecutor mehmet selim kiraz hostage in istanbul last week . both kiraz and hostage takers were killed in the resulting police shoot-out .\nlord neuberger said muslim women should be allowed to wear a full-face veil when appearing in court to show respect to ` different customs . he also said judges must be aware of their ` subconscious bias ' judges are ` rightly ' seen as from ` privileged ' part of society , he said . he cited a judge ruling on a case of an unemployed traveller as an example . since publication of this article , lord neuberger has since clarified his position which may be read here : article .\namjad yaaqub , 16 , saw isis militants kicking a severed head in the camp . they also beat the schoolboy unconscious while looking for his brother . meanwhile 55-year-old ibrahim abdel fatah said children are being killed . extremists are slaughtering innocents in front of their parents he revealed .\nthe world 's largest cattle station is for sale in anna creek south australia . it covers a huge 23,000 square kilometres and includes original stock . s.kidman and co. are selling another 10 cattle farms across australia . in total , they cover 100,000 square kilometres and have 155,000 cattle .\njay dasilva building a strong reputation in chelsea 's youth system . the young defender has been earmarked as a future first-team player . chelsea have not produced a homegrown regular since john terry . but jose mourinho insists he will give youth players a chance . ruben loftus-cheek has been guaranteed a place in the squad .\nsiem de jong set up adam armstrong for winner in 2-1 aston villa win . it was his second game for u21s since surgery to repair collapsed lung . the # 6m summer signing has only made one league start for newcastle .\niranian sports official : the ban will be lifted for some events in the coming year . but he says `` families are not interested in attending '' some sports matches .\ndeanna robinson , of texas , was 38 weeks pregnant when she says she was struck at least three times in her back at her parents ' home . says deputies and state workers from cps were at her parents ' home to remove her 18-month-old son because of allegations of abuse or neglect . ` i 'm 38 weeks pregnant , and with my stomach again repeatedly pressed into that counter , ' she said . robinson says her stomach hit the kitchen counter repeatedly during the incident , causing heavy bruising .\nan echidna is filmed swimming in turquoise waters at victoria 's rye beach . the land-based mammal looks to be using its ant-eating snout as a snorkel . echidnas are proficient swimmers , believed to have evolved from aquatic ancestors like the platypus .\npound near 1.46 against the us dollar , its lowest level since june 2010 . polls suggest neither tories or labour will manage to win a majority . fears the pound could fall another 10 % if a badly hung parliament .\nwcco this morning reporter ashley roberts , who lives and works in minnesota , was proposed to by boyfriend justin mccray . the florida native was shocked to see her now-fiancé appear in the studio during a segment on wedding costs .\nbettie jo , 24 , from houston , was morbidly obese at almost 47st -lrb- 660lbs -rrb- husband josh tended to her basic needs including showering and eating . last year she was given bariatric surgery . husband sabotaged her efforts to diet as still wanted to feel needed . relationship therapy and near death scare helped couple back on track . with josh 's help bettie jo now weighs 35st 8lbs .\nalexander kutner travelled with his sky presenter mum , kay burley . they stayed at the ulusaba reserve in south africa 's sabi sands . the stay at cliff lodge had luxury furnishings , soft sheets and a chef .\nthe comedian , who died suddenly at 56 last year , failed to leave a valid will . could mean complications for wife , barbara , and their three adult children . his # 1.2 million estate could be liable for tax of tens of thousands of pounds .\n29-year-old pankaj saw feel to his death from a macquarie park balcony . he was on the phone to his wife and had only been in australia for two weeks . mr panjak died at the scene from serious head and internal injuries . a housing expert has said it was an accident waiting to happen .\nander herrera joined manchester united from athletic bilbao last summer . # 29m summer signing has scored seven goals in all competitions so far . herrera scored twice as united beat aston villa 3-1 on saturday . click here for all the latest manchester united news .\ndelmarva power says the utility discovered a stolen electric meter had been illegally connected to rental home where the family was living . the utility says meter was disconnected for safety reasons on march 25 . rodney todd and his two sons and five daughters then used a generator for power . they were last seen alive on march 28 .\nanna foord sold low grade diamonds at hugely inflated prices , court is told . part of gang who sold coloured diamonds in # 1.5 million ` boiler room ' scam . foord , 30 , was found guilty of conspiracy to defraud and money laundering . another gang member was found guilty while three others admitted similar charges .\ncommon joins `` suicide squad '' cast , which already includes will smith , jared leto . film is about supervillains who team up .\npaul smith will take on andre ward on june 20 in california . ward 's wba super-middleweight title will not be on the line . smith is coming off back-to-back world title defeats by arthur abraham . ward has not fought since he beat edwin rodriquez in november 2013 .\ntwo thirds are also not willing to consider joining into a group to ensure at least one surgery in an area is open on saturdays and sundays . but weekend trials show numbers going to a&e fell by 8 to 10 per cent . survey by british medical association also found most felt 10 minute appointments to short , while heavy workloads meant patient care suffered .\nlionel messi posted a picture of his son and wife on instagram . message read : ` waiting for you baby . we love you . ' . messi 's first son thiago was born in november 2012 .\nmanchester city have been restricted to a net transfer spend of # 49m . club 's also had to keep overall wage bill to its current level of # 205m . punishments imposed by uefa for breaching financial fair play rules . the spending restrictions were set for this season and the next one . but city are confident they will be lifted early after their compliance .\nsensing a legislative defeat white house said the president would be willing to sign the bill if senators axed key portions of their iran bill . senators voted 19-0 to give the white house some of , but not all of its asks , and left in a signature feature giving congress authority over a deal . it now goes to the full senate , where it is could pass with a veto-proof majority - making the president powerless to reject it .\nmanny pacquiao 's early life is portrayed in a new film called kid kulafu . the film is named after bottles of wine the boxer collected as a child . it charts his rise from humble beginnings to his first steps in the ring . pacquiao takes on floyd mayweather in las vegas on may 2 .\nfive-year-old had accidentally been locked in by grandma . she ran to the window to shout her but fell between the metal slats . neighbours used piece of pipe and other items to take weight off neck . emergency crews arrived 30 minutes later to free her from railings .\nmauricio pochettino says harry kane has struggled since england debut . also believes his team-mate ryan mason is suffering as well . 21-year-old kane has scored 29 goals in all competitions this season .\nrangers have been beaten three times by edinburgh clubs at ibrox thisseason . manager stuart mccall wants victory over championship winners hearts . rangers defeated edinburgh hibernian at easter road recently .\nkeanu reeves is a self-confessed petrolhead and visited red bull . reeves says the whole process of formula one is much like hollywood . red bull currently preparing for chinese grand prix in shanghai . click here for all the latest formula one news .\nryan giroux denies killing a man during shootings in phoenix in march . rampage through suburbs let to huge police manhunt for the shooter . ex-convict and ` skinhead ' giroux is a member of white supremacy group .\naston will face arsenal in the fa cup final at wembley on may 30 . shay given started for villa in their 2-1 semi-final victory against liverpool . villa travel to the etihad to play manchester city on saturday .\nsatyam computers services was at the center of a massive $ 1.6 billion fraud case in 2009 . the software services exporter 's chairman , ramalinga raju , admitted inflating profits . satyam had been india 's fourth-largest software services provider .\nisraeli jews stood in silence as sirens wailed across the country on thursday marking holocaust memorial day . commemorations began at sunset on wednesday to mark 70 years since the liberation of the nazi death camps . about 189,000 survivors live in israel today but according to one charity close to 25 % struggle financially .\narchaeologists have found the skeleton of a camel below a cellar in an austrian village . they believe the camel was from the 17th century osmanic-habsburg war . ottoman troops used camels as troops during the conflict .\npop star taylor swift revealed thursday that her mom has cancer . the nature and severity of andrea swift 's cancer have not been divulged .\nthe yankee stadium signage was bought by hall of famer reggie jackson when the stadium was shuttered in 2008 for an undisclosed sum . before the auction , jackson had promised to fly out himself to see the letters at the winner 's home .\ngerman government ` knew of risk of flying over ukraine ' , it is claimed . diplomatic cables refer to ukrainian air force plane shot down on july 14 . malaysia airlines 's flight mh17 was shot down on july 17 last year .\nelizabeth sedway posted to video to facebook showing her removal from a plane . she was forced off a flight in hawaii and told she could n't head home to california . alaska airlines later apologized , saying it could have handled the situation differently .\npatrick vieira set to complete his uefa pro licence this summer . vieira has been working with manchester city 's development squad . frenchman made his name as a tough midfielder at arsenal . read : pellegrini 's job on the line as patrick vieira waits in the wings . read : ashley young laughs at city as united silence ` noisy neighbours '\nsam barton had # 55,000 of plastic surgery including two nhs operations . 22-year-old says trolls traced him online then egged him in the street . celebrity wannabe says abuse over his appearance forced him to move . but he has also gone bankrupt financing cosmetic surgery and partying .\nnew dove worldwide survey finds 96 per cent think they 're ` average ' out of 11,000 australian women , a huge 9,397 rated themselves average . new video filmed in five countries highlights the statistics . participants had to choose between doors marked ` beautiful ' and average ' dove has launched new #choosebeautiful campaign .\nthe town of garnet in montana was established in the 1860s by miners looking for gold and silver . at its peaked there were about 1,000 residents , but garnet was ravaged by fire in 1912 and later deserted . locals believe it is haunted with the spirits of former residents , especially children . the u.s. bureau of land management is looking for workers to operate garnet as a tourist stop . there is no electricity or plumbing , but they would be paid and given food and housing . the blm was inundated with responses after an ad was placed in the local newspaper .\npresident obama abruptly left the white house after reporters were sent home for the day sunday evening . press pool reporters were perplexed as they questioned whether something serious had happened . the president , michelle and their girls hiked through great falls park in virginia for around 50 minutes until a light rain sent them packing .\npete evans dropped as a celebrity ambassador by food chain sumo salad . the salad chain are denying this is related to his paleo controversies . evans ' infant cookbook bubba yum yum : the paleo way was set for release on friday march 13 but was delayed due to health concerns . it is co-authored with blogger charlotte carr and naturopath helen padarin . the book is becoming a self-published digital book released this month .\nwiley bridgeman , 60 , and kwame ajamu , 57 , sentenced for 1975 killing . key witness , 12-year-old boy , later recanted his testimony last year . ajamu spent 27 years in prison , bridgeman spent almost 40 behind bars . third inmate , ricky jackson , received $ 1million in march . ajamu and bridgeman , who are brothers , received death sentences at age 17 and 20 , respectively .\npaula dunican paid # 25 for the baby blue coat at her local branch of asda . when she took it home she noticed a ` seeping ' stain on the back of coat . she then discovered the reptile 's crushed body on the garment 's lining . the supermarket has apologised and offered her a # 40 voucher and refund .\nandros townsend has praised tottenham hotspur team-mate harry kane . townsend on england 's new striker : ' i have always said to people that he is the best finisher i have ever played with ' england drew 1-1 in italy on tuesday night as townsend and kane starred .\nformer secretary of state landed tuesday night at washington reagan national airport after a first-class flight from boston . clinton stared ahead wordlessly , walked and did n't acknowledge questions as daily mail online asked whether she had made mistakes in benghazi . deadly attacks , carried out by an affiliate of al qaeda , claimed the lives of u.s. ambassador to libya chris stevens and three other us personnel . special congressional committee investigating circumstances before and after the attacks ; its report will come out during 2016 presidential campaign . questions remain about clinton 's alleged failure to protect her diplomatic outpost , and the reasons she cited for the debacle after four flag-draped caskets came home . u.s. intelligence knew at the time that benghazi personnel were aware they were under attack , but clinton and other obama administration officials blamed an out-of-control protest linked to an anti-islam youtube video .\nconfederate gen. robert e. lee surrendered to union lt. gen. ulysses s. grant on april 9 , 1865 . the surrender in appomattox , virginia , is considered a milestone event in the ending of the civil war . re-enactors gathered in appomattax for a re-enactment of the battle of appomattox courthouse .\nnicholas dematteis , 39 , flew into a rage while at restaurant bocca east during brunch on saturday afternoon . he demanded free meal around 4pm because of slow service , police said . witnesses said he spewed homophobic slur at a manager before grabbing him by the neck and slamming him into bar and hurling him into woman . he has been arrested and charged with assault following the incident .\nnick abendanon was sublime in clermont 's 37-5 win against northampton . abendanon is ineligible for england because he is playing overseas . toulon flanker steffon armitage is in the same predicament . the rfu can invoke an ` exceptional ' clause to select overseas players . but this clause could create tension in the england camp .\ndavion only , 16 , captured hearts around the nation in 2013 when he made a plea for a family to ` love him forever ' later this month he will officially be adopted by his old caseworker connie bell going and her family . davion has been living with her two daughters and another adopted boy since december . ms going admitted it has not always been easy but says it is worth it and ` everyday it gets a little bit better '\ncharlie sumner , 20 , invaded pitch at reading 's madejski stadium in march . he did four front flips during fa cup clash before stewsards tackled him . sumner , from wokingham , faces three-year ban for home and away games . but he said he has no regrets and that his family had ` seen the funny side '\nbarr has macular degeneration and glaucoma , eye diseases that get progressively worse and can steal vision . the risk for both diseases goes up for everyone after age 60 . sun exposure can up the risk for glaucoma and macular degeneration .\na dog owner found cocktail sausages laced with poison when walking pet . the clutch of sausages were hidden among the grass on the cuckoo trail . each sausage packed with so much poison one could have killed a dog . sussex police is warning dog owners about spate of poisonings in the area .\naudrey pekin says she was brutally raped while on family holiday to bali . ms pekin claims she was raped by nigerian national henry alafu . pekin family has questioned why mr alafu was not arrested by police . ` he went from a man to a monster , ' ms pekin says of her alleged attacker . mr alafu allegedly raped ms pekin twice , once in a home and once in a cab .\nmartha pease : hillary clinton got her presidential bid launched by reframing who she is , what she 's about . she says clinton took a low-key , unconventional approach , unlike marco rubio 's standard announcement .\nashley arenson said dan fredinburg , 33 , made those around him feel special . was one of four americans to die at mount everest base camp on saturday . she said he returned to the area following the devastating avalanche in 2014 . the engineer had been mapping out the area for google maps since 2013 . arenson urged people to live life to the fullest , because that is what dan did .\nnikki kelly , 24 , kept needing the toilet and believed she had period cramps . she was actually in labour and gave birth to her son on the bathroom floor . her pregnancy came as a shock as she had been on the contraceptive pill . she continued to have periods , and had no baby bump and no cravings .\ntv presenter lisa oldfield had 5.5 litres of fat removed by liposuction . oldfield got surgery after her son drew an unflattering picture of her . ` it was a giant tummy and stick arms and legs ' she said of the drawing . ` now i have a waist ! ' oldfield said after $ 10,000 procedure . oldfield is married to radio host and former one nation politician david .\nitalian astronaut samantha cristoforetti wore the uniform on friday . together with nasa astronaut terry virts she captured the spacecraft . on board it had 4,000 lbs of supplies - including a coffee machine . it will remain at the iss for a month before returning to earth .\naustin carey and jay rawe were involved in near-fatal base jump last year . the jump from perrine bridge went wrong and the pair spiraled 500ft down . men suffered fractured vertebrae and mr carey was told he may never walk again because of the severity of his injuries from the jump . both miraculously recovered and have returned to the sport - mr carey back to the site of the near-fatal jump almost a year after the accident .\nmanny pacquiao posed for a picture with jeremy lin and mario lopez . the filipino took to instagram to post snap of his ripped physique . pacquiao is counting down the days ` until the blessed event ' in las vegas . read : floyd mayweather admits he no longer enjoys boxing ' click here to watch pacquiao 's open media workout live .\nwarning graphic content : attacker targeted crowd of military personnel and civilians in jalalabad . 35 people died and 125 were injured after the suicide bomber detonated an explosive-laden motorbike . islamic state has since claimed responsibility and the country must stand united , president ghani said .\nthree blackburn players set to give evidence in trial of pensioner . police say gesture was made as visiting players applauded their fans . boro had been ahead until rudy gestede scored a late goal .\nwoman was watching the pittsburgh pirates at pnc park when she was hit . was making her way back to her seat when the ball slammed into her head . horrifying incident caused a 22-minute delay in the game on monday night . the pirates issued a statement saying she had regained consciousness by the time she was taken to hospital .\ndonald graham , 62 , murdered his wealthy heiress lover for her money . property developer janet brown 's body has never been found . he was jailed for life for the murder which was motivated by greed . graham stole more than # 800,000 from ms brown to fund his love of supercars and a lavish lifestyle - but has been ordered to pay back just # 1 .\ndavion only took to the pulpit to find a forever home . after some setbacks , his family is set to make it official in april .\nclaudetteia love , 17 , had planned to go to her prom with group of friends . but principal patrick taylor ` told her she was not allowed to wear tuxedo ' . said the decision was part of the monroe , louisiana school 's dress code . decision sparked an outpouring of support for student across the nation . now , school has reversed its decision - claudetteia is able to wear tuxedo . openly gay teen said she was ` thankful ' and ` looking forward ' to the prom . she is a top student and has a full scholarship to jackson state university .\nthe viva las vegas rockabilly weekend is an annual four-day music festival that takes place over easter . it also puts on north america 's biggest pre-1960 's era car show . an estimated 20,000 attendees flock to the orleans hotel and casino for the event each year .\nresearchers in jerusalem found pregnancy helps regenerate tissue . suggest pregnancy could restore mother 's muscles ' ability to regenerate . claim mice ` got youth serum injection ' from babies they were carrying .\nkaren wakefield and family appeared in bbc people like us documentary . mother-of-two was fined for taking daughter out of school to go to turkey . but she refused to pay the fine and could now be jailed for three months . mrs wakefield said her and her husband could also be fined # 1,000 each and she ` does n't like being told ' when she is allowed to go on holiday .\nclooney , 37 , appeared at national press club to address imprisonment of former maldivian president mohamed nasheed . high-powered lawyer was joined by nasheed 's wife , laila ali . amal clooney told reporters she will appeal to us government to put pressure on maldivian officials in order to secure nasheed 's release . george and amal dined in new york city with her parents tuesday .\nteen with deadly brain tumour has almost raised $ 80,000 . the money is needed to fund his life-saving brain surgery . 18-year-old jackson byrnes has stage four brain tumour . he was told by doctors it was too aggressive to operate on . instead he found a neurosurgeon who would do the operation . he must find $ 80,000 by tuesday night to pay the surgeon up front . jackson byrnes and his family have used crowd funding to raise money .\npatrick de koster will go ` around the world ' to talk about kevin de bruyne . the wolfsburg midfielder is wanted by manchester city and bayern munich . de koster has admitted having talks with city chiefs this season . but he has not spoken to manchester united about a move for his client . de bruyne remains happy at wolfsburg and could yet remain at the club .\nbrady eaves , 18 , was filmed biting the head off a live hamster at a party . he is the stepson of john arthur eaves jr , democratic candidate for mississippi governor in 2007 , now an esteemed pro-life lawyer . the teenager is a university of mississippi scholar , phi delta theta frat member , star soccer player , was a top student at private school in jackson . sources told dailymail.com he is an ` animal lover ' with a pet raccoon . they said eaves and his friends fed the hamster vodka and ` hot-boxed ' its cage with marijuana before the sickening stunt was caught on camera . eaves could be charged with felony animal cruelty charges if it was filmed in florida , where there is 5-year maximum jail term and $ 5,000 fine .\nbarcelona boss luis enrique played down neymar 's angry reaction . the brazilian was unhappy to be taken off with 20 minutes to play . enrique says that he makes the final decisions and they must be respected . click here for all the latest barcelona news .\n` project elysium ' app creates a ` personalised afterlife experience ' . it transforms a person 's movement and memories into digital models . some say this prevents people from moving on from losing a loved one . project elysium has been entered into the oculus vr jam 2015 contest .\nnew app , honest , allows users to pose questions and remain anonymous . users can post questions they 're too embarrassed to discuss with friends . questions cover sexual dysfunction , secret crushes and family dilemmas . other users weigh in with their advice about how to handle sensitive issue .\nchristopher starrs was spared jail in an ` act of mercy ' by judge in january . but senior judge has now said his colleague took ` his eye off the ball ' . nicholas cooke qc said wheelchair-bound starrs should have been jailed . but added starrs should thank his lucky stars as sentence allowed to stand .\nyervand garginian , a 60-year-old melbourne bus driver , has gone viral . he filmed a video showing australians how to cook a ` real barbecue ' his daughter posted it online and it received more than five million views .\nshow will return with a one-hour special , followed by spinoff , star john stamos says . he announced the show monday night on `` jimmy kimmel live ''\nkenneth morgan stancil iii , whose face and neck are covered in dark , self-administered tattoos managed to hitch a ride with a woman to florida . he was arrested in florida and will be extradited back to north carolina to face open murder charge . in court on tuesday , stancil said he ` ridded one last child molester from the earth ' ; and said lane had sexually assaulted one of stancil 's relatives . stancil lists ` white power ' as his interests on facebook and has white supremacist tattoos , including an ' 88 ' to signify ` heil hitler ' .\nlewis ferguson was mucking out the stables as usual on thursday . favourite merrion square threw jockey in a freak fall on wednesday . his spectacular double somersault fall made him internet sensation .\nbournemouth lead the championship table in bid for promotion . eddie howe is hoping fans can inspire cherries to reach premier league . norwich play middlesbrough in a top of the table clash on friday . watford boss slavisa jokanovic is not looking beyond birmingham clash . derby , ipswich , brentford and wolves are in the hunt for a play-off place .\nliverpool striker mario balotelli has been racially abused online . anti-racism group kick it out have revealed thousands of abusive posts . brendan rodgers has slammed any discrimination as unacceptable . stoke city boss mark hughes has also called for a crackdown on racism .\nsteph curry made 94 out of his 100 attempts during the practice session . golden state warriors sit top of the western conference standings . warriors host denver nuggets in regular season finale on wednesday .\nunnamed girl was targeted by threatening posts on social network . was taken home from lone hills middle school in san dimas , california . investigators believe fellow students are posting the threats . in one message a user threatens to bring a knife to school and stab the girl .\nelected diversity officer bahar mustafa caught in racism and sexism row . facebook picture shows her faking tears in front of a ` no white men ' sign . she was criticised after planning diversity meeting that banned white men . goldsmiths university students arranged meeting to ` diversify curriculum ' .\na young man has died after he was stabbed during a violent brawl . greg gibbins and his friends were at a central coast hotel on sunday night . the 28-year-old was stabbed and killed outside a late night pizza store . his 25-year-old friend was also attacked when he tried to help mr gibbons . he remains in a serious condition and is expected to undergo surgery . the offender fled the scene and police have n't found a weapon . investigations are continuing and police are appealing for any witnesses .\nschool children as young as nine are posting public ` hot or not ' videos . some more cutting clips can gather over 2,000 views online . what effect will this new form of humiliation have on the next generation ?\nfarmer from eastern china confesses he 's puzzled by the newborn kid . the 20-day-old goat was born with four fore legs and two hind legs . owner says unusual animal has an extraordinary appetite and is playful . extra legs wo n't be removed as farmer wants kid to grow up naturally .\nchris ball made a video to say goodbye to his family before taking his life . he told them they were not to blame for his disease and that he loved them . he had been suffering from depression for two and a half years . he was turned away from brisbane hospital due to no beds 11 days earlier . brisbane man , 21 , is the fifth family member to have committed suicide . his mother kerrie keepa has started a petition to call on the government to allocate more beds for suicidal youths in hospitals .\nbronze buckle and whistle from ad 600 found in cape espenberg . but bronze-working had not been developed at this time in alaska . scientists believe artefacts were created in china , korea or yakutia . site may have been home to ` birnirk ' culture , whose people travelled on both sides of the bering strait .\narsenal target joe gomez is one of the most wanted british youngsters . he has enjoyed a breakthrough season at charlton and is rated at # 8m . gomez is currently playing at right back but could be a centre half . manchester city want more young english players and are arsenal 's biggest threat .\n32-year-old , known as saka , claimed he fled to britain to escape taliban . he admitted his father was in charge of 65 taliban troops but claimed he only joined group over safety fears . afghan , whose identity is secret , had initial claim rejected by theresa may . but immigration judges now say saka can stay under human rights laws .\njimmy anderson becomes england 's leading test match wicket-taker . anderson surpasses sir ian botham will 384th test dismissal . 32-year-old shuns the limelight - so unlike the angry youth we so often see on the field . botham was always larger than life and in your face . both are stubborn and do n't like to be told to do it any other way .\nlouise smith , 38 , has been convicted of fraud and is now on the run . cctv footage showed her plucking two hairs from the head of a young girl . she then planted them in her food and complained to staff at carlisle pub . staff said it became clear that smith could not afford to pay for # 21 dinner .\nyan tai weighed just over seven stone when she began dating you pan . but two years on and she has ballooned to almost double her weight . you splashed out on meals everyday in a plan to keep her by his side . he has now proposed to yan and promised to keep on feeding her .\ncharly was patrolling venice beach with his minders tuesday . somehow a tagger managed to write ` rbs ' and an arrow on his flank . the silver paint was easily cleaned off . but police want to find the person responsible and have appealed for help .\nprotesters angry over bribery scandal involving state-run oil company petrobras . brazilian president dilma rousseff also is struggling with an economic downturn .\nfloyd mayweather will fight manny pacquiao in las vegas on may 2 . the bout is expected to generate $ 300 million in revenue . iyanna mayweather has been in training camp with her father floyd .\nteachers say pupils not ready for ` formal sitting down stage ' before seven . play helps children develop communication and social skills , they believe . want to follow lead of finland where 15 minute play time follows lessons . union to ask for more play time at its conference in harrogate this weekend .\nbusinessman has been cleared by court of session to become director . dave king hopes sfa will pass him to take role as ibrox chairman . king is the largest shareholder of the former scottish champions .\nkayahan wrote some of turkey 's best-loved pop songs . the singer was first diagnosed with cancer in 1990 . he most recently performed in february in istanbul .\npresenters met with top gear executive producer andy wilman in london . came hours after mr wilman , a close friend of clarkson , quit the bbc . meeting fueled speculation that team will reunite to launch show with rival . james may says bbc should not attempt show with ` surrogate jeremy ' .\ndavid cameron enjoyed visit to bristol with chancellor george osborne . visited bristol and bath science park and earlier went to poole in dorset .\nshoppers are taking advantage of cheaper eggs , milk , cheese and meat . cost of staples has been slashed as supermarkets compete for customers . bigger stores competing with rise of budget chains aldi and lidl on price . prices in shops are 2.1 per cent lower this year than 12 months ago .\nengineers at the university of sheffield made the discovery . tampons glow under uv light when they have absorbed detergent . this enables experts to work out where pollution is coming from . innovation could stop sewage being accidently shunted into rivers .\nlegendary former australian cricketer and commentator richie benaud died on friday at the age of 84 of complications from skin cancer . his wife , daphne , declined a government offer for a state funeral . instead , there was a smaller service attended by family and close friends . in the memorial booklet at the funeral , benaud 's family described him as ' a special person who means so much to each of us in many different ways ' click here to watch 10 of richie benaud 's finest moments .\ndoncaster posted highlights video on the club 's youtube channel . the yorkshire side drew 0-0 with fleetwood in league one encounter .\neverton defeated 10-men burnley 1-0 in their premier league clash at goodison park . tom heaton saved a penalty from ross barkley after aaron lennon was fouled in the area . kevin mirallas scored the toffees ' winner with a drilled shot after initially miskicking the ball . clarets forward ashley barnes was sent off for a second bookable offence on the stroke of half-time . mirallas was fortunate to escape being dismissed for a high challenge on george boyd .\nmigrants rescued in augusta , italy tell cnn why they fled . they were packed onto two barely seaworthy boats , tug captain said .\ncory booker : the unfortunate reality is that the united states leads the world in incarceration , not education . at the same time , we are losing the increasingly important race to educate our citizens .\njames schoenfeld who kidnapped 26 children and their school bus driver in chowchilla nearly 40 years ago was granted parole on wednesday . schoenfeld , 24 at the time , his brother , richard , and a friend , fred woods , were convicted of the 1976 caper . the kidnappers were inspired by the 1971 film clint eastwood film dirty harry in which the antagonist kidnaps a school bus for ransom . they kept the children ` buried alive ' in trailer that had been buried into a hillside while they negotiated a ransom . parole date has not yet been set and the decision could take months .\nveteran tv presenter richard wilkins was moved to tears as he retraced his grandfather 's anzac footsteps . reading his `` papa 's '' war diaries ` lit a flame of interest ' to head to gallipoli . he cracked when standing on anzac cove thinking of how ` the poor buggers found themselves in hell ' .\npolice officer in sand springs , oklahoma , shot donald allen on april 11 . brian barnett , 25 , killed allen , 66 , after man made threatening statements . bodycam footage showed allen advancing with loaded , 22-caliber pistol . sand springs police department turned findings over to tulsa county da . video was released after being recovered from a malfunctioning camera .\nandrew hutchinson raped two women who were under general anaesthetic . the 29-year-old was working as a nurse at john radcliffe hospital oxford . admitted 23 sexual offences last month and is facing jail when sentenced . in 2009 a student nurse complained he had inappropriate photoghraphs . the hospital trust did not think there was sufficient evidence to tell police .\nmarc-andre ter stegen is eager to impress barcelona boss luis enrique . ter stegen is yet to make his la liga debut for the catalan giants . german goalkeeper has been reduced to champions league appearances . barcelona face psg in champions league quarter-final tie on wednesday . psg-barca clash to be refereed by mark clattenburg and english officials .\nanti-semitic attacks worldwide have surged by 38 per cent , study reveals . france remains the country with the highest number of incidents . last year it registered 164 anti-semitic attacks , compared to 141 in 2013 . earlier this year , four hostages were killed at a paris kosher supermarket . britain was home to 141 violent incidents , after registering 95 a year earlier .\nsinger has twice the fortune of nearest rivals , boys from one direction . ed sheeran saw biggest rise of # 13million , taking him to seventh place . sam smith is new entry with # 12million , on a par with florence welch . paul mccartney and wife nancy shevell still top the adult rich list .\nplanes collide after one desperately attempts to make emergency landing . three people hospitalised after the crash at an airport near melbourne . both pilots involved in the crash believed to be students . passengers stranded in one plane forced to climb to safety through tail .\ntim sherwood saw aston villa go behind twice before clinching a point in tuesday 's 3-3 draw with qpr . christian benteke scored a hat-trick for the home side as the relegation strugglers shared the points at villa park . villa have six games to secure premier league safety - including trips to man city , tottenham and southampton .\nmr sondheimer frantically tried to break down cockpit door before crash . photograph of the captain is the first to have been released since disaster . it has emerged lubitz was planning the attack online using name skydevil . display created before staff learned lubitz deliberately crashed the aircraft .\neight guards at nauru detention centre have been suspended . they posted ` anti-islamic ' messages on social media and were pictured with pauline hanson at a recent reclaim australia rally . the men contravened a policy that they display ` cultural sensitivity '\ncristiano ronaldo scored his 300th goal for real madrid -lrb- in all competitions -rrb- against rayo vallecano on april 8 . portuguese forward has achievements marked by special shirt presented to him by club president florentino perez . ronaldo and his real madrid team-mates host malaga on saturday as they look to catch la liga leaders barcelona . french striker karim benzema will miss the game after picking up a knee injury against atletico madrid .\nfamed author 's second novel , go set a watchman , is due out on july 14 . authorities feared lee had been pushed into releasing the long-lost sequel . she previously said she wanted mockingbird to be her only published work . state investigators went to monroeville , alabama , to speak with her . said they found nothing amiss and have closed their investigation .\nandrew silicani , 23 , of cheyenne , wyoming , pleaded guilty on monday to trying to hire a hit man to kill his mother and stepfather . the prison inmate had wanted to collect their life insurance money and inherit their house . silicani , who was serving a five - to seven-year sentence at the state prison in rawlins , now faces up to 40 years at sentencing this summer . silicani told the judge he regarded his actions as ' a big error in judgment -- i 'd take it back if i could ' .\namanda bailey , 26 , says she does n't regret going public with her story . the waitress revealed in a blog how john key kept pulling her hair . she wrote that she gained unwanted attention from him last year at a cafe . ms bailey said mr key kept touching her hair despite being told to stop . owners say they were disappointed she never told them of her concerns . they further stated mr key is popular among the cafe staff . the prime minister defended his actions , saying he had already apologised . he also said his pranks were ` all in the context of a bit of banter ' the waitress was working at a cafe called rosie in parnell , east of auckland .\npolice said the circumstances of the disappearances of hannah wilson and lauren spierer are ` eerily similar ' spierer , 20 , went missing in 2011 after a night partying with friends ; her body has never been found and no criminal charges have been filed . wilson 's body was found on rural land about 10 miles away last friday and it is believed she died of blunt force trauma . daniel messel , 49 , has been arrested in her death ` after a cellphone at her feet was traced back to him and he had blood inside his car ' .\njanet muller was found dead in a burning car in ifield , crawley , last month . university of brighton student , 21 , died as a result of smoke inhalation . murder squad detectives release cctv footage of her last known movements .\ngary player considers tiger woods grand slam at 24 as best golfing feat . south african will attend his 58th masters this week at augusta national . player is excited at the prospect of rory mcilroy joining exclusive club . mcilroy could become only the sixth player to win all four majors .\nxavier denamur claims most dishes in french bistro are n't made on site . he said seven in ten meals are factory-made then reheated in microwave . signs that france 's crown as top culinary destination in world is slipping . french ministers admitted scheme to introduce a homemade label failed .\naston villa face liverpool at wembley in the fa cup semi-final on sunday . liverpool will have to keep villa 's in-form christian benteke quiet . the belgium international has scored eight goals in six games for villa . striker says that new manager tim sherwood has given him freedom . benteke struggled for form earlier this season after recovering from injury . a year ago he ruptured his achilles and missed the world cup . benteke returned in october but did not hit top gear straight away .\nraheem sterling is quite within his rights to get the best possible deal . the only issue right now is how he 's choosing to go about doing it . liverpool forward should realise that # 100k-a-week is a generous offer . switching to another club now would not be good idea for his development .\nalbert davison made a fortune through six-figure bets on his own horses . he and wife beautician penny ann davison , 59 , fought a bitter battle through the divorce courts for four years over his fortune . after his death in 2011 , she claims she is owed more from his legacy . she claims his death has allowed him to avoid a mammoth tax bill .\nukip hope graham thorpe will vote for them at the general election . thorpe signed a form supporting right-wing party a year ago . he had enjoyed ' a few drinks ' at the time and said he will read manifestos . derek pringle has been approached to become cricket consultant of oman . bbc say peter alliss was not chewing gum during masters interview . former footballer louis saha has set up a company to advise players . consternation over if louis smith should be at european championships . mark pougatch missed a bbc interview with champion jockey tony mccoy . jimmy anderson 's century of tests includes 10-ball farce from antigua .\ntoby huntington-whiteley , 25 , and cricketer flintoff , 37 , model in campaign . men 's clothing brand jacamo caters to larger and taller men . sportsman flintoff has been face of brand for 4 years . this is second tv ad job for dorset boy toby .\nchristopher stefanoni 's son was pushed into low-ranking team in 2010 . followed father 's plans for apartment complexes in darien , connecticut , which included affordable housing . stefanoni has filed lawsuit claiming townsfolk turned on son to punish him . darien , a wealthy new york city suburb , has a median income of $ 200,000 . the town is 94 per cent white , with only 70 black residents - 0.33 per cent . little league and the town both deny there is any connection .\nstudy at stanford university has been hailed a ` tour de force ' raises hopes the body 's immune system could be trained to attack a range of cancers , including melanoma , pancreatic , breast and lung . process relies on the same mechanism as that which causes animals ' bodies to reject organ transplants . expert said results are ` impressive ' , adding ` you see tumour eradication .\niraqi officials say izzat ibrahim al-douri , 72 , has died in fighting in tikrit . he was one of saddam hussein 's most trusted henchmen in ba'ath party . was one of the most high-profile officials to evade capture after invasion . had a $ 10m bounty on his head and was one of the us 's most wanted men .\nmajor bank warns against labour government propped up by the the snp . morgan stanley says anti-austerity agenda would lead to bank rate hike . second bank says labour would be dragged to the left by the nationalists . report a blow to the party 's attempt to show voters economic competence .\nnetanyahu says third option is `` standing firm '' to get a better deal . political sparring continues in u.s. over the deal with iran .\nblake , 27 , welcomed daughter james with ryan reynolds in january . actress has been parading her new figure promoting latest movie . swears by ` gentle ' exercises such as hiking and bike rides .\nmauricio pochettino takes tottenham to his former club southampton . saints fans encouraged to wear orange for ` ronald koeman day ' clothing company has printed t-shirts with the dutchman 's quote : ` the key is to believe in ourselves ' .\nworkers aged 18-25 saw wages rise eight times faster than over 50s . in three months , 5.4 % of 18-25-year-olds changed jobs , 1.2 % aged 50-64 . ons says young have ` willingness to move to higher-paying positions '\njames faulkner joins lancashire as their overseas player for the summer . australian was named man of the match during world cup final win . he will join up with county side after indian premier league commitments .\npolice seized rafi , 10 , and dvora , 6 , in a maryland park on sunday and their parents say they were n't reunited by cps for hours . scientists danielle and alexander meitiv believe in ` free range parenting ' meaning the children are afforded total independence from infancy . the meitivs were found guilty of neglect in march . after sunday 's incident they were forced sign a paper pledging not to leave them unattended .\nrare tote is so exclusive that it ca n't even be brought in store . experts say it 's an extremely good investment as only increases in value . kim kardashian and victoria beckham are both fans of hermes .\ndesigns made from real gold were shown on the catwalk in xi'an china . models strutted their stuff in underwear and a shirt made from gold . the items cost around # 40,000 each but are not intended for sale .\nsteve mcclaren has been linked with a number of jobs including newcastle . derby are chasing a play-off place and are sixth in the championship . the rams have been impressed with sean dyche in the premier league . derby want the burnley boss to replace mcclaren if he leaves this summer .\nfive-month-old elijah mccrae 's parents made a bucket list for their son . baby elijah tragically died with only one item ticked off on the list . his parents , jessica andrew , wanted to show their son the world . little elijah had the fatal genetic disease type 1 spinal muscular atrophy . the list included a trip to queensland , a ferry ride and watching the sunset .\nmicah richards ' manchester city contract ends this summer . currently on loan at fiorentina , richards wants a return to england . was one of english football 's golden boys as a youngster . aston villa boss tim sherwood willing to snap him up on a free .\nputin said calls show contact between insurgents and us secret services . he claimed us helped chechen extremists wage war against russia . president said george bush promised to ` kick the ass ' of officers involved . he made claims in documentary aired today on state-owned russian tv .\nleah williamson scores penalty as england earn 2-2 against norway . uefa ordered the final 18 seconds of the qualifier to be replayed after a refereeing mistake . the action lasted 65 seconds from point whistle was blown to full-time . referee marija kurtes incorrectly awarded an indirect free-kick to norway for encroachment after disallowing england 's penalty on saturday . england were 2-1 down to norway at the time in the 96th minute . german kurtes , 28 , has been sent home following her error . three lions earn 3-1 victory against switzerland meaning a 2-2 will be enough for european championship qualification . norway beat northern ireland 8-1 to keep things tight in group 4 . it is the first time ever that a decision like this has been taken by uefa . watch video below of the controversial penalty incident . read : graham poll 's expert verdict on uefa 's bizarre decision .\ntaylor alesana of fallbrook , california took her own life on april 2 after being bullied because she was transgender . the 16-year-old had a popular youtube channel in which she discussed her struggles and the bullying she faced . she said in one ; ` i 've lost tons of friends , tons . and it 's been hell . i go to school every day , and i get my lunch and i sit down alone ' the north county lgbtq resource center said the young woman did not have the support she needed from her school and adults . in one of her final videos she said ; ` my biggest advice to anyone who 's transgender and struggling ? you 're becoming yourself ' . ` taylor was a beautiful and courageous girl , and all she wanted was acceptance , ' said the resource center in a statement .\nalastair cook feels jonathan trott is ready to return to the england squad . trott left the international stage last year with ` situational anxiety ' the batsman has been impressive for his side warwickshire .\nrestaurant critic and festival curator leo schofield said living in tasmania was the unhappiest time of his life . he said the government cut funding to a festival he was setting up by 25 % . the struggle for funding led him to develop acute depression . he criticised locals for wanting to ` dig it up , chop it down , sell it to the chinese ' spokesperson for state 's tourism industry council said his comments were ` blatant mistruths '\ntwo-thirds of new uk fathers are now over 30 . the older they are , the greater the risk of health problems . increases the risk of epilepsy , autism and breast cancer for baby .\nflames up to 35ft high engulfed 70 hectres of the st catherine 's hill nature reserve in christchurch , dorset . a lack of rain combined with strong 45mph winds saw the blaze spread across the heathland dangerously quickly . more than 80 firefighters spent six hours tackling the blaze which is thought to have wiped out thousands of animals . dorset police confirmed they are treating it as suspicious after evidence of three deliberate fires was discovered .\nthe teardrop-shaped island was ravaged by the tsunami in 2004 . the holiday industry there is recovered and expanding with new hotels . see the uda walawe nature reserve elephants and tea plantations in kandy .\nsam holtz beat out 11.5 million entries to win the espn tournament challenge on monday . this as he selected duke to win the ncaa title game , which they did by overcoming the wisconsin badgers 68 - 63 . sam should now be eligible for the $ 30,000 grand prize of a $ 20,000 best buy gift card and an all-inclusive trip to hawaii this november . sam , 12 , is not eligible however because age restrictions state that entrants must be 18 years old . sam says he does not mind missing the prize , and though he is a little ` irritated ' he thinks the best idea if for espn to reward him with an xbox . the sixth grader also shared one of his bracket tips ; ` just pick the team that you like and pick whoever you want ' .\nmanny pacquiao faces floyd mayweather in $ 300m showdown on may 2 . pac-man has released own entrance song ` lalaban ako para sa filipino ' the 36-year-old also directed the music video ahead of las vegas clash .\nnepal is a popular place for israeli couples to have surrogate children . an estimated 10 to 15 surrogate mothers are due to give birth soon in kathmandu .\nroberto martinez likens burnley to his former side wigan athletic . sean dyche 's men are currently in the bottom three but are playing well . martinez described wigan as fearless ahead of their clash on saturday . click here for all the latest everton news .\njacqueline martin has two themed houses using inspiration from her favourite childhood book . the wonderland house and looking glass cottage are available to be booked for parties and hen dos . unique details include a custom-made tea party table with quotes from the book , and teacups for seats .\nukip have claimed to be the only party fighting westminster political pr . but the deputy leader paul nuttall posed for a photoshopped picture . mr nuttall was pictured clutching a vintage picture book from 1942 . rows of books are behind him - photoshopped to look like there are more .\nbritish officers forced to accept four-day inspection from moscow experts . uk and 11 other nato countries set to contribute to the naval exercise . will involve 58 warships and submarines , 50 aircraft and 3,000 land forces .\neduardo vargas put qpr ahead with a spectacular strike from 25 yards after 15 minutes . charlie austin doubled the lead with a header 20 minutes later , bobby zamora made it three . victor anichebe pulled one back for west brom before youssouf mulumbu was sent off and joey barton scored .\ncraoiline wozniacki attended basketball game with j.j. watt on monday . the pair watched the ncaa final four college basketball championship . duke university 's blue devils beat the university of winconsin 's badgers .\nanother soldier received # 411,000 because of psychological problems . mod said it was misleading to compare compensation scheme payouts .\nan afghan lawmaker is among 64 people wounded in the attack , police say . taliban spokesman denies his group was responsible for the attack .\nus scientists used drug oxaliplatin to fire up cancer-killing immune cells . drug blocks ` b-cells ' that put a brake on body 's defences against cancer . there are currently few options in cases of aggressive prostate cancer .\nralph cramer , 70 , and his wife , lynn , 59 , were returning home from the creekside café at 9 p.m. on sunday when the crash occured . first responders arrived to find they had died from multiple traumatic injuries . the vehicle started to skid at a slight left turn , then went off the road and hit an embankment . the vehicle was a restored 1923 model t ford with new elements .\n75 people were inside korean union united methodist church in rahway . 13 were treated for minor injuries and one woman had a serious but non-life threatening head injury . parishioners were from the manantial de vida pentecostal congregation . the cause of the ceiling collapse is currently under investigation .\nanyone ` inciting ' extreme thinness faces prison and fines of up to # 7,000 . new law voted through by mps to prevent the ` vicious circle of anorexia ' condition affects 40,000 people in france and has very high mortality rate .\n55 dead greyhound carcasses found dumped in coonarr , queensland . a 71-year-old man and 64-year-old woman were arrested and charged . the pair will appear in the bundaberg magistrates court on friday .\nindonesia protests executions , says did n't receive formal warnings . both women had worked as domestic helpers in saudi arabia before being convicted of murder .\nafter the ` storm of a century ' finally dissipated last week , sydneysiders believed the worst was over . then on anzac day large hailstones blanketed sydney and the blue mountains in a ferocious downpour . hailstones of up to 2cm were reported in some areas , as the storm transformed parts of the city into ` snowfields ' . the weird weather conditions can be attributed to some degree to climate change , according to csiro . seven buildings , including five 200m long factories , collapsed under half a metre of hail in western sydney . state emergency services attended over 800 calls for help before the storm cleared at around 7pm .\nglenn roeder joins sheffield wednesday as part of new management team . the former newcastle boss joins stuart gray who is currently in charge . adam pearson has also been brought on board for the committee .\nkfc and mcdonald 's require job applicants to fill out a detailed quiz . questions ask ` describe your interest in food ' and ask if candidates agree that ` it 's okay for an employee to take a little food if they are underpaid ' others describe scenarios and offer multiple choice responses . the tests are designed to rank workers by their values and work ethics .\ndoes finding the perfect pillow really need to break the bank ? our femail tester put a selection of the best pillows to ultimate sleep test . lidl 's # 3.49 microfibre pillow performed just as well as luxury goose down !\ndeborah kane , from manchester , had a melanoma behind her eye . doctors think it may have been a result of wearing cheap sunglasses . she has also had two cancerous lumps removed from neck and leg . mother-of-two was badly burned in lanzarote at the age of 15 .\nalexis sanchez had offers from several clubs when he left barcelona last summer , including arsenal and liverpool . he chose to join arsenal in a decision that delighted boss arsene wenger . sanchez has made an instant impact in english football and has scored 19 goals for the gunners so far this season . arsenal face liverpool in the premier league on saturday as the two sides compete for a top-four finish .\nelevators at the world trade center will show visitors the growth of lower manhattan as they travel to the observatory when it opens next month . it will take visitors just 47 seconds to reach the 102nd floor observatory .\nmichael vaughan was understood to be talking to the ecb on thursday . vaughan has emerged as favourite for new role of director of cricket . paul downton was sacked as england 's managing director on wednesday . vaughan will want unprecedented responsibility if he is to take up role . alec stewart and andrew strauss also being considered for the role .\nthe billboard erected in kenosha , wisconsin , features the smiling face of officer pablo torres after he shot dead aaron siler , 26 , last month . torres is currently on leave while an investigation is being held into the deadly shooting . siler 's family and friends have called the billboard ` disrespectful ' and are asking for it be taken down . the kenosha professional police association claims the billboard is simply to thank the local community for its support . torres shot another men 10 days before siler killing .\nno injuries reported in blaze at six-alarm fire at louisville appliance facility . cause for fire , which has drawn 200 firefighters friday morning , unknown . fire department stretched thin as they also rescue flooded residents . building , where up to 50 people would normally work , collapsed at 8.30 am . facility makes appliances such as washing machines , dryers and fridges . acid particles found in smoke near building , but not in downwind plume . residents near plant told to close windows , shut off ventilation to outside .\nwarning : graphic content . chloe knapton , 21 , was attacked when man smashed down her car window . she had surgery after glass was left embedded in her neck after the attack . attack happened while she was driving her car but had stopped in the road . andrew shires , 37 , from holmfirth , west yorkshire is charged with wounding . andrew shires , 37 , from holmfirth , has appeared at kirklees magistrates ' court , charged with wounding the woman . he was remanded in custody until his next appearance at leeds crown court on may 5 . .\nseven-year-old boy has died on family skiing holiday in flaine , french alps . police believe carwyn scott-howell fell to his death after leaving ski slope . it is understood he was looking for his parents when he took a wrong turn . got lost on piste and fell down cliff after taking off skis to try and find them .\nbarry selby from dorset was eating bag of tesco cheese and onion crisps . the 54-year-old discovered a snack shaped like profile of the human skull . he said he was ` shocked ' with the find and has decided to ` keep it forever ' it 's not his first weird food find - he once discovered a heart-shaped crisp .\nmanchester city were beaten 4-2 by their rivals united at old trafford . the defending premier league champions will listen to offers for stars . yaya toure and samir nasri are allowed to leave the etihad this summer .\nbailey murrill became inexplicably paralyzed , losing all feeling in her legs . she was in hospital for 11 days being cared for by her favorite nurse . bailey regained feeling again and was able to stand , surprising her nurse . pair hug and burst into tears in heartwarming video filmed by her mother .\nband of extreme weather predicted to hit an area including chicago , detroit and st. louis , as well as memphis , tennessee , and little rock , arkansas on thursday . storm prediction center estimates that 57 million people live in an area with an ` enhanced risk ' of hail , damaging winds and tornadoes . severe thunderstorms packing 80mph winds and large hail already made their way across central missouri on wednesday . areas that do n't see strong storms on thursday could see heavy rain instead .\na host of footballing legends graced the field to raise money for charity . bazilian ronaldo and zinedine zidane were among the stars taking part . clarence seedorf , fabian barthez and gianluca zambrotta also played . as did jay-jay okocha , david trezeguet and vladimir smicer .\nsevere thunderstorm warnings were issued for blue mountains , the hawkesbury and sydney on saturday afternoon . ` large hailstones , heavy rainfall that may lead to flash flooding and damaging winds ' were forecast just after 3pm . hails stones up to 2cm large were reported while social media users shared images of how the storm transformed various areas into snowfields . seven buildings , including five 200m long factories , have collapsed under half a metre of hail in western sydney . state emergency services attended over 800 calls for help , however the storm had cleared by 7pm .\narsenal forward olivier giroud has scored 18 goals this season . gunners boss arsene wenger praised animal instincts of frenchman . arsenal remain 10 points behind leaders chelsea in the title race . read : arsenal midfielder mesut ozil needs to produce in big games . francis coquelin : giroud can lead arsenal to the premier league title .\nwinger yannick bolasie has excelled under new manager alan pardew . pardew is hoping winger will learn that the grass is not always greener . wilfried zaha left when he was handed dream move to manchester united . but that move went sour and pardew hopes bolasie will learn from zaha .\nmexican restaurant chain cut carnitas pork from third of stores this year . company does n't know when it will be fully supplied again . dunkin donuts , mcdonald 's switching to more sustainably raised meat . farmers need buyers for ` premium ' pig parts after chipotle takes shoulders .\nthe #kyliejennerchallenge is sweeping social media . method involves creating an airlock which forces lips to swell . teens are hoping to emulate kylie jenner 's puffy pout . now a hilarious video shows how you can get the look a safer way . the clip shows a girl sucking on a pringles tube . she then reveals her new lips - which are made out of crisps .\njoe sullivan , 46 , was the first federal prosecutor specializing in high-tech . he has worked in security for ebay , paypal and facebook . as uber 's first security chief he will attempt to curb growing claims . $ 40bn taxi firm accused of not adequately vetting drivers . india driver accused of rape , denver driver of burglary , london driver of sexual assault .\nauthorities believe the two shootings are connected . a suspect leads police on a wild chase , firing at multiple locations . a census bureau guard is in critical condition , a fire official says .\ned miliband was mobbed by a screaming hen party yesterday in chester . he allowed bride on board his campaign bus so she could have a ` selfie ' . bride nicola braithwaite was met with whoops and cheers from 25 hens . labour leader high-fived a few of the women before they had group ` selfie ' . if you were on this hen party , please email jenny.awford@dailymail.co.uk or call 02036154835 .\nmr gordon was forced to quit labor after being accused of domestic violence . mr katter accused the queensland government of assuming mr gordon would quit from the allegations . mr katter said he had been personally subjected to racist attitudes from both major parties in the past .\njohnson wagner loses out to jb holmes after second playoff hole . jordan spieth had crashed out on first hole after all three finish 16 under . englishman paul casey is best-placed brit , finishing four shots back .\nthe germanwings tragedy has ignited debate about depression in pilots . author , vanhoenacker is a senior first officer with british airways . he wants the reader to simply understand his passion for his job .\ngianni paladini has registered as director of bradford 's holding company . the italian has been searching for new club since leaving qpr in 2011 . paladini made attempt to buy birmingham and has been linked with millwall .\nitaly boasts the highest number of unesco world heritage sites in the world . italy does n't know how to exploit treasures , and appears not to care about them , writes silvia marchetti .\nyaya toure has been linked with a transfer with inter milan and psg keen . the manchester city midfielder has struggled for form this season . agent dimitri seluk said club must make the ivory coast star feel wanted . seluk said toure is a club legend and money is n't their motivation . read : manchester city will miss yaya toure when he goes .\nsteve tempest-mitchell had gastric bypass surgery to shrink his stomach . the 56-year-old took drastic measure after tipping the scales at 32st . bradford father-of-three was struggling to control diabetes . almost housebound and was consuming eight cans of fizzy drinks a day . had to be helped onto a plane in a wheelchair or special buggy .\nthere are many different ice cream makers - from budget brand to retro . best rated machine is the chill factor ice cream maker from john lewis . prices range from as little as # 12.99 to a luxury one for # 349.99 .\nteam of scientists discovered new species of extinct pygmy sperm whale . seven million-year-old nanokogia isthmia bones were found in panama . suggest the bone involved in sound generation and echolocation got smaller throughout the whale 's evolution . today 's larger sperm whales are able to navigate under water with ease .\nfair trade photographs aim to focus on the people in sweatshops . reveals tragic tales of staff in bangladesh , cambodia and sierra leone . highlights daily life for children working in appalling conditions . campaigners hoping to make buyers think about origin of garments .\npsg host barcelona in the first leg of their champions league quarter-final . paris saint-germain are without the suspended zlatan ibrahimovic . in his absence , edinson cavani must raise his game as the main attacker . the uruguayan is being courted by louis van gaal at manchester united . cavani will come up against luis suarez who was born in the same town .\ntryster won the coral easter classic at all weather finals in lingfield . jockey william buick predicted bright future for the winter derby winner . godolphin stable dominated the event with three winners in feature races .\napp created to remove posts that might cause problems with employers . users can search for keywords such as ` gay ' , ` black ' or swear words and the software deletes any tweet that mentions them . creator ethan czahor was fired from his job due to offensive tweets . and he said he hopes ` clear ' app will ensure others do n't suffer same fate .\nocean economic powerhouse valued at $ 24 trillion : wwf report . marco lambertini : ocean plays direct role in livelihoods across globe .\niranian president says a nuclear deal would remove a major obstacle for business . `` we can cooperate with the world , '' president hassan rouhani insists . he says , `` we do not lie , '' and iran will abide by its promises on nuclear deal .\ncommunity technology alliance has given 100 free phones to homeless . helps to find shelter , locate soup kitchens and reconnect with families . also allows them to find homes and jobs in world reliant on the internet . homeless woman holly leonard used a free google phone to rent a flat .\nwenger has spoken about the process of selecting arsenal teams . the arsenal manager has eight or nine of the team decided by matchday . but the final decision is made in the hours immediately before kick-off . sometimes the thought process to pick perfect xi takes all week . click here for all the latest arsenal news .\nmongolian khan and nz jockey opie bosson won the australian derby race . bosson 's agent adian rodley was captured celebrating on trackside tv . he did n't realise he was being filmed when his broke into celebration .\nmanning is serving a 35-year sentence for leaking thousands of classified documents . she says she will be using a voice phone to dictate her tweets .\nthe 69-year-old collaborated with nbc 's today show to launch a contest for an elvis-obsessed couple to win the ` ultimate wedding ' the winning duo will get married in the brand new elvis presley 's graceland wedding chapel at the westgate hotel on thursday , april 23 . while she agreed to make an appearance , the woman who wed elvis in 1967 made one thing clear before unveiling the latest wedding chapel to bear his name : no impersonators .\nsir john chilcot 's inquiry began in 2009 , stopped taking evidence in 2011 . his report has been repeatedly delayed but was expected after election . now source says findings may not become public until ` at least ' 2016 .\narsenal play reading in fa cup semi-final on saturday evening . chelsea kick off against manchester united 10 minutes later . wenger says ` something should be done ' and ` it is difficult to understand ' arsenal manager also brands circus around jurgen klopp ` ridiculous ' klopp announce on wednesday he will leave dortmund this summer .\npolice have come across a car covered in chili peppers . the car was parked on the side of a busy street in hornsby . according to facebook users , it is a regular occurance .\nleia , an eight-month-old boxer from pennsylvania , was filmed as she lay on the couch and latched on to a baby 's pacifier . footage shows her then sucking on it before closing her eyes and loudly snoring in her sleep . to date the video of leia has garnered more than 145,000 likes on facebook , with many viewers deeming the scene ` cute ' and ` adorable '\nrussell ` rusty ' yates said his ex-wife 's actions were ' a result of her illness ' . she systematically killed her children in their texas home in 2001 . was convicted of capital murder in 2002 , but in 2006 was found not guilty by reason of insanity - after being diagnosed with postpartum psychosis . mr yates maintains she is a good mother who loved her children . slammed prosecutors for seeking the death penalty during the first trial . he has since remarried and has a son .\njonathan trott is on the verge of winning his 50th test cap on monday . trott is set to open alongside alastair cook against the west indies . trott is set for his first test appearance since the 2013 ashes series . the warwickshire batsman left the tour due to a stress-related condition . trott had struggled to deal with australia bowler mitchell johnson .\nbritish no 1 defeated tomas berdych 6-4 , 6-4 to reach miami open final . there 's no love lost between the pair after controversy at australian open . dani valverdu and jez green switched from murray 's team to the czech 's . brit will play novak djokovic in the final on sunday .\nnew report says molalla log cabin could have been built as early as 1795 . lewis and clark reached the pacific ocean in 1805 . the construction of the log cabin is not representative of pioneer building methods at the time - suggesting it was made by foreigners . report 's authors propose the cabin could have been used by russian settlers farming in the area to support fur traders in alaska .\n77 people arrested in london as 3,000 police officers flood the streets . ambulance crews in the capital receive 2,333 calls .\njack grealish impressed as aston villa beat liverpool at wembley . a villa fan , grealish helped the club reach their first final since 2000 . the 19-year-old wears his socks down to show he is not afraid of tackles . grealish 's great-great grandfather , billy garraty , won the fa cup in 1905 . tim sherwood : grealish must focus on aston villa not international future . read : grealish to decide international future at end of season .\ndetlef guenzel sliced polish-born wojciech stempniewicz into small pieces . video reportedly shows him strangling victim using a rope tied to a pulley . defence argued victim could have stopped strangulation if he wanted to . guenzel then buried the body parts in the garden of his bed and breakfast . prosecutors sought lower sentence because stempniewicz wanted to die .\nclassic comic book `` the dark knight returns '' is getting a second sequel . legendary comics writer frank miller is returning to the story that made him famous .\nmahendra bavishi is joint director of hatton garden safe deposit ltd. . his son manish , 38 , who lives in london , usually runs business full-time . 69-year-old said robbers almost certainly had some inside information . mr bavishi expressed his fury at police for ignoring an alert from a state of the art alarm in the vault .\nap mccoy wins second feature race at grand national festival . rides don cossack to victory in melling chase on friday . set to ride favourite shutthefrontdoor at aintree on saturday .\ntruck stopped by police this morning after travelling 200m across the uk . police sniffer dog team found five men hiding in tiny space inside . it is thought they had climbed on board in belgium before entering britain . comes days after illegal camp in calais , france was closed down .\nmanny pacquiao will take on floyd mayweather at the mgm grand in las vegas on saturday . the filipino boxer is one of the biggest stars in the world of sport after a series of big fights . pacquiao spent his early years boxing in manila in the philippines and was pictured training as a 17-year-old . pictures taken in 1996 show pacquiao training at the lm gym in manila before he became a star . the 36-year-old arrived in las vegas on tuesday after a 270-mile journey from los angeles on his luxury bus . click here for all the latest manny pacquiao vs floyd mayweather news .\nlabour politician helal abbas lost bid to become mayor of tower hamlets . the london bangla ran an advert accusing him of assaulting his ex-wife . after long legal battle , editor admits there was ` no truth to the allegation ' .\njennifer barnett worked at archway school in gloucestershire for 17 years . she often pinned pupils ' work to walls lined with asbestos , inquest heard . family believe asbestos in school was to blame for her death in september . they are suing council after coroner ruled death from ` industrial disease '\nresearchers find that bird species are continuing to drop in fukushima . the barn swallow , for example , dropped from hundreds to dozens . this is despite radiation levels in the region starting to fall . and comparing it to chernobyl could reveal what the future holds .\nkenneth crowder , 41 , was arrested on friday in melbourne , florida . he was spotted running naked in a neighborhood shouting he was god . police shocked him with a taser twice , but each time he pulled the probes out of his body and attempted to fight the officer . he was arrested on charges of battery on a law-enforcement officer and resisting with violence .\ncarlo ancelotti says diego simeone has proved himself as one of the best . real madrid face champions league quarter-final clash against atletico . real boss reveals he has a fully fit squad to choose from for the first leg .\nharper beckham and north west have both attended fashion week shows . harper attends with father david and brothers to support victoria 's shows . north made headlines throwing tantrum while seated next to anna wintour . roxy jacenko 's three-year-old daughter attended two mbfwa shows .\nmax maisel , 21 , had been missing since february 21 . he was last seen leaving his vehicle on the shores of the lake in new york . a fisherman saw his body 200 yards from a coast guard station monday . family said they were relieved his body had been found in a statement . paid tribute to the sweet , sensitive and caring young man . police and the coroner are yet to release a cause of death .\nmarcus copeland , 44 , won a best mortgage broker award back in 2007 . he has previously boasted of building his dream # 1million hillside home . but his double life as a fraudster has emerged after he appeared in court . copeland admitted a count of fraud in 2007 . he was told jail is an option .\nmourners gathered outside st peter 's to pay tribute to nine-year-old chloe . schoolgirl was snatched in front of her mother by zbigniew huminsk , 38 . she was raped and murdered and her body discovered in a migrant camp .\nmale driver , 44 , struck kadeem brown , 25 , as he walked through the bronx . brown 's body flipped over once and then went sliding until he hit the curb across the street . cab driver suffered a seizure moments before the crash and has been stripped of his tlc license . accident occurred on grand concourse in the bronx on march 20 .\nsynaesthesia is a condition in which separate senses are linked . scientists determined which colours are usually connected with letters . they then compared these colour-letter matches to fisher-price magnets . they claim 6 % of people learnt their matches from the fisher-price toy .\ninverness ' gary warren will miss the club 's first-ever scottish cup final . warren picked up his second yellow card of the cup in the semi-final against celtic and is therefore suspended for the showdown on may 30 . he was also suspended for the scottish league cup final last season . the defender believes the threshold for yellow card suspensions should be raised and is disappointed to be missing out on making history .\naustralian fashion report revealed the australian-sold brands and companies that ignore the exploitation of their overseas workers . lowes , industrie , best & less and the just group - which includes just jeans , portmans and dotti - were some of the worst performers . etiko , audrey blue , cotton on , h&m and zara had some of the best scores . 75 per cent of companies do n't know the source of all their fabrics and inputs .\nbrendan rodgers picks steven gerrard to start fa cup semi-final . the 34-year-old has served his three-match ban after seeing red last month against manchester united . gerrard has been in and out of the liverpool side this season .\ntroy university students delonte ' martistee , 22 , and ryan austin calhoun , 23 , have been suspended from the alabama school . both have been charged in connection to an alleged sexual attack on an unconscious woman during a spring break part in florida . police in troy , alabama , found the video while investigating a shooting . video ` shows two men raping unconscious woman on florida beach ' authorities say hundreds of people walk past but do n't intervene . two additional suspects are being sought in connection to the incident and more arrests are suspected . martistee was a promising track star from bainbridge , georgia .\nkatrina maddox , 23 , from norfolk , said the odds must be ' a million to one ' her husband peter delivered first son reuben on the a47 two years ago . history repeated itself when baby edward also arrived on way to hospital .\ndavid cameron will unveil analysis to show labour and snp ` on same side ' he 'll say since milband became labour leader snp trooped through lobbies . snp backed labour in 27 of 28 votes on welfare and 62 of 65 on economy . labour and snp ruled out formal coalition but refused same for looser term .\narsene wenger called for the competition to be scrapped last year . and jose mourinho is in agreement with his great premier league rival . the chelsea boss said : ` wenger is against the ballon d'or , and he 's right ' they are seven points ahead of arsenal with a game in hand . mourinho : i have a problem , i am getting better and better .\nformer arsenal defender impressed by chilean star 's debut season . says sanchez would be close to winning a place in best gunners teams . arsenal are second in premier league after eight-match winning run . they also face reading this saturday in semi-finals of fa cup . read : arsenal have doubts over signing liverpool star sterling .\nluke rockhold submitted lyoto machida in the second round . he now wants the winner of chris weidman vs vitor belfort next month . rockhold won by rear naked choke in a one-sided fight . jacare souza beat late replacement chris camozzi in the first round .\nliam linford oliver-christie caught during police raid in west london . officers found haul and ` drugs paraphernalia ' with help of sniffer dog . they saw cocaine and heroin being thrown from the window of his flat . admitted drugs possession at court and will be sentenced next month .\nadam leheup found not guilty of rape and sexual assault by jury . 34-year-old met the complainant after on the ` let 's date ' app . pair enjoyed a night out before leheup went back to 25-year-old 's flat . leheup appeared emotional after being cleared at blackfriars crown court .\nstudy was conducted by national evolutionary synthesis centre , durham . it suggests that societies with less access to food and water are more likely to believe in all-powerful , moralistic deities . research also uncovered link between a belief in high gods who enforce a moral code and a strong social hierarchy .\niceberg fractured from getz ice shelf and moved into the amundsen sea sometime in mid - to late-february . region is losing ice faster than anywhere on the continent and is the largest contributor to rise of sea levels . scientists are combining images such as this with noises from icebergs to detect how glaciers are melting .\ncommon dolphins were once rare in the hebrides , preferring warmer water . but their numbers have risen by 68 per cent over the last 12 years . scientists believe this could be due to the waters warming by 0.5 °c . hebridean whale and dolphin trust is recruiting volunteers for monitoring .\npetri kurti has been jailed for 12 years for the murder of glynis bensley . the teenager left a shoe-print on her face by stamping on it with such force . ms bensley , 47 , died of a brain bleed following attack in west midlands . kurti 's co-defendant was jailed for 10 years for manslaughter and robbery .\nhundreds of survivalists and ` preppers ' gathered in utah suburb friday . learned new ways to deal with zombie apocalypse or a natural disaster . shown underground bunkers , tactical weapons and an armed $ 2,500 motoped survival bike . taught how to store food and dressed as zombies for special contest . also met actors from amc hit show the walking dead , like addy miller . scott stallings , one of preppercon 's founders , said utah made sense for the first expo because of the mormon culture 's emphasis on self-reliance .\ndenise fedyszyn , 37 , from holmfirth , was told : ` you 're too fat to ride ' mother-of-two , who weighed 20st 4lb , joined a weight watchers group . started diet plan and regular runs , and lost more than 10st in 12 months . dropped eight dress taking her from size 26 to a size 10 . inspired , her friend lisa walters lots 35lbs in two months . the pair had been mortified of pictures of them as bridesmaids .\nhannah and alex needed a place to live after they moved back to new zealand from the uk in 2009 . so , they purchased a 1986 hino flatbed truck and started building a home on the back of it over the course of about a year and a half . they then purchased a secluded piece of property and drove their nearly self-sufficient $ 25,000 home there .\njasper and jasmine suffered from severe obesity and blindness when they were surrendered by their first owner . pug rescue and adoption victoria rehabilitated the now healthy duo and found them a safe and happy home . their new owners noticed a bond between them and decided to marry them in extravagant charity event to raise funds for the non-profit organisation . more than 300 people and 60 pugs will attend the long-awaited event .\nsurgeon sergio canavero sees ` no problem ' with wealthy tycoons using the procedure to get a young body in their quest for eternal life . hopes his first patient will be russian with genetic muscle wasting disease . valery spiridonov , 30 , has volunteered to be a guinea pig , despite the risks . dr canavero has been called ` nuts ' by critics who think his plans a fantasy .\nfda investigators found that a number of flavors were labeled ` healthy ' - brimming with fiber and antioxidants , while being low in fat and sodium . however , upon closer inspection it was found that ` none of the products met the requirements to make such content claims ' daily mail online calculated that one kind bar flavor - not included in the fda investigation - contains more calories and fat than a snickers bar . new york university nutritionist , marion nestle , likened kind bars to candy .\nposters were stuck on lampposts and bus stops in grangetown suburb . they told muslim electorate islam was ` only real workable solution ' for uk . cardiff council has begun removing the posters dubbed ` chilling ' by locals .\nthe markets in rio de janeiro 's slums - known as ` crackland ' attract people from all walks of life looking to get high . from pregnant young mothers to hopeless old addicts users come day and night to smoke crack in plain sight . brazil , according to recent studies , is the world 's top consumer of crack cocaine with estimated 1 million users .\nrapa nui people placed red stone ` hats ' or pukao on some of the statues . oregon university say they may have used ramps to raise the stones . the team used physics to model possible methods of raising the ` hats ' . some 100 pukao have been found on the remote island in the pacific ocean .\njade badland and her husband aaron were drunk after wedding reception . when they got back to hotel she asked asian family if they had ebola . the couple also assaulted brazilian worker , calling her a ` bloody foreigner ' they were both spared jail and ordered to carry out community service .\nthe 19-year-old singer was a finalist in 2012 series of the x factor . batiste has announced her as official face of 2015 ready for it campaign . tv advertising campaign features henderson 's latest single , mirror man .\ngirl was outside shops in brighton , east sussex when she was attacked . she received a puncture wound to her upper lip and was treated in hospital . police are hunting a man in his 50s with purple hair and brown moustache .\nshahnawaz , 40 , was beaten to death by five thugs because his bike - stuck in traffic - was blocking their way . his sons , aged nine and 13 , begged bystanders and nearby police for help , but were told to ` call 100 ' victim was rushed to nearby lok nayak jaiprakash hospital but died en route . a day later , 200 protesters blocked central delhi to demand immediate arrest of the attackers .\nadriana alvarez , 22 , makes $ 10.50 an hour and must rely on food stamps , medicaid and a child care subsidy to get by with her three-year-old son . she said water seeps into her apartment when it rains and she loses a day of wages when her son is ill because she does n't get sick days . alvarez is a leader with fight for $ 15 , an international movement to raise minimum wage laws and acquire the right to unionize . half of the nation 's fast food workers require some kind of government assistance , according to a recent study .\nian walters veered his pick-up truck off m1 when ` very angry ' , court told . he and wife tracy were returning from ` make or break ' trip in yorkshire . witnesses say the vehicle ` exploded ' sending luggage and dogs flying . walters , also a driving test instructor , denies murder - the trial continues .\nfrausters try and raise money off stacey eden 's high profile . ms eden stood up for a muslim couple being abused on a sydney train . daily mail australia published video of the incident on thursday . ` all i want is good karma ' , ms eden said on social media . bizarre fake profile said she had been inundated with offers of donations .\nben cousins , 36 , has handed himself in at fremantle police station . arrest warrant was issued a day earlier after he failed to show up in court . cousins was on bail for an alleged low speed police chase on march 11 . charged with reckless driving , failing to stop and refusing a breath test . cousins has been involved in a string of bizarre incidents in the weeks since which have seen him hospitalised for mental health checks .\nyellow protein world advert has the message ` are you beach body ready ? ' posters feature australian model renee somerfield , 24 , wearing a bikini . campaign has sparked backlash and 45,000 have called for it to be pulled . katie hopkins backs advert , saying ` feminism is n't an excuse for being fat '\nchelsea star eden hazard is set to make his 100th top-flight appearance . santi cazorla should hit the same milestone when arsenal meet burnley . both players have impressed since moving to the premier league in 2012 . hazard has more goals this season but cazorla has one more assist . sportsmail 's reporters choose the player who has excited them the most .\nchristian migrants speak of making the journey across med to escape isis . eritrean refugee haben , 19 , made the perilous trip with brother samuel , 14 . haben said gunmen patrol libyan towns and beaches looking for ` infidels ' made journey days before 900 died as they travelled from libya to sicily .\nfootage has been released of the moment barry lyttle punched his brother . altercation left barry 's younger brother patrick lyttle fighting for his life . video shows patrick pushing barry and the latter retaliates with one punch . patrick 's head snaps back before he falls and hits head against pavement . it also shows a distressed barry cradling brother while trying to revive him . prosecutor called for barry to get jail time as patrick pleaded to spare him . barry lyttle , 33 , has pleaded guilty to causing grievous bodily harm . incident between the two brothers happened on january 3 in king 's cross .\npoll of candidates asked them what were country 's biggest challenges . none from labour named the deficit when survey by ipsos mori . echoes ed miliband 's blunder when he forgot deficit in conference speech .\nrecent patent filing shows plans for an ` upright ' sleeping support system . encased in a backpack , the cushions allow the passenger to lean forward . a breathing hole in the face pillow ensures extra customer comfort . boeing says : ` we are n't providing any further information or comment '\nthe government 's drug regulator has approved a ` herbal remedy ' phynova joint and muscle relief , contains sigesbeckia . the traditional chinese herb is traditionally used to treat aches and pains . dr uzma ali advises patients with aches to take a curcumin supplement .\nspieth set a new masters scoring record with a 14-under 130 through two rounds at augusta national . this was spieth 's sixth round as a professional here and his worst score is level par . the next tiger ? that is a heap of pressure to drop on young shoulders .\ndell schanze , 45 , pleaded guilty to two misdemeanor counts , knowingly using an aircraft to harass wildlife and pursuing a migratory bird . he was sentenced on friday to one year of probation in federal court . on thursday , a plea deal fell through after he refused to admit to the 2011 crime which he said made him look like an evil , horrible person . schanze is known in utah for his shrill , hyperactive tv commercials for his totally awesome computers retail chain .\ninter milan are hoping to sign manchester city 's yaya toure this summer . but marco fassone admits toure 's fee and wages might scupper a deal . inter are working on new contracts for mauro icardi and mateo kovacic . serie a club also hope to tie down goalkeeper samir handanovic .\nthe icc confirm mustafa kamal 's departure as president . kamal unhappy with umpires after india beat bangladesh at the world cup . there will be no immediate replacement for kamal .\ngreystone park psychiatric center in new jersey became known for the number of rapes and suicides taking place . building officially closed in 2003 and was abandoned , with walls and ceilings left to crumble and flake away . demolition work has begun on the french renaissance-style building , after interior found too expensive to restore . but preservationists have argued that the 1800s building should be preserved and turned into museum and housing .\nsnp chief says she would work with labour regardless of election result . she challenged the labour leader to agree pact to ` lock cameron out ' . comes after claim she told french diplomat she wanted cameron as pm . official whitehall probe was ordered after she dismissed memo as untrue .\nmiddle tennessee state university george davon kennedy was arrested and charged with sexual assault tuesday night . police claim he was one of the participants in a gang rape that occurred in panama city , florida in march . troy university students delonte ' martistee , 22 , and ryan austin calhoun , 23 , were previously charged in the attack . police in troy , alabama , found the video while investigating a shooting which ` shows two men raping unconscious woman on florida beach ' authorities say hundreds of people walk past but do n't intervene .\nclarkson , 55 , had cancer scare two days before assaulting oisin tymon . he had a lump on his tongue which doctors said was probably cancer . clarkson has been given all clear but says it was most stressful day ever . former top gear presenter was sacked by bbc after ` unprovoked attack ' .\nstudy found that hospitalizations from car crashes dropped 7 percent between 2003 and 20010 in the 45 states with texting bans . arizona , texas , montana , missouri , and oklahoma are the only five states in america that do not have texting at the wheel bans for all drivers . the study also found that older drivers were more likely to make a texting and driving mistake than a younger driver .\nsouthampton beat hull city 2-0 at st mary 's in the premier league on saturday to keep top four hopes alive . james ward-prowse opened the scoring for the home side from the penalty spot 10 minutes into the second half . the southampton midfielder was brought on as a substitute at half-time and made no mistake from 12 yards . graziano pelle made it 2-0 in the 81st minute as the italian ended his four-month wait for a premier league goal .\nreanne evans attempted to become first woman to qualify for crucible . the 10-time world ladies ' champion was beaten by ken doherty . barry hearn says that evans will not receive a season-long tour wildcard .\narchbishop of canterbury also said the dead were ` martyrs ' in speech . pope francis called for governments to intervene in syria and iraq .\nshoccara marcus moved from brooklyn , ny to atlanta , ga in 2011 after her father was diagnosed with cancer . she returned to her georgia childhood home after living more than a decade away on her own . a dancer since she was four years old , she documents the transition in photo project , choreographing my past . the project is about the complexity of family dynamics as she expresses her feelings of isolation while trying to cope with her family remembering her as a little girl and refusing to accept the woman she has become .\nemir spahic appears to aim punches and headbutt at stewards in video . his bayer leverkusen team lost on penalties against bayern munich . bosnian and his friends became involved in a disagreement with staff . police are now set to investigate the fighting and spahic faces a ban .\nstate troopers say they found methamphetamine and marijuana on a bus carrying nelly and five others . nelly has been charged with felony possession of drugs .\ndisturbing photo shows cortez berry hunched down with a swollen eye in front of two shirtless young men , one of whom is holding a leash . berry told family members he was jumped by ten other inmates and guards did n't check on him until six hours after the incident . department of corrections is investigating and believe the incident was gang-related . mom demetria harris said she wants an assurance from the department that he will be able to pay his debt to society , without being killed . berry has since been transferred to a different prison , where he is now in protective custody .\nin his final known video , adam gadahn called for governments of pakistan and saudi arabia to be overthrown . he was raised in california and said he was of jewish ancestry . he converted to islam in 1995 , left u.s. in 1998 and joined al qaeda , becoming a spokesman .\nexclusive nick clegg warns the ukip leader 's ` mask is slipping ' condemns farage for comments on migrants and ` half black ' candidates . warns cameron will be pulled to the right by his own mps and ukip . some tories want to bring back death penalty and ban the burka . lib dems are ` in tune ' with public , but struggling to turn into votes . admits to being such a bad cook that wife miriam only lets him wash up . condemned nigel farage for referring to ` half black ' candidates and wanting to ` turn our backs on the very sick ' insisted the majority of people do not agree so the ` odious ' and ` divisive ' rhetoric of the far right and ukip . warned the tory leadership has lost control of the party , and is in hock to right wingers who want to bring back the death penalty , ban the burka and slash the state . claimed the lib dems are most in tune with public opinion , but admitted he is struggling to turn it into votes . revealed he is such a terrible cook that wife miriam , who has revealed she has been running a secret food blog , will only let him do the washing up .\nphilipp lahm spoke to owen hargreaves for an upcoming documentary . lahm spoken of his career to date and plans for when he stops playing . he hailed pep guardiola 's tactical nous and aggressive playing style .\ndavid priestley called 999 three times and waited an hour for ambulance . his wife diane was struggling to breathe and was starting to turn blue . ambulance trust admitted delay due to incorrect priority by call-handler . mr priestley said he is tormented by thought his wife may have survived .\nandrew o'clee , 36 , met first wife michelle in 2000 and they married in 2008 . he started affair in 2011 and forged document so he could marry philippa . but he was caught out in elaborate lie after video appeared on facebook . despite the revelations , philippa , 30 , has vowed to stand by her man . o'clee was jailed for eight months at chichester crown court for bigamy .\nshocking images show men being savagely executed in homs province . executioners embraced the two victims before stoning them to death . bloodthirsty crowds are seen in the desert clearing to watch the atrocity . men were executed after isis militants accused them of being a gay couple .\nfootage shows the skater confidently sailing down a concrete slope in santa monica , los angeles , before he loses balance and falls headfirst . as his friends go to investigate , blood is seen pouring from his face .\nterrifying footage was filmed from 91st floor of a shanghai skyscraper . repeated heavy bangs can be heard and cracked two panes of glass . cleaners trapped in the platform suffered minor injuries in the incident .\nincident occurred wednesday night near hebrew university in jerusalem , police say . one victim , a 26-year-old man , has died ; a 20-year-old woman is in serious condition . the suspect is a 37-year-old arab from east jerusalem , israeli police say .\nstuart mccall revealed shane ferguson still has a role to play for rangers . the northern irishman has received the green light to start training . mccall believes ferguson can be involved in the final promotion push . click here for all the latest rangers news .\nsomali sisters , iman and siham hashi , make up faarrow . a fusion of hip-hop , world pop and afrobeats , they are currently finishing debut album .\nthe federal government will give shoshana hebshi $ 40,000 as compensation for being ethnically profiled . hebshi , who has a jewish mother and saudi arabian father , has said she was discriminated against based on her dark complexion . hebshi was detained along with two indian men she was seated next to . ` people do not forfeit their constitutional rights when they step onto an airplane , ' said aclu attorney rachel goodman .\nthe 57-year-old woman was killed when her suv was hit by a train in meridian , mississippi . the coroner said the woman drove around functioning gates and flashers and collided with the southbound amtrak crescent .\nian bell and joe root try new model helmet , which was released after phillip hughes ' death late last year . chris gayle absent from series , instead playing in indian premier league . jimmy anderson was presented with silver cap on his 100th test match . teams pay their respect to richie benaud , who died last week .\nprime minister tony abbott promised a strong police presence on april 25 . it comes after five teenagers were arrested in pre-dawn raids on saturday . they were arrested over an alleged terror plot targeting anzac day events . mr abbott urged public not to be deterred and continue with their plans .\njailed millionaire arrested in march for ` gun and marijuana possession ' on thursday , a louisiana state judge threw out the case . lawyers believe he will win federal case with similar charges . durst is also charged with murder in california .\njulian assange 's father 's eccentric newtown home sold for $ 1.42 million on wednesday . the quirky haven is a short walk to parks , cafes on the buzzing strip of king street in sydney 's trendy inner west . it was originally built in the 1870s as the servant 's quarters to a victorian villa next door . set on 247sqm , it is a treasure-trove of original decorative finishes after being rebuilt by shipton in the 1990s . the bathroom features free-standing bath complete with a rain shower and marble and mosaic mirror detailing .\ntony degrafreed , of indianapolis , indiana , has been charged with murder for allegedly beating to death wife rebecca degrafreed , 47 , last july . the victim had married degrafreed in 2006 after he was released from prison for shooting dead his first wife in 1994 .\ndaniel morcombe 's killer could be freed early because of judge 's ` bias ' lawyer 's for brett peter cowan demand chief justice removed from appeal . claim judge tim carmody had a friendship child protection advocate . daniel , 13 , went missing in december 2013 after cowan abducted him . cowan was found guilty and sentenced to life in prison in march last year .\nharry kane won his first two england caps last week . the tottenham striker has scored eight times in 10 under-21 games . but dalgish believes he has moved on now , and should not return . kane is eligible for gareth southgate 's team this summer .\nthe 15-year-old girl is said to have undergone the operations in china . the teen has amassed a following of over 400,000 fans on social media . she reportedly underwent the transformation to win back an ex boyfriend . some commentators say the images have been digitally exaggerated .\nlaura robson has been out injured since the australian open in 2014 . robson is targeting a return to action at the french open in may . the 21-year-old had surgery on injured wrist and is nearing full recovery . robson , training in florida , was pictured sitting in an ice bath on thursday .\nronda blaylock was just 14 years old in 1980 when she was found stabbed to death and brutally assaulted . this after she and a friend had taken a ride home from a man after school in rural hall , north carolina . town is some wholesome it was used as a model for mayberry in ` the andy griffith show ' . her friend was dropped off but ronda was never seen again . the man , now likely in his late fifties , has never been found . now police say that new dna evidence as well as testimony from key witnesses has them close to solving the case . surry county sheriff graham atkinson said in a press conference on monday the man still lives in the area and they are close to finding him .\nchemical damages ozone and is being phased out , though it 's used in strawberry fields , epa says . a delaware family becomes ill at a resort in the u.s. virgin islands . preliminary epa results find methyl bromide was present in the unit where they stayed .\nthursday 's match between two baseball heavyweights turned into a brawl . began after dispute between the royals ' ventura and white sox 's eaton . sparked a mass fight with members of both teams running onto the field . umpired ejected a total of five players after the scrap at chicago 's stadium .\nofficials said the man 's name was on a suitcase that did n't belong to him . packages containing 46lbs of cocaine were found inside the bag . the baffled tourist was hauled in for questioning at the airport in nice . police are satisfied that his name was fraudulently used on the bag .\ntop gear tour will go ahead as clarkson and the bbc reach an agreement . presenter will keep quiet on his sacking so the live shows can still go on . bbc feared he would use the global tour to vent his anger at former bosses . the shows have been renamed and will not feature any top gear branding .\nleaked images claim to show next season 's real madrid kit . the home shirt has grey trim and a round-neck collar . the away kit is all grey , a departure from this season 's pink offering .\nunnamed child from medina , ohio , allegedly swiped cash from bedside table . police say he handed out $ 100 notes at school , then at a friend 's house . also gave money to children 's parents , who took them on spending spree . after authorities found out , some $ 7,000 of the stash has been recovered . prosecutors say charges will soon be filed in the case .\nraheem sterling says he is not yet ready to sign a new deal at liverpool . paul scholes says he should stay and develop at anfield . scholes says sterling does not score enough goals . the rise of raheem sterling : from # 60 a day at qpr to knocking back # 100,000-per-week contracts . read : sportsmail answers five questions on sterling 's future . sterling : what he said about contract talks ... and what he meant .\ndarren mcgrady says the princes once tried to trick him into making pizza . as children , william and harry forged note to the chef from their nanny . they were apparently fed up with endless diet of traditional english food . but mr mcgrady said their ` juvenile handwriting ' gave them away and they ended up with roast chicken .\nkoch brothers removing checkbox on criminal records from job applications . authors : major companies are recognizing that those with criminal pasts can be productive workers .\nmanchester united and manchester city clash in sunday 4pm derby . chelsea also in derby action when they visit queens park rangers . liverpool host newcastle united in monday night football . arsenal travel to burnley for late saturday kick-off . tim sherwood returns to tottenham hotspur with aston villa .\nman city currently occupy final champions league place . liverpool are four points behind city with six matches to go this season . read : pep guardiola would demand stability at man city . read : man city planning mega-bid to sign liverpool star sterling . read : martin samuel 's column on masters champion jordan spieth here .\nthe life of 16-year-old maren sanchez stabbed to death a year ago on the day of prom was celebrated on saturday by hundreds of people . ' i do n't think there 's anything sad about this . it 's such a celebration , ' said darby hudd , a 17-year-old friend of the slain teen . a classmate , christopher plaskon , has been charged with sanchez 's murder .\nmartin montoya netted a 30yard pass into a basketball hoop at training . barcelona maintained four-point in la liga lead with victory over almeria . luis suarez and lionel messi scored stunning curled strikes at nou camp .\ncressida , 26 , models british fashion house 's spring/summer 15 range . shows off impressive dance moves in shoot . accomplished actress and dancer to star in harvey weinstein 's tulip fever .\nxie shisheng was just 16 when he was imprisoned in a chinese cotton mill . he 's been rescued after 18 years and says he was beaten daily and tortured . xie 's captors fled the scene when police arrived at the mill on wednesday .\nnumber of britain 's highest earners going to pound stores is now up 20 % . more than half of all shoppers say they head to pound shops each week . experts say they are topping up their weekly shop , often from lidl or aldi .\njefferson montero to have fitness test after picking up injury with ecuador . tom carroll ruled out for swansea after damaging ankle ligaments . mohamed diame and james chester to return following long lay-offs . gaston ramirez also set to play a role despite carrying slight knock .\ndavid wheeler : corinthian , considered a `` predator '' school , will shut down campuses . wheeler : students of for-profit colleges are hapless victims ; their debts should be forgiven .\nukip leader said foreigners with hiv should not be treated on the nhs . mr farage had planned to mention foreign patients suffering from tb . he chose hiv after discovering nhs drugs to treat disease more expensive .\nryan bertrand was fifth left back to be called up by england last month . bertrand only included after injuries to leighton baines , luke shaw and danny rose . he replaced kieran gibbs in second half away in italy . bertrand belives he should be higher up the england pecking order .\ngoing online has become the path of least resistance if you want to make yourself heard . but where there is the restrictive rule of law , journalists are vulnerable to the anger of officialdom . from china to malaysia , journalists and bloggers have been jailed -- even killed .\npatrick bamford was crowned the championship player of the year . the starlet has scored 19 goals for middlesbrough this season . chelsea loaned bamford out and he dreams of wearing the blue shirt .\nprince harry to arrive in australia next monday ahead of four-week stay . will be australian soldiers in darwin , perth and sydney during trip . prince will observe elite sas soldiers , and indigenous norforce troops . the royal said to be excited for ` challenging and hectic ' schedule . the trip is the last of prince harry 's military career before he retires .\nibrahim ahmad , a senior at la center high in washington state , was suspended five days and will miss saturday 's prom .\nsuspect claudio giardiello wanted revenge ` against those that ruined me ' judge fernando ciampi among targets killed with ` cold premeditation ' gunman ` used a fake id to enter court through door reserved for lawyers ' arrested 15 miles away ` while seeking out another victim not in court '\njesse o'brien is seen swallowing nine of his daily dose of 45 pills . his mum hoped the footage would amuse and encourage him . the video is now helping other kids feel better about the daunting task .\norgasmic meditation -lrb- om -rrb- helps to ` expand ' women 's climaxes . created by us entrepreneur nicole daedone in 2001 . technique marries sex , mindfulness and 15 minutes of ` light stimulation ' turn on britain is now running seven-hour classes in the uk .\nyulia tarbath , 33 , continued regular workouts and raw vegan diet . returned to starting weight of 8st just two weeks after birth . baby daughter weighed 7lb 5oz and yulia says she 'd do it all again . experts say leading vegan lifestyle is unhealthy during pregnancy .\nian madigan kicked five penalties for leinster . leigh halfpenny replied with six three-pointers for toulon . toulon lock ali williams was yellow carded during extra-time . bryan habana raced away for a crucial try shortly afterwards . leinster flanker sean o'brien crossed for a late consolation try .\ndarlene feliciano , a walmart manager , was out on makapuu ` tom-tom ' trail overlooking sea life park along kalanianaole highway in oahu . she slipped and fell 500 feet below a hole in the trail know as the puka .\nwomen 's tennis stars attended opening ceremony of porsche grand prix . maria sharapova , caroline wozniacki , sabine lisicki , angelique kerber and ana ivanovic were among the players on show . with serena williams missing , simona halep could overtake three times winner sharapova as world no 2 .\nnico rosberg reckons lewis hamilton has the psychological advantage . rosberg was unhappy with the british driver after the chinese gp . however , the german insists that the disagreement is all forgotten .\nshares have performed nearly twice as well under tories , new figures show . stock market returns averaged 16 per cent per year under conservatives . returns hovered around nine per cent under labour and current coalition .\njennifer houle went missing between 1am and 2am on friday during a night out with a friend in minneapolis . police discovered video footage showing her alone on a nearby bridge and said she entered the water - but it is not clear if she jumped or fell . teams searching the water recovered her body on wednesday . medical examiner 's office say houle died of freshwater drowning .\nbobby brown has filed for guardianship over his daughter 's estate . he has maintained bobbi kristina is awake from her coma . maternal grandmother cissy houston updated fans clarifying that her grandchild is ` no longer in a medically induced coma ' . but cissy explained that her granddaughter is irreversibly brain damaged and unresponsive . the hospitalised woman 's 46-year-old father told fans at a dallas concert last saturday that ` bobbi is awake . she 's watching me ' on monday , his wife alicia tried to clarify bobby 's statement saying ` she has made it out of icu and opened her eyes ' a source close to the houston family shared that they ` have no idea where bobby is getting his information ' the 22-year-old only child of the late whitney houston was first hospitalized on january 31 after being found face down and unconscious in a bathtub at her georgia home .\nresearchers are developing a computer that can write weather forecasts . it takes meteorological data and writes a report designed to mimic a human . this process is known as ` natural language generation ' -lrb- nlg -rrb- a prototype system will be tested on the bbc website later this year .\npaul slogan will underscore a tuesday presidential campaign launch . he 's battling perceptions that he has softwned some of his once-rock-solid libertarian positions in order to build broad electoral appear . paul was for ` containing ' isis , and now says he supports military action ; he was ' a judicial activist ' in constitutional cases but now complains judges are ` out of touch ' . iowa republican party official says the senator 's claims to washington-outsider status ` wo n't sell in iowa ' although it might work for a governor .\nfrancis coquelin ready for head-to-head battle with nemanja matic . arsenal midfielder has shone since returning from a loan spell at charlton . gunners have failed to beat chelsea since october 2012 . read : jose mourinho deep down admires what wenger has established . jose mourinho : fabregas chose chelsea over arsenal to win trophies .\nandrea dossena was arrested on suspicion of shoplifting on april 7 . metropolitan police confirm dossena and 31-year-old woman also held at the scene were released after being interviewed . they were advised on april 10 that they would face no further action . dossena was accused of shoplifting in harrods store in knightsbridge . sportsmail understands officers accepted dossena 's claims that he had simply forgotten to pay for a couple of items .\njason rezaian faces trial for collaborating with ` hostile governments ' the tehran correspondent is accused of gathering classified information . he has been in jail for nine months with requests for bail denied . charges labelled ` absurd ' by white house and ` ludicrous ' by paper .\ntony hunt , from normanton in derby , is demanding an apology from police . cat was run down by a patrol car then dumped in the boot , neighbours say . ginger tom had micro-chip , so officers could have easily contacted family . derbyshire police said they are trying to identify the officers involved .\ncurrent holders manchester city have capitulated in this season 's title race . derby defeat to manchester united leaves them 12 points adrift of chelsea . manuel pellegrini 's side have dropped to fourth behind united and arsenal . southampton sit in fifth place five points behind manchester city . read : pellegrini 's job on the line as patrick vieira waits in the wings .\naustralian fashion designer alex perry wo n't show at this year 's mbfwa . the designer is excited to kick back and enjoy the shows from front row . this will be the designer 's second mbfwa he has missed in two decades . perry is now focusing on global expansion in asia and middle east .\nnicola sturgeon took part in debate between leaders of scottish parties . snp leader said she is ` offering to help make ed miliband prime minister ' her failure to rule out another referendum was met with boos by audience . added she would not support conservative government with snp mps .\ntom richards was arrested in swansea over allegedly assaulting actress . he was released after being held for 11 hours pending further inquiries . westbrook previously accused him of physically assaulting her on twitter . the 25-year-old cage fighter has strenuously denied the allegations .\nnicola horlick , 54 , raised six children while working in the city . she wants daughters alice , 26 , serena , 24 and antonia , 18 , to go through motherhood earlier . fund manager says she felt a noticeable difference in her body between her first child at age 25 and her last at 38 . adds ` ambitious and intelligent ' women should n't be stay-at-home mothers .\njennifer pagonis has androgen insensitivity syndrome -lrb- ais -rrb- the disorder prevents a womb from growing and causes testes to grow in the abdomen or other unusual places . pagonis said she always felt different with constant hospital visits but did n't learn the full truth about her condition until a college instructor described the hormone syndrome one day during class . pagonis now uses the first name ` pidgeon , ' does n't identify as female or male and works as an artist and intersex activist against surgery .\ncoleen rooney and nadine coyle have signed up to race for life . stars also posed for cancer research 's new campaign for the event series .\nsix protesters scale the polar pioneer , hundreds of miles northwest of hawaii . greenpeace opposes shell 's plans to drill for oil in the arctic .\nnaturalists in paradise tells the tale of an early trio of british explorers . in 1961 the young oxford graduates set off to explore the iriri river . alfred russel wallace , henry bates and richard spruce found a paradise .\ngiles clarke embarrassed guests during wisden almanack launch dinner . the departing ecb chairman was not happy with paul downton 's dismissal . sky sports have blocked thierry henry from appearing on channel 4 . clare balding will snub the grand national to present women 's boat race .\npaul mcgowan avoided a jail sentence after police attack . midfielder under house arrest and will miss two games against celtic . the 27-year-old is on a 16-week restriction of liberty order .\nluis andres cuyun , 30 , who ran las gaviotas facility in guatemala city , shot dead by attackers who later said they were ordered to do the hit . cuyun and his social welfare official companion fired back at the attackers . juan carlos medina luna , 29 , and mario alfonso aguilar , 18 , arrested . gang said that its members were abused inside cuyun 's jail .\n`` vampire diaries '' star nina dobrev announces she 's leaving the show . `` nothing will be the same again , '' fans say .\ncast of celebrities attend labour party rally in warrington , cheshire . comedian ben elton told supporters he was now ` back with labour ' . eddie izzard said the party would offer a ` fair chance for everyone ' sally lindsay backed labour 's plans to ban exploitative zero-hours .\nchamali fernando made comments at a hustings in cambridge last night . she claimed wearing wristbands could help doctors , lawyers and police . her ` shocking ' suggestion was attacked by her political rivals today . ms fernando insisted her comments had been taken out of context . nick clegg said the proposal would ` increase discrimination and stigma '\nswedish research finds tendency to sex offences passed down male line . sons of fathers who commit sex crimes four times likely to be convicted . researchers explain brothers and sons do not inevitably go on to offend .\nthe march was organized by national actions to stop murder by police . protesters marched from manhattan 's union square and across the brooklyn bridge where they partially blocked traffic . marched from manhattan 's union square and across the brooklyn bridge where they partially blocked traffic . police say an off-duty police officer driving home on the bridge was assaulted by two protesters when he got out of his vehicle to investigate .\nthe mexican painter penned the letters to fellow artist jose bartoli from 1946 and 1949 while she was married to muralist diego rivera . the 25 letters jose had saved until his death in 1995 are headed to auction at doyle new york on april 15 and expected sell upwards of $ 120,000 .\nformer us president george h.w. bush looked in good health on friday as he accompanied australian tennis player roy emerson to a tennis game . bush , 90 , lives in the houston area with his wife barbara and has attended many atp fundraisers and charity events throughout the years . back in december , bush , who suffers from parkinson 's , was hospitalized for shortness of breath for about a week .\ntyler walker came off the bench to score his first goal against brentford . the 18-year-old is son of former england international des walker . manager dougie freedman believes the forward has a bright future .\nthe dog named foxxy cleopatra jumps around excitedly . while the reptile called ryuu appears to be disinterested . suddenly the bearded dragon starts chasing after the dog . video maker said the pair ` seriously love to play together '\nmaria sharapova will play for russia in the fed cup semi-finals . russia host germany in the 2014 winter olympics host city of sochi . playing helps sharapova become eligible for next year 's summer olympics .\ntwo britons thought to be among seven killed in caribbean plane crash . piper pa-32 plane crashed in the punta cana region of dominican republic . foreign office confirmed it is looking into reports of uk citizens on aircraft . it is believed pilot was attempting emergency landing when crash occurred .\nmichelle o'clee said bigamist husband 's lies could be from grisham thriller . she turned to friend myleene klass after discovering tangled web of deceit . andrew o'clee said he was forced to live in ` safe house ' to live double life . bigamist even gave an identical platinum ring to second wife philippa , 30 .\nczech president milos zeman plans to attend wwii parade in moscow . u.s. ambassador criticised his decision in relation to ukraine crisis . president zeman responded to criticism by banning him from castle .\nluis suarez scored twice as barcelona beat paris saint-germain 3-1 . the uruguayan had a slow start at the club but is now in impressive form . he has scored 13 goals in his last 14 games and six from six in europe . his relationship with lionel messi and neymar has reaped rewards .\nsmoke from massive fires in siberia created fiery sunsets in the pacific northwest . atmospheric winds carried smoke from the wildfires across the pacific ocean . smoke particles altered wavelengths from the sun , creating a more intense color .\nconservatives will ban in-work benefits for migrants for four years . unemployed eu migrants deported if they do not get a job after six months . net migration at 298,000 , despite cameron 's pledge to cut to under 100,000 .\n` boy free ' environment stops girls from being held back by opposite sex . girls in single sex education do n't have to worry about impressing boys . comments made by head of wycombe abbey school in buckinghamshire . come after calls for boys to be taught separately in state schools .\nrobert o'neill revealed himself last year as soldier who killed bin laden . supporters of for america group were invited to shooting event with him . will stay in luxury jackson hole , wyoming , resort and shoot with o'neill . former seal has been speaking publicly about bin laden role since 2014 . is being investigated by navy police for allegedly revealing military secrets .\nollie the owl was stolen from lounge area of the admiral rodney pub . landlord richard stevenson received ` ransom letter ' instructing money to be donated to charity . wooden statue has visited belfast , benidorm and tunisia in last month .\ntinside lido in plymouth boasts fountains and views of the isle of wight . the beautiful llyn y fan fach in wales is haunted by a ` lade of the lake ' nantwich has the last inland brine pool in the country for aches and pains .\nmario balotelli joined liverpool for # 16million from ac milan last summer . the striker has scored just one premier league goal and is set for exit . sampdoria want the italian but he would have to take a pay cut . president massimo ferrero said balotelli is not hungry anymore . read : balotelli lays into man utd after sergio aguero 's goal at old trafford .\njoanna flynn , 50 , also charged with criminal negligence causing death . ` this should never have happened ' , widower of alleged victim tells media . deanna leblanc died last year at georgian bay general hospital , ontario .\nnikki balovich took off her ring when she was pregnant with swollen fingers . suspected their 90lb mastiff puppy , halli , had swallowed it . four months later it was returned by a stranger who found it in excrement at local field they walk in .\nkarim benzema will miss champions league clash against athletico . madrid squad all smiles during tuesday morning training session . quarter-final tie finely poised after 0-0 first leg scoreline .\nmetal bars have been fitted to close off balconies facing central court at hengshui no 2 middle school . two students have plunged to death on campus since last october . the school is well-known for its highly stressful environment . all students must get up at 5:30 am and study for 10 hours a day .\nsam allardyce believes manuel pellegrini has the toughest job in football . chilean manager is under pressure following their title race capitulation . pellegrini was tasked with winning back-to-back league titles at the etihad . but , poor recent form has seen them tamely drop away from the pace .\ndigital diffraction diagnosis or d3 could be used to detect cancerous cells in blood or tissue samples and even detect infections from hiv and ebola . technique uses microscopic beads that bind to diseased cells in samples . these clumps of beads change how light is scattered through the sample and can be detected using the camera on a smartphone like an iphone . results from the # 1.20 -lrb- $ 1.80 -rrb- test are received under 45 minutes and scientists it could allow people to test for cancer in their own homes .\nthe mystery of a dead man 's body washed up on a beach 67 years ago may be solved thanks to the technological advances in dna testing . people walking along somerton beach , southwest of adelaide , found a dead fully-clothed man , aged about 45 , lying on shore on december 1 , 1948 . post-mortem concluded he died of poisoning but type was undetectable . handwritten note found in pocket of trousers but did n't provide any clues . the persian phrase ` ended ' was scrawled on the scrap of paper and secret code and woman 's telephone number in book where paper came from . experts now say they have a good chance of identifying body through dna .\nsix teams are embroiled in a close battle to avoid the premier league drop . seven points split 20th placed leicester with sunderland in 15th . aston villa play burnley on the last day as qpr host leicester .\ncarlos tevez and roberto pereyra scored as juventus defeated empoli . they had goalkeeper gianluigi buffon to thank for making several saves . roma strengthened their grip on second place thanks to win over napoli . alessandro diamanti and mohamed salah 's earned fiorentina victory .\na circus worker was seen walking a lion around a village like a dog . the animal was seen being pulled by a makeshift leash in namtsy , siberia . it savaged a nine-year-old girl in the village , on her way home from lessons . girl is in hospital and the extent of her injuries from the attack not known .\nitems belonging to davy jones are to go on sale at an auction in new york . british-born jones best known for being member of the band the monkees . memorabilia includes guitars , stage costumes and commemorative plaques . jones , who became a teen idol in the 1960s , died in 2012 at the age of 66 .\nperth woman claimed she cured cancer through her pineapple-centric diet . it involved eating vast amounts of fruit and ditching ` toxic ' influences . critics have demanded ` irrefutable proof ' that is how she cured her cancer . she is planning to release her medical records when she collects them all . ` i 'm not belle gibson and she 's not me , ' she told daily mail australia . ` i 'm not a fraud and i 'm not a fake ' .\nmarla mccants , from nashville , tennessee , began rapidly gaining weight after her ex-boyfriend kidnapped her and held her hostage . the 43-year-old travelled to houston , texas , to meet with weight loss expert dr younan nowzaradan , but faced death after a blood clot moved to her lungs . the mother-of-three underwent gastric bypass surgery , but refused to get out of bed for weeks after the procedure .\na russian presidential aide says kim will be in moscow for may 9 victory day celebrations , news agency reports . this victory day marks the 70 years since the soviet victory over germany in world war ii .\nnigel farage caused controversy at the televised leaders ' debate last week . he attacked high cost of giving anti-retroviral drugs to non-british sufferers . ukip leader insisted he had ` overwhelming support ' of public for comment . claimed 60 % of 7,000 cases a year ` come into uk from anywhere in world ' .\nbayern lost 3-1 to porto in their champions league quarter-final first leg . franz beckbauer criticised the team for playing as if on ` sleeping pills ' germany legend also said dante looked like he was wearing ` ski boots ' .\nprime minister hailed charity work of the church across the country . he also condemned persecution of christians following massacre in kenya . mr cameron 's praise for the church comes after bishops attacked coaltion .\nbarbie is the 96th image to come up when the term ` ceo ' is searched . most of the images depict suit-clad men . new study found that results like these perpetuate gender bias .\nanna and indi have been surfing since they were about 10 weeks old . their best result to date is a runners-up medal won by indi . indi has been trained to lift her paw to ` hang five ' while surfing .\nfabio borini visited go ape adventure park in delamere forest on tuesay . the liverpool striker shared instagram pictures from his day out . borini came on as a substitute for liverpool against newcastle on monday .\nintruders broke into home in hatfield peverel , essex , and flooded kitchen . they dumped the tv in bath filled with water and slashed sofas and chairs during the wanton wrecking spree - before stopping for bread and butter . took jewellery , including a wedding ring , and a computer , laptop and tablet .\nnikola karabatic was among group of players banned after betting on a montpellier club match two years ago . former olympic champion will plead not guilty at trial in next few months . france 's biggest handball star now plays for barcelona in spanish league .\nnovak djokovic defeated david ferrer 7-5 , 7-5 to reach miami open semis . briton andy murray to meet tomas berdych in other semi-final match . djokovic has beaten murray in australian open final and at indian wells . world no 1 now faces john isner , who beat kei nishikori 6-4 , 6-3 . serena williams and carla suarez navarro will contest women 's final . world no 1 williams beat simona halep to 6-2 , 4-6 , 7-5 . navarro comfortably defeated andrea petkovic 6-3 , 6-3 .\ndante servin , 46 , was found not guilty of involuntary manslaughter in the death of rekia boyd , 22 , in march 2012 . shot her in the back of the head as she stood outside a party with friends . judge dennis porter asked her supporters to leave the courtroom . he feared there would be outbursts after the verdict was read out . the victim 's brother martinez sutton then screamed : ` you want me to be quiet ? this m ***** f ***** killed my sister ! ' .\njohn hinckley jr. has been dating a woman he met at a national association for the mentally ill meeting . this was revealed during a hearing to determine if he should be released from the institution he has been at since shooting president reagan . hinckley currently splits his time between st. elizabeth 's hospital in washington and his mother 's home in williamsburg , virginia .\nthe block 's four apartments are now on the market with the auctions pencilled in for april 28 . apartments will be open to the public on april 11-12 , with thousands of people expected to turn up for a look . contestants keep any money made over their reserves and the team that makes the most receives a $ 100,000 bonus . agents have started the hunt for the buyers of the renovated three-bedroom properties in trendy south yarra .\ntwiggy has unveiled her colourful summer range for high street giant . shows off her timeless looks and sense of style in shoot . admits that she would n't rule out cosmetic surgery .\nsenator told face the nation same-sex marriage is n't a constitutional right . added that it should be left up to the states to decide whether to allow it . comments came after sparking debate following an interview with fusion . said he does n't agree with gay marriage , but would attend a same-sex union if it was somebody he ` cared ' for .\nclaudia martins convicted of the manslaughter of her newborn baby girl . the 33-year-old killed the infant by filling its mouth with toilet paper . she stuffed baby 's body in a suitcase where it was found three days later . the mother-of-five had hidden the pregnancy from friends and family .\njon czerniecki positioned trail cameras on a farm in northeast victoria . the disturbing vision shows the two dogs ` torturing ' the injured kangaroo . he has since contacted the local council in hopes of locating the owners . experts say the vision challenges stereotypes of dogs and kangaroos .\nkey culprit is the led screens found in most electronic devices . these can can harm the light-sensitive retina , irreversibly damaging sight . however the problem can be remedied by using special screen filters . dr celia sanchez-ramos has developed one to make light less damaging .\nspacex made its third attempt to land a booster on a barge yesterday . but the booster tipped over after hitting its target and was destroyed . falcon 9 is on its way to the iss with supplies and will arrive friday . cargo includes first espresso machine designed for use in space .\napple has bought linx in a deal worth around $ 20 million -lrb- # 13.5 million -rrb- tech giant has confirmed the acquisition but not revealed any more details . linx makes ` multi-aperture ' cameras small enough to fit into phones . rather than capturing a flat 2d image , the technology is able to sense the depth of each object in a photograph and lets people refocus the shot .\nthe 2014 amateur champion was making his masters debut at augusta . bradley neil missed the cut after finishing 13 over par in second round . scot admitted he has found it difficult competing on professional tour .\nmarshall henderson has had his revenge on the tv reporter after 2 years . ole miss star was suspended for failing a drug test in 2013 . in response to that revelation two years ago , andrews said : ` he mocking anyone now ? ' following jarret stoll 's arrest last week , henderson tweeted andrews saying : ` lol wassup with your boyfriend ? '\nwoman was attacked as she closed restaurant in shandong , china . her self-defence training pays off as she overpowers the would-be rapist . attacker strikes again outside restaurant - but manager escapes unhurt .\nthe shariya refugee camp opened around six months ago , made up of 4,000 tents and counting . the vast majority of the camp 's occupants are from the town of sinjar and fled an isis assault . but ahlam , her children and their grandparents were taken captive .\nmatt dunford bombarded amanda branco with 50 texts messages a day . he set up a fake escort website after their six month relationship ended . model , who claims he spends # 100,000 a year on his looks , found guilty . he was sentenced today and is banned from contacting ms branco again .\nstudy found us teachers judge black pupils more harshly after they have misbehaved than white students who have committed similar infractions . the research was conducted by psychologists at stanford university . they say their findings may help to explain why black pupils seem to be disproportionarly punished in schools when compared to other students .\nmary cartwright worked at drakelow underground factory from 1943-1945 . aged 20 , she analysed metal in its laboratory for bristol hercules engines . now 91 , the great grandmother has revisited the site in kidderminster . it was one of 26 underground factories used to produce military parts .\nsabrina osterkamp was last seen leaving home in naracoorte at 12pm on sunday . the german tourist was driving a friend 's car about 110km south to mount gambier in south australia 's southeast . the car was found abandoned on side of road in centre of mount gambier . the 25-year-old contacted authorities to say she was safe and well almost 24 hours later .\nover 700 guests attended the london in los angeles event on thursday . a-listers toasted bailey 's new beverley hills flagship . bailey was made ceo at age of 42 in 2013 and has boosted brand hugely . has tapped biggest supermodels and musicians for campaigns and shows .\nplant in zhangzhou , fujian province , is used to make a toxic chemical . nineteen people required medical treatment after blast caused by oil leak . plant produces paraxylene , which can cause eye , nose and throat irritation . it is the second accident at the controversial plant in 20 months . it took 177 fire engines and 829 firefighters to bring blaze under control .\namira abase , 15 , left uk for syria with two classmates in february . tweeted about enjoying a takeaway in islamic state ` capital ' raqqa . also shows life pre-isis with tweets about shoes , waffles and chelsea fc . amira , shamima begum and kadiza sultana aimed to be ` jihadi brides ' before departing , amira tweeted a picture of the three in a london park .\nwest ham drew 1-1 with stoke city in the premier league on saturday . diafra sakho was forced off after 59 minutes due to an injury . it is understood the striker has torn a thigh muscle during the match . sakho is unlikely to be able to feature for west ham again this season .\nprotesters mounted admiralty arch , which joins trafalgar square with mall . the gatehouse , built as a memorial to queen victoria , was sold in 2012 . it is now set to be turned into a luxury hotel after by spanish developer . anti fascist group ` autonomous nation of anarchist libertarians '\nmicky adams has left role at prenton park with just two games left to play . tranmere fans called for adams to leave the club after 3-0 loss by oxford . rovers are two points adrift of safety with just two games left to play .\nmusician sam smith , 22 , has lost three stone over the last year . british singer has followed amelia freer 's advice and slimmed down . now a fashion icon , he 's sharing his daily clothes diary with vogue .\nisis raided yarmouk refugee camp near damascus on april 1 . 18,000 palestinian refugees remain in the camp , cut off from vital aid . one defiant elderly resident told cnn : `` i will not leave the yarmouk camp even if i am 75 or 76 years old ''\nchelsea to play three matches inside six days in the united states . they will face new york red bulls , paris saint-germain and barcelona . fiorentina will then travel to stamford bridge for friendly on august 5 . four matches will make up chelsea 's participation in champions cup . read : chelsea interested in # 43m antoine griezmann .\njoseph mcenroe , 36 , was found guilty of six murders last week . slayed four adults and two children in carnation , washington , in 2007 . was staying behind the house with girlfriend michele anderson at the time . jury is deciding whether he is jailed for life or is condemned to death . mumbled and giggled as he testified in a bid to avoid execution .\nlanden martin , two , was killed after running behind the car on sunday . his uncle , 19-year-old joshua saunders was backing out of the driveway of a gainesville , georgia home when the accident occurred , police said . the child was pronounced dead at northeast georgia medical center . saunders was arrested on charges including reckless driving , leaving the scene of an accident and vehicular homicide .\nmoussa sissoko sent off during newcastle 's 2-0 defeat at liverpool . the french midfielder was booked twice but could 've received straight red . sissoko lunged in on lucas and left his foot on the brazilian 's ankle . john carver has no complaints with the sending off .\nscott kelley , now 50 , and mary nunes , now 19 , went missing in fall 2004 . genevieve kelley , mary 's mom , fled during custody fight with girl 's dad . family hid in costa rica for ten years until genevieve emerged last year . scott and mary were stopped on monday as they tried to enter the u.s. .\nthousands made the most of the warm weekend weather today by heading to beaches and parks across the country . britain is basking in sunshine with highs of 16.6 c in achnagart , scotland , and 16.4 c in pembrey sands , wales . virtually cloud-free satellite image from the european space agency 's metop-b satellite has been released . this month is set to be one of the warmest on record after temperatures soared to above 25c on wednesday .\nronald reagan asked mikhail gorbachev for help with aliens at summit . the former us president and actor was said to be a science fiction fan . he arranged private screenings of close encounters of the third kind and asked gorbachev for help dealing with any future alien invasion . reagan 's advisers edited out mentions of aliens in subsequent speeches .\nresearchers in us examine effects of sweetened drinks on 19 women . half group got sugary drinks while others received artificial sweetener . women who had sugary drinks released less cortisol during maths test . scientists conclude sugar consumption ` may relieve stress in humans '\nfrench photographer floriane de lassee visited cities around the world to capture these intimate photographs . she uses small subjects to contrast their being against the vast cityscapes behind them . she found her inspiration while studying at the international center of photography in new york ten years ago and lived across the street from a police station 's recreation room . photos are set in london , new york , moscow , paris , istanbul , shanghai , tokyo and more .\ndavid serbeck , 42 , was found guilty in 2012 of unlawful sex with a 17-year-old girl in 2007 and sentenced to up to 10 years in prison . another teenage girl 's father , reginald campos , shot serbeck in 2009 for stalking his daughter , severing his spine and leaving him paralyzed . his 17-year-old victim came forward after campos shot him . serbeck 's defense now argues jury gave him a long sentence after being led to believe he was shot while out looking for more girls to exploit .\nmanny pacquiao continued his high intensity training with a mountain run . filipino fighter is preparing for mega-fight with floyd mayweather jnr . fans joined pacquiao as he climbed to the top of the griffith park summit . the mega-fight with mayweather jnr is now less than a month away .\nstephanie scott 's family are preparing for her funeral on wednesday . they say all are welcome to remember and show their support for ms scott . the 26-year-old teacher believed to have been murdered on easter sunday . her accused murderer is the school cleaner , vincent stanford . stanford 's mother passed on her condolences to ms scott 's loved ones . leeton high school have reached out to the community to commend them for the strength they have shown in the face of immeasurable grief . her funeral will be held 10 days after her intended wedding date . the funeral will take place at the same venue where she had planned to marry aaron leeson-woolley .\nmichelle obama 's office says she chose the bold hue to distinguish her family 's china from the red , green , blue and yellow used on more recently . the obama state china service consists of 11-piece place settings for 320 people and the blue appears on all pieces but the dinner plate . pickard china , of antioch , illinois , was brought in to consult on the project three years ago and it 's just now come to fruition . the china as paid for from a private fund that is administered by the white house historical association .\nkevin pietersen has re-signed for surrey in attempt to earn england recall . graham gooch claimed pietersen had ` wiped the floor with the ecb ' pietersen takes to twitter to aim swipe at gooch .\nmanchester city play manchester united at old trafford on sunday . sergio aguero says scoring in the derby is enough to give you shivers . the argentine has scored six goals against man united since joining city . aguero described man utd striker radamel falcao as one of the most naturally gifted players in world football . aguero is refusing to give up hope of retaining the premier league .\nformer manchester united boss says no-one is close to world 's top two . but sir alex ferguson suggests neymar will be the next to reach that level . ferguson was also full of praise for real madrid boss carlo ancelotti . ancelotti invited fergie 's son darren to real madrid training early this year .\nstoke have opened talks over a contract extension for asmir begovic . manager mark hughes is keen to keep the in-form goalkeeper at the club . he feels begovic could be central to stabilising stoke in the top half . begovic has attracted top suitors including spanish giants real madrid . he put in an excellent performance during stoke 's win over southampton .\nrobert tesche and clayton donaldson struck in first half for birmingham . matt derbyshire pulled one back after the interval for rotherham . rotherham boss steve evans left fuming after being denied a penalty .\nalejandro bouvier of uruguay filmed the moment another rider got scarily close to his watercraft one sunny day .\nqueensland woman roxy walsh found an inscribed gold ring in bali . the sentimental jewellery piece was found at a bali resort on tuesday . she launched a campaign to return the ring to the people who own it . the campaign made it 's way to brazil , chile , europe , russia and malta . ms walsh found the owners and they are amazingly also from queensland . she met with joe and jenny langley in noosa on sunday to return the ring .\ncathleen hackney accused of lying to undertakers ahead of cremation . alleged to have claimed there were no objections to funeral taking place . court heard her ex-partner was not told when and where the cremation was happening . paul barber only learned about his son 's funeral after it had taken place .\nsusan monica , from southern oregon , allegedly killed two handymen living on her pig ranch . defense lawyer garren pedemonte said monica shot the first victim in self-defense and the second as a kind of mercy killing . monica claimed she shot robert harry haney , 56 , to put him out of his misery because she found her pigs already feeding on him .\ngeorge north was knocked out by wasps ' nathan hughes last friday . he will be given at least a month to recover before returning to action . north has suffered three concussions in the last four months . the welshman will be reassessed by a neurologist at the end of april .\nspanish football legend took to twitter to announce the listing . bodega iniesta ' vineyard is located in castilla-la mancha , spain . property has one bedroom with double bed , and kitchen and lounge area . guests are warned not to be too physical with the vines .\nscott quigg and i have taken all the risks - carl frampton must step up . we 've written him a cheque for # 1.5 million so what is stopping them ? i 've also held talks with kiko martinez and nonito donaire for july 18 . kell brook vs frankie gavin under strong consideration for may 30 . anthony joshua will probably fight again on may 9 in birmingham .\nolivia bazlinton , 13 , and charlotte thompson , 14 , struck by express train . network rail was fined # 1 million over their deaths for criminal negligence . parents were shut out of meetings where they planned to challenge bosses . the firm 's bosses received # 250,000 in bonuses last year .\ndavion only won us hearts in 2013 with plea for family to ` love him forever ' yesterday he was officially adopted by old caseworker connie bell going . he 's lived with her two daughters and adopted boy since december . ms going admitted it has not always been easy but says it is worth it and ` everyday it gets a little bit better '\ncanadian adultery website to list shares in london in bid to boost revenue . ashley madison claims to be second-largest dating website in the world . online dating site allows married people to sign up and find affair partner . firm hopes europe 's supposed ` laissez faire ' attitude to cheating will help .\nsean crawford has been criticised for using dead animals in his sculptures . his interest in taxidermy started through hunting on his farm as a child . all the animals used were killed in new zealand as a part of pest control . his work is currently on display at traffic jam galleries in neutral bay . museum curators said his work is being received well in australia .\nmanuscript showing the green tinged figure was drawn in around 1340 . it bears a striking resemblance to yoda in the star wars films . british library expert says it 's actually an illustration to tie in with the biblical story of samson , but it 's not known who the character represents .\naustralian prime minister skols a beer with celebrating football players . video shows tony abbott drinking the beer in six seconds . the prime minister has been criticised by anti-drinking campaigners . they say the prime minister should n't be glorifying binge drinking . ` it sets up a culture that drinking is n't about socialising with friends , it 's about how quickly and how much you can drink . ' . criticism also levelled at media and officials who made light of the event .\nthe agreement between representative alan grayson and wife lolita was announced on tuesday by a judge in an orlando , florida . mrs grayson had claimed in court papers that she was divorced from her first husband when she married the congressman in 1990 . besides bigamy allegations , there were mutual allegations of battery and accusations by lolita grayson of financial abandonment . the trial was previously delayed because lolita grayson had leaking breast implants .\ninfant , known as mary , was also found with two other drugs in her system . she was discharged from hospital despite her parents being drug users . the family from liverpool were already well-known to local social services . came amid concerns about alcohol abuse , domestic violence and neglect .\nnasa scientists discuss steps to discover life elsewhere in the universe over the next two decades . meg urry : life elsewhere in the universe , and even elsewhere in our own milky way galaxy , is practically inevitable . but the chances that we can communicate with that life are slim , she writes .\nmother-of-two jemma peacock , 31 , has a rare form of stomach cancer . nhs england has refused funding for a drug which could prolong her life . mrs peacock accused health service of denying her daughters their mother . drug would cost the nhs # 1,000 a week to provide and mother can not afford to pay for it privately .\npetr cech regularly posts drum covers on his youtube channel . chelsea shot-stopper has struggled for game-time this season . cech has fallen behind thibaut courtois in jose mourinho 's pecking order . his side face crunch clash with manchester united on saturday .\nsignatory to letter backing labour was given suspended sentence . can not be named for legal reasons but labour has removed her from list . arrived in uk in 2007 after ` marriage of convenience ' and claimed benefits . received # 30,000 in benefits even though she was barred from claiming .\nthe labor department reported on thursday that the number of jobless grads rose to 12.4 per cent last year from 10.9 per cent in 2013 . philip gardner , director of michigan state university 's collegiate employment research institute , says engineering and business majors have the most chance on landing a job in today 's competitive market . despite the recent news , in a survey of employers last fall the employment center found that hiring of graduates will rise 16per cent this year . indeed , the consulting and accounting firm ey plans to hire 9,000 graduates from u.s. universities this year , up from 7,500 in 2014 .\njose mourinho believes uefa 's financial fair play benefits rivals . chelsea boss says manchester united can fund a massive squad . the blues have been forced to sell players to balance the books .\ncouple from lincolnshire won the eight-figure sum on tuesday . they become the tenth biggest british winners in lottery history . the husband said he thought the win was an april fools ' day trick . comes the day after a couple living nearby won for the second time .\nqueens park rangers strode to a 4-1 victory against the baggies . joey barton believes his side can take great confidence from away win . premier league relegation candidates qpr currently occupy 18th spot .\nthe uk general election is just over two weeks away . political parties and retailers selling political merchandise . strange offerings include high viz jackets , decanters and birthday cards .\nhere 's a roundup of the week 's trending pop-culture stories . they include a new `` star wars '' trailer and an ill-advised , on-camera rant .\ntaylor lynn fast , 21 , told police her daughter layla had been bitten . police found her at home in festus , missouri , with horrifying injuries . fast reportedly said layla was bitten night before . officers say she had not realized her child was dead . she has been arrested and charged with endangering a child .\nugaaso abukar boocow has amassed more than 68,000 followers . her photos reveal a side of somalia that most people have never seen . she moved to canada with her grandmother to escape the civil war . the 27-year-old moved back to mogadishu last year to be with her mum .\nconor mcgregor recently commented saying he 'd ` kill ' floyd mayweather . the boxer dismissed the irishman saying he only wants the limelight . mayweather fights manny pacquiao at the mgm las vegas on may 2 . mcgregor has a shot at the featherweight world title against jose aldo . read : mayweather vs pacquiao contract still not signed , says bob arum .\ngary ballance , ian bell and joe root are forming a strong middle order . ballance shone at no 3 for england against west indies . england exile kevin pietersen will be 35 on june 27 .\nfinley lamb , five , suffers from periventricular nodular heterotopia . means many of his ` grey matter ' brain cells are not in the correct position . schoolboy should not be able to walk or talk but has defied the odds . now has started primary school and walks two miles every day .\nmils muliaina came off injured during connacht 's visit to gloucester . the 34-year-old world cup winner was arrested by police after the game . muliaina was held in cells overnight and questioned by officers in cardiff . he denies assault allegations over alleged incident last month .\nivan rakitic celebrated st george 's day with his wife and daughter . the barcelona midfielder played the whole game in tuesday 's psg win . barcelona lead la liga by two points and are in champions league semis . click here for sportsmail 's lowdown on the champions league final four . who will win the champions league ? our reporters have their say ... .\nan fbi affidavit from november 2014 that was recently unsealed reveals translator xiaoming gao shared information with an alleged chinese spy . gao was paid ` thousands of dollars to provide information on u.s. persons and a u.s. government employee ' she also lived with a state department employee who had top-secret clearance and who revealed they spoke about work with the woman . despite all this she was never prosecuted , and left her position at the office of language services in february 2014 .\nmanchester united lost 1-0 to chelsea at stamford bridge on saturday . juan mata played at chelsea for the first time since leaving the club . spaniard was proud of his side 's display against the champions elect . mata congratulates chelsea as they close in on premier league title . read : what has louis van gaal changed since utd sacked david moyes ?\ngabriel salvador set up an initial meeting between a tv exec and manny pacquiao 's trainer . salvador is an actor and waiter at craig 's restaurant in los angeles .\nmarlon samuels on 94 not out at stumps after being dropped on 32 on day one of the second test . ben stokes was admonished by the umpire steve davis after a heated exchange with samuels in grenada . chris jordan took two wickets while james anderson , stokes and stuart broad all claimed one each . replays showed opener devon smith clearly missed the ball when he was dismissed by jordan . captain denesh ramdin and samuels will resume on day two at national cricket stadium in st george 's .\nprosecutor : carlos colina , 32 , will be arraigned on the murder charge next week . he 's already been arraigned for alleged assault and battery , improper disposal of a body . body parts were found in a duffel bag and a common area of an apartment building .\nstudy in milan found two dogs identified 98 % of prostate cancer cases . they examined urine samples of 900 men - 360 who had cancer . medical detection dogs charity hailed the study as ` spectacular ' .\ntim sherwood 's side came from behind to beat liverpool 2-1 . philippe coutinho chipped liverpool into the lead in the first-half . christian benteke and fabian delph inspired an aston villa comeback . 19-year-old jack grealish was in fine form on his wembley debut . click here to read sportsmail 's match zone from the wembley clash .\nthe rapper assaulted the photographer at los angeles international airport in 2013 . west apologized as part of the settlement , the photographer 's lawyer says .\npalermo defender roberto vitiello must improve their poor away record . the italian side have failed to win on the road since november 2 . udinese are also a team in danger of relegation and lost to parma recently . they boast a less than impressive home record , winning one in nine .\nkhayree gay , 31 , was captured on friday at the security inn and suites hotel in lake city , south carolina . gay , is facing federal charges for allegedly kidnapping a jewelers row employee on april 4 in philadelphia . the woman , 53 , was abducted in a van from a parking garage and then beaten , tasered and threatened with death . she was left handcuffed in a pennsylvania cemetery following abduction .\nlandlady deborah steel , 37 , was last seen alive on 28 december 1997 . police have dug up the patio of the royal standard pub where she worked . a 73-year-old man is on bail and two others have had theirs cancelled . detectives believe she was murdered , but body has never been found .\nmichael mcindoe lured players into scheme with promise of 20 % return . ex player lived a millionaire 's lifestyle and known as ` mr big ' in marbella . but was declared bankrupt in october last year with more than # 2m debts . the 35-year-old is now being chased through the courts by creditors .\nhugh rodham 's tombstone is found tipped over in scranton , pennsylvania . it was reported two days after hillary clinton announced her presidential bid .\nlinda mclean was in her elementary school classroom in tiny halfway , oregon in 2013 when she was surprised by a man in a mask with a gun .\ncrystal mcnaughton from long beach , california , filmed the moment her newborn son paul started welling up to a rousing song from glee . as the track o holy night plays , a look of sadness spreads across the tiny infant 's face . every time lea michele sings the baby starts to cry .\na qantas jet bound for perth has been forced to return to sydney airport after a safety light turned on mid-air . airbus a330 took off soon after 11am but was back on tarmac by 12.30 pm . after an indicator light showed a possible issue with the rear cargo doors . engineers are inspecting aircraft but no evidence at this stage of a problem .\nfrida ghitis : president barack obama is right to want a deal , but this one gives iran too much . she says the framework agreement starts lifting iran sanctions much too soon .\nandreas lubitz crashed germanwings flight 9525 into the french alps , killing himself as well as the other 149 people on board the flight . it has since emerged lubitz had been treated for psychiatric illness . news has triggered a debate over whether airlines should have mandatory access to all pilots ' medical records , to try and prevent a similar tragedy . carissa veliz is a philosophy graduate from oxford university and is writing her dissertation on the subject of privacy .\nluke shaw joined manchester united from southampton for # 28m . the young english defender feels he has struggled to live up to his valuation at the club so far and is seeing a psychologist . shaw has played only 19 games for united this season .\npsv beat heerenveen to lift their first eredivisie title in seven years . ajax , who won the title for four successive years , are behind in second . luuk de jong and memphis depay starred as psv eased to 4-1 win . dordecht are on the verge of relegation after 3-0 loss to vitesse arnhem . az alkmaar qualified for the europa league play-offs with 3-1 win .\ntennis star andy murray and fiance kim sears tied the knot on saturday at dunblane cathedral . andy , and his mum and dad , have arrived at the cathedral , bypassing hundreds of well-wishers on their way in . kim sears arrived at the cathedral not long after her fiance . andy posted a tweet to his 2.98 million followers showing his plans .\nprincipal suspended after it emerged an autistic boy was locked in a cage . 10-year-old boy was forced into a ` withdrawal space ' inside the classroom . act education minister joy burch said words can not describe the horror . issue raised after complaint was made to act human rights commission . shadow education minister kate ellis says incident ` deeply disturbing ' .\nsome villages exist in what would be considered as uninhabitable places around the world . they have thrived by adapting to the natural surroundings and some remain hidden away from the rest of the world . hidden villages can be found in the middle of the grand canyon , in clay structures on rock faces , and underground .\nblackwater sniper nicholas slatten is sentenced to life in prison , mandatory for his first-degree murder conviction . three others get 30 years plus one day in the 2007 shooting in baghdad that left 17 dead .\nboxing trainer bob shannon has been charged with sexual assault . shannon is best known for training ricky hatton in 2012 . hatton lost their only fight together against vyacheslav senchenko in 2012 . shannon will appear before magistrates in manchester next week .\na new zealand zoo , orana wildlife park , is giving visitors the thrilling opportunity to step into the lion 's den . orana wildlife park in new zealand 's christchurch has installed a moving cage to bring you close to the lions . the king of the jungle clambers over the cage , jumping onto the roof and sticking his tongue through the bars . 20 people , including visitors and zoo keepers , climb inside to have lunch with a lion for $ 40 .\nkhalid saeed batarfi was freed from a yemeni prison by al-qaeda this week . terrorist commander was today pictured inside mukalla governor 's palace . he was seen pretending to be on the telephone as he wielded an ak-47 . batarfi led extremists in battle with government forces before he was jailed .\na car plunged off a road into los angeles harbor on thursday , and two children pulled from the submerged vehicle were hospitalized . the adults were described as being in fair condition but ` clearly emotionally distraught ' the events that led up to the accident are unknown . the victims have not been identified but they have been confirmed as a family . firefighter miguel meza who dove into the water in san pedro after a car carrying a family of four plunged into the water has been hailed a hero .\ndesigners we are handsome , manning cartell and bondi bather turn away from using skinny models . we are handsome to feature fit women in active swim runwayon tuesday . models include sjana earpe , kate kendall , amanda bisk and lindy klim . last month france passed laws banning use of underweight models . fashion houses face imprisonment and fines if they do not comply .\ngaya has been linked with a number of big clubs in spain and england . real madrid , man city , arsenal and chelsea could fight it out . valencia left-back , 19 , has a buy-out clause in his contract of just # 13.5 m . he has been impressive all season for the la liga club . the attack-minded gaya has been capped up to under 21 level for spain .\nmail on sunday writer visits the resort of niyama , in the dhaalu atoll . spends her days relaxing in the lime spa and snorkelling . food at the resort is cooked by aussie chef geoff clark .\njurgen klopp 's seven-year stint at borussia dortmund will end on june 30 . premier league clubs on alert after the shock news from germany . klopp has denied suggestions he is exhausted and wants a break . dortmund ceo hans-joachim watzke confirmed news in press conference . the 47-year-old has been linked to arsenal and man city jobs . klopp has won two league titles and the german cup in seven years there . klopp : ' i believe that borussia dortmund actually needs a change ' .\na nasa map has revealed which parts of the world experience the most flashes of lightning ever year . democratic republic of congo and lake maracaibo in northwestern venezuela experienced the most . according to the satellite observations , lightning occurs more often over land than it does over oceans . and lightning also seems to happen more often closer to the equator , owing to the hotter temperatures .\ntwo women permitted into cockpit of ryanair flight to berlin , germany . ryanair state the women were off-duty staff , and have investigated . but in light of germanwings disaster where 150 people were killed , actions brought concern to passengers on board .\nfernando torres hailed steven gerrard as the best he ever played with . the 31-year-old struck up a friendship with gerrard while at liverpool . torres has never quite rekindled his top form since leaving anfield . click here for all the latest liverpool news .\nella dawson , 22 , a recent graduate of wesleyan is revealing her genital herpes status in an attempt to destigmatize the sti . one in six americans have genital herpes and that number is just among people who have been tested . ` when a real person , a woman you know and respect , casually mentions having herpes , it stops being a punchline and starts being someone 's reality , ' dawson said .\ncharlotte blakeway was found dead in the bath at her home in shropshire . the 17-year-old student had suffered an epileptic seizure in the bathroom . her friends have spoken of their shock at her death and paid tribute to her .\nthe 13th century castle sits on 46 hectares of land in the dordogne valley . it is only 15 minutes from an airport with direct flights to london . the castle is also a short drive from the world-famous bergerac wine area . as well as 14 bathrooms the castle has its very own swimming pool .\ndavid cameron grilled by young voters on bbc radio 1 's live lounge . host chris smith accused of taking hostile stance towards tory leader . audience often interrupted prime minister as he answered questions . listeners called interview ` disgusting ' and accused bbc of left-wing bias .\ndavid king had not been seen since he went to tea with friends in october . the 70-year-old is thought to have got into an argument before his death . prosecutor said a neighbour admitted to putting mr king 's body in the well . but the man has yet to explain ` the circumstances of the death '\nthe british no 1 attended his second barcelona match in less than a week . barcelona beat psg 2-0 in the champions league quarter-final second leg . the 27-year-old was at the nou camp with best man ross hutchins . murray is in barcelona with jonas bjorkman training on clay courts .\njust saracens remain the nation 's only side left in the champions cup . bath , northampton and wasps all went out as sacracens sneaked through . but , lawrence dallaglio believes it is a crisis for french rugby not english . believes impressive domestic form is being let down by international form .\ngang targeted home of vera fisher , 81 , and her bed-ridden husband , 85 . they were tipped off the oaps kept money in their hertfordshire home . clinton jackson , 25 , was jailed for 18 years at the old bailey . jermaine kellman , 29 , and marvin sempler , 30 , were each given 13 years .\nterri hernandez is opening up about the bond she shared with ursula lloyd during her son 's murder trial . aaron hernandez was convicted of killing odin lloyd on tuesday and sentenced to life in prison without parole . ' i smiled at her after the verdict and just nodded my head , ' said hernendez of her interaction with lloyd at the trial . lloyd refused to comment on the story , saying she no longer wished to speak about her son 's murder .\nthe comment was made today by ellen stofan , chief nasa scientist . ` it 's definitely not an if , it 's a when , ' added nasa 's jeffery newmark . but the likelihood that life is similar to that on earth is low , they said . signs of water have been found on some of jupiter and saturn 's moons .\npeterson has been banned since september 17 after child abuse case involving his four-year-old son and a switch . he played just one game for the vikings last year and was due to be reinstated on april 15 . but the nfl have moved that date forward and the 2012 running back will know more about his future . the vikings have repeatedly said they want to keep the 30-year-old , who is due to earn $ 12.75 m this year . but the cowboys and the cardinals have been linked with peterson , and the former have made some intriguing roster moves to free up cap space .\nsamir nasri came on as a substitute as man city lost to crystal palace . frenchman dined at hakkasan restaurant with his girlfriend on tuesday . man city could use winger as bait to sign juventus star paul pogba . read : manchester city to swoop for jack wilshere and jordan henderson . click here for the latest manchester city news .\nnew research finds direct link between exam stress and performance . london headteacher michael ribton says revision plans , flashcards and cram techniques can all help children prepare for the exam season . he advises parents that extra tuition and bribes should n't be necessary .\nmanchester united defeated city 4-2 in the premier league on sunday . a youtube video has emerged of blues fans taunting their rivals with disgraceful songs about the munich air disaster . 23 people were killed in the 1958 tragedy , including former city keeper frank swift .\nfiorentina forward mario gomez opened the scoring in the 43rd minute . dynamo kiev 's jeremain lens was sent off before the half-time interval . referee jonas eriksson brandished a harsh second yellow card for dive . late substitute juan vargas doubled scoreline with just seconds to go .\nleeton parents say their children are devastated by teacher 's murder . police discovered a body in nearby bushland on friday afternoon . an autopsy will now be conducted to determine the cause of death . police will contact authorities in holland for a background check on accused killer , vincent stanford , who was charged with murder .\ndog found with multiple knife wounds in cass county , north dakota . wilford survived the violent attack carried out with an eight inch blade . he needed more than 50 stitches to patch up five deep knife wounds . now being cared for by foster family and expected to make a full recovery .\nchristian englander , 30 , threw a banana peel at chappelle , 41 , during show at lensic theater in santa fe on monday . on thursday , he threw another peel at a man upset by first attack . claims it was a ` joke ' because ` the irony was too much to pass up ' insists the attack on chappelle was not racially motivated . he had eaten the fruit before the show , washed it down with a shot of 99 bananas liquor , left the peel in his pocket .\nerrol louis : by chance a bystander video caught south carolina officer shooting apparently unarmed black man . federal law on reporting of such shootings goes unenforced -- how many instances do we never hear about ? he asks . louis : it 's long past time for officials to tell the truth -- even when there 's no video .\nprevious popes had finessed the question of whether the killing of 1.5 million armenians was genocide . because he often shines such a smiley face on the world , it can be easy to forget the bluntness francis sometimes brings to the bully pulpit .\nformer turkish ambassador to the vatican calls use of the word `` genocide '' a `` one-sided evaluation '' pope discusses massacres of armenians a century after they took place . turkey denies the mass killings constituted a genocide .\nss sergeant oskar groening , 93 , faces trial for being a guard at auschwitz . charged with 300,000 counts of accessory to murder in 2 months in 1944 . groening says he was at the camp but denies killing or torturing jews . survivors and relatives filed into court today as they waited for trial to start .\nofficer michael slager is being held at charleston county jail . housed in housed in a room with one small window and does not have any interaction with any other detainees at charleston county jail . slager , 33 , is charged with murder after opening fire on walter scott , 50 , after reportedly stopping him over a broken tail light in north charleston . dashcam footage shows scott running from his car after being pulled over . minutes later slager shot him in the back in a nearby park .\n17 americans were exposed to the ebola virus while in sierra leone in march . another person was diagnosed with the disease and taken to hospital in maryland . national institutes of health says the patient is in fair condition after weeks of treatment .\ntwo men were caught on a familiar route leading into the middle east . the pair are believed to be still detained in turkey for foreseeable future . officials could not confirm if and when they would be returned to australia . it comes day after australia and turkey sign anti-terrorism treaty . the new deal will also cover criminal activity such as drug trafficking .\nmartin alvarado , jr. , ` was looking after edwin o'reilly on thursday and became enraged when the child urinated on him as he changed his diaper ' he ` confessed to police that he repeatedly struck the boy , killing him ' alvarado is being held without bail on a first-degree murder charge .\nandros townsend scored england 's equaliser against italy on tuesday . goal was the tottenham winger 's third in seven games for england . but townsend 's club form has been patchy in last two seasons . challenge now is for townsend to replicate international form for spurs . click here for the latest tottenham news .\ntv5monde went black late wednesday and was still out hours later . the network blames an `` islamist group '' ; there 's no claim of responsibility .\nbb-8 moved in all directions on stage at star wars celebration in anaheim . director jj abrams said a real robot and not cgi was used in the film . audience were mesmerised by the droid but it 's a mystery how it works . suggestions include giant robotic ball has another magnetic robot on top .\nnumber and seriousness of australians facing death penalty in china is ` unprecedented ' that 's according to a high-level ministerial briefing obtained by daily mail australia under freedom of information laws . many australians arrested were caught in guangzhou province - a production hub of the drug ` ice ' . as many as 11 were arrested in guangzhou alone in 2014 . a prominent jockey and four other citizens are known to be potentially facing death row , including kalynda davis 's former partner peter gardner . ms davis , 22 , was freed without charge in december after a month spent in a chinese prison . do you know more ? daniel.piotrowski@mailonline.com .\narsenal players are choosing to employ their relatives as agents . fifa have washed their hands of attempts to regulate middle-men . alex oxlade-chamberlain , calum chambers , jack wilshere , kieran gibbs and danny welbeck are among those to use the policy . liverpool club secretary stuart hayton is leaving anfield after two seasons .\njack andraka , now 18 , became depressed when a close family friend died . uncle ted passed away from pancreatic cancer . jack then developed a test for detecting pancreatic cancer . it won the top award at a prestigious international science competition . breakthrough is an inspiring story for would-be scientists .\nthe popular joejoe has over 60,000 followers on instagram . capybara stands calmly in the bath with three ducklings on its back . giant rodent lives in las vegas with his owner cody kennedy .\na report has shown that only 9 percent of homes in last quarter have recorded a loss at their sale with nearly a third selling for double what owners paid . the total vale of these profitable resales was over $ 17 billion three and a half times more than the total of the loss . sydney recorded the lowest loss-making resales at just 2.4 percent which is down from 3.5 percent in a year . the typical home is now owned for over ten years before it is resold with melbourne homes being held longest .\nenigmatic app is the brainchild of a developer in athens , greece . it has a black screen with fiendish clues and no hints or images at all . about 10 % of players so far have completed the app 's 50 levels . equally mysterious episode two of none * is expected this summer .\nthe woman , named dawn , was appearing on itv 's the jeremy kyle show . accused her close friend and house-mate jamie of stealing # 207 . the money had been set aside for a grave stone for baby daniel james . a sobbing dawn revealed that the baby was the seventh she has lost . the jeremy kyle show , weekdays at 9.25 am on itv .\nclegg names the first of his ` premier league policies ' as price of support . would mean raising spending on education every year from 2018 onwards . lib dems say it covers every stage of education ` from cradle to college ' but insiders admit the party could lose as many as 20 seats on may 7 .\nsteven christopher costa is set to leave britain to fight against isis in iraq . married father-of-two says he will take his own life if caught by terrorists . mr costa says his wife was ` not impressed ' when he revealed his plans . former royal navy seaman 's biggest fear is not seeing his children again .\nsusan and mike fortuna of shelburne , vermont say their daughter mandy suffered an unexplained health deterioration soon after treatment . the parents learned their daughter had been treated by the same doctor who previously caused a 7-year-old boy to overdose , lawyers say . in that case , botox maker allergan was forced to pay the family nearly $ 7million .\nliverpool city council planning committee gave its approval on tuesday . liverpool had grown concerns over confidentiality of their team details . opportune observers and photographers have watched sessions in past . stan collymore : liverpool should have patience with brendan rodgers . read : juventus monitoring liverpool winger raheem sterling .\nthomas piermayr has been training with blackpool this week . austrian defender is a free agent after leaving mls side colorado rapids . blackpool are bottom of the championship and look set to be relegated .\njim jepps used site to describe paedophiles as ` complex human beings ' couple met in 2010 after she contacted him to complain about a blogpost . defended ` rape fantasies ' and discussed teachers having affairs with pupils . bennett distances herself from ` private individual not involved in politics '\nallegations a 17-year-old was forced to sleep with prince andrew erased . virginia roberts had attempted to join lawsuit against the u.s. government . the women were trying to reopen a federal non-prosecution agreement . a judge today struck her and a second woman 's claims from court records . he said the details had no bearing on the attempt to reopen prosecution .\njurors in sentencing phase in dzhokhar tsarnaev 's trial hear of loss . victims testify about the impact of the bombing on their lives .\narrests made sunday after investigation into youths traveling to join isis . details are scarce but authorities said there is no threat to public safety . three men arrested in the twin cities were already known to authorities . reportedly rode bus to nyc with hamza ahmed and tried flying to istanbul . 19-year-old charged with lying to fbi and trying to provide support to isis . the us attorney 's office and the fbi will hold a news conference monday .\nwellness guru and app developer belle gibson lied about having cancer . ` no , none of it is true , ' she told australian women 's weekly . ' i am still jumping between what i think i know and what is reality ' , she said . leading psychologist believes gibson could be suffering from both anti-social behaviour and narcissism disorders . jo lamble says the wide adoption of technology and social media mean that small lies can easily get out of hand .\n1.9 million foreigners are likely to be in the country at any one time in 2015 . this includes students , tourists and workers on short term visas . while permanent migrants is likely to exceed record of 185,000 set in 1969 . the current visa figures compare to those in the aftermath of world war ii .\nvan was driving down dual carriageway near coastal city of salé , morocco . footage shows the moment it starts repeatedly swerving across two lanes . video taken by following motorist captures van crashing down on its side .\nfranz beckenbauer thinks jurgen klopp could be next bayern munich boss . klopp has already confirmed he will leave borussia dortmund this summer . beckenebauer believes klopp has what it takes to replace pep guardiola . guardiola has a contract until 2016 but has been linked with a move away .\nadvertising entrepreneur john singleton is selling his breathtaking beach house . the luxurious five-bedroom abode offers sweeping views of the pacific ocean . singleton bought 80 beach drive for a suburb record of $ 4.25 million in late 2007 . the exquisite design captures the quintessential australian beachside home .\nthe song rules the chart for 13th week . it passes robin thicke 's `` blurred lines '' song three weeks from potentially tying `` one sweet day '' for record .\npiers morgan calls for arsenal to replace their long-serving manager . morgan says jurgen klopp would ` be our mourinho ' if he joined arsenal . gunners fan says klopp is ` perfect for arsenal ' .\na new mother was shocked to receive a scathing letter . unsigned letter slammed her for posting too much on facebook about her baby . letter to jade ruthven claimed to come from her friends . she chose to respond by posting even more photos of her baby to take a stand against the bullies . she has no idea who sent the cruel letter or why they chose to be so mean .\nsharmeena begum was raised by uncle who was former religious scholar . he blames airport authorities , police and her school for letting her flee . she used # 1,000 of inheritance following her mother 's death . he is worried what will happen in syria and that she wo n't be allowed home .\nthe grand dame of broadcasters believes that monica lewinsky has the right stuff to bring the view back from the brink . the former white house intern would also draw great guests - although probably not hillary or bill clinton . her recent ted talk on ` the price of fame ` redefines her story as the first victim of cyber-bullying . in recent weeks nielsen ratings showed that the talk beat out the view for the first time but the view made a comeback .\nan arrest warrant has been issued ben cousins after he failed to show up in court . cousins , 36 , had been on bail for an alleged low speed police chase on march 11 . he was charged with reckless driving , failing to stop and refusing a breath test . cousins has been involved in a string of bizarre incidents in the weeks since which have seen him hospitalised for mental health checks .\nthe image is believed to come from a firebrand american religious group . professors of gynecology hans peter dietz said the image is dangerous . the professor said it represents a broader anti-caesarean sentiment . world health organisation said the number of caesareans needs to drop .\ngaioz nigalidze has been expelled from the dubai open chess tournament . georgian champion was found using his phone in the middle of a match . opponent grew suspicious when he kept making trips to the toilet . tournament organisers then saw he had wrapped a phone in toilet paper . found his match was being monitored in a chess application on the phone .\nengland 's stuart broad collapsed clutching his left ankle in second over . fast bowler spent an hour off the field but later returned to the attack . jonny bairstow made 98 and joe root ended the day 87 not out .\nman , 30 , is accused of using a female nurse 's employee number to work . he worked for six weeks at aurukun primary health centre on cape york . man was charged with fraud after payroll raised the alarm with hospital . authorities are checking patient records to see who he interacted with .\nfulham are planning to swoop for brentford boss mark warburton . owner shahid khan is planning for next season . warburton has led brentford to seventh in the championship .\ntens of thousands of migrants and refugees risk the perilous journey across the mediterranean every year . many make the trip in dangerous boats owned by people smugglers ; thousands have died along the way in recent years .\nmanchester united host bitter rivals city on sunday afternoon . it could be a derby without a single local player on either side . louis van gaal and manuel pellegrini have both tried to immerse themselves in the local culture . read : manchester united end 499-day wait over manchester city . vincent kompany : beating united at old trafford will help ` rectify ' season .\njericho scott , 16 , was shot dead in new haven , connecticut , on sunday . scott was told he could no longer pitch for will power fitness team in 2009 . youth baseball league of new haven officials said he pitched too fast . sunday 's murder was city 's fourth homicide of 2015 and first youth killing .\ndavid cameron will pledge to sell lloyds shares if he wins the election . government hold shares after labour 's # 20billion bailout in 2008 . the # 4billion sale would be the biggest privatisation since the 1980s .\nmoira gemmill , 55 , was cycling to work when she collided with tipper lorry . she had recently left position at v&a for role at royal collection trust . colleagues said her death was ` devastating ' and she 'll be ` greatly missed ' tipper lorry driver , 50 , was stopped near lambeth bridge but not arrested .\ntories pledged to extend dream of home ownership to 1.3 m social tenants . housing associations respond furiously amid threat of a legal challenge . but 80 housing association bosses earn more than david cameron 's salary .\nmillionaire gary lowndes purchased the tampa property in 2013 for $ 2 million and had wanted to film a reality show about strippers at the mansion . he admitted defeat on friday after being found guilty of violating zoning codes due to noisey private functions held at the residence including the midsummer night wet dream event . residents of the nearby cheval west community had repeatedly complained about the noise coming from the seven acre property . on friday the county code enforcement board found that lownds had violated their rules and threatened to fine him . he has put the property back on the market for $ 2.3 million .\njohn caudwell has bought a car park in audley street , mayfair and is planning to replace it with a huge block of flats . the new complex will contain five townhouses , a mews house , three penthouses and 21 more luxury apartments . the homes being built by phones4u entrepreneur will boast their own swimming pools and private gyms . but he could have difficulty with planning permission if vip neighbours object to proposal for four-storey basement .\nneighbors blocked lucas ' plans to build a film studio in 2012 . now he plans to erect a housing complex on land off lucas valley road . the community would provide housing to 224 low-income families . with huge support from low-income community , his neighbors will be hard-pressed to block the proposal .\nmarsha yumi perry , 36 , of washougal , washington was arrested on friday . police dog tracked her sent through a field coming within feet of the hole . officer kyle day gave warning he was about to unleash the dog when ` the ground moved and she sat up ' , police said . boy suffered cut to his face and scrapes to his knees and elbows . perry was arrested on felony hit-and-run , driving with a suspended license and on a misdemeanor warrant .\nlewis hamilton has been out in la ahead of the fifth race of the season . hamilton chauffeured younger brother nicolas around town in his cobra . mercedes driver has won three of his four races this calendar year . reigning champion heading to santa monica ahead of spanish grand prix . nicolas hamilton preparing for the british touring car championship .\nkimberley donoghue fell down stairs carrying a box of decorations . the 28-year-old was put into a cast just four days before her wedding . the bride was wheeled into church by her dad , and sat to say her vows . after a year of planning , she says she ` knew something had to go wrong '\ndarren bent currently on loan at derby county from aston villa . former england striker was frozen out at villa under paul lambert . bent now says he could be back next season having had ` discussions ' bent worked with manager tim sherwood at tottenham .\nmembers of 30 rock band members merged into one face each . beatles look like paul mccartney , nirvana look like kurt cobain . u2 , rolling stones and green day are a bizarre blend .\nmartyn uzzell died instantly when a 4in pothole threw him into path of a car . cyclist was riding from land 's end to john o'groats for charity in 2011 . his widow kate has now been awarded a six-figure payout from the council . but north yorkshire county council still refuses to apologise despite coroner ruling the state of the road was to blame .\nonce heard on stage , in the street and at work , whistling is on the decline . end of variety shows , working class jobs and rise of mobiles contributed . poll shows 70 percent heard more whistling twenty or thirty years ago . popular in the life of brian and 1980s pop songs , now the whistle is out .\nwest brom chairman jeremy peace has fielded enquiries from consortia in america , china and australia . some of the parties have already had a tour of the club 's training facilities . peace owns 77 per cent of the premier league club and is looking to sell the club for between # 150m and # 200m .\nsergio perez admits force india are relying on june upgrade to improve . mexican fears very painful year if upgrade fails to raise competitiveness . force india missed much of pre-season testing and are well off the pace .\nqantas released photos of koalas in first class being served refreshments . the 4 koalas are gifts for singapore marking their 50 year of independence . they will be travelling in specially built containers fit with eucalyptus tree . this special gift was announced by julie bishop on thursday .\njohn helinski 's id and social security cards had been stolen . his case worker and a cop had to get foreign id papers to get him a driver 's license . then helinski remembered a bank account he used to have .\nroberto carlos says the pressures faced as a player makes coaching easy . he won the world cup with brazil and champions league with real madrid . the former defender said he learnt from all the managers he played under .\nstate 's department of fish and game ruled that the family must die . mother and cubs had been spotted eating from trash cans in anchorage . plans are being made for bear-proof trash cans to stop situation repeating .\nmother akon guode was released from police custody on thursday night . she crashed 4wd into melbourne lake just before 4pm on wednesday . her three young children died and another is now recovering in hospital . children 's father says ms guode ` did n't feel herself ' as she was driving .\nqantas ' on time rating slipped to 75th out of the 80 airlines using heathrow . the airline could loose their eight landing strips at the popular airport . they are also facing a fine in excess of $ 38,000 for every flight that 's late . qantas blamed air congestion at heathrow and dubai airports .\niplayer listeners say the vital last minutes have been left off radio dramas . shows such as dad 's army and hancock 's half hour fallen foul of problem . bbc blames system it uses to record programmes , but it 's not a new issue .\nbuttery flavours of sausage roll are balanced by zesty apple of riesling . pair margherita with shiraz and pepperoni pizza with cabernet sauvignon . pair your scotch egg with fiano and chocolate with a glass of merlot .\ncapture of charles piutau is a bold endorsement of ulster 's ambition . leinster were forced to rest irish stars for pro 12 clash with glasgow . nathan hughes did not deserve ban for clumsy challenge on george north .\ndaniel weness reported on tuesday that a storage canister with vials of bull semen had been taken from his farm . the $ 500 canister held vials worth between $ 300 and $ 1,500 each . theft happened between april 1 and 7 , and weness was away on easter . there is a market for bull semen because it helps farmers on transportation costs of putting a bull and a cow in the same pen to breed .\nbreast cancer patients may be spared chemotherapy thanks to new tests . tests pinpoint genetic ` markers ' in tumour and determine aggressiveness . they are available privately for # 2,500 and may be rolled out soon on nhs . women told within days whether they have a high risk of disease returning .\njimmy anderson two wickets behind sir ian botham 's record of 383 . the 32-year-old is playing in his 100th test match for england . anderson hopes to break botham 's record for most wickets in this test . england have 17 tests in nine months and must be careful with jimmy . anderson will be crucial to any hopes of regaining the ashes urn .\nthe 2014-2015 pfa premier league team of the year has been announced . harry kane has been named up front alongside chelsea 's diego costa . costa , eden hazard and john terry are among six chelsea players named . manchester united 's david de gea is the team 's goalkeeper . cesc fabregas did not make the team despite 16 league assists . the pfa awards ceremony is being held in london on sunday evening .\njack wilshere played 90 minutes for arsenal 's under 21 side . mikel arteta and abou diaby also played at the emirates against stoke . wilshere has been recovering from a serious ankle injury .\ndr sandra lee is a dermatologist at the skin physicians & surgeons practice in upland , california , and is a regular guest on talk show the doctors . nearly 60,000 people subscribe to her youtube channel , in which she shares videos of herself extracting her patients ' zits and cysts .\nian watson is set to come out of playing retirement at the age of 38 . his last game was as player-coach in championship for swinton last june . watson stepped up his training ahead of sunday 's game against castleford .\ntiger woods drilled an iron into a tree root on the ninth hole at augusta . this is the latest of a string of unfortunate injuries for the 39-year-old . woods ended the tournament tied for 17th , his best finish in over a year . read : we 've seen enough of tiger at augusta not to give up on him yet . click here for all the masters 2015 reaction .\nputin to spend hours fielding questions from the general public on live television . sanctions and russia 's deep economic crisis likely to be a major theme . critics of the kremlin slam event as russia 's imitation of democracy in action .\nhina shamim died after she was knocked down outside university library . the 21-year-old student was due to celebrate her birthday in a few weeks . crash involved a bmw carrying five children as young as four and a bus . driver , 34 , arrested on suspicion of causing death by dangerous driving .\npregnant rebecca adlington , 26 , has struggled with her changing shape . she ca n't wait to regain her pre-pregnancy figure and feel herself again . the gold medal swimmer also revealed she is planning a water birth .\nair canada flight aca-877 set out from frankfurt airport , germany . pilot contacted shannon after disturbance caused on board . irish police confirm 87-year-old woman was taken into custody and then released without charge this morning .\nsteve davis will attempt to qualify for the betfred world championship . the 57-year-old is a six-time world champion at the crucible . but davis admitted he is not fully committed to the sport . jimmy white and reanne evans are also hoping to qualify .\nsamantha simmonds posted honest blog about easter family break . detailed how youngest son , four , knocked six-year-old 's tooth out . wrote of ` ticking time bomb ' when all three children are together . in the post the newsreader , 42 , also describes ` working mum guilt ' .\nalastair clarkson has been filmed pushing and grabbing the neck of an adelaide power fan after hawthorn 's loss to port adelaide on saturday . the intoxicated fan is seen harassing clarkson outside his adelaide hotel . clarkson was ` pushed , shoved all the way to the door , ' hawks ceo says .\nnina anderson 's jewellery was stolen from her bedroom as she watched tv . the 78-year-old started searching pawn shops near her portsmouth home . spotted two of her necklaces and records traced back to martin campbell . campbell , 28 , who worked for mrs anderson , has been jailed for 3 years .\nlocals from the maldives island of kudahuvadhoo claim they saw a low-flying jet on the morning mh370 disappeared . the island is over 5000 kilometres away from the current search area . members of the community say it was so low they could see the plane 's doors and make out the distinctive colouring on the side of the jet . locals made statements to verify what they had seen to officials . curtin university acoustic scientists say they recorded ` distinctive ' noise from the area at the presumed time of the crash .\nformer nfl star aaron hernandez found guilty for murder of odin lloyd . the conviction carries a mandatory sentence of life in prison without parole . athlete once had a $ 40million contract and a standout career ahead of him . the former american football pro was also found guilty on firearm and ammunition charges .\naverage british worker sits through 6,239 meetings in their career . 60 per cent of the 2,000 surveyed say they find meetings ` pretty pointless ' . one in five adults admit to catching forty winks during a work meeting . 70 per cent also confessed to constantly zoning out during sessions .\ndonna and zaki oettinger died on train tracks in south london in 2013 . inquest heard mother had taken an overdose three months earlier . she hoped for home psychiatric help , but was later told not available . a coroner has recorded she unlawfully killed her son and killed herself . for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here . .\nmario ambarita climbed on to passenger jet flying from island of sumatra . crawled from wheel housing of the plane at jakarta airport in ` dazed state ' airport bosses say his ` fingers turned blue and his left ear was bleeding ' . the 21-year-old indonesian man said he was desperately ` looking for work ' .\nengland 's top order collapsed on the first morning in antigua . jonathan trott , alastair cook and gary ballance all out cheaply . michael vaughan critical of footwork and mindset of the trio . vaughan is favourite to take up role of england cricket director .\njo burston is a top australian entrepreneur and owns seven businesses . in first four years of business she had a $ 40 million dollar turnover . founder of job capital and new organisation ` inspiring rare birds ' burston has partnered up with branson 's virgin unite for mentor program .\nhani al-sibai is believed to have influenced a number of young muslim men . lives in area where jihadi johnspent time with london boys terror cell . security services believed to be investigating cleric 's influence on network . al-sibai recently caused outrage for making sexist remarks to lebanese tv host live on air .\nliverpool will go another campaign without silverware after fa cup exit . it marks a third straight term where brendan rodgers has failed to deliver . he has spent over # 200m on transfers but is yet to win a trophy at anfield . and only a fraction of the 22 players he 's signed can be considered a ` hit ' .\n600 fewer gps open in the evenings and at weekends , labour has claimed . andy burnham will say the figures are a timely reminder of the ` nhs crisis ' .\nchannel 7 perth reporter monique dirksz got the scoop on cousins ' arrest . she was the only journalist outside freemantle police station at 2am . constable daniel jamieson is said to have been dating her at the time . he has been charged with four counts of disclosing official secrets . the policeman allegedly looked up the information on a police computer . cousins was arrested on march 11 over an alleged low-speed chase . ` hundreds ' of officers are said to have unlawfully accessed the documents . police also reportedly looked at the files of former afl player daniel keer . an internal investigation is currently underway .\nlewis hamilton won the chinese grand prix with nico rosberg second . after the race rosberg accused hamilton of being selfish by slowing down . he said hamilton 's speed allowed sebastian vettel to close the gap in third . rosberg explained he did not try to attack hamilton for fear of tyre wear . click here for all the latest f1 news .\nstephen curry scored 34 points for golden state against new orleans . the californian-based team defeated the pelicans 106-99 . washington wizards outscored the toronto raptors 11-4 in overtime . paul pierce led the scoring with 20 points for the wizards .\nmark lowe , 32 , beat his brother wayne , 33 , to death last september . wayne , who was known for being violent , attacked mark in bed with a knife . mum-of-three sarah lowe insists her husband , a nurse , is a good man . mark is now serving a four year eight month prison sentence .\njenson button denied 100th race start for mclaren after ers failure . button then spent much of the bahrain grand prix on twitter delivering his verdict on the action as it unfolded . lewis hamilton has out-qualified and finished ahead of mercedes team-mate nico rosberg at every race this season . bernie ecclestone confirms f1 will make its bow in azerbaijan next season .\nexperts say it 's time to replace coconut oil with pumpkin seed oil . rich in vitamins a , k and e , as well as vital minerals and fatty acids . health aficionado gwyneth paltrow is already a fan .\njudges scored the contest 113-112 , 112-113 , 113-113 - a tie . irishman lee was floored in the first round but fought back admirably . he threw more punches and connected more regularly than his opponent . quillin had failed to make the required weight of 160lbs on friday . reigning wbo middleweight champion lee went distance for first time . and he did most of it with a strained biceps muscle in his left arm .\njulie ronayne was given # 160,000 after a botched hysterectomy in 2008 . she contracted peritonitis following surgery at liverpool women 's hospital . husband edward was given # 9,000 for ` shock ' and being ` secondary victim ' nhs fighting payout , fearing it could open the floodgates to similar claims .\ndavid perry : robert kennedy jr. compared autism to the holocaust , wrongly tied it to vaccines . he says it 's sad such a prominent kennedy demeans people with autism .\nceltic boss ronny deila was unsure he was cut out for the job . deila struggled for results initially at celtic park . but the bhoys now lead the premiership and should win the title .\ned miliband refused to accept he had been proved wrong in bbc interview . reject string of proposals read out to him by evan davis on newsnight . mr davis told labour leader situation had improved in jobs , crime and fees . mr miliband also refused to say how much labour would be borrowing .\ntwitter has developed an interactive graphic which shows support for all 20 premier league clubs across the globe . support for clubs has been broken down into constituency level in the uk and national level across the world . the premier league 's biggest clubs - manchester united , liverpool , arsenal and chelsea - dominate globally . manchester united dominate twitter followers in asia while chelsea are strong in south america . arsenal come out on top in north america and in most of europe . liverpool are strong in australia and parts of the far east , including thailand .\nmany little amusement parks are set up in the slum areas of pakistan on the outskirts of islamabad and rawalpindi . the rides include merry-go-rounds , trampolines , carousels and basic swings . children who have been forced out of their villages due to fighting shriek with delight whilst enjoying the rides .\nmark warburton set to leave at the end of the season . gianfranco zola being considered for job , along with other foreign bosses . zola was at griffin park to watch brentford play on saturday .\ngp circulated a letter claiming ` flat-line funding ' had ` crippled ' nhs . version of letter appeared in the guardian signed by more than 100 doctors . claimed the ` direction of travel ' under the tories was towards privatisation . labour were accused of orchestrating the letter as a ` stitch up ' .\njason edward harrington worked for the government agency for six years . said staff would pull attractive people aside so they could touch them . would also conduct bag checks on passengers on people they do not like . made claims following revelation agency fired two employees in denver . the pair manipulated body scanners so they could grope male passengers .\nthe yeo valley staff canteen is said to be best in the world and offers restaurant-quality food at subsidised prices . its 120 dairy workers can tuck into a meal for as little as # 2 and now the canteen has been opened up to the public . locally-sourced food is prepared by michelin-trained chef paul collins against stunning backdrop of the mendips . how does your staff canteen measure up ? send your pictures and stories to gemma.mullin@mailonline.co.uk .\nmanchester united midfielder admits he is ` hooked ' on formula one . michael carrick says he 'd ` love to have a go ' at the sport professionally . but carrick is convinced he still has years left in football .\nsiti zainab was executed in holy city of medina after 15 years on death row . sentenced to death for stabbing to death an employer who ` mistreated her ' . indonesia is furious its officials and her family were n't notified beforehand . amnesty international says the beheading shows a ` basic lack of humanity '\nreal madrid face atletico madrid in the champions league on wednesday . quarter-final second leg at the santiago bernabeu is tightly-poised at 0-0 . real forward gareth bale will miss the clash due to calf injury . read : ancelotti has a poor record against simeone ... but he must advance .\nlawsuit says scientists infected hundreds of guatemalans with sexually transmitted diseases . a similar lawsuit filed against the u.s. government was dismissed .\nconservatives have opened up four-point lead over labour , poll reveals . david cameron 's party has 36 per cent of vote , ahead of rival 's 32 per cent . ukip on ten per cent , lib dems on eight per cent and greens five per cent .\ntwin cities radio host mary lucia wrote a letter to her fans on wednesday saying she would be taking some time off work following her ordeal . she described how she has ` constantly been looking over my shoulder ' after a stranger began contacting her incessantly from march 2014 . patrick henry kelly ` repeatedly called her at work and home and wrote her letters saying they should be together ' he ` left gifts including wine , candles , a calculator and food at her home ' after repeatedly violating a restraining order she had taken out against him , he was charged last year and goes on trial next week .\nronny deila was angry at the referee 's decision to not award his side a penalty and send off josh meekings for a handball on the goal line . inverness went onto win 3-2 after craig gordon was rightly sent off . celtic 's hopes of a domestic treble were dashed at hampden park . click here for all the latest celtic news .\nreading university researcher says bees prefer cities to fields . expansion of farmland has actually been damaging to bee population . wildlife sites in four english counties saw bee species decrease . reason is likely due to wide variety of flowering plants in urban areas .\nsarah grimes accused kristen saban , daughter of alabama football coach nick saban , of brutally beating her after a night of drinking in 2010 . in her suit , grimes said the sorority sisters were arguing over a boy when saban posted on facebook : ` no one likes sarah , yayyyyy ! grimes claimed saban left her with a broken nose and a concussion . saban argued it was grimes who attacked her and left her bleeding . grimes ' lawsuit was set for trial in early august ; both women now will have to pay their own legal costs .\nadelaide crows captain taylor walker comforted team 's crying mascot . satine cahill , 7 , was supposed to lead afl team out onto field on sunday . she became spooked by fireworks on the field and burst into tears . tex approached satine and comforted her before holding her hand tightly . they walked out into the stadium together to take on north melbourne .\nchristian benteke has scored six goals in eight games . emmanuel adebayor thrived under tim sherwood at tottenham last term . sherwood handed jack grealish only his second villa start on saturday .\nhernandez was moved on wednesday to the maximum-security souza-baranowski correctional center in shirley , massachusetts . he had been at cedar junction prison in walpole since he was convicted april 15 of killing 27-year-old odin lloyd in 2013 . souza-baranowski is massachusetts ' newest and most advanced prison . hernandez 's cell will have a bunk , writing desk and stool , a combination sink and toilet and room for a tv , if he wants to spend $ 200 .\ndozens of animal welfare complaints made after northern ireland event . horse pictured trying to jump over car with glass still in windscreen . one animal is seen crashing head first into turf - dismounting a rider . animal welfare group says horses were ` exploited and abused ' in event .\na japanese court has rejected a petition by residents to delay the reactivation of reactors in the country 's southwest . the reopening of two other nuclear reactors in fukui was recently blocked by a japanese court over safety fears . japan 's 48 nuclear reactors have been offline in the wake of the 2011 fukushima disaster .\ndennis sears edited his will to leave everything to carer nermin kancefer . included three-bed riverside flat in surrey and # 400,000 in shares and cash . family challenged the will but agreed a settlement due to high legal costs . the carer exploited the ` vulnerable ' childless widower , his family claimed .\neden hazard starred as chelsea earned a hard-fought victory over stoke . captain john terry described the winger as one of the world 's best players . hazard sent blues on their way to victory when he slotted home a penalty . belgian international also grabbed an assist for loic remy to bag a winner .\nzoe waller , 31 , has dermatographia and can draw designs on her own body . condition is a type of urticaria - where an itchy rash appears after pressure . she says it ` does n't hurt ' and draws molecules on herself to teach students . has become famous across her university and people now make requests .\nredshirt freshman jc jackson , 19 , was arrested on saturday in gainsville . he and two men entered an acquaintance 's apartment , but jackson left after the other men pulled out a gun and demanded money and drugs . jackson turned himself in after being identified in the police report . he was booked into alachua county jail and held on a $ 150,000 bond . police are still investigating the identities of the other suspects .\njordan spieth hails autistic younger sibling as his biggest supporter . ice-cool display made him second-youngest winner behind tiger woods .\nhudea and her family are thought to have gone to idlib two weeks ago . but idlib fell to al qaeda 's syrian affiliate at weekend after four day battle . al nusra 's leader has now promised to bring in sharia law in the city . already started burning banned items and two christians killed by jihadists .\nvivid art festival will light up sydney for the seventh year in a row this coming winter . has expanded beyond cbd to the newly erected central park in chippendale and north shore suburb of chatswood . will feature customs house draped in flowers and translucent swings under the harbour bridge . also boasts a forest of eerie white gowns , a glowing bar in martin place and will light up sails of the opera house .\nlib dem leader 's wife takes swipe at party he shared power with since 2010 . she said she had been ` religiously paying taxes ' in the uk for 10 years . lawyer is banned from voting on may 7 because she was born in spain . mr clegg warned the ` bandwagons of the far right ' are encircling cameron .\n` her bill was $ 20 and some change , and they paid with $ 21 and left , ' said the manager of the maumee , ohio , restaurant . to be fair , ` clinton did n't pay ' for the meal - ` the other lady paid the bill , ' he said , referring to abedin , the vice chairwoman of clinton 's campaign . this branch of the chain does have a tip jar says its manager - although many other chipotles do not . clinton and abedin dropped by restaurant incognito for lunch during their road trip from new york to iowa for the first round of campaign events .\nwhite sox hall of famer tweets the closed-door game also should be postponed . baltimore unrest leads to postponement of two baseball games . third game in series will be first ever played without spectators .\ncrash victims named as michael owen , 21 , and kyle careford , 20 . mr owen was preparing for his daughter 's fifth birthday when he was killed . had also just been given new job and family say he was ` an amazing dad ' police appealing for information over sunday 's accident in east sussex .\nbrian o'driscoll pictured crowd surfing in hong kong earlier this week . former ireland captain was away working as an hsbc ambassador . o'driscoll 's wife amy huberman posted the picture on twitter .\nsnp leader sparked outrage after refusing to rule out another vote . clegg says snp would keep asking the question until they get right answer . warns demands for another vote will destabilise economy across uk .\njapanese prime minister shinzo abe will address congress on wednesday . paul sracic : abe has a lot riding on tpp trade agreement .\nfinal troop pullout oddly detached as u.s. military operations die down in afghanistan . ambitious projects , like a police logistics center in jalalabad , may not live up to their potential .\ncanadian policeman luke watson had his hair dyed as part of the day of pink event to fight against bullying in schools . the event was started after two students stopped bullies from harassing a gay classmate in nova scotia .\njustin rose finished runner-up in the masters earlier this month . rose was joint-second with phil mickelson behind jordan spieth . brit will play at tpc louisiana in the zurich classic this week .\ncolleen crowley , the party-loving girlfriend of footballer johnny manziel , has come under fire on social media for refusing to give up going out . the cleveland browns quarterback entered rehab in january and only left on saturday . on tuesday , crowley posted a video on her instagram page of the texan socialite enjoying a drunken night out with friends . ` significant others are the # 1 reason that people fail outside rehab , ' warned one commenter offering some words of wisdom .\nhannah wilson , 22 , was last seen in bloomington at about 1am on friday . a missing persons report regarding the gamma phi beta sorority member was filed friday afternoon . police found wilson 's body in needmore , more than 20 miles from campus . she died after being struck in the back of the head multiple times by an unknown object . daniel messel , 49 , of bloomington was arrested and is facing a preliminary charge of murder . the connection between messel and wilson has not been revealed by police .\nchinese hospital marked for demolition because of road expansion project . bosses asked team of engineers to put two-storey building on ` wheels ' more than 1,000 rollers have been placed under the large brick building . it is pushed 8 metres a day on giant metal rollers out of the demolition zone .\niraqi prime minister haidar al-abadi had been expected to seek billions of dollars in drones and other u.s. weapons during his visit to the oval office . but white house spokesman josh earnest says the iraqi leader did not make a specific request for additional military support during the meeting . asked about military aid by a reporter after his discussion with mr. abadi , obama hedged and said : ' i think this is why we are having this meeting '\nronald butcher , 75 , left his entire life savings to builder daniel sharp . he cut out his cousin and two family friends who were expecting to inherit . but they are now challenging the will in the high court saying the pensioner did not know what he was doing .\nbudi was introduced to jemmi less than a month ago and now the two apes appear to be inseparable . indeed , video from the international animal rescue 's orangutan center in indonesia , shows the duo throwing adoring glances at each other . budi was dying from malnutrition and too weak to move when he was discovered in borneo , indonesia , last december . meanwhile , eight-month-old jemmi was orphaned when her mother was killed and then illegally sold as a pet .\nstoke currently have the joint smallest pitch in the premier league . mark hughes plans to extend the playing area to benefit his team 's style . tony pulis used small pitch when the club were promoted in 2008 .\nsources have hinted that the duchess ' real due date is today or tomorrow . the duchess herself has said that her due date is ` mid to late april ' although the 25th is favourite , the palace says no date has been confirmed . prince william is due to be at the cenotaph for anzac day on saturday . prince harry will also be in london this weekend for the london marathon .\ngoalkicking winger josh mantellato dominated the scoring in bradford . rovers twice came came from behind against the championship side . hull kr blew out the scoreline with five tries in the final 18 minutes .\njason denayer has impressed for celtic while on loan this season . the parkhead outfit are keen to keen to sign the youngster permanently and hope that parent club manchester city will release him . however , city boss manuel pellegrini has confirmed that the club are looking to strengthen their homegrown talent pool . denayer , 19 , entered city 's youth academy in 2013 and fits the bill .\nliverpool have made contact with dortmund over fee for ciro immobile . liverpool 's lack of champions league football may hamper thier plans . man city need homegrown players and qpr 's alex mccarthy could fit bill . west ham have revived interest in sampdoria midfielder pedro obiang . chelsea have checked on standard liege left-back damien dussaut .\nlabour 's liam byrne left a memo for the incoming coalition government . the letter , left on mr byrne 's desk , read : ` i 'm afraid there is no money ' treasury secretary danny alexander has finally responded to the note . mr alexander wrote : ` sorry for the late reply , i 've been fixing the economy ' .\neaster sunday congregation handed a letter explaining choir had quit . they left in a show of solidarity with music director stephen hogger . mr hogger had been sacked after apparently falling out with senior figures . means suffolk church will be without a choir for the first time in 200 years .\nchimps were observed crossing busy road in kibale national park , uganda . most of the chimps looked left , right or both ways before crossing the road . the chimps crossed in small groups , often running to get across quickly . scientists want to test underpasses and bridges to let chimps cross safely .\ngoalie matt o'connor knocked the puck into his own goal in third period . mistake blew boston university 's 3-2 lead on providence in ncaa game . after terrier let in tying goal , friars got winning goal from brandon tanev . providence won the national championship 4-3 , the school 's first title .\nwest ham manager sam allardyce wants more consistency from his side . allardyce expects manchester city to put in a ` determined ' performance . the hammers are 10th having won just one of their last 10 league matches . city have lost one more league game in 2015 than in the whole of last year . west ham will be without diafra sakho but enner valencia is due to return .\nsnp will vote against ` any bit of spending ' it disagrees with after election . nationalist mps could paralyse the uk government by blocking legislation . threat came as labour 's angela eagle said they would speak to any party . snp suggests it would hold ed miliband to ransom over trident if he is pm .\nwoman believed to be 25 to 45 years old was found march 22 near shore parkway and 26th avenue in gravesend . had name ` monique ' tattooed on right leg within a heart and rose .\nemad sahabi suffered the terrible injury while playing for al orubah . they had been playing al shoalah in the saudi arabia premier league . sahabi tumbled over before his ankle was left hanging off his leg .\njimmy white lost 10-8 to matthew selt in world championship qualifying . the whirlwind had been up 7-2 after the morning session . but selt reeled off eight off the evening 's nine frames to go through . six-time world champion steve davis lost 10-1 to kurt maflin .\napp collate child-friendly videos , songs and educational resources . content by dreamworks , national geographic and youtubers . claims the app has too many advertisements and product placements .\nu.s. president obama , cuban president raul castro meet in panama city . the two nations -- only 90 miles apart -- have been at odds for more than 50 years .\nnavinder singh sarao is facing extradition and wanted by us authorities . he is alleged to have helped trigger a trillion dollar wall street ` flash crash ' sarao will spend the weekend in jail after failing to pay his # 5m bail .\npolice found 20 grams of marijuana buried within a leg of lamb . northern territory police made find after officers smelled something suspicious . the stash is believed to be worth $ 2000 - $ 100 per gram - because it was to be sold in remote communities in the australian outback . police said they will continue to crack down on sale of illegal drugs .\nsydney 's ` healthy cook ' dan churchill , 25 , stars on good morning america . former masterchef contestant has released ` dude food ' cook book in us . churchill appeared on good morning america alongside blake lively . the surfer-turned-chef paid homage to aussie roots with cheeky slang .\nfarage accused labour of claiming ukip is racist as it is ` running scared ' attacked labour of ` sneering ' at people who raise issues on immigration . accused chuka umunna of making ` tired and old claims ' about his party . ukip 's strategists believe they could come second in 100 seats in the north .\nagnese klavina , 30 , vanished from puerto banus resort on september 6 . had been on night out at aqwa mist nightclub popular with rich and famous . westley capper , 37 , has already admitted driving her away in a mercedes . he declined to answer questions in appearance before spanish judge . co-accused craig porter , 33 , was in the car and also said nothing in court . capper 's dad john specialises in buying and selling luxury properties .\nfilms and movies are said to be driving a growing interest in occult forces . an exorcism expert claims youngsters are inspired by ` beautiful vampires ' such shows include the hugely successful true blood series and twilight .\nmanchester united beat rivals manchester city 4-2 in the league on sunday . victory moves third-placed united four points clear of city in the table . eric cantona adds man utd are more dedicated to youth than city . gary neville : louis van gaal has worked wonders with wayne rooney . rooney : marouane fellaini one of the most dangerous forwards in europe .\nantolin alcaraz and sylvain distin are out of contract in the summer . neither player has been a first-team regular in recent weeks . but manager roberto martinez insists both can force a new deal . everton have identified targets for the summer , including tom cleverley .\nmartin keown : danny welbeck 's pace might have unsettled chelsea . john terry and gary cahill are built to deal with players like olivier giroud . keown says chelsea captain terry 's reading of the game is better than ever . the arsenal fans said it was boring but chelsea are doing what they need to do to win the league . thierry henry : arsenal ca n't win title with olivier giroud in attack .\nkirk pingelly and layne beachley have won their legal dispute . the couple were caught in a legal battle over redeveloping their home . neighbour wendy goyer said developments would ` destroy ' her views . she said the picturesque views were a major reason she bought the home . the court ruled her views werent ` iconic ' and were already at risk of being built out .\nhazardous material was discovered last month as crews prepared to replace the mayoral mansion 's leaky roof . officials do not believe the work poses any health risk to mayor de blasio and his family , who will remain in the home during the renovation . work will take place at same time as replacement of the mansion 30-year-old roof . both jobs should be completed by october or november .\nbella , 18 , is the younger sister of guess campaign star gigi hadid , 19 . the rising star poses in a series of provocative outfits for the may issue of elle . fellow fashion favorite hailey baldwin also features in the issue , appearing in her own separate shoot and interview .\nvideo footage shows blaine taylor from aberdeen , scotland , competing against his older brother cody . but as he goes to roll his egg down a grassy hill , he accidentally steps on it with shell and yolk mushed into the ground . to date the toddler 's mishap has been watched more than 90,000 times . in a bid to cheer the youngster up , a local newspaper headed to his family home armed with dozens of chocolate easter eggs .\nnew tropical fruit to go on sale in the uk is cross between mango and plum . the bouea macrophylla -- or mango plum - has been nicknamed the plango . the fruit has a bright orange edible skin and a sweet taste and soft texture .\nout of 17 bingo halls tested , seven revealed traces of cocaine in toilets . one , in bristol , even tested positive for dangerous variant crack cocaine . figures show spike in oaps receiving hospital treatment for drug abuse .\nargentina international marcelo bosch joined saracens in october 2013 . bosch signs contract extension ahead of champions cup semi-finals . bosch 's last-minute penalty at racing metro sent sarries through .\nmarseille forward andre ayew is out of contract in the summer . he has admitted to sportsmail that he would like to play in england . newcastle , everton and swansea have also shown an interest . ayew admits he grew up watching english football as a boy .\nmanchester united are missing four players in key positions ahead of the crucial premier league game with title rivals chelsea at stamford bridge . daley blind , michael carrick , phil jones and marcos rojo are all out injured . wayne rooney could be dropped deeper into midfield to compensate . the decision to play rooney in midfield has been an unpopular one before .\ntactical filters used on the mobile phone app instagram can paint a different picture of holiday away . from the taj mahal to celebrities hangouts , the truth can look very different . photographs reveal the funny or stark reality behind famous tourist spots visited by millions .\nletourneau and vili fualaau and their two teenage daughters spoke to barbara walters in a 20/20 interview that will air friday . letourneau and fualaau got close as she gave him extra help with his artwork when she was his sixth-grade teacher in 1996 . she said that she thought they would be able to stop at just a kiss but it went much further - and she fell pregnant when he was just 13 . she served a few months in jail and fell pregnant with his second child within weeks ; she was then sent back to prison for seven years . but a year after her release in 2004 , they married and are still together . vili fualaau lamented that he did n't have the right support as a young father of two girls and detailed his history of depression .\njordan spieth upped his game to haul himself back into contention . masters winner bounced back from opening 74 with a nine-under-par round . however , he and his fellow competitors were no match for troy merritt . the american cruised to the top of the leaderboard on 12 under overall .\nlatasha gosling , 27 , of tisdale , saskatchewan , was found murdered in her home early wednesday in tisdale , saskatchewan in canada . her two daughters , janyaa , 4 , and jenika , 8 , and her son landen , 7 , were also discovered dead . hours later police found steve o'shaughnessy dead at his residence , along with his and gosling 's six-month-old baby , who was unharmed . gosling 's family said o'shaughnessy was controlling and was afraid gosling would leave him for her husband , who she was separated from . o'shaughnessy sent the photos a day before her husband 's birthday . gosling 's friend said she had broken up with o'shaughnessy recently .\namir khan released a video last week saying he would fight chris algieri . the british star has since been criticised for his choice of opponent . khan also had the opportunity to fight kell brook at wembley in june . brook wants to return to action at the o2 in london on may 30 .\nlyon star nabil fekir has attracted interest from premier league clubs . frontman 's father believes fekir would progress and develop at arsenal . however , fekir snr thinks his son would be stuck on bench at man city .\nalex hales has nine england caps since his debut against india last august . the big-hitting batsman is hoping for a ` proper crack ' with his country . hales has played only five of last 18 matches since india series defeat .\nangela collins and margaret elizabeth hanson of port hope , ontario , decided to use xytex corp to start a family in 2006 . the atlanta-based firm said their donor had a bachelors degree . added that he was mature beyond his age and an eloquent speaker . they then found out the donor was james christian aggeles . he was once arrested for burglary and served eight months in jail . pair are concerned for the child 's health because of his medical history . aggeles has 20 children from his sperm around the country .\nthe massachusetts senator says washington works well for special interests and the well-connected but leaves out the rest of the nation . she says that in her eyes , two declared gop candidates have already disqualified themselves .\n`` real housewives of beverly hills '' star kim richards was arrested early thursday morning . beverly hills police say richards would n't leave a hotel when asked and later struck an officer .\nedmund echukwu died in pool at swingers ' party in hertfordshire on friday . 35-year-old believed to be a nigerian father-of-three from north london . owner of mansion says he may have suffered heart attack in water . a post-mortem examination is due to be held today ahead of an inquest .\nbookmakers coral have sue perkins as favourite to replace ousted clarkson . she is evens to take the job behind x-factor presenter dermot o'leary on 2-1 . bbc sacked clarkson after he hit top gear producer oisin tymon in public .\nzeta beta tau suspended and charged for the ` disgusting ' acts . three members were expelled for the deplorable acts at the warrior beach retreat in panama beach city on april 17 . event designed to give ex-servicemen a relaxing break . university of florida and emory university branches were there at the time . they allegedly ripped flags off cars and urinated on them and threw items off balconies . wounded veteran nicholas connole said he was spat on and felt ` hurt '\n9 in 10 teens go online every day , unable to resist the lure of facebook . parents also face a nightmare monitoring children as 71 % of teens use more than one social network , the pew research centre found . nearly three-quarters of teens have or have access to a smartphone .\nfaiz ikramulla , 35 , was charged on thursday with aggravated kidnapping . he allegedly dumped daughter aliya , 3 , in a trash can in a forest in prospect heights , illinois . his wife had just reported the girl missing when she was found . passer-by found her wandering the streets crying and waving her hands . authorities say ilkramulla was trying to hide her . he was arrested in van buren county , michigan .\ninsurers often check accounts of those burgled while they were away . can refuse to pay if people advertised the fact that they would be out . association of british insurers advises being careful with gets posted .\nramon c. estrada , 62 , was set to be paroled in less than three weeks when he died sunday at the prison in draper , utah . estrada was scheduled to have dialysis friday at the prison 's treatment center , but a technician did not show up on friday or saturday . adams said six other inmates had been waiting for dialysis treatment and were taken to a hospital for evaluation . estrada was serving time for a 2005 rape conviction .\ndaily mail racing correspondent marcus townend and tipster sam turner cast their eye over the field for the grand national in our preview video . shutthefrontdoor and ap mccoy will start the race as favourite .\nleicester city take on west ham at the king power stadium on saturday . foxes boss nigel pearson has come under fire this season for some of his antics this season . these have included outbursts to the press and an altercation with crystal palace midfielder james mcarthur in february . west ham manager sam allardyce has defended pearson and his record . the pair have worked together before when pearson was part of allardyce 's coaching team at newcastle in 2007 .\nivy nightclub has come under fire for playing music during anzac day service . irate crowds who attended the service said the loud dance music interrupted the service at least five times . the club has blamed a contractor who was preparing for an event at the club later today . a spokesman for the club said the contractor was ` immediately terminated this morning '\nex-liverpool boss told he would need to see a dietician before appointment . benitez was often mocked as a ` fat spanish waiter ' during his anfield reign . ferrero addresses talk of job swap with sinisa mihajlovic heading to napoli . mihajlovic has guided sampdoria to the brink of european qualification .\nmary harvin transformation center was to house 60 senior-citizen apartments , community center . it burned down during baltimore riots .\njohnny manziel has been released from rehab after entering a facility on january 28 . this after manziel 's partying had been a topic of conversation since his rookie season began last july , with some worried his drinking was a priority . the heisman trophy winner had a lackluster rookie year where he saw little playing time and just two starts . he is now set to begin offseason workouts with the cleveland browns on april 20 . manziel will be forced to compete with josh mccown for the starting quarterback position , who just signed a $ 14 million contract with the team .\nsurgeon to the stars fredric brandt , 65 , hanged himself in his miami mansion on sunday . brandt was reportedly devastated by apparent parody character dr franff in hit netflix series unbreakable kimmy schmidt . jeff richmond , who is an executive producer of the show , commented today exclusively to daily mail online . friends said that , though dr brandt was upset , show did n't cause his death . others said he was weeping in his clinic in weeks before suicide .\nmanchester united face manchester city in the premier league at old trafford on sunday . wayne rooney , robin van persie and ander herrera among those in training action . united have n't beaten manchester city at home in the league since 2001 , losing last three meetings . van persie has been declared fit to face united 's rivals after returning from nearly two months out . read : robin van persie is fit for manchester city clash ... but do louis van gaal 's in-form side need him ? .\ndc ciara campbell , 43 , ` used the police computer system to spy on her ex ' also allegedly pried on stuart swarbrick 's new girlfriend who is also officer . court heard she also accessed information about dispute involving a friend . campbell denies three counts of unlawfully obtaining personal data and eight offences of unauthorised access to computer material .\nbayern munich have only scored once in their last three games . they needed penalties to beat bayer leverkusen in the german cup . guardiola feels munich miss arjen robben and franck ribery .\nadam crapser , 39 , was issued with deportation papers by the department of homeland security in january and a hearing is set for april 2 . the father-of-three arrived in america with the name shin sonh hyuk in 1979 around the age of three along with his biological sister . however , his first set of adoptive parents abandoned him and the second set turned out to be abusive . adding to crapser 's struggles , at no point did his guardians seek the green card or citizenship for him that they should have .\nanthropologists claim that neanderthals suffered many modern diseases . dna analysis has shown that they had immunity against common illnesses . but they believe modern humans brought new infectious pathogens such as heliocbacter pylori with them out of africa and infected neanderthals . this suggests infectious diseases are much older than previously thought .\nthe four feet tall species of terror bird has been named llallawavis scagliai . it was discovered in a crumpling cliff on a beach close to mar del plata city . palaeontologists say it is the most complete terror bird skeleton ever found . they have used 3d scanning to reconstruct the bird 's range of hearing .\nroman abramovich has been chelsea owner for 699 games . chelsea face premier league clash against qpr on sunday . blues have won 14 major trophies since the russian 's arrival in 2003 . jose mourinho believes abramovich is also helping english football . portuguese boss hails abramovich for willingness to work withing ffp .\nthe time lapse footage captures the train descending the 9km long track . video opens in tunnel built into swiss mountain before train heads outside . train passes skiers before picking up speed and reaching the station . the track runs from kleine scheidegg -lrb- 2061m -rrb- to jungraujoch -lrb- 3454m -rrb- opened in 1912 , the track is visited by more than 800,000 people per year .\ntom moffatt , 27 , from ashton-under lyne , tried to ink ` riley ' into left arm . but instead of ` l' , he started needling letter ` p ' - and had to scribble it out . he also attempted to write riley 's nickname ` sonny boy ' - but ended up scratching ` sony boy ' across knuckles instead . nhs worker is having laser removal to try and rid of the botched inkwork .\nnetanyahu says a deal would pave the way for iran to get a nuclear bomb . iran 's enrichment capacity and stockpile will be limited , diplomats say . talks were tough , intense and `` sometimes emotional and confrontational , '' kerry says .\nbosses admitted they did n't tell relatives about the arrangement . hospital says it dealt with an unprecedented number of deaths over easter . spokesman : use of refrigerated lorry is normal practice across the country .\njohn coyne 's victim , 25 , woke to find the pub landlord raping him on sofa . detectives seized cctv of coyne attacking drinker but he still denied crime . jailed for 9 years after jury found him guilty of rape and other sex offence . police urge anyone who may have been abused by coyne to come forward .\ngray was arrested on a weapons charge april 12 ; he was dead seven days later . gray was placed inside a police van after his arrest ; it 's unclear if anything happened inside the van . gray has a criminal history but it 's unclear whether that had anything to do with his arrest , or death .\nthe video shows two men and one woman entering the los angeles home . they 're seen tip-toeing through the house before entering another room . but then one suspect returns and looks straight at the camera before he ducks and knocks it down . the lapd released the film in hopes it will help catch the burglars , described as being age 17 to 20 .\npair named as jamie richardson and daniel taylor from west sussex . they are fined $ 3,000 each , but say they only have $ 700 between them . if fine can not be paid , two men face jail terms of four months respectively . boeing 787-8 was bound for cancun after leaving london gatwick . pilot made decision to divert to bermuda due to ` disruptive passengers ' .\nscott shirley , his wife and son were returning from trip to disneyland . but mrs shirley made grim discovery on floor of united airlines plane . mr shirley claims staff refused to clean area and were offered blankets to cover area up .\nhouse of cards follows a ruthless democrat congressman 's rise to power . set in washington , the hit us tv series features the capital 's best sights . discover the famous and lesser-known gems in washington , dc .\nlewis hamilton extended his lead in the formula one championship with yet another flawless victory this season . the british driver secured first place ahead of kimi raikkonen and nico rosberg who finished second and third . hamilton has now set a personal best record of finishing in the points for 11 consecutive grands prix . he has 36 career wins , with 21 of those from pole position to open up a 27-point gap over team-mate rosberg .\nkim bok-dong is determined to share her story of sexual slavery until she 's no longer physically able . kim was held prisoner by the japanese military in a `` comfort station '' for five years , raped ceaselessly . she says she wo n't rest until she receives a formal apology from the japanese government .\nvast water hydrates in the arctic are reservoirs for abiotic methane . methane is 20 times more effective in trapping heat than carbon dioxide . these reservoirs are secure as the methane is trapped in the sediments . but elsewhere scientists have found methane leaking beneath the arctic .\nturia pitt said she starts to sweat and her mouth dries up when she talks about her traumatic bushfire ordeal . she also revealed she was back running and clocked a faster time than before she was injured . the revelation follows after surgeons successfully constructed a new nose . but the 27-year-old stopped breathing on the operating table . ms pitt had to be placed on an incubator in order to survive the operation . when she woke up in intensive care , she said she just wanted to die . but ms pitt is now proudly showing off her new facial feature .\nsinger was found at home in lowestoft on march 23 and pronounced dead . friend aj sutton helped to identify the body , inquest into death was told . pathologist who confirmed cause of death extended sympathies to family . reality tv star had been struggling with depression and vowed to find cure . the samaritans can be contacted by phone on 08457 909090 , email jo@samaritans.org , or you can find the details of your local branch at www.samaritans.org . .\nbob heslip , 50 , suffers from neurofibromatosis type 1 -lrb- nf-1 -rrb- condition causes noncancerous lumps to appear all over his body . he accepted offer to perform at freakshow on weekends as ` bubble boy ' other performers include bearded lady and america 's smallest couple . he said : ` when i met the performers , there was a feeling of belonging '\nan italian prosecutor announces suspected al qaeda affiliates may have targeted the vatican . isis produced propaganda videos showing beheadings of egyptian , ethiopian christians . al-shabaab has singled out non-muslims to kill them , as at a garissa university college .\n` avengers : age of ultron ' hits theaters may 1 . critic : movie does n't quite measure up to the original from 2012 .\narsenal face burnley at turf moor as they bid to keep pressure on chelsea . gunners are seven points behind the blues having played one game more . arsene wenger has told his squad to put dreams of title charge on hold . abou diaby , jack wilshere , mikel arteta and mathieu debuchy in line to return to first-team fold . arsenal 's pre-game playlist : pharrell makes laurent koscielny happy .\nradical change in the law to protect a generation of children will be introduced if the conservatives win the election . culture and media secretary sajid javid is setting out plans to shield youngsters from easy access to hardcore online pornography . promised legislation to force distributors to put effective age verification technology in place . his pledge is a victory for the daily mail 's block online porn campaign .\nprescott city attorney jon paladini claims sole survivor brendan mcdonough heard an argument between the crew leader and his deputy . paladini claims mcdonough told his secret to former city fire chief darrell willis . willis admits mcdonough came to him to ` get something off his chest ' but says it was n't about infighting that occurred before the tragedy . mcdonough has also denied the accuracy of paladini 's account , but reports of it may alter lawsuits stemming from the tragic june 2013 fire .\nmale contestants had not eaten for two weeks when they killed reptile . bosses though it was common caiman , but it was an american crocodile . species is listed as endangered and laws protect it from being hunted .\nchampions league semi-finals : juventus vs real madrid , barcelona vs bayern munich . europa league semi-finals : sevilla vs fiorentina , napoli vs dnipro . porto and benfica meet in a top of the table clash in portugal .\nandy murray is getting married to long-term girlfriend kim sears . coach amelie mauresmo recently announced that she is pregnant . british no 1 is considering taking on jonas bjorkman as assistant coach . click here for our andy murray and kim sears picture special .\ntown of evansville in comanche county was the headquarters of largest cattle ranch in kansas 's history in 1880s . but now , its once-thriving commissary building , with post office , grocery store and possibly a hotel , are long gone . however , the remote ghost town is still home to two final residents - rancher larry ` dee ' scherich and wife phyllis . couple live in a house just north of ruined commissary building - and only ever encounter hired help in the region . mrs scherich said of evansville : ` by 1910 , there was not much left ' , adding she would ` love ' to restore the buildings .\nbruce jenner 's second wife linda thompson says she learned of his `` gender issues '' during their marriage . she says she can breathe easier now that he can be `` who he authentically is ''\nmike holpin , from ebbw vale in monmouthshire , has at least 40 children . the 56-year-old is set to marry for fourth time after meeting partner online . his dating profile on plenty of fish is still active despite him being engaged . one of his dozens of children said he wished he had never met his father . mike holpin junior , 22 , claimed he would rather have been related to hitler .\nxabi alonso won uefa champions league with liverpool and real madrid . he scored the vital equaliser for the reds in his first season at the club . the spaniard was in real madrid 's triumphant side last season . clarence seedorf won with ajax , real madrid and twice with ac milan . bayern suffered 3-1 quarter-final first leg defeat against porto . thiago motta has also won european trophy with two different clubs .\nsarah fox , 27 , was found dead at her home in bootle on thursday night . her mother bernadette , 57 , was later found at sheltered accommodation . police are appealing for help in tracing bernadette 's son peter fox , 26 . merseyside police believe both women were known to alleged murderer . bernadette and sarah 's family are ` absolutely devastated ' at their loss .\nmadeline luciano was fired after an investigation into the incident last june . but new york teacher claims the exercise was meant to stop the bullying . luciano , 40 , has launched court action to get her teaching licence back .\npennsylvania scientists find evidence that we might not be alone . they found 50 galaxies emitting unusually high levels of radiation . this could be because aliens are harnessing the power of entire stars . however , further research is needed to confirm that is the case .\nthursday 's match between two baseball heavyweights turned into a brawl . began after dispute between the yordana ventura and adam eaton . sparked a mass fight with members of both teams running onto the field . umpired ejected a total of five players after the scrap at chicago 's stadium .\nthe film is expected to gross $ 115 million or more . paul walker died in a car crash during filming . `` furious 7 '' poised to nab the biggest opening of 2015 so far .\n42 per cent of those polled said they support shale gas extraction . greatest support among men and the over-65s , survey reveals . results were hidden in footnote to a greenpeace press release .\nedward nudel , 41 , was indicted wednesday on multiple charges after allegedly strangling his relative 's dog . nudel then reportedly called the relative , bragging about the deed . when officers went to arrest the man , nudel wrestled with them sending one to the hospital with injuries .\ncalls for lee wan-koo to resign began after south korean tycoon sung woan-jong was found hanging from a tree in seoul . sung , who was under investigation for fraud and bribery , left a note listing names and amounts of cash given to top officials .\njo stephenson 's widow accused tim farron of betraying her late husband . he was vilified over the new parking charges in mr farron 's constituency . deputy leader of cumbria county council fell from a three-storey property . an inquest found he jumped from the roof while suffering ` intense stress ' .\napril 8 was huge for `` lost '' and `` empire records '' fans . april 14 , april 25 , october 21 are other big dates in movies .\npolice say michael scott shemansky came to their attention after he failed to appear for a supervised visit with his son saturday . that same day mother sandra shemansky , 57 , was found dead at the home they shared in winter garden , florida . michael shemansky was going through a difficult divorce and neighbors believe the stress may have caused him to snap .\nthe 79th masters tournament gets underway at augusta national on thursday . rory mcilroy and tiger woods will be the star attractions in the field bidding for the green jacket at 2015 masters . mcilroy , justin rose , ian poulter , graeme mcdowell and more gave sportsmail the verdict on each hole at augusta . click on the brilliant interactive graphic below for details on each hole of the masters 2015 course . click here for all the latest news from the masters 2015 .\ncreated by designers maya pindeus , 24 , and johanna pichlbauer , 25 . ` beautification ' machines apply eyeliner and lipstick to participants . art project debuted at biennale internationale design saint-etienne 2015 .\ncharlie adam scored stoke 's equaliser against chelsea from 66 yards out . stoke ended up losing 2-1 against chelsea at stamford bridge on saturday . the loss was stoke 's third in a row but adam backs them to return to form .\nmanuel pellegrini has played down the form of manchester united . he feels united were always expected to do well given their transfers . pellegrini is hoping to end a terrible run of form with manchester city . city have lost five of their last seven games in all competitions . the two manchester sides meet in the league on sunday at old trafford .\nthe video was created by washington-based american chemical society . it reveals three ` hacks ' to tackle stains on windows , carpets and counters . and shows the science behind why gin removes red wine stains and why spit removes food stains on hard surfaces .\nkimberly waddell macemore , 25 , of wilkesboro , south carolina , pleaded guilty on tuesday to having sexual relations with two 17-year-old boys . she was a second year english teacher at west wilkes high school when she was arrested in may 2014 . the teacher had a casual sexual relationship with one young man , but had enjoyed a longer and more involved relationship with the other .\nthe official advert for the pay-per-view fight has been released . floyd mayweather and manny pacquiao meet on may 2 in las vegas . the advert shows them squaring up with the mgm grand visible behind . amir khan : mayweather and pacquiao have n't heard of kell brook . freddie roach : pacquiao will knock mayweather out . click here for all the latest mayweather vs pacquiao fight news .\nthe tories publish a separate ` english manifesto ' for the first time . mr cameron said delivering ` home rule ' for england is a top priority . tory government will introduce the new system before march 2016 budget . it will allow english mpsto set separate rate of income tax to scotland .\nserial killer peter sutcliffe , 68 , was jailed for life for murdering 13 women . held at broadmoor since being diagnosed with paranoid schizophrenia . he is now being considered for a move to the low-security priory unit .\nsergey bubka launched a manifesto ahead of running to be iaaf president . he is sebastian coe 's rival for the position in august 's election . bubka promised crackdown on doping and review of athletics as a whole .\nandre schurrle scored his first goal for wolfsburg on saturday . the former chelsea forward admitted it was ` eating away ' at him . schurrle joined german club wolfsburg from chelsea in february .\nandrea atzeni rides terror in landwades nell gwyn stakes at newmarket . david simcock trained 1,000 guineas fancy is owned by qatar racing . frankie dettori has been unveiled as newmarket 's ambassador for 2015 . john gosden 's faydhan is the key horse entered in the free handicap .\nthe edge 360 plane crashed in flames at old buckenham airfield in norfolk . eyewitnesses saw single-engine aircraft go into a flat spin at about 2.45 pm . pilot who died in the incident has been named locally as david jenkins . ` he was the best bloke i knew , ' said a friend who wished not to be named .\ncharlie hemphrey fulfilled an ` unrealistic dream ' to become a first-class cricketer . the 25-year-old was rejected consistently by teams in the english system . hemphrey enjoyed a successful first season in australia with queensland . he is the first englishman to hit a sheffield shield hundred since 1978 . the ex-folkestone grammar school pupil did n't rule out a return to england .\nanonymous benefactor donated money to # 20million restoration fund . identity of donor is known to church officials , but is being kept a secret . laura brown , head of restoration , had to ` sit down ' after reading letter .\nkilcoy state school working with queensland health to improve situation . professor matthew cooper urges parents to take vaccination seriously . the infectious diseases expert says ` people have decided not to immunise ' there have been 86 confirmed cases in 2015 in area - 16 in the past week . dr cooper says parents must know the importance of vaccination .\nthe youngster was wading in the mudflats at burnham-on-sea yesterday . he found himself in trouble at 3.30 pm when the tide started coming in . the beach warden alerted the coastguard which arrived in a hovercraft . he was flown to safety and returned to his relieved parents unharmed .\nsuspect kenneth morgan stancil claimed he killed ron lane because the college employee made sexual advances to his 16-year-old brother . the murder suspect gave himself fascist face tattoos . stancil also said he is a neo-nazi who is concerned about the future of white children and hates ` race-mixing ' .\nronald koeman called a meeting to refocus his southampton players . victor wanyama appeared to hint that he wanted to leave in an interview . morgan schneiderlin , nathaniel clyne and jay rodriguez linked to moves . but koeman slams talk wanyama wants to leave for arsenal as ` bulls *** ' saints still have a chance of securing european football for next season . read : victor wanyama quashes reports he 's spoken to arsene wenger .\nmonica mcdermott could not walk straight after car was stopped , court told . former model was restrained after trying to get out of the police patrol car . tells court she was ` lonely ' and was on her way round to stay with a friend . the 41-year-old , of macclesfield , cheshire , pleaded guilty to drink driving .\nbafetimbi gomis scored a brace as swansea beat hull 3-1 on saturday . the french striker tops this week 's ea sports ' performance index . charlie austin takes second place after qpr 's 4-1 win against west brom . eden hazard , alexis sancez and ander herrera also feature in the top 10 . click here for all the latest premier league news .\nhamish baillie says lord janner abused him during hide-and-seek in 1983 . father-of-three , 47 , was a 15-year-old resident of a children 's home at time . he says failure to prosecute the peer for a fourth time is ` complete travesty ' . cps boss alison saunders said janner was unfit to plead due to dementia .\nadam barker is an equal shareholder in handles for forks ltd. . the company made # 501,319 in profit in the year to last june . 47-year-old was jailed for making indecent images of children in 2012 .\nthe large hadron collider has spent the past two years being upgraded . it started operation again today and will soon have nearly twice as much energy as it used to . the restart was delayed for nearly two weeks by a short circuit . scientists hope to unravel the mysteries of dark matter , which makes up 84 % of the universe but has never been detected before .\nbrendan rodgers failed to make it as a professional footballer . rodgers left northern ireland at the age of 16 to prove himself at reading . the liverpool boss was forced to quit playing by the age of 20 . 42-year-old believes past experiences have inspired him to look after liverpool 's young stars .\nthe image was taken at sebastian inlet state park near vero beach , florida , by john bailey . bailey has said the bobcat caught the shark after entering the water . the bobcat might have been scared by his presence , since it scampered off toward the woods and let go of its find . a spokesman for the florida fish and wildlife conservation commission believes the image is genuine .\nukraine premier league outfit fc chernomorets are struggling financially . club could face relegation and uefa disqualification due to mounting debt . fc chernomorets have been forced to sell their best players as a result too .\nmanchester city were beaten 4-2 by manchester united at old trafford . defeat leaves city fourth in premier league , four points behind man united . man city desperately need to strengthen an ageing squad in the summer . and it remains to be see whether city will stick with manuel pellegrini . but the biggest challenge could be keeping hold of sergio aguero . argentine scored a brace against united to take his tally for city to 100 .\nanbar provincial official : suicide and car bombs were part of the isis assault . iraqi and allied forces have had recent success , but isis remains powerful .\nstunning tale came from white house domestic help who tended to the clintons ' every need during the 1990s . book published today is based on more than 100 interviews with ordinary non-political staff who ran america 's presidential mansion . one former head of the household staff said : they were about the most paranoid people i 'd ever seen in my life ' another staff member said he was fired after he helped former first lady barbara bush with her computer because clintons feared he was gossiping . a third recalled listening as bill and hillary fought during the monica lewinsky saga , with hillary once calling him a ` g * ddamn b * stard '\nreddit launched its r/thebutton thread on april fool 's day . it is accompanied by a timer that counts down from 60 seconds . when the button is clicked , the timer resets and the person who pressed it is given a colour that signifies how long they left it before pressing . it is not known what will happen if the timer drops to zero .\npublic housing tenants will pay a bond under a nsw government plan . community services minister brad hazzard said the annual bill for repairs and maintenance on taxpayer-funded housing had hit $ 12 million . mr hazzard said the bond would be able to be paid in instalments .\none pro cycling preparing to take on team sky and sir bradley wiggins . tour de yorkshire runs over three stages starting in bridlington on may 1 . prior 's team and yorkshire race inspired by tour de france grand depart .\nkyle patrick loughlin was enrolled at bridgewater state university . on tuesday night he was arrested after reportedly admitting that he 'd molested two boy aged between four and five . police proceeded to search loughlin 's dorm room where they allegedly found over 100 pairs of children 's underwear and diapers . despite his admittance , loughlin pleaded not guilty in court on friday to counts of raping a child and aggravated indecent assault and battery . he will now be held without bail until a dangerousness hearing next week .\nchris blowes is in a critical condition after a shark attack in south australia . police said the 26-year-old was attacked 350m offshore at fishery bay . he is in a critical condition in intensive care at royal adelaide hospital . the attack by a great white shark happened just before 10am on saturday . witnesses claim the predator bit off the man 's leg and swam away with it . his family released a statement thanking for the support and well wishes . south australia has been the site of numerous shark attacks .\ntwin sister of freddie gray asks for people to stop breaking things , scuffling with cops . fans are permitted to exit camden yards after briefly being told to stay put . 12 people arrested during protests , police commissioner says .\narsenal and liverpool fans left seats empty at kick-off as part of a protest . supporter groups say they are disgusted at premier league ticket prices . more protests are expected after the lunchtime kick-off at the emirates .\nalistair mach , four , and his grandmother mai mach , 60 , were murdered . chinese tourist cai xia liao , 45 , is charged with their murder . fundraising page for victims ' family has raised almost $ 50,000 in one week . the funds will help pay for their funeral and be directed to a ` good cause ' . liao had allegedly been having an affair with boy 's grandfather , brian mach . police allege liao stabbed alistair in his sleep while mr mach was gagged .\ndiddy and mark wahlberg have placed a $ 250,000 bet on the mega-fight . the rapper is confident floyd mayweather can put him in the ` money ' american boxer adrien broner has also put his money where his mouth is . broner admitted he will be putting $ 10,000 on there to be a stoppage . mayweather vs pacquiao - 12 things you did n't know about the pair . click here for all the latest mayweather vs pacquiao news .\npoor visibility caused the pilot to make the decision to land the plane . the aircraft suffered a damaged undercarriage due to the bumpy descent . a helicopter came to rescue the trekkers and no one was harmed . the former captain is undertaking a 100km trek to the north pole to raise # 250,000 for charity , along with nine sportsmen and royal marines .\nthe depiction is so unflattering a facebook page called ` we love lucy ! get rid of this statue ' has attracted more than 600 likes . it would cost an estimated $ 8,000 to $ 10,000 for the statue to be recast . artist dave poulin has refused to comment on the controversy .\nchris copeland and his wife , katrine saltare , 28 , were talking in the street when a stranger tried to intervene . the man , shezoy bleary , ` pulled out a knife and stabbed copeland in the abdomen and his wife in the breast , buttocks and arm ' on a video showing the victims being treated in the street , copeland 's wife is heard shouting : ` we were stabbed . we are scared for our lives ! ' two atlanta hawks players , pero antić and thabo sefolosha , were also arrested ` for obstructing police when they arrived ' all three victims are in stable condition in hospital . copeland is in town to play his former team , the knicks , tonight .\nfloyd mayweather is deep into his training for the manny pacquiao fight . he has been using crotherapy to aid his recovery after training sessions . the bath at subzero recovery is cooled to -115 c using liquid nitrogen . mayweather often calls the owner for a session in the early hours . mayweather : i am better than muhammad ali and sugar ray robinson .\nwicketkeeper brad haddin came under fire for send-off of martin guptill . all-rounder james faulkner mocked grant elliott after his dismissal . sportsmail 's david lloyd added his voice to the chorus of criticism .\nandrew danziger flew president obama during 2008 election campaign . claims to have seen a ufo on flight between kansas and iowa in 1989 . saw a ` giant red ball ' flying parallel to his jet in the sky for 30 seconds . the aircraft captain revealed that nearly all pilots believe in ufos .\nuss oklahoma was lost during japanese attack on pearl harbor in 1941 . hundreds of crew members were buried without identification .\nbette carrouze , 78 , a mother-of-two from brighton , loves a good party . says other pensioners are boring because they moan about sore knees . regularly goes clubbing in gay bars and returns in the small hours . admits that taking the bus after a night out can be a bit embarrassing . bette carrouze appears on oaps behaving badly , tonight on channel 5 at 9pm .\nceltic won 2-0 away st mirren on good friday in the scottish premiership . win moved celtic eight points above aberdeen having played a game more . stefan johansen scored celtic 's second goal from the penalty spot .\nheist occurred march 1 in wilson county , north carolina . armored truck traveling from miami to boston was robbed by three men . 275 pounds of gold worth nearly $ 5 million stolen . a 26-pound gold bar worth $ 500,000 now recovered in south florida . police previously suspected it was an inside job . the guards had pulled over because one felt sick . goods transported with company , transvalue , insured up to $ 100 million .\ndietmar hamann expects bastian schweinsteiger to leave bayern munich . hamann says schweinsteiger he has lost his place to xabi alonso . former international claims franck ribery faces a fight for his starting slot . click here to see who bayern face in the champions league semi finals .\nteresa belton , 62 , is author of happier people healthier planet . based in norwich , she believes that people living modestly are happier . simple acts create sense of belonging and put things into perspective .\npolice chief constable sue sim has announced she will retire on june 3 . she has stepped down amid a probe into claims she bullied subordinates . officers were said to be terrified of her alex ferguson-style critiques . she will retire after 30 years ' service but allowed to retain her full pension . ms sim was not suspended after the investigation began last month .\nchanel , from california , appeared on a recent episode of mtv 's true life . in the video she details her desperate attempts to avoid aging and prolong her modeling career for as long as possible . the teenager also eats placenta and washes her face ten times a day in order to keep her skin wrinkle-free .\njessica silva stabbed james polkinghorne outside her home in 2012 . silva was physically and mentally abused by her husband polkinghorne . she claims that if she had not acted first she would have been killed . silva says all she wants from her dead husband 's family is ` forgiveness ' polkinghorne 's father can not understand why she killed his abusive son . jessica was found guilty of manslaughter but had sentence suspended . justice hoeben , who presided over the case , called situation ` exceptional ' jessica silva story features on sunday night 's 60 minutes on nine network .\nmiss buckley went missing in glasgow last week , sparking police search . she was found dead on farmland . a man has been charged with murder . judge spoke about her case when dealing with brawl outside a bar . his comments have caused anger among victims ' groups .\npeggy drexler : in interview to promote movie , robert downey jr. walked out after being asked personal questions . she says his behavior was rude , demeaning to the interviewer , who was just doing his job .\neden hazard showed off his tricks for rio ferdinand 's ' 5 ' magazine . chelsea star left his marker in knots on four occasions in a video . hazard 's step-overs , turns and his sharp control are fully on display . belgian star 's chelsea face arsenal at the emirates stadium on sunday . read : chelsea fans storm emirates stadium to play practical joke .\nchelsea are discussing a new partnership with royal mouscron-peruwelz . chelsea have held talks about buying shares in the belgian club . the blues have been looking at alternatives to vitesse arnhem .\nstriker given maurico pochettino 's blessing to play for england under 21s . roy hodgson has confirmed the kane will be in gareth southgate 's european championship squad . kane is also set to travel to australia and malaysia this summer ahead of the championships .\nruba khandaqji was arrested wednesday after calling 911 and threatening to hire a hit-man to kill florida governor rick scott . khandaqji : ` pass this to your governor . tell him she is hiring a hitman ' . the woman has drawn the attention of authorities four times in the last three months .\nkenedy has been linked with a number of top european clubs . chelsea are in pole position to sign the 19-year-old forward this summer . his economic rights have been sold to the agent that represents chelsea 's brazilian trio oscar , willian and ramires . read : oscar was n't good enough , says mourinho after chelsea beat stoke . click here for all the latest chelsea news .\ntributes to south african colonial past defaced by young black protesters . wave of protests triggered after statue of cecil john rhodes was defaced .\nbaby boy 's remains were exhumed last year after case came up for review . dna led police to the mother who was arrested on suspicion of infanticide . but the charge was dropped after she explained the baby was stillborn . cps may now charge her with failing to register the birth and preventing a lawful burial .\nbrendan rodgers was found guilty in his absence of ignoring a notice to improve a property he co-owns in accrington , lancashire . house had broken windows and doors with rubbish strewn across a yard . but rodgers and business partner judith o'hagan had their convictions quashed after court heard they did not receive a summons .\nbranislav ivanovic , john terry , gary cahill and cesar azpilicueta all starred in chelsea 's 0-0 draw against arsenal at the emirates stadium . chelsea have conceded only 26 goals this season . they are closing in on another premier league title under jose mourinho . chelsea 's defence have proved that a solid back four is key to a charge . jamie carragher : terry is the premier league 's greatest ever defender . terry on course to take part in all pl games for first time in his career .\nadam federici allowed alexis sanchez 's shot to squirm through his legs . his error meant arsenal advanced to the fa cup final after extra-time . reading boss steve clarke has backed his goalkeeper to get back on track . the royals face birmingham in the championship on wednesday night .\ntechnology is being used by yoghurt manufacturer morinaga milk industry . it was designed by toyo aluminium and is inspired by lotus leaves . the toyal lotus lid 's surface is covered in microscopic bumps . these increases the contact angle for liquids to 170 degrees causing them to form spheres and roll off .\njose ignacio is a tiny fishing village on the atlantic coast of uruguay - the smallest country in south america . stars including shakira and ronnie wood have been spotted at resort alongside restaurateur giuseppe cipriani . sandy lanes , understated boutiques and casual beach bars make up the small fishing village . the key summer dates from travel are between christmas and easter .\nasylum seekers and refugees applying to be cab drivers are not checked . drivers usually undergo criminal records checks for the public 's safety . those from outside the eu must provide reference from their home nation . but refugees and asylum seekers are exempt and may be serious criminals .\njay rutland , 34 , is married to 30-year-old daughter of bernie ecclestone . his company had total net assets of # 3,378 last year , down from # 18,131 . former stockbroker lives with his wife and daughter in # 45million house . brigante business developments is management consultancy company .\nmore than 20,000 passed ten or more gcses with a or a * in last five years . one in 30 children who sat the exams ended up with at least ten a grades . figures suggest uk 's most able pupils are increasingly getting top marks .\nterence crawford stopped puerto rican thomas dulmore in the sixth . the american won the vacant wbo junior welterweight title . the 27-year-old fighter is still unbeaten and takes his record to 26-0 .\ncuomo first us governor to visit cuba since ease on trade and travel . heads delegation of 18 new york academics and business leaders . president obama eased trade and travel restrictions earlier this year .\npeggy drexler : video of toya graham hitting son as she drags him from protests has raised questions . was she a hero ? abusive ? neither , she says ; she was a mom trying to steer her adolescent in a heated city conflict , and more moms need this kind of commitment .\ninverness defender josh meekings has won appeal against one-match ban . the 22-year-old was offered one-game suspension following incident . however , an independent judicial panel tribunal overturned decision . inverness reached the scottish cup final with 3-2 win over celtic .\nabby lubiewski has a rare genetic syndrome and has cataracts as a result . her mother amanda said she has ` no vision at all ' without her glasses . lubiewski felt her daughter had been discriminated against when she found out other children at abby 's school got to wear their glasses . lifetouch school photography has since apologized and will re-take abby 's picture for free .\nthe masters 2015 crowd wanted tiger woods to do well at augusta . he was still the 111th ranked golfer in the world . a bit erratic , a bit brilliant , a bit rusty , a bit fallible . and , fleetingly , a bit marvellous too . the gallery was 10 , 12 deep around the greens . still in awe . still ready to applaud even the tiniest glimmer . but the sizeable gallery is writing cheques the man in the arena can no longer cash . click here for all the latest masters 2015 news .\nian bell hit 143 on the opening day of the first test in antigua . bell came in with england struggling , but took them to 341 for five . the 33-year-old was dropped during the 2009 series in the caribbean . bell says it was ` nice to come back and put things right ' .\nthe international community is calling for the release of the five women . chinese authorities detained them last month over their campaign for gender equality .\nzlatan ibrahimovic scored a hat trick and ezequiel lavezzi added fourth . striker took his psg career tally to 102 goals since joining three years ago . paris saint-germain will face auxerre in the french cup final on may 30 .\nengland suffered humiliation in the 50-over world cup this year . alex hales believes they would benefit from playing more t20 cricket . hales was talking at the launch of this season 's domestic t20 competition .\nashley young admits house sub-genre is louis van gaal 's choice of music . man utd boss bans any other form of music on match days . olly murs and young were speaking to mutv on thursday focus show . manchester united face trip to everton in the premier league this sunday . read : memphis depay holds secret meeting with manchester united .\nfour offences allegedly committed against one girl aged 15 at time . 27-year-old answered bail at police station in county durham yesterday . sunderland star had previously had his bail extended for five weeks .\nnew book , clinton cash , points to ` pattern ' of donations and rewards . says those who gave money to foundation saw favorable outcomes . writer peter szhweizer points to dealings in colombia , haiti , kazakhstan . revelations will be seized upon by republicans in white house race . clinton allies have written of the book as an ` absurd conspiracy theory ' white house declined to categorically rule out any occurrence of wrong doing but said there 's no ` tangible evidence to indicate that it did ' president 's spokesman said he 's not going to be in a position ` every time somebody raises a spurious claim ' to ` say that it 's not true '\ndominatrix claims she shared a ` hot , deep kiss ' with prince harry in vegas . carrie reichert said she felt overdressed after seeing his ` cute naked a ** ' the 43-year-old made the claim in an excerpt from her upcoming book . kensington palace has previously denied she was invited to the hotel suite .\nexploitation drives low-skilled migration and holds down wages , he said . speech given during an outing in marginal seat wirral west earlier today . ukip leader said it was a ` big diversion ' as exploitation not the main issue .\nkim , 34 , said she would be watching bruce 's show with her family . she was attending a variety event in nyc just hours before the tell-all . it was claimed that the former olympian would be watching the show twice - once with the kardashians and next with the jenners .\nmanchester united beat aston villa to secure an eight-point cushion . louis van gaal 's side currently sit third a point ahead of manchester city . rivals liverpool find themselves in fifth following their defeat to arsenal . but van gaal has warned his squad it is important to battle till the end .\ndave hax 's youtube tutorial advises to score the skin before boiling . the method eliminates the need for peelers and will keep your hands clean . the video has received more than 1.5 million views since being uploaded .\nnicky buckley has released a tell-all memoir of her life . the book shares a candid insight into her career-defining moments . a whole chapter is dedicated to when she revealed her baby bump on tv . buckley now shares how she dealt with the abuse she faced being a pregnant presenter .\np-22 left his new den underneath a house in los feliz overnight tuesday . has now headed back to griffith park , his home of more than three years . rose to fame after a picture of him in front of the hollywood sign published . but most recent escapade has won the mountain lion a legion of new fans .\ngerry pickens , 28 , was the first black police officer in orting , washington . was fired after just under a year - which he says is because of racism . vandals sprayed ` n **** r ' on his ford explorer earlier this year . seemed to be attempt to dissuade him from suing over his dismissal . since then , pickens has launched $ 5million legal claim against the town .\ndr giorgi-guarnieri testified at hearing that will ultimately determine whether hinckley will be allowed to live full time outside a mental hospital . giorgi-guarnieri said hinckley should be allowed to start the band but not perform publicly . hinckley 's lawyer and treatment team say he 's ready to live full time at his 89-year-old mother 's home in virginia under certain conditions .\nthe suspect apparently had no motive for staging the attack in the 11000 block of wagner street in del rey , los angeles , on sunday night . he is described as hispanic , medium build and wearing a grey hoodie . according to the victim 's father , the attacker walked in through an unlocked front door around midnight and proceeded to fire shots . as of monday , the boy was listed in critical but stable condition .\narsenal beat top four rivals liverpool 4-1 at the emirates on saturday . hector bellerin , mesut ozil and alexis sanchez put hosts 3-0 ahead . jordan henderson pulled one back for the visitors from the penalty spot . arsenal striker olivier giroud completed the scoreline in injury time . win moves arsenal into second - nine points ahead of the reds .\nroma stadium will be part closed for game against atalanta april 19 . supporters displayed banner taunting mother whose son died in clashes between napoli and roma fans after coppa italia final last year . antonella leardi started a campaign against football violence after the death of her son ciro esposito .\nshares made popular in 1980s ` tell sid ' ads rise following sale of bg group . value rose 30 % to 1,153 p after royal dutch shell indicated intention to buy . # 47billion deal , one of the biggest takeovers , creates # 200billion company .\nnfl investigating why game balls provided by new england patriots for championship game were underinflated . it 's not clear when investigation by attorney ted wells will be complete . patriots say they follow the rules and expect to be vindicated and get an apology .\nerica avery , 17 , was cuffed and hauled out of a broward county , florida courtroom after being accused of using the internet on tuesday . she was taken into custody barely a month after making $ 100,000 bond on charges she aided in the rape of a friend in 2013 . she and four other teens are charged with armed sexual battery and kidnapping in connection with the assault on a victim in hollywood .\nmilitary posts photos online so viewers can vote for miss army competition . voter : ` kazakh women are as beautiful as any others . i voted for all of them ' another said it would also improve country 's image worldwide after borat .\ncctv footage shows the thieves in action at the shell fuel stop at 265 ygnacio valley road in walnut creek . with one man distracting a cashier at the window , another hooks up a cable to the cash machine . with the other end of the cord attached to a white pickup , the vehicle then speeds off , uprooting the atm from its mount . two of the suspects were described as white males , while the escape vehicle was detailed as a white ford f-250 or f-350 four-wheel drive .\nmalala yousafzai tells the girls she associates with them . she writes a message of `` solidarity , love and hope '' she calls on nigeria and the international community to do more to rescue the girls .\nli chien , 30 , became annoyed by neighbour 's barking dog lucky . using a bread knife , a heavily intoxicated li slit lucky 's throat . owner tang chao found his dog dead in a pool of blood in his yard .\nthe value of the drugs is estimated at more than $ 105 million . officers arrested one venezuelan and two spanish citizens on board the vessel .\nchancellor warns global investors fear impact of snp in uk government . claims there would be a ` constitutional crisis ' if nationalists call the shots . miliband warns scots every fewer labour mp helps make cameron pm .\njules bianchi severely injured his head in japanese grand prix crash . his father said he is still in a coma but his condition is stable . philippe bianchi also spoke of the pain his family have gone through .\nbowel cancer patients who saw normal gp diagnosed week later than others , study shows . findings not linked to a later diagnosis for breast cancer or lung cancer . delays can be vital because cancer can quickly spread to other organs . britain has one of europe 's lowest cancer survival rates , partly blamed on missed symptoms .\nsawyer sweeten played across from his twin brother and their sister as the children of ray and patricia barone . report : sweeten was visiting family in texas and is believed to have shot himself .\nsoftware designer charanjeet kondal created images of new royal with app . if he 's right , heir will have blonde hair , dark brown eyes and a small nose . betting public believe the royal baby will arrive into world on wednesday .\nstriker suffered his hamstring in the 2-1 win over stoke on april 4 . costa has recovered ahead of schedule and will train with squad next week . he could return for their top-of-the-table clash with arsenal next weekend . jose mourinho 's side face manchester united on saturday .\nteri o'neil , 30 , filmed her daughter when she was six-months pregnant . the youngster pulls a cheeky face and struts about the room with dad . 15-month-old olivia is delighted with her impression .\nsouthwest airlines tops consumer reports ' survey , with the most seats available . jetblue is at the bottom of the list but ranks high in customer satisfaction .\nsouthampton beat blackburn in final of premier league u21 cup . sam gallagher netted long-range strike to win the tie for 10-man saints . matt targett own goal had levelled up ryan seager opener in normal time . over 12,000 fans turned up to watch saints win the cup at st mary 's .\nadam lyth has enjoyed a meteoric rise from his early days with yorkshire . he will now battle jonathan trott to be alastair cook 's opening partner at the first test in antigua on april 13 . lyth has revealed how practising golf has helped to improve his concentration . a young lyth also spent time trialing as a midfielder with manchester city .\narsene wenger will have chat with theo walcott ahead of arsenal clash . walcott was substituted after 55 minutes of england 's draw with italy . arsenal boss is wenger is concerned by the winger 's confidence . the gunners take on liverpool at the emirates stadium on saturday .\nfifth seed serbian ana ivanovic beaten 7-6 -lrb- 8/6 -rrb- 6-4 by caroline garcia . it 's the third time this year ivanovic has lost to the france world no 29 . seeds ekaterina makarova -lrb- 6 -rrb- and carla suarez navarro -lrb- 8 -rrb- also won .\njill scott was sent off for headbutting jade bailey as manchester city lost . scott tweeted an apology after the defeat by arsenal ladies on sunday . england international reacted to a challenge by the gunners defender . chioma ubogagu scored the winner for arsenal in a 1-0 win .\ncarly booth took to instagram to show off her impressive bikini body . the scottish golfer is currently in mauritius shooting for golf punk mag . it 's not the first time booth has been in the headlines for a revealing photo .\nreading face arsenal in fa cup semi-final on saturday at wembley . premier league giants are bookies favourites as they look to retain cup . steve clarke has urged his side to focus on the job in hand . the royals overcame bradford with a 3-0 replay win in the quarter-finals .\nworld endurance championship begins at silverstone on april 12 . scantily-clad beauties traditionally pose next to cars before races . ` grid girls ' decision has been welcomed for those seeking gender equality .\ntiger woods finishes tied for seventeenth in the 2015 masters at augusta . woods could only score 73 on sunday , seven shots less than rory mcilroy . there has been enough to suggest that woods is not finished yet . jordan spieth won this year 's masters after finishing on 18 under par .\nnorwich city kept their automatic promotion hopes going with victory . bradley johnson scored twice as the canaries beat sheffield wednesday . johnson 's first-half double left hosts in full control at carrow road . the owls made two half-time substitutions but it failed to take effect .\njess knight , 20 , was surprised by ed sheeran at auckland hospital . she had planned on being at his auckland concert at the weekend . however , jess was diagnosed with leukemia two weeks after buying the tickets last october . she launched a social media campaign to beg sheeran to visit her . british singer spent 30 minutes with an ecstatic jess and her friends .\nlouis jordan , 37 , released a three-paragraph statement on monday in a bid to answer critics suspicious of his amazing survival story . the sailor said he survived by staying inside his cabin to keep dry and avoid sun , wind , waves and sea spray during his 66 day ordeal . he also said he rationed food and water and kept his calorie expenditure low . ` god is truly great , ' he said as he revealed that he now plans to write a book around his experience .\nmichigan high school students mikenzy snell and matt pliska who has down syndrome , made plans to go to their junior prom together last year . for their prom picture , the pair held up a sign which read : ` real friends do n't count chromosomes ' . the sign references the fact that people with down syndrome have an extra copy of chromosome 21 .\ndr ram manohar , 38 , is facing sexual assault allegations from two nurses . he is alleged to have smacked the bottom of one and said ` you bad girl ' . offences allegedly took place at a wirral hospital where manohar worked . manohar , of barnston , wirral , has denied four counts of sexual assault .\nestimates suggest around 1,000 iphone and ipad apps are vulnerable . examples include uber , microsoft 's onedrive and movies by flixster . the flaw is with software called afnetworking used by developers . sourcedna has released a search tool to see if your phone is at risk .\nsol campbell has put his flat in chelsea on the market for # 6.75 million . he bought the property in 2011 and it has been renovated by his wife fiona . former england footballer is an outspoken critic of labour 's mansion tax . campbell , 40 , sold his # 20million london townhouse earlier this year .\nmiracle godson was reported missing on friday afternoon after jumping in . he was swimming at east quarry in appley bridge near wigan with friends . teenagers desperately tried saving him but police found lifeless body later . bosses at wigan st judes rugby league club said he had ` great potential '\narsenal winger theo walcott was joined by his team-mates for photoshoot . walcott and six of his arsenal colleagues were showing off club suits . the england ace was joined by calum chambers , jack wilshere , mikel arteta , david ospina , mathieu flamini and mesut ozil . walcott has been named on the bench for 17 of arsenal 's league games . read : walcott needs to look wenger in the eye and discuss future .\naussie girl joins #kyliejennerchallenge currently sweeping social media . method involves creating an airlock which forces lips to swell . teens across the globe are hoping to emulate kylie jenner 's puffy pout .\nluke munro , 19 , and dylon thompson , 21 , raided londis near blackpool . threatened owner and wife with gun while baby was in pram beside them . police said couple ` feared for their life ' during robbery in october last year . munro jailed for five years , thompson for three years and four months .\nsteve clarke admits his reading side must be ` perfect ' on saturday . the royals face arsenal in the fa cup semi-final at wembley stadium . clarke has never beaten arsene wenger but wants this to change .\njobless keith macdonald , 29 , has fathered 15 children by 10 women . he says he is now single after splitting from his latest pregnant girlfriend . it is estimated he and his massive brood will cost the taxpayer # 2million . macdonald , who appeared on the jeremy kyle show , meets his conquests on buses - and claims two of his children were conceived on the top deck .\nthe luxurious library hotel has more than 6,000 books scattered throughout its guest rooms and public spaces . each floor is dedicated to one of 10 of the dewey decimal system 's categories , including history and technology . every one of the hotel 's 60 rooms is decorated according to a genre or topic within the categories . on the fifth floor - devoted to math and science - guests stay in rooms themed after astronomy and dinosaurs .\nmanchester city reached fa youth cup final with win over leicester city . substitute isaac buckley scored to cancel out layton ndukwu opener . brandon barker added a second in stoppage time to win the game . chelsea are their opponents in the final , having beaten tottenham 5-4 . two-leg final takes place on april 20 and 27 with city at home first .\narsenal face burnley in evening fixture at turf moor on saturday . gunners are 2nd in the premier league while hosts are in relegation zone . arsenal partner europcar reveal playlist players will listen to on the bus . olivier giroud picks coldplay , danny welbeck opts for chase and status . theo walcott is an ll cool j fan , nacho monreal goes for david guetta . read : arsenal stars in good spirits as they bid to win eighth straight game .\nthe young boy holds a tiny blue and yellow toy fishing rod . he crouches by the side of the water and reels in the catch . before plucking it from the lake and holding it to the camera . shot in thailand , the video appears to show a nile tilapia fish .\nqueen margrethe ii of denmark is celebrating her 75th birthday today and appeared on the palace balcony . was joined by crown prince frederik , 46 , and crown princess mary , 43 , as husband henrik is ill with flu . started birthday celebrations with a glitzy gala dinner last night attended by royals from around europe . no members of the british royal family were able to attend the glitzy celebration in copenhagen .\nthe now 45-year-old singer wore the dress at the 2000 grammy awards . ` it was the most popular search query we had ever seen , ' said schmidt . it inspired google to launch image search so people could find it easier . previously users had to search through pages of text broken up by links .\nspartak moscow appealed against sanctions for a racist banner . the russian football union rejected and fined the club # 2,500 . only women and children are allowed to spartak 's next two away games .\nthunderstorms with large hail are predicted for the midwest and the plains . tornadoes could strike thursday night and friday .\nwladimir klitschko successfully defends his wba , ibf and wbo belts . world heavyweight champion beat bryant jennings on points in new york . ukrainian awarded 116-111 , 118-109 , 116-111 unanimous points win . mandatory challenger tyson fury watched at madison square garden . klitschko ready to travel to england to take on fury .\nbritish swimmer adam peaty has set a new 100m breast stroke world record . his time of 57.92 seconds has beaten the previous record of 58.46 . peaty has spoken of his delight that his hard work and training have paid off .\nao nang princess 5 ferry was in andaman sea on way from resort of krabi . was five miles from the coast travelling to phuket when engine exploded . 35-metre-long boat caught fire around 3.30 pm before sinking around 6pm . passengers seen throwing themselves overboard before being rescued . no injuries reported but search will continue into tomorrow for missing girl .\nmanning tweeted out thanks to her supporters - including rage against the machine frontman tom morello . she is dictating the tweets over the phone to friends .\ntwo australian drug smugglers , part of the bali nine , await word whether they 'll face a firing squad . less is known about the seven other members of the group .\ncapital one became the first provider to scrap cashback for new customers . it said new restrictions will squeeze profits and other firms may follow suit . an eu cap limits the fees retailers can be charged for processing payments . perks ` no longer sustainable ' after it starts in october , capital one has said .\ncarter and jack hanson , who live in raleigh , north carolina , met their hero on the yorktown - a retired carrier in charleston , south carolina . robert harding traveled to meet the boys from his home in oklahoma after spending months exchanging daily emails . mr harding served as an aircraft handler on the yorktown during the second world war .\njon flanagan 's contract expires in the summer . flanagan has been out of action all season due to a knee injury . brendan rodgers is keen to keep flanagan at liverpool .\nmanchester united scouts will watch mauro icardi this weekend . inter milan travel to take on verona in a serie a match on saturday . chelsea , manchester city and arsenal have also watched the argentine . read : manchester united consider edinson cavani transfer . click here for the latest manchester united news .\nspurs legend woke up in middle of the night to find his leg was cold . mabbutt diagnosed with diabetes at 17 but complications had developed . he required the main artery to be replaced and almost lost his left leg . the ex-spurs star wants to raise awareness of dangers relating to diabetes .\nander herrera nets either side of wayne rooney in manchester united win . red devils beat aston villa 3-1 in the premier league on saturday . midfielder herrera full of praise for captain and striker rooney .\nnetflix offers median salary of $ 180,000 . corporate law firm skadden arps came in on top with $ 182,000 median salary for 4,500 employees . google , the by far the biggest employer , ranks 13th .\nportrait of a weeping child was spotted at scene of house fires in yorkshire . burnings of copies of painting were organised to rid britain of its ` curse ' haunted bunk beds of wisconsin terrorised a whole family in late 1980s . four people said to have died after sitting on philadelphia ` death chair ' .\nsami khedira will not be offered a new deal by real madrid . manchester united and chelsea are interested in the world cup winner . inter milan hope to agree a deal with manchester city for stevan jovetic . newcastle are considering a move for fulham 's ross mccormack . stoke could add mohamed el ouriachi to their other ex-barcelona players .\nfans will be charged to watch a weigh-in for the first time when floyd mayweather and manny pacquaio step on the scales . all profits will be donated to charities nominated by the boxers . mayweather and pacquiao will be weighed at the grand garden arena . wladimir klitschko admits that he is considering retirement . the ukrainian looks set to fight tyson fury and deontay wilder . carl froch may choose to retire after julio cesar chavez jnr 's defeat by andrzej fonfara . froch had hoped to face the mexican in las vegas later this year .\nspeedometer-busting race to boston logan international airport hit 80 in a 55 mph zone . clinton and her entourage took us airways shuttle flight 2120 to washington reagan international airport near dc -- and sat in first class . first class seating came after campaign trip where she said of rich : ` the deck is stacked in their favor . my job is to reshuffle the pack . ' the manchester , nh airport would have been 55 miles closer and had a flight two hours earlier -- but it was on smaller plane with only coach seats . clinton insisted she did n't personally book the tickets , but stared ahead and said nothing when asked about the benghazi terror attacks . nascar-like trip down i-93 came less than 24 hours after clinton 's secret service detail raced down rain-slicked new hampshire freeways at 92 mph .\nengland start their three test series against west indies next monday . stuart broad is backing captain alastair cook to score big runs in series . bowler admits he is sorry to see paul downton leave role in ecb .\nthe 31-year-old was seen enjoying an early evening run in the sunshine . she sported a blue vest and shorts and appeared to clutch a set of keys . miss middleton is preparing to take part in a 54-mile charity bike ride . previously told how she sticks to ` wholesome carbs ' to prepare for races .\nthe sentences came after a trial in pakistan , a judge says . malala yousafzai is an outspoken advocate for the education of girls . she was attacked in pakistan in 2012 .\nellie , ten , and taylor , five , advertised about collecting eggs on facebook . wanted treats to give to hospital in sheffield in memory of their brother .\nhuddersfield are now mathematically safe after a 0-0 draw with brighton . adam le fondre earns bolton a point in 1-1 home draw with charlton . demarai gray on target for birmingham as they draw 2-2 with blackburn .\nmichael weyman and ryan bailey 's sudden departures left huge void . dane tilse is to sign a two-and-a-half-year contract with hull kr . he joins former canberra raiders team-mate terry campese at robins .\nsophie thomas attends clermont northeastern middle school in batavia . she wore a black shirt bearing word for school picture day back in march . when students got photos this week , word was removed with photoshop . administrators said they asked to remove word , a claim thomas disputes .\nthabo sefolosha says he `` experienced a significant injury and ... the injury was caused by the police '' he and teammate pero antic were arrested near the scene of a stabbing early april 8 . they were not involved in the stabbing police said , but they were arrested for obstruction , other charges .\nceltic were defeated 3-2 after extra-time in the scottish cup semi-final . leigh griffiths had a goal-bound shot blocked by a clear handball . however , no action was taken against offender josh meekings . the hoops have written the sfa for an ` understanding ' of the decision .\nserena williams defeated sara errani for the united states in the fed cup . world no 1 was a set down before fighting back and winning the tie . heavy wind made it difficult for the players throughout the game .\nscottish international midfielder charlie adam scored late to secure stoke city comeback the britannia . french ace morgan schneiderlin had given southampton a first-half lead with just 22 minutes of the game gone . but a dogged stoke city replied when mame biram diouf equalised for the hosts before adam claimed the win . saints now sit sixth in the premier league with stoke city back in ninth position ahead of west ham united .\nbolasie scored three goals as palace beat sunderland 4-1 . villa recorded a crucial 1-0 win at tottenham to stay above drop zone . aaron ramsey scored arsenal 's goal in 1-0 win at burnley . jamie vardy struck late to give leicester a vital 3-2 win at west brom .\nworld 's best road is n-222 from peso de regua to pinhao in portugal . the uk 's best road is deemed to be a591 from kendal to keswick . second came the a3515 in somerset and third was a535 in chshire .\namy schumer took a fake tumble tuesday in front kanye west and kim kardashian . the comedian pulled the prank at the time 100 gala in new york . schumer , whose `` inside amy schumer '' also premiered tuesday , is having a moment .\n#milifandom has sparked hundreds of tweets in support of ed miliband . twitter frenzy was started by young labour supporter named ` abby ' . internet jokers have joined in , posting mocked-up images of ed as characters from famous films including fifty shades of grey . last week , the labour leader met an adoring hen party in chester . adoration is unlikely to translate into votes - fans are mostly teenagers .\nofficials say 131 californians were affected by one strain , five by other strains . about 70 % of the people who could show health records were unvaccinated . outbreak began in december among visitors to two disney theme parks .\npaulo dybala has attracted interest from a number of top european clubs . juventus favourites to sign striker after he says he wants to stay in italy . juventus have reportedly offered # 23million to sign the chelsea target . click here to read all you need to know about dybala .\nsherrilyn ifill : police violence against unarmed african-americans is a national crisis . u.s. policing needs dramatic overhaul , she says .\nthe thunder from lagos was suspected of illegally fishing for toothfish . sea shepherd had been tracking the thunder for more than 100 days . the thunder 's captain is suspected of scuttling the vessel in a cover-up . watertight doors were dogged open to allow the vessel to sink faster .\nbunny girl eve stratford , 22 , found with her neck sliced at her leyton home . six months later , lynne weedon , 16 , murdered near her home in hounslow . murders were linked in 2007 when matching dna was found on the victims . police have offered # 40,000 reward in a bid to bring their killer to justice .\niker casillas insists he will not leave real madrid if a new keeper arrives . la liga giants have been linked with manchester united no 1 david de gea . spain star will face either barcelona , bayern munich or juventus in champions league semi-finals . read : barcelona vs real madrid is the dream champions league final .\nmen wearing neo-nazi symbols crashed melbourne reclaim australia rally . reclaim australia believes country should stand up against ` islamisation ' anti-racism group were also in attendance to counter-protest against reclaim australia . the neo-nazis , some with swastika tattoos , attempted to intimidate anti-racism protester . photographer captured the moment a brave man stood up to the neo-nazi .\nmike keen revealed he was ` officially confused ' in public facebook post . ed miliband vowed to ` abolish ' the 200-year-old tax rule for non-doms . but ed balls warned in january it would cost the country money .\namsterdam falafel shop , washington dc , us , launched . five falafels are paired with different strains of marijuana . combos include creamy falafel to be eaten after smoking calming strain .\nkazi islam , 18 , accused of grooming harry thomas , 19 , for acts of terror . islam met mr thomas , who has learning difficulties , at east london college . tried to persuade mr thomas to buy ingredients for pipe bomb , court told . used ` cake ' as code in text message , but mr thomas did not understand . islam denies preparing for acts of terrorism and his trial continues .\nthe pandas mated for a record-breaking seven minutes and 45 seconds . lu lu has been bestowed the nickname ` the enduring brother ' by admirers . lothario panda ` lasts longer in bed than the average american male '\nalaska department of fish and game biologist delivered the animals . the land mammals followed his snowmobile dropping alfalfa cubes . they travelled a mile and crossed the innoko river to lower innoko . new location should start producing sedge for the bison to feed on .\nthe sleep foundation study has shown that adults need 8 hours of sleep . according to the study , 30 percent of australians say they lack sleep daily . professor david hillman said it 's important to pay back our sleep debts . he also says sleep can be broken up as long as you get the first 4 hours . power naps should not be longer than 20 minutes or inertia will set in .\n12-year-old boy survives five-storey fall by landing on a car . father says child was sleepwalking and fell from the window . public security bureau is further investigating the incident . car owner feels dismayed as he bought the car not long ago .\nmanny pacquiao 's bout with floyd mayweather less than a month away . the duo meet in a money-spinning duel in las vegas on may 2 . pacquaio has shown off his multicoloured mouthpiece for the fight . read : pacquiao thanks spike lee and tito mikey for their support . click here for all the latest mayweather vs pacquiao news .\ncape verde defeated portugal 2-0 in an international friendly match . nani and henrik larsson could have played for cape verde . the island 's population currently stands at just 500,000 people .\ngordon robson , 26 , was drinking at ne38 sports bar , in tyne and wear . court heard he was emotional after being pallbearer at grandad 's funeral . got into fight with friend of victim john potts , and punches were thrown . when mr potts stepped in he was hit in the back of the head and killed . robson , who has long history of violent offending , jailed for three years .\nterrifying dashcam footage has emerged of cars caught in an inferno . the clip was taken by the driver of a car in eastern siberia . at one point a jeep races past with the back of its roof ablaze . wildfires in siberia have been raging since march 19 , leaving 30 dead .\nbarack , michelle , malia and sasha obama attended alfred st baptist church . they sat at the front during service in virginia on sunday morning . on monday , michelle and barack will perform a dance at the easter roll .\nkaren davis was photographed on google street view flashing her breasts . police reported her for disorderly behaviour and she must report to court . police said her ` actions were the same as someone flashing their genitals ' . sa country town mum hit back at critics saying they are insecure . she plans to do a topless skydive for her 40th birthday next year .\nengland manager roy hodgson appears to still not know his best xi . sportsmail 's top team of reporters reveal their england euro 2016 line-ups . england are currently top of euro 2016 qualifying group e on 15 points .\nfloyd mayweather jr and manny pacquiao 's fight will be the richest ever . sportmail 's jeff powell is counting down the ring 's most significant fights . first up is 1910 's fight for race - jack johnson v james j jeffries .\nsam gallagher helped southampton claim u21 premier league cup . striker scored stunning goal in front of first-team manager ronald koeman . gallagher has n't featured this season after impressing last year .\nsierra pippen was arrested sunday at around 1.30 am at a sheraton in iowa city near the campus of the university of iowa , where she attends classes . she was charged with public urination and public intoxication and was released on a $ 500 bond at about 10am . police officer who apprehended her said she ` accused me of being racist ' . scottie pippen , 49 , is a basketball hall of fame member , won six nba championships with the michael jordan-led chicago bulls .\nworld no 1 arrives at masters hoping to complete a career grand slam . rory mcilroy insists he is ` ready ' to win his final major at augusta . northern irishman admits tiger woods ' comeback could work in his favour .\n` it 's like my home away from home and i just love it here , ' judy eddingfield said of winstead 's in kansas city . judy eddingfield celebrated her 50th anniversary working at winstead 's restaurant last week where she began working when she was 15 in 1965 . eddinfield 's mother along with her siblings all worked at the restaurant .\nlinda macdonald was arrested monday night after veering off the road and crashing her car into a wooden fence in dummerston , vermont . the shelburne , massachusetts woman claimed to have been talking on the phone and taking down directions when she crashed . police smelled alcohol on her and when they administered a breathalyzer test , macdonald tested .02 per cent over the legal limit .\nmiliband warns cuts mean rapists and violent criminals have gone free . pledge to scrap police and crime commissioners to save money . ex-met chief lord stevens carried out policing review for labour . faces probe over claim he did not give information to macpherson inquiry .\nthe u.s. census bureau published 2014 childlessness rates on tuesday . 95.9 percent of women ages 15 to 19 were childless in 2014 , according to the findings . in 2012 , that number was 94.9 percent . 75.2 percent of women ages 20 to 24 percent were childless last year , researchers found , up from 71.4 percent . 49.6 percent of women 25 to 29 were childless in 2014 , as opposed to 49.4 percent in 2012 .\ncosmin moti kung-fu kicked stefan nikolic during a bulgarian league game . the ludogorets defender was n't punished as the referee waved played on . moti is also well known for saving two penalties in the champions league .\njnco ` rave jean 's are on their way back . other 90s/00s trends here to stay include uggs , velour and corsets . kylie jenner is a double denim fan whilst jourdan dunn loves camouflage .\none row each of caramel , fruit & nut , whole nut , oreo , daim , and turkish . not available in shops as all 50 bars can only be won on twitter . brand worked alongside food artist prudence staite to create mega bar .\nfloyd mayweather ` loves his snacks ' according to ` chef q ' the boxer keeps his training camp stocked with sweets for ` snack day ' chef reveals mayweather 's favourite snack is twizzlers as she spends over # 200 on the champion 's sweet-tooth . mayweather fights manny pacquiao in much-anticipated fight on may 2 .\nkoral reef , 20 , died last year after a horrifying and protracted battle against the little-understood parasite balamuthia mandrillaris . reef was wed to her high school sweetheart in july 2013 just months before she began showing symptoms like headache , fatigue and stiff neck . reef 's mother sybil meister believes reef picked up the amoeba on a trip to lake havasu in may 2013 -- she was dead by october 2014 .\nander herrera has scored seven goals since joining manchester united . some have compared the spaniard to united legend paul scholes . but the former athletic bilbao midfielder says scholes is a ` one off ' . herrera reveals that his favourite united goal came against yeovil .\ndavid cameron and boris johnson last night warned of a looming ` crisis ' they joined forces to question legitimacy of snp 's labour-boosting plan . mr johnson claimed it would mean ` truckloads of cash ' moving up the m1 . it comes as mr salmond was filmed joking he would write labour 's budget .\nmuhanad mahmoud al farekh was deported from pakistan to the united states . the u.s. citizen is accused of conspiring to provide material support to terrorists .\nart deco gas station once featured in films like la story and 48 hours before falling into disrepair . opened in 1935 in la by the american giants gilmore oil it was eventually closed in the 1990s . property has now been bought by starbucks and transformed into a coffee shop .\nsevdet besim , 18 , was charged with ` conspiracy to commit acts done in preparation for , or planning , terrorist acts ' on saturday afternoon . he was one of two teenagers who officers arrested for planning terror acts . police allege they planned to target an ` anzac day ceremony ' and police . they are expected to be charged with a number of offences including the possession of prohibited items , with ` edged weapons ' found at a property . another 18-year-old was also arrested and remains in custody . three men released by police late on saturday night . over 200 police officers raided seven properties in melbourne on saturday .\none of only seven commissioned by ministry of technology in 1967 to visit factories promoting new technologies . owned by transport trust until 1975 then sat in essex field in for 14 years until rescued by former owner in somerset . ollie halls and emma giffard bought it in 2005 for just # 1,200 and spent # 35,000 and five years on total restoration . since then it has toured the country showing vintage footage and even starred in tv and radio programmes . re-united with lost trailer after 23 years thanks to call ` out of the blue ' - which had been being used as a wood shop . now on sale on ebay for # 120,000 as parents no longer have time to run the cinema which has ` taken over our lives '\ndavid cameron will put small business at the heart of election campaign . prime minister has faced criticism for lacking passion in recent weeks . cameron said he made ` no apology ' for tories focusing on the economy .\njapan 's defence minister forced to answer questions about ufos . gen nakatani told parliament ` no alien 's have violate japan 's airspace ' came after mp asked if japan was carrying out alien studies .\nsnowden claimed britain was spying on argentina between 2006 and 2011 . revelations come after britain 's discovery of oil in the falklands last week . britain already pledged # 180m to stave off ` any future and possible threats ' argentina say britain should spend more helping its own poor instead .\ntidwell middle school student - aged 13 or 14 - started the blog in august . it was called ` killing children ' and about ` me murdering people i hate ' stories named classmates and described either killing , maiming or sexually assaulting them . the boy was taken out of school earlier this year and investigated . he was allowed to return last month , with the school district saying the stories were ` horror fiction ' and not real . local parents are outraged and staging protests outside the school .\nmai zizhou has been trained to play basketball since 2.5 years old . video shows him shooting the hoops and dribbling two basketballs . his incredible skills have won him legions of fans around china .\nlatisha fisher , 35 , allegedly locked herself in a bathroom at 5 boro burger in midtown manhattan monday afternoon with son gavriel ortiz . when workers at the restaurant gained access to the restroom , they found the 20-month-old boy unconscious and foaming from the mouth . fisher had previously been diagnosed as paranoid schizophrenic and was called ` poster child ' for alternative sentencing . she was given probation for 2011 stabbing of her aunt and was found fit to stay in the community last year . neighbors say she had recently shown signs of strange behavior .\nlauren perry , 25 , gave birth to her twins 10 weeks early at just 30 weeks . mason and chloe were in intensive care for two months after their birth . ms perry 's son had a colostomy bag put in when he was just one day old . when mason later underwent surgery to have it taken out he got sick . newborn had contracted a flesh-eating virus which almost claimed his life . parents would have lost him if he had been left untreated for another hour .\nnasa scientists in california say our solar system is full of water . moons of jupiter and saturn are thought to have oceans underground . dwarf planets like ceres and pluto may also have similar reservoirs . water is important for the search for life - as life as we know it needs it .\nrevlon 's new lipstick advert resembles a scene from 50 shades of grey . partially dressed woman undresses man and blindfolds him . film noir-style ad ` love is on ' was created by agency george patts y&r .\nlewis hamilton enjoyed a jet surf session having won the bahrain gp . the 30-year-old shared an image of himself on the water on tuesday . jenson button has been training for sunday 's london marathon . the 35-year-old shared an image of himself training in hyde park .\nyin yunfeng spent a week before returning to tibet cooking food . the soldier filled the fridge with stir-fried dishes and 1,000 dumplings . a variety of snacks have also been hidden in the house as daily surprises . yin is stationed far from home and only gets to see his wife once a year . the wife , named only as ms zhao , has been branded ` luckiest wife ' in china .\nsir alex ferguson met up with john parrott for a frame of snooker as part of coverage of world championships . former manchester united manager explained why he rates real madrid superstar cristiano ronaldo above barcelona talisman lionel messi . fergie also reveals how he ` battered ' former player paul ince at snooker .\nraymond allen has hand-written copy of the colonel 's secret recipe . established uk franchise of restaurant in preston , lancashire , in 1965 . 87-year-old said company had strayed and should have ` stuck to chicken ' . personal friend of ` the colonel ' sanders who was ` kind ' but ` forthright '\nprofile in courage award is going to a republican congressman who risked his career while recognizing the danger of climate change . authors : addressing climate challenge is today 's moon shot , an enormous effort that will pay big benefits .\nactivision blizzard has announced plans to resurrect the popular game . guitar hero live features a redesigned guitar and live-action actors . firm will also launch guitar hero live tv - an online music video network . game and guitar can be pre-ordered in the us and canada for $ 99 .\nmachines are used around the world for sorting luggage onto conveyors . video shows swift and powerful mechanical arm separating suitcases . similar to the ` parallel pusher ' developed by leading dutch company .\nchase faces prospect of 4-8 match ban after grade e ` dangerous throw ' tackle happened during salford 's 18-12 win at huddersfield . rfl 's match review panel viewed tackle on ferres as dangerous .\nairport bosses say re-branding in china has already brought more tourists . if hs2 is built the hub could also be renamed ` birmingham london airport ' london would be 38 minutes away , ten minutes further than heathrow .\ncristiano ronaldo scored five times in real madrid 's 9-1 win over granada . ronaldo posts picture with a bike on twitter . real madrid star tells followers ` exercise all you can ! ' read : which clubs have suffered most at the hands of the ronaldo ? click here for all the latest real madrid news .\ncathryn parker , 72 , gave a false name at a traffic stop in la last month . police realized she was also leasing her home with another name . case unraveled to be one of the worst cases of identity theft in the state . most of her identities are stolen from hollywood production staffers . anyone with information regarding the case is asked to contact the lapd on 661 940-3851 .\ndan swangard , a physician , wants to be able to control when and how his life ends . a recent survey reveals 54 percent of american doctors support assisted suicide .\na car plunged off a road into los angeles harbor on thursday , and two children pulled from the submerged vehicle were hospitalized . the adults were described as being in fair condition but ` clearly emotionally distraught ' witnesses said the car appeared to speed up as it neared the edge . firefighter miguel meza who dove into the water in san pedro after a car carrying a family of four plunged into the water has been hailed a hero .\nblackpool goalkeeper joe lewis 's shirt was meant to go to a club sponsor . lewis tried to get another but was told they had no spares to replace it , as blackpool midfielder andrea orlandi revealed in his weekly column . the 27-year-old had to play in the signed shirt for the first 45 minutes .\nthe teacher was teaching the fifth grade at hawthorne elementary in albuquerque , new mexico . some students were so distressed by what they heard they immediately went to the school office to report the teacher . the teacher is on paid leave while the public school district and police investigate .\nmatt stopera 's iphone was stolen in a new york bar . eventually he started seeing pictures on his new phone of a guy posing with an orange tree . after writing about it online , netizens in china managed to track him down . ` brother orange ' then invited him to the country and the two met up .\nnew neighborhood named carlsberg city set to emerge in copenhagen , denmark . district has been built on site of beer company 's former brewery .\nchandni nigam was struck by a train at tywford railway station last year . teenager 's inquest heard she was obsessed with performing well at school . court told she would stay up late studying resulting in sleep deprivation . her father said she first told her parents she was suicidal in october 2013 .\nswansea city have made signing a striker a priority this summer . the club are weighing up a move for blackburn 's rudy gestede . gestede , a benin international , is rated at # 7million by rovers . andlercht 's aleksandar mitrovic , club brugge 's obbi oulare and marseille 's andre ayew are also on swansea 's summer wish-list .\nstuart dallas , 23 , was playing for crusaders just three years ago . after a tough start to life at brentford , he was loaned out to northampton . since returning to brentford , he has become a star in promotion push .\nthree former managers of the aids healthcare foundation filed a suit . they alleged the company paid employees and patients kickbacks for patient referrals in an effort to boost funding from federal health programs . employees were paid $ 100 bonuses for referring patients with positive test results to its clinics and pharmacies . the lawsuit alleges kickbacks started in 2010 at the company 's california headquarters and spread to programs in florida and several other locations . .\nthe veteran burnley defender believes dyche could manage three lions . 37-year-old described his boss as ` first class ' former northern ireland international has played in top eight divisions . duff himself is hoping to enter management after his retirement .\ndr. doom is seen for the first time in the trailer for the `` fantastic four '' reboot . chris pratt takes the lead in the new trailer for `` jurassic world ''\nfitness classes set up after survey showed 5 per cent of pupils were obese . around 50 pupils attend including 11-year-old boy who weighs 12 stone . instructors say kung fu panda classes are designed to make fitness fun .\nfrench climber alain robert scaled the 75-storey cayan tower . daredevil assisted by nothing more than sticky tape and chalk . the 52-year-old took an hour and a half to ascend the high-rise . video captures daredevil struggling over a ledge on building .\nclarke carlisle reveals he has ` moved out of the marital home ' in yorkshire . father-of-three says both hand his wife have to focus on their ` well-being ' . the former premier league defender , 35 , tried to kill himself in december .\nmanchester city have slipped out of title race in a disappointing season . joe hart admits premier league champions are ` not where they want to be ' city no 1 claimed loss to manchester united was particularly tough to take .\nhagrid the suffolk cross was born weighing 25lbs and is 14inches tall . the animal towers over peers on farm in gelston in grantham . his owners believe he may be the largest lamb ever born in the uk .\ntony hatch and jackie trent wrote chart-topping hits for musical superstars . they divorced after three decades of marriage but have a daughter together . but he did not attend her funeral when trent died at the age of 74 last month . her second husband ` banned hatch from funeral for breaking his wife 's heart '\nmahendra ahirwar , 12 , has a bent neck and his head hangs from his body . his parents mukesh and sumitra ahirwar say they 'd rather their son died . they claim mahendra has seen 50 doctors but none have given a diagnosis .\nthe designer diffusion line went on sale sunday morning but was almost completely sold out online before noon , with stores selling out minutes after opening . re-sellers initially tried to unload merchandise at inflated prices including $ 799 for a $ 150 hammock ; now thousands of pieces are available on ebay with smaller markups . outraged customers have formed a social media campaign to boycott the merchandise from second-hand sellers .\nmauricio pochettino wo n't continue blooding youngsters unless approach is merited . harry kane , nabil bentaleb and ryan mason have flourished this season . pochettino reiterates that hugo lloris is happy at white hart lane . tottenham lie sixth in premier league table ahead of trip to southampton .\nthe large prize is being offered by businessman , dmitry kaminskiy . he hopes money will help create a new group of ` supercenternarians ' jeanne calment holds the record of oldest person , dying aged 122.5 . he has made a $ 1m bet with dr alex zhavoronkov on who will die first .\nfreddie sears put ipswich ahead from close range after six minutes . mick mccarthy 's side had the lead at the half-time interval . kenwyne jones equalised with a header on his bournemouth debut .\nbbc one 's poldark ended with a tear-jerking cliffhanger last night . fans have taken to twitter to complain about ` withdrawal symptoms ' . the second series of the hit drama starts filming this autumn . this sunday 's poldark slot will be filled by sheridan smith 's the c-word . luckily for turner fans , his new film the secret scripture is out this year .\njonathon keats , experimental philosopher , plans to photo holyoke range . he hopes pinhole camera will capture the gradual environmental changes in the mountains near amherst college . camera , which is filled with paint , will create image showing 1,000 years .\ndavid edwards scored in the 88th minute to give his side the win . wolves raced into 3-1 lead before leeds pulled back two-goal deficit . however edwards scored late on to ensure wolves moved up to sixth .\nbali nine lawyers appeal to indonesia 's constitutional court for review . indonesian attorney-general dismisses challenge as a ` delay tactic ' three other death row inmates are currently appealing decision . indonesia is still looking for date around hosting asia-africa conference .\nmanchester city need to lift the gloom against west ham on sunday . the blues aim the bounce back from 4-2 mauling by united in derby . city are fourth in the premier league , four points above liverpool .\nwade robson and james safechuck hope to find out on tuesday if they can bring a civil lawsuit against the late singer 's estate . both claim that the king of pop molested them as young boys . their lawyers claim jackson paid out nearly $ 200 million to as many as 20 victims . a judge 's ruling on tuesday could determine if more alleged victims come forward .\nbarcelona through to champions league semi-finals after beating psg . eric abidal says current crop can emulate class of 2009 's triumphs . defender was integral part of team that won the treble under pep guardiola . abidal speaking at the launch of the eric abidal foundation in catalonia . lionel messi , luis suarez and neymar to be best ever barca strikeforce .\nteachers are helping pupils cheat by giving advice during exams . whistleblowers reveal teachers also bump up marks and write coursework . ofqual found that one in five reported colleagues had bent the rules .\nmarc wabafiyebazu , 15 , plans to plead not guilty if charged with felony in connection to monday 's deadly shooting . wabafiyebazu 's 17-year-old brother , jean , was shot dead , along with 17-year-old suspected drug dealer joshua wright . wabafiyebazu brothers reportedly tried to rob a group of miami drug dealers . their mother is roxanne dubé , the recently appointed canadian consul general in miami . the boys had driven to a house with a third friend to reportedly purchase two pounds of marijuana for $ 5,000 . gunfire erupted soon after they entered , though marc was in the car at the time . anthony rodriguez , 19 , who was wounded , was also arrested on charges of felony murder .\na crowd of students from northwest prep academy descended on a gas station in memphis , tennessee on monday . they began to yell and throw up gang signs and then attacked a man , orrden williams jr. . williams ended up covered in bruises because of the unprovoked attack , and his baby was also almost hit by the teens . police are investigating and have made one arrest in the case , 19-year-old joe brittman .\nfredric brandt had been suicidally depressed for 10 days before he took his own life . police report into the 65-year-old 's suicide reveals brandt was found on sunday morning by friend , john joseph hupert , inside his garage . hupert was staying with the cosmetic surgeon on doctors orders to monitor brandt 's suicidal tendencies . hupert revealed that brandt had been taking medication for his depression . paramedics declared the plastic surgeon dead at the scene after having found he hanged himself . brandt 's psychiatrist , dr. saida koita , arrived soon afterwards and told police she had been treating brandt daily . brandt was reportedly devastated by parody character dr franff in hit netflix series unbreakable kimmy schmidt which debuted on march 6 . friends said that , though dr brandt was upset , show did n't cause his death .\npolice say they repeatedly instructed j.b. silverthorn of orchard park , new york , not to drive home from grand island town court on monday night . the warning came after they noticed he ` smelled of alcohol ' despite the threat , silverthorn proceeded to get in his car and pull out the parking lot before being stopped by deputies . he 's currently being held in the erie county jail with his bail set at $ 1,000 .\nrichard sherman shared a photo of his son rayden on instagram . rayden was born on february 5 , just a few days after sherman and the seattle seahawks lost the super bowl to the new england patriots . rayden 's mother is sherman 's girlfriend , ashley moss . it was just announced the seahawks would play the denver broncos in their first preseason game .\ngraham leonard , 44 , was flying back to scotland from manchester . was part of a group who had watched manchester united at old trafford . admitted to drinking beers and gin and tonics throughout the day . sheriff warns he has not yet decided whether a jail term is sufficient .\njordan spieth struggled on his return to action following augusta triumph . the 21-year-old carded three-over-par 74 in first round at the rbc heritage . he finished eight shots behind leaders matt every and graeme mcdowell .\nrory mcilroy will be on the front cover of ea sports ' pga tour 2015 game . the game offers multiple ways to play , including arcade controls . fans can create their own custom gameplay style .\nsunday 's party marked the 150th anniversary of the end of the american civil war and was held in a rural brazilian town colonized by families fleeing reconstruction . thousands turn out every year , including many who trace their ancestry back to the dozens of families who , enticed by the brazilian government 's offers of land grants , settled here from 1865 to around 1875 . amid food and beer stands bedecked with red-white-and-blue ribbons , extended families tucked into diet-busting barbecue and hamburger lunches as ` dixie ' played on a loop .\nresearch suggests certain types of music can bring out specific flavours . high-pitched music highlights sourness while sweetness is a rich sound . billie holiday 's voice can emphasise autumnal flavour of pumpkin pudding . ` digital seasoning ' can also help drinkers enjoy wine by up to 15 % more .\nthe boy picked up the condom in his school playground at bennett elementary in bennett , colorado last week . his mother said it would be a year until her son had the all-clear from his std testing .\nbank of england governor set to run london marathon later this month . spotted tooled up in hyde park with # 35 nathan speed 4 fuel belt . device , carring water and energy sachets , resembles batman 's utility belt .\nthe film will premiere on memorial day . it opened last year 's cannes film festival . a planned march theater release was scrubbed .\njohn young , 66 , struck in eye by brick hurled through front door by thugs . ex-soldier was sat in living room of oldham home when stones hit window . pensioner opened front door to investigate and was hit in face with a brick . left blind in one eye and said he now ` does n't feel safe in his own home '\nmarin cilic defeated 6-4 6-4 by victor estrella in the barcelona open . the u.s. open champion is struggling for form after a shoulder injury . cilic said he needs more matches to get his game up to scratch .\nnew jersey senator , 61 , is accused of using his influence to help wealthy donor in exchange for nearly $ 1million in campaign contributions and gifts . according to a federal indictment unsealed this month , menendez intervened in the visa applications of three women tied to donor dr salomon melgen . those women are believed to include a former big brother brazil contestant , ukrainian actress/model and a young woman from the dominican republic . menendez , the chairman of the senate foreign relations committee , has pleaded not guilty to the charges . melgen has also been charged in the indictment , as well as in a separate indictment for medicaid fraud ; he remains jailed .\nvictor prout created a makeshift dark room on board a boat he used to travel along stretch of the river thames . prout captured images of iconic landmarks in the 1850s , such as the houses of parliament and windsor castle . images are oldest surviving documented record along the river and are remarkably similar to those of today . collection , contained in the book of the thames , is to be sold for almost # 30,000 at the oxford book fair .\nin an interview , armani , 80 , described cosmetic surgery as idiocy . believes women ` should not be desperate to look younger than her age ' the italian designer also said he did n't like men who looked too muscly .\nfans dressed up with apple watch hats as they queued . apple 's tim cook told buyers at a palo alto store sales were ` great '\nyoung star is seen in video inhaling gas before laughing and passing out . it comes just days after he was seen puffing on a strong shisha pipe . manager brendan rodgers says it 's not something he should be doing . comes amid reports the # 35,000-a-week player is not happy at liverpool .\nolivia , 28 , has teamed up with luxury british brand to create # 995 bag . comes with built-in phone charger and all proceeds will go to charity . pippa middleton , kim sears and mollie king are fans of luxury brand .\njuventus face monaco in uefa champions league quarters on tuesday . carlos tevez has already scored six goals in the competition this season . juventus fans worship tevez and expect him to fire them to victory . the italian side are missing paul pogba , but that has enabled other midfield players to come to the fore and impress . juventus have not won the champions league since 1996 , later suffering heartache in a penalty shootout defeat by ac milan in 2003 . monaco boss leonardo jardim : juventus are a better team than arsenal !\njihadi tried to launch attack on kurdish peshmerga forces near kirkuk , iraq .\nliam phillips was world cup series champion in 2014 . but phillips wants to use the 2015 series to develop his tactics for rio . bmx rider also looking to reclaim his world championship title this year .\ndr julie epstein has been found guilty of medical misconduct . the sydney anti-ageing doctor was inappropriately prescribing drugs . steroids and human growth hormone were being given to patients . nsw civil and administrative tribunal said she was irresponsible .\nbriony ingerson posted a photo of herself and a friend in ` blackface ' the fox sports australia freelance presenter proceeded to defend her actions on twitter , writing ` it was an african costume party #notracistatall ' . fox sports australia say they are satisfied ingerson is upset , apologetic and understands her actions were offensive . issue was flagged by a journalism student who worked alongside ingerson .\na ch-53e super stallion helicopter was forced to make an emergency landing on a north san diego county beach wednesday morning . the crew landed the helicopter - the largest and heaviest in the military - after a low oil pressure light came on in the cockpit . no one was injured or anything damaged in the landing . the helicopter parked on the back for four hours before taking off back to miramar air station .\ndidier drogba given the barclays spirit of the game award . the 37-year-old 's foundation has done impressive work in africa . some of chelsea 's stars attended a charity ball which raised # 400,000 . click here for all the latest chelsea news .\nkim kardashian and kanye west , along with their daughter north and sister khloe , are visiting armenia . the trip is the famous reality tv stars ' first to the nation of their late father robert 's birth . their visit coincides with the lead-up to the 100th anniversary of the armenian genocide on april 24 . in their eight-day trip , filmed for tv , they are visiting a host of historical sites in the culturally rich city .\nsarah harper was dating christopher lane , 22 , when he was gunned down . chancey allen luna has been accused of killing sportsman in august 2013 . he was visiting harper in the city of duncan when he was slain . the melbourne , australia , native was on a baseball scholarship at the time . prosecutors also said 104 bullets were discovered in the drive-by car .\npremier league footballers are voting for pfa players ' player of the year . eden hazard and harry kane are the leading candidates for the award . sergio aguero , alexis sanchez and david de gea are also contenders . luis suarez won last year with gareth bale taking the prize the year before .\nchinese internet users have dubbed it the ` craziest rear-end collision ' a white truck is struck by the turret of the tank driving behind it . crash took place on a roundabout near a residential area yesterday . no comments have been given regarding the cause of the incident .\nreal madrid beat rayo vallecano 2-0 in la liga on wednesday night . cristiano ronaldo scored his 300th goal for the spanish giants . ronaldo was also booked for diving in the area but it appeared unfair . now the european champions are appealing the decision . if appeal is unsuccessful the ballon d'or winner will face one-match ban . click here for all the latest real madrid news .\nfatu kekula , 23 , saved most of her family from ebola . thanks to donors , she is being trained at emory university . kekula was one year away from finishing a nursing degree when ebola struck .\nmotherwell will offer free entry to their regular fans if they end up in play-off . but spfl are entitled to 50 per cent of gate proceeds from the games . motherwell will make stand and offer free tickets in event of finishing 11th . rangers and hibernian will back the club 's stance against the spflâ .\nrory mcilroy heads to masters hoping to complete a career grand slam . world no 1 backs scotland 's bradley neil to succeed as a professional . winner of last year 's amateur championship has been invited to augusta , us open and the walker cup . click here for all the latest news from the 2015 masters .\nofficial figures show chelsea show the least respect to match officials . team behaviour is ranked out of seven by fa delegates at each match . liverpool were shown to have the greatest respect towards referees . chelsea 's back room staff were ranked second-worst in the figures .\nhull lost 3-1 to swansea to slip towards relegation zone . bafetimbi gomis double does the damage as tigers struggle . david meyler was sent off , and hull have a very tough run-in .\nzeke celello was devastated by clinton campaign and burst into tears . zeke , who appears to be around two , insists he would be better candidate . his mother , erin , eventually persuades him to go ahead with the run anyway . policies are unclear , but he 'd like win the white house to ` play ... with toys ' . unfortunately , u.s. constitution states that presidents must be at least 35 .\nteana walsh , assistant prosecutor in wayne county , michigan , wrote facebook post . said she watched violent rioters in baltimore and found them ` disgusting ' suggested that shooting them was the only solution - then deleted post . her bosses were forced to issue statement defending her .\nbritish sprinter adam gemili blogs about his preparations for rio 2016 . gemili says usain bolt is great at the circuit as he is often joking around . admits bolt gives great advice and he will try to take that into this season .\nedwin ` jock ' mee , 45 , allegedly targeted 11 cadets aged between 15 and 25 . alleged he raped one of the cadets at the mitcham army careers office . cousin of the alleged victim rang mee to voice her concerns about him . he is said to have told her he hoped her cousin was ` as sweet as she looks ' .\nbarcelona through to champions league semi-finals after 5-1 aggregate win over paris saint-germain . damage was done in first leg as barcelona scored three away goals to take a healthy lead back to the nou camp . neymar scored twice in the first half to put result beyond any doubt on zlatan ibrahimovic 's return to barca .\nnew honda civic was unveiled at new york auto show tonight . swindon factory will be exporting the five-door version of the car .\nautopilot could have taken control of germanwings flight and flown plane to safe altitude . but some experts say taking control away from humans could lead to other dangers . another concern : autopilot might be vulnerable to hackers .\ncloud formation before the red dusk sky resembles a fire breathing dragon . it was captured by amateur photographer nicolas locatelli , 20 , in california . the patron saint of england st george slayed a dragon in famous legend .\npizza hut worker from alberta , canada , got a cold and called their gp . doctor wrote letter to their employer saying they do n't need a sick note . opens the letter praising patient for ` sensibly staying home from work '\ntiger woods and rory mcilroy will both play at next week 's masters . augusta favourite mcilroy looked up to woods when he was a child . new nike advert shows portrays a young mcilroy 's rise to the top . woods has won four green jackets , the last of which came in 2005 . mcilroy is looking for his fifth major win to complete a career grand slam .\nflight from kansas city , missouri to denver , colorado , was diverted friday . landed at colorado springs at 7.30 am - beginning six-hour ordeal . after three hours passengers could go - but would have had to pay for new connecting flights and transport . during long wait airplane ran low on water , food and bathroom supplies . airline has denied it was feasible to get passengers off the flight .\nalastair cook has been part of three of the six ten-century partnerships . day three 's effort with trott is england 's first since march 2013 . then it was cook with nick compton against new zealand in dunedin . west indies bowler shannon gabriel hit 94.3 mph on thursday .\nzoe hadley , 19 , was found dead in a hotel in putney , south west london . teenager had been battling an undiagnosed illness since she was 13 . her parents , a leading solicitor and a gp , struggled to treat her condition . inquest heard how she refused to accept she had mental health problems . for confidential support on suicide matters in the uk , call the samaritans on 08457 90 90 90 , visit a local samaritans branch or click here .\nsprinkles the 33-pound cat is so fat she ca n't even roll over and she 's equally as fat as a 700-pound human , say rescue workers . the neglected cat from new jersey was handed over to the rescue agency s.o.s sea isle cats by a family facing a foreclosure on their home . sprinkles will hopefully lose a pound a month and when she does she will be placed in a loving home . a healthy weight for sprinkles is around 10 pounds .\nholly willoughby , katherine jenkins and samantha cameron all wear pink . spring/summer collections are awash with different shades of the colour . according to experts , stronger pinks show confidence , energy and power .\nben stokes was denied a wicket after bowling a no-ball . the durham all-rounder thought he had dismissed jermaine blackwood . replays showed that stokes had overstepped the crease .\nburnley manager sean dyche is keen to protect striker danny ings . ings has not scored since february as burnley battle relegation . although dyche would like ings to return to form as soon as possible , he has made it clear other burnley players must step up to the plate as well . the 1-0 defeat by everton last time out has left burnley bottom of the premier league table with 26 points from 33 games .\nhumans of new york shared a picture of a girl called beyoncé . she expressed her annoyance of sharing a name with a celebrity . the photo encouraged thousands of facebook users to comment . each shared their experiences of having an embarrassing name .\nnicole mcdonough , of mount olive , new jersey , was indicted on three counts of official misconduct in march . the 32-year-old married mother of two and english teacher at west morris mendham high school was arrested december 30 . allegedly had improper relations with two 18-year-old male students and a ` physical sexual relationship ' with a third . mcdonough pleaded not guilty at her first court appearance in january . she is now applying for pre-trail intervention program in hopes of having her criminal record expunged .\nlindsay sandiford fears she will be next to face the firing squad . andrew chan and myuran sukumaran killed after a final kfc bucket meal . the 58-year-old has been on death row in bali since 2012 . she was convicted of attempting to smuggle # 1.6 million of cocaine in 2012 .\nsexting is ` not advised for politicians ' , says labour leader ed miliband . and nick clegg adds it 's ` risky if you are young , dodgy if you are older ' green party leader natalie bennett says it is ` not for her ' and education secretary nicky morgan adds it 's ` too risky ' politicians were asked what they thought of the practice by cosmpolitan .\nnorma esparza , 40 , is facing six years in state prison after pleading guilty to a reduced charge of voluntary manslaughter . she is one of four people accused of the 1995 killing of gonzalo ramirez , 24 , who she claims raped her . a professor in geneva , she was arrested in the cold case murder tin 2012 when she re-entered the u.s. for an academic conference . she says her ex-boyfriend , gianni van , forced her to identify ramirez and then coerced her to keep the murder secret for almost two decades . esparza is now testifying at van 's murder trial , which is in its second day .\nall u.s. consulate personnel safe after blast , state department spokeswoman says . suicide bombers blow up car near the u.s. consulate in irbil , iraq .\nvarious fashion faux pas committed at the arts and music festival . jaden smith wore a tunic dress , paris hilton donned cat-ear headband . revellers wore neon swimsuits , a peter pan costume and garish leggings .\nboeing 737 cargo plane was carrying 10 tonnes of freight when it landed . left main landing gear detached due to heat damage to chrome plating . report said ` the aircraft shuddered and rolled slightly ' to the left . co-pilot and the captain of a different team reported smoke . firefighters sprayed the landing gear and engine as a precaution .\nbarking and dagenham to become first council to dna test dog mess . council could match dna with sample from mess and fine owners # 80 . wants to ` encourage ' swab registration - which would not be mandatory . schemes in the us have reduced dog fouling as much as 90 per cent .\narsenal fan luke bryant confronted arsene wenger during 2-0 defeat . bryant admitted charge of ` going onto an area adjacent to a playing area ' the lifelong arsenal fan is not allowed to attend games for three years . he was also ordered to pay # 200 court costs and fined # 500 .\nmark selby was knocked out of world championship by anthony mcgill . mcgill beat the defending champion 13-9 at the crucible in sheffield . the scot pulled off a monumental victory to secure quarter-final place .\nashley dodds , 29 , left speechless when daughter told her what happened . the mother , from salford , had ordered ` mocktails ' for the girl and her friend . went outside for a cigarette and was told ` mum , i 've had alcohol ' on return . manchester restaurant blamed ms dodds for leaving children on their own .\nshibuya ward in tokyo passes an ordinance that gives same-sex couples some of the rights of married heterosexual couples . activists welcome the decision ; hope that it will lead to greater equality for lgbt people in japan . recent poll finds most young japanese open to the idea of gay marriage .\namanda lamb stars in the new fragrance campaign for air wick . she is captured in the plush shoot by vogue photographer willy camden . she offers tips on home improvements in a special video .\nbridesmaids star expressed his frustration in a sarcastic tweet . he mocked the airport with the hashtag ` #scarybaby ' . his wife , dawn o'porter , gave birth to their son in late january . travellers can ` carry enough baby milk or baby food ' in their hand luggage .\nmichael hanline was serving life without parole for killing jt mcgarry . but new dna evidence at crime scene revealed that he was innocent . after 36 years wrongfully imprisoned the 69-year-old has finally been freed . hanline says all he wants to do now is fish and spend time with his wide .\narsenal beat burnley 1-0 at turf moor on saturday . win was arsenal 's eighth in a row in the premier league . olivier giroud wants arsenal to maintain charge and challenge chelsea . arsenal play chelsea in their next league game at the emirates .\nfootage shows three-year-old luiz antonio from brazil being presented with a fanciful dish of octopus gnocchi at the dinner table . but instead of digging into the seafood feast he starts asking about where the tentacled creature set before him came from . english subtitles detail his train of thought . his mother is reduced to tears through laughter as she listens .\nengland denied first tour win since december 2012 by stubborn hosts . alastair cook rues missed opportunity at the sir vivian richards stadium . jason holder hit a century to frustrate the tourists on day five . england could only take five of the eight wickets needed to lead the series . tourists now head to grenada for the start of the second test on tuesday .\nlpga player posed shirtless for may 's ` fitness and power ' issue . editor-in-chief jerry tarde defended decision after recent controversies . two previous front covers have featured two non-golfing women . one reader said : ' i was n't sure if it was a playboy ad , or if it was a golf digest ad ' .\nkecil the one-year-old orangutan was taken to chicago zoo after being rejected by his mother and surrogate mother . he was eventually given to maggie , 53 , who had already raised four children of her own and another surrogate . keepers were concerned pair might not bond , but ten months later they have formed an inseparable connection . kecil will go on display for the first time this weekend alongside his mother , but only for two hours at a time .\nalmost 1,000 personnel required psychiatric treatment after taking drug . they were prescribed anti-malarial drug lariam by the ministry of defence . the product 's side effects include psychosis and hallucinations . retired major general alastair duncan is currently in a psychiatric unit . he was prescribed the drug prior to a deployment in sierra leone .\nglenn murray has scored five goals in his last five premier league games . the 31-year-old spent most of last season sidelined with a knee injury . alan pardew says cumbrian is reaping the rewards of reading loan spell .\ntwo conmen persuaded elderly man to give them his debit cards and pins . 80-year-old thought the men were bank staff when he left them his cards . fraudsters were later filmed grinning as they stole victim 's cash from atm . west midlands police released the footage to help track down the conmen .\njust nine points separates the bottom seven clubs in the premier league . qpr boss chris ramsey says they need three more wins to survive . burnley host relegation rivals leicester in the league on saturday .\nlea coligado , 21 , a stanford computer science student , is the creator of the blog showcasing talented women in tech . the profiling blog has already attracted women from big hitting tech companies like pinterest and postmates . the blog 's inspiration , humans of new york , was started by new york photographer brandon stanton and features street portraits accompanied by quotes from the subjects .\njohn mcginn will miss the rest of the season after the incident in training . steven thompson threw a pole towards mcginn after losing possession . the pole stabbed mcginn in the leg , leaving him needing hospital attention . thompson says ` blood started pouring out of the hole ' in mcginn 's leg . st mirren captain is believed to have given his goal bonus to mcginn .\nrobert fidler has lived in castle in salfords , surrey , since 2002 with family . used bales of hay to disguise the building before unveiling it in 2006 . tried to exploit loophole that allows building if no complaints for four years . 66-year-old must now demolish the four-bedroom house worth # 1million .\nirish student , 22 , accusing jason lee , 38 , of raping her testified in court on tuesday describing of the moment the ` assault ' occurred . she said she kneed him in the groin during the struggle after he forced her onto the floor whilst naked in the bathroom of his rented mansion . the victim said she tried to bite him but he told her to ` shut the f *** up ' as he pulled up her dress and pulled down her underwear . she revealed she has not told her family in ireland about her ordeal and made the 16-hour journey to new york to give evidence on her own . lee was arrested in august 2013 after a woman accused him of attacking her at the home he and his wife rented in east hampton . he has denied first-degree rape , sexual misconduct and third-degree assault and faces up to 25 years in jail if convicted . lee invited the woman , her brother and friends back to the house after they met at trendy restaurant .\ntommy sheldon , aged five , died following horrific car fire in august 2014 . he died two weeks after suffering horrendous burns caused by the fire . his mother theresa has been charged with his murder following incident . also charged with attempted murder of another child who was also in car .\njade ruthven , 33 , from perth , received angry anonymous letter . outrageous poison pen letter was concocted by ' a few of the girls ' demands she stops posting so many photos and updates about her baby . ` we all thought it might ease off after the first month , but it has n't ' . ms ruthven , a first-time-mother said letter was like a slap in the face .\ndetectives returned to the home of bill spedding on monday afternoon . they reportedly spent more than an hour speaking to the 63-year-old . his house on the nsw north coast was searched in january and march . william tyrrell vanished from his home in kendall , nsw in september 2014 . police recently said they believe the boy may be alive after six months .\nmartina hingis faces poland 's agnieszka radwanksa in the fed cup . saturday 's tie will be her first singles match since 2007 . hingis won all five of her grand slam titles by the age of 18 . the now-34-year-old retired at the age of 22 in february 2003 citing injuries .\ninternational cricket fans in england lost legend 's voice after 2005 ashes . this led ian wooldridge to pay homage to ` cricket 's finest commentator ' as a player he led his country in 28 of his 63 tests and never lost a series . mantra of ` never insulting the viewers ' by saying too much made him great .\njordan spieth won his maiden major at the age of 21 at augusta . the 79th masters attracted massive television ratings in the usa . spieth went back onto the 18th green to formally acknowledge the crowd . jack nicklaus and phil mickelson are among those to pay tribute to spieth .\nkevin pietersen took part in a net session at the oval on monday . he is expected to play in three-day game against oxford mccu on april 12 . pietersen has returned to county game to boost chances of england recall .\nthe technology billionaire pursued a sale of struggling electric-car company tesla to google in 2013 for $ 6 billion . musk demanded that he be permitted to run tesla as a unit of google for eight years , or until tesla produced a third-generation car . negoitations promptly ended in may 2013 when his company unexpectedly yielded its first profit and he no longer needed the finanical support . the claims are made in the new biography elon musk : tesla , spacex and the quest for a fantastic future .\ngunman on the run since 2pm saturday afternoon in sydney 's west . eight shots fired in a shopping mall as people had lunch in harris park . street in the area was closed by police as they attempted to find the man . police confirmed an arrest has yet to be made after the incident .\nhayleigh mcbay , from elgin , scotland , dumped her boyfriend as a joke . but when 17-year-old told david clarke , he replied that he was pleased . david was actually calling hayleigh 's bluff and the pair are still dating . screenshot tweet of conversation retweeted more than 12,000 times .\nnew jersey school teacher cheryl meyer , 45 , told the governor his famous attitude wo n't be appreciated nationwide . the likely 2016 candidate , who was holding a town hall meeting , responded calmly and said ` i 'm trying to get better every day '\nburnley winger george boyd has run the furthest in the premier league . his 210.5 miles this season beats christian eriksen from tottenham . burnley have run an incredible 2,172.3 miles between them this season . players from stoke , hull , liverpool and west ham feature in the top 10 .\naround australia men and women flocked to play two-up after attending dawn and memorial services on anzac day . the game dates back to australia 's goldfields and the first recorded games took place in the late 1790s . two-up is illegal on all days apart from anzac day as it is considered a form of gambling . versions vary between the original two-coined game and three-coined version . pennies are placed on a paddle and are thrown into the air for people to bet on -lrb- ` heads ' or ` tails ' -rrb-\njutting was deemed fit to stand trial in november . faces life in prison if he is convicted of murder charges . jutting spoke twice , saying ' i do ' when asked if he understood charges . case was adjourned until may after prosecution asked for more time .\nnorth korean leader climbed highest peak to speak to troops . kim jong-un said the hike was ` more powerful than nuclear weapons ' took photo with troops on summit before visiting army base .\nflir systems inc. has agreed to pay $ 9.5 million to settle bribery charges filed by the securities and exchange commission . the sec said the thermal-imaging company earned more than $ 7 million in profits from sales influenced by the gifts . the commission said two employees in flir 's dubai office gave luxury watches to five officials with the saudi arabia ministry of interior in 2009 . the company also arranged travel for saudi officials , including a 20-night trip with stops in beirut , casablanca , dubai , new york and paris .\ntabitha anne bennett ` messaged a 14-year-old girl on facebook and told her that she would be bringing her daughter to fight the girl ' she ` drove her daughter to the meeting place and emerged with a knife - which made the 14-year-old girl think she was going to die ' she ` yelled at her daughter to fight the other teenager and pulled the other girl to the ground by her hair ' . she has been charged with child abuse and assault and battery .\nshah jahah khan and ibrahim anderson are accused of terror offences . the pair appeared at westminster magistrates court in islamic dress . accused of handing out isis propaganda leaflets on oxford street .\n15 buffalo are shot on friday after escaping the day before from a farm in schodack , new york . police helicopters fly overhead and nearby schools put on alert in the final moments of the chase . the herd breaks through three layers of barbed wire fencing and crosses the hudson river during the escape .\nbook claims juan carlos was romancing corinna zu sayn-wittgenstein . final de partida - or end game - by ana romero , sold out within 24 hours . author said at the book 's launch the pair were ' a couple pure and simple ' .\nhorse and carriage drained the customer 's account of # 20,000 . the live-in tailor was demanded to make ski and apres ski outfits . this came at a cost of # 1700 for the extremely wealthy skiers . another group of guests asked for two grand pianos to be flown in . demands were made to high-end firms haute montagne and bramble ski .\nman allegedly abused in children 's home has already instructed lawyers . his solicitor says suing could be ` only way to get some sort of justice ' police identified 25 men allegedly abused by peer but case was dropped . cps boss alison saunders said janner is unfit to plead due to dementia . but the cps has pursued other suspected paedophiles with illness .\nthe italian coast guard says 8,480 migrants were rescued from friday to monday . save the children said tuesday 400 migrants could be missing from a boat . the italian coast guard can not confirm that report .\ncrown princess mary was in aabenraa in southern denmark on thursday . event marked the 75th anniversary of the invasion by germany in 1940 . tasmanian-born royal wore chic black ensemble with grey accessories . busy week for royals with birthday celebrations for queen margarethe ii .\nannabelle cox was born at just 20 weeks in canberra on may 5 last year . parents jaye and matthew made decision to give birth prematurely after scans showed she had developed serious form of spina bifida . they contacted angel gowns after making heartbreaking decision so jaye 's wedding dress could be redesigned . charity turns donated wedding dresses into outfits for babies . annabelle was born weighing just 290 grams and survived for five minutes .\ntimothy fradeneck , 38 , appeared in court on wednesday as he was arraigned on first-degree murder and child abuse charges . fradeneck 's wife christine , 37 , their 2-year-old daughter celeste and 8-year-old son timothy iii were found dead in their home on monday . when police searched the home , fradeneck allegedly confessed to strangling all three with a usb cord . in court on wednesday , fradeneck was emotionless through the proceedings and prematurely tried to enter an insanity plea . if convicted on the charges , he could spend the rest of his life in prison .\nthe bodies of two passengers have been found amid wreckage in argyll . small aircraft lost contact with ground control at around 1pm today . investigators believed it may have crashed some 30 miles east of oban .\nfurniture company , steelcase , has created the brody worklounge . lounges are designed to ` be good for your body and good for your brain ' brody provides shelter from visual distractions with privacy screens while featuring cushion that adapts to each person 's size . in recent years many companies have embraced open offices with about 70 per cent of u.s. offices having no or low partitions . a 2013 study revealed noise and privacy loss are the main source of workspace dissatisfaction .\nlucas leiva was injured for liverpool 's three wembley games in 2012 . he hopes to feature in the semi-final against aston villa on april 19 . simon mignolet believes victory over blackburn vital after two defeats . read : steven gerrard 's fa cup dream at wembley remains a reality . click here for all the latest liverpool news .\nwhite house said today that jeremy bernard would depart after a state dinner next month , confirming rumors he 'd soon exit the administration . first lady offered a glowing review of bernard 's tenure , saying she was ` lucky to have such a talented individual on my team ' and a ` lifelong friend ' he is moving back to california ` to think about what 's next and spend some quality time with garbo , my rescue beagle ' white house has not yet named a replacement .\nfrench owned sovetours coach turned back from boarding ferry in devon . bus full of tourists had wanted to cross the river dart in dartmouth . ferry bosses say coach was too big to be allowed to cross river . coach driver forced to perform u-turn on slippery narrow slipway .\nrobert hardy , 89 , is a military enthusiast who studied english literature under j.r.r. tolkien . he is selling off a huge collection of books , artwork and furniture . among the objects which have gone up for auction are a huge 3d diorama of the battle of agincourt .\njerry tarkanian , five , was taken to the hospital at 4am on friday after complaining about pain in his legs . he was given a ct scan , could n't move the left side of his body and was having trouble answering questions , mom amy tarkanian said . parents danny and amy tarkanian say he 's showing signs of improvement . elder jerry tarkanian , a hall of fame coach , died in february , aged 84 .\nluigi costa , 71 , is accused of killing his neighbour terrence freebody . costa allegedly stomped on his head , cut his throat and stabbed him multiple times in freebody 's dining room in red hill , canberra on july 2012 . experts says costa suffered from dementia and alcohol abuse at the time . he also said there were signs of costa 's decline in the lead-up to incident .\nstacey eden , 23 , stands up for muslim woman being bullied on the train . video shows a middle-aged woman ranting about islam to quiet passenger . ms eden said the ranter labelled the muslim commuters isis terrorists . she also brought up beheadings , a massacre and the martin place siege . abused man hafeez ahmed bhatti thanked ms eden the next day . ` god bless stacey eden who supported us , ' mr bhatti posted on facebook . mr bhatti said he will be speaking with police to potentially press charges . islamic community leader says incidents are increasingly common .\nhundreds protested an air force vet and former playboy model 's arrest when she tried to stop people from trampling on a flag . valdosta state university closed after police warned there would be thousands of protesters and as they searched for student eric sheppard . police said they traced a gun to a protester who was part of the flag-walking demonstration , and issued a warrant for eric sheppard 's arrest . michelle manhart , 38 , was handcuffed at valdosta state university , georgia . former usaf training sergeant took flag from campus protesters on friday . police arrested her for not giving it back because of how it was treated . manhart posed for raunchy military-themed playboy spread in 2007 . was demoted from her sergeant rank , and later left the military .\nthe woolworths ` fresh in our memories ' campaign launched last week . it invited customers to upload images to remember australians who fought for their country . the supermarket then added a woolworths logo and slogan to the images . customers took to social media to mock the campaign and express their anger with what they saw as a marketing ploy by the company . woolworths has taken down the campaign and also denied that it was designed as a marketing strategy .\namericans paid more for some fruits and vegetables last year because of the drought . tourists will now have to ask for a glass of water at a california restaurant . perhaps the only good thing is another `` great '' wine grape harvest last year .\npleasaunce cottage in dormans park near east grinstead has been lovingly maintained since the 19th century . the unique property has a large veranda , original oak panelling , four bedrooms and stained glass windows . it is one of the last surviving bungalows in britain built in the same style as original properties found in india . in the victorian age bungalows were the reserve of the wealthy upper classes were used to escape heat of cities .\ndavis cup quarter-final tickets will be hard to find for fans this summer . there will be a capacity of 7,000 for the tie at london 's queen 's club . but well under 3,000 tickets will be released to general fans for the game . the rest will go to various organisations and governing bodies in tennis .\nlaura alicia caldero , 26 , removed from mamitas beach in playa del carmen . she claims she was sitting under a palm tree and was told to pay . local woman claims she was arrested when she refused to pay a fine . a council official claims ms caldero assaulted private guards .\nphil haste , 60 , issued with # 50 fine for not showing tax disk in his car . this is despite it not becoming a legal requirement six months ago . he was also told he had not shown a pay and display ticket in his car . but he has a valid car parking permit , so said decision was ` diabolical '\nelijah overcomer and his wife rosanna walked out of gloriavale . it is a secretive christian commune on the new zealand west coast . he said m night shyamalan movie the village is a ` good comparison ' ` all you know to be outside gloriavale is a lot of evil ' . he was initially kicked out for ` asking too many questions ' . after leaving gloriavale , family grappled with religious fears . people opened their homes , hearts and wallets to the gloriavale refugees . a timaru church has been instrumental in settling the family . there has recently been an exodus from gloriavale .\nmichael kimmel was taken into custody wearing only boots , jeans and a cowboy hat .\nkevin dixon took his friend 's akita dog for a walk when she was injured . he hacked the animal to death , hitting it seven times with an axe at night . dixon claimed he was concerned the dog would go on to bite children . he was convicted of causing the animal unnecessary suffering and given a seven week suspended jail sentence and banned from keeping animals . warning graphic content .\nengland closed day three of the first test on 116 for three , 220 runs ahead . west indies were bowled out for 295 in their first innings . james tredwell took four wickets in west indies innings . jermaine blackwood hit his maiden test century for the hosts . jonathan trott -lrb- 4 -rrb- and alastair cook -lrb- 13 -rrb- both failed with the bat again . ian bell was run out for 11 as england slumped to 52 for three . joe root -lrb- 32 * -rrb- and gary ballance -lrb- 44 * -rrb- unbeaten at stumps on day three .\nsan antonio spurs players take part in spuran spuran music video . the nba champions perform single ` spurs ! ' in hilarious performance . kawhi leonard , matt bonner , patty mills and aron baynes all teamed up . spurs are third in the western conference with the play-offs approaching .\nbayern munich 's long-serving doctor hans-wilhelm muller-wohlfahrt quits . german champions lost 3-1 in the champions league to porto this week . muller-wohlfahrt claimed he and his staff were blamed for the defeat . bayern release statement on friday thanking muller-wohlfahrt for his services and saying they ` regret ' his decision . guardiola on friday said he ` respects ' muller-wohlfahrt 's decision . pep guardiola seemed to place blame on injuries in post-match interview .\nferguson , missouri elected three black officials to city council seats on tuesday , up from one last term . black officials now comprise half of the city council in the city . this just over a month after a justice department report detailed a culture of racism and abuse among city officials , employees and police . voter turnout hit record highs , with 29.4 percent of registered voters going to the polls , up from 12.3 percent last april . the elected black officials include wesley bell and ella jones , while dwayne james , the incumbent , was not up for reelection .\nmichael owen says charlie adam 's goal at chelsea was not that impressive . owen said the fact adam kicked the ball ` hard and straight ' made it easier . adam responded by saying owen would have injured himself if he attempted the shot .\njames hayward was flying with parents phil and hazel to lanzarote . but x-ray machine picked out his nerf toy gun on security scan . four-year-old was then patted down and forced to hand over toy . airport insist they have offered to post the item back to boy 's home in doncaster , south yorkshire .\nprime minister david cameron faced six other party leaders . none of the leaders are expected to land a majority in the may 7 election . no leader delivered ` killer line ' but he was ` most impressive ' on economy . pollsters touting this election as closest since 1970s , inevitable coalition .\nscientists in belgium say all sweet potatoes contain ` foreign dna ' agrobacterium bacteria in the crop exchanges genes between species . this makes sweet potatoes a ` natural genetically modified organism ' and humans have been eating it for thousands of years .\nfather damian maria montes stunned viewers with his version of angels . priest , 29 , of madrid , said he once hoped to become a professional singer . but before chasing dream he turned to the church to ` make sense of life '\npassengers forced to get out and push after 12-tonne bus broke down . double decker was stranded in dover town centre during incident . driver asked passengers and residents to help get his vehicle to depot .\ninca kingdom in the andes was connected via handwoven rope bridges . today , only one bridge remains - the keshwa chaca near huinchiri , peru . the 90ft-long bridge is rebuilt by villagers over three days every june , before gradually disintegrating each time . locals use the same techniques to make the rope as their inca ancestors .\ncalled the ` mediterranean-dash intervention for neurodegenerative delay ' diet even reduces alzheimer 's risk by 35 % if not meticulously followed . includes 10 healthy food groups like fish , poultry , olive oil , beans and nuts . involves avoiding unhealthy brain foods like cheese , butter and sweets .\nimage shows two women hugging among commuters on a train platform . nelson felippe , from rio de janeiro , expressed disapproval of the scene . the angry facebook post received over 100,000 shares in 24 hours . but nelson was using the picture to send-up homophobic attitudes .\nthe couple were invited to fit bungs into two single malt whiksy casks . they are known as the duke and duchess of rothesay in scotland . both wore tartan for the visit . will have to wait 8-10 years for a tipple while the whisky matures .\ninter milan are interested in signing midfielders lucas leiva and alex song . inter are keen on manchester city duo yaya toure and stevan joevtic . roberto mancini worked with them both during his spell at the club . click here for all the latest liverpool news . click here for all the latest manchester city news .\nten australian war widows travelled to gallipoli to attend this saturday 's anzac centenary commemorations . the group - who were much younger than their husbands - are guests of honour at the gallipoli dawn service . they will join more than 10,000 australians and new zealanders at the anzac commemorative site at gallipoli .\ncomedian maria mcerlane travelled with buddy doon mackichan . the pair swam morning , noon and night in the andaman sea . serenaded by macaques and dusky leaf monkeys .\nsome local businesses in baltimore are banding together to show support for change . business owners have given workers opportunities to peacefully demonstrate . several businesses dealing with destruction , looting from monday riot .\nlazio have won eight successive serie a games ahead of juventus clash . stefano pioli 's side will cut gap at the top to nine points with victory . ac milan and inter milan struggling for form ahead of derby . napoli host hellas verona after impressing in europa league .\nliverpool scouts have been impressed by geoffrey kondogbia this season . the midfielder was one of the most coveted youngsters in europe . france international joined monaco from sevilla in 2013 for # 17million . liverpool remain in the frame for james milner and danny ings .\ntool works with all android phones with the latest google app installed . type ` find my phone ' in google and click the search icon . the handset will be plotted on a map with a ` ring ' button beneath . clicking this button will remotely call the handset and help locate it .\nmarc randazza : court upholds a trademark denial for asian-american band the slants on the grounds that name was disparaging . he says court is wrong : trademarks are commercial speech , protected by first amendment . ruling a sign or our easily offended times .\nspanish woman allegedly stabbed british partner and two children . the family were found dead in a flat in gibraltar earlier this week . anarda de la caridad perez friman ` suffered from post-natal depression ' british man identified as john joseph shannon , 31 , from liverpool .\nanthony joshua has now won his first 11 professional fights . he needed just three rounds to beat jason gavern in newcastle . gavern was dropped twice in round two and again in the third . joshua now takes on kevin johnson at the o2 on may 30 .\nthe popular food chain 's new spring menu includes a 650-calorie chicken-filled pretzel roll and a 400 calorie bagel . each of the chicken pretzel rolls contains 68 % of your recommended daily allowance of salt . the new menu contains one ` healthy ' option , a 210-calorie steak wrap - which still contains 25 % of your daily saturated fats . cardiologist dr kevin campbell explained to femail that the menu items are full of 'em pty calories ' that have ` little or no nutritional value ' .\nthe former heir to the durst real estate empire was hit with new felony gun possession charges on tuesday . durst , 72 , was the recent subject of hbo documentary the jinx . the day before the final episode aired , authorities in louisiana arrested durst in connection to the 2000 murder of his friend susan berman .\nlee mcculloch was shown a straight red card after fouling osman sow . rangers went on to win scottish championship fixture 2-1 at ibrox . stuart mccall says captain mcculloch apologised to both him and the players after sending off against hearts .\nwada director general david howman said he was disappointed the disgraced former cyclist had n't yet apologised for drug offences . lance armstrong showed 2013 email chain attempting to meet howman . howman broke off the email discussions after advice from lawyers . armstrong was stripped of seven tour de france wins from 1999-2005 .\nseamus coleman was penalised for handling in the penalty aread . coleman went down under pressure from marvin emnes . roberto martinez insisted after the game his player had been pushed . michael oliver decided it was a penalty , which jonjo shelvey converted .\nrebecca horton , 28 , and curtis martin , 24 , had twins kendall and baylee . girls are non-identical , meaning they do not share the same set of dna . this means their physical characteristics and genders can vary . however , having such contrasting skin tones is still extremely rare .\na house in dungog , in nsw 's hunter valley , is filmed being swept away by floodwater . the footage , taken on a camera phone , shows the house narrowly avoiding power lines as it travels through the wild water . a local dungog woman described how she had minutes to evacuate from the property . in another incident , a second house was seen floating on a nearby lake .\nporto are unbeaten in the champions league so far this season . portuguese side beat bayern munich 3-1 in quarter-final first leg last week . julen lopetegui leading side for return leg at allianz arena on tuesday . ricardo quaresma was the star man during victory at the dragao stadium . lopetegui has changed style but club still sell players for big profit . porto are able to balance books and snap up young south american talent .\nrafael nadal was bidding for a ninth barcelona open title this year . but the world no 4 lost to italian fabio fognini 6-4 , 7-6 -lrb- 8-6 -rrb- in third round . nadal has won just one title since winning his 10th french open last june . the spaniard admitted it was a ` very sad day ' following the defeat .\nnew england patriots no 81 is starting whole life term for murder of odin lloyd - and will now go by his prison number . he is being moved from the state prison at cedar junction to the souza-baranowski maximum security facility today where he 's on suicide watch . man who knew hernandez well reveals how he smoked marijuana mixed with ` angel dust ' - the dangerous illegal substance pcp . addictive substance is known to lead to violent mood swings . hernandez is still facing another double murder trial .\nthe knightsbridge flat has been put on the market for a fraction of the price of neighbouring homes , at # 575,000 . it has only three years left on lease putting cost at # 15,000 a month - going rate for renting a three-bed in the area . property experts said if a buyer decides to extend the lease , the property could be worth upwards of # 6 million . but renewal would not come cheap with the cost for a new 90-year lease estimated at between # 3.35 and # 4.5 million .\nengland are 373 for six at stumps on day three , 74 runs ahead of the west indies first innings of 299 . alastair cook -lrb- 76 -rrb- and jonathan trott -lrb- 59 -rrb- put on an opening stand of 125 but could n't reach their centuries . no 5 joe root was outstanding reaching a century at a strike rate of 80 and was 118 not out at stumps . root 's half-century gave him an england record-equalling sixth test score of 50 or more - no-one has seven . gary ballance was out softly for 77 after ian bell played on for one . moeen ali ran himself out for a duck .\nthe number of new hiv infections in indiana has grown to 142 cases . some families in isolated communities use illegal drugs and share needles as a `` community activity , '' a health official says . public health officials urge vigilance to stop the outbreak from gaining ground .\n` we 're here to see the queen , ' one protester told daily mail online outside a rural community college in monticello , iowa . he shouted ` give the saudi money back ! ' as clinton arrived at kirkwood community college -- referring to millions her family foundation accepted . hillary clinton will visit the school on tuesday in the first semi-public event of her presidential campaign . her armored campaign van , nicknamed ` scooby , ' has finally been photographed in the wilds of the american midwest after a 1,000-mile trip . it arrived at her campaign stop tailed by a black humvee . reporters snapped pics of the former secretary of state at a coffee shop in le claire , iowa .\nloushanna and shawn craig were on three-day holiday on island in march . she was marooned in tenerife for two weeks after biometric id card stolen . the 37-year-old was given documentation to prove she was allowed back . but she claims she was stopped at airport check-in and police were called . mrs craig , who has a jamaican passport , has placed blame with ryainair .\nrecycled rubber merfin designed by australian freediver kazzie mahina . mahina , 37 , spent years designing the first prototype of the monofin . the fin has an easy-release ankle strap and comes in adult and kid sizes . uk stockist says the product has been ` very popular ' in recent months .\nrow erupted after mysterious geometric designs discovered under carpet . some hope they may lead to chamber where ark of the covenant is hidden . but new flooring laid before israeli scholars were able to document pattern . but waqf , the authority in charge of dome of the rock , reject accusations .\nkerry ` is delusional ' if he expected to claim the iranians agreed to the phased lifting of sanctions when they did n't and get away with it , he said . senate armed services chair john mccain was responding to iran saying there would be no formal pact unless sanctions relief is ` instant ' . ' i think john kerry tried to come back and sell a bill of goods , hoping maybe that the iranians would n't say much about it , ' gop lawmaker said . ` at best , iran agreed to disagree with the united states on key nuclear weapons-related issues and to continue talks , ' another gop senator said . another said ` the ayatollah and president obama appear to be talking about two separate agreements ... unfortunately , i ca n't say i 'm surprised '\nresearchers tested effects of caffeine on patients taking tamoxifen . combination of prescription drug and coffee make ` cancer-killing cocktail ' caffeine makes breast cancer cells divide less quickly and die more often .\nswansea city beat hull city 2-1 in the premier league at the liberty stadium on saturday . ki sung-yueng fired the hosts into the lead after 18 minutes when he turned home jonjo shelvey 's parried effort . bafetimbi gomis doubled the lead when he fired a volley into the roof of the net eight minutes before half-time . paul mcshane got a goal back for the visitors just five minutes after the restart , tapping in from close range . david meyley was given a straight red card three minutes after the goal when he lunged in on kyle naughton . gomis made it 3-1 in injury time to grab his second of the match and restore the host 's two-goal advantage .\nrory mcilroy carded a one-under-par 71 in the first round at augusta . the world no 1 recovered from early setback with birdies at 13th and 15th . he has recorded a score of 77 or worse on five occasions at augusta . click here for all the latest news from the masters 2015 .\nsubjects taking acetaminophen reacted less strongly to both pleasant and unpleasant photos . each week , 52 million americans use the pain reliever . unknown whether other pain products produce the same effect .\ndavid nellist was caught on cctv attacking his dog coco in a restaurant . he has been sentenced to two months in prison , suspended for 18 months . nellist , of keswick , cumbria banned from keeping animals for five years . the 38-year-old was caught after a neighbour heard the pet ` screaming '\njames houlder and girlfriend vicki hood stayed at sonesta beach resort in sharm el sheikh . but within hours , both fell ill with sickness and diarrhoea at five-star venue . nine months on , james diagnosed with ibs that has blighted his life . after raising issue with first choice , he was offered ' # 50 goodwill voucher '\n. an earlier version of this article wrongly referred to erith and thamesmead 's conservative parliamentary candidate mrs anna firth posting pictures of litter in bromley to shame her political opponent . we are happy to clarify that the photos were in fact taken in conservative-controlled bexley and there was no intention to imply that mrs firth was unaware of the constituency boundaries . .\nmass fight broke out around 10pm friday at resorts world casino . patrons at establishment next to jfk airport fought at bar opening . video of the encounter - where patrons threw chairs - was tweeted . police said four people were arrested and will be charged over fight .\npremier league clubs have been outperformed by european rivals . bundesliga set to move above premier league next season . serie a could also overtake england , if italian successes continue . napoli , juventus and fiorentina are still in contention for european glory . all english clubs have been eliminated already this season . one more bad season would see england lose a champions league spot .\nsome complained about the film 's depiction of the iraq war . a petition asked the university not to show the bradley cooper film .\nflight 448 had just taken off monday when the pilot heard banging from beneath . la-bound plane was forced to return to seattle for emergency landing . worker dialed 911 asking dispatcher to call someone and stop the plane . he later emerged calm but was taken to hospital as a precaution . cargo hold was pressurized and temperature controlled , so the man was not in danger .\nukip said schoolchildren brainwashed with pro-eu colouring-in books . party said teens exposed to eu ` propaganda ' in a bid to ` catch them young ' it said it was ` strongly against ' lowering the voting age as under-18s .\nalec stewart would like to hear more about the england team vacancy . former england wicketkeeper is currently director of cricket at surrey . stewart says he has had no discussions with the ecb over the role . paul downton was sacked as managing director of england team .\njimmy anderson moved to within one of sir ian botham 's record . the 32-year-old 's wife and daughter were watching in antigua . botham tempted to bet on anderson claiming record on wednesday . moeen ali called up to england squad for second and third tests . jermaine blackwood scores first test ton , and frustrates ben stokes .\ncle ` bone ' sloan , 45 , was one of two men hit by knight 's pickup truck . terry carter , 55 , was killed in alleged hit-and-run outside burger stand . knight is accused of murdering carter , and attempting to murder sloan . preliminary hearing in los angeles is deciding whether knight can be tried . sloan today claimed he could not remember the details of the encounter . would not identify knight , said he was forced to courtroom by subpoena .\nivan novoseltsev proposed after his side 's win against torpedo moscow . katerina keyru , who plays basketball for a living , said yes on the pitch . novoseltsev 's fc rostov team-mates were on hand to congratulate him . fc rostov have won four games in a row to move up to 10th in the table .\nelizabeth ` elle ' edmunds was charged with two counts of fraud . the 31-year-old mother will appear at belmont local court in june . the lake macquarie woman faked having stage six ovarian cancer . she said she believed her mind tricked her into thinking she had illness . she also said that her former partner forced her to fake the disease . police inquiries are continuing and investigators have appealed for anyone with information to come forward .\nmorrissey wrote a letter to australian retailer the just group . they own just jeans , dotti , portmans , jay jays , and peter alexander . the group have so far refused to stop selling controversial angora wool . singer to ask audience at sydney concert to sign petition against company . morrissey has also banned the sale of meat products at opera house . myer , david jones , sportsgirl among those who 've agreed to angora ban .\nthe direct marketing commission probing b2c data and data bubble . investigating whether they breached rules on the sale of private data . chief commissioner described allegations made about firms as ` serious ' .\nuniversity of montana student studied recoveries after a workout . gave participants either fast food or supplement meals during recovery . found there was no difference in performance between the two groups . and levels of glycogen in fast food group were actually slightly higher .\nben stokes ' dad gerard tweets his approval of marlon samuels ' salute . joe root moves to 2,000 test runs , faster than sachin tendulkar . stuart broad wastes another review , branded the worst of his career .\nisis is using past western transgressions in iraq to justify its brutality . lack of accountability following 2003 invasion paved way for abuse -- and for sectarian tensions .\nspaniard reflects on his mesmeric run and pass to set up neymar 's opener . iniesta admits room for improvement after his fourth assist in europe . barcelona camp in bouyant mood heading into decisive stretch of season . league leaders face espanyol at the estadi cornella-el prat this saturday . read : iniesta rolls back the years with vintage performance against psg .\nbournemouth are now second in the championship following their draw . kieran lee fires wednesday into the lead with a 36th minute header . yann kermorgant equalised with 21 minutes remaining . matt ritchie looked to have sealed the win for the cherries late on . but chris maguire had the final say with his last-ditch penalty strike .\ndrug is made from same version of stimulant used to produce bath salts . flakka can be injected , snorted , smoked , or swallowed . it causes euphoria , hallucinations , psychosis and superhuman strength . high lasts for couple hours and users have strong desire to re-use . more than 670 flakka occurrences in florida in 2014 , up from 85 in 2012 .\ncaptain lee mcculloch was booed by rangers supporters last weekend . mcculloch made an error that led to raith rovers hitting the back of the net . rangers play league leaders hearts in the scottish championship saturday .\ngaby tillero and greg ensslen bought the home after a church claimed they wanted to demolish it and expand their lot . the home was dismantled and stored for a year before the couple found a lot across new orleans that would fit the home 's dimensions . tillero and her husband ensslen now live in the home with their two sons , six-year-old santiago and nine-year-old javier , as well as tillero 's mother , olga tillero . the couple stayed true to the cottage 's floor plan , while converting it from a duplex to a single-family home . they used salvaged and recycled materials to decorate the interior and exterior of the home .\nraheem sterling wants to be known as ' a kid that loves to play football ' the england star has rejected a new deal and put off talks until the summer . sterling was attempting to call the shots during interview with the bbc . 20-year-old has come a long way since being lectured by rodgers in tv documentary in the summer of 2012 . sterling has two years left to run on his existing # 35,000-a-week contract . he says he would have signed a new deal at this point last season . sterling admits it is ` quite flattering ' to be linked with a move to arsenal . liverpool are infuriated that sterling gave interview in the first place . some feel he and his representatives are pushing for summer departure . sterling : what he said about contract talks ... and what he meant . read : sportsmail answers five questions on sterling 's future . click here for latest liverpool news and reaction to sterling 's interview .\nsubstitute ishmael miller scores 89th-minute equaliser for huddersfield . sergiu bus had put sheffield wednesday ahead three minutes earlier .\nfloyd mayweather will fight manny pacquiao on may 2 in las vegas . the fight will be the biggest event in the history of boxing . mayweather took time out of training to pose for picture with gladys knight . pacquiao arrives in las vegas ahead of showdown with mayweather . click here for all the latest manny pacquiao and floyd mayweather news .\noliur rahman took over from deposed mayor lutfur rahman yesterday . new tower hamlets first leader said borough still had deep-rooted racism . this is despite a judge 's ruling which said group ` played the race card ' rahman 's latest comments derided as ` ludicrous ' by local tory group .\nthe alarming footage was captured in yatala on the gold coast . officers can be seen rescuing victims from inside a burning vehicle . one passenger suffered a broken neck and the others had minor injuries . friends of the victims were trying to fight officers at the scene . a 20-year-old man has been charged with a medley of offences .\nlady sasima srivikorn and sir john madejski are co-owners of reading . they are preparing to take the club to wembley on saturday night ; reading 's first fa cup semi-final since 1927 . lady sasima is something of an eccentric - she is a singer and composer who , in september , had ' 100 bullets from an m16 ' shot at her house . the pair have a long-term ambition to take reading to the premier league .\nfiona fought off an intruder after finding him standing over her daughter . she was alerted to the break in after she heard him cut the fly screen . fiona pushed the man down the hallway and out her front door . she bashed her head on the doorway , leaving her with a black eye . police say there have been a spike in break in 's around como . the unidentified man is still at large .\nkevin spacey among celebrities who 've paid to get the domains removed . youtube , bing , visa , bank of america and yahoo among others targeted . us regulator will see if the actions of vox populi registry ltd. were illegal . owners recommended to resell ' . sucks ' domains for around $ 2,499 a year .\ntransavia france has included voucher codes with the branded products . customers can enter the codes online to receive a discounted flight . the codes can be redeemed for flights to barcelona , lisbon and dublin . products are being sold at shops , a cinema and in two vending machines . passengers still have to pay a booking fee and checked baggage fees .\nthe 42-year-old mother-of-two tweeted a picture of her $ 29 grocery shop , which included eggs , vegetables , brown rice and black beans . gwyneth is taking part in the new york city food bank challenge , which aims to raise awareness and funds for the city 's food banks . the city 's weekly food stamp allowance is just $ 29 per person per week . gwyneth 's healthy food choices have already come under fire from critics who claim they contain nowhere near enough calories for a whole week .\nformer arsenal attacker thierry henry criticised javier hernandez . hernandez scored late to earn real madrid champions league victory . but , henry feels the mexican owes all the credit to cristiano ronaldo . ronaldo provided the assist for the on-loan striker to tap home late on . click here for our lowdown on the uefa champions league final four .\nfamilies of hassan munshi and talha asmal , both 17 , released statement . teenagers had ` promising futures as apprentice and student respectively ' claimed it 's ` nearly impossible to know your children have been groomed ' hassan is ` relative of hammaad munshi who joined islamic state aged 15 ' .\nzella jackson price of olivette , missiouri , gave birth to her baby 49 years ago . after she was told her baby had died , the baby , now named melanie gilmore , was adopted to another family for an unknown reason . price , 76 , and gilmore , 49 , confirmed they were related through a dna test . they both appear to be overwhelmed with emotion during reunion . soon they will begin an investigation into the hospital to see what happened .\nsheila secker , 78 , died after she was unable to ring son after a fall . she had n't used her pay-as-you-go phone so it had been disconnected . vodafone had cut off her number , but ` glitch ' still allowed top-ups .\nuniversity of alberta research found why knuckles really crack . study found cracking is caused by rapid formation of gas-filled cavity . research also discovered a knuckle cracks in less than 310 milliseconds . a study co-author was used as the guinea pig for the experiment . rapid magnetic resonance imaging -lrb- mri -rrb- was used to capture ` the bones and fluids surrounding them , and critically , the formation of the air cavity ' the researchers humorously dubbed their work the ` pull my finger study '\nstar formerly known as frank is one of the party 's most famous backers . said ukip supporters should vote tory to keep miliband and sturgeon out . warned ukip has not done enough to ` weed out the bad ' party members .\nmichelle obama strutted her stuff on the tv show thursday night . the 51-year-old pulled embarrassing ` mom moves ' alongside fallon . she was promoting her ` let 's move ! ' initiative . obama will perform a dance routine during annual easter egg roll on april 5 . tradition dates back to 1878 and sees local children visit white house .\nice melt has revealed the wrecks of vessels including the james mcbride -lrb- 1857 -rrb- and the rising sun -lrb- 1917 -rrb- beach erosion , waves , wind and variable water levels are said to be behind wrecks exposure . eerie images were taken from a helicopter by the coast guard from traverse city during routine patrol .\nbryan stow was beaten outside the la dodgers stadium in march 2011 . he was kept in a medically induced coma for several months . he was later awarded $ 18 million damages against the la dodgers . two men were jailed for eight and four years for the brutal attack .\nmohammaed dahbi barked orders at kassie thornton and christy spitzer . told pair he would throw them out of new york cab if they continued . they accused him of discriminating against them because they were gay . yellowcab driver told them not to ` make me out to be an a ** hole ' .\nben flower was suspended for six month after grand final red card . prop flower punched lance hohaia on the ground in horrifying incident . he returns for wigan against warrington on thursday night . coach shaun wane said the welsh international is ready to ` rip in ' flower said on monday that he regrets the brutal attack every day .\nthousands of accounts vanished from the social network last week . twitter said it had received numerous reports about terror-promoting users . decided to suspend 10,000 accounts for making threats of violence . suspensions were almost certainly linked to a campaign by ` hacktavist ' collective anonymous targeting online jihadis .\nventus x mouse has a non-slip coating and honeycomb grill . features are designed to keep sweaty gamers ' hands cool under pressure . they mean that the mouse is easier to hold and sweat can evaporate easily . mouse is intended for serious gamers and is on sale for $ 50 -lrb- # 34 -rrb-\ndriver michael young , 56 , thought passenger was planning to ` do a runner ' so he decided to take passenger kristopher hicks him back to the taxi rank . mr hicks jumped out , sustaining head injuries , and now needs 24-hour care . judge rules mr hicks was unlawfully imprisoned and will now get damages .\nemployment surges as the number in work hits a record 31million . jobless total falls by 76,000 to 1.84 million , the lowest for seven years . cameron warns a labour government would put 1million jobs at risk .\nbundesliga top goalscorer alexander meier is out for the season . the eintracht frankfurt striker requires knee surgery . meier has scored 19 league goals this season , ahead of bayern munich duo arjen robben -lrb- 17 -rrb- and robert lewandowski -lrb- 16 -rrb- but robben is also injured which could mean lewandowski securing the accolade for the second consecutive season .\nnorthampton have ruled out winger george north for the game against clermont auvergne on saturday . he will see a neurosurgeon following a third serious head injury in two months . the 22-year-old was recently knocked unconscious when struck by the knee of wasps no 8 nathan hughes . jim malinder , nothampton 's director of rugby , wants the club to act in the best interests of north 's long-term health .\nmarvel 's long-awaited show `` daredevil '' began streaming early friday . binge-watchers are already giving the series high marks .\nfloyd mayweather and manny pacquiao meet on may 2 in las vegas . tickets for the weigh-in went on sale on friday at 3pm . the mgm resorts box office was overwhelmed with calls for tickets . between 500 and 1000 tickets for the may 2 mega-fight were snapped up in seconds when they went on sale on thursday night . one ticket later appeared on stubhub priced at $ 128,705 -lrb- # 85,508 -rrb-\nmick tabone and gregory the crocodile shared a 20 year long friendship . mr tabone captured the croc in 1989 after he caught it stealing cattle . gregory lived at johnstone river crocodile farm in far-north queensland . each day mr tabone would sit on the croc 's back while chatting to him .\nworld no 1 mark selby defeated gary wilson 10-2 on sunday . selby earned his sixth ranking title and # 85,000 in prize money . the leicester cueman overcame a neck issue to win the tournament .\npredicted life spans of women aged 65 , 75 , 85 and 95 fell in 2012 . also found increasing life expectancy for men in 60s and 70s had stalled . life expectancy for english women already among worst in west europe .\nandrea mcveigh , 44 , was knocked over from behind by speeding cyclist . left in a pool of her blood after crashing face-first into the pavement . she will be scarred for life after suffering two long gashes to forehead . police launch hunt for the mystery rider who did not stop at scene .\nthe american pharmacists association passed a new policy banning members from participating in lethal injections . pharmacists say role as health care providers conflicts with participation in lethal injection . the pharmacy association first adopted a policy against lethal injection in 1985 .\ngood morning britain launched #selfieesteem today . study reveals women take an average of six selfies before they 're happy . nancy dell ` olio , piers morgan and lydia rose bright also took part .\njohn carver 's newcastle united have lost their last five matches . newcastle are nine points above 18th-placed queens park rangers . carver has warned his side that they must start to pick up points .\nmore than 200 seals were legally killed off the scottish coast last year . fishermen and farmers insist the animals are destroying salmon stocks . but campaigners have called for a more humane method of keeping seal away from farmed fish . activists say consumers should put pressure on supermarkets and fishmongers when they are buying scottish salmon .\nthe brothers are believed to have fallen in the water by accident . police searched water from 9.45 am to 11.45 am before finding them . they were flown to yuma hospital where they were pronounced dead .\nangus hawley 's brother said his late sibling ` did n't have heart problems ' he is reported to have had a suspected heart attack in new york . angus was a father of four children - lucia , hamish , james and sybella . he had all four with nicole kidman 's sister antonia before their 2007 split . both 44-year-old antonia and angus , 46 , remarried following their divorce . angus ' death comes seven months after dr. antony kidman 's death . nicole and antonia 's father also died of a heart attack in singapore .\nliverpool face blackburn in an fa cup quarter-final replay on wednesday . the fa cup final could be steven gerrard 's last game for the club . robbie fowler insists liverpool 's players must not focus on gerrard . raheem sterling should remain at anfield , according to fowler .\ndanny lennon was named interim scotland under 21 manager last month . lennon won his only game in charge , a 2-1 win against hungary . sfa announced lennon 's departure in a statement on tuesday . former st mirren boss lennon looks set to take over at alloa athletic .\nmackenzi miller struck and killed trinity bachmann with her car on february 28 in apopka , florida . trinity was sitting in the street while having an argument with her mother . trinity 's mother , janice pedroza , 36 , was also injured in the crash . police said miller reeked of alcohol , had glassy , bloodshot eyes and had an open bottle of mike 's hard lemonade in the car . her blood alcohol content levels were 0.114 and 0.110 , police said . miller faces dui manslaughter and dui while causing injuries charges .\nabi gordon-cody creates gruesome injuries using special effects make-up . her gory creations have earned her almost 3,000 followers on instagram . 26-year-old from droitwich watches horror films for inspiration .\nbolton left-back marc tierney is set to hang up his boots . the 29-year-old has been forced into early retirement after failing to recover from a fractured ankle suffered against yeovil in september 2013 . he underwent a series of operations and received specialist advice .\nsharon freundel gave a lecture on dealing with traumatic incidents at a jewish school in maryland on march 22 . she is the wife of barry freundel , longtime rabbi at washington , dc 's kesher israel congregation , who was arrested in october . freundel was caught filming women changing in the congregation 's ritual bathroom . he pleaded guilty to 52 charges of voyeurism in february and is set to be sentenced on may 15 .\nsamsung previously relied on other firms to make its chips . firm now using its own processor , modem and power supply chips .\njoel burger and ashley king have been engaged since october . their engagement photo with a burger king sign attracted , and the company offered to pay for their wedding .\nnatalie swindell , 26 , eats four bowls of rice krispies a day and little else . despite the boring diet , nutritionists say her eating habits are balanced . bank worker claims she has never eaten anything else since the age of two .\nhollywood reporter released their annual stylist list . three stylists to australian actors naomi watts , cate blanchett and margot robbie feature . elizabeth stewart is no. 6 , cristina ehrlich no. 8 , and jeanann williams no. 9 .\ngerman police say they think they `` have thwarted an islamist attack , '' interior minister for hesse state says . german terrorism researcher : couple accused of planning bomb attack on bicycle race near frankfurt .\nreanne evans says qualifying for the world championships is a must . the 29-year-old needs to beat former champion ken doherty to qualify . evans has won 10 women 's world titles during her successful career . read : steve davis plays down crucible chances as he bids to qualify .\nliam plunkett enjoyed a return to the england test fold last year . he wants to continue his resurgence against the west indies . he has recovered from an ankle injury that hampered his pre-season .\nfly-tippers dumped 40 tonnes of waste in walsham-le-willows , suffolk . police believe culprits used three tractors and trailers to transport rubbish . an officer described it as the worst case he has seen in almost 30 years .\ndidier drogba and five of his chelsea team-mates take part in bin challenge . eden hazard , john terry , thibaut courtois and john obi mikel all involved . drogba mocked the tag of ` boring chelsea ' that has been aimed at his side . chelsea have been training at st george 's park ahead of game at leicester .\ntells rolling stone in revealing interview how she was never a fan of her father 's band , preferring oasis . speaking about the documentary film she executive produced montage of heck she says her dad ` never wanted to be the voice of a generation ' suggests he killed himself because ` the world demanded he sacrifice every bit of himself to his art ' says his former band mates are freaked out by how much she looks and sounds like him . kurt cobain was found shot dead in his home exactly 21 years ago on wednesday , aged 27 .\nrump , fillet and t-bone most popular cuts of meat when dining out . mince and burgers most used when cooking in our own kitchens . young people avoid unusual cuts as they think it will be too expensive .\nviv nicholson , 79 , won more than # 152,000 in 1961 with her husband keith . she famously promised to ` spend , spend , spend ' after big win on the pools . they splurged the cash on expensive cars , designer clothes and holidays . mrs nicholson has passed away at home , five years after dementia onset .\nthe light dragoons have been based at robertson barracks , swanton morley , for the past 15 years . more than 4,000 people , including school children , lined the streets to say farewell to the reconnaissance unit . the regiment are packing up and moving some 200 miles to their new home in catterick , north yorkshire . their commanding officer said it would be ' a strain to leave ' after putting down ` deep roots ' in norfolk .\npaige vanzant won every round , recording a win by 30-27 , 30-26 and 30-26 . the 21-year-old was having just her second fight in the ufc . vanzant has been tipped as one of the next stars of the promotion . she said it feels like her birthday whenever she walks out into the cage .\nlandon and lorie carnie were on first flight of operation babylift in 1975 . vietnamese orphans and children were evacuated before the fall of saigon . plane crashed in one of the worst humanitarian disasters of vietnam war . 17-month-old twins thought to have died with 80 other babies and children . taken to adoptive parents in u.s. , where they grew up in washington state .\ndiscovered in the stasi archive in berlin by photographer arwed messmer . show how secret police forced people trying to escape to re-enact method . include pictures of primitive floats , children concealed in cars and tunnels . secret police used the pictures for training and for use at trials as evidence . have now been compiled in a book called reenactment mfs . reenactment mfs by arwed messmer , is published by hatje cantz .\nsheila elkan lives in house that was leadbetters ' home in the good life . great-grandmother has resided at house in north-west london since 1986 . front and rear garden scenes filmed at her three-bedroom detached home . margo leadbetter was made famous by penelope keith in 1970s tv series .\nmtv movie awards host amy schumer had some hits and misses during the show . rebel wilson tossed in a censor-worthy joke .\njuventus beat second-placed lazio 2-0 to step closer to the scudetto . carlos tevez netted the first and celebrated by dancing like a chicken . barcelona beat valencia with goals from luis suarez and lionel messi .\nmatej vydra converts ikechi anya cross after 26 mintues . adlene guadeioura doubles hornets advantage in second half . millwall remain seven points from safety , and are second from bottom .\nactivists installed snowden 's bust on top of century-old prison ship martyrs monument at fort greene park before dawn monday . it took them six months to create the 4-foot-high , 100-pound bust sculpted out of plaster-like material and made to look like bronze . bust was accompanied by block letters spelling out ` snowden ' . less than 10 hours after installation , parks workers swooped in and took down the statue . the unsanctioned bust appeared in the park just hours after hbo aired john oliver 's interview with edward snowden .\nfascinating photographs show black boxes salvaged from the wreckage of plane and helicopter crashes . jeffrey milstein took the pictures to shed light on what happens to flight recorders after tragic accidents . many of them are dented , mangled and even damaged by fire but they could still be used by crash investigators .\ndavid templeton spoke out about his former managers last week . stuart mccall admits his winger ` made an error ' with his comments . lee mcculloch 's red card against hearts could cost him his starting place .\ncomments were made by sean raymond , an astrophysicist in france . he says internal heat of rogue planets could allow liquid water to form . writing in aeon , he also says a thick atmosphere may help life develop . astronomers have found 50 of these rogue planets in the past 15 years .\nrussian artist marina yamkovskaia , 39 , specializes in creating life-like bird dolls and says she ca n't keep up with orders . to make her dolls she often uses real furs , such as mink and fox , which she removes from old hats , collars or coats .\n65-year-old david atherton shocked to discover the black and white reptile . he placed it inside a plastic food recycling box while waiting for the police . his sister is so scared of snakes she had ` heart problems ' when she heard . influx of snakes is common in april when weather is warmer , rspca says .\ncricket commentator richie benaud has died overnight aged 84 . he had been receiving radiation treatment for skin cancer since november . former australian captain died peacefully in his sleep at a sydney hospice . benaud had witnessed - as both a player and commentator - more than 500 test matches throughout his career . tributes flowed in on friday morning for the voice of australian cricket . prime minister tony abbott also offered his family a state funeral .\njonathan trott returned to england 's set-up after his stress-related illness . sport psychiatrist dr steve peters helped the batsman with his problems . peters is delighted to see the ` incredible ' trott return for england . click here for all the latest cricket news .\nprime minister opts for cutlery as he eats bbq food on a visit to dorset . dining etiquette designed to avoid ed miliband 's bacon sandwich disaster . tory leader uses interview to admit he had a ` privileged upbringing ' . insists he will not change the way he speaks or behaves to win votes .\npoliticians have posed for as many selfies as possible on campaign trail . pm stopped for selfies during visit to alnwick , northumberland , yesterday . farage and clegg also set aside time for ubiquitous photos while canvassing in maidstone , kent , and south ockenden , essex . tory mps told to pose with voters to increase exposure on social media .\nthe european grand prix will be staged in azerbaijan next year . former soviet republic has been criticised for poor human rights record . bernie ecclestone claims f1 has conducted its due diligence .\nbrooklyn nets beat the portland trail blazers 106-96 in new york . brook lopez scored 32 points for the nets as they moved into seventh . trail blazers were without lamarcus aldridge and a number of others .\nus comedian jimmy kimmel sang lalaban ako in tagalog on his show . pacquiao thanked kimmel for ` trying to sing my song ' in a twitter video . jimmy kimmel live was the first us talk show the filipino ever went on . pacquiao fights floyd mayweather jr in las vegas , nevada , on may 2 .\nisis and other rebel groups control most of the refugee camp , activists say . `` never has the hour been more desperate '' in the camp , u.n. says . '' `` reports of kidnappings , beheadings and mass killings , '' plo official says .\napril morris of south carolina , thought she 'd never see her beloved pit bull , nina louise , again after she went astray in december 2013 . but this past saturday she could n't believe her eyes when she saw footage of the malnourished pup 's heartbreaking rescue on the nightly news . morris called the local humane society to claim the pit bull and identified her by detailing two white spots in the fur behind her head . she collected the dog and her ten puppies .\nlocals were left wondering who 'd done what after a mysterious message . the apology was splashed across brisbane 's cbd on monday afternoon . it prompted questions and theories on twitter about who had done what . skywriter rob vance said the man did n't appear to be frantically lovelorn . the service usually charges $ 3990 for up to 10 letters of characters . the author and recipient of monday 's message remain a mystery .\nthe 130-page songbook contains 70 songs with titles including pubic hair and the kotex song as well as bestiality . one of them , the s&m man , is set to tune of the candy man and graphically describes sexually mutilating women . revealed in lawsuit filing by four sexual-assault victims who want to stop the practice of sexual assault allegations within the military being handled entirely within the command structure .\ndzhokhar tsarnaev has been convicted of the boston marathon bombing . jury found tsarnaev guilty on wednesday over terror attack in 2013 . he faces being sentenced to death or life in prison after attack killed three .\nliverpool and manchester united set to battle for psv ace memphis depay . holland international depay has scored 23 goals for the club this season . liverpool hope lure of first-team action will convince him to choose them . read : liverpool set for summer overhaul with ten kop stars on way out . read : the areas liverpool must address if they want to avoid mediocrity .\nduncan hodgetts fell from window at executive plaza , near manhattan 's rockefeller center . mr hodgetts , from birmingham , west midlands , pronounced dead at scene . he was found on third floor balcony of neighbouring michelangelo hotel . the 25-year-old tax adviser worked for accountancy firm ernst and young .\na local bike shop owner 's dog was snatched by a crocodile . the crocodile was swimming through puerto vallarta marina , in mexico . new zealander tim weston was on holiday and saw the bizarre sight . a video of the dog in the croc 's jaws has been viewed half a million times .\nlocal man ran onto catwalk as designer kym ellery took her bow . he was seen holding hands over his ears and shouting at security guard . neighbour overheard saying organisers had no respect for community . ballet performance on the runway kicked off first show of mbfwa .\nresearchers used seismic readings to map what is beneath yellowstone . partly-molten rock reservoir measures 11,035 cubic miles -lrb- 46,000 cubic km -rrb- it sits 12 to 28 miles -lrb- 19 to 45km -rrb- beneath the national park 's supervolcano . chamber is four times bigger than the magma chamber above it - but study said it is not posing any additional threat than it was before .\nflorian thauvin has been left out of marseille 's squad with metz . marseille are pushing for a # 15m sale and tottenham are interested . the winger has also been watched by chelsea and la liga side valencia .\nkevin carr , 34 , ran equivalent of a marathon a day for nearly two years . carried all of his equipment in a buggy which he pushed along as he ran . had to use flares to scare bear away after he was attacked in wilderness . lost three stone during epic voyage which used up 16 pairs of shoes .\nthe husky was injured and diseased when found by rspca inspectors . the dog has an injury to his right rear leg , possibly from being hit by a car . he is also extremely underweight and has secondary skin infections . the dog is being fed a special diet to help him gain weight . the husky has been named hero and is now being treated by rspca vets .\nmen believed to be masterminds of plot ` scouted ' police stations to attack . alleged ringleader held under tough anti-terror laws without being charged . friend of the teenagers reveals the moment they ` became radicalised ' killing of numan haider last year said to be when they became extremist . also revealed teens were being recruited of top isis official , neil prakash . instagram account of sevdet besim give insight into the mind of the teen . he was one of five men arrested as part of anti-terror raids in melbourne . police allege the teenagers planned to target an anzac day ceremony .\nrailway company condemns the cyclists ` grave and irresponsible action ' they have made an official complaint to french prosecutors . john degenkolb , the race winner , crossed the barrier as it closed .\nkevin pietersen lined up with surrey team-mates for team photo . batsman was in a jovial mood as he joked with photographers at kia oval . pietersen could be in line for a return to england test team this summer . paul downton dismissal as managing director has opened door .\nandy hornby is in charge of the disgraced online company pharmacy 2u . it was revealed yesterday that service has been selling nhs patients ' data . many of which are the most vulnerable in society , who are ill or disabled . there are calls for him to step down and condemned for selling on details .\nfacinet keita , 31 , represented guinea in men 's +100 kg judo but lost bout . he claims he was told he 'd be murdered for disgracing country on return . after games he fled to bradford but was detained in an immigration centre . released to be deported but is refusing to leave in fear he 'd be killed .\ngianluigi buffon has picked his all-time champions league xi . 37-year-old goalkeeper has made 418 appearances for juventus . buffon opts for a number of former team-mates including paval nedved . italian decides to keep himself out of the team and selects iker casillas . click here to see ronaldinho 's champions league dream team .\ntwo underwater suites at atlantis , the palm boast floor-to-ceiling views directly into a massive aquarium . the views from the master bedrooms and bathrooms create the illusion of being under the sea . with a base price of just under # 5,500 -lrb- $ 8,200 -rrb- a night , each suite comes with 24-hour private butler service . butlers have received requests for everything from camel rides to a skydiver dressed as santa claus . the 1,500-room hotel is located on the palm jumeirah artificial island off the coast of dubai .\npilots reported 167 cases of toxic cabin fumes or smoke in four months . twelve cases led pilots to request priority landing , with mayday call in two . reignited debate on whether prolonged exposure to air in planes is safe . many former pilots and aircrew think they 've suffered long-term illnesses .\na new poll has asked brits and americans questions about the royal baby . both nationalities favour a girl and want her to be a good role model . uk 's top names are charlotte and alice , while us likes diana and elizabeth .\ngeorge gittoes was awarded the sydney peace prize on saturday . it was in recognition of his 45 years chronicling conflicts around the world . the australian artist did this through painting , photography and film . the 65-year-old will receive the prize at a november ceremony in sydney . gittoes says he does n't consider himself in the same league as previous winners such as desmond tutu and noam chomsky .\nalbino men and women continue to be hunted for their body parts in africa . malawi police have been ordered to shoot anyone caught attacking albinos . tanzania pm previously urged citizens to kill those caught with body parts . in nearby burundi , youngsters are being housed in special accommodation .\njaclyn methuen and ryan ranellone return home for the holidays after their honeymoon in puerto rico on tonight 's episode of the reality show . the 30-year-old , from union , new jersey , nearly left her new husband at the altar because she was n't physically attracted to him .\nissa hayatou , president of african football , said they will support sepp blatter in his bid to for fifth term as fifa president . all 54 african fifa members have agreed to back blatter in the election . luis figo , prince ali bin al-hussein and michael van pragg have chosen to stand against the 79-year-old and become the new president .\nin the first four months of the year , flight cancellations are up 20 % over last . number of delays have also increased 7 % up to 2,427 so far this year . according to euclaim , the worst offenders include : monarch and easyjet .\na truck driver has posted a passionate video online about anzac day . the geelong man was angry at lack of interest in the day from australians . his plea has been viewed over 800,000 times online . he tells australians to respect their ancestors and go to a memorial service .\nprincess elizabeth and margaret joined the crowds celebrating in london . queen 's cousin margaret rhodes was with the young royals celebrating . she says the queen remembers the night with ` great happiness ' . adventure has been recreated in new film a right royal night out .\nwarning : graphic content . sally lutkin had a rose and her grandchildren 's names tattooed on her leg . it soon went red and swelled up , leaving her in agony and unable to walk . had to undergo emergency surgery to stop infection spreading to the bone . was left with a gruesome black hole and a scar in the middle of her calf .\nthe life-saving trend saves lives by allowing donors to give kidneys to strangers in order for a loved one to receive a kidney . twenty-six hospitals were involved in the record-setting chain over the course of three months . wisconsin recipient mitzi neyens , 77 , became the final link in the chain march 26 .\njack russell and staffordshire bull terrier were trapped in house . believed they tried to wake her before eating parts of her remains . coroner heard likely cause of death was from accidental overdose . both dogs have now been destroyed on the advice of police .\nu.s. army sergeant dan urman just returned from being stationed in afghanistan since november . his parents were told to drop the first puck at arizona coyotes game on saturday because they had held season tickets for nearly 20 years . but dan then surprised the scottsdale couple as they stood at center ice . dan 's father ran and embraced him , causing the pair to fall to the ground .\nyaphank in long island was founded in part by the german american bund , a pro nazi group that flourished in the 1930s . they established camp siegfried in 1935 as a place for like-minded aryans to drink beer , hold military demonstrations and learn about eugenics . yaphank remains a town in long island , but gone are the roads once called adolf hitler street , goebbels and goering .\nthe cafe is named cats and people and is based in moscow . customers can bring their own cat or rent one while they are there . all of the cats were rescued and have been vaccinated and chipped . the cafe was influenced by cat-friendly establishments in far-eat asia .\nschool friends and prince william 's family will play crucial supporting role . emilia jardine-paterson and alicia fox-pitt have known her for years . carole will be a hands-on grandmother and pippa will be by her side .\nthe maps , compiled by us geological survey , include image mosaics and topographical views of the moon . they show features such as ` ocean of storms ' and mare orientale captured by lunar reconnaissance orbiter . to create the maps , researchers used more than 6.5 billion measurements collected between 2009 and 2013 .\nthe post and courier newspaper of charleston , south carolina was awarded the gold medal for public service . meanwhile , the new york times won three pulitzer prizes for international reporting and feature photography for its ebola coverage in west africa . the pulitzer prizes , awarded annually by columbia university recognize extraordinary work in u.s. journalism , literature , and drama . other winners included : the st. louis post-dispatch , the seattle times and the wall street journal for their contributions .\nukip leader lost for words as he met ivan loncsarevity at the plant in essex . struggled for small talk because mr loncsarevity speaks little english . farage insisted he did not want to deport migrants if britain left the eu .\ngeorge and amal submitted plans for a 12-seater cinema , as part of upgrades to their berkshire mansion . property expert says media rooms ` expected ' in homes over # 10million and can cost anything up to # 100,000 . clooneys will need to choose lighting , interior , seating and an av system for their cosy space .\nyaakov naumi 's fascinating photographs include a man lying in an open grave in a ritual to prolong his life . thirty-two-year-old naumi was raised in the israeli town of bnei brak and educated an ultra orthodox school . he admitted some of the rituals , when viewed with the eyes of an outsider , ` look strange ' .\nman , 47 , faces 145 child exploitation offences after targeting kids online . warwick man is accused of sexually abusing 28 children from three states . victims could be as far as wa , as well as in victoria , qld and nsw . he allegedly used social media to prey on children under the age of 16 . in some cases he allegedly arranged meetings to physically abuse them . he is also accused of forcing them to make child pornography .\nthe queen crossed her fingers as ring of truth galloped home . unfortunately , the two-year-old thoroughbred was pipped to the post . she had another runner later in the afternoon which managed third .\nnewcastle united have lost seven premier league games in a row . fans protested against mike ashley during the latest loss against swansea . ashley does not appear to be listening - he is not a football man . his biggest weapon is ability to make money - club has # 34m in the bank .\nthe matt hampson foundation held an event on wednesday night . a host of rugby stars attended the event for the former england u21 prop . christian wade did not attend and clearly infuriated veteran andy goode . goode tweeted : ` bad values from @christianwade3 agreeing to come to a charity event for @hambofoundation then saying he 's too tired '\nresearchers found those with pretty faces also have appealing voices . university of vienna photographed and recorded voices of 42 women . two separate groups of men rated their attractiveness for the study . those who rated highly for looks often scored well for sound .\nalastair cook and jonathan trott have both struggled with the bat . trott looked nervous while his movement was erratic . cook has n't scored an international century in two years .\nlucas matthysse won a majority decision against ruslan provodnikov . matthysse managed to open a cut early on , landing majority of punches . but he was on the ropes before regaining control in the fifth round . he outlined his plans to fight floyd mayweather or manny pacquiao .\noscar spoke up against defensive chelsea tactics in a team meeting . cristiano ronaldo made a similar point to jose mourinho at real madrid . brazilian midfielder oscar has not completed 90 minutes in last 11 games . mourinho criticised oscar publicly after stoke game . click here for all the latest chelsea news .\nusain bolt is in brazil as olympic anticipation begins to rise . the sprinter visited a favela and jogged with children training there . he spoke of his excitement at competing in rio for next year 's games .\nscott turner schofield has landed a role on the popular soap opera the bold and the beautiful . schofield is now the first transgender male to score a major role on a daytime television show . he will make his first appearance on may 8 . schofield is a speaker and author known for his one-person shows that address transgender issues .\na massachusetts jury is deliberating hernandez 's case . hernandez is charged with first-degree murder in the killing of odin lloyd .\njudge george o'toole told jurors in the boston marathon bombing case they are not to attend this year 's race or related events . the race takes place next monday , april 20 , and marks two years since dzhokhar tsarnaev and his brother planted two bombs at the finish line . this as the the sentencing phase of the trial , in which witnesses will again be called to the stand , is expected begin next week and to take four weeks . tsarnaev faces either life in prison or the death penalty .\nthree men were trapped inside container at wetherill park in sydney . authorities worked to free the men shortly after 11am on thursday . they had been unloading timber from container when it fell on them . two men died at the scene and the other was seriously injured .\ntottenham hotspur plan to build a new world-class 56,000-seat stadium . plan is for new stadium at white hart lane to open for 2018-19 season . archway sheet metal works , final opponent to move , is being demolished . part of the premises is being knocked down now and the rest will be done when archway find a new premises . tottenham 's new stadium is expected to cost around # 400million to build . click here for all the latest tottenham hotspur news .\neaster favourites , hot cross buns , used to be eaten all year round . queen elizabeth i tried to ban them but allowed them to be eaten at easter . now supermarkets are bringing out more varieties to tempt customers .\nandy found fame in made in chelsea and dated louise thompson . has his own line of surf-inspired city wear called jam industries . models spring/summer collection on beachy shoot .\nclint chadbourne , 71 , was headed home to portland when he got trapped . his wife bonnie and daughter kelly captured the whole thing on video . man did n't panic but became increasingly agitated at family 's laughter . the chadbournes were able to free clint and posted video on facebook .\nabdul hadi arwani was found shot dead in his car in wembley last week . leslie cooper , 36 , was today charged with his murder . imam was a fervent opponent of the assad regime in his native syria . second man , 61 , arrested tonight on suspicion of conspiracy to murder .\ninvestigation found nothing wrong with the plane despite the events . skywest inc , based in st. george , utah , said the jet landed safely and three passengers received medical attention before being released . the embraer 175 twin-jet , traveling from chicago to hartford , connecticut , carrying 75 passengers dropped from 38,000 ft to 10,000 ft in three minutes . the faa said initial information indicated the embraer e170 jet may have had a pressurization problem . three passengers passed out on board the flight and an additional 15 adults and two children were evaluated upon landing .\nduli hembrom wrote to the principal at milan mithi uchha vidyalaya . said parents refused to cancel the wedding and did not want to go ahead . child marriage restraint act specifies a girl must be 18 before she can wed. .\npeter alliss says anti-discrimination laws have caused membership fall . some clubs only allowed women at restricted times but for lower fares . alliss says law change has made fees equal and many women ca n't pay . equality act applies to clubs with mixed memberships . male-only golf clubs are still legal .\nthe curl-crested jay is known to be a good mimic of sound . bird makes the sound of running water and a distorted voice . before it produces a peculiar space invaders style tune . video was shot at the criadouro onca pintada breeding centre .\n# 3m film charts life of ukrainian-born soviet sniper lyudmila pavlichenko . aims to be a hit in both countries despite the ongoing crisis in ukraine . has been launched with glitzy gala premieres in both moscow and kiev . pavlichenko killed 309 nazis during battles in odessa and sevastopol .\nthe couple have been identified by family and friends as 48-year-old chris peppelman and his wife nicole , 43 . one of the couple 's sons called 911 just before 1pm on tuesday when he came home and found his parents dead . mr and mrs peppelmen were covered in cuts believed to have been caused by a chainsaw . so far , authorities will only classify mrs peppelman 's death as a homicide - suggesting that the incident could be a murder-suicide . friends say the couple was going though troubles , and that mrs peppelman had moved out of the home with their three boys .\npost on mortein 's facebook page linked to stephanie scott 's murder . picture of the brand 's mascot accompanied with #putyourdressout . slammed as a ` tasteless decision ' by some social media users . ms scott was brutally murdered just days before her wedding .\nexclusive : punters backing the tories to finish as largest party . twice as many bets are being placed on the tories to win over labour . one bookie alone has taken five bets for more than # 10,000 on the tories . general election set to be the first to break the # 100million betting barrier .\nbritish designer prunes and grafts growing trees directly into shape . he 's currently tending a field of 400 tables , chairs and lampshades . mainly using willow but also sycamore , ash , hazel and crab apple . first crop to be harvested next year with furniture ready for sale in 2017 .\nthree children killed in lake crash have been farewelled . their tiny white coffins were wheeled into the church in werribee . mother akon guode and father joseph tito manyang attended . five-year-old awel , who survived the crash was at the funeral . their mother was released from police custody . she crashed 4wd into a melbourne lake . children 's father says ms guode ` did n't feel herself ' as she was driving .\noskar groening accused of complicity in the murder of 300,000 jews . eva pusztai-fahidi says just seeing him in court is ' a kind of satisfaction ' another survivor angered fellow plaintiffs by saying he should n't be on trial . eva mozes kor , 81 , publicly embraced oskar groening in act of forgiveness .\nmanny pacquiao appeared on mario lopez 's extra show on wednesday . that morning his hill runs and bag work were posted on instagram . the pair , who are friends , also sang a duet of lionel ritchie hello . the filipino champion takes on floyd mayweather jr on may 2 .\nbirmingham had almost 15,000 call outs for rats , more than any other city . newcastle residents were most likely to report pest problem last year . the most pest-free place was southend , in essex , according to survey . british pest control association warns number of bugs at an all-time high .\ngoogle employees donated $ 1.6 million to president barack obama 's two white house bids . the company told daily mail online that it has spoken with the federal trade commission about antitrust concerns ; it was investigated in 2011 but later let off the hook . in the 2012 election , the company 's search algorithm customized results for obama but not for republican mitt romney . google execs who have left to work in the white house include obama 's chief technology officer . hillary clinton also poached her new tech chief from google this week .\nin traustein , germany , hundreds of horse riders dressed in traditional costume take place in an easter parade . the processional , known as the georgiritt , sees participants head to a local church where they will be blessed . in central europe , men douse women with buckets of water as part of their easter monday celebrations .\noregon police are looking for the mystery motorcyclist who saved two boys from a gunman , edward west . west allegedly confronted the boys after an argument and told them to ` get ready to die ' the rider swooped in and used his helmet to knock the gun from west 's hands , allowing the boys to escape unharmed .\ncolleen ann harris was found guilty of first-degree murder for shooting dead her third husband , bob harris , in their bedroom in 2013 . in 1985 , she shot her second husband , james batten , 46 , but was acquitted after claiming she acted in self defense and could n't remember killing him . the two killings took place in the same home , with the same type of gun , during marital problems and she said she had amnesia after both . prosecutors say she shot dead harris , from whom she was separated , after hearing him making a call to a love interest .\nthe mom saw her son on tv throwing rocks at police , cnn affiliate reports . police praise her actions .\nporto earn 3-1 champions league quarter-final first leg victory against bayern munich . ricardo quaresma gives porto early lead with third minute penalty after manuel neuer 's foul on jackson martinez . former chelsea man quaresma doubles home side 's lead following mistake from bayern defender dante . thiago alcantara pulls bundesliga champions back into the tie with 28th minute strike . colombian forward martinez puts porto into commanding 3-1 lead midway through second half .\nmanny pacquiao fights floyd mayweather in las vegas on may 2 . pacquiao shared a picture of a range of t-shirts marking the fight . the filipino boxer is looking to inflict mayweather 's first defeat upon him .\nviolence broke out in reynosa on friday after arrest of ` el gafe ' cartel leader jose tiburcio hernandez fuentes was captured on friday . three suspected assailants were killed and two state police injured . roads in the city were blocked with vehicles set on fire by gunmen . authorities said the situation was brought under control by the afternoon .\ndavid curry visited the wallow in blyth , northumberland with his family . he walked into the bar but was told to leave by a member of staff . the pub chain has apologised , but said branch has a no tracksuit policy . mr curry often wears sportswear because he runs 20 miles a day .\nstudy : exercising increases the amount of grey matter in the brain . it makes areas of the brain that control balance and co-ordination bigger . in the long term this could reduce the risk of falling or becoming immobile . previous studies show exercise can stave off alzheimer 's and diabetes .\ndestiny 's child reunited at the stellar gospel awards in las vegas last weekend . it aired on tv one last night . it was the first time beyoncé , kelly rowland and michelle williams performed together since super bowl in new orleans . but they did n't perform as destiny 's child . beyoncé 's dad mathew knowles has a 25 percent interest in the group but the singers do n't want him involved . the 2005 destiny fulfilled reunion tour grossed approximately $ 70.8 million in the us alone . knowles is the one obstacle to a sensational new reunion tour and album .\njacques burger prepares for battle with racing metro in quarter-final clash . at sarries the flanker is loved by his teammates every bit as much as he is loathed by opponents . saracens director of rugby mark mccall described burger as ` unique among rugby players ' . with a face left battered and bruised by years of punishment , burger is the man you want on your team .\nindianara carvalho posted photo of body painted with image of virgin mary . runner-up claudia alende has branded winner an ` attention-seeking sl * t ' catholic alende refused photoshoot ` out of respect for god and my family '\npaul johnson-yarosevich , 34 , has been charted with prohibited use of a computer .\ngregg manderson , 68 , of st paul , minnesota , has auditory hallucinations . he sought help for condition last may when lullaby twinkle , twinkle little star crept into his head . songs , which have included police sirens , last for about a month , but for years he has heard a bugle call that could be linked to his time in vietnam . manderson originally did n't know . theme song to the 1950s western show cheyenne also often in his mind .\nthe unlikely duo live at an animal rescue shelter in camp verde , arizona .\ntalks run until early thursday morning ; expected to resume hours later . iranian minister : other side must `` seize the moment , '' not try to pressure iran . u.s. official : `` it is still totally unclear when this might happen , if it happens at all ''\nbruce davis , 72 , was convicted in 1969 slayings of musician gary hinman and stuntman donald ` shorty ' shea . california gov. jerry brown rejected parole board 's decision to release davis citing brutality of the killings . davis claimed he 's changed in prison , earning a phd and becoming a minister .\nrobbie fowler picked dream team based on players from his era . former liverpool star named manchester united legend peter schmeichel . ex arsenal midfielder patrick vieira picked over steven gerrard . fowler named marco van basten as his strike partner in starting xi . gary neville was a late exclusion from fowler 's line-up .\npaul mason was 70st in 2010 but has lost two thirds of his body weight . the ex-postman , 54 , shed the pounds after gastric bypass surgery on nhs . mr mason , of suffolk , then found love online and is engaged to us woman . next week he will have 7st of excess skin removed free of charge by american doctor who saw his plight on tv .\nprime minister says conservatives will be party of first black or asian pm . cameron points to party record of past female and jewish prime ministers . he will set out targets for ethnic minority recruitment in bid to woo voters .\ncar park will be next to battersea heliport so sheik can fly in . will feature two basement floors and six levels above ground . neighbours worried about volume of traffic it will bring to area . they say his enormous wealth should not be put before local needs .\nsir philip carter died at his home on thursday morning after a short illness . carter served everton during three spells after first joining the club in 1977 . toffees chairman bill kenwright pays tribute to a ` great man and leader '\ncolin barnett was at the launch for a new blueprint for marine science . the wa premier said ` some good ' has come out of the search for mh370 . his comments drew sighs of disbelief from the audience . the aircraft disappeared with all 239 people on board on march 8 , 2014 . the plane , which is yet to be found , was flying from kuala lumpur to beijing .\neric garner 's family and other members of families united for justice will attend gray 's funeral . gray was arrested april 12 and died a week later from a severe spinal cord injury . three white house officials will also attend gray 's funeral .\nchild climbed under a temporary bike rack along pennsylvania avenue causing lockdown on sunday afternoon . the unidentified child was reunited with parents following the incident .\nbritish no 1 faces tomas berdych in the miami open semi-finals . former coach dani vallverdu and now fitness trainer jez green left andy murray 's team to join up with the czech . murray defeated berdych in a controversial australian open semi-final .\ndebris from boat to be dried , inspected and taken to landfill . the debris contained fish normally found in japanese waters . the earthquake and tsunami hit japan in march 2011 .\nchelsea star diego costa looks set to miss his side 's next two games . costa was forced off through injury shortly after coming on at the interval . jose mourinho has revealed costa is likely to be out for ' a couple of weeks ' chelsea face qpr and manchester united in next two league matches . click here to read sami mokbel 's match report from stamford bridge .\nchristian longo has been writing letters to people from his death row cell . believes ` some actions are so terrible that nothing can ever atone them ' . in 2001 he killed his family , stuffed them into suitcases and dumped them . three children and his wife mary jane were all found by police divers . fbi tracked him to cancun where he was partying with a german woman . was posing as shamed new york times reporter michael finkel . he was brought stateside and sentenced to death at the end of month trial . movie starring jonah hill and james franco about his relationship with the journalist has been released .\npep guardiola blamed injuries for his side 's disappointing defeat to porto . bayern munich 's players were guilty of poor individual errors for the goals . porto boss julen lopetegui is now dreaming of a semi-final place .\naudio has surfaced of michael slager , 33 , laughing and admitting to experiencing a rush of adrenaline in the minutes following the shooting . walter scott , 50 , was shot five times in the back as he ran away from the traffic stop on april 5 . slager has been charged with murder after cell phone footage of the incident emerged which contadicted the initial police report . the audio of slager talking with a senior officer at the scene was picked up the damcam in his vehicle which had been recording the initial incident .\ncassandra cassidy , 24 , shot outside rehab centre where she worked . she had stopped to help two women who were ` afraid of men in a car ' fashion student was shot as a car with ` multiple occupants ' drove past . boyfriend of two years describes her as ` avid supporter of human rights ' .\npeta release campaign accusing aussie shearers of mistreating sheep . the victorian farming federation launched official complaint on monday . the advert shoes vegan guitarist jona weinhofen holding severed lamb . peta later admitted the lamb was in fact a prop made of foam . minister barnaby joyce has defended wool industry calling the ad ` rubbish '\na 13-year-old girl who vanished 40 years ago may still be alive . marian carole rees disappeared from hillsdale in southern sydney . she often talked about running away and an inquest has heard it was not suspicious . magistrate sharon freund believes she may still want to avoid detection . she said she was unconvinced that ms rees is dead .\nsome 27 million rounds were fired from the army 's sa-80 assault rifles . new figures show that seven rounds were fired every minute at the taliban . a further 80,000 105mm artillery shells were used during the eight-year war . apache gunships also blasted 55,000 30mm rounds at the insurgents .\nlibby jane wilson was playing in yarrow valley country park in chorley . was attacked by a jack russell dog while she climbed through a tunnel . the pet bit her face leaving puncture marks and narrowly missing her eye . the dog owner called the pet away from the toddler but then fled the scene .\ntwo more african-americans have been elected to the ferguson city council . tuesday 's vote is the first in ferguson since the shooting death of michael brown .\nsunderland face newcastle in the tyne-wear deerby on sunday . captain john o'shea has targeted a fifth successive win over rivals . black cats are in danger of falling into relegation zone over easter .\njohn mccallum has apologized for the death of francesca weatherhead . he was fleeing police when he ran a red light and crashed into her vehicle . mrs weatherhead , a newlywed 25-year-old , was killed in the collision . it was later revealed mccallum was a recent parolee with a long rap sheet . he apologized in court after he was sentenced to at least 20 years ' jail .\nthe shooting happened immediately after a meeting between afghan provincial leaders and a u.s. embassy official . an afghan soldier , identified as abdul azim , opened fire on nato troops and killed one american soldier and wounded at least two others . u.s. troops returned fire to kill azim ; the motive of the attack has not yet been revealed . the u.s. soldier killed in the attack has not yet been identified .\nformer new england patriots tight-end was convicted wednesday of killing odin lloyd and sentenced to life in prison without parole . hernandez , 25 , will face a judge in boston later this year in 2012 drive-by shooting that left two dead . athlete is accused of shooting two immigrants from cape verde daniel abreu , 29 , and safirdo furtado , after nightclub spat . hernandez signed five-year , $ 40million contract with patriots after drive-by shooting and played for another season before lloyd was killed . hernandez faces two counts of first-degree murder , armed assault and weapons charge . had his $ 5million in assets frozen pending the outcome of the drive-by shooting trial .\ninjury forced carl froch to withdraw from bout with julio cesar chavez jnr . instead , chavez faces andrzej fonfara on saturday night . the wba super-middleweight champion is searching for his next fight .\nsen. elizabeth warren has publicly criticized so-called `` fast track '' trade authority . sally kohn : why does president obama call her wrong , and why is hillary clinton equivocating ?\nfive bed apartment in hollywood siren 's former building in knightsbridge available to rent for # 10,500 per week . spacious luxury flat features five bathrooms , two large reception rooms , a study and a modern kitchen . gardner moved to london in 1968 and made number 34 ennismore gardens her primary residency until her death . she once described the home as her ` little london retreat ' and spoke of her love of its history and grandeur .\nleanne kenny reached 20st after starting work as a check out girl . she would take reduced products home and snack on them each night . she has since joined weight watchers losing 7st and ten dress sizes .\nreports in italy say juventus make opening offer for paulo dybala . the palermo striker has been linked with manchester united and arsenal . real madrid and barcelona continue title battle with la liga victories .\nfruit juices made from so-called superfoods such as cranberries and pomegranates are lauded for health benefits . but ome brands contain more than a day 's recommended intake of sugar in a single 300ml serving . local government association accused soft drink firms of ` dragging their heels ' when it comes to minimising sugar in their products . it said children under ten get almost a fifth of sugar intake from soft drinks .\nding jinhui potted 12 reds and 12 blacks to rack up 96 points in break . but chinese star screwed back for the blue instead of the black . world no 3 ding realised what he had done and held his head in his hands . he then started to giggle along with his first-round opponent mark davis . ding would have pocketed # 30,000 for maximum 147 break at the crucible . world snooker championships taking place in sheffield .\nsix people , including one civilian , are killed when a car bomb explodes near a police station . six others are killed when their armored vehicle is attacked on a highway in northern sinai . ansar beit al-maqdis , an isis affiliate , claims responsibility .\ntransport for london used actors in the uncomfortable campaign video . encourages women to report sexual harassment on public transport . one in ten londoners have fallen victim and 90 % of cases are not reported .\nfashionable premium ale market grew more than 10 per cent to # 490million . aldi increases share by more than a third and wine sales up 24 per cent . discounter is now britain 's sixth largest supermarket overtaking waitrose . giants tesco and asda losing overall share of the supermarket sector .\nrory mcilroy has managed to persuade some high-profile golfers to take part in the dubai duty free irish open in may . martin kaymer , luke donald and patrick reed are all involved in the open . ryder cup captain darren clarke praised mcilroy for attracting the stars .\njames koryor , 41 , arrested tuesday on suspicion of manslaughter and child abuse following the death of his son at their home on monday . the boy , 2 , died after being left in a locked car for up to 2.5 hours . the outside temperatures hit 93 degrees in phoenix monday . the mother found her son in the car and tried to resuscitate him . koryor reportedly confessed to drinking and falling asleep .\nshane dunn , 25 , from tunbridge wells , kent , attacked ian garrod , 55 . he pretended to call ambulance before fleeing with victim 's possessions . dunn caught after police found dna on cigarette ends in garrod 's garden . he has now been jailed for 12 years after being convicted of wounding .\nsabrina schaeffer : tuesday is equal pay day , a fictitious holiday marked by progressive women . she says the wage gap between men and women is grossly overstated .\nnigeria 's president-elect sends nation 's prayers to families of girls . world still expresses hope that the girls will return . boko haram controls a portion of northeastern nigeria .\nexperts say the ashbrittle yew was mature when stonehenge was built . locals fear it 's ` extremely sick ' due to wilting branches and falling leaves . but a tree surgeon thinks it could just be going through a ` bad patch ' .\npaddy barnes and michael conlan are competing in maiquetia , northern venezuela on saturday night . the duo are hoping to qualify for the 2016 games in rio . barnes and conlan box for the italia thunder team .\nroads out of kathmandu are damaged but passable . even close to the capital , aid is taking forever to trickle through . east of the city , the village of ravi opi counts the cost of devastation .\nthree tops with the error on the left sleeve sent to hampshire constabulary . chairman of hampshire police burst out laughing when he saw the mistake . two officers will continue to proudly wear the t-shirts despite the mistake . they will only wear the tops ` internally ' and not when they are out patroling .\nnewcastle were denied a penalty against liverpool on monday night . ayoze perez was brought down by a rash challenge from dejan lovren . sky pundit gary neville has criticised the referee 's lack of action . the magpies went on to lose the game 2-0 at anfield .\nstephanie scott 's grieving father has spoken out about their pain . he says it is difficult to be surrounded by reminders of her wedding whilst cruelly planning for a funeral . leeton parents say their children are devastated by teacher 's murder . police discovered a body in nearby bushland on friday afternoon . an autopsy will now be conducted to determine the cause of death . police will contact authorities in holland for a background check on accused killer , vincent stanford , who was charged with murder .\nvictoria maizes , a doctor , says she avoids girl scout cookies because they contain sugar , fats . ca n't scouts promote healthy snacks ? she says pediatricians offer little guidance on nutrition , yet a diet low in sugars , gmo 's , transfats , lowers overall mortality .\npolice say robert bates , 73 , thought he pulled out his taser during an arrest . instead , he shot the suspect , who later died at a local hospital .\nnewcastle travel to the stadium of light to face sunderland on sunday . clash being billed as ` the desperation derby ' with both sides struggling . john carver is fighting to secure his future as manager beyond the season . carver has stopped thinking about getting the job on a permanent basis . dick advocaat is striving to ensure sunderland remain in premier league .\nroy day , 29 , and gerald lundie , 26 , stole # 160,000 worth of luxury cars . the pair hit 13 properties in four counties while their owners slept at home . finally caught , after a high-speed chase , when dna found in a crashed car . each jailed for five years and four months at birmingham crown court .\nspacex founder elon musk : `` rocket landed on droneship , but too hard for survival '' this was the second attempt at historic rocket booster barge landing . dragon spacecraft will head toward international space station on resupply mission .\ntrussell trust asks for ` donation ' from churches and community groups . it then charges # 360 per year from each group running trust food banks . critics accuse the charity of taking money which could be spent on food . but trust said ` cash grants and in-kind goods ' were double the donation .\nthe 40-year-old 's son cooper blue and daughter kingsley rainbow were born on monday . dylan and her husband paul arrouet married in 2011 .\ncraig lynch , 34 , is serving nine years for a series of violent gang robberies . he has taken a series of audacious self-portraits posted on social media . according to a friend , he is using facebook to make huge online profits . it 's claimed he is selling legal highs and investing in overseas properties .\njockey blake shinn lost his pants while riding down the home straight . ` the pants went ... and there was nothing i could do , ' shinn says . shinn , atop miss royale , only managed to finish second in the race . acting chief steward greg rudolph said he had never seen anything like it .\nbayern munich dmonstrated their quality in second-leg demolition of porto . but pep guardiola 's side still have major vulnerabilities , as first leg showed . real madrid may struggle without luka modric , despite easier draw . juventus ' defence is reason for hope , but andrea pirlo is past his peak . barcelona 's front three is formidable , but they lack required depth .\nadvert sees party leaders form an unlikely boyband named coalition . greens claim main parties are all ` singing from the same hymn sheet ' . mocks tories , lib dems , labour and ukip for agreeing on austerity . the film will first be broadcast at 5.55 pm on thursday night on bbc2 .\ndelta said ' a small number of customers ' on flight 271 from paris to newark complained of nausea and possible minor injuries . two people taken to massachusetts general hospital after unscheduled landing at logan airport in boston . extreme turbulence prevented the plane from landing at newark and then jfk before pilot headed to logan .\nsir david nicholson warned labour about failing to match tory nhs pledge . former head of nhs said it would leave health service in a ` financial hole ' branded ` man with no shame ' on refusing to resign over mid staffs scandal .\npippa is said to have bought biodegradable nappies in switzerland . buggy lights have white forward and red rear facing lights - just like a car . self-warming bottle means new mums do n't even need to get out of bed .\nengland no 8 cited for incident in saracens ' 22-6 aviva premiership win . vunipola 's case will be heard by a three-man rfu panel on thursday . leicester centre veriniki goneva also cited but he will not attend hearing .\ncolder weather set to last this week and into first half of may - less than a fortnight after temperatures hit 25c . snow from pennines northwards today , while much of britain will see showers and scotland has ice warning . maximum temperatures this week of around 15c in far south east , with -5 c expected in rural areas overnight . early met office forecast for bank holiday weekend suggests north east will see best weather into saturday .\nfive-second rule dubbed a myth by food health industry experts . ` we definitely do not recommend it , ' food safety information council says . however , what food you drop and where you drop it has an impact on risk . potato chips , nuts and biscuits less risky , but meats and cut fruit a no-go .\nsarah stage , 30 , has documented her changing figure via her instagram page throughout her pregnancy . as her pregnancy has progressed , the model has come under fire from critics who claim she is ` unhealthily ' trim and toned .\njay parini : when religious identity , ethics , tolerance are roiling the culture , it 's worth looking at message of holy week and easter . he says ritual enactment of these three days is reminder that again and again the human condition moves through darkness into light .\nthe findings , in the journal of the american medical association , are based on a study of about 95,000 young people . some children in the study had elder siblings with autism . but researchers found vaccines had no effect on autism risk , whether or not a sibling in the family was diagnosed .\naaron kaufman , former chief technology officer at blue shield , was fired . company says it sacked him for blowing cash on company credit card . also alleged that he brought tara reid to company-funded events , where she 'em barrassed ' members of staff by posting raunchy shots online . other alleged expenditure includes florida vacation which cost $ 17,491 .\nosborne sits down with the mail on sunday while on the campaign trail . reveals how much has changed since he was booed at 2012 paralympics . warns britain will become an economic basket case under labour . hits out at rival 's ` sanctimonious rubbish ' about standing up for the many .\ndavid cameron and wife samantha made a visit to a temple in kent . wore traditional headwear , chatted and posed for selfies during parade . comes just a day after cameron attended the festival of life in london .\nnoaa fisheries in maryland says humpback whale is no longer endangered . they want to break up global population into 14 sub-populations . ten of these will be ` not at risk ' , two ` threatened ' and two still ` endangered ' follows conservation ` success story ' that raised numbers to 90,000 .\nconor mcgregor believes floyd mayweather lacks skills other than boxing . ufc star claimed he would ` kill ' the boxer in ` less than 30 seconds ' mcgregor takes on jose aldo for the featherweight title on july 11 . mayweather is preparing to take on manny pacquiao in two weeks time .\ncristiano ronaldo 's practice shot flies into the crowd hitting young fan . ronaldo shows concern but continues his warm-up until the final drill . portuguese icon wheels away to behind goal where the stricken fan stands . ballon d'or holder takes off his training shirt and presents it to tearful boy . click here to see who ronaldo will be facing in the champions league .\nalmost 1 million pages of documents donated by bomber 's lead attorney . they reveal mcveigh viewed himself as a ` paul revere-type messenger ' also thought his defense team should receive $ 800,000 from the government . 1995 attack killed 168 and was deadliest terrorist attack on us soil at time . mcveigh was executed by lethal injection in 2001 at the age of 33 . co-conspirator terry nichols convicted separately and got a life sentence .\npetr cech looks set to leave chelsea at the end of the season . the 32-year-old goalkeeper revealed last week he does not want to spend another season as understudy to first-choice thibaut courtois . cech has made just five premier league appearances this season . former chelsea goalkeeper carlo cudicini feels arsenal should sign him . read : arsenal waiting for cech decision before they move for keeper . click here for all the latest arsenal news .\nmatch will take place at south africa 's ellis park stadium on august 1 . the encounter will feature a team africa vs team world format . chris paul will lead team world with luol deng skippering team africa . nba coaches mike budenholzer and gregg popovich will be in attendance . more than 35 players from africa have played in the nba since two-time nba champion hakeem olajuwon was drafted in 1984 .\nbrittany lyn hilbert of orlando , florida was charged with domestic violence battery and battery of a person over 65-years-old . hilbert allegedly hit her boyfriend and knocked out one of his contact lenses during an argument over a friend he did not want her to see . hilbert told police her boyfriend body bumped her . hilbert has been arrested a total of five times and her charges include possession of pot and xanax and also failure to appear in court .\nhighest-earning nhs dentists earn almost five times more than prime minister 's # 142,500 pay packet . a further 11 dentists were paid between # 400,000 and # 500,000 a year . lay bare huge amounts of taxpayer money paid to dentists for nhs work . campaigners branded the payments were ` scandalous ' and ` unacceptable ' .\nwalter scott was killed by a south carolina police officer in april . danny cevallos : failure to pay child support should be a civil matter , not a crime .\nmichael vaughan is the hot favourite to replace paul downton . vaughan named on shortlist along with andrew strauss and alec stewart . the 2005 ashes winning captain has held talks with tom harrison .\nthis is emma louise connolly 's second campaign for ann summers . the erotic bridal range is priced between # 14 and # 85 . it features cut-out bras and a peek-a-boo thong .\ncarl jenkinson says hot prospect jack grealish must follow his heart . the aston villa star is wanted by ireland and england for internationals . the west ham full back had the option of playing for finland and england . grealish has hit the headlines after impressing for the midlands side . click here for all the latest west ham news .\nbentleys and porsches finished bottom of reliability table of manufacturers . cars were assessed on their failure rate , age , mileage and cost of repairs . most reliable was honda , with suzuki second and toyota in third place .\ncarter gentle , from farmington , maine , cried over the appearance of his ` ugly ' scars after having his fifth open-heart surgery . his father mark shared a photo of his bare chest on facebook in the hopes of boosting his confidence . the picture has received nearly 1.5 million likes since it was posted last week .\nsandro insists he does n't blame harry redknapp for qpr 's struggles . redknapp left the premier league side in february citing knee problems . qpr midfielder claims it 's ` not fair ' to blame his former boss .\nrobin van persie , adnan januzaj , jonny evans , tyler blackett , james wilson and rafael all started for man united . man united first team stars januzaj and rafael sustained injuries during the 1-1 draw at the king power stadium . van persie boosted his chances of starting against everton on sunday by playing 62 minutes of under 21 encounter . both goals came during the first half as sean goss cancelled out leicester forward harry panayiotou 's opener .\nglenn mason was jailed for 15 months for fraud in november last year . he stole # 185,000 from his elderly customers to fund a gambling addiction . two of his colleagues were sacked after mason used their identities . mason will repay every penny of the money he stole out of his pension pot .\nbernie madoff is serving 150 years in prison for $ 65billion ponzi style fraud . fraudster is alleged to have tried to steal his drug dealer 's girlfriend . it is claimed he put pressure on the israeli model to become his mistress . he apparently told her she had made a mistake when she became pregnant with dealer silvio eboli 's child , new book into his life claims .\ndog named teeny works out alongside experienced trainer eric ko . trainer counts to four while completing press-ups with dog . teeny leans over and gives eric a kiss before starting again . the video was captured at the dogaroo pet centre in hong kong .\ndutch and canadian study looked at 100 men and women . meals made the person they were with ` warmer ' and ` more ` likeable ' . chewing raises the levels of ` feel-good ' chemical serotonin .\nceltic were knocked out of the scottish cup semi-final by inverness after officials failed to award them a penalty for a blatant handball . their cup exit ended any hopes of securing a domestic treble this season . rangers legend john brown experienced similar frustration in 1989 , when the ibrox side also missed out on winning three trophies due to poor officiating . but brown says that celtic 's complaints about the incident are ` sour grapes ' .\njay z launched his $ 19.99-a-month tidal app in new york on 30 march . following the launch it jumped to fourth place on the ios music app chart . at the time of writing it ranks at 51 on the music chart and 872 overall . rivals pandora and spotify sit in first and third place respectively .\nklopp will leave borussia dortmund in the summer after seven years . his departure could means the break-up of his talented squad . defender mats hummels has been weighing up a move to man united . midfielder ilkay gundogan has been linked with premier league clubs . ciro immobile could return to italy following poor goal return . neven subotic has hinted his is keen on a move to england .\nwisconsin beat kentucky 71-64 at lucas oil stadium in final four . kentucky wildcats were looking to complete an unbeaten season . duke earlier beat michigan state 81-61 to move into the final . wisconsin will play duke in monday 's final of the ncaa tournament .\nmark hand , 39 , was left wheelchair bound due to a tumour on his spine . tried to claim for a disability grant to adapt his house with new bathroom . but was told that as his wife kate works , he would n't be entitled to grant . will be expected to spend all of his time in his living room with adaptations .\npresident ` believes that to deny the existence of climate change is to deny an observable fact that is substantiated by science , ' press secretary said . he added : ` and there are some who are involved in politics that choose to deny that fact because it 's inconvenient to their case and it might be inconvenient to some of their strongest political supporters ' remarks followed the president 's gas guzzling , 1,836 mile trip on wednesday , earth day , to the florida everglades aboard air force one .\noscar de la hoya believes that the appointment of referee kenny bayless will work to floyd mayweather 's advantage against manny pacquiao . veteran bayless has refereed several of mayweather 's previous fights . de la hoya thinks that bayless ' tendency to break up fighters will stop pacquiao from building any momentum against the american .\nbelgian 15-year-old star has had trials at liverpool and everton . thibaut verlinden will join stoke when he turns 16 in july . mark hughes will also sign moha el ouriachi from barcelona this summer .\nboston police officer john moynihan is released from the hospital . video shows that the man later shot dead by police in boston opened fire first . moynihan was shot in the face during a traffic stop .\namanda richards , from new york says she does n't campaigns which widen the gap between ` fat ' and ` thin ' . she says plus-size store lane bryant 's new ads celebrating women do n't actually show varying shapes , but rather ` correctly ' proportioned plus-size women . to show solidarity with other plus-size women , she posted photos of herself in lane bryant lingerie online .\ntwo birds of prey fought each other in a north yorkshire garden . barn owl succeeded in driving out a kestrel from nesting box which he had been guarding all day . the battle was caught on camera by photographer robert fuller .\nmalaysia , australia and china announce possible new phase of hunt for missing plane . the search of the current priority zone is expected to be completed in may .\njohn helinski , 62 , slept in a cardboard box in tampa bay for three years . he applied for homeless housing , but struggled as he had no identification . it had all been stolen years earlier - virtually forcing him onto the streets . a case worker and a cop looked into his past and uncovered his records . helsinki then went into a tampa bank and discovered a lost account . enough money and social security was in there for him to buy a house .\nresidents of alderholt woke up yesterday to discover the big surprise . nobody has an idea who is behind the wonderful and generous gesture . residents took to facebook in order to thank the mystery benefactor . local resident tracey feltham said : ` it 's such a wonderful act of kindness ' .\nbridget olinda garcia , 32 , drove for 400ft with son , 13 , on the hood . teen jumped into the hood after garcia confiscated his mobile phone . when she stopped , teen son fell off and injured his hip , knee and foot .\nsalford city clinched the evo-stik league first division north title . darlington 1883 's failure to beat warrington saw them win without playing . paul scholes , nicky butt , ryan giggs and the neville brothers are co-owners of the club and will be delighted with the instant success .\nlz granderson : people keep looking for new reasons to validate apathy and explain away racism . but what happened in baltimore did n't come up overnight ; artist jacob lawrence depicted the same story in 1940s .\nwigan will be relegated to league one if they fail to beat brighton at home . bristol city can win league one with victory against coventry on . find out which club clubs can win promotion ... and go down this weekend .\njudy murray left newlyweds to it as they took to floor for their first dance . former strictly star previously admitted to being a ` terrible ' dancer . andy and kim , both 27 , had reception in cromlix house hotel , after service at dunblane cathedral .\nfa has withdrawn england from the historic victory shield for under 16s . the other home nations are unhappy england wo n't be in 90-year-old event . arsenal fan ap mccoy will be honoured at the emirates on his next visit . ecb are running out of time to clinch a t20 blast terrestrial highlights deal .\nwarning graphic content . deputy kerry kempink was filmed on his own bodycam killing the dog . he claimed he had shot rottweiler in self-defense while out on a call . but owner carla gloger claimed pet was not vicious and plans to sue .\nfinal-round collapse at augusta national in 2011 was the most important day of career , mcilroy reveals . mcilroy has just one top-10 finish to his name in six masters appearances . the northern irishman finished joint eighth last year .\nmalijah grant was allowed to die on saturday after she was shot while sitting in the back seat of her parents ' car thursday outside seattle . authorities initially believed it was a road rage incident turned violent but now say the shooting was not random .\nexperience wartime britain with an ice cream and a lindy hop . or take part in one of the oldest competitive sporting events in the uk . the brighton art festival will display the best of quirkiness .\npsg defender david luiz had a tough night against barcelona . the former chelsea player was at fault for both goals his side conceded as they crashed out of the champions league on tuesday . itv pundit roy keane has expressed his sympathy for luiz .\nconman who inspired spielberg film says personal details no longer safe . frank abagnale , with fbi for 35 years , says ids have already been stolen . fraud expert calls level of theft ` unimaginable ' in the technological age .\nthe presidential hopeful held a town hall meeting in kenilworth on tuesday . during the meeting , high school english teacher kathy mooney got up to ask the governor a question about pensions . she asked why he did n't seek a higher legal settlement in a case with exxonmobil that would have contributed to the state 's pension system . christie responded by repeatedly asking how much mooney knew about the deal instead of answering her question .\ncheyenne mountain complex being refurbished by pengaton . high tech communications being installed that are impervious to electromagnetic pulses . the bunker is build under 2,000 feet of the rocky mountains and is able to withstand a hit by a 30 megaton nuclear blast . decommissioned 10-years ago because ` the russians were no longer a threat ' .\narchivists at nestle have assembled images dating back to 1970s . collection includes eggs from yorkie , kit kat , smarties and rowntree 's . prior to wwi , people celebrated easter with chocolate fish and chickens .\nsharista giles of sweetwater , tennessee , went into a coma after a car accident in december . doctors forced delivery of her baby in january and giles opened her eyes for the first time earlier this month . she is still nonverbal and is on a ventilator to help her breathe , but has moved her head when she recognizes voices . her mother , anna moser , believes giles will make a full recovery and will be able to raise her son on her own .\nzbigniew huminski charged with raping and murdering schoolgirl chloe . he did not offer remorse for crimes which could seen him jailed for life . prosecutors say there is evidence of ` strangulation and sexual violence ' polish immigrant , who was heading to england , has admitted to killing .\nal-shabaab 's attack on garissa university college is the group 's deadliest so far in kenya . authors : the group is under pressure from african union forces and a covert u.s. war .\nvideo captures light general aviation aircraft approaching at speed . filmmaker points out that the pilot has not deployed the landing gear . plane touches down onto the tarmac and skids along the runway . its propellers ricochet off the ground before pilot re-engages engines . aircraft takes off and flies 100 miles away to fort lauderdale , florida .\nbobby and stephanie separated three weeks ago after 10 years of marriage . on friday the 50-year-old food network star filed for divorce . his actress spouse is said to be not happy with the prenup in place . they have no children and are ` fighting over property ' it was also claimed she questioned him about romancing january jones .\nnew yorker sarah reign , 26 , is a security guard by day but earns extra money by eating fast food and sugary treats while men watch . weighs 400lbs and has gained 84lbs since she started eating on camera . has branched out to sitting on male clients who enjoy being smothered . admits she finds eating for paying customers ` an ego boost '\nfrancis coquelin superb in protecting arsenal back four at turf moor . tom heaton does well in goal for hosts , but arsenal keep winning . ben mee puts in excellent display at full back for burnley despite loss .\nthaddeus mccarroll , 23 , was fatally shot outside his mother 's home on friday night after he charged at police with a knife . mccarroll 's mother called police and told them he spoke of ` going on a joury , ' a ` black revolution , ' and carried a samurai sword and knives . st. louis county police did not say whether mccarroll was black and could not immediately be reached for comment . bodycam footage of the incident shows that police fired a ` less lethal round ' before fatally shooting the man .\na new youneedabudget.com study found that 64 per cent of adults spend more money with friends due to peer pressure or the desire to show off . the top items americans overspend on are food and clothing . five per cent of those polled said they hide big purchases from their spouses or significant others .\nmanchester city know they need more english players in their line-up . city goalkeeper joe hart has often been the only one this season . england 's jordan henderson and jack wilshere are on their wishlist . city deem the liverpool and arsenal stars as realistic targets . city also maintain an interest in liverpool forward raheem sterling .\nchristian fuchs ' current schalke contract expires in the summer . defender has attracted interested from a number of premier league clubs . swansea have expressed their interest in the austria international .\ngemma the pit bull was filmed at home in california enthusiastically greeting a baby boy named elliot with kisses . despite the infant 's best efforts , gemma keeps licking away . other videos show the animal is clearly used to being around children .\nherman goering founded the gestapo and was head of the nazi air force . he was known for being overweight and for his tendency to sweat a lot . wear and tear on the suit made by viennese tailor helped experts identify goering as its owner . it is being auctioned by devon-parade antiques and is expected to fetch # 85,000 .\ndavid says daughter harper and son gideon have incredibly sophisticated tastes . the 39-year-old actor has worked as a personal chef and attended le cordon bleu cooking school . gideon eats everything , while harper favors ` strong ' flavors and ` anything chocolate ' though david is the cook in the family , neil is good at plating the food .\nvit jedlicka , the first president of liberland , tells cnn that the country will be formally founded on may 1 . on april 13 , jedlicka declared an area between croatia and serbia `` the free republic of liberland '' jedlicka says that almost 300,000 applications for citizenship have so far been received .\ntorin lakeman , 19 , died in december last year with brother jacques , 20 . torin had bought ecstasy via dark web in order to ` have a good weekend ' but pair took massive overdose and were found dead in pub in manchester . today coroner said he was ` frightened ' by use of dark web to buy drugs .\noleg kalashnikov died of gunshot wounds , ukraine 's interior ministry said . he was a party of regions deputy in ukraine 's previous parliament . kalashnikov was ally of deposed ukrainian president viktor yanukovych .\ndapper laughs is the laddish alter-ego of comedian daniel o'reilly . he found fame on social media after posting six second videos . his dating show was axed by itv last year after a 60,000 strong petition . he was slammed for rape jokes and dubious dating advice given to men . last year o'reilly ditched the character but resurrected him at christmas . he arrived in sydney on sunday and attended the avengers premiere .\nincoming ecb chairman colin graves has handled the potential return of kevin pietersen very poorly . graves has pitched several outlandish ideas about reducing test matches to four days . he should focus his attention on addressing the england fixture congestion .\nif carl froch does n't fight in 2015 i 'm not sure he 'll be back at all . a blockbuster with james degale is most likely after julio cesar chavez jnr defeat - but anthony dirrell has made contact . scott quigg-carl frampton summer fight is dead in the water .\nraheem sterling poses with kit alongside philippe coutinho , jordan henderson , daniel sturridge and adam lallana . midfielder has been linked with a move away from liverpool after refusing to sign new # 100,000-a-week contract . new balance struck a record-breaking # 300m four-year kit deal to replace sister company warrior at liverpool . captain steven gerrard did not model new strip as he prepares to leave for la galaxy in the summer .\nthe holborn fire broke out on wednesday just 500 metres from the vault . raiders entered the hatton garden vault some time over the weekend . an alarm sounded on good friday , but the vault was not checked . former flying squad chief john o'connor believes there could be a link .\nskytrax found kansai international as the top airport for baggage handling . kansai has not lost a single piece of luggage in the 21 years its been open . in recent ranking of top 10 airports , seven of the ten are located in asia .\njames t. booker , 20 , of topeka , kansas , was arrested following fbi sting . his plan to join army was stopped last year after extremist facebook post . he faces terrorism charges , including using a weapon of mass destruction . booker arrested outside fort riley 's supposed ` secret gate ' with car bomb . imam says that suspect was mentally ill . alexander blair , 28 , arrested for failing to inform authorities about plan .\nthe city with most multimillionaires in africa is johannesburg . however a crop of new pretenders have been expanding their millionaire count .\ncarlton cole 's west ham contract expires at the end of the season . manager sam allardyce is also facing an uncertain future at the club . his contract is up at the end of the season and it looks likely he will leave . cole almost joined west brom in january before allardyce pulled the plug .\ndomanik green , 14 , altered the background on the laptop at paul r. smith middle school in holiday , florida . pasco county sheriff 's office said he hacked into an encrypted system . youngster had access to tests and could have altered classmates ' grades . he has been charged with a 3rd degree felony and has been suspended from school for 10 days .\namir khan fight with chris algieri confirmed for may 29 in new york . the bolton-born boxers bout will be televised the day before kell brook . khan has slammed brook for knocking algieri 's fighting quality .\nstudy : 90 per cent of patients were able to get an appointment in 2013/14 . 10 per cent who could n't amounts to 33.8 million unsuccessful attempts . situation is responsible for a quarter of a&e visits , say researchers . problem is more to do with lack of doctors rather than opening hours .\nnational union of teachers discuss government strategies on extremism . say it has ` shut down debate ' in the classroom on sensitive issues . claim pupils feel censored and unable to express controversial views . teachers also feel pressured to report youngsters for giving honest opinons .\npolice seized 20 kilograms of kava after pulling over an unregistered car . a 39-year-old man and a 26-year-old woman have been charged . police found the kava divided into 862 deal bags on sunday . they also found a small quantity of cannabis and four unrestrained kids . the pair will appear in katherine magistrates court on monday . kava is a depressant drug made from the root or stump of the kava shrub .\ncorrina skorpenske , from pittsburgh , pennsylvania , took to facebook to publicly shame the person who left a cruel note on her daughter 's car . the anonymous critic accused ohio state university student harley jo of taking away a handicap spot from ` actual disabled people ' .\nsir richard branson converted the old chapel into a home in the 1970s . entrepreneur painted doors of the country retreat his trademark bright red . four-bedroom home in south leigh , witney , is on the market for # 599,000 . sir richard held parties at the chapel and was a regular at village shop . fineandcountry.com , 01865 759550 .\nqueensland woman roxy walsh found an inscribed gold ring in bali . the sentimental jewellery piece was found in the ocean while snorkelling . ms walsh has launched a campaign to return the ring to the people who own it , hoped to be `` joe '' or `` jenny '' according to inscription . facebook post has already been shared by more than 23 thousand people .\nandrea bradley and glen bates charged with aggravated murder in the beating death of their two-year-old daughter glenara . glenara was brought to the hospital last month with bruises , belt marks and bite marks , a head injury and broken teeth . prosecutors say at the time of her death the toddler was weighing only 13lbs . coroner said it was the worst case of starvation she 's even seen . in her final days , glenara ate and slept in a bathtub filled with feces and blood .\ndepartment of public safety trooper billy spears was disciplined last week . the trooper posed with snoop dogg after rapper 's sxsw keynote speech . snoop posted picture to instagram with the caption : ` me n my deputy dogg ' rapper 's past legal problems were cause for concern for spears ' superiors . he was cited for ` deficiencies indicating need for counseling ' for photo with figure who has ` criminal background including numerous drug charges '\nthibaut courtois hopes chelsea can keep marouane fellaini quiet . chelsea face manchester united at stamford bridge on saturday . fellaini has been in impressive form for united in recent weeks . blues goalkeeper knows he will have to collect more crosses than usual .\nliverpool host newcastle in the premier league on monday evening . 19-year-old jordon ibe has returned to the squad after six weeks out . ibe has impressed manager brendan rodgers in training .\nfreddie gray , 25 , died after being arrested while screaming in pain and refused medical help for severed spine injury . baltimore protesters called for police to be charged and jailed over death . peaceful protests escalated into violence , police car windshields smashed . reports of looting as protester threw flaming trash can at police in riot gear . fans at game between orioles and boston red sox held until after 10pm .\ndavid cameron will launch ` job manifesto ' with plans for ` full employment ' tories will extend national insurance breaks , worth # 2,000 to smaller firms . pm is ` angry ' at labour 's claim tories are ` party for the few , not the many ' . he will say miliband 's economic policies risk putting millions out of work .\ntulsa detectives believe the father ` shot and killed the other individuals ' officers found handgun near his body and are not seeking other suspects . bodies may have been in house for up to two days before being found . officers discovered them on wednesday afternoon during a welfare check .\nparis saint-germain play barcelona in the champions league this week . defender thiago silva has warned his team of barcelona 's attacking threat . psg prepared for the first-leg by winning the french league cup . lucas moura : lionel messi is my idol ... i am obsessed with his ability . read : psg boss laurent blanc feels his side have hit momentum .\nmessenger is expected to hit the surface of mercury on april 30 . probe has been orbiting mercury since 2011 , taking 250,000 pictures . latest image shows features such as volcanic vents and fresh craters .\nhibernian stand to make # 1million from gate revenues in play-offs . edinburgh club battling to try and reduce share to lower league clubs . hibs would have to give 50 per cent of gate revenues to lower teams . club has received support from hearts and motherwell to lower to 25 % .\ncf-18 hornets bomb a garrison near isis ' de facto capital of raqqa , canada says . the canadian military has conducted dozens of strikes against isis in iraq .\nthere has been a rise in ` sharenting ' - sharing photos of children online . the trend could be dangerous for your child in the long run . who is really looking at your photos and how far do they reach online ? people who do n't turn off location settings are leaving kids vulnerable . an australian woman received a scathing letter over posting baby photos .\nandros townsend scored the equaliser in england 's 1-1 draw with italy . townsend tweeted to hit back at paul merson for his previous comments . townsend has been been ` desperate ' to silence his critics . merson had slammed townsend for his display against man united .\nbaby sonit awal found in rubble of nepal earthquake , sunday morning . spent 22 hours buried under his home after 7.8-magnitude quake .\nmary doyle keefe died in simsbury , connecticut , aged 92 . she was ` rosie the riveter ' the wartime poster girl who inspired millions . artist made petite mary 's muscles bigger to make her symbol of strength . became a symbol for feminism for the wartime women who stayed home .\nlouis smith , mbe , admits he has a habit for posting saucy topless selfies . the athlete says he works hard for his body and wants to show it off . is he closing in on ` queen of the belfie ' kim kardashian ? .\nbath dominated champions cup quarter final against leinster . but english side came up just short 18-15 , despite scoring two tries . with four premiership games left , watson wants pain to spur team on .\nlondon-based firm has unveiled its luxury brand of apple watches . the expensive devices are made with 24 karat gold , rose gold or platinum . others are encrusted with diamonds and have python or crocodile skin . prices range from a ` modest ' # 2,000 -lrb- $ 3,000 -rrb- to # 120,000 -lrb- $ 177,000 -rrb-\nnigel farage has vowed to stand down if he loses in thanet south . a private poll by ukip has put the tories on course to retain the seat . but ukip figures insist the party would carry on if mr farage left . mep diane james said ` there are people there waiting ' to take over .\nhayley grimes , 42 , found baby peter 's body in weasenham st peter in 1988 . locals thought she was responsible because she wanted to give baby a proper grave , she says . mother-of-two said : ` it was a shock . i still feel angry about the whole thing ' his body was exhumed last year for review which led officers to the mother . infanticide charges dropped but charges may be brought for preventing lawful burial .\ndanny ings ' contract expires in the summer and is set to leave burnley . real sociedad want to take ings to la liga on a free transfer . manager david moyes faces competition from liverpool among others .\nsix-storey structure collapsed this afternoon in holborn , central london . site is just yards from where cable fire caused chaos earlier this month . on both occasions university and court staff have had to be evacuated . not yet known whether today 's incident is connected to underground blaze .\nthe big bird swoops in and demonstrates how to roll ball . before jumping up on it with both feet and giving it a kick . the bird 's try-out was captured in north vancouver , canada . eagle interrupted north shore football club training session .\nthe total eclipse lasted 4 minutes and 43 seconds . people west of the mississippi river had the best view in the u.s. parts of south america , india , china and russia were able to see the eclipse .\ntykeran hamilton accelerated to 70mph after spotting friend at a bus stop . the 25-year-old shouted ` watch this ' before overtaking cars ` recklessly ' moments later he hit cyclist alan knight , 64 , who was on his paper round . hamilton had been on vodka and cocaine binge . he was jailed for 11 years .\nufc light heavyweight champion jon jones ran from a crash that hospitalised a pregnant woman , witnesses told police . according to police , the accident occurred in albuquerque just before noon on sunday when the driver of a rented suv jumped a red light . the driver , whom an off-duty officer identified as jones , ran from the scene but then returned for the cash before fleeing again , police said . jones is widely considered the best pound-for-pound mixed martial artist .\na 480-house development is proposed for next to a popular theme park . council plans do n't mention the helston amusement flambards . new owner ian cunningham fears people will buy houses then later complain about the noise , leading to restrictions on his park .\nleicester remain at the foot of the premier league table after 31 games . foxes recently defeated west ham and west brom in consecutive games . manager nigel pearson insists survival is far from ` straightforward ' .\njonathan stevenson wrote a letter to richie benaud back in 1996 . the then-16-year-old asked for his advice on left-handed spin bowling . stevenson , who now works at livewire sport , tweeted the letter on friday . cricket legend died in his sleep on thursday night in a sydney hospice . letter included sheet of notes about spin bowling for left-hand bowlers .\nvonda thedford , 55 , said she was driving along a pittsburg county rural road earlier this month when she spotted the mysterious carcass . when she stopped to look at the dead creature , she was disturbed to see it had ' a little truck ' in place of a nose , ` little toes ' and ` hair on its tail ' the restaurant worker says the images have left people baffled and no-one has been able to identify the bloated and hairless critter . however , wildlife experts who studied the animal 's skeleton told fox news it appears to be that of a young dog .\nhenrikh mkhitaryan opened scoring for borussia dortmund on 48 minutes . pierre-emerick aubameyang doubled the lead for jurgen klopp 's side . shinji kagawa completed the scoring in a comfortable victory for the hosts . manager klopp announced on wednesday that he will leave in the summer .\njames was practicing at td garden in boston , massachusetts , on saturday . he made the shot by effortlessly flicking basketball at hoop 94 feet away . just before the shot hit nothing but net , james said : ` give me my money ! ' . dwight howard of houston rockets issued a response video later in day . cleveland cavaliers are playing nba playoff game vs celtics on sunday .\nman charged with grievous bodily harm , deprivation of liberty and torture . victim suffered fractures , head injuries and burns to 15 per cent of body . in a surprising twist , victim claims to be suffering from amnesia . but police investigations uncover ` solid evidence ' to make an arrest . case to be heard at bundaberg magistrates court on monday .\nbarcelona , bayern munich , juventus and real madrid make up last four . real madrid are looking to retain their title and win for the 11th time . barcelona have won three champions leagues since 2006 . bayern munich are five-time winners and last won at wembley in 2013 . juventus ' two european cup wins came in 1985 and 1996 .\nprimary school pupil told tristram hunt he would vote ukip if he could . the child , 10 , explained it was so to ` get all the foreigners out the country ' his mother tonight admitted she was embarrassed by the exchange . she said she had sat her son down and explained it ` is n't about foreigners ' .\njohnny kemp is `` believed to have drowned at a beach in montego bay , '' police say . he is best known for the 1988 hit `` just got paid ''\nvictim had been fishing off palm beach 's jupiter inlet when he was bitten . witnesses said blood covered the boat , he was bitten in the head . unidentified victim was conscious when he was airlifted to hospital .\nthis cute toddler 's talented balancing skills have made her an internet hit . tiny dancer happily spins around to music with three bowls on her head . the chinese girl is thought to be practising a traditional female folk dance .\njudy murray wore a belted dress-coat to her son andy 's wedding . she stays toned by dancing , doing pilates , walking or gardening . try the v-sit up to engage and firm your abdominal muscles .\nthe attack at a garissa university last week killed 147 people , mostly students . the government is tracking the finances of people suspected of ties to al-shabaab .\none man 's entrepreneurial quest turned into unexpected success . `` 100 days of rejection '' took jiang out of his comfort zone . it 's the fear of rejection , more than rejection itself , which holds us back .\nveteran espn reporter shelley smith is set to return to work six months after announcing she had breast cancer . she will make her first appearance on april 30 , just before the nfl draft , . interviewing heisman trophy winner marcus mariota . after that she will return for five more rounds of chemotherapy .\ncrystal o'connor , owner of memories pizza in walkerton , indiana , says she stands by her decision to never cater a gay wedding . this despite the fact that she claims she has been receiving death threats for her beliefs , though none have been documented . she has closed her store , but said she will reopen again and $ 850,000 has been raised for the business by supporters in just two days . o'connor said in a recent interview of this ; ` god has blessed us for standing up for what we believe , and not denying him ' . also on saturday , openly gay basketball stars jason collins and derrick gordon arrived for the ncaa final four in indianapolis .\nfrench artist vincent lamouroux unveiled the motel 's new look yesterday . used environmentally-friendly limewash to create effect of ` bedazzlement ' seedy building known as bates motel for likeness to the motel in ` psycho ' mr lamouroux said new look can represent ` blank screen ' for our desires .\nthe poll surveyed 600 women from the area in and around paris . all claimed to have been victim of harassment on transport system . found half of those interviewed had been assaulted before they were 18 . led to calls for campaign to stem sexist and threatening behaviour .\nit does n't matter where it comes from - no one likes being rejected . and in each and every case there 's nothing we can do about it . jia jiang , with his exceptional optimism , proposes an alternative thesis . he has developed an entertaining study of rejection in all its many forms .\nrussell brand urges fans to sign up to mercy campaign for bali nine duo . brand dismisses andrew chan and myuran sukumaran 's efforts to smuggle 8kg of heroin out of indonesia as ` daft ' brand posted that the pair did not deserve to face a firing squad . he also encouraged fans to go to sukumaran 's exhibition in london . his cousin organised the event at amnesty international headquarters .\nwoman was struck by lightning in her car in boston , lincolnshire . several days later her hairdresser noticed minor burns on her scalp . later that day the 77-year-old noticed her eye sight was blurred . a scan of her retina revealed heat from the bolt burned a hole in her retina .\nrachel chepulis helped wesley e. brown iii break out of north dakota jail . fugitive couple captured yesterday outside store in north bend , oregon . brown , 35 , was awaiting sentencing for carrying a firearm as a felon . chepulis , 26 , found to have a tattoo of brown 's initials on her ring finger .\nagnese klavina , 30 , vanished after being driven away from a spanish club . older sister gunta made a video appeal for information on her whereabouts . brits westley capper and craig porter were summoned to court on monday .\nroyston coates was jailed for 10 years for holding down a man while his friend stabbed him in a random attack . but he has posted a series of photographs of himself on facebook . social media account has now been shut down by prison authorities . comes a day after a convicted murderer was pictured partying with illegal alcohol in a film which he shared online .\ngang target car dealership in dearborn heights , michigan , in early hours . kicked off wing mirrors and smashed windscreens during violent outburst . bill for damage to la marina auto sales said to be several thousand dollars . same gang believed to have also hit neighboring businesses during spree .\ntim swiel spent four months on loan at harlequins earlier this season . the 23-year-old featured in the european champions cup and lv = cup . the fly-half will return to the club on a full-time contract next season .\nuniversity of south carolina student elizabeth scarborough performs as a taylor swift tribute artist . the 21-year-old has been impersonating the star since she was 15 . her first gigs were at children 's birthday parties , for which she earned $ 30 .\nrhiannon langley , from melbourne , underwent rhinoplasty in bangkok . the 24-year-old has 191,000 followers on instagram alone . fans are following her cosmetic surgery ` journey ' on social media . langley created the hashtag #rhiannongetsrhino that fans can follow . travelled to thailand as part of a $ 5,190 medical tourism package .\nmother-of-one tayler chaice buzbee called aspen dental with toothache . she was told only available appointment at the facility was in 20 minutes . had no time to find babysitter for baby son , attley , so brought him along . started breastfeeding the nine-month-old in chair when he created a fuss . but soon after , female employee ` took him out of her arms without asking ' woman ` placed him in his stroller , saying breastfeeding was not allowed ' ' i was humiliated , crying , and i felt embarrassed to be there , ' said tayler . aspen dental has since apologized to tayler and launched investigation .\nbarry beavis took on private car park operators over ` unfair ' charges . 48-year-old tried to challenge # 85 fine that he claimed was unjust . left ` furious ' after losing the landmark legal bid at the high court . judges found the charge was ` not extravagant or unconscionable ' .\nlewis hamilton , 30 , sealed victory in shanghai at chinese grand prix yesterday , his second win in three races . he celebrated with ` trademark ' move of spraying champagne in the face of the hostess - much to her surprise . but object , which campaigns against sexism , said he should apologise for his ` selfish and inconsiderate ' actions . others called the driving ace ` an embarrassment to the uk ' , while another said it showed he was an ` ignorant clown ' .\nmichelle carter , 18 , appeared in new bedford court thursday over the involuntary manslaughter of conrad roy ii , 18 , who killed himself last july . carter ` sent roy a series of texts encouraging him to take his own life ' her lawyers claim she is ` bewildered at the charges ' and have asked for the case to be moved because the district attorney is the victim 's third cousin . they claim she was actually trying to help roy . roy was found dead of carbon monoxide poisoning in his idling truck . carter told a friend she was worried that the police were checking his text messages , saying : ` i 'm done ... i could go to jail ' after he died , she raised money for suicide prevention and wrote on twitter about how much she missed him . carter , who was 17 at the time , is free on bail but ca n't text or use social media .\nhiroshi ueda patented the ` extender stick ' at camera firm minolta in 1983 . he came up with the invention after struggling to find anyone to take pictures of him with his wife while they were on a family holiday in europe . it used a mirror on the front of compact cameras to help the photographer . but the idea was not a commercial success and the patent ran out in 2003 .\njeff and joey stallings took a ` bad batch ' of spice in mississippi hometown . hospitalized after suffering from hallucinations , sweats and violent shaking . photos show the brothers in medically-induced comas in mccomb hospital . fortunately , siblings rallied against the drug 's effects and are now at home . but jeff has ` permanent kidney damage ' and both are still addicted to drug . now , their mom , karen , has begged others not to take synthetic marijuana . because chemicals in spice vary , users do not know what they 're smoking .\nvice correspondent gianna toboni traveled to india to explore the country 's booming gestational surrogacy industry for the hbo series . in the us , surrogacy can cost hopeful parents upwards of $ 100,000 . many american couples are hiring surrogates in india because the cost is signficantly less than it would be in the western world .\nkyle iveson , 24 , burst into convenience store armed with a 12in knife . but shop worker karen brown , 54 , recognised him because she is the mother of his ex-girlfriend . she reported him to police moments later and he has now been jailed .\narsenal host top-four rivals liverpool at the emirates on saturday afternoon in the premier league contest . the gunners won all four of their premier league games in march to sit third in the league table . arsene wenger and olivier giroud won manager and player of the month for an in-form arsenal side . the gunners are six points ahead of liverpool in the race for champions league qualification next season .\nwest indies were 188 for five at the close of play on day one in grenada . conditions suited england at the start of the second caribbean test . england 's biggest weakness is a lack of something different in their attack . mark wood , who is in the caribbean , could offer a new element . alastair cook 's side has n't won away from home since 2012 .\n276 nigerian schoolgirls kidnapped by boko haram militants last year . the shocking abduction led to high profile ` bring back our girls ' campaign . many children remain in captivity , forced to fight or become sex slaves . unicef film highlights few escapees are now in refugee camps . the charity says more than 200 girls remain in captivity .\ntravellers are increasingly ignoring hotels for ` homes away from home ' homestays , with and without hosts , are available for all budgets . sites like homestay and airbnb are catering to this different style of travel .\ninspectors found pizza plus fried chicken in gillingham overrun with mice . owner kunaratnam kunanatha , 36 , admitted seven food safety offences . included lack of cleaning , uncontrolled mice infestation and unfit food . takeaway reopened a few months later but was closed after further checks .\nheida reed has claimed audiences ' obsession with her co-star is ` sexist ' she said aidan turner is being ` objectified ' in a form of ` reverse sexism ' hundreds of viewers have expressed delight about turner 's bare chest .\nfigures from the catholic church show more and more becoming nuns . the number of women taking holy vows stood at just seven back in 2004 . but that figure had risen to 15 in 2009 and increased further to 45 last year . one father said a ` gap in the market for meaning ' led people toward religion .\nprime minister said coalition had spent 5 years ` trying to lift people up ' in an easter message to christians he defended ` moral content ' of cuts . comes after church provoked a row with unprecedented election guide . in it they told britain 's christians how they should ` approach election '\nolsi beheluli posted picture of himself with # 250,000 in cash on twitter . the 24-year-old was part of a gang found with # 4million in class a drugs . police said he enjoyed ` living the high life ' with cash made from his crimes . beheluli claimed he appeared on channel 4 dating show my little princess .\nrafa benitez won the champions league and fa cup with liverpool . but the spaniard is little more than a cup manager , lacking league titles . liverpool fans are grateful to benitez for his successes . but the kop faithful wo n't mind him coming back to england with new club .\ndavid totton , 36 , in central manchester when he saw friend in argument . went over to act as ` peace-maker ' between the man and club bouncers . club liv security told totton his friend could n't come in as it was too late . totton the got into car , mounted pavement , and rammed front doors . he has now been banned from every pub and club in manchester .\nhunger games star josh hutcherson , 22 , surprised film fans when he appeared at a première in madrid this week . the star showed off newly dark hair and a stubbly chin that made him look like eastenders ' martin fowler . other unlikely celebrity twins include actress letitia dean and chelsy davy and ross kemp and bruce willis . more famous faces with unlikely doppelgängers include johnny depp , emma stone and kate moss .\nmr yuan was in the accident on march 24 and has been in hospital since . one girl had been dating him for nine years and another had a son with him . police have now launched an investigation into allegations of fraud .\ntyped dispatch sent by german president karl doenitz on may 8 , 1945 . seized from luftwaffe chief robert von greim when he was arrested . order told officers to stop fighting or face the allies ' wrath . set to fetch # 21,000 when it goes under the hammer at bonhams , new york .\nglasgow warriors captain al kellock will retire at the end of the season . kellock amassed 56 scotland caps during eleven-year international career . the lock is calling time on career after 150 matches as glasgow captain .\na man is in a critical condition after a shark attack in south australia . police said the man was attacked 350m offshore at fishery bay . the man was rushed to hospital with life-threatening injuries . the attack happened shortly before 10am on saturday . witnesses claimed a great white shark has bitten off the man 's leg . the shark victim has been airlifted to adelaide for further treatment . south australia has been the site of numerous shark attacks .\naspartame has been linked to a range of health problems . but more than 100 studies have deemed it to be safe , says the fda . diet pepsi in the us will now be sweetened with sucralose , or splenda . comes after consumers shy away from such drinks on health grounds .\nnew charts show how the constellations will look 98,000 years in the future . graphic designer martin vargic created the charts using observation data . the big dipper , leo , cassiopeia and crux will change beyond recognition . the stars will shift position as our solar system moves through the galaxy .\nhalf of hospitals in england let patients jump queues if they pay for surgery . charging up to # 2,700 for cataract surgery on one eye - treble cost to nhs . campaigners have accused hospitals of profiting from elderly patients .\nthree victims were part of a group of ten friends from san francisco and the east coast who were staying in mendocino county to hunt for abalone . they dived into rough choppy water and found themselves almost immediately in trouble . abalone is an expensive , prized mollusk that is considered a delicacy .\nresearcher says a ` bone flute ' found in slovenia is not an instrument . instead he says it is simply a bone chewed by a hyena with teeth marks . he claims all such instruments were made by hyenas , not neanderthals . and the bones do not even originate from neanderthal times .\nholland america says two passengers died in an apparent murder-suicide . `` the cabin was immediately secured and the authorities were notified , '' cruise line says . the fbi is investigating the deaths ; the ship is in san juan , puerto rico .\nbroadhurst park will host benfica for opening on may 29 . new stadium will serve community on non-match days . the # 6.5 m ground was financed largely by fans of the democratic club . general manager andy walsh describes new stadium as a ` statement of what football supporters can achieve ' .\ndash-cam footage captures 36 screaming 7th graders on board . dodge durango can be seen hitting another suv then hurtling toward bus . police said the driver , a 44-year-old man , has a history of seizures . five pupils were hospitalized , 11 treated at the scene on monday at 8am . suv driver is in serious condition in hospital .\nlennon reportedly partied at suede nightclub in manchester on april 4 . venue packed with hundreds who had come to see trey songz perform . alleged victim says # 55,000-a-week star left her with bruise below her eye . tottenham winger , on loan to everton , interviewed on suspicion of assault . greater manchester police spokesperson said no arrests have been made .\nkathie lee said on today that bruce 's bombshell revelation that he 's female was news to kris . the tv host claimed that the kardashian matriarch is ` trying to get her act together ' . she described the situation facing the blended family moving forward as ` complicated ' . kendall and kylie 's godmother acknowledged on today that she was shocked and ` never saw this coming ' in his abc interview , bruce said that his third wife , like his first two wives , did know about his cross-dressing and his gender identity struggle . he revealed that she found out when he could no longer keep his 36b breasts hidden . the olympian said he and kris would probably still be together if she had been more accepting of the situation .\ntina fey was spotted for the first time since the suicide of dr. fredric brandt on friday . the writer , actress and producer was on a school run with her youngest daughter penelope , 3 , and husband jeff richmond . dr brandt took his own life on april 5 and was said to be devastated over a caricature of him on fey 's show unbreakable kimmy schmidt . friends say that is not the reason he took his life .\nfloyd mayweather and manny pacquiao meet on may 2 in las vegas . tickets for the fight in las vegas went on sale at 8pm on thursday night . between 500 and 1000 tickets were released priced between $ 1,500 -lrb- # 996 -rrb- and $ 7,500 -lrb- # 4,982 -rrb- each . the mgm grand has a capacity of 16,500 but most of the tickets will be split between mayweather and pacquiao 's camps and the tv broadcasters . up to 50,000 tickets for closed-circuit viewing were also sold on thursday . one ticket was being sold on stubhub for $ 128,705 -lrb- # 85,508 -rrb- watch : pacquiao stars in hilarious advert ahead of mayweather fight . click here for all the latest floyd mayweather vs manny pacquiao news .\ntony orrell reached 38 stone after living off takeaways . couple had to cancel holidays due to illness caused by his weight . after developing diabetes the 56-year-old decided to take up zumba . he lost 21 stone in three years and encouraged his wife to slim down . debbie , 56 , shed eight stone and now weighs 10 stone .\nfilmmaker rotates four stacked see-through plastic cups . he selects an afro hair type , a shirt and a pair of glasses . the video maker initially uploaded his creation to reddit . one user stated there are a total of 294 possible variations .\nunusual egg was captured on camera by us youtube user elman511 . shows him cracking the giant egg to reveal a normal sized one inside . phenomenon is caused when an oocyte - which becomes a yolk - is released too soon and merges with an earlier egg that has n't been laid .\nlianne hindle suffered a cardiac arrest at north manchester general . 37-year-old died three hours after giving birth to baby poppy . investigation was launched last year into the deaths of seven babies and three mothers at the unit and a ward at the royal oldham hospital . family have raised questions over the standard of care ms hindle received .\ncarlos colina , 32 , pleads not guilty to battery , improper disposal of body . cambridge police found torso in bag before finding head in recycling . a saw , rope and cleaning supplies were found in colina 's apartment .\nesa craft will launch in october 2020 to a binary asteroid system . paired didymos asteroids , will come a comparatively close 11m km . will take high resolution pictures of surface and analyse it . craft will watch as nasa sends a probe crashing into the asteroid 's surface .\nauthor alice dreger sent 45 angry tweets during her son 's sex ed lesson . could not believe michigan school was teaching abstinence only classes . ` the whole lesson here is `` sex is part of a terrible lifestyle '' , ' she fumed . principal coby fletcher denied the school has an ` abstinence only ' policy .\nitaly and england drew 1-1 in a friendly at juventus stadium on tuesday . graziano pelle netted for italy , his second goal in just three caps . southampton striker has not scored in premier league since december .\nriver plate admit they ` dream ' of manchester united striker radamel falcao . the colombia international spent eight years with the argentine club . falcao has managed just four goals in 19 premier league appearances . read : falcao still ` has faith ' that he could continue at man utd next season . click here for the latest manchester united news .\nshelley dufresnein of st charles parish , louisiana , took a plea deal . mother-of-three avoided prison and wo n't have to register as a sex offender . took an image of her smiling after the hearing and wrote : ` my mood today ' also said she was ` relieved ' when followers began congratulating her . is still facing charges over an alleged threesome she had with the same student and fellow teacher rachel respess , 24 .\nthe luxurious sri panwa resort comprises a series of minimalist villas . while she was there olivia was among guests who included liam from one direction and a thai princess . bangla road is a lively night spot with numerous clubs and bars .\ntexas health resources filed response to nina pham 's march lawsuit friday . statement says hospital acted responsibly to protect employees . hospital says it respected pham 's privacy and only acted with her consent . because pham contracted ebola while working for the hospital , remedy should be worker 's compensation claim , not civil court , hospital said .\nap mccoy claimed his first win of this year 's grand national on thursday . his ride , jezki , won after ruby walsh 's arctic fire fell at final hurdle . both walsh and arctic fire escaped without serious injury from the fall . it is second time in month that walsh has fallen after annie power tumble .\nlewis hamilton took victory for the silver arrows at the chinese grand prix . nico rosberg claims hamilton ruined his race by driving slowly .\nhuw thomas made comments on internet forum during world cup in 2006 . labour candidate for ceredigion said the number of england flags in wales was ` totally sickening ' . apologises ` wholeheartedly ' for the remarks he made as a young student .\nthe head of the wildlife aid foundation in surrey rescued the fox . fox had been stuck for 40 minutes and was unable to move around . mr cowell distracts it with a stick and then lifts cub out of the fence . fox is released back into the wild and heads off home to its mother .\ndespite his status as a firm fan-favourite during his first two seasons at chelsea , juan mata could not do enough to impress jose mourinho . mata was sold to manchester united in january 2014 for a # 37m fee . it took some time for the midfielder to settle at old trafford but now he has . united travel away to chelsea in the premier league on saturday .\npamela clothier was admitted to hospital for a short stint last year . the 92-year-old returned home to find her belongings had been cleared . was told by age uk her son had given them instruction to empty house . she was left heartbroken after her dog , mitzy , was taken and re-homed .\ngemma , 34 , gives femail a peek at her extended clothing collection . new additions include a lacy lbd and a set of floral kimonos . the blonde star of the only way is essex says ` confidence ' is key .\nthe value of sales fell by 19.3 per cent to around # 14.5 million last year . pale skin icons include the likes of keira knightley and cara delevingne .\nbrits each have on average three unwanted and unreturned items . four in 10 britons have an average of # 77 of unwanted online shopping . more than 40 per cent simply ` could not be bothered ' to return item . research also shows a third of adults have bought things they did not want .\ngeneral keith alexander has warned that the u.s. and her allies are at an ever growing risk of a systemic cyber-assault . he predicts that energy infrastructure would be hacker 's prime target . ` we are not prepared for that , ' he warned in texas last week . also voiced his concerns about the hacking threat from a terrorist organization such as isis .\njessica ennis-hill will compete at the anniversary games in july . olympic gold medallist has not been in action since 2013 . her return could set up showdown against katarina johnson-thompson .\nmichael rogan , 42 , was driving his wife , niki , and their seven children to hospital for the birth of their eighth child early on friday morning . a deer was hit by another vehicle and thrown through the windshield of their van . michael was severely injured and pronounced dead in hospital . hours later niki gave birth to their son , blaise . the family , who only suffered minor injuries , attended church as usual on sunday , and blaise was baptized after the service . friends have set up a gofundme page to help the family and almost $ 200,000 has been raised .\njudge pays $ 240,000 damages after he wrote semi-erotic poem for clerk . clerk , marcia eisenhour , worked with court judge craig storey 25 years . she claimed he was possessive and asked if she was in a relationship .\nian wright presented tony mccoy with champion jockey trophy . mccoy finished third on box office in last-ever race on saturday . the 40-year-old also finished third on mr mole in penultimate race . mccoy was reduced to tears as he competed professionally for last time .\npeanuts can increase the levels of friendly bacteria in the gut . almonds are rich in vitamin e , which helps improve the look of your skin . walnuts have lots of plant-based omega 3 fatty acids and antioxidants .\nuniversity of oregon 's tanguy pepiot had strong lead over meron simon . raised arms in triumph while he was still running - which slowed him down . simon , of the university of washington sprinted and closed the gap . beat pepiot by a tenth of a second at track event in eugene , oregon .\nkim sei-young leads ana inspiration by three after a three-under-par 69 . the south korean says it would be ` the biggest dream ' to win . lydia ko struggled again , shooting a two-over-par 74 .\njordan ibe showed off the impressive dance move on his instagram . the liverpool star has broken into the first team during this campaign . ibe is currently on the sidelines after suffering a knee injury . click here for all the latest liverpool news .\ntim tebow is expected to sign with the team monday , in time to participate in the entire off-season program , reports say . he last played an nfl game in 2013 with the new york jets . since then he 's been a college football commentator on sec network . tebow won millions of fans for his public displays of his christian faith on and off the field . his inaccurate passing and lack of pocket presence plagued him in nfl .\ncricketing great richie benaud has been farewelled at small private funeral . the sydney service was attended only by immediate family . richie benaud died aged 84 last friday from cancer . commentary box colleagues and cricketing greats gathered afterwards for memorial .\nleo greene , 39 , of salt lake city crashed through airport fence on monday . police tried to stop the car with its bumper hanging before the chase . greene was asked for his keys when he drove off and crashed into fences . he jumped out of his car and ran to a shed before being forced to ground . greene faces multiple charges including driving under the influence , fleeing and resisting ; he is also also being booked for property damage . fence damages are estimated at $ 4,500 .\nauthorities say that while sea lion pups can be cute they also have a vicious bite . witnesses say four people wrapped the sea lion pup in a blanket on dockweiler state beach then fled the scene . mammal is in danger as it needs fluid and specific foods to survive .\neverton beat southamton 1-0 at goodison park on saturday afternoon . ross barkley showed his skill but made an error that saw the crowd groan . team-mate james mccarthy is confident he can deal with the pressure .\nellen brody , a mother-of-three was killed along with five rail passengers in february in the horrific crash in valhalla , new york . daughters danielle , julia and alexa brody have spoken out to say that they believe their mother drove on to the tracks by accident . the cause of the collision that killed six still remains unknown .\nwhen spain first became a real power , their own fans did n't know at first . the european champions won three trophies on the spin , but need a reboot . likes of xavi , carles puyol , david villa and fernando torres can hand over . juan bernat 's champions league performance signalled part of the new era . spain still have a golden harvest to bring in from the country 's youth . former under 21 coach julen lopetegui downed bayern munich this week . almost all of their former youth side are playing in european competitions .\nluke shambrook was last seen leaving candlebark campground on friday . there has been an unconfirmed sighting of luke with police acting quickly . the 11-year-old was reportedly seen walking 4 kms from his campsite . police remain hopeful they will find luke , who has ` high pain tolerance ' . luke has limited speech and his family says he is probably confused . a large search is being carried by a medley of search and rescue teams . police also said conditions are favourable for his survival overnight . they have issued an extensive description of luke and his clothing .\nkim min hyeok has been accused of stamping on an opponent 's face . video footage appears to show hyeok 's foot scraping mu kanazaki 's face . kanazaki was among the goals in a 3-1 win for his kashima antlers side .\nman united have an eight-point cushion from fifth-place liverpool . van gaal looks likely to deliver on his promise of top four finish . but the dutchman has a three-year vision mapped out . next season will have to see united mount sustained challenge for title . they must also reach the later stages of the champions league .\nnbc journalist jeff rossen filmed an airport worker at laguardia airport in new york doing push-ups on the runway after loading up a plane . footage shows the employee wearing his high-visibility jacket and gloves while performing the aerobic stunt . even after his 12th push-up , the fitness-enthusiast shows no sign of slowing down .\njohn noble , 53 , took his own life waiting in line at the m resort buffet . shot himself in the head because his free buffet pass had been taken away . had been awarded the biggest winner pass for the studio b buffet in 2010 . it was revoked in 2013 after he was accused of harassing female employees . the pass was confiscated three weeks after his mother passed away . noble sent a local las vegas newspaper a 270-page suicide note and dvd . posted increasingly rambling facebook posts prior to suicide pledging to discover ` the truth ' .\nchief secretary to the treasury caught drinking with high-class call girl . the encounter between belle de jour and danny alexander was innocent . the two were snapped at bar one in inverness on friday at the nip festival .\ndespite pleas for mercy , indonesia executed eight prisoners on wednesday . included two of the `` bali nine , '' convicted drug traffickers from australia . executions will damage relations between countries , but public image will take longer to heal .\nconor mcgregor shared a picture of his new tiger tattoo on his stomach . the 26-year-old mcgregor is set to challenge jose aldo on july 11 . mcgregor grabbed aldo 's featherweight champion belt in dublin . click here for all the latest ufc news .\nsir nick faldo will play in the open victory for the final time at st andrews . tom watson will also cross the swilcan bridge for the last time this year . it will mark 25 years since faldo won the competition and 40 for watson .\nandrew hichens on call to deal with crimes , fires and medical emergencies . first person to be trained and equipped as a first responder to all 999 calls . emergency services brought together under one roof in hayle , cornwall . but devon and cornwall police federation chair called it a ` publicity stunt ' .\nguitarist sally jones , 45 , ran away to syria from chatham , kent , in 2013 . mother-of-two set up home in raqqa with toyboy husband junaid hussain . footage shows her leading fighters in arabic chants while waving ak-47s . experts say video is first ` real evidence ' she is involved with all-women al-khanssaa brigade at ` high level '\njeralean talley was born on may 23 , 1899 . she credits her longevity to her faith . inherited the title of world 's oldest person following the death of arkansas woman gertrude weaver , 116 , on monday . friends said talley remains ` very sharp ' and goes on a yearly fishing trip .\nvisited spartia in the south of kefalonia and then fiscardo , in the north . first , from villa hephaestus , could see lourdas bay and zakynthos island . charming local , family-run eateries were found throughout the island . nightlife is virtually non-existent , so spent energy exploring during the day . fiscardo , once a remote fishing port , is now a world-class yachting centre .\nstuart mccall has led rangers to three successive wins in recent weeks . triumphs against hibs and hearts won supporters ' approval . but he says he does not expect new contract talks until after play-offs . mccall stresses that rangers are yet to achieve anything despite revival .\nowner chernae noonan stopped benefit cosmetics from using ` brow bar ' the queenslander said her business was often mistaken as beauty giant 's . benefit cosmetics is run by french luxury goods tycoon bernard arnault . he is the 13th richest billionaire in the world and is worth $ 37.4 billion . benefit are appealing the decision made by australian trade marks office .\nangel di maria 's red card forced louis van gaal to look at other players . juan mata , marouane fellaini and ashley young have been in good form in recent matches . paul scholes says united are playing well when they have nothing to play for .\nthe pups were apparently discovered in a discarded shoe box on tuesday afternoon and taken to the humane society for immediate treatment . in a bid to save their lives , vets decided to put the young dogs with a surrogate cat . the pairing proved to be an instant success . as kit the tabby had recently nursed her own kittens , she was able to feed the puppies with her own milk .\nplanes were preparing to depart dublin for edinburgh and zadar , croatia . airline said they were under the instruction of air traffic control . winglet of one aircraft appears to have scraped the tail fin of the other . it 's the second time in six months two ryanair planes have collided .\nraheem sterling said he was not ready to sign a new liverpool contract . fans mantra at liverpool is that no player is bigger than the club . liverpool fans have grown frustrated with the ongoing situation . read : rodgers insists sterling will not leave liverpool this summer . sterling is not being disloyal in postponing contract talks , says pfa chief . click here for all the latest liverpool news .\njenson button suffering a third car failure of the weekend in bahrain . the brit ground to a halt with another electrical issue on saturday . latest glitch means the mclaren driver will be last on the grid on sunday .\nsamantha crossland admitted stealing more than # 22,000 from her friend . the 30-year-old was a manager at the child 's play nursery in dewsbury . she took the money from a cash box containing the children 's fees . crossland avoided a custodial sentence after the money was repaid in full .\nfreddie gray , who is black , asked for medical help but was denied during 30-minute police car ride , eventually paramedics were called . deputy police commissioner kevin davis conceded their failure . but chief commissioner refuses to resign over the death . six officers are suspended without pay during an investigation .\nernest hemingway credited for potent absinthe-champagne cocktail . the zombie has three types of rum , pernod , grenadine and a secret mix . bone dry martini is 100 per cent alcohol and also known as pass the bottle .\njose mourinho returned to chelsea in 2013 for a second spell at the club . the portuguese boss looks set to lead chelsea to the title this season . former defender paulo ferreira expects mourinho to stay for a ` long time ' ferreira followed mourinho to stamford bridge from porto in 2004 .\nattorney general holder reiterates justice department policy on prostitutes . soliciting prostitutes is banned , even in places where it 's legal , holder says . his memo comes weeks after a report involving dea agents and prostitutes .\nletter to state department in december 2012 asked about personal email . but there was no response until march 2013 - seven weeks after clinton left . reply did not answer query about personal email use for official business . latest revelation casts further shadow as clinton begins white house bid .\nluke shambrook was last seen leaving candlebark campground on friday . there has been an unconfirmed sighting of luke with police acting quickly . the 11-year-old was reportedly seen walking 4 kms from his campsite . police remain hopeful they will find luke , who has ` high pain tolerance ' . luke has limited speech and his family says he is probably confused . a large search is being carried by a medley of search and rescue teams . police also said conditions are favourable for his survival overnight . they have issued an extensive description of luke and his clothing .\nphil mickelson holds a one shot lead going into day three of houston open . mickelson has struggled for form , carding an 82 earlier in the season . tiger woods confirmed his participation at the masters on friday .\nthe hand-drawn flightplan for bombing mission on hiroshima is now for sale . unseen documents were kept by co-pilot of plane that dropped atom bomb . captain robert lewis was in the enola gay b29 bomber on august 6 , 1945 . remarkable drawings put to auction by his son expected to fetch # 300,000 .\nvictim was $ 7,500 behind on child support when michael slager shot him . had already been jailed three times for missing payments in 2011 and 2012 . there was nothing directing officers to bring him to family court . dashcam footage shows scott running from his car after being pulled over . minutes later officer slager shot him in the back in a nearby park .\nscott stephenson went through the pockets of man dying from the cold . he was due to be sentenced for theft but failed to turn up to court . at hearing today , 19-year-old was bailed again before sentencing . outside court , he shouted and swore in front of nearby diners .\njaime hessel claimed her driver cut across lanes and drove in a bus lane . the terrified passenger ended up getting out early as she felt ` unsafe ' then found she 'd been charged thousands for the 35-minute 7-mile trip . uber says the bill was a clerical error and claims hessel was never actually charged the eye-popping sum .\nmichael wilkie was found guilty in january of first-degree murder in january for the 2012 killing of his third wife , shelby wilkie . his second wife , amanda casey , has opened up about the abuse she faced before divorcing . casey said that he controlled aspects of her life and was physically abusive , particularly when she was pregnant . she even said she feared that michael wilkie would kill her . she said she never warned shelby wilkie , but told her she was there if she needed someone to talk to shortly before she disappeared .\nthe shooting happened at the back of herbs n spice in south shields . the victim has been named locally as tipu sultan who ran the takeaway . thought that two men on a motorbike , one driver and one shooter , targeted the food shop .\non tuesday , spacex made a third attempt to land booster on a barge . but the booster tipped over after hitting its target and was destroyed . new footage reveals how rocket overcompensated for its extreme tilt . falcon 9 today reach the iss with supplies for the astronauts onboard .\npsg face barcelona in the champions league quarter-finals on wednesday . laurent blanc says his side must not just focus on lionel messi . he wants psg to be ` agressive defensively ' to keep out luis enrique 's side . the second leg takes place at the nou camp on april 21 . read : messi could line up with cristiano ronaldo in uefa dream team .\nhamburg sacked joe zinnbauer in march with peter knaebel taking over . knaebel has now returned to his original post as sports director . club has been in talks with thomas tuchel but could not reach agreement . hamburg appointed former coach bruno labbadia on 15-month contract .\nthe ancient jewels belonged to novelist elizabeth jane howard . she is famous for the cazalet chronicles and marriage to kingsley amis . the collection includes ancient egyptian hair rings dating from 1550 b.c. howard , who died in january 2014 , often wore the jewellery . in total , the pieces , some of which are 3,500 years old , are worth # 20,000 .\nsensors in the optimal case track subtle changes in a phone 's temperature . micro-fans inside the case cool the phone down if it gets too hot . while built-in resistance coils gently heat the device if it gets too cold . case is launching on indiegogo this week , but prices have n't been revealed .\narsenal under-21s fell to a 3-2 defeat at middlesbrough on monday night . the gunners had goalkeeper deyan iliev sent off early on . he had brought down harry chapman in the box and a penalty was given . emmanuel ledesma scored from the spot before alex iwobi equalised . boro scored two first-half screamers to lead 3-1 through lewis maloney and yanic wildschut before daniel crowley scored on the hour mark .\nformer another level star dane bowers has been charged with assault . he is accused of hitting his ex-fiancée former miss wales sophie cahill . allegedly hit the model and gave her a bloody nose in front of her son . he will appear before magistrates next month to face the charge .\nswansea have lost all three games after an international break this season . set to host hull city in the premier league on saturday afternoon . garry monk 's side have been in the top 10 for the entire campaign so far .\nkalimah dixon of georgia lost condo and belongings in fire on monday . she said her children , aged one to 14 , now have nothing . mother of three girls and three boys said american red cross has helped . but , she said shelters turn the family away while she looks for place to live .\nthe bizarre incident happened on m74 near abington in south lanarkshire . sheepdog leaned on controls of tractor taking it from a field on to the road . incident caused tailbacks as police and the farmer recovered the vehicle . don 's owner tom hamilton was tending to a lamb when drama unfolded .\nthe reverend edward fride invited parishioners to take part in gun classes . tells churchgoers how police back lessons to gain concealed pistol license . fride is pastor at christ the king catholic church in ann arbor michigan . warns that crime has gone up in the area while availability of armed police response is down .\nus viewers will have to pay up to $ 100 -lrb- # 67.48 -rrb- to watch the fight . hbo and showtime confirmed recommended price of $ 89.95 -lrb- # 60.70 -rrb- hd surcharge of $ 10 could be added on by tv providers . sky box office will show fight in the uk at a cost of # 19.95 .\nmanchester united defeated city 4-2 in the premier league on sunday . wayne rooney has revealed plans to exploit blues ' work-shy midfield . champions are considering selling the likes of yaya toure and samir nasri .\nmore than 1.5 million people are displaced , including 800,000 children , unicef says . the kidnappings that inspired #bringbackourgirls were a year ago this week . unicef is launching a #bringbackourchildhood campaign .\namelia morton gained three stone in her first few months of university . the 23-year-old used to fork out almost # 5,000 a year on takeaway pizza . she was shocked into a post-graduation diet after her dad 's comments . amelia , now size 8 , says the cambridge weight plan transformed her diet .\ncase about zac evans , killed in machete attack outside pub in gloucester . tory mp accused of posting the tweets to ` ingratiate himself ' with voters . trial set for bristol but graham got it changed to gloucester constituency . later switched back and old etonian was ordered to remove the tweets .\nnicky morgan asks officials to start ` mapping the pressures ' on schools . education secretary says immigration is a ` big issue ' for voters . last year warned ofsted it was not ` helpful ' to talk about migrant ` influx ' .\nsudan is one of a handful of northern white rhinos left worldwide . as the only male , the fate of the subspecies rests on his ability to conceive with two females at a conservancy . experts are trying various ways , including in vitro fertilization .\nbenidorm officials said the resort was applying to reinvent its own image . ` it 's a symbol of harmonious coexistence , ' says sociology professor . mayor agustín navarro said ` it 's the best-designed city of the med '\nellie laing spoke out against claims of being hired for looks alone . the australian claimed jim carroll only employed pretty , anglo-celtic girls . the article claims sbs is having an ` attractive ' overhaul to boost ratings . it 's believed karen middleton sbs political reporter 's departure comes after she did n't ` fit the bill ' laing said article did not take into account decade of working ` damn hard ' told daily mail australia that reaction to her letter has been supportive .\nsatellite tv operator has ended the campaign after complaints by rival comcast that their claims could n't be substantiated . launched last october , the ads had featured rob lowe playing a slick directv customer and an ` odd or awkward alter-ego ' who had cable . number of inaccuracies highlighted concerning signal reliability , shorter customer service wait times , better picture and sound quality . directv claims the campaign was always going to end at the end of q1 .\nstephen a. smith said floyd mayweather jr 's boxing career should be looked at as separate from his domestic violence history . mayweather has been convicted twice for domestic violence in the past . smith said that people are ` lumping all of this other stuff that floyd mayweather allegedly has done ' , which sheds a bad light on him . co-anchor cari champion said she has ` an issue with how he treats women period outside the ring ' smith said she holds that position because she 's a woman and that as a boxing fan , he looks at ` two dudes strictly in the boxing ring ' .\nblock in bay ridge , brooklyn , got most complaints about noisy sex in the city with six in a year . building maintenance worker , 25 , admitted to daily mail online he was man at center of complaints when he went to see his older girlfriend . one complaint said woman was screaming ` oh yeah , oh , do it to me ' and frustrated neighbor said today : ' i can hear them all over the apartment ' he says : ' i do n't understand why - other people make louder noises ' and she says : ` i 'm not hurting anyone ' - and she 's four months pregnant .\ncandice swanepoel , elsa hosk and jasmine tookes promote underwear . candice leads her fellow models through an energetic routine in the video . models carry new victoria 's secret umbrellas , which shoppers can get free .\nneil phillips was part of sir alf ramsey 's backroom staff for world cup . phillips was a late addition to the team , after being promoted from u23s . he also worked with england for 1970 and 1974 world cups .\nadam johnson charged with three offences of sexual activity with girl , 15 . winger also facing charge of grooming and had been bailed until may 20 . sunderland chiefs held talks thursday night to discuss johnson 's future . read : johnson charged with three offences of sexual activity with a child . read : johnson 's sunderland future in doubt .\ntheresa dybalski , of lakawanna , new york , was given the lottery ticket inside a birthday card from a friend . her friend who gave her the card died shorty after she won . she received a lump-sum payment of $ 522,822 after taxes last month . dybalski plans on sharing the money with her and her friend 's family and plans to address ' a couple issues around the house '\nforeign-born blacks made up 3.1 per cent of the black population in 1980 . that number has been on rise and they were 8.7 per cent of group in 2013 . majority of immigrants are from jamaica , haiti , ethiopia and nigeria . black immigrants more likely to have college degree and have a higher income and are less likely to live in poverty than the us-born population . foreign-born blacks are now large part of population in nyc , dc and miami .\nms flanders was ` secretly ' dating labour leader when he first met justine . yesterday she confirmed story , tweeting : ` we `` dated '' fleetingly in 2004 ' miss flanders , 46 , accused the media of ` raking over ' mr miliband 's past .\ndelrea good of portage , indiana was charged with resisting arrest after she drove to a ` safe and well-lit area ' before pulling over . porter county sheriff 's department patrolman william marshall arrested good because she was ` uncooperative ' . marshall allegedly also accused her of having a controlled substance that turned out to be advil .\nchelsea are set to sign nathan from atletico paranaense for # 4.5 m . the 19-year-old brazilian was also wanted by manchester city . nathan first showed his talent at the under 17 world cup in 2013 . he has recently been embroiled in a contract dispute with his club . read : chelsea open contract talks with patrick bamford . click here for all the latest chelsea news .\n33-year-old stuart made the bizarre excuse to ex-girlfriend sophie . she told of the creative excuse for cheating during a tv appearance . but a red-faced stuart stormed on to the jeremy kyle show to deny it . the jeremy kyle show , weekdays at 9.25 am on itv .\ncarole cole , 17 , disappeared in october 1970 after running away from a juvenile jail in texas . her body was found in january 1981 outside shreveport , louisiana - but remained unidentified until this past february . carol 's sister made craigslist posts across louisiana and texas . at the same time , the bossier parish sheriff 's department created a facebook page for their ` jane doe ' body . a 911 dispatcher saw the craigslist post and made the connection . convicted murderer john chesson has been fingered as a suspect by his own daughter .\nchoosing the right punishment for a naughty child is a difficult business . some parents now resort to embarrassing their offspring to punish them . tactics include diy chores , embarrassing costumes and essay-writing .\ncompanies including philip morris and r.j. reynolds in suit alleging violation of free speech . in march , the fda issued guidance about changes to tobacco product labels . if significant changes are made to a product 's label , like color or a logo , the product requires new approval .\nofficials have said no evidence to support screening for group b strep . current guidelines only recommend testing women deemed to be ` at risk ' but screening at northwick park nhs hospital , london , resulted in not a single case of the bacteria spreading to infants . only recorded cases during the year affected babies of women who had not agreed to be tested .\nchris ramsey has overseen just one victory since he was appointed permanent manager in february . west ham 's sam allardyce and bournemouth 's eddie howe have both been linked with ramsey 's job in the summer . qpr face west ham at loftus road on saturday . click here for the latest queens park rangers news .\ne! plans to air a new jenner reality show this summer . it will follow his transition from male to female .\nandy murray faces novak djokovic in miami open final on sunday . set to marry fiancee kim sears in dunblane next saturday . british no 1 has lost nine of his last 10 meetings with djokovic .\npollsters questioned 1,001 british muslims and 1,001 non-muslims . eight per cent of british muslims have ' a lot ' of sympathy for jihadi john . however , 60 per cent strongly condemned the likes of jihadi john and isis . three quarters agreed that islam was compatible with the british lifestyle .\naaron murphy scored twice as huddersfield ended three-match losing run . former wakefield wildcats star has now scored six tries in his last five . murphy went over in the left corner on 15 minutes from jake connor 's pass . he was then on hand when ukuma ta'ai off-loaded kick from danny brough .\nthe fire was reported shortly after 6pm saturday in norco and corona . at least 300 homes had to be evacuated as the fire took hold in the area . rescue efforts were helped by cooperative weather throughout the region . fire chiefs confirmed no property damage or injuries were reported .\nsarah wilson admitted anxiety drove her to think about taking her own life . ms wilson has suffered from anxiety since she was a young girl . anxiety , stress , loneliness and a thyroid disease made her feel worthless . one in three australian women will experience anxiety in their lifetime . ms wilson said anxiety is quickly becoming the ` new depression ' .\nmary todd lowrance , teacher at moises e molina high school , turned herself into dallas independent school district police on thursday morning . dallas isd police said she had been in a relationship with student , who is older than 17 years old , for a couple of months . she confided in coworker who alerted authorities and police eventually got arrest warrant . lowrance was booked into county jail on $ 5,000 bond and has been released from the dallas county jail , according to county records . she has been on leave for several weeks while investigators worked on the case , police said .\npolice have issued a warrant for the arrest of a woman charged with bestiality with her dog . the woman failed to appear twice in a brisbane court of a strong of charges . the bestiality charges were laid after police checked jenna louise driscoll 's phone for suspected drug trafficking . they found three videos which allegedly show her having sex with a dog . the 25-year-old was due to appear at brisbane magistrates court on monday . she failed for the second time and police issued the warrant .\ntwo survivors were arrested on suspicion of human trafficking , police say . european officials propose a 10-point plan meant to address the crisis . a survivor tells authorities that migrants were trapped behind locked doors .\nadam leheup met his alleged victim at waterloo station in july 2013 . blackfriars crown court heard the pair went to gordon 's wine bar . leheup arranged to meet the girl after corresponding on ` let 's date ' app . he denies raping the girl after she invited him back to her camden flat .\ntheo walcott insists arsenal have shown the best form in europe this year . gunners earned eight successive premier league victories before 0-0 draw with chelsea . walcott believes arsenal must stay injury-free to win title next season . olivier giroud : i get p ***** about everyone talking about my hairstyle . read : arsenal fan gives girlfriend written exam on the gunners .\nwith nearly all voting precincts reporting results , emanuel had 55.5 per cent of the vote compared to 44.5 per cent for his opponent . mayoral candidate cook county commissioner jesus ` chuy ' garcia said he had called emanuel to concede . mayoral runoff was the first since the city changed the way it conducts elections about 20 years ago .\nno criminal charges against 86-year-old but alleged victims could sue . extent of disgraced peer 's dementia could be examined as part of cases . veteran politician accused of historic sex abuse dating back to 1969 . alleged he sexually abused young boys in care homes in leicestershire .\nwest ham manager sam allardyce is out of contract this summer . swansea city boss garry monk has been mooted as a potential replacement . but monk believes that allardyce is a perfect fit at upton park . monk 's swansea side are currently eighth in the premier league table .\njessica silva stabbed james polkinghorne outside her home in 2012 . ms silva was physically and mentally abused by polkinghorne . she claims that if she had not acted first she would have been killed . silva has sought forgiveness from his father and has reunited with him . while he ca n't understand why she killed his son he said he has ` no anger ' jessica was found guilty of manslaughter but had her sentence suspended .\ncharlotte bevan , 30 , walked out of hospital in bristol with daughter zaani . had come off risperidone used to treat illnesses including schizophrenia . miss bevan was advised by medics to stop taking the drug ahead of birth . coroner also said there were further questions for the hospital to answer . for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here for details .\nmichelle manhart , 38 , was handcuffed at valdosta state university , georgia . former usaf training sergeant took flag from campus protesters on friday . police arrested her for not giving it back because of how it was treated . manhart posed for raunchy military-themed playboy spread in 2007 . was demoted from her sergeant rank , and later left the military .\ntoo many carrots are making the nation 's spoilt pet rabbits overweight . pdsa has warned that more than half of pets will be obese in five years . charity 's pet fit club returns for a tenth year to help slim down porky pets . it has helped animals allover the uk lose the combined weight of 46 stone .\nnepalese authorities struggle with trying to coordinate a massive influx of international aid . relief organizations say lots of aid supplies remain stuck in cargo aircraft on the tarmac . damaged roads and infrastructure have hampered distribution efforts and rescue teams trying to access remote areas .\naimee craven , 32 , took home tesco product after spotting it on train . she had been travelling from hull to work in brough , east yorkshire . police used cctv footage to track down mother and questioned her . miss craven has been told it 's likely she will receive caution for theft .\nporto set a new standard as fans were draped in blue and white in midweek . gary neville and jamie carragher are often a better watch than the match . nico rosberg and lewis hamilton 's rivalry lacks personality . alastair cook probably should n't have gone to graham gooch for tips .\nthe james bond actor was given a ` license to save ' by u.n. secretary-general ban ki-moon in new york on tuesday . craig will spend the next three years raising awareness for the u.n. mine action service and political and financial support for the cause . just last month , craig walking cooly through smokey debris moments after a massive move magic explosion erupted on a mexico city street .\nrudy gestede has scored 20 goals in the championship this season . swansea and crystal palace have shown an interest in the 26-year-old . west brom and hull have all monitored the striker in the past . 6ft 4ins forward is valued at # 7million by blackburn rovers .\nthe 34-year-old convicted murderer posed for a new mugshot this week after she was sentenced to life in prison for killing her ex-boyfriend . in her first mugshot , taken after her arrest in 2008 , arias smiled and later said she did so on purpose because she knew it would be widely published . arias plans to appeal her conviction .\nsabrina moss was gunned down in a london street on her 24th birthday . fiona cullum , 25 , sheltered two of her killers as they evaded the police . two murderers and getaway driver were last year jailed for 111 years . but cullum was spared jail today and was handed a suspended sentence for harbouring a killer and perverting the course of justice .\ngirl , six , assaulted by boy of the same age at primary school in blackburn . school officials ruled that boy did not need to be removed from girl 's class . mother says she has now been forced to move daughter to another school . police can not bring charges as age of criminal responsibility is ten .\nconfirmed death sentences for muslim brotherhood leader and 13 others . american-egyptian citizen sentenced to life in prison by cairo court . found guilty of ` plotting unrest ' after ousting of president morsi in 2013 .\ntsa received more than 30,000 claims of missing valuables between 2010-2014 . most of the missing valuables were packed in checked luggage . miami-dade police set up hidden cameras as part of sting .\nlee cattermole returns from suspension for sunderland . but black cats without injured defender wes brown through a knee injury . knee surgery will see massadio haidara miss rest of the season . steven taylor , paul dummett , cheick tiote and siem de jong also out for newcastle united ahead of wear-tyne derby .\njon stewart announced the date of his final show live on air , joking he would ` wear a suit and shower ' . ' i live in a constant state of depression . i think of us as turd miners , ' he said . stewart also confessed that his ` moments of dissatisfaction ' with the show had started to become more frequent . comedian said he did n't have many regrets , but one was not pushing donald rumsfeld harder when he had the chance in 2011 .\n14 soldiers have been accused of abusing children as young as nine . investigation was started last year but was only made public yesterday . french defence ministry has denied covering up the scandal .\nover 30 premiership and championship games scheduled this weekend . more than half the games are set to be affected by delays and disruption . engineering works affect routes to london euston , hitting west coast line . labour say ministers have failed to learn from the boxing day chaos .\nstudy found many children do n't know the difference between 999 and 911 . nearly half of parents thought children were n't mature enough to know . mumsnet survey raises fear children are n't learning vital emergency steps .\nseries of model letters drawn up with carefully pre-crafted messages . tory candidates are told to praise teachers as ` the best we have ever had ' . women should be told they are ` vital to the success of the british economy ' pensioners , meanwhile , are praised for their ` wealth of experience '\ndavid meyler is confident hull will remain in the premier league . the midfielder has warned his team-mates they are facing tough period . hull are currently just three points above the relegation drop zone .\nbeginning friday , some ranks of the indianapolis police department will wear white shirts . police say the change in attire is not related to any specific incident . the new uniform shirt color is aimed at ensuring accountability .\ncatherine smith , 50 , was arrested tuesday at a bar in macon , georgia . after winning smith 's home in an auction , the new owner came to check out the property that day and found a dead dog just inside the doorway . police went on to find the decaying bodies of nine more dogs and three cats in the home which had a strong stench of ammonia . officials believe the animals had been dead for months . smith previously worked at macon-bibb animal welfare in 2012 , but was fired after two months for undisclosed reasons . she appeared in court for the first time wednesday to face 13 counts of animal cruelty and is now free on bail .\nthe 25-year-old former new england patriots tight end was sentenced to life in prison without parole on wednesday for murder . after the sentence was read , hernandez was taken to mci cedar junction prison in walpole to begin his sentence . the 700-inmate all-male prison is located just across the freeway from gillette stadium , where he used to play for the patriots . hernandez will be transferred in the coming weeks or months to another prison in shirley , massachusetts .\nlisa skinner shot a man now identified as her estranged husband bradley skinner after he unlawfully entered the house she shared with her mother . she opened fire with a shotgun while her mother ran to a neighbor 's house in huntsville , alabama and called 911 . police arrived on the scene and heard gunshots ring out as mrs skinner stood in the garage holding the shotgun . officers demanded that she drop her weapon but when she turned toward them with the gun in her hand at least one officer fired at her , wounding her . records show mrs skinner had taken out multiple protective orders against her husband ' i left in fear of becoming a victim of murder/suicide , ' she said .\nkumar sangakkara retired from one-day cricket after the world cup . sri lanka were defeated in the quarter finals by south africa . sports minister navin dissanayake has asked the test captain to play on for another year .\nsamantha rawcliffe , lost control of her body and crashed her car last may . days later she lost control of her bladder and was shaking uncontrollably . in september doctors diagnosed her with functional neurological disorder . she is incontinent and confined to her house unable to walk or drive .\na third of australian women are not making time for hobbies and passions . more women than men chose to forego their personal interests for work commitments or ` more important things ' in the last week , study finds . 85 per cent of geny survey respondents said they have also stopped pursuing interests that they are passionate about for work .\nkhloe kardashian posted a photo to instagram during monday night 's riots that said : ` pray for baltimore ' . despite getting over 400,000 likes , the post drew criticism that she was insincere and unable to relate to the issues due to her privileged background . other critics felt she should focus her prayers elsewhere , such as the victims of the nepal earthquake . just 30 minutes later she tweeted that she was : ` damned if i do . damned if i do n't ' , and asked : ` now it 's wrong to pray ? ' the instagram post has since been deleted . protests about the unexplained death of freddie gray have now spread to six american cities .\ntim albin of the tulsa county sheriff 's office quit his job on monday . follows killing of suspect eric harris , 44 , by reserve deputy robert bates . bates claims he shot harris by accident and meant to use his taser .\nrelatives of wayne community college shooting victim say he was gay , local media report . the suspect had worked for the victim but was let go , college president says . the suspect , kenneth morgan stancil iii , was found sleeping on a florida beach and arrested .\nraheem sterling turned down a # 100,000-per-week offer from liverpool . sterling has two years left to run on his existing # 35,000-a-week contract . the 20-year-old began his career at queens park rangers in 2003 . he signed for liverpool in 2010 after seven years with qpr . sterling was born in kingston , jamaica before moving to england . liverpool attacker wants to be known as ' a kid that loves to play football '\nexeter and gloucester will go head-to-head for place in inaugural final . winner will face either newport gwent dragons , london irish or edinburgh . david ewers helped his side into a 17-6 half-time lead .\nfresh questions have been raised over west ham 's olympic stadium move . it is suggested the upcoming move may contravene european state aid law . club confident deal does n't contravene domestic or european legislation . west ham chiefs ` categorically ' state that it does not constitute state aid .\nandy murray and kim sears will tie the knot on saturday april 11 . wedding reception will be held at tennis star 's hotel cromlix in kinbuck . biggest star likely to attend is one-time british tennis star tim henman .\nleicester claimed three premier league victories in a row for the first time since september 2000 . argentine forward leonardo ulloa scored the opening goal on 15 minutes before andy king netted a second late on . despite the 2-0 win over swansea the foxes are still in the relegation places on goal difference .\nplane was not full so one man decided to change seats . however , the move angered a fellow passenger who spoke out . row turned into fight , as passenger reports punches thrown . one man was taken away for questioning once landed at muscat .\nkyhesha-lee joughin died from bowel injuries in her father 's home in 2013 . she suffered a penetrative injury to her vagina and blows to her stomach . her father allegedly locked her in a room for so long she urinated and defecated on herself . her father and his friend , who lived in the house when she died , have been granted bail . both men will face a committal hearing next month .\nlisa mcelroy , 50 , who teaches legal writing at drexel university , reportedly sent the ` inappropriate ' message on march 31 . when recipients clicked the enclosed link , they were allegedly directed to a video of ' a woman engaging in a sexually explicit act ' david lat - a lawyer and legal commenter - suggests that the professor could have been ` hacked ' or made a ` copy/paste error ' along with teaching law , mcelroy is also an accomplished author with a number of published biographies and children 's books .\nthe items were originally given to a historian who opposed the camps , cnn affiliate reports . auctioneer hoped they would be bought by museum or someone who would donate them for historical appreciation . japanese-americans were furious about items from family members , others being sold .\nwladimir klitschko faces bryant jennings in new york on saturday night . tyson fury hopes his next fight will be against klitschko in september . british heavyweight champion convinced he can take the wbo title .\npresident barack obama is visiting jamaica . usain bolt said ` it was truly a great honour ' to meet the president . obama met the world-class sprinter when they did his signature pose . obama also gave a special mention to triple-world champion shelly-ann fraser-pryce and bolt while speaking during town hall meeting .\nmost of those released were women and children . freed yazidis sent to capital of iraq 's kurdish region .\nalison saunders sparked outrage when she ruled peer would n't face trial . lord janner will not be charged with crimes despite cps having evidence . it has emerged she trained at same legal firm where janner was top qc . country 's top prosecutor is now facing calls to quit from campaigners .\nnoah ginesi , 16 months , reached for a hug when prince charles appeared . a delighted charles chatted appreciatively to the boy 's mother genevieve . the encounter took place during a visit to the rheged centre in cumbria . charles is touring the county to promote his farming and rural charities .\nthe woman , who will be identified once she is charged , came forward on thursday night after the baby was found in a south carolina dumpster . police were looking for the woman after the hours old infant was found in the dumpster struggling to breathe on thursday afternoon . austin detray and his brother found the newborn in a plastic bag and said she was suffocating ; he also found the umbilical cord and placenta inside . baby girl is listed in stable condition in hospital and the woman will be charged once she is released from hospital .\nstaff were locked out of scooter 's coffee page starting at 5pm on sunday . hackers plastered feed with adult cartoons and links to explicit pages . happened after employee clicked on link purporting to be from facebook .\nfacebook group wants lucille ball statue replaced with a new one . mayor says he does not want to spend taxpayer money on fixing statue .\nprosecutor said michael and rosalia juskin had ` domestic issues ' . a relative , who was not inside the home during the apparent murder-suicide , discovered the bodies and called police . one relative claimed michael juskin was suffering from dementia and another said he was ` not well ' .\nleah rogers , 20 , and ryan flanaghan , 22 , bought bear in bude , cornwall . they realised it was one of 100 1st edition princess diana di beanie babies . range created in 1997 to raise money for princess of wales memorial trust . couple listed bear for # 20,000 on ebay and hope to raise money for house deposit .\nliris crosse , 32 , was rejected due to her ` voluptuous size ' took matters into her own hands and is now a top plus-size model . her idol was always naomi campbell and now she 's compared to her . was scouted by evans at plus size fashion week and is breaking uk .\nbrae carnes of victoria , british columbia is protesting an amendment to a canadian transgender rights bill . it would allow business owners to determine if they want to allow transgender individuals to use facilities corresponding with their gender . carnes has now begun posting photos of herself applying makeup and even changing in men 's public bathrooms . ` i 'm actively showing them what it would look like if that became law and how completely ridiculous it is , ' says carnes .\nradical claim made by dr milton wainwright from sheffield university . he used balloons to collect dust samples 25 miles -lrb- 40km -rrb- above earth . claims to have discovered ` alien organisms ' that test positive for dna . his research has been widely criticised by the scientific community .\nerica ginnetti , 35 , was sentenced to 30 days in jail , 60 more under house arrest , 100 hours of community service and three years ' probation . she pleaded guilty in a pennsylvania court in december to having sex with a 17-year-old student . she tearfully read an apology letter in court friday to provide closure for the teen . married mother of three said she has mended fences with her family and became a fitness instructor . a judge told ginneti her ` sexual hunger ' had devastating consequences for two families . she first approached her victim in may 2013 when she chaperoned the senior prom and invited him to come work out at her gym . two months later they met at starbucks and drove to an industrial park to have sex in her car .\npennyhill park has a 45,000 sq ft spa with 21 treatment rooms . celebrities flock to the award-winning hotel and spa . daniel craig and nicole kidman are among those who have visited .\nthe cocaine was seized by u.s. and canadian forces in 19 separate incidents in the eastern pacific ocean near central and south america . it included a 10 1/2 - ton bust from a coastal freighter , the largest maritime drug interdiction in that area since 2009 . u.s. navy and coast guard and royal canadian navy ships have seized more than 28 tons of cocaine valued at $ 848 million in the last six months . authorities have called it the most successful run for drug seizures in the area since 2009 .\nemerson decarvalho , 38 , is charged with assault with a deadly weapon . cyclist pounded on his window , screamed at him and pushed in his sideview mirror .\nafter decades of campaign the women 's crews are to make history . boat race set to take place on the river thames next saturday .\nliverpool and newcastle players took part in a minute silence . on 15 april 1989 , 96 liverpool fans were crushed to death at hillsborough . match at anfield took place two days before 26th anniversary . former newcastle captain bobby moncur laid flowers at memorial .\ndana marie mckinnon , 24 , charged with dui manslaughter and vehicular homicide . florida highway patrol says mckinnon , then 21 , slammed into minivan on vihn vo , 42 , killing him on the spot in may 2013 . mckinnon 's blood-alcohol level was more than twice the legal limit . vo was owner and ceo of vector planning & services , a company that provides it services to military and federal and state agencies .\npolling last night showed that the nationalists are extending their lead . snp are threatening to all but wipe out labour north of the border . but ed miliband refused to rule out going into a power-sharing agreement . sturgeon used tv debate to offer to ` lock cameron out of downing street ' .\nexpert identified man who fought with british troops as friedrich brandt . the remains are the first complete skeleton to be recovered from waterloo . a piece of wood , a spoon and a month 's wages turned out to be vital clues .\nandy murray and kim sears married at dumblane cathedral on saturday . his mother judy murray has revealed that she ` ca n't wait to be a granny ' tennis coach already has plans to introduce her grandchildren to the sport .\nstriker jay hart , 24 , was caught having sex with supporter after 4-1 defeat . he was filmed romping with mystery blonde in dugout wearing tracksuit . girlfriend bryony hibbert , who has two children , slammed creators of clip . mr hart has apologised after he was sacked from non-league clitheroe fc .\nthe nfl announced today that greg hardy would be suspended without pay for 10 games at the start of the 2015 season . hardy was convicted by a judge in july of beating , strangling and threatening to kill ex-girlfriend nicki holder . holder told police that hardy choked her , slammed her against a bathtub , threw her to the floor and threatened to kill her after a fight at his condo . charges were eventually dropped after holder could not be located when hardy 's lawyers appealed the decision and asked for a jury trial . he was forced to leave the carolina panthers as a result of these charges last season , but still collected his salary of roughly $ 770,000 a week .\nwendy l. patrick phd is the author of red flags : how to spot frenemies , underminers , and toxic people . dr patrick has outlined the five reasons the we fell for belle gibson 's story . belle gibson released a book and app about how she beat terminal cancer . this week she finally admitted she never actually had cancer . she explains that there is a bit of belle in all of us as we are born to bond . ` we were belle ´ s cheerleaders as she recounted her fight against cancer ' .\nphilippines voiced alarm about chinese ` aggressiveness ' in the south china sea ahead of war games with the us . president benigno aquino set to ask southeast asian leaders to issue collective denouncement of china 's activities . the aerial images show recent chinese construction over seven reefs and shoals in the spratly archipelago . ` concern is that the installations will give the chinese the ability to project force much better ' - rusi expert .\nhistorian eric cline at george washington university says a series of disasters between 1225bc and 1177bc led to downfall of ancient societies . he argues that as they all relied on each other for trade the collapse of one society created a domino effect that resulted in the start of the dark ages . he makes the claims in his book 1177bc the year civilisation collapsed .\nthe designer shared the snap to instagram on tuesday , her 39th birthday . she was reportedly ` furious ' after italian model ambra battilana , 22 , claimed weinstein had groped her during a meeting last month . on friday , the manhattan district attorney 's office announced it would not be bringing charges against the millionaire producer .\nwestern jihadis are ranked well below iraqi and saudi nationals by isis . they are forced to cook and clean for the more experienced fighters . to prove their worth and build a reputation , european fighters treat their prisoners with shocking cruelty and sadism . seen as the only way for inexperienced terrorists to climb the isis ranks .\nkellogg 's makes hundreds of millions from annual sales to british families . but latest figures show it effectively paid no corporation tax in uk in 2013 . uses complex legal tax manoeuvres involving subsidiary companies . but new measures introduced by george osborne set to close loophole .\nbritish airways pilots reveal their favourite plane views and where to sit . experience aerial shots of the grand canyon without forking out for expensive helicopter tours . sit on the right to see the incredible sydney harbour as you leave the city .\nindonesian president widodo warned it wo n't be long until convicted drug smugglers andrew chan and myuran sukumaran face the firing squad . the two australians will be put to death along eight other drug felons . three of them are currently awaiting the results of their appeals . president widodo said he will not get involved in outstanding appeals .\nlorenzo simon , 34 , forced tenant michael spalding to decorate his flat . but following an argument , mr spalding was stabbed and dismembered . simon found guilty of murder and has been jailed for minimum of 19 years . girlfriend michelle bird jailed for two and a half years for assisting an offender - but acquitted of murder .\nsinger-songwriter joni mitchell is still hospitalized . her longtime friend leslie morris wants to be appointed her conservator .\nmolly wood , 74 , killed when car with its engine running ` lurched forward ' the pensioner was killed in tesco car park in pontefract , west yorkshire . her younger sister was also injured as she went to get a parking ticket .\nkyle knox , 23 , disappeared as he tried to climb 4409-ft high ben nevis . he was last seen at start of route on march 31 but failed to return to hotel . his body was found near the foot of the peak three weeks after he vanished . the londoner 's family has been informed of the discovery .\nmathew sitko , 23 , crashed his car and ended up hanging over a cliff edge in lewiston , idaho in an 'em otional episode ' wednesday morning . jason warnock , 29 , was nearby when he saw the car above so he climbed up a footbridge and ran to the edge of the cliff and pulled the man out . he needed to leave to go to work but was tracked down after the picture quickly spread online .\nbilly-anne huxham was abducted from her caboolture home on tuesday . she was located on thursday night by police on aerodrome road . she was allegedly taken by 32-year-old ex-boyfriend carl garry chapman . chapman was reportedly carrying a firearm when he was apprehended . he has been charged with a string of offences including torture and assault . chapman , who was out on bail , is due to face the magistrate on saturday .\nin campaign video silverman said she was paid six times less than her male counterpart . but the tale has been exposed as a fabrication by club owner al martin . silverman has been forced to apologize and admitted story was wrong . she was only paid less because she was a guest and man was booked . said called critics who used issue to blast pay gap campaign ` maniacs '\nterry mccarty , 29 , suffered burns to 70 % of his body in childhood accident . endured 58 operations and taunts from bullies calling him freddy krueger . for years after accident he lived in ` constant state of fear and uncertainty ' he joined the fire service in 2012 after refusing to let ` fear take over my life '\ntories accuse ed miliband of stooping to a ` shameful ' new low in campaign . labour leader attacked the prime minister 's 2011 intervention in libya . said the refugee deaths were the result of the aftermath of the intervention . a briefing went further claiming they were ` direct result ' of pm 's decisions . comes after eu leaders agreed package of measures to tackle the crisis . mr cameron agreed to send a royal navy warship to the region within days .\nkfc opened 219 of its kitchens to hundreds of people on saturday . fast food giant hoped to dispel myths around the quality and freshness . move was designed to prove to customers the chain uses fresh chickens . tour skeptics expressed surprise at the quality of ingredients used . but health experts have warned consumers not to mistake good hygiene standards and ` freshness ' for healthiness .\non april 7 , thenga adams , flying from guyana in south america was arrested for allegedly smuggling $ 30,000 worth of cocaine in his sneakers . also this month a 70-year-old woman from guyana was nabbed allegedly trying to smuggle $ 73,000 cocaine in her panties and girdle . thenga adams faces federal drug smuggling charges .\nelizabeth sedway , 51 , has rare plasma cancer and was returning to california with her husband and two children from hawaii vacation . sedway shared video of her removal from alaska airlines flight on facebook . she said an airline representative took note of her because she was wearing a surgical mask and was sitting in handicapped section . sedway was told the airline was concerned she might collapse on the plane . alaska airlines has said it has refunded her tickets and will pay for her family 's overnight stay in lihue . sedway posted on facebook that the value of their tickets would go to study the blood cancer multiple myeloma , for which she is being treated .\ncarlos tevez has reportedly told juventus he wants to return to argentina . former manchester city star wants to play for former club boca juniors . club president daniel angelici urges striker to cancel his contract first .\nhail stones the size of plums crashed down over the south and midwest on tuesday with residents capturing the freak weather . along with hail , lighting and thunder also hit arkansas and parts of mississippi . according to the weather channel , the storms will move across the midwest on wednesday with st louis , louisville , memphis , indianapolis , little rock , oklahoma city and dallas hit hardest . on thursday the icy blasts are set to drift south , hitting cities including memphis , jackson and knoxville .\neva mozes kor , 81 , called for the prosecutions of former ss officers to end . she publicly embraced oskar groening in act of forgiveness last week . he 's standing trial for his alleged complicity in the murder of 300,000 jews . mrs kor faced criticism from her co-plaintiffs in the case for her views .\nthird-grade teacher cheryl heineman , 45 , accused of selling narcotics to undercover officer with her 20-year-old lover , jack lindsey . couple were arrested wednesday after six-week investigation sparked by tip from informant . heineman and lindsey allegedly had been peddling xanax , acid , ecstasy , and various prescription painkillers . veteran teacher is married and has three sons .\nandrzej fonfara stopped julio cesar chavez jr in nine rounds . carl froch had hoped to fight chavez jr in las vegas in a final swansong . froch has not fought since knocking out george groves at wembley stadium .\nlondon mayor receives kiss from a female fan and is left with lipstick mark . mr johnson urged voters to block farage in key seat of south thanet . in ramsgate visit he boasted that the polls were turning in tories ' favour . said he ` profoundly and passionately ' hopes to stop farage from winning .\njames anderson became england 's leading wicket-taker on friday . the 32-year-old believes he ` can still improve as a bowler ' anderson reveals he 's still learning despite playing 100 games for england . read : jimmy anderson shows quiet guys do win , says nasser hussain .\nac/dc drummer phil rudd pleads guilty to threatening to kill and drug charges . court summary revealed that rudd had ordered for his personal assistant to be `` taken out '' police found methamphetamine and cannabis in his new zealand home in november .\nvictims of the 2012 colorado movie theater shooting testified in court on wednesday as the trial of suspect james holmes continued . police officers who responded to the scene also spoke in court about the incident which resulted in the deaths of 12 moviegoers . if convicted , holmes could face the death penalty . his defense attorneys argue that he was insane .\nalix bussey , 23 , from durham was hit by a car and died on mexican holiday . she was visiting resort of riviera maya and said it was the ` best time ever ' family led tributes said alix had ` lived life to the full and loved to party ' her primary school students are said to be devastated by news of her loss .\ntwo jurors said a vehicle , believed to be from whdh-tv , trailed them . robert cusanelli told the court he made a ` mistake ' and acted on his own . allegedly watched as the group got into their cars in an off-site parking lot . insisted he did not take any pictures or speak to any of the jurors . jury finished their deliberations thursday without reaching a verdict . will return on friday as the ex-new england patriot player awaits his fate .\nthousands remain missing in nepal after a magnitude 7.8 earthquake struck . social media has helped people overseas tracked down their loved ones in nepal . technology has helped those stranded after the quake reach out for help .\nliverpool manager said raheem sterling is ` going nowhere ' this summer . brendan rodgers said club are a ` superpower ' and do n't have to sell stars . sterling in relaxed mood as liverpool trained on thursday morning . england star joked with daniel sturridge and shook hands with rodgers . sterling said on tv he is not ready to sign a # 100,000-a-week contract . rodgers said the bbc interview took everyone at club by surprise . contract talks look set to be dragged out to the summer . sterling admitted in interview he is ` flattered ' by interest from arsenal .\namerican eagle flight 2536 was scheduled to fly from dallas-fort worth international airport to wichita falls , texas , on sunday night . the plane was nearly a half-hour late in taking off . when it got to wichita falls , the pilot told passengers that the runway lights were turned off and there was nobody at the airport to turn them on . the city 's aviation director said pilots were notified of the closure and the jet could have landed on an adjacent , 10,000-foot runway that was lit .\nharvey weinstein was spotted looking chipper and pleasant outside his new york city townhouse on thursday . this exactly two weeks after model ambra battilana claims the movie executive groped her during a business meeting . no charges have been filed against weinstein at this time and he has cooperated with authorities . georgina chapman meanwhile has been busy working on her upcoming spring/summer 2016 bridal collection for her marchesa . she was joined by the couple 's son dashiell in her design studio on wednesday . the couple along with their two children all spent easter together at their connecticut home .\nchief executive of pret clive schlee allows employees to give out goodies . an insider revealed that being extra happy or sad helps secure a freebie . femail 's deni kirkova wore two outfits : plain and more glamorous . got a free coffee for each outfit - but a free cookie as well in her red dress .\nbodies of couple in their 20s found by locals in public park near new delhi . woman was wearing glass bangles traditionally worn by newlywed brides .\n53-year-old presenter , known as dr fox , faces nine separate charges . charges relating to children allegedly took place between 1991 and 1996 . other three women were allegedly attacked by fox between 2003 and 2014 . dj 's lawyers said he ` categorically denies each and every allegation '\nthe larung gar buddhist academy in china has basic amenities for the 40,000 monks and nuns who stay there . the secluded location is 370 miles from chengdu and has grown dramatically since its creation . tvs are banned , and the huts of monks and nuns are segregated by a winding road through the middle .\nprotesters clashed with anti-racism activists at rallies across australia . the anti-islam protests were against sharia law and the so-called halal tax . clashes turned ugly and several people required medical treatment in melbourne .\nsavannah baby levi jarrett millspaugh is this year 's first tax day baby at memorial university medical center . the other lucky winner was a baby named johnathan from atlanta . the babies were awarded $ 1,529 for college expenses , a donation made by path2college 529 plan .\ndenver bronco aqib talib and brother are being investigated for assault . talibs were reportedly involved in physical fight at club luxx in dallas . the vehicles they left in , a range rover and a jaguar , were impounded . man who called police said someone aimed at him before firing gun in air . dallas club manager refuted assault claim and said there was no gun shot . talib and mother were charged with assault with a deadly weapon in 2011 . they reportedly both fired multiple shots at the boyfriend of talib 's sister . the 29-year-old had charges dropped after that incident involving two guns .\nheather mack , now 19 , is set to sign over a ` significant percentage ' of her trust for the care of daughter stella . mack claimed in february her uncle denied her access to the $ 1.3 million . prosecutors in indonesia accused mack and boyfriend , 21-year-old tommy schaefer , of murdering sheila von wiese-mack at a luxury bali hotel . officials say the couple stuffed heather mack 's mother 's body into a suitcase . prosecutors have not sought the death penalty for mack or schaefer . stella is currently staying with her mother in the kerobokan prison in bali .\ndavid suchet is seeking better treatment for those with genetic diseases . 68-year-old 's grandson has rare condition tuberous sclerosis complex . suchet claims ` mismanagement ' in the nhs means todd is not receiving treatment that could help .\nmark-francis vandelli is a keen collector of expensive watches . the made in chelsea star has 16 timepieces in his collection . they come from high end businesses including cartier , rolex and bulgari .\nsydney tech journalist rae johnston is a passionate cosplay participant . she wears her signature wonder woman costume to children 's hospitals and various pop culture conventions . ms johnston will host the cosplay championships at this year 's oz comic-con - the official australian version of the san diego comic-con . famous californian cosplay artist abby dark star will judge entrants . over 20,000 people are expected to attend both perth and adelaide 's event .\nembalmers substitute parts of flesh with plastics and other materials . a mild bleach is often used to deal with fungus stains on lenin 's face . the body is covered in glycerol and potassium acetate every 2 years . at one time , 200 scientists were working to help preserve lenin 's body .\nfour men appear in court accused of brutal murder of mozambican . emmanuel sithole was stabbed and beaten to death in johannesburg . the attack took place in broad daylight and was captured on camera . anti immigrant violence has swept across south africa in the past week .\nharry kane became the youngest premier league captain this season . the tottenham striker skippered his side during 0-0 draw with burnley . kane still believes tottenham can qualify for the champions league .\n5,500 signatures call for jedi temple after similar petition asked for campus mosque . petition started by a student at dokuz eylul university in the western province of izmir .\namnesty international releases its annual review of the death penalty worldwide ; much of it makes for grim reading . salil shetty : countries that use executions to deal with problems are on the wrong side of history .\narsenal goalkeeper wojciech szczesny celebrated his 25th birthday . the poland international was surprised with a gathering of friends and family as well as one of his favourite bands , lemon , at his home on saturday . szczesny had helped arsenal reach the fa cup final after a 2-1 win over reading in the semis at wembley earlier that same afternoon .\nlaura bernardini is a lifelong catholic but had never read the bible from cover to cover . for the next year , she 's going to read every word , from genesis to revelation .\nteam needed to help decrease islamic state 's domination of the internet . role includes leaking messages about british successes to enemy . previously reported that brigade would be made up of 2,000 experts . it will now have just 454 regular and reservist troops , mos revealed .\nformer dreamworld employee claims she injured herself whilst working . zoe prince , 28 , worked on the tower of terror ride checking harnesses . she claims the repetitive motion and stressful working conditions resulted in a wrist injury . she has had two surgeries and claims she now has a permanent disability . she claims the business were negligent and did not give them enough breaks or a co-worker where required .\nneil bantleman , also a british national , found guilty of abusing three boys . sentence sparked outrage among supporters including the school itself . british embassy said there were ` concerns about irregularities in the case ' after verdict , bantleman vowed to ` continue to fight until truth comes out '\nfootage shot at domodedovo airport in russia . man curls into foetal positions as he whizzes round on conveyor . some passengers take photos , but most concentrate on spotting their luggage .\nfort hood shootings in 2009 were initially classed as ` workplace violence ' authorities later acknowledged that the attack was an act of terrorism . but victim staff sergeant shawn manning says he is being denied benefits . says military rejected claims his injuries were sustained in the line of duty .\njulian zelizer : in early weeks of the 2016 campaign , candidates and potential contenders have stumbled in small ways . he says chris christie 's words about social security and marijuana may haunt him .\nopenly-gay high school junior , anthony martinez , had reached his wits ' end trying to find a ` boy date ' in a bid to find a suitor for his may 2 dance in nevada , he tuned to twitter . he was over-joyed when his straight guy friend , jacob lescenski , stepped in to fill the spot . he was even more touched when his guy pal came up with an extra special promposal idea which has since garnered global attention .\nharry redknapp resigned from his role as qpr manager in early february . the 68-year-old blamed his decision on serious knee problems . but he now admits that other issues forced his to quit at loftus road . redknapp was frustrated with stories linking tim sherwood with his job .\nfrida kahlo was a mexican artist known for her self portraits . a new book focusing on her life includes a series of intimate photographs . the pictures were taken by french photographer gisele freund . they feature in frida kahlo : the gisèle freund photographs .\nhilary border , 54 , pleaded guilty to fraud and has been spared jail . she stole # 20,000 from dementia-stricken mother and spent it on herself . mother-of-three refused to pay # 16,000 in care home bills for dorothy , 83 . she has been spared jail and ordered to carry out 150 hours of unpaid work .\nrangers lost 3-0 against queen of the south on thursday night . stuart mccall : ` we 've got to make sure on sunday that we do n't have another set-back or then it can become a problem ' mccall is adamant confidence will not be dented by the 3-0 defeat .\nstudent is no longer on duke university campus and will face disciplinary review . school officials identified student during investigation and the person admitted to hanging the noose , duke says . the noose , made of rope , was discovered on campus about 2 a.m.\nimran uddin , 25 , used a keyboard spying device to obtain staff passwords . final-year student hacked into exam system and upped his own marks . he increased one of his bio-science grades from 57 per cent to 73 per cent . uddin admitted breaking computer misuse act and was jailed for 4 months .\nremy dufrene of raceland , louisiana drowned after falling into a drainage ditch tuesday afternoon . this after the toddler , 3 , ran away from his grandmother who could not catch up with him . his father searched for the boy 's body but it took him 15 minutes to find his son . the ditch is almost always dry according to the family , but was filled with water because of the recent rain in the area .\nmr justice popplewell says he has no reason to believe fire was n't accident . the former judge led the inquiry into the blaze at the bradford city ground . comes after survivor of blaze says tragedy might not have been accident . author martin fletcher says his findings warrant further investigation .\neden hazard scored the only goal as chelsea beat manchester united . leonardo ulloa struck as leicester city claimed vital win over swansea . everton beat burnley at goodison park with aaron lennon starring . craig gardner scored to help west brom win at crystal palace . stoke city won against southampton , with philipp wollscheid starring .\nreporter roger lohse was reporting on burning brush near miami , florida . cameraman noticed tiny black kitten being rescued behind him lohse . firefighters revealed kitten had been hiding in modelo beer box from fire .\nrichie gray will be sold if castres olympique are relegated from the top 14 . it has put glasgow warriors on high alert surrounding gray 's future . gray has one year left on his castres deal but could soon be released .\njustin rose goes into final day at 12 under par , four shots off the lead . jordan spieth is out in front , looking to win his first major . rory mcilroy paired with tiger woods in third from last grouping .\ngrace mann , 20 , was found dead in fredericksburg , virginia , last week . local reports say she had a plastic bag stuffed down her throat . roommate , a 30-year-old fellow student , has been charged with murder . parents paid tribute to her , and students rallied at memorial service .\nthe glasford school in illinois hosted one of several simulations put on by the american red cross to educate students on drunk driving dangers . the staged event on thursday used student actors playing accident victims and used real rescue personnel responding to the scene . in a graphic staged performance on wednesday at massapequa high school in long island there was a similar simulation .\ncharles n'zogbia turned up for training wearing flowery shirt and trousers . shay given described it as worst outfit ever as he mocked him on twitter . villa keeper posted a picture of n'zogbia 's outfit on social media .\nsalt card is designed to replace passwords and fingerprint scanners . automatically unlocks a phone when the card is within 10ft of the handset . gadget also locks a chosen device when it is moved out of range . creators claim the card will save users 53 hours a year in unlocking time .\naston villa 's jack grealish earned first premier league start this week . the ireland under 21 international renowned for keeping his socks low . grealish actually wears children 's shinpads underneath . and villa 's young midfielder says he will continue to do so .\nmike rogers , ellen tauscher : access to space has benefited u.s. national security . u.s. should not be reliant on nonsecure foreign supply chains , authors write .\nif you turned on the television this past sunday , a new vision of jesus came into view . darker , in mood and skin tone . earthy rather than ethereal . according to the apostle paul , almost every depiction of jesus so far has gotten at least one detail wrong .\ntulsa county sheriff 's office falsified robert bates ' training claim sources within the department . bates is officially an ` advanced reserve ' and has 480 hours of training . however , the sheriff 's department can not find the woman they claim did his firearms training . the names of the supervisors who did his field training have been redacted .\nthe evolo magazine awards were established in 2006 to recognise ` outstanding ideas for vertical living ' a jury of experts chose three winners and awarded 15 others with honorable mentions from 480 global entries . first place went polish design team bomp for its essence skyscraper with a range of natural habitats . other entries include a skyscraper made from scraps and the cybertopia project that blurs the lines between digital and physical worlds .\nexpansion of qinghai-tibet line would go under world 's highest mountain . chinese say they plan to finish the huge project within five years . if built railway will impact on india 's relationship with key economies .\nafrican students and car enthusiasts are creating eco-friendly cars . nigerian students will compete in an `` eco-marathon '' in may .\nsome wrote complaint letters to police accusing politicians of ` fly-posting ' one voter complained donors were promising free curry and hotel stays . details refer to by-elections in clacton , heywood and middleton , newark . also include rochester and strood , and wythenshawe and sale east .\njose anigo insists marseille fans would have loved to have seen zlatan ibrahimovic at the stade velodrome . anigo compared ibrahimovic to former man united striker eric cantona . cantona played at french outfit marseille between 1988 and 1991 . read : man united should sign ibrahimovic , says peter schmeichel .\ncreatures attracted by the higher sea temperatures . dozens of sightings reported by fisherman off devon and cornwall . jellyfish can grow up to six feet and weigh 55lb .\nliverpool take on blackburn rovers in fa cup semi-final replay . fa cup success appears to be final chance of glory this season . reds look set to miss out on champions league spot after recent defeats .\nformer arsenal star ellen white scored brilliantly against her old team . two county players appeared to mess up free kick , before white scored . but white also missed a penalty as arsenal equalised .\nfor the best bargain , head to eastern europe , specifically sofia , bulgaria . in new york city , the cost of a four-star hotel and room service is # 276.61 . meanwhile , the most expensive in-room club sandwich tallies # 21.73 .\njose mourinho is backing eden hazard for player of the year awards . the chelsea boss says that ` it should n't even be a debate ' mourinho believes other candidates like harry kane are not worthy . chelsea defender wallace , meanwhile , has been arrested . wallace is on loan at vitesse and was involved in a nightclub incident .\nin the first recording , an unidentified officer talks to slager about what might happen . the second audio captures a phone call between slager and someone cnn believes is his wife .\nreal madrid face atletico in champions league quarter-final on tuesday . atletico have won four and drawn two against real madrid this season . simeone looking to avenge last year 's champions league final defeat . atletico wo n't retain la liga title , but believe they can challenge in europe . read : fernando torres credits simeone as key to atletico madrid success .\nthe video app launched last thursday , but early adapters have already discovered potentially hair-raising issues with the technology . app developer justin esgar told daily mail online that periscope present numerous dangers to children . he warned that parents will have to ` try and control ' the various ` land mines ' present within the app 's system .\ncaroline wozniacki played tennis with us president barack obama as part of the #gimmegive campaign at the annual easter egg roll . the campaign aimed at promoting more active and healthy lifestyles among american people involved several celebrities . the event was broadcast on the popular american talk show live ! with kelly and michael .\npaul gilbert jokes he hopes ` off-piste ' remark will not get back to miliband . labour candidate in cheltenham also blasts party 's policy on tuition fees . says miliband vow to cut from # 9,000 to # 6,000 is ` entirely unsatisfactory '\nofficers were trying to stop suspects in a stolen black toyota friday night after they allegedly committed a series of armed robberies . the car struck and killed bridget klecker , 42 , in a crosswalk . car hit and injured a second pedestrian and struck a car before fleeing . car was found unattended later that night and three male suspects were still at large as of friday .\nisidro garcia , 41 , will stand trial for allegedly raping , kidnapping , then marrying the 15-year-old daughter of his live-in girlfriend . the alleged victim claims that she was brought from mexico in 2004 to live with her mother in california and that is when isidro began fondling her . isidiro allegedly kidnapped her and he warned she would be deported and separated from her mom is she called police . the girl was given fake id and a job but garcia prevented her from fleeing and assaulted her and later married her and fathered a daughter with her .\nrichard dysart best known for leland mckenzie in `` l.a. law '' dysart had many tv and film roles , including spots in `` being there '' and `` the thing '' actor won drama desk award for performance in theatrical `` that championship season ''\n`` we have the power and ... today shows we have the numbers , '' says a protester . the justice department is looking into whether a civil rights violation occurred . autopsy results on gray show that he died from a severe injury to his spinal cord .\nex-manchester city manager sven goran eriksson criticises former club . eriksson says city should have won the premier league with their squad . yaya toure wears snood in training during hottest week of the year so far .\nrichie benaud revealed late last year he was suffering from skin cancer . he had radiation treatment for lesions on his forehead and top of head . he used the chance to ` recommend to everyone they wear protection on their heads ' benaud had looked frail after suffering serious injuries in a 2013 car accident . after the crash and cancer treatment richie benaud was walking daily with wife daphne . he hope to get fit enough to return to the commentary box but never did .\ntory peer and former minister lord forsyth warns against snp attacks . he says the talking up the snp threat undermines future of the uk . comes as john major warns a labour-snp alliance will cause chaos . he said labour propped up by snp would mean high taxes and fewer jobs . a comres poll for itv news last night found the majority of the british public -- 54 per cent -- do not want miss sturgeon to play a role in the next government . some 59 per cent do not want the snp involved at all . .\nrare bird was heading from south america to breeding grounds in alaska . large shorebird - with long beak and spindly legs - last seen in uk in 1988 . over the weekend , more than 1,000 twitchers had lined the water 's edge .\n150 years ago on april 9 , confederate general robert e. lee surrendered at appomattox court house . douglas brinkley : the spirit of that event is something to keep in mind for today 's divided america .\nkevin pietersen scored a century for surrey against oxford mccu . the 34-year-old scored an impressive 170 off 149 balls . it was pietersen 's first hundred since the old trafford ashes test in 2013 . england begin their first test with the west indies in antigua on monday .\nmoutassem yazbek describes harrowing 12-day journey from turkey to italy . yazbek , a syrian refugee , paid a smuggler $ 6,500 to get him to italy in december .\nman called alex posted video on youtube of him talking to siri on his ipad . is told ` now you 're swearing obscenities ' when he asks about gay marriage . apple has reportedly put siri 's responses down to a ` bug ' which it has fixed . gay rights were set back in russia by 2013 law banning ` gay propaganda '\ncompanies will have to reveal names , ip addresses and residential addresses of 4,726 people who uploaded the film online illegally . this will allow the film 's copyright holders to seek damages or court action . internet provider iinet warned they could demand up to $ 7000 . justice nye perram ruled that individuals ' privacy must be kept and all letters from the copyright holder must be sent to him first .\nsarah , 30 , from los angeles , has come under fire for ` boasting ' about her toned figure throughout her pregnancy . followers regularly share their disbelief at her photos -- while critics have warned her healthy regime could be harmful to the baby . but sarah insists her frequent workouts and healthy eating are nothing but beneficial for her unborn child .\nbernie ecclestone has urged lewis hamilton to consider a move to ferrari . the 30-year-old has yet to put pen to paper on new contract with mercedes . the brit will seek to to extend his 13-point lead at the bahrain grand prix .\nbrazil extends ` deepest sympathy ' to family of executed brazilian . indonesia executed eight death row inmates early wednesday . australian pm calls executions `` cruel and unnecessary ''\ntwenty years ago , on april 19 , 1995 , timothy mcveigh set off a massive bomb in oklahoma city . deborah lauter and mark pitcavage : right-wing extremism should still be taken seriously .\na mom of two got upset when `` big hero 6 '' fabric did n't include the two female characters . another mom called attention to gender stereotypes on a toms web page . in both cases , the companies responded quickly to answer parents ' concerns .\nmaxwell morton , 16 , from pennsylvania , will be tried as an adult for shooting ryan mangan . mother of morton 's friend told police her son received snapchat image of him with victim - message had maxwell written across it . he admitted to shooting mangan after police found 9mm handgun hidden in his house . both teens were juniors at jeannette high school . morton was also charged with first-degree murder and one count of possession of a firearm by a minor . morton 's lawyer and family said the two boys were friends and there was no bad blood between them .\nandrew stewart wood , of havant , hampshire , was accused of urinating into the ice machine at the hard rock hotel in the early hours of tuesday . wood , who police said was ` extremely intoxicated ' , refused to stop shouting and return to his room at the universal orlando theme park resort . wood was charged with disorderly conduct and spent the night in jail . hard rock hotel confirmed ice machine removed for health and safety but was unable to say if wood was still a guest for ` security reasons ' .\nart and photography community , boredpanda has created the thread . babies are in costumes from comic books , sci-fi films , books , tv shows . characters include princess leia , wonder woman , olaf from frozen .\nangela kelly suffered the painful legacy of a lifetime wearing high heels . she had arthritis in her early 30s but would n't kick her heel habit . four years ago , at 63 , she had have a titanium knee replacement .\nrafael nadal lost heavily to novak djokovic on clay in monte carlo . djokovic is world no 1 and tipped to challenge at roland garos . but nine-time champion nadal says this year will be no different .\nbarcelona beat psg over two legs to progress in uefa champions league . pep guardiola and bayern munich showed dominance against porto . real madrid were indebted to javier hernandez against atletico madrid . juventus are playing their first champions league semi-finals since 2003 . uefa champions league semi-final first legs take place on may 5/6 2015 . click here to follow how it all unfolded .\nphilip kirby was jailed for eight years in 2011 for raping gemma redhead . the 32-year-old raped his former partner and mother of his child at knifepoint and was jailed and banned from contacting her for life . he was released from prison after three years and phoned ms redhead , who was left terrified and feeling trapped by call from her former partner . kirby has been returned to prison and will not be released until 2023 .\nhome where accused murderer vincent stanford , 24 , lived with his mother and elder brother is for sale for $ 179,000 . the three-bedroom home , which features a tin-roof , is located on a quiet , leafy street home to families and pensioners . it is now a hub of frantic activity , with forensics police seizing items of interest and checking for fingerprints . mr stanford was arrested at the property on wednesday night after police found discrepancies in his alibi . police reportedly discovered school keys believed to belong to bride-to-be alleged victim stephanie scott . daily mail australia understands the family have rented the fibro property for a little more than a year . an advertisement highlights the home 's appeal for local buyers seeking to escape the rental market . ` why burn your money ? rent money is dead money ... -lrb- requires -rrb- just a small deposit & repayments ' ms scott 's body has not been found but police are scouring irrigation channels and the bush for clues .\nthe cause of a gas line explosion in fresno , california , is unknown . two of the injured were undergoing emergency surgery .\nofficials at horace mitchell primary school in kittery point , maine , have come under fire for teaching students about transgender issues . i am jazz is about a child ` with a boy 's body and a girl 's brain ' who eventually finds a doctor that tells the family the boy is a transgender . officials at the school have since apologized to parents . allyn hutton , the superintendent of the local district , admitted that parents should have been first notified .\npm said voters were not ` fully sure ' about the tories at the last election . but mr cameron said the country would back the conservatives in may . the conservatives need another 23 mps to form an overall majority . he said : ` if i fall short of those 23 seats i will feel i have not succeeded ' .\nformer government advisor reveals no-nonsense child-rearing secrets . taught her babies to self-soothe by letting them cry in their own rooms . ex-wife of chris huhne was jailed for perverting the course of justice .\nsir stirling moss won 212 races during 14-year career before 1962 crash . he said half-bottle of wine and 77 press-ups a day were secret to longevity . the 85-year-old , who lives in london , now drives electric renault twizy .\nformer secretary of state will make her visit to the granite state as a proclaimed 2016 candidate this week . paul and other republican presidential contenders are in in town for a gop summit in nashua . the kentucky senator also took a swipe at the gop field : ` they all look alike , all sound alike , they all dress alike and nothing ever changes ' speaking about libya , he charged that ` they would have just done the same thing ten times over ' as president barack obama .\nwriter sisonke msimang said australians are being racist by denying there are no differences between races . msimang slammed tony abbott for cutting funds to remote communities . many of these communities comprise indigenous australians . she compared treatment of aboriginal people to south africa 's apartheid . she thinks australians need to recognise and celebrate difference rather than deny its existence . .\ntracey neville is coach of manchester thunder netball team . gary neville , phil neville and paul scholes appear in video to promote team . manchester united legends throw a netball and click along to music . england 's women 's footballers and coronation street stars also join in .\nandrew sadek , 20 , was working for a narcotics task force after being caught dealing small amounts of marijuana , according to a report . he went missing in may 2014 and then turned up dead under suspicious circumstances in june . his death raises questions about the use of young , low-level drug offenders as confidential informants . officials wonder if these people should be given more detailed information about the dangers of working as informants .\na new survey found seven in 10 people end up injured while doing diy . poll of 2,000 people found 68 % say they or their partner have ended up hurt . two in five said they injured their back and one in five had cut themselves .\nwarning : graphic content . graves were identified last week after ` dozens ' of id cards found nearby . cards belonged to army recruits massacred by isis in cold blood last june . forensic teams have already dug up 20 bodies and expect to find far more . ` we could n't prevent ourselves from breaking down in tears , ' says worker .\ngrayson hand , 5 , joined the huskies as part of team impact , which matches children with life-threatening illness with college teams . hand 's sister sophie , 7 , will be an honorary cheerleader . hand has been given his own locker and is welcome at every game and practice .\nthe british no 1 was edged out in a keenly fought contest which lasted two-and-a-half hours . vekic won 6-3 , 4-6 , 7-5 to eliminate the 16th seed . she will play either madison brengle or edina gallovits-hall .\nthe slow motion footage was captured in santa barbara , california . scott kaiser videoed the bird sitting on a post overlooking the water . pelican yawns exposing its beak size , tongue and inner bill anatomy .\nelderly couple accused graeme finlay of knocking them unconscious on boat . they claimed the attack on thomson celebration cruise ship was unprovoked . finlay , 36 , claimed he was the one being assaulted and was defended himself . teesside crown court jury took less than an hour to give not-guilty verdicts .\nphotographer captures the baby bear making the most of its mother 's thick fur by bedding down on it for a nap . the young family can be seeing playing in the water at kuril lake in kamchatka , russia . like with most babies , their exuberance leaves them exhausted so they all go for a quick afternoon snooze .\nford announced at a press conference on thursday that he will undergo a 8-10 hour surgery to remove a tumor on may 11 . he was diagnosed with malignant liposarcoma - a rare type of soft tissue cancer that begins in fat cells or fatty tissue - last year . he had refused to step down as mayor in light of his crack and alcohol binges , but the diagnosis forced him to give up the role . but he ran for his old seat in city council and won .\nzeynab daghastani , 13 , reportedly gunned down as she fled yarmouk camp . teen trying to get to nearby yalda district which is not under isis control . yarmouk , on the outskirts of damascus , has been under siege since 2012 . isis seized it ten days ago and have been butchering those trapped there .\njeffrey walker told jurors on tuesday that the philadelphia police drug squad targeted white ` college-boy , khaki-pants types ... easy to intimidate ' witnesses have said the squad stole as much as $ 80,000 at a time during illegal raids marked by threats and physical violence .\nwhat to expect if bernie sanders takes the presidential plunge . biden 's and kasich 's `` wait and see '' 2016 strategies . gop recruiting senate candidates for 2016 in nevada and colorado .\njade wimsey frittered away thousands on up to seven caffeine kicks a day . the 24-year-old ballooned to nearly 18 stone and suffered from cruel jibes . jade , from east yorkshire , is now a size 12 after crushing her addiction .\nrobert dellinger , 54 , allegedly tried to kill himself in december 2013 by driving across highway , but instead he killed a young couple . amanda murphy , 24 , and jason timmons , 29 , were killed instantly in the crash in lebanon , new hampshire . murphy was eight months pregnant with their first child , a girl . dellinger pleaded guilty in february to negligent homicide for their deaths , and to assault for the death of the fetus . he faces 12 to 24 years in prison when sentencing resumes on thursday .\nlaura smith charged with dui , public intoxication and child endangerment . was in her car in south memphis thursday night when a witnessed realized a little girl was driving . the girl , 10 , was not smith 's daughter , but they may be related . witnessed contained smith in a parking lot but she attacked him . police arrived and arrested her . the girl was returned to her mother and dcs were notified .\ndavid luiz pulled up in the 35th minute of ligue 1 's le classique . luiz was immediately replaced , and club confirmed a pulled hamstring . psg defender will have scans on monday , but could be out for weeks . barcelona meet psg on april 15 in the first leg of champions league tie .\nman , 45 , had a kidney weighing 6lbs -lrb- 2.7 kg -rrb- removed in a delhi hospital . his other kidney , weighing 5.5 lbs -lrb- 2.5 kg -rrb- was removed a week later . both kidneys beat the record of a 4.7 lbs -lrb- 2.1 kg -rrb- kidney removed in 2011 . he had autosomal dominant polycystic kidney disease -lrb- adpkd -rrb- , which caused his kidneys to grow to 20 times the normal size .\ncarlo ancelotti confirms gareth bale will sit out of the eibar clash . the welshman will join suspended stars toni kroos and james rodriguez . read : cristiano ronaldo will face eibar after yellow card is rescinded . real are four points behind barcelona in the race for the la liga title . click here for all the latest real madrid news .\nthe european union will accuse google of illegally abusing its supremacy . it could fine google more than # 4 billion - 10 per cent of its annual revenue . brussels to say it uses search engine to divert traffic to its own services . google boasts a 90 per cent share in europe 's search engine market .\ndavid worrall scored a 74th-minute free-kick after a foul by adam el-abd . southend united leapfrog bury to fourth place in league two . the initial fixture was postponed because of heavy rain . the shrimpers are behind third-placed wycombe only on goal difference .\nsiobhan o'dell , 17 , had been hoping to get a place at duke university . when she got a rejection email she decided not to take no for an answer . sent college email of her own , saying she could n't accept their rejection . message has gone viral and will even feature in duke 's campus paper .\njohnita due : the anger and frustration i saw in 1980 miami is repeated in 2015 baltimore . she says teaching the power of nonviolent protest is essential .\nclasico rivals could join forces for ` south ' dream team against ` north ' a marketing company has proposed the idea to governing body uefa . idea has been inspired by the annual nba all-star games in basketball . likes of neymar , zlatan ibrahimovic and sergio aguero could also feature .\na handful of current and former female cia employees spoke out to the new york times about the portrayal of women in the agency . they take issue with characters like homeland 's carrie mathison and state of affairs ' charlie tucker who act as honey-pots to thwart terrorist plots . ` it can leave a very distinct understanding of women at the agency that is pretty off , ' longtime cia analyst gina bennett said .\nreal madrid host granada at the bernabeu in la liga fixture on sunday . james rodriguez -lrb- colombia -rrb- , toni kroos -lrb- germany -rrb- , gareth bale -lrb- wales -rrb- , cristiano ronaldo -lrb- portugal -rrb- and luka modric -lrb- croatia -rrb- all available . lionel messi in barcelona squad to play celta vigo after foot injury . inter milan draw again in serie a while ac milan continue resurgent form .\ntravis hatfield , 21 , from west virginia performed with his 47-year-old uncle . their video went viral with more than 410,000 views . the singer says he is how receiving offers from record labels .\nbiologists at the hebrew university of jerusalem in israel used high speed videos of octopuses crawling over objects to study how the animals move . rather than pulling themselves along they use their legs to push instead . they can move in one direction while their bodies face a different direction . the findings could help scientists develop new types of rescue robots .\nxiao zhengti , five , born with liver condition which caused organ to swell . needed first transplant from mother yang haiying at nine months old . but body rejected organ , leading to four years of repeated hospital visits . yesterday father xiao kunqing was also allowed to donate part of liver . boy is now expected to make a full recovery and be home within weeks .\nclinton 's signature black customized van was parked in a spot reserved for the disabled in council bluffs , iowa . hillary walked right past an unmistakable blue parking sign to climb into the van , nicknamed ` scooby ' meeting inside cafe lasted 90 minutes and was reportedly so sensitive that democratic party insiders were told to hand over cameras and cell phones . secret service are technically federal law-enforcement officers and the vehicle is never left unattended , so there was no chance of a parking ticket .\nsania mirza and martina hingis won the family circle cup in charleston . the doubles pair beat casey dellacqua and darija jurak 6-0 , 6-4 . mirza is the first indian female to top the doubles world rankings .\nkathleen blomberg was forced to leave her beloved pets behind when she fleed her apartment after the gas explosion last thursday . she was finally reunited with kitty cordelia and sebastian on wednesday . the aspca had found the two tramatized cats hidden under blomberg 's bed in the abandoned home . ' i have no words , because , i mean , they 're my children , ' said an emotional blomberg following the reunion .\nnew feature has been rolled out on twitter 's website and iphone app . lets users embed tweets within their own messages and comment on it . tool means longer tweets , as a comment can be 116 characters long . response has been mainly positive to the new feature online .\nharis vuckic has spent second half of season on loan at rangers . slovenia star has been a success at ibrox with six goals in 10 games . newcastle may decide to sell him with one year left on his contract .\njack dellal left his entire estate to wife ruanne but it was worth just # 15.4 m . she claims he was worth # 750m and gave his fortune away to his children . mrs dellal has been given the right to sue her in-laws by high court judge . ` black jack ' once gambled # 1.7 million away in a single night .\nsimon wood , 38 , from oldham won masterchef last friday . father-of-four got cooking skills by feeding culinary creations to his kids . the award-winning chef says one of his favourite meals is a plain omelette .\nkim richards , who will tell her story to dr. phil tomorrow , is now in a malibu rehab facility . the star was out of control when she was arrested at the beverly hills hotel april 16 . she admits to dr phil that she drank a big glass of vodka at her daughter brooke 's house before she got in her car to return home . feeling woozy , she stopped at the hotel and went straight to the polo lounge . she claims the bar was closed and she did not drink any more . but when she went over to chat with a couple of strangers , the maître d' got testy . when he accused her of trespassing and threatened to call police , she flipped out .\npeter hamilton intervened after woman emerged from a home in toronto . she said a man armed with a gun and a knife had held her for five days . victim started screaming for help when the suspect fell asleep inside . 43-year-old rejean hermel perron has been charged with multiple offences . detectives working on the case believe there could be further victims .\nmatthew colvin , 26 , was behind bars on tuesday in southhaven , mississippi , and will be extradited back to memphis on wednesday . elton john 's iconic glasses , which have been valued at $ 2,000 , were found in a mailbox in southhaven , mississippi . the glasses , which were on loan from a private collector , will be back on display on wednesday .\nthe average briton eats four servings of cheese a week , study reveals . three in ten workers tuck into cheese sandwiches for their lunch everyday . mozzarella and red leicester are second and third favourite cheeses in uk .\nan australian woman finds a ring while snorkeling in bali . words engraved on the antique ring give clues to its owner 's identity .\nharry dowd played a key role in fa cup triumph over leicester city . dowd continued working as a plumber during his professional career . the former keeper scored for city , playing outfield after breaking his thumb .\neric cantona stars in a french film called ` you and the night ' . the film includes a scene with cantona on all fours in just his pants . the former manchester united midfielder says it is not a porn film . cantona says of the film : ` it 's a piece of art ... it 's beautiful ' read : cantona whipped in film based around an orgy . cantona : man utd will be in title race next season under louis van gaal .\nnewcastle had more than # 34m in the bank at end of last financial year . the club announced record profits last month of # 18.7 m for 2013/14 season . the revelation infuriated fans who claim mike ashley has little ambition .\nleeds united travel to charlton athletic on saturday in the championship . mirco antenucci , giuseppe bellusci , dario del fabro , marco silvestri souleymane doukara and edgar cani have withdrawn from squad . understood that neil redfeard and physios were not aware of the injuries .\ntoni duggan posted a photo to instagram of her with louis van gaal . van gaal was enjoying celebratory meal after united 's 4-2 derby win . manchester city player duggan apologised and removed the photo .\nfirm to pay citizens advice # 7.75 m after incorrectly imposing exit fees . refunds for 40,000 customers affected in january 2013 and january 2014 . ofgem brands e.on ` absolutely unacceptable ' for failing to protect clients .\njacob phillips plunged down cliff after leaping over a fence in the dark . got out of the taxi to ` use an atm ' before running away , inquest heard .\ncesc fabregas was caught by trailing arm of stoke city ace charlie adam . former barcelona man picked up the injury during chelsea 's home win . midfielder adam scored wonder goal during the game but it was n't enough . fabregas took to instagram to show he was all smiles despite the bruises . click here for all the latest chelsea news .\nralph body was once a beloved figure at the front desk of the building 27 on 27th in queens . the concierge says he was fired last week and now believes it was because he was too willing to help affluent tenants -- even after his shifts . some tenants are gathering signatures to get 41-year-old body reinstated as the building 's ever-effervescent doorman .\nnathaniel clyne has been in impressive form for southampton this season . full back has been linked with a move to manchester united this summer . clyne admits he is ambitious and wants to play in the champions league .\nshipping company representative denies cargo ship caused the capsizing . unhcr spokeswoman tells cnn that a cargo ship may have touched the migrant boat . italian authorities have arrested two survivors on suspicion of human trafficking .\ncult us shows like the big bang theory will be axed for 12 hours on may 7 . instead , e4 will show a special advert encouraging people to vote . the radical move could have a significant impact on the election . e4 is the most popular channel for 16-34 year olds , watched by 8.7 million .\nantonio nuñez , 59 , was arguing with girlfriend at 4am at home in texas . it escalated and he stabbed the woman in the backside with pitchfork . she pepper sprayed him , called 911 , is in hospital recovering .\nandre ward sees paul smith as the ideal warm-up opponent . it could possibly come before a ward rematch with carl froch . ward has not fought since beating edwin rodriguez in november 2013 . froch is turning his attention a first appearance in las vegas .\njohn terry has started in each of chelsea 's 33 premier league games . terry 's personal best is 37 premier league appearances in 2009-2010 . jose mourinho hailed terry 's performance during 0-0 draw with arsenal . the 34-year-old made just 14 appearances for rafa benitez during 2012-13 . read : chelsea captain terry is premier league 's greatest ever defender .\neaster is a key event in the christian faith , but where did the easter bunny come from ? why is the date different every year , and what does it have to do with the moon ?\na protective dad made a t-shirt for his daughter showing him with the message : ` stay clear boys , this is my dad ! ' the image was first posted to reddit and has since been shared tens of thousands of times .\nwidow of slain bell gardens mayor lyvette crespo pleaded not guilty and was ordered held on $ 150,000 bond . the 43-year-old told authorities it was in self-defense after her husband punched their teenage son when he tried to intervene in the fight . her former brother-in-law claims that allegations of years of abuse are all a lie and says he has text messages proving the slaying was in cold blood . crespo faces up to 21 years in state prison if convicted .\nthe show entitled the seven year switch is an eight episode series in which couples live , eat , and even sleep with a new significant other . the show 's concept is based on the idea that after seven years of marriage , spouses often become restless and regret their decision to wed. . after the switch is complete the couples will be able to decide whether or not they want to stay together or be with someone else .\nnatasha , 24 , and patrick jackson , 22 , were both left brain damaged at birth . they 're severely disabled , suffer cerebral palsy and natasha has epilepsy . she is wheelchair-bound and relies of nurses to help her dress and eat . mother , paula mckay , has won a # 13 million legal battle for compensation .\nnuku vanonyi cudjoe-calvocoressi , 41 , taught politics at a public school . he was caught indecently exposing himself to a woman on a train . cudjoe-calvocoressi has been banned from teaching following hearing . he was also told to sign the sex offenders register for five years .\nhouse prices tipped to fall by up to 10 per cent in some states with economists predicting a housing surplus in 2017 . goldman sachs predicts population growth will slow to 1.25 per cent over the next three years creating oversupply . biggest hit will be in markets where construction supply has been strong , such as inner-city melbourne and perth .\nin november harold henthorn was charged with murdering his second wife in criminal trial which will also hear that he killed his first wife . both died in freak ` accidents ' to which he was sole witness and fbi spent months investigating second death before he was charged . in both cases , henthorn was the sole beneficiary in a string of lucrative life insurance policies . his first wife 's sister-in-law , grace rishell , said that henthorn took out a $ 400,000 life insurance on her . henthorn reportedly forged her signature and made himself sole beneficiary . rishell believes she could have been the next to die in ` freak accident ' .\nlewis hamilton features on front cover of the may issue of men 's health . formula one champion opens up about the meaning behind his tattoos . hamilton discusses faith and the physical demands of being an f1 driver . hamilton : ferrari ? do n't be silly ... i am staying with mercedes . click here for all the latest news from the world of formula one .\nss city of cairo sunk by u-boat en route from bombay to england in 1942 . 100 tons of rupees belonging to the uk treasury thought to be lost forever . finally tracked down by british-led team using powerful sonar and robotics . recovered from a depth of 17,000 ft -- some 4,500 ft deeper than the titanic .\natletico madrid 's arda turan fouled sergio ramos in the 76th minute and received a second yellow card . the visitors were forced to play with 10 men at the bernabeu for the final 15 minutes with the game at 0-0 . real madrid had dominated possession in the champions league tie before the sending off . javier hernandez scored the winner for real with his first champions league goal for 895 days .\ngoogle is said to be in talks with hutchison whampoa , which owns three . global network will let users make calls in any country at no extra cost . google 's sundar pichai confirmed rumours of a network in february . instead of building masts google is said to be looking at becoming a mobile virtual network operator -lrb- mvno -rrb- .\nstars such as katie couric and christina applegate praised the 58-year-old actress for revealing her diagnosis in a statement on tuesday . she explained that doctors initially failed to find the cancer but that it was discovered after she sought out a second opinion . she underwent surgery last week with hanks by her side and she is expected to make a full recovery . wilson took medical from the broadway play ` fish in the dark ' earlier this month but is expected back on stage in may .\nafter splitting with prince harry last spring , cressida is happier than ever . will star alongside judi dench and cara delevingne in upcoming film . claims rumors she was engaged to marry the prince were just ` noise '\ncharlie bothuell , now 13 , was discovered in detroit basement last june . blanket , cereal box and a bowl of chicken bones were in room with him . on tuesday , charlie testified in court against his father and stepmother . said home was ` very terrible place to be ' where he was regularly beaten . claimed he was tormented with workouts and isolated from other kids . he attempted suicide in bid to escape abusive conditions , he told court . it is first time charlie has spoken publicly since he was found by police . hearing is meant to determine if there is enough evidence to send the youngster 's father and stepmother to trial for ` torture and child abuse '\na magnitude-7 .8 earthquake struck nepal on saturday . colin stark : we knew this disaster would come .\nrebecca sedwick took her life in september 2013 and her family and authorities said she had been the victim of online bullying . a month later , the polk county sheriff 's office said she died after ` malicious harassment ' from katelyn roman , 12 , and guadalupe shaw , 13 . but the charges were dropped as they found no evidence of messages . now the youngest girl 's family has filed a lawsuit accusing the sheriff and a deputy of using rebecca 's death as an ` opportunity for media attention ' the sheriff 's office said the claims have ` no merit '\nbody discovered in pontypridd flat identified as tracey woodford , 47 . she is believed to have been attacked in woodland before going to the flat . her body was discovered with ` massive injuries ' yesterday afternoon . man named locally as christopher may , 50 , was arrested over the murder .\ndiego simeone 's atletico madrid lost 1-0 against their great rivals real . sportsmail 's jamie carragher feels simeone 's style of play would not appeal to premier league giants arsenal , manchester united or city . only a late javier hernandez goal separated the madrid neighbours . read : thierry henry hits out at hernandez for celebrating late winner . click here for the lowdown on the uefa champions league final four .\nfrankie dettori to focus on the british flat racing season this summer . gregory benoist chosen to ride in france by sheik joaan al thani . ap mccoy will ride his last scottish grand national on benovillo on friday .\nboris johnson said he hopes to be considered for tory leadership after pm . but london mayor insisted position would not become vacant for 5 years . david cameron named mr johnson as one of three potential successors .\ngwyneth , 42 , and chris , 38 , consciously uncoupled in march 2014 . they married in december 2003 and have two children together . have used their business managers to work out a settlement agreement .\nbritish golfer charley hull has all the attributes to be one of the best . the 19-year-old has the same ` wow factor ' as rory mcilroy at the same age . hull is part of an exciting group including thailand 's ariya jutanugarn and american lexi thompson .\nrspca south australia published photos of the poor living conditions . the cat owner , who was prosecuted for animal cruelty , lives in adelaide . the pet owner has been fined $ 500 but his identity is yet to be revealed . he pleaded guilty to a charge of failing to provide appropriate and adequate living conditions for the cats at the property . the court granted him the return of two of his cats but the third remains in the rspca 's care .\nmarseille manager marcelo bielsa has previously been nicknamed ` el loco ' . bielsa 's bible says : ` running is commitment , running is understanding , running is everything ' . marseille face psg at home on sunday night in ligue 1 title clash .\nphil jagielka visited chaophraya restaurant with sponsors chang beer . the everton skipper had a cookery lesson with thai chef kim kaewkraikhot . england defender jagielka was pleased that he ` did n't burn anything down ' . the toffees take on swansea on saturday looking for a fourth win in a row .\nauctioneer gave painting an estimated value of between # 300 and # 400 . it was thought to be the work of a follower of renaissance master el greco . but final price suggests unsigned work may have been done by the artist . painting of saint was acquired by owner 's father in the 1970s for very little .\nformer australia captain and commentator benaud passed away aged 84 . david lloyd had the privilege of commentating alongside benaud . benaud 's attention to detail was second to none , says lloyd . he had an incredible relationship with tony greig and bill lawry . read : benaud 's family offered state funeral by tony abbott .\njeffrey toobin : scotus to decide same-sex marriage as u.s. largely in favor . did framers intend this ? that does n't always matter . he says originalists on the court may hew to conservative view , but most of the justices have given clues that they see writing on wall .\n108 countries were ranked according to percentage of female managers . over half of bosses are women in colombia , jamaica and saint lucia . britain comes in at 41 out of 108 countries , with only 34.2 % women bosses .\noklahoma jury convicted 17-year-old chancey allen luna of first-degree murder in 2013 killing of christopher lane . luna is expected to be sentenced to life in prison without parole . oklahoma teen shot lane , an australian baseball player , in the back from moving car as victim was jogging in duncan august 16 , 2013 . defense claimed luna only meant to scare lane , not kill him . convicted killer told reports he was ` sorry ' as he was being led out of courtroom in handcuffs . lane 's mother , donna lane , said she was glad the ` naughty boy ' will never hurt anyone again .\nman also followed three other women on the night of the attack in leeds . one woman was forced to flee by bus while another went and hid in a shop . he later brutally raped an 18-year-old who had been waiting at a bus stop . hit her on the head with a rock 20 times before dragging her into a garden .\nzayn and perrie 's relationship has been dogged with cheating rumours . zayn has been accused of sleeping with several different women . much like ashley cole who was accused of cheating on cheryl cole . cheryl and ashley - who were married for four years - divorced in 2010 .\ntwo-inch long pistol is the world 's smallest fully-functioning revolver . tiny gun fires purpose-made bullets that are just 2.34 mm in diameter . weapon was created by paul erard in the swiss city of la chaux-de-fonds . each gun costs a staggering # 300,00 to make - but is on sale for just # 4,500 . but new owners will require gun and export licences before they can buy it .\ntulsa county sheriff 's office reserve deputy robert bates faces a charge of second-degree manslaughter for the april 2 shooting of eric harris . records include training certificates , job evaluation reports and weapons training and qualification records dating to 2008 . some of the records seem to indicate bates was proficient in firearms and dozens of other training courses . he kept his taser near his chest and his gun on his right side - but insisted the mix-up could have happened to anyone . bates said he had completed all proper training and was not allowed to ` play cop ' just because he had donated equipment to the sheriff 's office .\nappleinsider spotted nine listings in the past month relating to batteries . these include one for an ios battery life software engineer and another for ios software power systems engineer . apple significantly improved the battery life on its iphone 6 and 6 plus . but it has been criticised for phones and tablets that only do n't last a day .\nisraeli law says the prime minister must form his government in less than 42 days . netanyahu cites government stability and reaching `` agreement on important issues '' as reasons he needs additional time .\nracially-charged and offensive emails from ferguson released after public records request . two ferguson police officers resigned over racist emails . city 's top court clerk was fired .\nfour sisters were at the centre of an international custody dispute . vinceni girls were sent back to live with their father in italy in 2012 . they were dragged kicking and screaming from their sunshine coast home . distressing scenes were shown on tv causing great hysteria and concern . 60 minutes exclusively interviewed the girls at their home near florence . the two eldest , emily and claire , speak of their regret of dramatic exit . their mother has not visited them in italy but speaks to them everyday . 60 minutes will screen nationally on channel 9 at 8.30 pm sunday , april 12 .\nunderground city was discovered in otherworldly region of cappadocia . it is believed to consist of at least 3.5 miles -lrb- 7km -rrb- of tunnels and rooms . geophysicists studied a 1.5 mile -lrb- 4 km -rrb- area using seismic tomography . study suggests underground corridors may be 371ft -lrb- 113 metres -rrb- deep .\nmelbourne penthouse apartment was sold to chinese businessman for $ 25 million . penthouse is in australia 108 development at melbourne 's southbank . the 750 square metre apartment is spread across entire 100th floor of super skyscraper . the building will be 319 metres tall - the highest in the southern hemisphere . construction has started on the building and is due to be complete in 2019 .\nfunding increased to # 7m a month for eu 's border patrols in mediterranean . plans lined up for eu militaries to strike against boats used by traffickers . british warship and german supply ship heading to the region within days . italian prime minister matteo renzi called measures ' a giant step forward '\nbayern director matthias sammer is worried about average age of squad . sammer insists the bundesliga giants must blood ` new generation ' philipp lahm and bastian schweinsteiger are both in their 30s .\njosh harrop scored twice as manchester united came from behind to win . reece oxford headed west ham ahead before hosts scored twice . jordan brown leveled before the break , but harrop pounced to earn win . adnan januzaj captained the side as they went four points clear at the top .\nbryan morseman , of bath , new york , won marathons on march 14 , 15 and 22 . the 29-year-old 's winnings went toward medical bills for his nine-month-old son , who has spina bifida , a developmental congenital disorder . the disorder develops in the womb when a baby 's spinal column does n't form properly . morseman said his son leeim gives him inspiration to run the races . he has won 23 of the 42 marathons he 's run since his first in 2008 .\nwilla junior took a nap in the cargo hold of a plane at seattle-tacoma airport on april 13 , and woke up after the flight to los angeles took off . the baggage handler , who appears to be in his 20s according to facebook , tried calling his company and 911 but his phone eventually failed . he says he was afraid he might die , so he texted his mother a message , telling her ' i love you ' . in a last ditch effort , junior started banging on the ceiling of the cargo hold and his yells were so loud that passengers and crew heard . the flight was turned around after just 14 minutes in the air and returned to seattle where junior was rescued . junior is still employed at his company , but is no longer allowed to work on alaska airlines flights - one the largest airlines that fly out of seattle .\nchelsea travel to the emirates to face arsenal on sunday afternoon . jose mourinho has an impressive record against arsene wenger . despite that , wenger can not be underestimated - he plays to win . cesc fabregas has impressed this season , but he would not necessarily have had the same impact if he had joined arsenal from barcelona .\npuren was the youngest brother of puyi , who ruled from 1908 to 1912 . died on friday after being taken to hospital with pneumonia in february . previously established a primary school and taught until the late 1960s . he had been suffering from poor health and memory loss in recent years .\nscientist : fossils once renamed should again be classified as brontosaurus . study took five years and involved visits to 20 museums worldwide .\na romanian woman being deported from new zealand after relationship broke down , has been told she must leave her 2-year-old son behind . immigration told nicole mihai to return romania as she is not a nz citizen . family court ruled she can not take son more then 50 kms from his father . the 34-year-old has full custody of her son with his father out of the picture . ms mihai is now undergoing a long battle with immigration agency who insist that her son 's living arrangements ` are not their problem '\npolice say they found the drugs stuffed in an furry easter bunny . cops say they got a tip and intercepted a package headed to a home . they found a pound of meth inside the bunny worth with an estimated street value of $ 30,000 . resident carolyn ross admitted to police she was expecting the package . she 's being held on a $ 75,000 bond as the investigation continues .\ndeanna rudison , 55 , charged with two counts of aggravated battery in new orleans bleach attack . jonathan rudison , 27 , named a person of interest after he allegedly threw one of the victims to the ground , breaking her arm . police say rudison became upset that an 18-year-old girl and her friend skipped line at gas station store . surveillance video caught rudison walking outside with a white bottle and throwing liquid in the face of two girls .\nman caught on cctv using weightlifting move to push car park barrier . not clear if he was trying to avoid paying ticket or just showing off . british transport police have released his picture in bid to identify him . do you know the weightlifter ? if so email keiligh.baker@mailonline.co.uk .\nchelsea face arsenal at the emirates on sunday in the premier league . jose mourinho said on friday that diego costa will face late fitness test . spain international is set to miss the game with a hamstring injury . loic remy also out of the clash with dominic solanke likely to be in squad .\nradamel falcao joined manchester united on on loan last summer . falcao has struggled for form and games since his move . the colombian forward is currenlty earning # 280,000 a week .\narsenal need to adapt their ways to win the league , believes john terry . chelsea edged closer to title with a point but were booed off by home fans . chants of ` boring , boring chelsea ' filled the emirates stadium at full-time . but , terry admits change of approach has helped blues close in on the title . thierry henry : arsenal need to sign four top players to win the league .\nchampionship top eight separated by just nine points with game to go . three teams will be promoted to the premier league , with five missing out . sportsmail picks out eight players who should be in the premier league next season whether their club is promoted or not . we have also compiled a composite xi made up from the eight teams .\nliverpool goalkeeper simon mignolet was dropped in december . but the belgian quickly made his return after brad jones was injured . mignolet has been in impressive form since his return for the reds . read : liverpool want fiorentina goalkeeper neto ... but face competition from psg , according to the brazilian 's agent . click here for the latest liverpool news .\nmp handed dossier of information to the department to kick-start a probe . the dossier was shelved by officials and only discovered by police in 2013 . revelation heightens fears he was beneficiary of establishment cover up . labour mp simon danczuk said the home office ought to ` come clean ' .\nsouthampton went down 2-1 to stoke at the britannia stadium on saturday . morgan schneiderlin opened the scoring in the 22nd minute . the saints are now five points adrift of fourth place .\neverton defeated burnley 1-0 at goodison park on saturday . kevin mirallas scored the only goal of the game in the 29th minute . ross barkley had earlier missed a 10th-minute penalty . leighton baines has scored 15 penalties from 16 attempts this season .\nchris rock posts selfies after being pulled over three times in last seven weeks . `` stopped by the cops again wish me luck , '' he posted this week .\nthree million condoms seized in shanghai , thought to be worth # 1.3 m . tests found they contained toxic metals that could be danger to health . police uncovered a large network operating across eight provinces . officers said lubricating oil used at one workshop made them feel sick .\nmiley , 22 , ditched razor for rock event on saturday . her followers were divided in opinion over her unshaven armpits . julia roberts , pixie lott and scout willis have all bared their armpit hair .\nolaparib is the first cancer drug to target inherited genetic mutations . up to 30 per cent of men with advanced prostate cancer have tumours with genetic defects - and they responded well to olaparib . drug prolongs time a sufferer can live without disease getting worse .\nrodgers will hold press briefing ahead of arsenal match at 2pm . sterling set to dominate the agenda after moving closer to anfield exit . england star said he was not ready to sign a new contract with liverpool . 20-year-old has been offered a # 100,000-a-week deal to stay . read : the rise of raheem sterling : from # 60 a day at qpr to knocking back # 100,000-per-week contracts at liverpool . click for the latest liverpool fc news and sterling contract saga reaction .\njenna thomas , 21 , was murdered by ex boyfriend philip packer . he hounded her with calls , texts and visits after they split up . then strangled her to death one day in jealous rage . her twin , nikki , now wishes they 'd taken stalking behaviour more seriously . urges others not to ` put up with ' harassment .\ncourtney brain left skegness academy to visited her gp for treatment . she was later told to make up missed time for ` unauthorised absence ' mother criticises decision to punish her daughter as ` mind-boggling ' school claims detention was to give her best chance of good grades .\ndivers located and harnessed the dumped items which have included shopping trolleys , mopeds and even cars . a 100-tonne crane has now been put in place to lift the abandoned objects from the bottom of the river bed . the extent of the rubbish in the river avon was recently revealed after a survey of flood defences in bath .\nannouncement states the use of toilet paper by muslims is now permitted . directorate of religious affairs for turkey allows it but says water is better . islamic rules previously said that followers should use water or left hand .\nwigan exact revenge on st helens in super league grand-final rematch . warriors come out on top in tense clash at sell-out dw stadium .\nepiphany morgan and carl mason produced 365 documentaries in a year . the sydney couple travelled to 35 countries on a $ 40 per day budget . they released one ` docobite ' each day of people they met while travelling . the pair said they learnt how to focus on what humans have in common .\nbayern munich crowned bundesliga champions for the 25th time . pep guardiola 's side beat hertha berlin 1-0 on saturday at allianz arena . wolfsburg fell to 1-0 defeat at borussia monchengladbach on sunday . bayern are also in semi-finals of the german cup and champions league .\nwilliam ziegler convicted of capital murder for 2001 killing of russell baker . was sentenced to death , but had sentence quashed on appeal in 2012 . today pleaded guilty to aiding an abetting murder , and was sentenced to the 15 years he has already served , allowing him to walk free . judge sarah stewart said warned him against being bitter at hearing . also cautioned him that world is ` very different ' compared to 15 years ago .\nreports claim google is latest firm to test alternative battery options . sources said the four-man team devise and test different technologies . it follows apple 's recruitment drive for battery and software experts .\nduring a ` flex cam ' break at a philadelphia soul game on april 12 a woman proved that she had the bigger muscles than the man in front of her . video of the unidentified woman 's robust display at the arena football league game has over 300,000 views on youtube . the woman shames the man in front of her and perhaps everyone in the arena with her gigantic arms .\nfilip djuricic out with an ankle injury for southampton . but steven davis and florin gardos back in contention for saints . hull boss steve bruce could drop keeper allan mcgregor for steve harper . david meyler suspended for tigers but tom huddlestone returns .\nroberto martinez admits the future of star kevin mirallas is uncertain . belgium international has voiced ambition to play in champions league . mirallas has two years remaining on his contract at the merseyside club . aaron lennon has been linked with a swap dealing involving mirallas . everton face manchester united in the premier league on sunday .\npictures show women serving with armed forces around the world including in pakistan , jordan and north korea . they include images of pro-russian rebels in donetsk , ukraine , and us soldiers serving in southern afghanistan . one shows north korean soldiers on patrol near the chinese border and another shows fighters in aleppo , syria .\ncharlie stayt made the error during live broadcast from southampton . bbc presenter left out the letter ` c ' when he wrote word for third time . many viewers took to twitter to complain about stayt 's mistake .\nuniversity of cape town voted to remove the statue from the campus . government backs decision as way of country dealing with its ` ugly past ' . but white solidarity groups say their historical heroes are under attack .\nare these the ghostly disembodied boots of a samurai soldier ? chatter online after mysterious image emerges of a little girl . the photograph was taken in kanagawa prefecture , japan , last year . a black pair of boots appear behind the small child . however , there is no evidence of anyone else in other photos . ' i know there are several very old samurai tombs ' nearby . the photographer purportedly insists it has not been photoshopped .\nphotographer james oatway captured a violent attack that resulted in death of a mozambican in south africa . seven people have been killed in recent violence against poorer immigrants , many from south africa 's neighbors .\ntwo council officers came ` sprinting ' towards kim copeland in coventry . said she had committed a crime and issued her with # 50 penalty notice . she refused to pay it within ten days in protest at how she was treated . but she was then told to appear at court and fined # 304 plus # 200 costs .\nandy murray and kim sears are getting married in dunblane this weekend . tennis star is a hero in his hometown and locals are already celebrating . bunting lines the streets and cartoons of the pair are in shop windows .\npsg planned to be europe 's top side after major investments in the club . however , the loss against barcelona showed they still have long way to go . blaise matuidi thinks luis enrique 's side will win the champions league .\nahmed al-karim said fighters had burnt ` hundreds of homes ' in two days . prime minister ordered iraqi forces to oppose vandalism and make arrests .\nqueen margrethe ii of denmark is celebrating her 75th birthday today . last night she hosted a gala dinner attended by royals from around europe . today the delighted monarch appeared on the palace balcony to wave to the crowds after a lunch at city hall . no members of the british royal family were able to attend the glitzy celebration in copenhagen .\nliverpool face aston villa in fa cup semi-final at wembley on sunday . daniel sturridge is suffering with a hip injury and is a doubt for the clash . england striker has not trained this week and is in danger of missing out .\njosh and vanessa ellis and baby hudson were traveling in washington state on monday . as the local pastors were driving under route 410 overpass , a slab of concrete fell off bridge . it landed on their pickup truck , crushing vehicle and killing entire family . construction workers were installing sidewalk on the bridge at the time . police say the family ` would have known nothing about it ' as the concrete came down so fast and quick .\nrobert lewis burns jr. was part of lynyrd skynyrd 's original lineup . his car hit a mailbox and a tree just before midnight .\nreport into threat posed by foreign fighters blamed australian government . the lowy institute report says australians fight in syria and iraq represent ' a serious national security threat ' the report claims the right policy response could mitigate potential disaster . it comes a day after melbourne model-turned-terrorist sharky jama was reportedly killed fighting with the islamic state in syria . family were told on monday by friends via a text message and phone call .\njournalist sarah ivens , 39 , tells of her struggle to get pregnant aged 34 . the mother-of-two tried for years before having a child . she believes women need to be more aware of the difficulty of conceiving .\nliverpool were beaten 4-1 by arsenal at the emirates on saturday . club 's top four hopes have been dealt a massive blow with the defeat . liverpool lost to another of their top-four rivals manchester united before the international break . brendan rodgers admits that their chances of qualifying for next season 's champions league have severely diminished .\ncarolina sandretto focuses on the crumbling buildings many cubans live in together . the maze-like `` solares '' often include separate families under one roof .\nan attorney for freddie gray 's family alleges that police are involved in a cover-up . there are ongoing administrative and criminal investigations . baltimore 's mayor promises to get the bottom of what happened .\nthe wildfire started in miami-dade county on sunday . by monday night , it had grown to nearly 2,000 acres . the fire was 50 % contained , officials said .\ncolin kay was driving on the a586 when another car ploughed into his car . the whole incident was captured on film by a dashcam on his dashboard . he has been told the driver will not face any action over crash last year . this is because the police officer investigating the case had gone off sick .\nsince tony pulis took charge at west brom , pocognoli has found game time hard to come by and midfielder chris brunt ahead of him . the left back ca n't understand why he does n't get picked to play . pocognoli was a regular under alan irvine before he was sacked . click here for all the latest west brom news .\naaron ramsey starred when arsenal won the fa cup against hull in 2014 . his extra-time goal helped arsene wenger 's side claim the silverware . this time he is hoping to win it for his gran eileen who passed away . welshman has dedicated his last couple of goals to her in memory .\nsenior us district judge anita brody approved deal on wednesday . settlement includes allowing for monetary awards up to $ 5million per claimant for serious conditions connected to repeated head trauma . nfl expects 6,000 of nearly 20,000 retired players to suffer from alzheimers disease or moderate dementia someday . wednesday 's settlement would pay them about $ 190,000 on average . about 200 nfl retirees or their families have rejected the settlement and plan to sue the league individually .\na u.s. military official tells cnn the fall of ramadi is `` not imminent '' official in ramadi says it 's unclear how long government forces can hold out there . he begs the iraqi government for reinforcements and the u.s.-led coalition for airstrikes .\nmassachusetts emergency management agency report states some cops showed lack of ` weapons discipline while hunting the tsarnaev brothers ' they fired at suspects without ` necessarily having identified their target ' also failed to appropriately aim weapons during april 19 , 2013 , shootout . shortly after , one officer ` mistakenly fired on an occupied police vehicle ' later in night , another cop ` fired weapon without appropriate authority ' . however , report praises response of medical personnel after bombings . ` every patient that was transported to hospital from the scene survived ' three people were killed in april 15 attacks - a further 264 were injured .\njustin jackson allegedly pretended to be celebrity-linked characters . accused of sending messages to get expensive swag , or get hired in hotels . most brazen alleged scheme was in 2007 , when he ` made off with jewelry worth $ 2.4 million after saying he needed it for madonna photoshoot ' now being sued in florida federal court by love and oprah 's tv network . jackson named alongside angel agarrat , another alleged fraudster .\nhay castle on the welsh borders faces infestation of deathwatch beetles . the 12th-century building is having its timbers weakened by the insects . beetle larvae burrow inside the castle 's wooden beams and threaten its structural integrity . renovators launch # 7million plan to save the historic castle .\njohn sims , who had burkitt 's lymphoma , died on saturday with his new wife lindsey sims by his side . the pair married march 21 at md anderson cancer center . they were on a roadtrip across the state when john 's condition worsened .\nfootage shows a thief casually stroll up to a range rover in north london . using keyless technology he breaks into vehicle without causing damage . less than 30 seconds later he drives off in the 4x4 in a car hacking theft .\nthe gruesome vision was captured in australia and uploaded last week . the lizard swings its neck back and forth in a bid to swallow the rabbit . goannas can unhinge their lower jaws allowing them to swallow large prey .\nkelsey higley filmed her body in 126 different digitally altered poses . student wanted to show how body would look if she modeled it ` like clay ' . ` manipulation ' project challenges changing images of beauty . vimeo video features nipped-in waist , large breasts and huge eyes .\ncommemorates birth in same way as the arrival of prince george in 2013 . babies born on same day will receive one of 2,015 free ` lucky ' silver pennies . duke and duchess of cambridge 's second baby due this month .\ngoogle spokesperson confirmed current policy changed meaning funds will be protected by the federal deposit insurance corporation . as a non-banking institution , google wallet , along with competitors paypal and venmo , is not legally required to be federally insured . with the new change to its policy , funds in wallet balance are protected if anything were to happen to the company like bankruptcy .\nkevin russ hopped trains , dumpster dived for leftovers and slept in ditches as he captured the nomad lifestyle . he traveled from california to colorado , making his way through arizona , texas and new mexico . russ became a huge hit on instagram in 2013 , after he traveled for a year in his car to take photographs of the great american west on his iphone .\nwriter took azamara club cruises ' quest vessel from monaco to rome . the smaller ship proves more intimate and can access more ports . stops included st tropez , porto vecchio , sardinia and amalfi . drove along the amalfi coast to a buffalo farm in pontecagnano .\nwarning : graphic content . loretta burroughs , 63 , from new jersey , was convicted of first-degree murder last month for stabbing her husband daniel to death in 2007 . grandmother concealed body parts in two large boxes and when they were opened his skull and jawbone were in an olive-colored handbag . new jersey judge compared grisly murder to al capone 's st valentine 's day massacre . burroughs insisted the killing was not planned , but friends had said she killed him because she did n't want to relocate to florida .\nvijay chokal-ingam claims he posed as a black man and was accepted into the st. louis university school of medicine in 1998 . he decided he 'd have a better chance of getting into medical school if he was black rather than an indian-american man . tells of his experiences on his own blog , almost black and criticizes affirmative action . he claims he shaved his head , trimmed his ` long indian eyelashes ' and joined the organization of black students . chokal-ingam says younger sister mindy kaling ` strongly disapproves ' and his family ` does not agree with the book ' .\nroots of the banyan tree in southern china originally grew against a wall . when moved to its new home , the entangled roots became the trunk . the structure is so lightweight that the entire tree sways in the breeze .\ndavid seaman reveals that his save against sheffield united was his best . the former arsenal keeper somehow kept out paul peschisolido 's header . seaman has warned the gunners to be wary of underdogs reading . arsenal were given a torrid time by sheffield united back in 2003 . click here for all the latest arsenal news .\nronny deila criticised the playing surface at st mirren park on friday . deila believes most clubs in division would benefit from artificial surfaces . norwegian boss believes pitches need to be more like those in england . feels his side should be judged on their performance on poor pitches .\na chicago cubs fan enjoyed a beer with a hint of baseball at wrigley field . the 24-year-old caught a foul ball in her drink during saturday 's game .\nthe internet is raging about a cat going #upordown . the debate is fueled by an optical illusion photo . the story brings to mind the furor over #thedress .\nkyle seitz , 37 , of connecticut , entered a so-called alford plea in which he did n't admit guilt but agreed there was enough evidence to convict him . seitz forgot to take son benjamin to daycare last july and accidentally left him in the car for more than seven hours while he went to work , he says . he returned to the car during the day and drove to get lunch , not realizing the toddler was in the backseat . wife lindsey rogers-seitz wrote in a letter asking for leniency that her husband is an amazing father .\ntiger woods , 39 , enjoyed some quality family time on the golf course at augusta on tuesday . the 14-time major winner was joined by his children sam , 8 , and charlie , 6 , as well as longterm girlfriend lindsey vonn , 30 . the former world no 1 needs all the support he can get after dropping out of the world 's top 100 rankings for the first time since september 1996 . woods is making his latest atttempt at a comeback at the masters after his dramatic fall from grace following scandal over his countless infidelities .\nnew york cosmos will begin their north american soccer league season this weekend with a match against tampa bay rowdies . pele and franz beckenbauer were in new york on friday to turn the empire state building green ahead of the start of the season . the pair played for new york cosmos together in the 1970s . the club went bankrupt in the 1980s and only returned in 2010 .\nman with mental age of less than 10 was shot by army in field in 1974 . british government later apologised and investigation re-opened this year . a former british soldier has now been arrested over the death . the suspect has been taken to northern ireland for questioning .\ngeorge bailey will play the second half of the natwest t20 blast . he has signed a deal with sussex to take over from mahela jayawardene . the batsman has captained australia in both limited-overs formats . he has also had a spell with hampshire .\nicelandic duo has created a snack that is made using cricket flour . called the jungle bar it also contains dates , sesame seeds and chocolate . cricket flour is said to be a good source of protein and other nutrients . the duo hopes it will encourage people in the west to eat more insects .\nrichard klass : iran framework agreement on nukes is strong , but opponents will cast doubts on this and try to obscure its facts . he says the deal would cut uranium stockpile , centrifuges , implement rigorous inspections ; it should be judged on merits , not disinformation .\ngeoffrey lewis appeared in many movies , tv shows . actor was frequently collaborator with clint eastwood . actress juliette lewis , his daughter , called him `` my hero ''\ntv show britain 's got talent returns to screens for a ninth series tomorrow . winner gets to perform at the royal variety performance - and # 250,000 . but once the spotlight comes off - what happens to them ? .\noperation xeres will focus on abuse claims at skegby hall children 's home . inquiry will have a team of 20 looking into the historical abuse claims . more than 20 claims have been made relating to abuse in care homes .\ndarwin woman natalia moon is nominated for a tv award in the philippines . the 23-year-old stars in filipino sitcom ` ismol family ' which is entirely acted in filipino language tagalog . born natalia stewart , the aussie calls herself ` the barbie from down under ' she has a legion of adoring fans who refer to her as ` the blonde filipino ' .\neuropean court of human rights find russia justified in deporting father . robert muradeli had committed no crime worse than traffic violations . but was deported for breaking immigration laws after 20 years residence . eight judges rule russia did not breach the 45-year-old 's human rights .\npablo osvaldo says andrea pirlo and francesco totti should join boca . the 29-year-old is currently on loan at the club from southampton . osvaldo believes the boca fans ` would go crazy ' for the italian duo .\nkaren reidy , 40 , met sakir candan on holiday in marmaris , turkey in 2012 . the pair got engaged 18 months later after karen lost eight stone for him . hotel worker from manchester discovered he was cheating on facebook .\nthe photo was taken on easter monday morning at sunrise in queensland . brad allan was going out fishing when he looked out at the horizon . he says the eerie image of a solider was the remnants of storm clouds . he says the photo is fitting for the upcoming centenary of anzac day . this year more than 15,000 australians will attend overseas events commemorating the 100th anniversary of gallipoli .\nuniversity of virginia is under continuing investigation over how it handles sexual assault on campus . some fear retraction of rolling stone story about one case takes focus off the broader issue . after the story came out , uva instituted a zero-tolerance policy on sexual assault going forward .\nuniversity of connecticut study reveals how we can measure distances . they said that listening to echoes tells us how far something it . when a sound is close the differences in max and min volume are obvious . but when it is distant , our neurons fire less , and we know it is further away .\nuefa have ordered the final 18 seconds of the european women 's u19 championship qualifier between england and norway to be replayed . referee marija kurtes incorrectly awarded an indirect free kick after disallowing an england penalty for encroachment . fifa did something similar during a 2006 world cup qualifier . but the entire match between uzbekistan and bahrain was replayed . uefa must hope it does n't affect one of their premiere tournaments .\naston villa have sent scouts to watch cordoba striker florin andone . the romanian has been the bright spark for la liga 's bottom side . bakary sako and tom carroll are also another targets for tim sherwood . click here for all the latest aston villa news .\nmohammed waqar , 23 , and mohammed siddique , 60 , allegedly slapped boy repeatedly during religious lessons at jamia mosque in birmingham . boy attacked for making mistakes when reciting koran during studies . given black eye during one assault and police arrested the teachers .\njose mourinho has won 21 major trophies during 15-year coaching career . enjoyed impressive spells at porto , chelsea , inter milan and real madrid . click here to see robbie fowler 's dream xi .\nalexis sanchez has starred for barcelona and arsenal since udinese days . former boss pasquale marino has tipped the frontman for greatness . marino says benching sanchez was ` like taking a toy from a child ' sanchez could play three games a day , according to marino .\ntrevor noah was in a relationship with south african beauty dani gabriel but the couple have split in recent months . he took her around the world to be by his side on his tour last year . it was even rumored in january that the madly in-love couple were engaged . but gabriel , 28 , runs a physiotherapist practice in cape town and has family in the city meaning she will have been reluctant to relocate to america . she still remains supportive of noah and ` could n't be prouder ' of him .\nepisodes for the next four weeks released saturday night on pirate sites . illegal material thought to have leaked through press review copies . show is the most pirated in the world , with brazil the worst offender .\nmark dawe , head of the ocr exam board , said it is like using a calculator . believes students should be tested on answers , not where they find them . campaign for real education said ` nonsense ' idea is ` dumbing down ' chair chris mcgovern said : ` we have to test what is in a child 's head '\nchris rowe had been plagued by an irritating cough for six months . 31-year-old visited doctors five times in two months but was sent home . despite the fact he was coughing blood , doctors diagnosed a simple virus . an x-ray revealed an aggressive , inoperable lung cancer that has spread .\ngenerations of everest climbers have left tons of trash . the indian army plans to remove at least 4,000 kilograms from the peak .\nlint-free and tear resistant filters are good for a range of household tasks . wrap one sheet around celery stalks when storing in fridge to keep crisp . use it to polish shoes , keep laundry smelling fresh and even as a plate .\nthe most managerial sackings in a single season stands at 46 in 2006-07 . micky adams left tranmere on sunday with club bottom of league two . forty managers had left their posts by the end of march , a new record .\nbayern munich beat porto 6-1 at the allianz arena on tuesday night . result gave them a 7-4 aggregate victory in champions league last eight . bayern manager pep guardiola hailed his players after the match . read : luis enrique ` happy ' to see pep guardiola prove doubters wrong .\njudge had to set aside own feelings to give them an appropriate sentence . carers told one woman she lived in a brothel , another she would be killed . all four care workers convicted and sentenced for the ` systematic abuse ' abuse committed in 2013 at wentworth croft care home in cambridgeshire .\nlouis van gaal cranked up the pressure on man city after aston villa win . manchester united defeated aston villa 3-1 at old trafford on saturday . the red devils leapfrogged manchester city to move up to third spot . united have not recorded a home win against city since february 2011 .\nnovak djokovic came from a set down to beat alexandr dolgopolov . the world no 1 remains in contention for his fifth miami open win . dolgopolov became less mobile after receiving treatment to his feet . djokovic faces david ferrer next after spaniard beat gilles simon . andy murray through after beating south africa 's kevin anderson .\nphotos capture spectacular moment goose narrowly avoids fox 's jaw . the sly animal is seen leaping in his bid to bring down the large bird . action-packed photos captured by roger byng in gloucester wetlands .\nalex oxlade-chamberlain has been out of action since march 9 . arsenal midfielder suffers from persistent groin problems . arsenal are exploring other treatments , but any surgery would be delayed . read : arsenal bid to finalise transfer for ` next lionel messi ' maxi romero . click here for all the latest arsenal news .\nnatasha elderfield is accused of the murder of boyfriend robert dobinson . he is said to have found her about to have sex with another man . she allegedly stabbed him and left him to die on banks of river thames . elderfield , 41 , denies murder and claims dobinson accidentally walked into the knife .\njoanne bolton was stabbed over 14 times before being battered with a bar . stabbed in the head with a knife so violently the blade snapped so he grabbed a bigger weapon to carry on attack . she was left with mild brain damage and needing over 100 stitches . steven young admitted attempted murder and was jailed for 18 years .\nbritain has long seen prosecco as the second choice to champagne . now that 's all changing as prosecco sales have overtaken for the first time . uk sales were # 181.8 million compared with # 141.3 million for champagne .\nisabelle obert , a nutrition consultant , believes good diet can boost fertility . says ' a good diet affects the health of the egg and sperm before they meet ' she shares her top 10 foods to aid fertility , and tips on how to eat them ...\nwembley loss means steven gerrard 's liverpool career ends in anti-climax . he was poor throughout , unable to raise performances of his team-mates . gerrard will now say his farewells with a series of cameo appearances . but , three years without a trophy means brendan rodgers is one to blame .\nandy carroll is in dubai as he steps up his recovery from knee surgery . the west ham striker is overseas with a club physio and his fiancee . the 26-year-old injured his medial knee ligament against southampton .\npaige chivers was aged 15 when she disappeared from blackpool home . despite police appeals and a # 12,000 reward , she has never been found . robert ewing is on trial accused of murdering schoolgirl in august 2007 . his friend gareth dewhurst is accused of assisting in disposing of body .\nraheem sterling wants to be known as ' a kid that loves to play football ' the england star has rejected a new deal and put off talks until the summer . sterling has two years left to run on his existing # 35,000-a-week contract . he says he would have signed a new deal at this point last season . sterling admits it is ` quite flattering ' to be linked with a move to arsenal . liverpool are infuriated that sterling gave interview in the first place . some feel he and his representatives are pushing for summer departure . read : sportsmail answers five questions on sterling 's future .\nbelgium striker divock origi signed for liverpool for # 10m last summer . origi was then loaned back to french side lille for the whole of this season . the 20-year-old has been in contact with simon mignolet about liverpool . national team-mate mignolet has been giving origi advice about the city . members of the management have also messaged origi throughout season .\nabdel-kader russell-boumzar granted bail in brisbane court on thursday . the 17-year-old is accused of racially abusing train guard in brisbane . footage of the teenager allegedly spitting on guard went viral . russell-boumzar spent 69 days behind bars for a string of alleged offences . magistrate told him to stay out of trouble when released on bail . he will reappear in court on may 4 for charges relating to the train incident .\nemily ratajkowski has become a global sex icon . model and actress swears by hiking , yoga and occasional indulgence . says that cooking using fresh ingredients is essential . fits in her yoga classes a ` couple of time a week '\nkevin pietersen signed a new contract with surrey last month . he has confirmed that he will play against oxford mccu later this month . pietersen is still hoping to win an england recall .\nnovitzky kick-started the balco investigation and is well-known for his work with steroid and ped use in sport . the case involved the investigations into barry bonds , marion jones and justin gatlin . the federal agent also probed lance armstrong 's tour de france teams and helped unmask the shamed former cyclist . ufc is keen to banish the sport of peds after high-profile failed tests from the likes of anderson silva , nick diaz and hector lombard . ` there is no bigger advocate of clean professional sports than jeff novitzky , ' the ufc 's lawrence epstein said .\nfrancesco totti puts roma ahead from the penalty spot in third minute . denis equalises for atalanta from another penalty , and visitors hold on . roma move level with city rivals lazio behind juventus in serie a .\nvictoria wasteney argues tribunal decision was against her human rights . disciplined after muslim colleague claimed she was trying to convert her . appeal backed by christian legal centre and human rights barrister .\nnaomi , 44 , and jourdan , 24 , are new faces of burberry eyewear . this is the second joint burberry campaign for the catwalk stars . pair are close friends and jourdan walked in naomi 's charity fashion show .\npre-med student lizzie cochran has created clothing and accessories influenced by the microscopic structure of anatomy and disease . she has set up a kickstarter campaign to fund her venture , called epidemia designs , and has nearly reached her goal of $ 15,000 . 15 per cent of profits will go to projects aiming to lower the impact of preventable diseases around the world .\ncollege judicial committee found alpha delta responsible for causing harm to pledges and violating terms of suspension for alcohol violations . the 46-year-old fraternity has until next monday to appeal the decision . alpha delta attorney previously said small group of members voluntarily chose to get brands .\nresearchers at brown university studied how people learned tasks . it has already been shown gamers learn visual tasks better . but in this study they had higher performance across two tasks . ` they may be in an expert category of visual processing , ' said dr sasaki .\nwaheed ahmed , son of a labour councillor , was stopped at turkish border . the 21-year-old was accused of trying to enter syria with family members . police released waheed , from rochdale , and five others without charge .\nhis vehicle struck mailbox as it was approaching a curve near cartersville . burns helped found the southern hard rock band in jacksonville , florida . played on hit songs like sweet home alabama , simple man and free bird . cartersville is about 125 miles away from macon , where duane allman died . after 1971 death of allman brothers guitarist , skynrd dedicated free bird . three other band members were previously killed in a plane crash in 1977 .\natletico madrid leapfrogged valencia in race for third position . the la liga duo are battling for automatic champions league berth . antoine griezmann scored his 15th goal of the season in the fifth minute . saul niguez added a second before the interval to double his side 's lead .\nlydia ko shot her second straight over-par round in the ana inspiration . new zealander ko shot a 2-over 74 on saturday in disappointing round . ko made an 8-foot birdie putt on the par-5 hole to keep long streak going . she has had at least one birdie in all 187 of her rounds in 49 career events .\ndnipro beat brugge 1-0 in ukraine to earn place in europa league last four . yevhen shakhov scored the tie 's only goal in the 82nd minute on thursday . the first leg between the two sides finished goalless in belgium last week .\nyahoo labs in california reveals new method to unlock your phone . simply by holding it to your head , their technology can recognise your ear . it can also use other body parts like a fist or a palm to access your device . it removes the need for specialist hardware like fingerprint readers .\nskywest inc , based in st. george , utah , said the jet landed safely and three passengers received medical attention before being released . the embraer 175 twin-jet , traveling from chicago to hartford , connecticut , carrying 75 passengers dropped from 38,000 ft to 10,000 ft in three minutes . the faa said initial information indicated the embraer e170 jet may have had a pressurization problem . three passengers passed out on board the flight and an additional 15 adults and two children were evaluated upon landing .\njoseph devaney and kieron rolstron stormed into the house in chorley . rolstron , 22 , threatened to stab john and emma evans with a knife . devaney , 23 , slashed terrier cookie across the head during the attack . the court heard the victims ' daughter , 7 , was asleep upstairs at the time .\nten-week-old qingqing is in a critical condition following surgery . the tiny child was on her own in a house in haimen city , china . her mother returned from work to find bloodied daughter on floor .\namnesty calls for probe of india police shooting of 20 suspected smugglers . police decline comment , saying `` investigation is still going on '' india 's national human rights commission says incident involved `` serious violation of human rights of the individuals . ''\nedward moore was working at king edward 's school in witley , surrey . had sexual intercourse with 16-year-old in his office and then cut contact . 24-year-old jailed for nine months on friday at guildford crown court .\nnephew of jfk , and son for former attorney general , opposes vaccines . he believes a chemical called thimerosal causes autism in children . promoting protest film , he likened vaccinated kids to holocaust victims . on monday , he apologized for the comment after widespread criticism .\nnorthern indiana pizzeria memories pizza opened thursday to a full house of friends , regulars and people wanting to show their support . kevin o'connor closed the shop after backlash following comments he made that he would n't cater same-sex weddings . o'connor says gays are welcome in his restaurant , but he would decline to cater their weddings because it would conflict with his beliefs . a crowdfunding campaign started by supporters raised more than $ 842,000 with donations from 29,160 contributors in 48 hours . o'connor said he has n't received the money yet , but said he plans to give some to charity and use some money to make improvements to the restaurant .\nwaheed ahmed , 21 , caught trying to cross the border into syria last week . the student is said to be a member of the extremist group hizb ut-tahrir . he was arrested by turkish police at the border town of reyhanli .\nlauren york , 15 , was found monday afternoon in north ridgeville , ohio . she went missing sunday morning around 4am and her family feared she was on her way to missouri . the home-schooled teen was allegedly communicating with people in online chat rooms and made several calls before she left home . ` update : my daughter lauren york has been found . we are all praising god , ' her mother posted on facebook monday afternoon .\nleicester will add new zealander mike fitzgerald to their ranks next season . tigers have already confirmed the signing of waratahs wing peter betham . fitzgerald has helped the waikato-based chiefs win two super rugby titles .\ntourist cops samuel kvarzell , markus asberg , eric jansberger and erik naslund broke up a fight on the uptown 6 train this wednesday . ` here as tourists , they stepped up , ` bratton said on friday . the friends were on their way to see les misérables on broadway when a conductor on the 6 train called for help . the men , who are all police officers in their native sweden , wrestled the suspect to the floor and held him until nypd could arrive . ` we 're no heroes , just tourists , ' says uppsala , sweden , police officer .\nchloe the wombat has lived at sydney 's taronga zoo since june 2014 . she was rescued after her mother was killed by a car . she was recently moved into new digs with a couple of echidnas . when she 's not napping she follows zoo keeper evelyn weston around .\nashley jiron , is the owner of p.b. jams in warr acres in oklahoma . she noticed someone had been looking through her bins for food . she posted a note on her diner window inviting them in for a free meal .\nalfred taubman , who died friday , was active in philanthropy and worth an estimated $ 3.1 billion . amid suburban boom of the '50s , he realized people would need places to shop : '' ... we could n't miss '' we was convicted in 2002 of trying to rig auction house commissions ; he maintained he was innocent .\n21-year-old woman from manchester phoned company about her bill . she made small talk with foreign call handler during short exchange . but she later received a series of inappropriate messages from the man . vodafone say they have suspended the worker and are investigating .\nthailand 's kiradech aphibarnrat takes lead at the shenzhen international . aphibarnrat fired six birdies in the space of nine holes on saturday . bubba watson struggled to his second consecutive round of 74 . the double masters champion finished 38th in augusta this year .\nluis suarez has revealed he 's previously snuck into the nou camp . the barcelona striker admits that real madrid were ` very ' interested in him . suarez calls the bite on giorgio chiellini the worst moment of his career . suarez : i could n't have carried on playing if i 'd slipped like steven gerrard . click here for all the latest barcelona news .\nsarah ivens , 39 , tries the ` furrow smoother ' , ` lip lift ' and ` nose transformer ' exercises prescribed by carole maggio , the la-based creator of facercise . mother-of-two noticed her lips were fuller after two weeks of exercises . experienced muscle burn and soreness during and after the moves .\nnavinder sarao , 36 , made the bold claim in october last year in an email . it was lodged in the northern district court of illinois for any future trial . us prosecutors allege he helped to trigger 2010 wall street ` flash crash '\nshauna mcglasson became trapped in the turnstiles of a fairground ride . determined to make a change she swapped takeaways for the gym . she has now dropped 7st in as many months weighing in at 10st .\nthe glasgow duo have played nearly 300 games between them . al kellock and dougie hall will both retire at the end of the season . glasgow face cardiff blues at scotstoun on friday night .\nchelsea defeated manchester united 1-0 at stamford bridge . the win moves the blues 10 points clear at the top of the table . chelsea require two wins from their last six matches to claim the title .\nofficers arrested jason rezaian and his wife in july on unspecified allegations . it took months to charge him ; charges were made public last week . the washington post and the state department find the charges `` absurd ''\nteofil brank , better known by his stage name jarec wentworth , was arrested on march 4 by the fbi in los angeles . investigators said he tried to exact the ownership of a condo and $ 1 million in cash from the victim . brank ` threatened to post photos and other details of the man 's trysts through his twitter account '\nman left horrified after discovering timber in frozen iceland curry . wife discovered splinter-covered shard whilst preparing the biryani . iceland are now conducting an investigation into how it happened .\ndj pete tong will present a late night prom at albert hall this summer . bizarre choice may prove controversial with more traditional listeners . former radio 1 presenter 's evening will celebrate club music in ibiza .\nformer wisconsin sheriff 's deputy andrew steele , 40 , has been found not legally responsible in the killing of his wife and sister-in-law . he shot dead wife ashlee steele , 39 , and her sister kacee tollefsbol , 38 , on august 22 . his defense team had argued that lou gehrig 's disease had damaged his brain , making him not criminally responsible for the deaths . prosecutors believed steele had planned the killings abnd a third sister said he had displayed inappropriate feelings towards tollefsbol .\nnaomi jacobs woke up one morning believing she was 15 years old . she was in fact a 32-year-old mother of one running her own business . miss jacobs had been struck by what is called transient global amnesia . the condition had wiped away the past 17 years of her memory overnight . she admits succumbing to ` total shock ' when her son called her ` mum '\ncarlos toro was promised he could stay in the us but is facing deportation . being sent back to native country of colombia would be ` death sentence ' toro informed on cocaine overlord carlos lehder of the medellin cartel . also provided information on former dictator of panama manuel noriega . he is hoping for visa or green card but ca n't yet collect social security .\n` electronic hacking ' could have caused the air disaster , aviation boss says . germanwings tragedy has been widely blamed on co-pilot andreas lubitz . but matt andersson says investigators have yet to come to a final conclusion . says passenger planes do not have same level of protection as military jets .\nsaracens through to champions cup semi-final after beating racing metro . marcelo bosch landed last-gasp penalty to seal the win on sunday . saracens face clermont in semi-final in neutral st etienne on april 18 or 19 .\nwatford have sealed an automatic return to the premier league following their 2-0 win at brighton and middlesbrough 's 4-3 loss at fulham . players celebrated wildly on the team-bus as the news came in . defender tommie hoban is confident that the team has what it takes to stay up next season and insists they already have a strong squad to build on .\nthe ile louët island is perched 350 metres out from the morlaix bay , in brittany , france . up to 10 people can rent the whole island for # 145 for two nights - the same price as a quality b&b . island comes complete with a 19th century lighthouse , quaint cottage and panoramic views .\nformer pm john howard 's car was left with a flat tyre recently in sydney . felicity waterford was waiting at the sydney conservatorium of music when she spotted the black car in front . she hopped out to offer assistance when she realised it was mr howard . before they raced off ms waterford convinced him to pose for a selfie . it comes weeks after education minister christopher pyne was challenged to change car tyre on live television after claiming to be a ` fixer ' .\nstuart mccall revealed that he was warned about taking the rangers job . walter smith rang to make sure mccall was making the right decision . rangers have now won three games on the bounce in the championship . kenny miller and haris vuckic scored the goals in 2-1 win over hearts . click here for all the latest rangers news .\nsean mccabe was diagnosed with hodgkin lymphoma and was given two months to live , so he started making preparations for his death . he booked the church for his funeral and selected songs to be played . father-of-three also penned a goodbye letter to be read to three children . mr mccabe made recovery and cancer is now in remission , so he has rebooked the church to marry his long term partner lisa williams this year .\njose mourinho left real madrid in 2013 after a series of public fall-outs . but alvaro arbeloa says he could see the special one returning to real . he credits mourinho as the ` foundation ' of champions league success . arbeloa says his spell ended well but chelsea boss is happy in london . mourinho is said to be on good terms with # 40m target raphael varane .\nthe critters were filmed in action after getting a makeshift backboard and hoop installed in their pen . the zoo put on a range of final four activities over the weekend for visitors including a basketball-theme scavenger hunt . march madness is set to come to a close tonight as the wisconsin badgers and duke blue devils go head-to-head at the lucas oil stadium .\nshe was allegedly attacked after leaving her house to relieve herself . the attack is said to have taken place in india 's uttar pradesh region . victim suffered 70 per cent burns after dousing herself in kerosene . her brother apparently saw her covered in flames and threw water on her .\nmichelle heale of tom 's river , new jersey is on trial for murder in the death of 14-month-old mason hess . heale was babysitting mason while her husband michael and mason 's father adam worked together as police detectives . she claims she was burping mason hess when he began choking on his applesauce and that his neck snapped when she took him of her shoulder . heale broke down demonstrating the incident to the jury . medical examiners determined that mason died as a result of homicide caused by blunt cerebral trauma . heale is out on bail during the trial and still has custody of her twins , who were 3 years old when the incident occurred .\ndaniel buccheri left guests at his brother 's wedding in tears . mr buccheri performed his best man 's speech through song . the song documented his brother adrian and his new wife sarah 's story . it also delved into their childhood leaving the groom filled with tears .\nscientists at university college london took mri scans of comedians , barristers and radio hosts while they talked non stop for 30 seconds . they had lower activity in key language centre of the brain than students . it suggests ` super speakers ' require less effort to talk than other people .\nengland in group d with holland , italy and republic of ireland . tournament takes place in bulgaria between may 6 and 22 . john peacock 's young lions are the defending champions . they beat holland on penalties to win the competition last year . scotland drawn with greece , russia and france in group c .\ntennessee supreme court vacates execution dates for four men . leroy hall jr , 48 , donald wayne strouth , 56 , nicholas todd sutton , 53 , and abu-ali abdur ' rahman , 64 , all faced upcoming death . new executions stalled as states ' new lethal injection methods scrutinized .\ncraig sibbald 's 74th-minute header is enough to send falkirk through . fraser fyvie and scott allan both hit the post for hibs with the score at 0-0 . falkirk will play either inverness caledonian thistle or celtic on may 30 .\nthe queen 's former personal chef has revealed her favourite foods . these include special k , chocolate cake , scones and venison . it comes as her majesty has advertised for a sous chef . the role pays # 28,000 a year and there will be accommodation available .\ndancers performed popular move in front of monument in southern russia . video uploaded to youtube as a recruitment tool for their dance school . jailing women for up to 15 days , court slammed ` erotic sexual twerk dance ' just weeks ago russian dance school was shut down after video emerged of students thrusting hips on stage .\nsidebar status is being trialled by facebook in taiwan and australia . feature lets users write a brief update to share with close friends . such notes last for 12 hours and can be seen in the sidebar of the app . users can choose from a number of square tiles to illustrate their message .\nnational bar association calls for clarence habersham , 37 , to be indicted . officer filed brief supplemental report where he said he rendered aid . video of the incident does not show aid or cpr being administered to body of walter scott , who had been shot five times in the back . officer michael slager , who shot scott , faces murder charge . scott , father of four , mourned on saturday at funeral ceremony .\npeter fox , 26 , has been arrested in london on suspicion of double murder . his sister sarah , 27 , was found dead at her home in bootle on thursday . mother bernadette , 57 , was later found dead at sheltered accommodation . fox was arrested at euston station after he was seen by member of public .\nespn reporter britt mchenry was filmed berating tow clerk gina michelle . her car had been towed from a chinese diner in arlington , va , on april 6 . enraged , she insulted mother-of-three michelle 's looks , education and job . ` lose some weight , baby girl , ' mchenry told the worker in the video . however , her blog tells women to ` be comfortable in their own skin ' . mchenry apologized on thursday after security footage surfaced online . advanced towing co insists there are no hard feelings towards mchenry . footage released online is believed to have been edited by the tow firm .\nhis blue origin company completed a successful test in west texas . the new shepard vehicle rose to a height of 58 miles before landing . it was unmanned but will ultimately take six people into space . the launch was conducted in secrecy before being released to the public .\nchelsea manning gave an interview to cosmopolitan from fort leavenworth prison in kansas , serving 35 years for violating the espionage act . after being convicted in july 2013 as bradley manning , she admitted having gender dysphoria and announced plans to transition into a woman . she officially changed her name last year and sued for permission to undergo hormone therapy for gender reassignment from within prison . says it 's ` painful and awkward ' to be forbidden from letting her hair grow . reveals how being deployed to iraq made her realize life is volatile .\na clip of mimi playing volleyball was uploaded to facebook . cat saw of competition from thousands of gifted animals . family received # 20 voucher to buy treats for their cat . owner said ` family were really excited to see the advert '\nmedical examiner ` found freddie gray 's catastrophic head injury was consistent with bolt in the back door of the police van ' police report suggests he was standing and fell head first into the door . officer driving van has yet to give statement to police , sources claim . report on freddie gray 's arrest and death handed to state 's attorney at 8.50 am et on thursday . it includes admission that police van made a previously unknown stop . police commissioner refused to elaborate on the information .\nfaa gave amazon green light to test latest version of its drone . had previously taken so long to approve trial design was obsolete . amazon has been testing its drones in the uk .\nklopp announced on wednesday he will leave dortmund in the summer . german manager has been linked with manchester city and real madrid . manuel pellegrini could be leaving city after a trophyless campaign . former city player hamann believes he would be a good fit at the club .\nhawks say neither thabo sefolosha nor pero antic will play wednesday against brooklyn . chris copeland left `` bloody trail of handprints '' as he returned to club seeking help , club says . suspect in custody , police say , adding they will release his name once charges are filed .\njordan morris scored the first goal of the game after half time . juan agudelo scored for the usa for the first time since 2011 . jurgan klinsmann 's are preparing for the concacaf gold cup .\nfloyd mayweather is closing in on welterweight limit , wbc checks show . mayweather is down to within three-and-a-half pounds of his target . boxers required to weigh no more than 10 per cent over 147lb welter limit . manny pacquiao is also understood to be within the 30-day stipulation . click here to watch the official advert for the mayweather-pacquiao fight .\n65 british climbers feared missing as death toll in nepal reaches 2,500 . survivors on everest recall ` tsunami ' of snow and ice triggered by quake . climbers left stranded by the tonnes of debris and ice blocking their routes . in kathmandu and pokhara buildings were reduced to matchsticks .\ncristy collins worked for the tasmanian ambulance service in launceston . she used to drive the ambulance and treat patients while high on ice . 30-year-old , who is now clean , was never offered support by hospital staff . post traumatic stress disorder from her service in iraq and borderline personality disorder both fuelled her drug addiction . ms collins has shared her story in an effort to raise awareness of the damaging drug and the lack of support available for addicts seeking help .\ndietitian sophie claessens picks the latest ` miracle ' foods from fads . charcoal to ` detox ' , while freekah is new supergrain on the culinary scene . fermented foods like pickled cabbage act like a probiotic yoghurt . and spiralizers to create vegetable spaghetti can help boost weight loss .\nandaz liverpool street is built on the site of the bethlehem hospital which housed the mentally ill . dating back to 1247 , most people will know the institution by the name ` bedlam ' these days it 's a swanky celebrity-baiting hotel with 267 rooms and celebrity guests including beyonce and lil kim . four of the king rooms are decorated with mesmerising murals created by artists . hotel hosts a candlelit dinner in its 1901 restaurant once a month .\ntiger woods put on another show of affection at augusta national . the 14-time major champion was once infamous for his prickly nature . but the former world no 1 appears to have turned over a new leaf . woods was captured on camera dancing to music while practising . click here for our 2015 masters betting tips and odds .\narsenal face table-topping chelsea at the emirates stadium on sunday . cesc fabregas returns to the emirates with chelsea for the first time . arsene wenger says his record against jose mourinho will have no impact . alex oxlade-chamberlain and mikel arteta are set to miss out on the game . per mertesacker is ' 50-50 ' for the game having not trained at all . read : ` proud ' alexis sanchez targets ` many titles ' with arsenal .\nceltic considering bids for dundee united 's john souttar and nadir ciftci . midfielder souttar and striker ciftci likely to cost celtic around # 1.5 million . celtic signed stuart armstrong and gary mackay-steven in january .\nweald basin estimated to contain 100billion barrels of oil , new report says . uk oil & gas investments claims the site could supply 30 % of uk 's needs . if the maximum amount of oil is extracted it will be worth # 600billion . but some experts warn the site in sussex will be difficult to exploit .\non monday a nine-week-old puppy named lt. dan was given to three-year-old sapphyre johnson who is missing both of her feet . ` he 's just like me ! ' sapphyre exclaimed with joy the first time she ever saw a photo of lt. dan . ` he 's a special dog and he 's going to a special child , ' said an employee at shriner 's hospital .\nbarack obama made announcement following high profile cyber attacks . says hackers targeting u.s. from places including russia , china and iran . critical of ` governments unable or unwilling ' to go after ` bad actors ' . new order allows treasury to freeze or block assets of those involved . it is hoped the power will take away the financial incentive behind attacks .\nheart-broken tony tancock , 56 , has won prizes for specially-bred guinea pigs . a thief stole a dozen of his best from his home in devon and left eight behind . says only an expert could have targetted them and left ordinary ones behind . ` they knew exactly what they were looking for , ' a devastated tancock claimed .\nsome 276 girls were kidnapped from their school in northeastern nigeria by boko haram a year ago . mass abduction prompted global outcry , with protesters around the world under the #bringbackourgirls banner . charles alasholuyi has held up a #bringbackourgirls sign almost every day since , to keep up awareness .\ndeva joseph hit problems when she could n't fit handbag inside suitcase . 14-year-old left in floods of tears after flight to spain left without her . offered to pay for bag to go in hold but was told she needed a credit card . easyjet said it should have made an exception to policy of accepting cash .\neverton have made signing new striker a priority for the summer . the toffees have expressed an interest in qpr forward charlie austin . everton watched club brugge forward obbi oulare on sunday .\nmuhammed tahir , 53 , followed woman in her 20s onto central line train . he got close and pretended to accidentally rub his hand across her thigh . he kept moving closer and rubbed his crotch and pot belly on her bottom . act was ` so blatant ' it caught the attention of undercover police officers .\naustralian warren rodwell was held hostage for 472 days and feared his abu sayyaf captors would behead him . he was freed in march 2013 after his family successfully managed to raise a ransom . now he fears he will not receive victims of terrorism overseas compensation . unless prime minister tony abbott decides otherwise , his kidnapping is not listed as a ` declared terrorist event ' . asio has officially declared abu sayyaf as a terrorist organisation .\nliverpool have released their new kit for the 2015-16 season . the reds have had plenty of memorable strips from down the years . sportsmail picks five favourites from home and away kits .\nbristol rovers were relegated from the football league last season . there were tears on the final day after they lost their place in league two . 12 months later , rovers are on the brink of returning to the league . they sit second going into the final weekend , behind barnet .\nshanna mccormick was 27.5 st and had life-threatening asthma attacks . was engaged to her partner who feared she would die in her sleep . miss mccormick decided to put off the wedding to lose weight over 2 years . lost 16.5 st with meal replacements and has now set a date for the wedding .\nyingying dou , 30 , reportedly ran the website called mymaster . she charged up to $ 1000 for her staff to write university essays . website was written in chinese and advertised to international students .\nthe scottish fa have failed in their attempt to have the punishment handed to rangers ' steve simonsen for betting increased . simonsen served a one-game ban after betting on a total of 50 games in a year , but the scottish fa felt this was too lenient . the goalkeeper 's legal team were able to construct an effective counter-case .\narshdeep and shinder kaur were sexually assaulted on a bus in punjab . a group surrounded them , and bus staff joined when they complained . when mrs kaur , 38 , alerted the driver , he answered by driving faster . arshdeep , 14 , died and mrs kaur seriously injured after being pushed off .\nfiorentina goalkeeper neto has been linked with liverpool and arsenal . neto joined firoentina from brazilian outfit atletico paranaense in 2011 . he is also wanted by psg and spanish clubs , according to his agent . click here for the latest liverpool news .\nhead of the geelong college was photographed watching porn at work . an investigation was launched after the photo was shared on snapchat . andrew barr has resigned from his position as principal . the college council have called his actions ' a breach of our standards '\nap mccoy takes his final rides before retirement at sandown racecourse . jockey is hoping to ride all the way to the end if he gains extra rides . it had been thought mccoy would retire after the bet365 gold cup feature . but , the 19-time champion is hoping to secure himself further mounts .\nmartin guptill has been recalled to the new zealand test squad . guptill has not represented the black caps at test level since 2013 . paceman matt henry has been called up to the test squad for the first time . james neesham will miss the tour because of a hamstring injury .\nincredible images show handcuffed members from the notorious barrio 18 gang being marched onto buses . in total 1,177 were transferred to a different jail where they will mix with their arch rivals - mara salvatrucha . the gang members will now no longer be classified by gang affiliation , but by how dangerous they are .\nround three of the formula one season takes place at the shanghai circuit for the chinese grand prix . the shanghai circuit has held every chinese grand prix dating back to 2004 . lewis hamilton has the most wins in china with three - two for mclaren and one for mercedes . fernando alonso is the only other driver to have triumphed at the track more than once . click here for all the latest f1 news .\nstriker jay hart , 24 , was caught having sex with supporter after 4-1 defeat . he was filmed romping with mystery blonde in dugout wearing tracksuit . girlfriend bryony hibbert , who has two children , slammed creators of clip . mr hart has apologised after he was sacked from non-league clitheroe fc . if you know the identity of the blonde , email : jenny.awford@dailymail.co.uk or call 02036154835 .\ntemitope adebamiro arrested friday and charged with first-degree murder . police called to home in bear , delaware , on thursday and found husband . adeyinka adebamiro stabbed in upper body and wife wore bloody clothes . initially claimed death was a suicide but her story changed several times . suspect told police husband abused her even while she was pregnant . now held without bail at delores j baylor women 's correctional institution .\njordan spieth carded a 64 to claim the lead on -8 after the first round . jason day , ernie els , justin rose and charley hoffman three shots behind . rory mcilroy kept alive his hopes of claiming career grand slam with 71 . injury-hit tiger woods recorded a 73 in just his third start of the year .\narchaeologists have found 20 stones shaped by early humans using ` simple techniques ' close to the west shore of lake turkana in kenya . the tools are thought to be 500,000 years older than the first homo species . they are also 700,000 years older than other stone tools found previously . scientists say it could reshape ideas about how our own species evolved .\noriginal lyrics to u.s. pop anthem american pie up for auction today . notes on don mclean 's 60s hit expected to fetch up to $ 1.5 million . the 16-pages also includes deleted verse about music being ` reborn ' .\nthe key for easter indulgence is noting our ` energy in ' and ` energy out ' for four mini easter eggs it would take 30-40 minutes of walking to work off . two hot cross buns without butter take up to 50 minutes of running . it is advised that we manage our energy consumption instead of working it off after it has been taken in .\n55stone georgia davis , 22 , was lifted from her home in 7-hour operation . first crane was not strong enough to lift her so a larger crane had to be summoned which forced closure of road in aberdare , south wales . neighbours thought the ` mayhem ' was due to her flats being on fire . bedridden woman taken to hospital by ambulance with ` severe infection ' .\nnigel jackson , 59 , arrested at property in algarve , portugal , in january . body of wife brenda davidson , 72 , found in shallow grave in the garden . jackson initially claimed she killed herself , but he has now changed story . shown proof she was killed , he now says she must have died in burglary .\nrafael nadal was pushed all the way by john isner in monte carlo . roger federer , however , was knocked out in straight sets by gael monfils . grigor dimitrov is monfils next opponent after beating stanislas warwinka .\nrobin barton was abandoned behind a santa ana , california , dumpster in november 1989 when he was just four hours old . now-retired police officer michael buelna found the infant after hearing what he thought were meows coming from the dumpster . buelna was abandoned as a child , along with his four siblings , by his mother . he hopes to help barton find his biological mother , sabrina diaz . barton says he forgives dias and that he was ` blessed with a great family '\narsenal beat manchester united 2-1 in the fa cup quarter-final on march 9 . danny welbeck scored the winning goal for arsenal against united . teenager has been cautioned after posting racist tweet aimed at welbeck .\ndaily mail online spoke to ten students at kirkwood community college 's satellite campus in rural iowa where hillary clinton will be tuesday . one student is among those picked by teachers to question the former secretary of state . he wants her to comment on his suspicion about immigration reform -- that democrats are pushing the policy because they need new loyal voters . another predicted that ` she 's going to be , like , talking s ** t ' and would ` push some emotional thing on us ' a third said clinton ` seems like , kinda like a control freak ' one more said ' i hope people do n't vote for her just because she 's a woman ' school has cancelled many classes tuesday to accommodate clinton , the secret service and the press hordes expected to show up .\nwhen a user receives a call , hello will show them info about who 's calling . this includes any public information collated from their facebook profile . hello also shows how many people have blocked an unknown number . free app is currently in beta and only available on android devices .\nbayern munich beat porto 6-1 in the champions league quarter-final . the germans advanced 7-4 on aggregate after a 3-1 defeat in the first leg . pep guardiola said he felt in the lead up to match that bayern would win . the former barcelona boss says winning is a matter of life and death .\ncuomo issued a state health warning friday about the drug . more than 160 patients admitted in nine days across the state . the drug can have long-term effects on the brain , especially for the young people who are abusing it . spice is bought over the counter , usually marketed as incense or potpourri . it caused the death of a california teenager last year . on april 6 , two mississippi brothers were placed in medically-induced comas . they had smoked a ` bad batch ' of the synthetic cannabinoid .\nrolando aarons was in contention to play for under 21s on wednesday . the 19-year-old newcastle midfielder has suffered another injury setback . the magpies have lost their last five barclays premier league matches .\ngoogle is being put under pressure to turn off waze , following fears it might put officers ' lives at risk . waze helps drivers avoid congestion , accidents and traffic cameras . app , owned by google , also warns drivers when police are nearby .\ntop footballers are under fire for using twitter to promote an adidas sale . players including steven gerrard and theo walcott could face a probe . dozen premier league stars posted messages within minutes of each other . watchdog advises celebrities to use the word ` ad ' or ` spon ' if its an advert .\ncleveland , ohio , officer michael brelo is facing two counts of manslaughter . timothy russell , 43 , and malissa williams , 30 , killed during 2012 shooting . brelo 's footprints were found on hood of chevy malibu where they died . rookie said he learned about hood ` because -lsb- brelo -rsb- was talking about it ' judge will decide brelo 's fate and he faces a max sentence of 25 years .\nadrian peterson had been suspended after pleading guilty to misdemeanor reckless assault . nfl commissioner roger goodell requires him to keep going to counseling , other treatment . minnesota vikings , 7-9 last season , say they look forward to him rejoining the team .\nrebecca rice , 16 , was allowed to take her pet dog into five-minute exam . she told her teacher she struggles to control her nerves ahead of the gcse . teacher lorette esteve advised she bring along 11-year-old dog holly . school has various tactics help reduce stress including lucky key rings .\ntwisted sister 's 2016 tour will be its last . band will celebrate 40 years in 2016 . twisted sister drummer a.j. pero died in march .\ndigital artist anil saxena , from mumbai , creates surreal images out of pictures of the natural world . uses photoshop to turn pictures into flights of fancy that make viewers question what they 're seeing . whimsical surreal shots created thanks to painstaking doctoring using image editing software .\non fm , norwegians can only find five stations . digitally , there are four times that number .\ndr ros altmann will be announced as a new conservative peer today . she will be appointed minister for consumer protection if tories win in may . former treasury adviser will oversee the government 's pension reforms .\nin 1985 the main stand of bradford 's valley parade caught fire , killing 56 . inquiry found the fire had probably started via stray match or cigarette . mccall was playing that day and his father was badly burned in the blaze . bradford fan martin fletcher claims the fire may not have been an accident . fletcher 's father , uncle , brother and grandfather lost their lives in the fire . fletcher claims chairman stafford heginbotham may have been to blame . but mccall refutes those claims insisting it was just an accident .\nactress said she hit the culture at a time that was worse than the 40s or 50s . said revelations about celebrities from that era did not come as a surprise . stars in new film , woman in gold , alongside ryan reynolds .\nformer staff sgt. charlie linville , 29 , from boise , idaho , was an explosives expert serving in afghanistan in 2011 when he was seriously wounded . two years later , he had his right leg amputated below the knee . he retired from service and has been climbing since with the heroes project , a nonprofit organization that helps wounded veterans . his quest to climb everest last year was thwarted following the deaths of 16 sherpa guides in april when an avalanche swept down .\nmilinda gunasekera was flying home from a holiday in chile . he was changing flights at auckland airport for the final leg of his trip . the 32-year-old downed a bottle of vodka in the airport toilets before flight . qantas flight was taxiing to the runway when the alleged incident occurred . afterwards he suffered ` probably the worst hangover of his life ' in the cells . mr gunasekera will fly back to new zealand to be sentenced in june .\nsanti cazorla has been in the best form of his career for arsenal this year . spanish midfielder 's displays have seen him linked to atletico madrid . cazorla says he has heard of interest but is happy to stay in north london . read : arsene wenger reveals secrets of his team selection process . click here for the latest arsenal news .\nfans on the georgia course have adapted by going back to the future and using their pocket-sized digital or their old 35mm cameras . fans will have to put them back on the shelves when the action starts for real on thursday at the masters .\nnba 's all-time leading scorer had quadruple coronary bypass surgery . six-time league champion admitted this week with cardiovascular disease . surgery was a success and 68-year-old is expected to make a full recovery . abdul-jabbar was diagnosed with chronic myeloid leukemia in 2008 . appointed as us cultural ambassador by hillary rodham clinton in 2012 .\nbradford brewery tweeted george galloway asking if he was ` still a thing ' respect candidate for bradford west replied saying tweet was ` unwise ' spat went viral and bradford brewing company has seen its sales spike . beer makers even plan to run for mp if galloway is re-elected on may 7 .\nbrazilian victoria 's secret angel underwent medical procedure and is still recovering in hospital . she had been suffering ` constant headaches ' and had booked appointment two weeks ago , daily mail online told by a friend . mother-of-two had appeared well as she spent time at coachella festival with celebrity friends including kylie jenner and gigi hadid . procedure at ucla 's ronald reagan medical center was successful and aides said she is ` fine ' ambrosio , 34 , had posted on instagram yesterday about how much she was enjoying coachella saying : ` what a wonderful world . ' .\nbournemouth secured promotion on monday with victory against bolton . eddie howe has put bournemouth on map after leading them to top flight . jamie redknapp always believed howe was destined for success .\nnewcastle take on liverpool on monday night at anfield . the magpies have not won away at liverpool since 1994 . newcastle have lost their last four games scoring just one goal . john carver 's side nine points clear of relegation zone in 13th place .\ncouncils in london facing unprecedented pressure on primary places . wandsworth council set to scrap rule giving siblings automatic priority . the aim is to make process fairer and give priority to those living nearby . more than 20,000 at risk of being denied any of their preferred choices .\nlydia kelm , 23 , was arrested with a dui charge after driving to a mcdonald 's nearly naked and refusing to complete her order . restaurant workers yelled repeatedly for kelm to pull up to the drive-through window , but she revved her engine and backed up instead . kelm 's blood-alcohol level was .247 -- three times the legal limit .\nliverpool beat blackburn rovers 1-0 at ewood park in the fa cup . steven gerrard turns 35 on the day of the fa cup final at wembley . blackburn 's gary bowyer feels it would be fitting for gerrard to lift fa cup . read : liverpool need philippe coutinho to shine to get into the top four . click here for the latest liverpool news after wednesday 's fa cup win .\nvice president joe biden swore in lynch on monday . she was a new york city federal prosecutor with a reputation for being hard-nosed and tough . she said her senate confirmation showed that ` we can do anything ' . pledged to deal with cyberattacks and other threats facing the us .\nbobby cole norris launched his appeal #savebobbysmum last august . revealed his mother kym norris had been diagnosed with leukaemia . today he thanked an anonymous stem cell donor who stepped in . kim has had her transplant and is now recovering in hospital .\nduring the masters , jordan spieth demonstrated optimal movement to enhance swing power and fluid control . when golfers have mobility limitations they compensate with their low back and knees , which often leads to pain and injury .\nobama put in place tougher rules on drone strikes in 2013 to cut down on civilian deaths , but cia got an exemption . president must sign off on drone strikes targeting suspects on ` kill list , ' but operations against other suspected militants do n't require his approval . obama took ` full responsibility ' for january deaths of us hostage dr warren weinstein and italian aid worker giovanni lo porto in drone strike . senator john mccain on sunday said drone strikes against militants on foreign soil should be run by the us military and not the cia .\ncourtney lawes has been derided as a thug across the channel . france tried to get him banned for brutal tackle on jules plisson . northampton take on clermont auvergne in the champions cup .\ncleveland , ohio , officer michael brelo is facing two counts of manslaughter . timothy russell , 43 , and malissa williams , 30 , killed during 2012 shooting . brelo 's footprints were found on hood of chevy malibu where they died . rookie said he learned about hood ` because -lsb- brelo -rsb- was talking about it ' judge will decide brelo 's fate and he faces a max sentence of 25 years .\ndata was taken from 941,300 male and female sleep cycle app users . it found 6:09 am is the earliest wake up time - and this was in south africa . two thirds of countries spend the least amount of time in bed on sundays . and 58 % of countries experience the best night sleep on wednesdays .\nthe rv flip looks like it might be an april fool , but it as been working hard for more than 50 years . the 355-foot vessel can flip 90 degrees in 20 minutes allowing researchers a unique opportunity to study the ocean . the vessel does not have its own form or propulsion and relies on tugs to tow it to the area of study . the rv flip was commissioned in 1962 and can sit still in heavy seas with more than 300 feet beneath the waves .\nrobotic clone of cross-dressing japanese tv star made on-screen debut . matsuko deluxe shared stage with matsukoroid doppelganger on saturday . japanese engineers are trying to replace celebrities with lifelike androids . software , robots or smart machines could replace third of jobs by 2025 .\nosman yaya , 12 , from bennett middle school in salisbury , maryland , moderated a town hall session with the president on thursday . during an answer about writer 's block , obama started getting a little long-winded and osman stepped in . ` yeah . i think you 've sort of covered everything about that question , ' he said as the audience laughed . obama grinned and replied , ` osman thinks i 've been talking too long '\nconservationist group saved fishing ship 's crew as boat sank on monday . group 's bob barker was chasing the ship collecting ` evidence of poaching ' 40 crew were rescused as fishing ship thunder sank off the coast of africa . bob barker captain said thunder skipper cheered as his boat went down . peter hammarstedt said scuttling would destroy evidence of poaching .\nthere are more and more mothers setting up thriving small businesses . the mail is asking readers to nominate successful mothers they know . this week 's nominee is petra wetzel who set up the west brewery in 2006 . petra , 40 , lives in glasgow with her nine-year-old son , noah .\nthis 4x4 from russia is a fraction of the price of a new land rover . off-road , the niva is in its element , with low and highrange gears . but , forget luxuries because the niva is an unabashed frills-free zone . a highly capable , ruftytufty 4x4 from russia -- for a fraction of the price of a new land rover . it 's a confident charmer that stands out from the crowd , with high suspension , pressed steel wheels , soviet-style looks and real rarity value . expect to get gawped at : someone offered to buy mine on its second trip out . always fun . now available in the uk from niva imports through its dealer , bb motors , in corby , northamptonshire -lrb- 01536 202207 , lada4x4.co.uk -rrb- . on the road , the basic 1.7-litre petrol engine -lrb- your only option -rrb- is deafeningly noisy , but tolerably smooth . power steering , manageable dimensions and a tight turning circle make it reasonably practical for the supermarket or school run . the seats are comfy and thanks to a high driving position and large wing mirrors , all-round visibility is good . top speed is 91 mph . off-road , the niva is in its element , with low and highrange gears , differential lock and a sturdy monocoque construction . it is lighter and more sprightly in the mud than many big-name utility 4x4s , with 220mm ground clearance , a 600mm wading depth and a climbing ability of up to 58 per cent . tall , slender tyres give it an added advantage when things get mucky . you wo n't have to agonise over pages of extras ... they 're more or less nonexistent . this is a very basic utility vehicle , after all . choose in white , blue , green or red , then decide whether you 'd like the snorkel or snow plough -lrb- really -rrb- attachments . an lpg option is available for an extra # 999 -- but you lose boot space . reasonable fuel economy at 33mpg and affordable to insure -- once you 've explained exactly what it is . meets euro 5 emissions standards . the heated blower , presumably designed with siberia in mind , has plenty of muscle for icy winter mornings . also available in a compact van format -lrb- # 10,590 , excluding vat and road tax -rrb- . spartan on the inside . forget luxuries such as radios , cup-holders , central locking and electric windows -- the niva is an unabashed frills-free zone . the upside of its simplicity is that the plastic interior is easy to mop down after a day in the mud , and there 's not much to break or go wrong . there are only four seatbelts and a slightly pokey boot . do n't trust the petrol gauge , which regularly aims to deceive . no warranty is offered as standard -- although a two-year plan is coming soon -- and spares may need to be imported -lrb- bb motors will assist -rrb- . only available in lefthand drive -- unless you put in an order for more than 500 of them ! shhhh ! you did n't hear it from me . but patriotic russian president vladimir putin made a big play of driving a lada niva back in 2009 -- but fitted it with a german engine .\nthe uk has overtaken france after seeing growth of 2.8 per cent in 2014 . britain has the second most powerful economy in europe behind germany . imf is forecasting growth of 2.7 per cent this year and 2.3 per cent in 2016 . within the g7 only the us is expected to perform better than britain .\nsteve clarke thinks that scheduling needs to better for the fa cup . reading 's semi-final clashes with chelsea against manchester united . clarke admits that without improvements , the fa cup will lose its appeal .\nfreddie sears opens the scoring for ipswich after just eight minutes . cardiff equalised five minutes later through an eoin doyle header . cole skuse scores first goal for ipswich with brilliant 30-yard effort . daryl murphy seals the win with a third goal in the 90th minute .\nthe gofundme campaign has already topped its $ 75,000 goal . justin griner , the dad of `` success kid , '' needs a kidney transplant .\nfrench free diver jumped into dean 's blue hole in the bahamas . guillame néry is seen at the edge before taking the plunge . the hole is 660ft -lrb- 200 metres -rrb- deep , although he does n't go to the bottom . free divers are able to hold their breath for more than 20 minutes .\nautistic teenager kimberly greenberg went missing more than a week ago . the 15-year-old left her la home to go for a walk and never returned . her mother janice has now made a desperate plea for help finding her . she is said to be very trusting and has the mental capacity of an 8-year-old .\nclarkson university experts are probing the link between mould and ghosts . they are carrying out their investigations in old buildings in new york . think spores in old ` haunted ' buildings may affect people 's brains . psychoactive effects of mould are unclear but cause cognitive impairment .\neugenie bouchard refused to shake hands with rival alexandra dulgheru . controversy sparked a dreadful few days for last year 's wimbledon finalist . bouchard suffered two humiliating defeats in front of her hometown crowd .\ncommons expenses watchdog launched bid to keep mps ' claims private . court of appeal ruled it must release all the copies of receipts submitted . it means voters will be able to check over mps ' original expenses claims .\nyouths took boy to an isolated place in padma nagar , india , and raped him . when he resisted , they set him on fire , leaving him with 30 per cent burns . he is now being treated at the thane civil hospital , about 30 minutes away .\nrspca inspectors called numerous times by worried bristol residents . they found a horse in a narrow alleyway and another chained to ground . animals have now been moved on following rspca advice to owners . locals estimated animals had been living in poor conditions for a month .\nneymar was taken off with barcelona 2-1 up against sevilla . the brazil captain was visibly angry , and barca went on to draw 2-2 . neymar has been replaced 15 times in 34 games this season . click here for all the latest barcelona news .\narturo vidal scored from the spot to give juventus the advantage against monaco in quarter-final tie . the chile international converted from the spot after monaco defender ricardo carvalho fouled alvaro morata . the initial contact from carvalho on spanish striker morata appeared to come from outside of the area .\ncharlie patino , 11 , is being chased by arsenal , chelsea and tottenham . he would cost # 10,000 and his family have visited the training grounds . like jack wilshere he is a midfielder who is making his mark at luton . charlie analyses spanish football and his favourite team are barcelona . he trains six hours a week , spending more than 10 hours a week at luton . charlie is a season ticket holder at luton and has great ability on the ball .\ntwo women aged 49 and a 23-year-old man removed from plane . incident caused further delays for ryanair flight to faro from bristol . airport security re-affirm anti-social behaviour will be dealt with harshly .\neight of the prisoners granted clemency are serving terms of life in prison . they were jailed for crimes including cocaine , meth and heroin distribution . the effort targeted sentences handed down under outdated guidelines . obama has approved 43 commutations in six years in office .\na delaware family becomes ill at the sirenusa resort in the u.s. virgin islands . preliminary epa results find methyl bromide was present in the unit where they stayed . the u.s. justice department begins a criminal investigation into the matter .\ntunisia defender picked up a booking for reacting to opposition fans . bilel moshni has been told to keep calm by ibrox boss stuart mccall . rangers are attempting to reach the scottish premiership play-offs .\nreading scientists say chewing gum helps you forget a song . in a study people were less likely to think about it when chewing . and they were a third less likely to ` hear ' it when chewing gum . results suggests same technique could stop other intrusive thoughts .\nlukas podolski left arsenal for inter milan on a loan deal in january . german world cup winner has yet to score since arriving in italy . forward was an unused substitute in goalless derby draw on sunday . podolski insists he wants to fight for his place in north london .\nalison hargreaves , 32 , was killed in 1995 as she descended from k2 . now her son tom ballard plans to conquer treacherous mountain himself . his mother was swept to her death by 260mph winds atop the mountain . at 28,251 ft , k2 is considered more difficult to climb than mount everest .\ndr mark porter said election winner will be tempted to bring in charges . nhs england forecast a # 30bn budget gap by 2020 unless savings made .\nvincent viafore , 46 , from poughkeepsie was on the hudson river near newburgh , new york , with angelika graswald on sunday . he was thrown out of the boat when they hit rough waters . she was rescued by people in a nearby boat and made it to shore . residents say the water at this time of year is ` precarious ' as it is so cold .\nan anonymous waitress revealed how john key kept pulling her hair . she wrote in a blog that she gained unwanted attention from him last year . the woman had been working at a cafe frequented by mr key and his wife . she said mr key kept touching her hair despite being told to stop . the prime minister defended his actions , saying he had already apologised . he also said his pranks were ` all in the context of a bit of banter ' the waitress was reportedly working at a cafe called rosie in parnell , east of auckland .\nscott keyes , a 28-year-old writer , is about to travel 20,000 miles on 21 flights and visit 13 countries . for this trip he will pay hardly anything , with all flights and hotels already covered thanks to airline miles and credit card points . he will make stops in mexico , nicaragua , trinidad , st. lucia , grenada , germany , czech republic , ukraine , bulgaria , greece , macedonia , lithuania , and finland . the trip took him between 10 to 15 hours to plan and cost him 136,500 frequent flyer miles .\none of first apps to take advantage of facebook 's new open approach . allows users to send and record gifs inside messenger app . instagram style filters can be added to gif images .\npaul monk , 54 , was wanted by spanish police in connection with a murder . the essex man is a suspect in the murder of francis brennan . brennan 's body washed up on a costa blanca beach in march last year . police released footage of their swoop on monk 's alicante villa .\nthe labour leader said he would not grant the snp a second referendum . his remarks come amid growing warnings over an snp-labour alliance . john major said the snp were ` waiting for a good excuse ' for a second poll .\niran revolutionary guards seized mv maersk tigris with 34 sailors aboard . iranian navy harassed another maersk ship days before , pentagon said . revelations have raised concerns about the security of shipping lanes . officials from iran claimed they seized maersk tigris under a legal order following a long running legal dispute with the shipping company .\nthe actor says he 's not planning on seeing the buzzed-about documentary . he called scientology `` brilliant '' travolta credits the church with helping him deal with his son 's death .\nchelsea starlets kurt zouma and izzy brown also took part in celebrations . quartet played a game of kick-ups with the twist of songkran traditions . songkran festival is celebrated by thais by throwing water at each other . brown captained chelsea under 19s to uefa youth league success . read : courtois targets premier league glory for chelsea .\nmanchester united beat manchester city 4-2 at old trafford on sunday . ashley young , marouane fellaini , juan mata and chris smalling scored . not many would have expected them to be key men for louis van gaal . james ward-prowse can reach the top if he adds goals to his game . i 've got a sneaky feeling one of the promoted teams will survive . aaron lennon looks happy at everton and he could move permanently . aaron cresswell scored one of the free-kicks of the season against stoke . yannick bolasie is terrorising defenders with his blistering speed . francis coquelin and harry kane show clubs do n't need to spend big . have tottenham really improved this season under mauricio pochettino ? visiting augusta showed just how dedicated you must be to be the best .\nelena curtin was seven-months pregnant during portland , oregon , incident . boyfriend 's ex was injecting drugs in her bathroom when she came home . curtin , 23 , was scheduled to go to trial on second-degree assault charge . she hit boyfriend 's ex on head and arm but prosecutors dropped charge . oregon law allows for physical force against an intruder who wo n't leave . conviction would have resulted in mandatory six-year prison sentence .\nsvetlana lokhova worked in the london office of russian firm sberbank . tribunal found she was driven to breakdown by bullying male colleagues . falsely branded ` crazy miss cokehead ' even though she did n't take drugs . she has now been awarded # 3.2 million for sexual harassment by tribunal .\njohannes stoetter 's artwork features two carefully painted female models . the 37-year-old has previously transformed models into frogs and parrots . daubed water-based body paint on naked models to create the effect . completing the deception , models rested on bench painted to match skin .\nthree passengers report a loss of consciousness on skywest flight . but officials say there is no evidence of a pressurization problem .\nnine-year-old probed over criminal damage & four-year-old over assault . 617 under-tens in west midlands from 2009 to 2014 in suspected crimes . five-year-old girl is alleged to have committed sexual activity with child . the legal age of criminal responsibility in england and wales is ten .\ngirl was playing with friend when zbigniew huminski forced her into car . chloe 's naked body was found in nearby woods an hour-and-a-half later . prosecutors say there is evidence of ` strangulation and sexual violence ' polish immigrant , who was heading to england , has admitted to killing .\ndiane morris , 46 , is engaged to mike holpin - who is father to 40 children . she has brushed off claims he still uses a dating website to pick up women . ms morris was ` stunned ' when he revealed he had fathered 40 children . she claims they have a ` great sex life ' and his womanising days are over .\ndramatic photos of the blood-red sky in aershan have gone viral in china . mud-like residue after the storm causes health concern with many citizens . no comments been given by the authorities on the cause of the incident . web users link the incident with the monster sandstorm attacking beijing .\ncarlisle slumped to a 3-1 defeat away at accrington stanley . the team 's poor performance prompted a scathing assessment from manager keith curle who suggested some of his squad were not fit for purpose . carlisle are without a win in five games in league two and just two places above the relegation zone . the cumbrians were relegated from league one last season and are at a serious risk of dropping out of the football league entirely this term .\npsg beat bastia 4-0 to claim the french league cup on saturday . zlatan ibrahimovic opened the scoring from the penalty spot . bastia had sebastien squillaci sent off in the incident that led to spot kick . ibrahimovic doubled the lead for the french champions before half-time . edinson cavani came on as a substitute and scored twice late on .\nsisters , one 61 and the other 58 , unable to agree because of mutual hatred . judge denzil lush said one could be jailed for trying to alter a document . lost control of a # 600,000 house and savings and shares worth # 100,000 .\n70,000 people gathered in nashville for the annual convention . leaders celebrated the republican majority in the u.s. congress . but they warned obama is ` dismantling freedom ' and clinton would too .\njordan brennan , 17 , died after being attacked in a manchester corner shop . he was assaulted by teen who thought his ethnicity was being mocked . the killer , now 17 , was jailed for eight months after admitting manslaughter . jordan 's mother , kim , says the sentence is an insult to her son 's memory .\nedwin ` jock ' mee , 45 , allegedly targeted 11 cadets aged between 15 and 25 . he was british army recruiting sergeant at mitcham barracks in croydon . court heard he isolated alleged victims from overseas and abused them . were allegedly threatened with deportation if they did not submit to him . one woman , a virgin in her 20s , fell pregnant after rape in waiting room . divorcee mee denies 17 counts of sexual assault and three counts of rape .\nstephanie scott 's sister kim has released a poem intended for her wedding . ` to my dearest stephanie and aaron on your wedding day . this is for you . ' . the poem details the romance and engagement of ms scott and mr woolley . friends and family have flooded the post with sympathy and memories . kim scott invited loved ones to a memorial picnic on saturday afternoon .\nsteve harmison took job with local club ashington afc in january . northern league division one side have won their last seven games . michael vaughan says mike ashley should be watching out at newcastle . john carver 's side were beaten 1-0 by local rivals sunderland on sunday .\nbill passes 92 to 8 ; passage came just hours before cuts to physicians would have taken place . gop presidential candidates ted cruz and marco rubio vote against the bill , candidate rand paul votes for it .\nfreedom act would replace patriot act when it expires on june 1 . careful negotiations have brought it to a house vote but the senate is still uncertain . senate majority leader mitch mcconnell has introduced a bill that would re-authorize the existing patriot act for 5 more years . civil liberties activists are upset over mass-surveillance carried out by the nsa and exposed by leaker edward snowden .\njockey aidan coleman wants to right past wrongs at the grand national . coleman prepares to ride the well-backed the druids nephew . the eight-year-old is a 12-1 shot for the # 1million steeplechase this year . coleman rode the seventh fence faller stan six years ago . click here for sportsmail 's 2015 grand national sweepstake kit .\nweinstein 's wife georgina chapman , 38 , was seen looking forlorn . couple were both pictured at their connecticut home on saturday . on friday it emerged a sting set up by the nypd shows weinstein did n't deny touching italian model ambra battilana - and apologized to her . she alleges he asked her for a kiss and then groped her during a ` business meeting ' at his manhattan office on friday night . a source claimed during the recorded conversation set up under the watch of the nypd , he did not deny touching her . the hollywood producer has denied the allegations and has spoken to police , who have not filed charges .\ncetaphil is found in pharmacy aisles beside creams to treat skin conditions . cleanser is fragrance and soap free and contains just eight ingredients . celebrity fans include amanda holden , charlize theron and olivia wilde .\nisis snatched dozens of girls after storming the town of sinjar last august . taken to warehouse where they were lined up and hand picked by fighters . survivor says she shakes with fear when she sees ` someone with a beard '\njessica edgeington , 33 , had made over 6,000 jumps . the villa rica , georgia , woman died wednesday in deland , florida . she appears to have collided with another diver mid-air and crashed . was pronounced dead at the scene about 4.10 pm . competed in a skydiving sport called ` swooping ' , where divers traverse an obstacle course over a pond as they come in to land .\ngreece could go bust next week as salaries and eu debt repayments loom . failing to pay workers will be humiliating for left-wing syriza government . but default on $ 200m imf payment in may would plunge eu into new crisis . uefa threatens to ban greece from international football in row over law .\nchelsea loanee patrick bamford was named championship player of the year for his displays for middlesbrough . preston 's joe garner won league one award while danny mayor collected the league two gong at the football league awards . mk dons midfielder dele alli won the young player of the year award .\nthe weather system is called an east coast low . it is formed from low-pressure over the tasman sea . they draw strong , moisture-laden winds across the coast , which cause heavy rain to fall . they are particularly common in june and can dump hundreds of millimetres of rain . they usually move away after 12 hours but this one is going to stick around for 24-36 hours . east coast lows were common in the 1970s but became less common in the 90s . ` close to the coast winds are up to 135kmh and rain up to 200mm , ' weatherman don white says . police and nsw fire and rescue have been called in to help the ses on 2800 weather related call-outs .\nsharon edwards , 55 , was last seen on saturday in grafton , nsw . police focus has shifted to treat her disappearance as a homicide . son eli says family are struggling to come to terms with disappearance . forensic officers have returned to her home with a crime scene warrant .\nmichael phelps is the most successful ever olympian with 18 gold medals . phelps was banned from swimming in september following arrest . american swimmer will compete in arizona next week in comeback .\ntyler kost , now 19 , from outside phoenix , was arrested last may for alleged sexual crimes against 13 girls between the ages of 13 and 17 . kost 's defense said new evidence taken from facebook and instagram proves the women lied about sexual abuse . the pinal county attorney 's office says kost faces 30 charges in three indictments ranging from sexual abuse to child molestation . three accusers and witnesses referred to the movie ` john tucker must die , ' where ex-girlfriends take revenge on a former boyfriend .\nchris zebroski attacked two taxi drivers in swindon in december . newport county striker says he was ' a bit over the limit ' while he was on bail he assaulted and attempted to rob two men . recorder says four-year sentence will ` shatter professional football career ' newport terminate zebroski 's contract as a result .\nashton taylor has slammed belle gibson over false claims she had cancer . the 21-year-old , from perth , was among the tens of thousands who purchased the popular app the whole pantry . she has had 15 brain operations as she battles a rare condition . gibson admitted she never had a terminal brain cancer . miss taylor said she felt tricked after believing gibson 's cancer story . but the student said an apology will not make up for what she has caused .\nfabian orellana was angered by sergio busquets ' time-wasting tactics . the celta vigo striker threw lump of turf towards the barca midfielder . orellana will now serve a one-match ban for his antics and will miss celta 's next game against grenada on wednesday .\ntrain guard graham palmer addresses passengers with original poems . the northern rail conductor began writing poems last christmas . palmer even customises his couplets for the stations his train passes . he says it 's tongue in cheek but at least it 's getting the message across .\nalan barnes , who is partially sighted and just 4ft 6in , picked up keys today . violent attack left the 67-year-old scared to return to his former home . the crime shocked britain and # 300,000 was raised by fund to help him . said his new home was ` fantastic ' and it was ` lovely ' to have his independence back .\nben crenshaw will replace arnold palmer for the par-three contest . palmer is recovering from dislocated shoulder but will be honorary starter . crenshaw joins gary player and jack nicklaus for the event opener .\nthe government will announce radical immunisation reforms on sunday . they will cut benefits from parents who do n't immunise their children . these include family tax benefit a as well as childcare assistance . scott morrison said rules around welfare payments need to be ` tightened ' he said immunisation should be a prerequisite to access tax payer money .\n35-year-old donnell graham shot his wife , 33-year-old shaquana graham , at the quality inn in springettsbury township , police say . he also shot 25-year-old kristopher pittman , who was staying in the same room , before turning the gun on himself . a motel worker said at least one of the individuals checked into the motel around 3 a.m. .\na top official with president dilma rousseff 's ruling party is arrested in bribery probe . joao vaccari neto denies wrongdoing , says all donations were legal . hundreds of thousands of brazilians have protested against rousseff in the last few months .\nmanchester united confirmed david moyes 's sacking on april 22 , 2014 . but sportsmail revealed moyes 's job was gone the day before . the club were in turmoil following sir alex ferguson 's retirement . but louis van gaal has steadied the ship this season . results , performances and players have all changed at old trafford .\nphilippe saint-andre succeeded marc lievremont as france coach in 2011 . lievremont had led les bleus to the world cup final that year . since taking charge , saint-andre has won just 15 of his 37 games . saint-andre will remain in charge for the forthcoming world cup . begles-bordeaux coach rapahael ibanez is favourite for the job .\nworld no 1 has not been beaten since the start of the year with 17-0 record . serena williams plays carla suarez navarro in the miami open final . players including simona halep , maria sharapova and eugenie bouchard have failed to mount a serious challenge to the american veteran .\nmoviegoers are tearing up during the emotional ending of `` furious 7 '' the movie 's end is a tribute of sorts to actor paul walker , who died during filming .\njaysh al-islam fights against government soldiers in syrian city of damascus . made up of around '60 rebel factions ' , it also opposes islamist groups like isis . held the ` largest military parade witnessed ' since start of the syrian revolution . saudi arabia is ` funding the group with millions of dollars in arms and training '\nferrari made 599 of the cars which are their fastest ever road going model . owners had to be invited by ferrari to buy the limited edition model . roberto cinti unleashed the car 's 671bhp v12 engine instead of the brake . the car ploughed through the front of a shop causing extensive damage .\nsenior australian islamic state commander stars in new propaganda clip . calls for attacks on australia as revenge for muslim strikes . ` you must start attacking before they attack you ' propagandist al-cambodi has been linked to anzac day terror plot . ` when are you going to rise up and attack them ? ' .\nantitrust chief said gazprom is barring eu clients from selling on its gas . russian foreign minister sergei lavrov said charges were ` unacceptable ' ` era of kremlin-backed economic blackmail draws to a close ' - lithuania .\nmanchester united face manchester city in the premier league on sunday . robin van persie said he was fit for united after nearly two months out . but louis van gaal has since revealed he will be without the striker . van persie declares himself fit , but do manchester united need him ? click here for all the latest manchester united news .\nromanian company mb telecom revealed the roboscan 2m aeria . it uses a cone of radiation to sweep across planes and look inside . the device is accurate enough to find a filament in a light bulb . but the radiation it emits is not safe for passengers yet .\nthe male employee and a female accomplice worked as a team to manipulate a screening system at denver international airport in 2014 . she would indicate a female was being screened when it was a male passenger after a signal when male worker found someone attractive . the tsa machine would then show up an ` anomaly ' in the genital area and the male tsa employee would pat down the male passenger 's genitals . both tsa employees have been fired but criminal charges were not filed .\ndavid nicholson , 48 , has resigned as head of basingstoke school . allegedly used school email to organise a threesome with escorts . escort said she enjoyed dressing in uniform , which he was ` keen ' on . father-of-four said he was ` looking forward to putting you over my knee '\nskeletal remains near daytona beach on april 23 , 1990 . the woman was never identified and her murder never solved . new forensic technology has reconstructed a facial image . she was aged between 25 and 40 , about 5 ' 4 ' and had her hair in pigtails . there is a $ 5,000 reward on offer for relevant information .\nreserve deputy robert bates said he meant to use a taser but accidentally shot and killed a man . lawyer for slain man 's family says bates was n't qualified to be on the force and received preferential treatment . `` robert bates has met all the requisite training required by oklahoma to be a reserve deputy , '' bates ' lawyer says .\nmillionaire andrew bush , 48 , found dead shot dead at costa del sol villa . ex-girlfriend mayka kukucova , 24 , a slovakian model , accused of murder . she went on run to home town nova bosaca before finally giving herself up . kukucova 's parents forced to sell home to pay for her legal fees in spain .\nunited finished the game with 10 men after michael carrick came off . sergio aguero reached the 100-goal mark faster than any other city player . james milner hurled an energy pouch to the floor in frustration after he was replaced by samir nasri . united felt that martin demichelis overreacted when caught by a flailing arm from marouane fellaini .\ncraig and bonnie morgan are desperate to keep son craig at prep school . from hastings in east sussex , they are sending him to battle abbey . fees of # 4,000 mean selling their terraced house and trying crowd-funding . claim ` academically gifted ' craig was n't being stretched at state primary .\naurelio de laurentiis furious after semi-final elimination by lazio . napoli owner threatened to send the team to an ` unlimited training camp ' rafael benitez 's side now only have the europa league as a trophy chance .\nfife council launched internal investigation following accusations . rosdeep adekoya beat son mikaeel to death then buried body in woods . family were known to social services in fife but had moved to edinburgh . police scotland investigated ` data management ' at the council .\nlook at the hybrid image at a normal viewing distance from the screen . if the image of einstein does n't appear , it may mean you have bad vision . illusion shows how we focus on different features depending on distance .\nweight-loss expert dr sally norton gives her verdict on six superfoods . from sour cherries to avocado , cranberries to pumpkin seeds . some are high in antioxidants while others reduce risk of heart attack .\nbill de blasio ` wants to be a more liberal alternative to hillary clinton ' new york mayor 's bid is allegedly backed by working families party . de blasio , clinton 's former campaign manager , has yet to endorse her .\nfootage showed an unusual ` apocalyptic ' dust storm hitting belarus . china has suffered four massive sandstorms since the start of the year . half of dust in atmosphere today is due to human activity , said nasa .\ngoblin valley state park in the san rafael desert of utah contains thousands of mushroom-shaped ` hoodoos ' the gnarly rock formations are created through the erosion of entrada sandstone deposited millions of years ago . softer sedimentary rock material erodes more quickly , leaving the harder rock behind , creating unusual shape .\ncandidate lynne abraham says she suffered a momentary drop in blood pressure and that it 's never happened before . while a doctor kept her from returning to the debate , the 74-year-old former district attorney says she will not let the incident affect her campaign .\nipswich denied three points as wolves fight back to draw 1-1 on saturday . manager mick mccarthy hails qualities of ` horrible bunch ' of players . richard stearman 's own goal had given ipswich an early lead at molineux . but benik afobe equalised on 50 minutes with close-range volley .\nalien search team , dubbed nexss , includes scientists from 10 universities . public could help with ` unprecedented ' search by accessing data online . comes weeks after nasa said we will find aliens in the next 10 to 20 years . but the likelihood that life is similar to that on earth is low , nasa claims .\nvideo shows how john moynihan , 34 , was shot within seconds of opening angelo west 's car door . west , 41 , immediately jumps out of the car and shoots the officer . video then shows west shooting at officers as he runs across the street . west was fatally shot by moynihan 's colleagues during the shoot-out . police said they released the video to be transparent with the public and tamp down rumors . moynihan was released from the hospital friday after weeks of recovery . police said his current condition is ` serious but improving ' .\nandy flower guided england to three ashes wins over australia . former team director also led england to the world no 1 icc ranking . andrew strauss is a front-runner to becoming director of england cricket .\naustralian broadcaster has sacked sports reporter over anzac day tweets . football journalist scott mcintyre condemned anzac day commemorations on the 100th anniversary of the gallipoli campaign . remembering ` rape and theft ' committed by ` brave ' anzacs , he tweeted . mcintyre also called the gallipoli landings ` an imperialist invasion ' . his comments sparked fury , with hundreds calling for him to be sacked . ` sbs apologises for any offence or harm caused by mr mcintyre 's comments ' the broadcaster says .\ndestiny cooke , 16 , and lajahia cooke , 17 were beaten by a mob in trenton . lajahia said one girl ripped out her earring and then girl 's mother threw a rock at her ear , which required 12 stitches . destiny has a bald spot where someone grabbed a chunk of her hair . people can be seen holding the girls down so others can punch them over and over again , while the crowd laughs and cheers . destiny said as the sisters walked out of the park the police ` just stayed in their cars and just looked at us ' .\ntory mp ken clarke claims the party has become ` much too right-wing ' he bemoaned its recent electoral performances and criticised its strategy . the long-serving mp warned against offering ` blank cheques ' to the nhs . he has served under margaret thatcher , john major and david cameron .\nbyron meth opened with a 74 on his masters debut . half of the players had a scoring average of 4.2 or higher on day one . liverpool legend kenny dalglish will be present at the masters this week .\nkim and kanye west recently visited armenia to retrace her family 's roots . reality star used to favour miami beach and las vegas hotels and bars . paris is also a new favourite destination , since her hen do there last year .\nchief executive michael o'leary made the vow to a french newspaper . he attributed the cuts to lower oil prices and said savings will be passed on . the controversial boss said ryanair 's average ticket price could drop by # 4 . new boeing planes ordered by irish carrier will have more capacity . mr o'leary also took aim at air france and predicted more troubles times . he disputed claims that ryanair staff face poor conditions and wages .\ninn will have 20 bedrooms and is to be completed to meet demand in 2016 . it will sit in the prince 's village on a square named after the queen mother . the model village ` poundbury , ' dorset , already has a prince george house .\nformer brazil striker ronaldo played for real madrid between 2002-07 . the two-time world cup winner officially retired from playing in 2011 . cristiano ronaldo scored his 50th goal of the season against malaga . real madrid beat malaga 3-1 to keep up the pressure on leaders barcelona .\nkeith cameron , 54 , jailed for five years after being found guilty of fraud . scammed architect jonathan speirs out of # 476,864 in complicated ruse . cameron promised a # 2million return for an investment to dying man . now mr speirs 's family are facing having to sell their edinburgh home .\nbubba watson sits four shots off huang wen-yi 's lead in china . defending champion was off the pace at the shenzhen international . watson will be looking to put masters disappointment behind him . the american finished 38th at augusta national .\nfox plans to make a tv movie of `` the rocky horror picture show '' some of the producers behind the original film are involved . tv is in the midst of a musical craze .\npresley first wore suit in public on march 28 , 1957 , during a performance . will be on display at the o2 from sunday alongside other artefacts .\npennsylvania police officer lisa mearkle charged with criminal homicide . stun gun took video of her fatally shooting david kassick , 59 , in the back . mearkle , 36 , has claimed to authorities the shooting was act of self-defense . her attorneys filed motion to prevent da from showing clip during hearing . lawyer for kassick 's family said video ` leaves nothing to the imagination .\nsgt. george hildebidle barricaded himself inside his grand oaks home . his wife called 911 about 7am . police surrounded the house and evacuated nearby properties . just before 1pm they entered and found hildebidle dead . he was described as a ` great sergeant ' who did ` wonderful things ' incident unrelated to the case of michael slager , the cop accused of murder .\ngeoff barrow said streaming services and record labels give music away . added that young talents were being given a raw deal by companies . artists have long complained of low royalties paid by likes of spotify . taylor swift recently pulled all of her music off of the site in protest .\nfive sailors took their own lives while serving on wa 's hmas stirling . suicides happened over two years and some had attempted it before . stuart addison 's family did n't know about his other attempts until his death . it was a similar case for four other families , including stuart 's close friends . revelations of ice use , binge drinking and depression have also emerged .\nrobosub was exploring the gulf of mexico off the coast of louisiana . at 598 meters the sperm whale appeared in the robosub 's cameras .\nmanchester city maintain striker alvaro negredo will move to valencia . the spaniard will cost the la liga side # 24million this summer . fee was part of the loan agreement put in place for negredo . city scouts were deployed to watch porto 's alex sandro this week .\nphnom penh , the cambodian capital , fell to the genocidal khmer rouge 40 years ago today . at least 1.7 million people were killed in the subsequent four years , before the regime was driven out . decades on , the country is still struggling to gain justice for victims and heal from the genocide .\nedinson cavani struggled in both legs for psg against barcelona . uruguayan striker 's scoring record in ligue 1 is n't what it should be . louis van gaal prefers to work with young talent and cavani is 28 . radamel falcao has struggled at manchester united after signing on loan . cavani says he wants to stay at psg and he may not have much choice . van gaal identifies ilkay gundogan as replacement for michael carrick .\nchina 's navy evacuated 225 foreign nationals and 600 chinese citizens . 300 russians and 200 pakistanis were flown out of war-torn area . weapons parachuted into aden by saudi-led war planes . conflict has seen at least 519 people killed so far , says un .\nthe top four tiers of the english game will stand for a minute 's silence to mark the 30th anniversary . main stand at bradford city 's valley parade was ablaze in harrowing scenes on may 11 , 1985 . football league supporting efforts to raise # 300,000 for the plastic surgery and burns research unit at the university of bradford .\nnorwich move up to third spot with away victory against brighton . bradley johnson struck in the 62nd minute to hand his side crucial win . brighton remain in 16th position with six league games to go .\nbus was carrying 40 players and staff back from away game when it was attacked near the city of trabzon . trabzon governor abdulcelil oz said the bus driver appeared to have been hit by a bullet . security officers on board were forced to take control of the bus and safely stopped it on saturday night .\nsome crime vicitms are waiting up to two minutes longer for a response . there are now 17,000 fewer police officers across the country than in 2009 . callers have been urged to contact the non-emergency 101 service . labour 's yvette cooper blames the increase in waiting time on tory cuts .\nkristin holmes ` uploaded photo after being mistaken for another woman ' in image , 26-year-old is beaming while pointing a gun toward the camera . she captioned it : ` so you know the difference when you `` come find me '' ' holmes , from virginia , has been charged with harassment by computer . facing class 1 misdemeanor that lead to one year in jail and $ 2,500 fine . but she argues the photo was ` just a funny picture ' that ` was n't a threat ' state law bans use of vulgar , indecent and threatening language online .\nspacecraft to crash on mercury this month . messenger probe has been in orbit since 2011 .\nhelaman barlow was police chief of twin towns of colorado city , arizona , and hildale , utah but admits he did things he now regrets . he said he knew of underage marriages happening in the community and was asked by church leaders to change police reports . he also recorded conversations with law enforcement and passed them on to jeffs when he was on the run and being sought by the fbi . jeffs , the leader of the fundamentalist church of latter-day saints , is now serving life in prison for marrying and raping two 12-year-old girls . federal investigators are now suing the towns ' governments , accusing them of being controlled by the church .\njoanne whitehouse applied for daughter to go to st john fisher 's school . she had ` no issue ' with alice , 4 , getting place as her three brothers attend . but she found out this morning she would have to send her to another one . the mother-of-eight plans to appeal the decision by rochdale council .\nspring in russia means increase in bear cubs being rescued as hunters kill their mothers . some are found wandering alone in the wild , while others are left at sanctuaries and zoos .\non four occasions , grey seals were spied eating porpoises they had killed . although killer seas are known to lurk in the waters off the continent , this is the first time they have been seen around britain . the footage , the first in the world , was shot by a wildlife cruise company , off the coast of pembrokeshire .\nthe pontiff laments the suffering of people in conflicts currently making headlines . foremost , he asks that bloodshed end in iraq and syria .\ndivock origi has scored just seven league goals this season for lille . belgium striker will join liverpool for start of next season after loan spell . mignolet believes origi has all the qualities to succeed at anfield . read : jordon ibe on the verge of signing new liverpool contract . click here for all the latest liverpool news .\nmotaz zaid , 20 , apparently kidnapped , tortured and forced to drink bleach . he was bundled into a mercedes c220 estate , attacked and later dumped . police found him at the roadside in south west london with critical injuries . officers now hunting gang of masked raiders accused of the horrific attack .\nmore than 600 million people will wager # 500 million on saturday 's race . four out of ten britons admit to picking their horse because of the name . seven out of ten women make their selection for the big race by pot luck . champion jockey and 2010 winner tony mccoy will retire after the race .\nleza davies had a boob job as her chest sagged after breast feeding . in april 2012 , she knocked her right breast on a door and found a lump . tests showed it was cancer so she had surgery removing her lymph nodes . she became pregnant despite being told cancer treatment causes infertility .\njuventus beat lazio 2-0 on saturday to move 15 points clear in serie a. carlos tevez and leonardo bonucci scored in the first half for old lady . earlier in the day sampdoria were held to a draw by lowly cesena .\na wake was held for freddie gray at vaughn green east funeral home in baltimore , maryland sunday afternoon . earlier in the day , the gray family 's pastor gave a special speech at church in remembrance of the 25-year-old man who died last week . gray was arrested april 12 and taken to the the hospital within an hour for spinal injuries . he died a week later , on april 19 . his death has caused mass outrage in the maryland city and on saturday protests turned violent downtown ; 34 were arrested .\ncomedian tamale rocks filmed discovery of the deceptive mirror . owner of cigars and stripes , in chicago , is unapologetic about it . ronnie lotz says people who do n't like the mirror can ` stay home ' police are investigating the incident .\nhundreds of yazidi girls and women held as sex slaves in islamic state . some who have escaped have returned pregnant by their captors . abortion is illegal in kurdistan , but some doctors are breaking the law .\nthere are three 7-2 co-favourites for the grade one celebration chase . ap mccoy 's mount mr mole is bracketed with special tiara and sprinter sacre for saturday 's race . it will be ap mccoy 's last ride in a grade one race .\nbruno smartcan is world 's first internet connected vacuum and rubbish bin . it uses sensors to detect when dust is brushed close to it and sucks it up . motion sensors open the lid automatically and can send alerts to your phone to remind you when the trash needs to be taken out .\no'shae smith told judge lila statom that he shot a rival gang member for being ` in his hood ' last month . statom told him east court lakes , the housing project where the shooting took place , belonged only to the hard-working people who live there . the chattanooga area has been ravaged by gang violence . statom said she wanted to show smith that the courtroom was an area he could n't intimidate or control .\ntv presenter sophie falkiner reveals she was into girdles long before the kardashians made it cool . falkiner says it 's a secret all hollywood plastic surgeons tell their patients . jessica alba is also said to swear by it for a trim post-baby body .\nthe spectacular photos were taken at paddy fields in china , thailand , vietnam , laos and cambodia . photographer scott gable spent four months travelling region to document the process of harvesting the crop . rice accounts for one fifth of all calories consumed by humans but crop is often still cultivated in primitive way .\nlos angeles kings forward arrested friday on drug possession charges . hockey player was busted at the wet republic pool at mgm grand hotel . he was booked at clark county detention center and posted $ 5,000 bail . the charges include possession of class 1 , 2 , 3 and 4 controlled substances . nhl security has been notified and kings are aware of situation as well . he was in the news in 2013 when he had an unexplained seizure at his home . stoll celebrated the end of both the 2012 and 2014 season at the mgm grand as well with his kings teammates .\nworking out in a group of friends inspired fit nation participant erica moore .\nguy martin reviewed the aston martin vanquish while on the isle of man . wrote how he reached up to 180mph in a small village with a 40mph limit . said he completed the tt course around the island in the car in 22 minutes . isle of man police has confirmed that they are looking into the incident .\nengland fans sang anti-ira songs during tuesday 's draw with italy . fa tried to stamp out chants after ` f *** the ira ' was sung against scotland . roy hodgson 's side take on the republic of ireland in dublin in june .\ngrace rebecca mann , 20 , was found unconscious friday afternoon by two female roommates at their home in fredericksburg , virginia . the fourth roommate , steven vander briel , 30 , was at home but fled . he was arrested a few later emerging from woods near church . briel was charged with first-degree murder and abduction . mann , a popular junior , reportedly had a plastic bag down her throat . her father thomas mann is a juvenile and domestic relations court judge in fairfax county .\nthe smash hit series `` game of thrones '' returns for a fifth season sunday . major story arcs should start to converge this year .\ntom o'carroll went to rally in houses of parliament on february 25 . 69-year-old former key activist jailed in 1981 for ` corrupting public morals ' pie was formed in 1974 to campaign for sex with children to be legalised . his attendance at the meeting is likely to be an embarrassment for group .\ncosmetic dermatologist to the stars fredric brandt was found dead at his coconut grove home in miami on sunday , aged 65 . joy behar tweeted : ` dr brandt was one of the sweetest , nicest , most generous people i have had the good fortune to meet & work with . he will be sorely missed ' kelly ripa , posted : ` my heart is breaking for the loss of dr. fredric brandt . my friend . you will be missed forever and in my heart even longer ' . colleague dr robert anolik , who worked with brandt at his clinic , posted a moving tribute on monday saying he had lost a ` close friend ' . the city of miami police department confirmed that dr brandt 's death on sunday was a suicide by hanging . brandt was said to have been ` devastated ' over rumors comparing him to a character on the show , unbreakable kimmy schmidt .\nliya kebede , who was born in ethiopia , graces the may issue . she also appeared on vogue paris ' may 2002 cover . last black model before mrs kebede was rose cordero in march 2010 .\npolice were called to a dairy in east christchurch after reports of a robbery . man in a ` distinctive ' cartoon mask demanded cash from owner 's daughter . police are appealing to the public for help in identifying the offender .\nbetheny coyne was diagnosed with the defect before she was born . was not expected to live past her fourth birthday - but has defied the odds . is now trying to make as many memories as possible for her children .\nclimate sceptic group global warming policy foundation launch inquiry . panel drawn from leading universities includes experts with differing views . will look at whether ` adjustments ' made to records cancel each other out . says it hopes people from all areas of climate change will help the panel .\nofficials insist there were no weapons on board and atomic reactor is safe . fire had started during welding , causing insulation materials to catch fire . the russian nuclear submarine was submerged to extinguish the fire .\nformer first lady hillary clinton has not announced whether or not she will run for president . her husband says he will support her wishes no matter what - but will take a back-seat role if and when she begins her campaign . during her 2008 campaign , it was reported that his staffers clashed with her team .\na new documentary hopes to expose the illegal organ trade in china . china 's organ trade is allegedly worth a massive us$ 1 billion a year . human rights lawyer david matas tells the gory details of what goes on . tens of thousands of innocent people killed on demand it is claimed . political prisoners in particular being used as live organ donors . it 's believed most were members of the banned falun gong movement . documentary will air on sbs one 's dateline program on tuesday night .\norchid has evolved a ` lip ' - irregular modified petal - to attract insects . researchers in taiwan found its shape is determined by two competing groups of proteins - the ` l' complex and the ` sp ' complex . by tweaking them , they can convert the lip into standard petals again .\nlifelong blackpool fan frank knight forced to pay # 20,000 in damages . the pensioner made allegations about the oyston family . club is owned by owen oyston , while son karl is blackpool chairman . knight ordered to make a public apology following facebook comments .\nharvey weinsten and his designer wife georgina chapman turned up for the premiere of his new broadway play finding neverland on wednesday . it is the first time the pair has been seen together since weinstein was accused of groping an italian model in march . the district attorney 's office announced last friday that weinstein will not face criminal charges over the incident . finding neverland is the same play weinstein gave model ambra battilana a ticket to . the couple also spent chapman 's birthday together earlier in the week , as well as easter with their children two weekends ago .\ntiny copper coin is dated to the iron age , almost 2,300 years ago . it was found in saltford between bristol and bath in south west england . bears image of a horse 's head and the carthaginian goddess tanit . find suggests trading links between south west and the mediterranean .\n` suicide note ' was played to court in dublin as her carer goes on trial . bernadette forde , 51 , had been given green light to travel to dignitas clinic . carer gail o'rorke charged with assisting suicide by helping to buy drugs .\nthe wikileaks founder is wanted for questioning over sexual abuse claims ; he denies the allegations . assange has been holed up in the ecuadorian embassy in london since june 2012 .\na south carolina man says he spent 66 days alone at sea before being rescued . other sole survivor stories include a japanese man washed away by a tsunami . an el salvador man says he drifted from mexico to marshall islands over a year .\nana elizondo was kidnapped in 2012 as she was leaving a night class at the university of texas , pan american . captors transported her through cars and tried to cross mexican border . she was released unharmed the following day by one of the kidnappers . she believes she stayed safe by being friendly and joking with kidnappers . her experience will be featured on a crime documentary show tuesday .\nteenagers are currently in police custody at a west midlands police station . police said their arrests were pre-planned and there was no risk to public . a 39-year-old man is being held on suspicion of fundraising for terrorists . west midlands counter terrorism unit appealed for help identifying jihadis .\nhendry , 49 , was almost twice the limit for alcohol when he was stopped . court heard he had rowed with his beauty therapist girlfriend sarah kinder . he was seen driving at up to 50mph in a 30mph zone by a police officer . banned and ordered to pay a total of # 330 - but asked for time to comply . former defender was made bankrupt in 2010 owing millions .\njames wilson reveals what he would take from each man united striker . the 19-year-old would take wayne rooney 's free-kick taking ability . wilson would like to add robin van persie 's movement to his own game . while he would like to harness radamel falcao 's predatory instincts . man utd sacked moyes one year ago ... what has van gaal changed since ? read : manchester united gareth bale to give his side needed dynamism .\nthe men are current or former florida prison guards . they are charged with one count of conspiracy to commit murder .\nuniversity of cambridge scientist has revealed his green source of energy . by using just moss he is able to generate enough power to run a clock . he said panels of plant material could power appliances in our homes . and the tech could help farmers grow crops where electricity is scarce .\nthe dogs called sky , sadie and marshall each stand in the front room . springer spaniel begins barking before husky turns song into howl . third dog joins in with the song and the three dogs howl even louder . before owner interrupts them and they stop and stare at him in surprise .\nphotos show models maria sidorova and lidia fetisova posing with 650kg bear in forest outside moscow in russia . they are pictured hugging and kissing stephen the brown bear , who has been specially trained to appear in films . it was part of an anti-hunting campaign with organisers highlighting ` natural harmony ' between bears and humans .\nteams of cleaners , known as ` lonely death squads ' , clear houses where elderly people lay dead for months . police remove decomposing corpses but the clean-up crews are faced with houses filled with rubbish and flies . in rapidly ageing japan , more and more people are dying alone and unnoticed in a country of 127 million people . one in four people in japan is over 65 - with increasingly loose family bonds adding to the isolation of the elderly .\nlib dem leader is trailing labour in sheffield hallam constituency . deputy prime minister won his seat in 2010 with more than 50 % of the vote . revelation included in latest round of polling in marginal constituencies .\nengland captain alastair cook has been working on a new batting stance . his new stance has his front foot too far out without protecting the wicket . as a result , he does n't have time to adjust to the delivery and set himself . cook probably overdid his new stance against the west indies . still , he should n't be written off just yet and impressed in training .\nscottish first minister talked up chances of being the king-maker . mr miliband tonight ruled out a formal deal with the resurgent nationalists . a vote-by-vote arrangement between labour and snp remains on the table . but ms sturgeon said : ` he wo n't get his budget unless he compromises '\nnewcastle united face swansea at st james ' park on saturday . the magpies have lost their last six barclays premier league games . fans group ashleyout.com have asked supporters to stand in 34th minute . swansea are unbeaten in their three premier league visits to newcastle .\nhousing association tenants are paying # 150 a week to live in # 1m homes . properties are owned by associations as part of affordable housing pledge . new right-to-buy legislation could see tenants able to purchase homes . they will be offered discounts to buy their properties , giving an extra benefit to those who currently occupy flats in mayfair for cheap rents .\naaron cook fought for great britain at the beijing olympics in 2008 . cook felt he was unfairly left out of the london 2012 olympics team . british olympic association approved application for nationality change . cook has received funding from moldovan billionaire igor iuzefovici .\nliverpool lost 4-1 at premier league top four rivals arsenal on saturday . result sees reds seven points adrift of fourth place with seven games left . reds travel to blackburn in their fa cup quarter-final replay on wednesday . adrian durham : sterling would only be earning the same as balotelli if he signed new # 100,000-a-week deal at liverpool ... that 's the real issue here . click here for the latest liverpool news .\nvillagers in shangdong are seen using bags as long as six metres . it is becoming a common behaviour in some villages since 2011 . previous investigation suggested gas in the bag are often stolen . gas carriers have little understanding of dangers claiming it to be safe .\nal-shabaab is an al-qaeda-linked militant group based in somalia . it claimed responsibility for the deadly attack at a kenyan mall in september 2013 . the group has recruited some americans .\nssangyong -lrb- korean for ` two dragons ' -rrb- is launching a sports utility vehicle . new sporty five-door family runaround has a very european name - tivoli . suv is powered by 1.6 litre euro 6 petrol and diesel engines .\neni mevish , 20 , was stabbed to death by david marshall , 68 , last november . the pair had become friends six months earlier while eni was out jogging . he stabbed her at her home in the lungs , liver and heart with kitchen knife . marshall , who previously abused a 14-year-old girl , admitted murder . he must spend at least 20 years behind bars before applying for parole .\nnathan baggaley has been charged and detained after assaulting police . he allegedly hit an officer 's hand when he was found with a white powder . the fallen athlete has been denied bail and will face courts may 7 . mr baggaley has also been charged with a string of serious drug charges . he has plead guilty to manufacturing a border-controlled drug and manufacturing a marketable quantity of methamphetamine .\nfootball association and premier league fall out over clash . bbc and sky viewing figures both suffered with games on at same time . luke shaw might have been helped by louis van gaal 's fast-food rules . joe root 's celebrations come in for criticism , while alastair cook is still worrying about kevin pietersen 's media coverage .\nrangers ' final day match with hearts has returned to saturday , may 2 . the league had caused controversy by moving the fixture to may 3 , 24 hours after promotion rivals hibernian would have completed their campaign . broadcasters sky have decided to screen rangers ' match live .\niraqi officials say izzat ibrahim al-douri , 72 , has died in fighting in tikrit . he was one of saddam hussein 's most trusted henchmen in ba'ath party . had a $ 10m bounty on his head and was one of the us 's most wanted men . body returned to baghdad today and delivered to the ministry of health . warning : graphic content .\nwarning : graphic content . madalina neagu , 42 , arrived at a romanian hospital with abdominal pain . she believed she was going into labour and doctors prepared for surgery . they carried out tests and found she actually had an 11lbs -lrb- 5kg -rrb- tumour . she had emergency surgery to remove the tumour and has now recovered .\nqueensland woman roxy walsh found an inscribed gold ring in bali . the sentimental jewellery piece was found at a bali resort on tuesday . she launched a campaign to return the ring to the people who own it . ms walsh said she has found the owner and will meet ` the joe and jenny ' for breakfast in noosa on sunday . it 's unknown when the ring was lost or where the couple are from .\naberash bekele , 32 , is angry at filmmakers of difret for using her story . miss bekele was abducted so she could be pushed into a forced marriage . film was screened at global summit to end sexual violence in conflict . last year , miss bekele won injunction banning it being shown in ethiopia .\nharry kane is the premier league 's joint-top goalscorer with 19 but was 500/1 to win the golden boot at the beginning of the season . michael owen emerged in 1997-98 but managed to maintain his form . kane has captured the imagination since earning his senior england debut . nobody had ever won player of the month three times in a row but kane went desperately close after winning it in january and february . olivier giroud beat him to march despite kane 's five goals that month . vincent kompany and kane have coincidentally played 1,876 minutes each this season , and both have won 25 tackles apiece . kane features twice in the top 20 most distances covered in a match . he was given a taster of what is to come by italy defender giorgio chiellini .\nlee keeley flew into a rage after a civil case in lincoln went against him . 38-year-old chased girlfriend around court and even threw a chair at her . after finally pinning her to the wall he hit her then stamped on her head . judge at crown court sentencing says his behaviour was ` outrageous ' .\nhis cruel injury jinx struck again as the england and lions flanker dislocated his shoulder against newcastle . the injury will almost certainly rule him out of the world cup . in 2012 , the 29-year-old suffered a broken neck and he missed most of last season with a knee injury .\nmany clouds wins the 2015 grand national after leading ap mccoy 's shutthefrontdoor with one furlong to go . however shutthefrontdoor tired on the final straight and mccoy was forced to settle for fifth on his swansong . saint are came in second after a hard-fought final straight but it was oliver sherwood 's horse that took the glory . jockey leighton aspell took his second consecutive national title after his 2014 win with pineau de re . 40-1 shot monbeg dude , ridden by liam treadwell came in third after a thrilling race .\n10 pupils pull out of trip to mosque after parents express ` grave concerns ' one parent expressed fears of child being exposed to ` violence and guns ' lostwithiel school in cornwall planned re trip to exeter mosque next week . however , other parents backed trip to promote education of various faiths .\nat 41 van leeuwenhoek used his body as a guinea pig in an experiment . vermeer spent hours peering into the box-like interior of a camera obscura . could vermeer and van leeuwenhoek have inspired each other 's work ?\nexpert : decision `` does n't look very urgent , '' but it appears `` well-timed '' for pope francis . robert finn remained a bishop after a 2012 conviction for failure to report abuse . leader of watchdog group calls the pope 's decision `` a good step but just the beginning ''\nletourneau and vili fualaau will speak to barbara walters in a 20/20 interview that will air this friday . letourneau and fualaau started a sexual relationship when she was his sixth-grade teacher and she fell pregnant with his child when he was 13 . she served a few months in jail and fell pregnant with his second child within weeks ; she was then sent back to prison for seven years . but a year after her release in 2004 , they married and are still together . their now - teenage daughters will join them for the interview .\nincident occurred over the arabian sea in mumbai airspace . a resolution advisory alarm is sounded if within 25 seconds of collision . both emirates and etihad say safety of passengers was not compromised . indian officials are now investigating the incident as it was in its airspace .\nobama promised armenian-americans he would call the atrocity genocide during the 2008 campaign . the white house views turkey as a more crucial ally than armenia . pope francis , actor george clooney , and even the kardashians have taken the moral position , calling it the armenian genocide .\nvictim shelley williams accused attacker of having affair with her partner . kate temple and sister louise scollen got into a scuffle with miss williams . williams was left covered in blood after temple bit off a part of her ear . police found missing chunk the next day . temple was jailed for 20 months .\njosh meekings was given a retrospective one-match ban for a handball . the incident was n't punished in inverness 's scottish cup win over celtic . the ban , which is being appealed , would rule meekings out of the cup final .\nteresa swarbrick drowned on april 8 off the coast of byron bay , nsw . her husband alan described her as a ` special soul ' in a facebook tribute . ' i simply can not express the love we had together , ' he said . the mother of two was caught in strong currents while snorkelling . lifeguards and paramedics were unable to revive her with cpr .\ncamel weighed 450kg and had to be hoisted into the kiln by a crane . mysterious marinade contains 36 herbs as well as eggs and black pepper . chef spent five days building the giant kiln with more than 10,000 bricks . first customer had queued for three hours for a portion . the street feast is a part of a tourism festival in xinjiang in northwest china .\nthe actress , 29 , says she had to pay out of pocket for her 2007 abortion because she could n't tell her mother . jemima says she was only able to afford the procedure by forgoing anesthesia , which would have made it more expensive . in the center for reproductive rights video , the star says she worries about the obstacles her young daughters may face in the future .\nmiliband came under fire last month for having two kitchens in # 2.7 m home . in an itv interview , he admits that he has a second kitchen for his nanny . comment led to accusations miliband lives ` upstairs , downstairs ' lifestyle . daniel , five , added to row by saying spartan kitchen was ` best ' in the house .\nmanchester city and chelsea meet in the first leg of the final on monday . former blackburn winger jason wilcox is manager of the city youth team . the 43-year-old says his aim is to get local players into the city first team . wilcox has backed the new facilities at the etihad campus deliver that aim .\nleonard matched his career-best 26 points and seven steals . san antonio beat golden state 107-92 to continue 32-game home streak . indiana beat miami 112-89 to keep their play-off hopes alive . lebron james recorded first triple-double as cleveland beat chicago .\ntrooper abraham martinez jumped into the air and kicked steven gaydos off his bike following a high-speed chase in houston in december 2012 . gaydos ran a stop sign and fled while driving on a suspended license . martinez shot at him four times - striking him in the leg - and when the man pulled over , he kicked him off his bike . martinez was suspended for three days for the unconventional move . the video emerged this week as a texas newspaper investigated outdated tactics used in department of public safety pursuits .\ncarriers of brca1 gene mutation who are diagnosed with breast cancer are less likely to die if they have their ovaries removed , study found . but the theory does not apply for those with brca2 gene mutation . having the brca1 or brca2 genes increase risk of breast cancer by 70 % . experts said benefits of having ovaries removed lasted for up to 15 years .\nformer child star was nominated for the office by richard nixon in 1969 and the fbi was called in to check she was suitable . file reveals agents went to huge lengths to question those who knew her about her - republican - political views and those of husband charles black . her first husband john agar told agents she was ` untrustworthy ' - unlike then-california governor reagan who strongly backed her . temple died in february 2014 aged 85 and her 417-page fbi file was obtained by daily mail online under freedom of information act rules .\nhyperemesis gravidarum -lrb- hg -rrb- triples risk compared with regular sickness . behavioural link appears to be due to lack of nutrition in early pregnancy -- especially in the first five weeks -- rather than medication . some women with hg lost 5lbs -lrb- 2.27 kg -rrb- and needed intravenous fluids .\ngul ahmad saeed suspected of shooting fiancee , her parents and siblings . said to have been ` infuriated ' about her uncle 's indecisiveness over match . saeed , 25 , had already allegedly killed four members of his own family . has been on the run from police since their deaths earlier this year .\nvictoria beckham was at the london marathon to cheer on her son romeo . the star wore a pair of alaïa boots , which retail at approximately # 1,500 . she was joined by husband david and sons brooklyn and cruz .\ndog pictured ` surrendering ' alongside its drug gang owners . police took amusing snap during a drugs bust in south brazil . picture showing gang members and their dog has since gone viral .\nzakiur rehman lakhvi allowed to leave adiala prison late on thursday . his release was slammed with indians calling it an ` insult ' to the victims .\nlabour received # 1.9 million in week to april 5 , new figures have revealed . three trade unions contributed 84 per cent , including # 1million from unite . conservative donations totalled over # 500,000 in first week of campaign . critics say labour is being bound by union paymasters after manifesto .\njared quirk , 18 , collapsed while walking through athens with classmates . died in greek hospital on friday on third day of foreign school trip . he is the third senior from rockland high school , massachusetts , to die since october .\nan increasing number of surveys claim to reveal what makes us happiest . but are these generic lists really of any use to us ? janet street-porter makes her own list - of things making her unhappy !\nroberto martinez has hit out at suggestions that he is tactically stubborn . the spaniard has been criticised for persisting with the same style of play , moving the ball on the ground out from defence . martinez insists that he is ` innovative ' in his tactics and points to the tinkering he employed during everton 's win over southampton on saturday .\na psychology expert has revealed that the stress of a visit to the store can cause serious friction between couples . she warned that customers avoid one particular unit known as the liatorp , which retails for $ 1,199 and is notoriously tricky to build .\nthe moon formed when a mars-sized body called theia hit it early on . but no one is sure why the moon and earth have a similar composition . university of maryland researchers say cloud of debris rained on worlds . but israel institute of technology says impactor was similar to earth .\nmartin odegaard may make real madrid debut after being named in squad . iker casillas also on the bench for the european champions . madrid hope to narrow five point-gap to barcelona at top of la liga . clash against almeria at the bernabeu will kick off at 7pm .\nlinden adkins , 56 , was captured on video at kent state university , ohio . was seen cutting off a car then screamed at the driver he was a ` moron ' . applied engineering lecturer then tries to grab the windshield wipers . has been charged with menacing - he claims he will plead guilty . adkins claim he took action because the driver was on his phone and nearly ran down a student .\nfireball cinnamon whisky is the fastest-growing big brand of liquor in america . the liquor has dethroned jagermeister as america 's party shot of choice . whisky expert : `` fireball is an incredible phenomenon . the growth ... has just been astounding ''\nvictor wanyama has starred in the heart of southampton 's midfield . reports claim he has spoken to arsene wenger over a summer transfer . team-mate morgan schneiderlin has also been linked with the gunners . read : bacary sagna insists he does not regret leaving arsenal . read : arsenal fans should give cesc fabregas a good welcome .\neligah christian , 49 , was taken into custody friday after his unsuccessful bid to elude capture near sarah palin 's home of wasilla . christian was being sought on a $ 100,000 warrant on charges of scheming to defraud , 15 counts of theft and 21 counts of issuing bad checks .\nmanchester united could still sign radamel falcao permanently . chief executive ed woodward held talks with monaco on sunday . woodward told monaco the club would make decision at end of the season . under the terms of the loan , united would have to pay # 43.5 m for striker . monaco are willing to negotiate fee however after falcao 's poor loan spell . falcao has managed just four league goals for united this term . monaco manager leonardo jardim believes falcao can rediscover his form .\njessica ennis-hill to compete for the first time since giving birth . mo farah and greg rutherford also set to take part in anniversary games . anniversary games set to take place between july 24-26 .\nveteran rocker 's surprise guilty plea at the eleventh hour . phil rudd was set to stand trial on ` threatening to kill ' and drugs charges in nz court on tuesday . in the worst case scenario the 60-year-old could face up to 7 years jail . he has already been replaced by chris slade on the group 's ` rock or bust ' world tour due in australia in november . rudd will be sentenced on june 26 .\nalex oxlade-chamberlain and kieran gibbs met up with rapper tyga . the arsenal stars took the rack city artist for tour around the emirates . arsenal take on hull in the premier league on monday night . read : arsenal , chelsea and tottenham chase wonder boy charlie patin .\nsenator bob corker has countered barack obama 's previous assertion . he claims congressional oversight ` does n't mean there wo n't be a deal ' adds congressional scrutiny is vital to make sure deal is not bad one . congress must ` tease out and ask important questions ' about the pact . any nuclear agreement with iran must also be approved , corker says . the deal , announced thursday , is scheduled to be finalized by june 30 . senate foreign relations committee is due to meet april 14 to consider corker 's legislation to ensure congress debates and signs off any pact .\nfive-year-old corey edwards often asked why his parents were not married . craig and jemma had put their wedding on hold to fight his heart defect . they decided to tie the knot when they discovered his illness was terminal . the edwards made history as the first couple to get married in the hospital . it required special written permission from the archbishop of canterbury . they fulfilled corey 's dying wish by organising ceremony within 48 hours . he held the rings , while staff made a cake and the decorated hospital ward .\nfinancial fair play has reined in manchester city 's ability to spend . gary neville says big players would prefer their premier league rivals . city spending can no longer blow other teams out of the water . see our manchester united vs manchester city combined xi here . click here for all the latest premier league news .\nmamadou sakho tweeted a picture on his way to paris with steven gerrard . the pair are heading out on behalf of the mamadou sakho association . sakho played 90 minutes as liverpool lost 4-1 to arsenal on saturday .\nthe flashgap app is free for ios and android devices . photos and videos taken on the app disappear into a hidden album . they only reappear at midday the next day and are shown to all attendees . app was inspired by the film the hangover starring bradley cooper .\nlusitanian toadfish lives in the mediterranean sea and atlantic ocean . attracts mates by singing various songs , which also warn off rivals . songs tell others how large the fish is and how strong and healthy it is .\nthe flash pack co-owner lee thompson photographed incredible uses for scooters in southeast asia . award-winning photojournalist thompson was with a 14-day tour of vietnam and cambodia in april . woven baskets filled with chickens and pigs , and unique child seats seen on the scooters .\nbrendan rodgers believes his side must improve their big-game mentality . liverpool crashed to defeat at wembley despite taking a first-half lead . christian benteke and fabian delph struck to send aston villa through . the fa cup semi-final defeat to aston villa was their first since 1990 .\nanneli tiirik , 23 , also reveals boyfriend switched flights ` at last moment ' student wants airlines to add greater checks to prevent similar disasters . paul bramley died when andreas lubitz crashed plane in alps last month . co-pilot , 27 , was found to have researched suicide methods before crash . for confidential support call the samaritans in the uk on 08457 90 90 90 , visit a local samaritans branch or click here for details .\npatricia jannuzzi , wrote in a facebook post that gays were behind an ` agenda ' to ` reengineer western civ into slow extinction ' an outcry ensued - including from school alumnus scott lyons , who 's aunt is actress susan sarandon . jannuzzi was put on administrative leave last month , but there was then a backlash from conservatives . monsignor seamus brennan said in the letter that catholic teachers should communicate the faith in ' a way that is positive and never hurtful '\nduck and ten ducklings followed staff back to an office in sutton coldfield . visit was filmed by a member of staff on her mobile phone . employee said even company director found the whole thing hilarious .\nitalian chefs threaten legal action against mcdonald 's over new kid 's advert . the 18 second video claims country 's children prefer happy meals to pizza . one top italian chef calls the advert ` blasphemy ' and mcdonald 's shameful . the advert is latest in a long-running feud with italian foodies and the chain .\npatrick james fredricksen was stopped on way to child 's home , say police . sex abuser discovered the bus empty with its keys inside in emery county . he reportedly stole a funeral worker 's car the same day . after being locked up , he ` flooded jail ' by breaking a water pipe .\nbag was found outside biogen inc. in cambridge , massachusetts saturday . video surveillance led police to nearby apartment where more remains were found in a common area . cambridge police are treating situation as a homicide investigation . a person was arrested in the case but no details have been released .\nfurious fans uploaded pictures to social media of huge lines for bathroom . some left with no choice but to use plastic cups to relieve themselves . wrigley field is undergoing huge renovation - its first overhaul in 80-years . two bathrooms flooded - forcing thousands to queue for over an hour .\nthe 4wd crashed into a lake in melbourne 's outer west just before 4pm . there were four children and an adult inside the vehicle . all the children are aged under seven years old . three children have been confirmed dead by victoria police . a fourth child remains in a serious condition at hospital . a woman has been transported to hospital and is under police guard . police say they are yet to determine how the car went into the lake . ` police do not believe anyone is still in the lake , ' victoria police said .\nadrian schaffner skis at speed with pet dog on his shoulders . dog called sintha appears content and leans into the wind . video concludes with dog jumping off and running in snow . footage was captured in ski resort in val müstair , switzerland .\nnine-year-old ` saw heaven and sat in jesus 's lap ' while unconscious . annabel , from texas , survived headfirst fall with only bumps and bruises . the schoolgirl woke up cured from illness that had plagued her childhood . claims fairy-like guardian angel sat with her while she was rescued .\nzlaaatan.com was created in dedicated to zlatan ibrahimovic . website creators say it 's not affiliated with ibrahimovic or google . ` zlatan search ' or ` i 'm feeling zlatan ' are just two user options on website .\nbbc commentator guy mowbray 's notes were revealed on twitter . mowbray commentated on liverpool 's match against newcastle at anfield . he correctly predicted 19 of the 22 players who took to the field .\nsummer michelle hansen , 32 , of california was sentenced in court on friday ; she was a teacher at centennial high school . she entered a guilty plea in february to 16 felony counts including seven counts of oral copulation of a minor and six counts of statutory rape . if she had been convicted at trial , she could have faced 13 years in prison . hansen was arrested in june 2013 after a student came forward and said he had sex with her . prosecutors said the sex acts occurred between may 2012 and 2013 .\nmole solutions is developing the idea as an alternative to road transport . would see capsules loaded with goods sent in underground pipelines . a test track has already been built for a nine month development project . the project has approved some government funding from defra .\nmiley cyrus challenged convention and left her underarms unshaved . this may help disperse the odours that attract us to a potential partner . hair on your toes could be a sign that your circulation is good .\nthe patent was filed in march 2011 and awarded to apple earlier this week . it details a method of scanning a user 's face using the front-facing camera . if the scanned face matches with a photo that was previously taken and stored , the phone unlocks automatically . android lollipop already has a similar feature called ` trusted face '\nengland reduce invitational xi to 24 for six after amassing lead of 320 . hosts hold out for a draw , but the game had descended into a farce . england will learn little from glorified net against woeful opposition . james tredwell out-bowls adil rashid in contest to be test spinner .\naaronessa keaton was arrested monday and charged with manslaughter for a 2014 accident that resulted in the death of a 5-year-old child . keaton , of phoenix , arizona , hit another car head-on while she was eight months pregnant and had marijuana and benzodiazepines in her system . when told of the charges and the child 's death , she said ; ` sh*t happens '\netienne gould nunan was not breathing when he was born at just 26 weeks . he had a hole in his heart , a brain bleed and went on to suffer pneumonia , a collapsed lung and endure 58 blood transfusions to fight infections . parents were delighted to finally take him home after 5 months in hospital . they would like to use his story to encourage people to give blood .\nthe china national tourism administration will monitor tourist behaviour . unruly chinese citizens will be contacted when they return to the country . the country has had bad press from a string of publicised incidents .\nsea bright fire chief chad murphy wore a camera on his now-charred helmet as he stepped into the furnace in rumson on monday . the four-alarm fire at the rumson mansion , known as blithewald , has been ruled accidental , though the exact cause is yet to be identified . no injuries were reported .\nhattie gladwell was fitted with an ileostomy bag in january this year . she had undergone emergency surgery for ulcerative colitis . the 19-year-old blogs about her life with her bag fitted to small intestine . she reveals all about her sex life and the effect it has on her confidence .\nsign was erected outside university building in portugal place , cambridge . but the message , in two classical languages , has been branded as ` elitist ' one expert has claimed that there are inaccuracies in the greek warning .\nlittle stella schaefer is in prison with murder-accused heather mack , 19 . the first picture of the baby 's face was taken outside a court in bali today . mack and tommy schaefer , 21 , alleged to have murdered mack 's mother . lawyers for the american pair today said they reject premeditated charges .\nthe first black bond villain , yaphet kotto , says secret agent must be white . he said the role was created for a white hero and should remain as such . black british actor idris elba has been tipped to replace daniel craig as 007 . kotto played villain dr kananga in the 1973 installment live and let die .\na customer dining at aspley hogs breath found a sink plug in her salad . she posted a photo of the embarrassing incident to facebook . the post racked up over 2,000 likes before the diner removed it . social media users have left comments roasting the popular steakhouse .\nronnie lungu successfully sued wiltshire police for race discrimination . acting sergeant was turned down for permanent role despite exam pass . tribunal rules he was singled out as ` marked man ' due to his ethnicity . chief constable says he is ` concerned ' and ` lessons will be learned ' .\ngraphic image warning . max verschuuren , 21 , is lucky to be alive after friend mistook him for a deer . grisly photographs show his gaping , bloody gunshot wound . his hunting mate believed his dim headlight was the glint of a deer 's eyes . ' i said , `` f *** en ' stop , that 's me ! '' '\nwillis never trademarked her most-famous work , calling it `` my gift to the city '' she created some of the city 's most famous neon work .\nsonnenspeicher was designed by wolfram walter and german firm asd . its lithium iron phosphate battery stores energy from solar panels . cheapest model is $ 8,450 -lrb- # 6,170 -rrb- , but it will save money on electricity bills . it also comes with ` intelligent management system ' that controls current .\nsecretary of state john kerry hits out at iran 's support of houthi fighters . but adds that washington is not looking for a confrontation with tehran . saudi-led coalition starts third week of air-strikes against rebels in yemen . pentagon has started daily aerial refuelling for warplanes in the coalition .\nkatie cope , 17 , detained a shoplifter in her mother 's vintage clothing store . police took three hours to arrive at baklash store in nottingham city centre . thief given caution by police for attempting to steal the # 1 knickers . officers told store owners the knickers not worth enough to prosecute .\nattorney general eric holder sent out the memo to doj workers on friday . he said violating agency policy could lead to suspension or termination . employees are banned from hiring prostitutes when they are off-duty or in foreign countries . inspector general 's report found dea agents had sex with prostitutes . soliciting undermines effort ` to eradicate the scourge of human trafficking '\nshadow chancellor refused to rule out a five-point rise in corporation tax . he was also evasive about the 40p rate of income tax during interview . businesses are already concerned about labour 's plans not to cut tax . the main rate has been brought down by coalition from 28 to 21 per cent .\norlando city have not won any of their last three mls fixtures . kaka took to instagram to give fans a glimpse of his fitness regime . the brazilian has become an instant hero in the us after leaving ac milan . orlando city take on the portland timbers on sunday .\narmy major john jackson and his wife carolyn are facing 15 counts of child abuse . the couple 's first trial ended in a mistrial last november when a prosecutor accidentally mentioned the death of one of their son 's . that detail was barred from the trial since the couple had not been officially charged in the boy 's death . on monday , the jacksons appeared in new jersey federal court for their second trial . prosecutors said the couple starved their three foster children and beat them so several that they had broken bones all over their bodies . the couple 's defense attorneys claim that they may have been ` crappy parents ' but are not criminals .\nman-made quakes have hit once stable regions in central and eastern us . these include arkansas , colorado , kansas , ohio , oklahoma and texas . some were caused by injection of wastewater which can activate faults . many of faults awakened by drilling have not moved in millions of years .\nkhim hang is the youngest designer to show an australian fashion week . the 22-year-old 's collection han is a nod to his cambodian heritage . khim said his parent 's escape from the khmer rouge influenced him . is paying workers in his cambodian factory double the minimum wage .\nengland have called up zafar ansari to their squad for odi against ireland . surrey all-rounder is a top-order batsman and left-arm spinner . but he is also a gifted academic , with a double first from cambridge . ansari could be england 's most academically gifted player since ed smith .\nlatoya tilson , 33 , was reportedly hit in face during fight on saturday night . she took out .25 - caliber gun and fired several times into the feuding crowd . but while one bullet struck a boy , 17 , other hit her 15-year-old son , pierre . pierre rushed to hospital with gunshot wound to head ; he died on monday . mother fled scene , but was later arrested at home in college park , georgia . tilson was arrested on a number of charges , including aggravated assault . charges will likely be updated following high school student 's tragic death . pierre was ` trying to protect sister , 13 , from other boy when fight started ' .\nan archive of royal letters and books unseen for 200 years is to be digitised . the queen launched project at windsor castle 's royal library . included are letters shedding light on the american war of independence . also a 200-year-old poetry book written by the shah of persia in 1812 . queen joked that , ` you do n't get gifts like that any more ! ' also includes an essay by george iii and letters from queen charlotte .\nchris hala'ufia flattened a streaker with flying tackle at leicester . london welsh forward halted laurence pearce with shoulder charge . the number eight then shoved pearce 's head into the ground . referee sent him off after studying replays on the big screen .\nthe largest mosque in the middle east , the grand mosque in abu dhabi is as stunning on the inside as the outside . amateur british photographer julian john visits the prayer halls as often as he can to capture their ornate beauty . the impressive structure took almost 10 years to build and over 30,000 workers , only reaching completion in 2007 .\neverado custodio , 22 , allegedly opened fire at a crowd in logan square , chicago , about 11.50 pm friday night . happened in front of uber driver , 47 , who pulled out his personal firearm and shot custodio several times in the legs and lower back . there were no other injuries . investigation determined the driver will not face an charges because he acted in self defense and the defense of others .\nkristina schake , 45 , ` is part of mrs clinton 's 2016 communications team ' she will help to transform politician into a softer , more accessible figure . she previously helped turn first lady michelle obama into ` everywoman ' she advised mrs obama to perform ` mom dancing ' with jimmy kimmel . also masterminded infamous 2011 ` undercover ' shopping trip to target . ms schake has been working as l'oreal 's chief communications officer . her new job could prove difficult in wake of mrs clinton 's email scandal . mrs clinton will likely announce her run for white house this month .\ninstrument on eso 's very large telescope -lrb- vlt -rrb- captured image . shows exactly how the different dusty pillars are distributed in space . the pillars shed about 70 times the mass of the sun every million years . they are expected to have a lifetime of perhaps three million more years - which is relatively short in cosmic terms .\n.50 - caliber bullets equipped with optical sensors can follow moving targets . the `` smart bullets '' can help shooters compensate for high winds . the goal of the program is to give shooters greater range and make american troops safer .\nsingaporean a * star scholarship recipient xiangyu ouyang , 26 , is accused of slipping paraformaldehyde to several fellow students . ouyang has confessed to poisoning two classmates , as well as herself , in what she 's called a cry for help . she is charged with four felony poisonings -- which could carry 2 to 8 years -- and was expected to use an insanity defense . ouyang won the prestigious scholarship in 2013 for her outstanding performance as an undergrad at imperial college london .\nlabour claims nhs ` can not survive ' another 5 years of tory government . party points to figures showing a decline in standards in the health service . it claims if standards continue to drop at the current rate millions will suffer . but the tories said labour the warning marked a ` new low ' for labour . claimed ed miliband was making good on pledge to ` weaponise ' the nhs .\nprince harry arrives in australia next monday ahead of four-week stay . he will fulfill a dream by training with the elite sas regiment in perth . war hero and vc winner mark donaldson is an sas trainer in perth . donaldson has written about how he saved the prince from the taliban . donaldson and crack sas unit shot dead in 2009 a taliban warlord who boasted of killing prince harry . prince will also go bush with indigenous norforce troops . the royal said to be excited for ` challenging and hectic ' schedule . the trip is the last of prince harry 's military career before he retires .\nmichelle mone bought three-bedroom property in glasgow 's exclusive park circus after splitting from michael mone . she spent months renovating period townhouse but is now selling to buy ex-husband out of their family mansion . it features a grand staircase , large reception hall and luxury interior designs throughout bedrooms and living room . the 43-year-old ultimo founder will profit from at least # 100,000 if it sells and also owns a # 2million flat in mayfair .\ninternational fellowship of christians and jews has brought 600 jews to israel since december . the margolin family is among them ; their home in eastern ukraine was bombed .\nrafa benitez 's contract at napoli expires at the end of the season . he guided the italian side to the europa league semi-final on thursday . he has taken four teams to a european semi-final inside 12 years .\ndaniel agger has been charged with violent conduct . the brondby star appeared to elbow copenhagen 's mattias jorgensen . agger rejoined first club brondby from liverpool in august 2014 .\nmarcos rojo back in portugal and poses for picture with family in friends . manchester united defender starred in 3-1 victory against aston villa . sarah watson claims she was offered money to spend the night with rojo . says rojo and his representatives tried to frame her for blackmail . representatives tried to entrap sarah with promises of cash to spin story .\nthe southern poverty law center in february filed a lawsuit against georgia department of corrections officials on behalf of ashley diamond , a transgender woman . diamond , 36 , identifies as a woman and has been taking hormones since age 17 . claims lack of medical attention has harmed her transition process .\nitalian alex bellini will live atop an iceberg off the coast of north west greenland starting next year . he will stay in isolation inside a contained ball without opening the hatch for 12 months . the capsule will contain supplies and equipment for his survival , and workout equipment to keep him fit . its designed to survive harsh conditions - such as the iceberg flipping - and can also float in water .\nwhite house planners say they 're ready to recommend spikes at the top of the mansion 's fenceposts to better protect the president . move comes after several fence-jumpers , including one who sprinted inside the white house . tennessee democratic rep. steve cohen asked the acting secret service director in november if 1600 pennsylvania avenue needed a six-foot moat . that idea was actually under consideration , but later scrapped over maintenance concerns and ` having to retrieve people from it ' .\nchelsea 's under 19 side are hoping to become second team to win final . holders barcelona won the inaugural version of the youth competition . dominic solanke , izzy brown and ruben loftus-cheek are all likely to start . click here for all the latest chelsea news .\nrunning is often celebrated as a cheap sport to take up . but it 's important to get right trainers to avoid injury and feel comfortable . adidas latest ultra boost on sale for pricey # 130 . budget supermarket aldi have a pair for # 19.99 . so can our runner tell the difference ? .\nboeing 747 can normally hold up to 600 people but this model was customised for a single ultra-wealthy tycoon . digital images show how the interior is as luxurious as an expensive hotel room despite space constraints . the jumbo jet contains a master bedroom , ` aeroloft ' with added sleeping space , and a large dining room . it is also kitted out for business with a conference room and office so the owner is never out of touch with work .\njeans designer reportedly owes $ 126,594 in tax . relaunched denim label in 2014 after going into liquidation in 2013 . previously went into administration in 2011 but revived by apparel group . supply deal soured , with designer ordered to pay $ 150,000 to retail group .\ndanila kislitsyn killed more than 1,000 dogs in russian city of vladivostok . trial heard he had used poisoned sausages and traps to kill the strays . blamed dogs for his tuberculosis and claimed ` threat ' needed eliminating . animal charities were furious when kislitsyn was given fine of just # 200 .\ncost of christenings are now upwards of # 300 . 63 per cent of mothers worry about the mounting costs for the day . asda launches christening collection in time for second royal baby .\nasked if he could rule out child benefit cuts mr gove said : ' i ca n't say that ' the chief whip ruled out any cuts to pensioner and disability benefits . comes after george osborne paved the way for further cuts to payments . he refused to rule out rolling child benefit into universal credit system .\na woman was told by sydney hotel she could n't breastfeed in ' 18s only ' area . she was directed to use the ` baby room ' instead - the hotel 's disabled toilet . in australia , women have a right to breastfeed in public . the federal sex discrimination act makes it illegal to discriminate against a person on the grounds of breastfeeding . the hotel says it is a child and breastfeeding friendly venue .\nbaby boy malakai suffers rare medical condition pallister killian syndrome . malakai can not see , can not hear , struggles to breath and may never walk . stacy maitai gave up everything to take care of her seven-month-old son . mother-of-two has been forced to survive on $ 90 a week from centrelink . can not receive further financial assistance as she is not australian citizen . the single mother moved from new zealand to perth about four years ago . a fundraising page has been set up to help the struggling family .\njordan spieth is the youngest first-round leader in masters history . spieth set a new 36-hole record with his 14-under total . dustin johnson became the first man ever to hit three eagles in one round .\nrory mcilory joined on the course by one direction 's niall horan for par-3 contest . tiger woods played in the par-3 contest at the augusta national for the first time since 2004 . mcilroy shot a one-under-par round to finish in a tie for 16th along with ian poulter . horan suffered an embarrassing slip while carrying mcilroy 's clubs during the round on wednesday . golf legend jack nicklaus his a hole in one on the fourth hole of the par-3 course . rickie fowler was caddied by his girlfriend alexis randock and played with two-time champion bubba watson . kevin streelman won par-3 contest after three-hole play-off with camilo villegas .\ntrinity culley helped deliver her baby sister after picking up tips on tv . she had been secretly watching the programme one born every minute . when her mother 's waters broke two weeks early , she sprang into action . she gathered towels and delivered the baby in the family 's front room .\nraheem sterling at the centre of a second drugs controversy . liverpool forward videoed passing out after inhaling nitrous oxide . follows pictures on sunday of the 20-year-old puffing on a shisha pipe . read : arsenal have doubts over signing sterling after latest controversies . read : sterling pictured again with shisha pipe ... this time with jordan ibe .\nhenry howes was playing on arcade game after a swimming lesson at the snowdome in tamworth . when he failed to pick up a teddy he reached inside the claw machine . but the four-year-old stretched too far and got trapped inside the game . staff took half an hour to free henry as they searched for the keys .\nkamron t. taylor was recently convicted of murdering nelson williams jr , 21 , in june 2013 . victim 's father , nelson williams sr , 48 , says he is afraid taylor might ambush him . he beat a guard unconscious , stole his keys and uniform , and fled in his suv . taylor was awaiting sentencing at jerome combs detention center in kankakee , illinois , when he escaped early wednesday . the 23-year-old fugitive is wanted for aggravated battery to a correctional officer as well as escape . cash reward for any information has been increased to $ 7,500 .\naustralian idol winner spoke out about her battle with mental health . dabbled in ` drugs ' to mask her crippling depression after gaining weight . at her heaviest , the now 29-year-old weighed 127.5 kgs . lost 68kgs after having gastric sleeve surgery in may 2012 .\nbilly joe saunders and chris eubank jnr are set to fight on the same bill at wembley arena on may 9 . eubank challenged saunders to a re-match for the may date . saunders beat eubank on points when the pair met in november .\nmr umunna said he was opposed to ` taxing for the sake of taxing ' business secretary said re-introduction of the rate should be temporary . his remarks highlighted divisions in labour 's top ranks over the 50p rate . ed miliband said the 50p top rate of tax was ` about fairness in our society '\nmeaghan hudson , 25 , told family and friends in december 2013 that she was suffering from multiple myeloma and was unlikely to live . friends shaved their heads in solidarity , got tattoos and raised $ 7,000 for her medical expenses . last summer , police received an anonymous tip that meaghan had faked the illness and she admitted the lie to authorities . she has been charged with theft by deception and grand theft .\nivana chubbuck , 62 , is known as the ` celebrity whisperer ' and hones talent . she 's a therapist and acting coach and runs a drama school in los angeles . chubbuck counts beyoncé , eva mendes and brad pitt among her clients .\nmichelle gent , 50 , directed and starred in violent bondage and porn movies . former lib dem councillor used local party hq to hold auditions for films . her film 's titles include the exorcist chronicles and rise of the 4th reich . violent films feature women covered in fake blood using whips and knives .\ndr. michael davidson was shot dead by stephen pasceri at brigham and women 's hospital in boston in january . pasceri 's sister said he blamed the doctor for his mother 's recent death . married pasceri took his own life after shooting davidson at heart center . davidson 's wife , plastic surgeon dr terri halperin , was seven months pregnant at the time with their fourth child . halperin delivered daughter mikaela jane davidson april 4 , less than three months after husband 's slaying .\nwoman charged with assault after attacking 16-year-old mcdonald 's worker . amy johnson , 38 , said the fries had fallen out of their containers . mcdonald 's worker used her hands to put them back in the packet . johnson ordered new ones and grew angry , going inside the store . police have said johnson aggressively grabbed the teen around the neck . she stayed silent through today 's court proceedings and did n't enter a plea . she spoke outside court saying the teenager called her a ` dog ' .\nstephen gilbert jokes that the dog ` unresolved anger issues ' after bite . he is defending a slim majority of 1,312 in st austell and newquay . lib dems think they could lose 20 seats but still be back in power .\ngeorge kirby and doreen luckie from eastbourne will be oldest newlyweds . pair with combined age of 195 smash the previous guinness world record . lived together for 27 years they have had 15 grandchildren between them .\nkaden lum was shot at his home in bremerton , washington on march 28 . police have not made any arrests in the two weeks since the boy 's death . controversial illustration was published in the kitsap sun on sunday . depicts kaden as an angel next to a devil dressed as uncle sam . kanden 's grandfather jason trammel said the decision was ` disrespectful ' editor of the paper dave nelson has defended the move in an op-ed .\nlt. col. anthony shaffer said bowe bergdahl ` had afghan contacts and he was actually trying to offer himself up with the taliban ' the former military intelligence officer said he had been told the information by two senior sources who knew about a 2009 naval criminal investigative service investigation into bergdahl 's activities . bergdahl is charged with desertion and misbehavior before the enemy .\nwoman celebrating with her fiance was killed in fiery collision with truck . they had stopped with other victims to help those stranded at earlier crash . five killed and 12 injured in the accident on fort worth interstate highway . veronica ` roni ' gonzalez , 43 and her fiance 's sister killed in the collision .\nthe eagles palace is fringed by soft beaches on the mount athos peninsula . the greek resort boasts 164 rooms , which all have a balcony or terrace . relax in the award-winning spa or order drinks via a button on your sunbed .\nlarry upright 's family says he would enjoy the request . some vow to honor it , but others say they 'll still vote for hillary clinton .\nwomen beaten by police during protests over pay and conditions . dozens of workers have been sacked and deported for ` illegal ' strike . bangladeshi migrant workers had held peaceful three-day walkout .\njordan spieth became the second youngest masters winner of all time . his 18-under round was the joint-record and he led from start to finish . spieth hailed the week at augusta as the most incredible of his life . 21-year-old admitted that the accolade had not quite sunk in yet . justin rose praised spieth , saying he showed comfort playing with a lead .\nebay retailer said prices for manny pacquiao items have risen 10 times since the fight with floyd mayweather was confirmed in february . pacquiao-autographed boxing gloves have also risen ` at least 50 per cent ' sales tripled at team pacquiao store , owned by manny , in general santos . pacquiao and mayweather fight on may 2 in the richest bout in history .\ntorpedo moscow fans broke down barriers and threw seats . match suspended for seven minutes . torpedo went on to win 3-1 . torpedo punished three times this season for racist behaviour from fans . russian premier league have promised a ` harsh punishment ' .\ndoug hughes appeared in u.s. district court in washington on thursday , one day after he steered his tiny aircraft onto the capitol 's west lawn . he was charged with operating an unregistered aircraft and violating national airspace before being released on his own recognizance . he was sent back to his tampa home , where he must check in weekly with authorities starting next week .\ngulnaz fell pregnant after being attacked by a man called asadullah in kabul . she was rejected by her family and sentenced to 12 years in prison for ` adultery by force ' although that was later quashed , the unmarried mother was left an outcast . so to give her daughter smile a normal life , she married asadullah . in an exclusive interview with cnn , she described life with the rapist who is now her husband .\ntina campbell paid # 100 for a weave at a salon in london . says a few weeks later her head began itching and lumps appeared . night before 29th birthday boils burst and began oozing pus . dashed to hospital where doctors removed infection with scalpel . the writer says despite her experiences it has not put her off .\nthis year marks the 40th anniversary of snooker 's most prestigious tournament at the crucible theatre . barry hearn is close to extending deals with sheffield city council . hearn is also close to securing a new deal with the bbc . both deals are due to expire in 2017 .\nluke shambrook , 11 , was found after he went missing on good friday . the autistic boy was reunited with his rescuers in a melbourne hospital . some members of his search and rescue team visited him on wednesday . doctors are amazed at how well he is doing considering his four-day ordeal . the boy was suffering from dehydration , hypothermia and exhaustion . luke went missing in lake eildon national park - north-east of melbourne .\nlt col richard ` dick ' cole , 99 , gave the medal to air force museum director . staff sgt david thatcher , 93 , came from missoula , montana , for the event . ceremony 73 years to day after their bombing of japan rallied us in wwii . military and political officials and relatives of original 80 raiders attended . the group 's congressional gold medal arrived in a ceremonial b-25 flight .\nresourceful firefighter rescued all six ducklings using realistic ringtone . heartwarming clip sees him holding out phone while standing in the drain . eventually he is able to grasp the agitated birds and pass them up to safety . bizarrely , it was the louisiana fire station 's second duck rescue this week .\nthe pga tour star has earned extra brownie points with his growing legion of fans after calling out an online hater who abused his girlfriend . bikini model alexis randock had posted a photo on her instagram account of her and her sister nicole on the beach . a troll called ` fatalsplash ' then accused alexis of being a ` gold digger ' who did n't have to work . fowler quickly told the hater to ` get your facts straight ' , while alexis informed him that she worked her ` butt off ' .\nsales of islamic books in france three times higher in first quarter of 2015 . increase coincides with the deadly paris terror attacks where 17 were killed . publisher specialising in islamic books says sales have shot up by 30 % . company says same thing happened in the wake of the september 11 attacks .\narsenal 's arsene wenger has won march 's manager of the month award . it is the 14th time the frenchman has claimed the prize . manchester united 's sir alex ferguson won it the most - 27 times . david moyes claimed the accolade 10 times when at everton . jose mourinho -lrb- 3 -rrb- has won it fewer times than joe kinnear -lrb- 4 -rrb- an english manager has won on 75 occasions , scots on 52 .\namanda beringer asked her brother brad to make a toast at her wedding . the song poked fun at marriage and had the wedding guests in stitches . but the song was also a tribute to their late father peter . peter passed away of motor neuron disease 10 years ago . ` he 'd have wanted everyone laughing and enjoying the day , ' says amanda .\nhackett 's father said son 's life was threatened by ` associate of criminals ' the threats , made two years ago , were not reported to police . instead , neville hackett said his son turned to stilnox sleeping pills . it comes almost a week after hackett made his comeback by earning a spot in the 2015 world titles relay team .\nbarcelona among host of clubs keen on signing paul pogba . but juventus director pavel nedved insists he is going nowhere . czech admitted he is pleased juve avoided barca in champions league . claims that lionel messi is currently enjoying ` best spell ' of his career . click here for the latest barcelona news .\ndayna dobias , 19 , has created a video in which she dances despite having a disability that makes it difficult for her to walk . she loves tv , film and fashion , and says she 's not happy with how people with disabilities are represented . the teen has created several videos during the past year aimed at changing stereotypes .\nsarah graves , 22 , and shelbie richards , 21 , pleaded guilty to conspiring to commit the 2011 hate crime - graves got five years , richards received eight . the women were among 10 white teens who left a party in rankin county to find black men to assault in jackson , which they called ` jafrica ' both women were in deryl dedmon 's truck when he fatally ran over james craig anderson , 47 , in june 2011 .\npietro boselli , 26 , from brescia in italy taught advanced maths at ucl . admits he was ` ashamed ' of his modelling career and kept it a secret from students and almost did n't mention it on his cv . instagram following shot up to more than 480,000 after his story came out . phd student says he 's proud of his body and works out once or twice daily .\ndarcy atkinson , aged two , died of brain injuries in december 2012 . he vomited 3 times and went rigid in bath under care of mother 's boyfriend . he had bruising on his ears , temple and limbs and traces of the stimulant ritalin in his system when he died . a doctor told an inquest into his death he had been ` caned or whipped ' he said darcy has serious bruising around his ears which looked infected . his mother said she received a photo and text from her boyfriend the day before he died , saying he had bumped his head while paddle boarding . she then denied receiving the photo which investigators never found .\nanthony ray hinton was freed apri 3 , decades after conviction for two murders . things like using a fork , getting used to the dark are challenges now that he 's out . he says his sense of humor helped him survive 30 years in prison .\nneil moore , 28 , was on remand at wandsworth prison for # 1.8 million fraud . he posed as court clerk manager at ` southwalk crown court ' in fake email . the judge described moore 's escape as ` sophisticated and ingenious ' moore 's escape motive linked to transgender partner he met in prison .\nmap based on number of google searches containing the slur n **** r . it reveals that clusters of racism appear in areas of the gulf coast . it also appears in michigan 's upper peninsula , ohio and new york . racist searches linked with higher death rates in black communities .\nbrian bayers tearfully told the story of how he accidentally ran over his son after leaving the door to his house open . he backed over his 18-month-old son jackson and killed him . brian bayers ' wife amanda rushed home and held her sons lifeless and bloodied body for hours .\nnatalie fuller , 28 , stepped in front of a train in baltimore last month . mother doris shared an account of her life this week in heartfelt article . told how she was diagnosed with psychosis and bipolar disorder aged 22 . pair wrote bestselling book , promise you wo n't freak out , in 2004 . featured nationally on network news and was featured on oprah .\ntony blair said leaving eu would cause ` significant damage ' to economy . sales of uk goods to ` rest of the world ' have outstripped europe for first time . but total sales overseas have fallen to the lowest level for nearly five years . strong pound and weak eurozone is ` acting like straitjacket ' on exporters .\nn'golo kante is wanted by arsenal , newcastle and southampton . marseille are also keen on the # 5m rated midfielder . kante has been compared to lassana diarra and claude makelele . click here for the latest premier league news .\npoppy , 23 , married childhood sweetheart , sam myers in chelsea . couple said vows in front of 12 guests before reception at mayfair hotel . poppy carried picture of father dean , who died in 2011 , in her bouquet .\nbrooke geherman posted video of her son , kowen on youtube . young boy , from alberta , canada , cradles his deceased goldfish , top . kowen performs funeral by flushing goldfish before bursting into tears .\nnational front founder jean-marie le pen pulls out of regional elections . criticized by daughter marine over comments about the holocaust . le pen snr wants grand-daughter marion marechal-le pen to replace him .\ntestimony got under way in murder trial of 24-year-old shayna hubers accused of killing ohio lawyer ryan poston in 2012 . jurors were shown videotaped police interview with hubers , where she claimed she shot poston in self-defense . hubers , then 21 , told police she shot poston in the face and then fired again to put him out of his misery . hubers described poston was ` vain ' to detectives and said she gave him the ` nose job he wanted ' by shooting him in the face . woman told police how poston allegedly pushed and shoved her , and mocked her for being a ` hillbilly from kentucky ' .\ngrowing questions over the conduct of michael slager 's fellow officers . few questions appear to have been initially raised about slager 's account of a struggle . other discrepancies between witness video and internal police report . authorities refuse to day if any other officers will be disciplined . civil rights leaders say of slager 's actions ` this would have been another cover up '\nmanchester united 4-2 manchester city : click here for the match report . louis van gaal is in with a shout of winning manager of the year . chelsea 's jose mourinho and southampton 's ronald koeman are too . sean dyche could be in if he saves burnley from relegation . adrian durham : man city must think big or forever remain small .\nsir bradley wiggins left team sky after paris-roubaix on april 12 . tour de yorkshire begins in bridlington and finishes in leeds from may 1-3 . wiggins ' eponymous team is completed by steven burke , mark christian , andy tennant , owain doull and jon dibben .\nkayla mooney , who is in her first year teaching in danbury , connecticut , ` engaged in sexual contact with a male student off campus last year ' she turned herself in on tuesday following a seven week police investigation after administrators learned of the alleged relationship .\nred bull have launched a bid to buy leeds , massimo cellino says . cellino says majority shareholder eleonora sport are considering offer . leeds chairman andrew umbers later said he was unaware of offer . cellino currently serving a football league disqualification .\nasif malik disappeared from uk with partner sara kiran and four children . turkish official claimed today that the family have been arrested in ankara . malik , 31 , was pictured holding ` isis ' sign at a protest in london last year . relatives of ms kiran today made emotional appeal for her to come home .\nfrankie ruttledge was always the ` fat bridesmaid ' for her friends . the 24-year-old has since lost six stone after adopting a healthy diet . frankie , from yorkshire , is now planning her own wedding next year .\nmchenry , 28 , berated single mother gina michelle for towing her car . she insulted her looks and social status in footage that went viral . espn suspended the sports reporter for a week amid investigation . but despite thousands of calls for her to be fired , she returns this week .\ndeutsche bank survey confirms what australians already know . for the 4th year straight australia ranked as the world 's costliest country . a 2-litre bottle of coke costs 51 percent more than in new york . biggest difference is hotel rooms , which are double the price of new york .\ndavid letterman made the joke while warming up his late show audience . college staffer asked what advice the ` scandal-scarred ' comic could give . the host told them ` treat a lady like a wh -- e , and a wh -- e like a lady ' joke was met with stunned silence with some branding it ` disrespectful '\nmanchester city captain vincent kompany and manager manuel pellegrini attended the first-leg of the fa cup youth final against chelsea . head of youth development patrick vieira was also at the ground . city 's youngsters fell to a 3-1 defeat at the club 's academy stadium .\nwhat 's it like to become a new parent in your seventies ? . donald trelford became a father for the sixth time aged 76 . he shares the pain and pleasure of raising two toddlers in the twilight years .\ncomedy sketch mocked us skiers at the swiss mountain resort of verbier . it portrays a boorish , pot-smoking snowboarder named jeff randl . plays on stereotypes that american tourists are rude and less worldly . clip was produced for a news satire programme on a swiss tv station . it has been viewed more than 300,000 times on youtube .\ngeorge and amal clooney expected to host celebrity friends this weekend . the couple invited guests to their lake como villa , according to a source . italian authorities imposed fines for anyone caught loitering around villa . mrs clooney , a humans right lawyer , turned 37 at beginning of february .\njon bon jovi has sold his new york city apartment for $ 37.5 million . the new jersey native bought the soho pad in 2007 for $ 24million , and initially listed it at $ 42million . the 7,500-square-foot penthouse in soho comes fully furnished . there are three outdoor terraces , five bedrooms and two kitchens .\nvivienne garton , 65 , was devastated when her 10-year-old dog was stolen . she started appeal to find him but received a call from anonymous man . caller threatened to cut up her west highland terrier unless she paid # 500 . he gave address of empty house and police are investigating the blackmail .\nwarning : graphic content . the three blindfolded men were executed by gunmen in ghanzi province . insurgents shot them at point-blank range with ak-47s in front of crowd . hundreds of locals - including children - gathered to watch public killings . taliban said the prisoners were found guilty by islamic court of murder .\nromelu lukaku to have late fitness test on hamstring complaint . kevin mirallas and steven pienaar in contention to feature for toffees . steven davis a doubt for southampton with groin injury . saints striker jay rodriguez working way back to full fitness .\naubrey de grey , 51 , believes he will unlock secrets to huge advances in life . the former harrow school and cambridge scholar is a biomedical theorist . he has a hugely rich and influential following in calfornia 's silicon valley . raised in chelsea , he inherited # 11million when his mother passed away . it 's been invested in his strategies for engineered negligible senescence . the eccentric claims : ` aging is a disease that can and should be cured '\npaul downton was swept aside as managing director on wednesday . downton lost his job following a woeful 2015 world cup performance . the 58-year-old 's job description has been abolished as a result .\nwei tingting , wang man , zheng churan , li tingting and wu rongrong freed . they 're still considered suspects in an ongoing criminal investigation , may face charges in the future . they will be under surveillance for a year with their movements and activities restricted .\nnic newling spent his childhood in psychiatric wards and hopping from doctor to doctor who could n't figure out why he felt so depressed . it took years of trialling medications and experiencing suicidal thoughts before he was diagnosed with bipolar disorder . when his older brother committed suicide due to his own quieter battle with mental illness , nic 's life was put back into perspective . he now works as a mental health advocate trying to destroy negative stigmas and encourage open and honest conversation without shame .\ntech heads say the new apple watch could be ' a waste of money ' low battery life , no gps and lack of water-proofing are among its turn-offs . apple watch 1 will be released on friday but they say you might be better off waiting until next year for version two . apple watches range in price from $ 499 up to the most expensive at $ 24,000 .\nrunaway alaskan husky , sarabi , escaped on march 21 in anchorage . she was dropped by musher laura allaway 's team during iditarod race . three-year-old dog was caught in cage trap on monday night in palmer , alaska , and will be reunited with allaway on april 28 . dog was found 42 miles from where she ran away .\naimee west , 24 , was devastated when her husband-to-be was murdered . she met fusilier lee rigby at army cadet training camp in august 2012 . but in may 2013 , the 25-year-old was hacked to death in broad daylight . now , she has found comfort in 51-year-old father-of-three paul draper .\nbody of andrew getty found in a bathroom at his # 2.6 m villa on tuesday . family history epitomises saying that money does n't bring you happiness . gettys have died from overdoses , one never recovered from a kidnapping . other members of the family were embroiled in lawsuits and divorces .\nthousands of the jellyfish-like creatures , known as velella velella , are covering beaches across oregon , california and washington . the creatures have small sails on their bodies , which means they are easily blown towards the shore during strong winds this time of year . they are not harmful to humans but will begin to smell as they rot .\nnew this is a multistate outbreak `` occurring over several years , '' the cdc says . cdc says 3 people died from bacteria believed to have come from blue bell . `` we are heartbroken about this situation , '' blue bell ceo and president says .\nthe feds on tuesday opened a civil rights investigation into the death of gray , a black man who suffered a spinal-cord injury while in a police van . six officers were suspended : lt. brian rice , sgt. alicia white , officers caesar goodson , william porter and edward nero and garrett miller . hundreds swarmed the streets of west baltimore on tuesday at the site of gray 's arrest and then marched to a police department .\nenid hatch found blood splattered walls after going to look for her husband . he had been beaten with a claw hammer by a crazed pensioner neighbour . alan rogers sentenced under mental health act and may never be released . mrs hatch 's sister betty was murdered in 1971 by mental health absconder .\nboy , five , pelts police with stones as palestinian protesters clash with israeli police on the northern west bank . violence erupted after more than 100 demonstrators took part in a rally to mark palestinian prisoners day . israel has arrested around 800,000 palestinians in the occupied territories since 1967 with 6,000 currently being held .\neugenie bouchard suffered her fourth defeat in six matches . the canadian top seed lost to lauren davis at the family circle cup . world no 66 davis won 6-3 , 6-1 in the second round in charleston . davis won nine of the final 11 games of the match to seal victory . click here for all the latest news from charleston .\na six-month-old kitten was found lying on the floor in sydney last month . it sustained a broken jaw , broken leg , broken hard palate and bruised lungs . the owner surrendered it to the vet as he could not afford the medical bills . small vet clinic raised funds to help pay for the kitten 's treatments . it is now on the road to recovery and will be ready for a new home in six weeks .\nronald koeman has urged his team to focus on european qualification . koeman is trying to ignore media speculation about his players . the saints manager rubbished claims about victor wanyama leaving . boss says he is not surprised his players want champions league football .\nit was their first meeting since world powers and iran sealed a framework deal on april 2 that would limit iran 's ability to build a nuclear weapon . final agreement hinges timing of sanctions relief - something both sides have said they wo n't budge on . obama administration is also engaged in an aggressive effort to sell the emerging deal to skeptical lawmakers and constituencies in washington . gop presidential candidates are lining up to oppose any deal with a government the u.s. considers the leading state sponsor of terrorism . house speaker john boehner has acknowledged that his party does n't command enough votes to override a veto of any resolution , though .\nwest ham have signed a new kit deal with umbro starting next season . they join everton and hull in wearing umbro strips in premier league . hammers wore umbro kits during their glory days in the sixties . they were last sponsored by the sports brand between 2007 and 2010 .\nroger varian says he has not lost faith in dewhurst stakes winner belardo . belardo beat only one home in saturday 's greenham stakes at newbury . varian 's determination to avoid fast ground means colt may head to france . he is likely to target french 2,000 guineas rather than british equivalent .\nmark selby plays kurt maflin in first round of the world championnship . selby is the defending champion but no first-time winner has retained it . jimmy white told sportsmail maflin can beat anyone on his day .\nlabour leader has vowed to ` never ' walk away from the european union . ed miliband pledges to ` restore our commitment ' to eu and other groups . accusing david cameron of ` taking britain to the edge of european exit ' .\nukip leader posed for tradition campaign photo while out in thanet , kent . nick clegg also stopped for pictures with mothers and their babies . it comes after david cameron admitted he was ` broody ' for another baby . the prime minister also posed feeding orphaned lambs on easter sunday .\nidentical twins start life with the same genes from the same fertilised egg . as they age , the number of hydrogen bonds in the dna changes due to different life experiences such as smoking and different diets . by heating dna until bonds break , researchers can spot these differences . this will help identify which twin is guilty in a criminal case , for example .\nsan antonio spurs beat houston rockets 110-98 on wednesday . spurs within half a game of houston and memphis in southwest division . eastern conference 's no 1 playoff seed atlanta narrowly beat brooklyn . cleveland secured central division title with defeat of milwaukee .\nthe horseshoe-shaped glass floor walkway in chongqing extends 87.5 ft from the edge of a cliff . it is the longest cantilever bridge in the world , beating arizona 's grand canyon skywalk by 16.4 ft. located in south-west china , the bridge has been named yuanduan , meaning ` at the end of the clouds ' . the bridge can accommodate up to 200 people at once , with visits capped at 30 minutes .\nthe new rules come barely a year after deeply unpopular restrictions enacted last march burned many inked soldiers . army chief of staff gen. ray odierno said the changes are being made in response to soldier feedback . the unpopular old rules banned tats below the knee or elbows and put limits on the size and number of tattoos , which will no longer be the case .\ncricket commentator richie benaud has passed away after cancer battle . the 84-year-old will be remembered for his mastery of commentating . the former leg spinner earned himself the title of the ` voice of cricket ' his trademark line was ` great shot that ' and ` marvellous ' .\ndavid villa has rung the new york stock exchange opening bell . he is enjoying his debut season playing for new york city fc . villa has scored one goal so far for his new club .\nlucy garrod woke up and felt her eye was very sore and swollen . the had a corneal abrasion - an ulcer on the eye - caused by bacteria . ulcer was millimeters away from blinding her and left her partially blind . feared she would n't be able to take photos , but learned to use her left eye .\ndrug plus chemotherapy has now been licensed by european regulators . it has been available in england via cancer drugs fund since last march . 600 women with advanced cervical cancer could benefit from it each year . nearly 3,000 women diagnosed with cervical cancer in britain annually .\nsalvina formosa does weights and sit-to-stand exercises every week . the 101-year-old recently tripped over an uneven footpath . she has been taking part in step classes to improve her fitness . the sydney mother celebrated her 101th birthday on march 16 . the centenarian is going strong and there 's no sign of her slowing down .\nsawyer sweeten shot himself while visiting family in texas yesterday . played geoffrey barone on hit show alongside twin brother and older sister . the show 's star ray romano said he was ` shocked , and terribly saddened ' his sister madylin posted on facebook : ` at this time i would like to encourage everyone to reach out to the ones you love '\nraheem sterling and jordon ibe were pictured holding shisha pipes . the england forward was also recorded on video inhaling nitrous oxide . but sterling has avoid punishment from liverpool over the video . arsenal and other clubs are now cooling their interest in sterling . pictures emerged last week of liverpool star sterling smoking shisha . footage also emerged of him inhaling nitrous oxide from a balloon .\nsandra and david greatrex were introduced by david 's sister , anne duffy . soon anne started sending threatening text messages to sandra . rift got so bad she stopped tried to cancel their wedding using fake email .\nprince harry made a surprise visit to a remote aboriginal village . wuggubugan is in the outback and 600 miles from darwin , the nearest city . harry just ` rocked up ' say thrilled locals and is a ` delightful chap ' 30-year-old has been in australia since monday and will stay for a month .\nmother-of-two , 34 , snapped up to front dafiti 's aw15 campaign . latin american e-tailer believe she embodies the style of the brand . recently named no. 8 on forbes list of top-earning models .\nlatest draconian crackdown by jihadis in syrian de facto capital of raqqa . violators will be jailed for ten days and made to take an ` islamic course ' raqqa resident : ` freedom of expression has become a crime under isis ' .\nvinnie jones will accompany josh warrington into the ring on saturday . warrington is a leeds fan and jones spent a season at the club in 1989/90 . he will follow justin bieber , puff daddy and the gallagher brothers . they have walked in boxers like floyd mayweather and ricky hatton .\naustralia have seen sense by revamping their overseas selection policy . it leaves england looking old-fashioned and they need to react . matt giteau and drew mitchell are top-class performers for toulon . steffon armitage and nick abendanon should come into the selection mix . england need the best squad possible for the forthcoming world cup .\nalastair cook and jonathan trott put on an opening partnership of 125 . cook scored an encouraging 76 before playing a wide ball onto his stumps . the england captain made the bowlers come to him and looked solid . trott was first out for 59 but appeared increasingly comfortable .\nirish brothers barry and patrick lyttle hoping to return home soon . barry lyttle is still negotiating for a lesser charge . he allegedly struck his brother patrick during a night out on january 3 . patrick told reporters he had made a ` fantastic recovery ' on thursday . barry is negotiating with prosecutors for a lesser charge .\nlisteria concerns have led to thousands of classic hummus containers being part of a voluntary recall , sabra dipping co. said monday . recalls started after random sample taken by food inspectors in michigan tested positive for listeria on march 30 . sabra dipping co. said that customers will be refunded if they return the products to stores . for questions about the recall , call sabra , 9am to 5pm , monday through friday at : 888-957-2272 .\na lithuanian talk show has accused norway of seizing foreign children . claimed they were needed to combat ` world 's highest rate of inbreeding ' an ` expert ' said fresh blood was needed to strengthen genetic material ' . lithuanian gražina leščinskiene 's son was taken into care early this year .\nfergus simpson said aliens probably weigh more than 650 lbs -lrb- 300kg -rrb- calculations based on idea that there 's a minimum size for intelligent life . larger aliens are more likely to live long enough to make advanced tech . estimated size does n't factor in evolution or an alien planet 's gravity .\nashley white , 30 , and paul thomas , 32 , charged with child abuse and neglect . couple 's son , noah thomas , 5 , from dublin , virginia , was last seen alive march 22 . mother went back to sleep , child was missing at 10am when she woke up . after fbi search , noah 's body was found in septic tank on family 's property five days later . thomas and white 's 6-month-old daughter was removed from home a day later .\nshadow business secretary said nigel farage had ' a problem with race ' . mr umunna claimed mr farage had failed to tackle the racists in his party . intervention comes after mr farage was dragged into a fresh race storm . national front members campaigned for him in south thanet constituency .\nlouise shepherd , 31 , killed in bolivia while on round-the-world trip . ms shepherd died after a tree fell on her during a jungle tour . recently worked at kingston university , but left in order to travel .\nteenager was caught after an investigation by counter-terrorism officers . tried to buy abrin , which could have created ` considerable harm ' to people . admitted trying to buy the deadly toxin after appearing at manchester youth court .\nwesley burton , a father-of-three and popular radio host at kpfa in berkeley , california , was killed in a hit-and-run on saturday . he was driving home from work when a white dodge charger crashed into his silver mercury . wife lucrecia has made an emotional plea for anyone with information about her husband 's killer to come forward . burton had three children aged between 4 and 9 and after growing up without a father his dream had been to raise his own kids .\ndavid healy is head of psychiatry at the hergest psychiatry unit in bangor . claims the idea low levels of serotonin causes depression is a fallacy . marketing of ssri drugs like prozac has been ` based on a myth ' , he claims . experts refute his claims saying ` ssris work in the real world of the clinic '\njudge dismissed charges of harassment and stalking against owner of small-town ice cream truck business . small town of gloversville , in upstate new york was rocked by a ferocious ice cream truck dispute in april 2013 . snow kone joe ice cream truck owner joshua malatino and his then girlfriend , samantha scott , were arrested in april 2013 . pair were charged with trying to force rival mr. ding-a-ling ice cream truck business out of business . accused of harassing and stalking philip hollister , a mr. ding-a-ling truck driver . malatino said the case led him to be humiliated beyond his hometown because the case made news worldwide .\natletico madrid and real played out a 0-0 draw in the champions league . mario mandzukic was in wars following battles with real madrid defenders . raphael varane , daniel carvajal and sergio ramos tussled with striker . croatia international has denied claims carvajal bit him during game .\nthomas k. jenkins , 49 , was arrested last month by deputies with the prince george 's county sheriff 's office , authorities said . police say jenkins had cut a hole in the roof of a commercial business in maryland on march 9 and deputies arrested him as he fled . jenkins is accused of carrying out multiple robberies in dover , delaware . he is facing 72 charges from the dover police department for 18 robberies . the delaware state police is planning to file charges over a 19th robbery , which occurred in a part of dover where jurisdiction is held by state police .\narkansas woman finds a 3.69-carat diamond in arkansas state park . crater of diamonds is the planet 's only public diamond search site .\npariah state may have 20 warheads not 10 as previous us forecasts held . stockpile of weapons could grow to 50 or even 100 within next five years . us military believes secretive country has ability to miniaturise warhead and mount it on ballistic missile , though there have been no such tests yet .\ncharlie austin is yet to receive england call-up despite impressing for qpr . austin has scored 17 premier league goals for the relegation strugglers . roy hodgson should not listen to those who say he favours big clubs .\nmary pat christie , 51 , quit her position at finance firm angleo gordon & co. . reportedly told colleagues the move would precede a christie campaign . mrs christie earns almost three times as much as her husband . has accompanied new jersey governor on putative campaign trail .\ncaster semenya reclaimed the south african 800-meter title on saturday . olympic silver medalist won in 2 minutes , 5.05 near cape town . injury-hit semenya is aiming to qualify for the world championships .\nislamist extremist group hizb ut-tahrir ` join al-qaeda franchise in syria ' jihadi john came in contact with group at westminster university . lib dem candidate in strip club scandal was a member for 13 years . maajid nawaz was jailed in egypt in 2005 over his work with ht . nawaz was caught on cctv visiting london strip club during ramadan .\nbrandon wyne , 17 , and courtney griffith , 18 , were pulled over for broken tail light in virginia beach in january . police said they could smell marijuana and ordered them out of the car . wyne agreed but on the condition nobody touch him until his mom arrive . officer hits him , sprays him with pepper spray , stuns him with taser . footage has emerged after griffith found it in her deleted folder . virginia beach pd investigating conduct and evidence tampering .\nshane o'byrne and wife jaimie received the parking fine in march 2013 . couple , of portsmouth , had been taking newborn baby out for the first time . as they got out car the ticket they bought fell on floor below driver 's seat . council refused to let them off and initial # 25 fine escalated to # 400 bill .\npresident barack obama 's spokesman refused to give reporters an update on the status of the meetings or scheduling . ` the sense that we have is yes , that the talks continue to be productive and that progress is being made , ' he said . speculation was swirling wednesday that negotiators were on the verge of a breakthrough as the french foreign minister rushed back to switzerland . white house would n't talk about next steps if a deal could not be reached but admitted that a ` military option ' was on the table as well as sanctions .\nesther mcvey will not be cowered by ` misogynistic and sexist ' attacks . minister target of offensive graffiti and called ` wicked witch of the wirral ' she said of rivals : ` their underhand tactics wo n't bully and intimidate me ' . her wirral west seat is key battleground between labour and tories .\naston villa take on tottenham at white hart lane on saturday , ko at 3pm . the match is tim sherwood 's first game back at spurs after being sacked . sherwood is thankful for the opportunity he was given by daniel levy . villa boss says mauricio pochettino deserves credit for playing young stars . click here for all the latest premier league news .\nalaa abdullah esayed posted 45,600 tweets supporting isis to followers . some posts included pictures of the dead bodies of jihadi fighters . others quotes a poem advising parents how to raise children to be violent . esayed , 22 , could face 14 years in prison after she admitted encouraging terrorism and disseminating terrorist publications .\nan estimated 1,000 dance halls that sprung up around texas in the 1800s , knitting together german , czech , polish and other immigrant communities . from about 1870 into the 1920s , european immigrants in texas built hundreds of these halls . they largely served as meeting places for agricultural groups , rifle clubs and mutual benefit societies . about 400 such halls still stand -- many unused and decaying . only two traditional texas dance halls continue to operate on nearly a daily basis : luckenbach hall and gruene hall . texas dance hall preservation and other groups are working to preserve the state 's remaining dance halls . they are creating an inventory so that the most distinctive ones become candidates for the national register of historic places .\nben flower regrets his attack on lance hohaia every day . the wigan warriors forward was sent off in 2014 super league final . flower landed punches on hohaia while he was laying on the floor . the 27-year-old is ready for a comeback after a six-month ban .\nalmeria fired juan ignacio martinez on sunday after 4-1 defeat by levante . former barcelona defender juan sergi barjuan named as new head coach . martinez took charge in december after francisco rodriguez was sacked . almeria are 18th in la liga with nine games left to play .\nmorgan geyser , 12 , is remanded on $ 500,000 bail for the first-degree attempted murder of payton leutner in waukesha may 2014 . her and anissa weier , 13 , ` stabbed leutner 19 times to appease slender man ' , a fictional modern-day version of the boogeyman . attorney 's tried to have geyser 's bail reduced and move her to a hospital . they said she needs treatment for numerous mentall illnesses . judge ruled friday she was a flight risk and denied the motion .\neducation secretary suggests she would not be ` happy to serve ' with ukip . condemns farage over his attack on migrants with hiv coming to uk . ukip leader admits support for his party has ` slipped back ' in recent weeks . cameron urges ukip supporters to ` come home ' to the conservatives .\na melbourne man has unearthed a ww1 medal with his metal detector . ashley manzie tracked down the medal owner 's great-nephew after posting photos to an online fossicking forum . the discovery was made a week before 100th anzac day commemorations .\nlisa morgan , 40 , amended site to claim her boyfriend had been unfaithful . top of the world roofing website says it 's ` ceased trading at present ' . site now claims boss was ` unfortunately found out to be cheating again ' met sean meade , 45 , in august but soon grew wary when he was never in . contacted his estranged wife , jo , who told her he had cheated on her too .\nsam griner was just 11 months old when his mother snapped him clenching his fist on the beach and posted the image online . years later , she learned it had become the popular ` success kid ' meme . sammy 's father , justin , has been on dialysis for six years and is in need of a kidney transplant so the family is now appealing for help . they have set up a gofundme page to try to find him a kidney and to raise the $ 75,000 he will need for the procedure and medication .\nsurvey of 1,000 firms showed half are less inclined to recruit obese people . believe they are ` lazy ' and ` unable to fulfil their roles as required ' . comes after european court ruled obesity is a disability after 25st danish childminder claimed he was sacked by local authority because he was fat . specialist furniture such as larger chairs . parking spaces next to the workplace . dietary advice to overweight staff . gym memberships . opportunities to work from home .\nhe has not signed the lucrative contract liverpool waved in front of him and he gave an interview to the bbc without clearing it with the club . but imagine if raheem sterling had actually done something wrong . he has been called avaricious , capricious , disloyal and impressionable . we talk about loyalty in football as if it is a one-way street . clubs generally have very little loyalty to players . they treat them as commodities . if he asks for time to think before he commits himself , it is absurdly unjust that he should be pilloried for it .\ngwyneth paltrow 's figure is more impressive than ever . she joins a whole host of stars in their forties who look super toned . gwen stefani , heidi klum and naomi campbell have figures of 25 year olds .\ninvestigation by mother jones said gun violence costs $ 700 per american each year , with a total of $ 229 billion . the cost of the obesity epidemic is $ 224 billion . $ 8.6 billion is direct costs , such as prison for those who commit homicide . indirect costs account for $ 169 billion for ` impact on victims ' quality of life ' over 750,000 americans have been injured by guns in the last 10 years .\ninter milan host ac milan in a serie a derby this weekend . both clubs are struggling to qualify for european competition . the milan derby used to be a star-studded tie with the world 's best players . champions league game in 2005 was abandoned due to flares thrown . the current crop of talent is far cry from the stars 10 years ago .\nmichael gridley , 26 , was jailed after running the scam at store in basildon . was sacked from position after supermarket received anonymous reports . but he is now employed as a manager at lidl supermarket in romford . sentenced to 12 months at southend crown court for leading role in scam .\ngreens pledge to increase government spending by # 89bn next year . by 2020 , the party would hike spending by # 176bn to almost # 1 trillion . nhs spending would go up by # 12bn , with the railways nationalised . free care for the elderly introduced and tuition fees scrapped . travellers would get new ` nomadic rights ' and foreign aid increased .\nthe trussell trust counted the number of people visiting its 445 branches . the charity hands out three-day food parcels to people requiring help . critics claim that people will come forward if free food is on offer . tories said getting people working was better than providing hand-outs .\nun high commissioner for human rights condemned katie hopkins ' zeid ra'ad al husein urged britain to crack down on ` inciting racial hatred ' compared hopkins ' ` cockroaches ' comment to language employed by rwandan media outlets in the run-up to the 1994 genocide . he also likened her words to nazi propaganda during the 1930s .\nnew technology allows parents of ivf children to view babies ' conception . it allows parents to see the embryo forming far before usual 12 week scan . medics are able to watch process and select best embryo to be planted . sally and stephen morley among 1,500 couples in uk to use technology .\nnew zealand photographer amos chapple travelled the world with a camera and quadcopter to take these pictures . stunning images show cities , slums and historic sites from high in the sky - offering new perspective on the world . as governments across the world clamp down on aerial drone photography , ` birds eye ' views are becoming rarer .\ntianni stratton suffered physical and verbal abuse , her mother claims . on one occasion the girl wore sun cream to make her skin look ` english ' . mother tracy says tianni is so traumatised she is afraid to leave the house . she is suing local council over claims it ignored complaints of bullying . tracy is trying to raise # 6600 for an autism service dog for tianni - more information may be found here : letsgofundraise-uk . com .\nlorraine bracco was asked by the sopranos creator to be carmela . the actress turned him down because she played a mobster 's wife in martin scorsese 's goodfellas in 1990 . convinced showrunner david chase to let her play the role of dr. jennifer melfi .\njose mourinho said he is proud to work with underprivileged people . he claimed that he never discusses footballing issues with his wife . in a wide-ranging interview he said he is a deeply religious person . he also claims that he is essentially a ` very good person ' despite his antics .\nashton wood has issued a tongue-in-cheek apology to jeep and will read it out on abc tv 's the checkout tonight . the car company requested he apologise for slamming them after he was not given a refund or replacement for a faulty vehicle he bought in 2010 . mr wood instead launched an online campaign to destroy his $ 49,000 car . he is now campaigning to introduce lemon laws in australia . a spokesperson for jeep said ` we have and always will treat mr wood in a fair and professional manner '\nformer rap mogul marion `` suge '' knight is accused of murder in a videotaped hit-and-run . judge declines to reduce his bail from $ 10 million .\ndaily mirror published the first pictures of the six thieves on saturday . scotland yard finally released images of only three raiders 21 hours later . former flying squad chief said he ` has never heard of anything like this ' seemingly conflicting claims over who had footage first emerge .\n18 dead and 5 being treated , nigeria says . locally brewed alcohol is suspected . some patients have died within hours .\ngreg dyke wants to increase the minimum number of homegrown players at premier league clubs from eight to 12 . fa chairman has been backed by ex-england bosses graham taylor , glenn hoddle , kevin keegan , sven-goran eriksson and steve mcclaren . rise of harry kane proves england can develop talented youngsters .\nandre-pierre gignac puts marseille ahead on half-hour with powerful back-post header from dimitri payet cross . blaise matuidi equalises five minutes later with a stunning strike from the edge of the box . gignac capitalises on terrible psg defending to restore marseille 's lead before half time . marquinhos brings psg level again , before jeremy morel own goal puts champions ahead moments later .\ndale forrest would go out drinking regularly and would eat fatty food . dined on cheese and sausage bap for breakfast and kfc for lunch . decided to lose weight after seeing photos of him next to slim friends . started going to the gym and eating healthy foods and lost 10 stone .\nbodies of suspected gunmen paraded in front of crowd in garissa . kenya 's president slams those who finance and support groups like al-shabaab . al-shabaab threatens `` another bloodbath '' in kenya .\na pilot was flying a short flight from oenpelli to jabiru , northern territory . on board the flight last year were the pilot , two adults and three children . the pilot reported the children on board were excited and a little disruptive . the passenger seated in the front seat coughed through the headset . the pilot says this distracted him as he forgot to lower the landing gear . report also found the pilot was ` relatively new ' to the cessna 310 aircraft . there were no injuries but the aircraft was substantially damaged .\na concerned mother took a photo of her child 's lunch consisting of a dull looking fish fillet , a whole wheat bun , and corn and then posted it online . ` poor lighting and food presentation make this lunch unappealing , ` food service coordinator jim gehlhoff said . the school nutrition association does n't think michelle obama 's lunch regulations are to blame but they think a funding increase is needed .\nengland close day one of first test against west indies on 341 for five . ian bell scored his 22nd test match century to lead the recovery . england fell to 34 for three having lost the toss and been put into bat . jonathan trott fell for a duck on his return to the england team . alastair cook and gary ballance also fell cheaply in antigua . bell put on 177 for the fourth wicket with joe root -lrb- 83 -rrb- ben stokes unbeaten on 71 after 130-run fifth-wicket stand with bell . bell edged behind off kemar roach late in the day and was out for 143 .\nnick loeb and sofia vergara froze fertilized embryos in november 2013 but then broke up in may 2014 . implied he wants to use the embryos to have children and says he should be allowed to - whether vergara is involved or not . filed lawsuit claiming vergara wants to destroy the two female embryos . vergara denies this but says she does n't want to use them , either .\nmarseille will listen to offers for midfielder florian thauvin in the summer . tottenham have been keeping tabs on the france under 21 international . thauvin has also been watched by chelsea and valencia .\nfaris al-khori , 62 , was found with dozens of bomb-making ingredients . police found chemicals , nails , ball bearings , toxic beans and instructions . discovery made during a fire at his block of flats in edinburgh last year . he pleaded guilty and was sentenced to three years and four months in jail .\nipl 2015 to begin in kolkata on wednesday , april 8 . kolkata knight riders looking to retain the title they won last year . eighth edition of the tournament features eight teams and 60 matches . eoin morgan , ravi bopara and kevin pietersen lead english charge . final takes place at eden gardens in kolkata on sunday , may 24 .\njudge ruled that denying sex reassignment surgery to michelle-lael norsworthy violates her constitutional rights . the inmate 's birth name is jeffrey bryan norsworthy . surgery could cost taxpayers up to $ 100,000 and is the first time such an operation has been ordered in california . norsworthy has been in prison since 1987 , serving a life sentence for second-degree murder .\nmanchester united hope to sign two new strikers this summer . robin van persie has been disappointing for much of this season . serie a giants juventus and inter milan are both keen on the dutchman . united are interested in paris saint-germain striker edinson cavani . adrian durham : rooney and carrick are the only man utd players with the ` football intelligence ' demanded by louis van gaal . click here for all the latest manchester united news .\npaul smith , 61 , is facing animal cruelty charges for allegedly tossing five , 3-week-old puppies over a chain-link fence in marshall , texas . the man was identified after a humane society worker posted a surveillance video of the incident on facebook . all five puppies are healthy and uninjured ; smith is being held at the harrison county jail .\npatients flood hospitals in nepalese capital after devastating earthquake . cnn 's dr. sanjay gupta helps with girl 's operation at nepalese medical team 's request . `` this is as bad a situation as i 've ever seen , '' gupta says .\nholidaymakers had arrived to a deserted terminal at manchester airport . they walked past empty security cubicles without showing documents . manchester airport investigating why border force officers were n't on duty . were you one of the passengers on the ryanair flight ? call us on 0203 615 3423 or email hannah.parry@mailonline.co.uk . were you one of the passengers on the ryanair flight ? call us on 0203 615 3423 or email hannah.parry@mailonline.co.uk .\nthe amazing moment over 1000 spider crabs formed a migrating pyramid has been caught on camera by an underwater photographer . the creatures were spotted at blairgowrie pier but are fast on the move . the video shows creatures crawling over each other in upward direction . they are expected to start their proper migration at rye pier in a few weeks .\nchrissy teigen shared a picture of her stretch marks this week . the model was praised by those calling her a role model . now hundreds of women have taken to instagram to share their pictures .\nthe `` star wars '' digital collection is set for release this week . special features include behind-the-scenes stories on the unique alien sounds from the movie .\nmohammed suleman khan lived extravagant lifestyle without a job . police found he was building his own buckingham palace in pakistan . known as ` the general ' in uk gangland and jailed for four years last year . judge orders him to pay back # 2.2 m or face another ten years in jail .\nchief executive tony scholes apparently watched sampdoria this week . stoke city are said to be monitoring sampdoria 's pedro obiang . west ham are also interested in the midfielder , available for about # 6m .\nkurt zouma reveals he has an ambition to win the ballon d'or . chelsea youngster has had an impressive first season at stamford bridge . 20-year-old has been compared to chelsea legend marcel desailly .\nben flower returned from his six-month ban on thursday night . wales forward made first appearance since he punched st helens ' lance hohaia in the opening moments of last season 's grand final . 27-year-old received a brilliant reception during 's wigan 's 30-20 victory against warrington .\nbrad pitt and angelina jolie bought the french wine making estate in 2012 . they enlisted the help of famous winemaker marc perrin and his family . their miraval rose has received rave reviews from leading wine critics . it is now available to buy from marks and spencer for # 18 a bottle .\ngeorgia davis lifted from specially-adapted flat in aberdare , south wales . twelve emergency vehicles were at the scene and roads had to be closed . french doors had to be removed to allow crews to winch the 22-year-old . 60-stone ms davis also had to be lifted from different home in 2012 by 40-strong team of builders , scaffolders and emergency services workers .\ngerman pensioner is pregnant with quadruplets at the age of 65 . britain 's older mother , sue tollefsen , thinks decision is ` selfish in a way ' she had daughter freya , now seven , when she was 57 . regrets that she may not have as much time with her daughter .\ngoogle handwriting input works on android phones and tablets . handsets can under 82 languages in 20 distinct scripts . works with both printed and cursive writing input with or without a stylus .\npolice collated the four-page dossier following an investigation in 1964 . the band were linked to the paedophile brothel in battersea , london . jimmy savile was known to attend the same london brothel in the 1970s . operation yewtree detectives have been busy examining the old files .\nqatar 's constellation hotels bought majority share in company behind claridge 's , the berkeley and the connaught . five-star hotels latest in impressive list of high-profile acquisitions , including the shard , harrods and canary wharf . gulf state 's royal family also planning their own british palace - converting three properties into a # 200m mansion .\nrichard lapointe , a former dishwasher , confessed to raping and stabbing 88-year-old bernice martin at her manchester apartment in 1989 . he was sentenced in 1992 to life in prison without parole . lapointe 's supporters said evidence showed he could not have committed the crimes and his disability made him vulnerable to a false confession . last month a court ruled lapointe was deprived of a fair trial and on friday , a judge ordered him to be freed on $ 25,000 cash bail .\nwarren weinstein 's wife says the family is still searching for answers . officials say weinstein and another al qaeda hostage were accidentally killed in a u.s. drone strike . gunmen abducted the usaid contractor from his home in pakistan in 2011 .\ngordon jack , 47 , was taken to hospital yesterday after falling at rehearsal . murray was feet away from the photographer when he lost his balance . first minister nicola sturgeon said she was ` totally devastated ' by the news . tennis star andy murray and fiance kim sears tied the knot this afternoon .\ndarren bent said he 'll wait until the season 's end to decide on his future . villa striker becomes a free agent at the end of this campaign with derby . bent 's been on loan with brighton , fulham and derby most recently . he was out of favour with paul lambert but could return for tim sherwood . click here for all the latest aston villa news .\nlightning flash spotted in the ash cloud of the colima volcano which is 301 miles west of mexico city . strikes caused by high levels of electric charge building up as ash particles rub together . bolts can heat surrounding air to 3,000 °c and melt ash in the cloud into glassy spheres , scientists discovered .\nthe pakistani government says its security agencies are investigating . a group believed to be based in pakistan 's balochistan province claims responsibility .\nmarianne power decided to live by a different self-help guru each month . marianne attended robbins ' unleash the power within seminar . robbins has counselled bill clinton , nelson mandela and more .\nsamuel tushingham , 26 , pulled his girlfriend by the hair and kicked her . judge bridget knight says he is ` almost too dangerous to send to prison ' thug is given a suspended sentence and told to go on relationship course .\nfootage shows groups of captives in jumpsuits executed at 2 locations , narrator says . video makes numerous references to christians failing to pay tax or tribute to muslims .\nthe chicago bulls defeated milwaukee bucks 91-82 on monday night . jimmy butler managed 31 points as the bulls took a 2-0 series lead . the golden state warriors beat the new orleans pelicans 97-87 . klay thompson and stephen curry both starred for the warriors .\nreports have linked chelsea with a move for valencia 's andre gomes . but the midfielder says wants to stay with the la liga side next season . gomes has scored four league goals in 25 appearances this term .\namanda taylor , 24 , charged with first-degree murder in stabbing of her former father-in-law charles taylor . taylor blamed 59-year-old victim for introducing her late husband , rex taylor , to drugs at age 15 . rex taylor committed suicide by hanging last august , leaving amanda alone with two children . ms taylor allegedly committed stabbing with friend sean ball , but then turned on him as the two were fleeing police . she has confessed to the crimes on facebook and instagram . friend mariah roebuck said taylor had checked herself into hospital in late march but was released three days before her father-in-law 's killing .\nsteve mcclaren is expected to take newcastle job if derby do n't go up . rams are currently battling for championship promotion via the play-offs . paul clement is a leading candidate for job . derby will make formal contact with real madrid if mcclaren leaves .\nparents wanted for questioning after girl 's body found at home . north las vegas police : 3-year-old had been dead for at least a few weeks . 17-year-old sibling is held in case .\ntayfun korkut was fired by hannover after the 4-0 defeat by bayer leverkusen on saturday left the club near the relegation zone . michael frontzek will take charge of hannover for the rest of the season . hannover are currently 15th in the bundesliga table and are on a torrid run of 13 games without a win .\nlib dem leader embarks on bizarre photo opportunities to stay in the news . aides say it is part of strategy to meet voters where they work and play . he has met a hedgehog and joey essex , pulled a pint and visited a spa .\nus citizen xue feng returned to his family in houston , texas , on friday . detained in november 2007 on charges of ` illegally procuring state secrets ' convicted in 2010 of illegally gathering information on china 's oil industry . 50-year-old doctor served all but ten months of his eight year sentence . president obama personally lobbied for release during 2009 beijing visit .\nphotographs show reef shark passing though a shoal in queensland . images were captured by a groom-to-be ahead of his wedding . they show fish keeping their distance , perhaps proving they are scared . shoals keep fish safe in large numbers because they confuse predators .\nthe former u.s. army general appeared in court in charlotte , north carolina on thursday for his sentencing hearing . he admitted to giving his biographer mistress classified material he had improperly kept from the military - which carried up to a year in prison . but he was instead sentenced to two years probation and a $ 100,000 fine . speaking after , petraeus apologized for his ` mistakes ' but thanked his supporters and said he was looking forward to moving on with his life . he had an affair with paula broadwell between late 2011 and summer 2012 , and stepped down from the cia after the relationship emerged .\namy schumer pranked kim kardashian and kanye west at the time 100 gala on tuesday night . the comedienne fell at the pair 's feet as they posted for photos on the red carpet . the three were just a few of the big names who turned out for the annual event held at jazz at lincoln center in new york city . other honorees who attended the event included diane von furstenberg , lorne michaels , laverne cox , and bradley cooper . this year 's time 100 covers featured west , cooper , ballerina misty copeland , ruth bader ginsberg and journalist jorge ramos .\nprofessor ninian peckitt allegedly punched man who had been in accident . honorary locum consultant at ipswich hospital at time of alleged incident . he later wrote patient 's face was ` digitally manipulated ' in february 2012 . the 63-year-old charged with three counts at tribunal and may be struck off .\ndrinking makes body go under oxidative stress and weakens immunity . study has shown that higher doses of vitamin e can mitigate this stress . vitamin e can be found in high doses in foods such as kale and almonds .\nlittle catalina from america was filmed emptying out the contents of the kitchen cupboards at home . but when her father tells her to clean up her mess , she vehemently refuses with a heated - and rather cute - argument ensuing .\ninjuries sustained in rugby can range from bruises to spinal cord damage . academics say government plans to increase school rugby games is risky . professor 's son suffered horrendous injuries playing the sport aged 14 . allyson pollock wants to see an end to tackling and scrums in the game .\nfemail 's inboxes flooded with hoax kitchen and beauty product news . included unlikely launches like beafeater 's new vegan eatery leafeater . we bring you the best of the april fools ' jokes doing the rounds today .\nilha de mana , a 15-acre outcrop shaped like a tortoise shell , is located near the colonial town of paraty . the private island off the costa verde is three hours by car or 40 minutes by helicopter from rio de janeiro . at # 2,500 -lrb- $ 3,750 -rrb- a night , it boasts a main residence and four chalets over crystal clear water . with stunning surroundings , the island has its own water supply and its buildings are solar powered .\nron ingraham , 67 , disappeared off hawaiian coast on thanksgiving . managed to eventually radio for help and was rescued by u.s. navy ship . his boat ran aground on rocks friday morning , hurling him into the sea . a friend on the boat with him was rescued , but no sign of ingraham . kenny corder swam away from ingraham to radio for help - but when he came back he had vanished .\nthe train and bus were used for the escape scene in 1993 film the fugitive . starring harrison ford , the movie earned $ 370million at the box office . the remains of the vehicles still lie at the site of filming in north carolina . it has since become a tourist attraction for fans of the blockbuster movie .\ndesigners are looking to ease passengers ' woes with comfier seats . the ` series 7 ' premium economy seat is thinner , offering more legroom . travellers who hate the middle seat will enjoy the ` cozy suite ' a hong kong firm 's dual-user armrest is a solution to the elbow wars . ` the meerkat ' allows passengers to recline without annoying others .\nkyle schwartz , a third-grade teacher in denver , colorado , devised a new lesson plan last month . hoping to learn about her students ' struggles outside the classroom , schwartz had them answer the question ' i wish my teacher knew ... ' . after posting some of the affecting responses on twitter , teachers across the nation started trying out the lesson and posted their own responses .\nronnie carroll placed fourth in the eurovision contest in 1962 and 1963 . he died in london two days ago , aged 80 , following a battle with cancer . mr carroll was running in the general election for hampstead and kilburn . he remains on the paper and he will be elected if he gets enough votes .\namerican to make a rare appearance at a villa match . they take on liverpool in the fa cup semi-final at wembley on sunday . lerner did visit villa park for arsenal game back in september . he has been trying to sell the club since last may in # 150m deal .\nboko haram has killed thousands in the nation 's northeast since 2009 . aid agencies are scrambling to provide the refugees with clean water , shelter , food and education .\nnile ranger has been awol from blackpool since early december . the striker has not played for the club since the end of november . ranger 's blackpool deal expires at the end of this season . former newcastle forward say the club took the mick out of him .\nbrief clash occurred near amber mountain national park in madagascar . footage shows the pair sizing each other up before one strikes . the more aggressive of the two takes a huge bite out of his foe . defeated chameleon wriggles free and then tries to escape along a wall .\nprosecutor ray gricar has been missing for 10 years . his laptop and hard drive were found too damaged to read . gricar has been declared legally dead .\nnew $ 2 coin minted to mark the 100th anniversary of gallipoli landing . symbolic red poppy design used with the words ` lest we forget ' one and a half million coins released into circulation over coming weeks . coin part of australian mint 's official anzac centenary coin program . mint is one of two in the world which produces colour print on coins .\nbayern munich beat borussia dortmund 1-0 in the bundesliga on saturday . robert lewandowski opened the scoring vs his former club on 36 minutes . dortmund applied much of the second-half pressure but were kept at bay . bayern restored their 10-point lead at the top of the bundesliga .\nrob kardashian , 28 , has taken disappeared from the media spotlight . his sister khloe says he has ` social anxiety ' family discuss him in new episode of keeping up with the kardashians .\nmemphis depay has been linked with a summer move to man united . tottenham and man city are also said to be keeping tabs on psv star . depay has scored 20 goals in 26 league games so far this season . the dutch ace worked under louis van gaal at the 2014 world cup .\ncelebrity big brother contestant , 40 , says vessels ` need pushing back ' she asks radio listeners : ` why do we take on everyone else 's problem ? ' hundreds dead after boat overturned off libya at midnight yesterday . miss hopkins called ` vile racist ' and ` manifestation of toxic hate culture '\nmatch.com said the winning candidate will be outgoing and media-savvy . the lucky singleton will stop in rio de janeiro , paris and new york . the trip will last for six weeks with all hotel and travel costs covered .\ngulam chowdhury stabbed victim mohammed afzal 20 times in march 2014 . chowdhury quoted verses of the quran before stabbing him repeatedly . mr afzal had been also involved with choudhury 's girlfriend nargis riaz . chowdhury was convicted of murder and will be sentenced on may 1 .\nthierry henry hit out at arsenal striker olivier giroud after chelsea draw . the sky sports pundit does not believe giroud can lead side to glory . arsenal need four ` top quality ' stars to challenge for premier league title . henry 's former side drew 0-0 with chelsea at the emirates stadium . read : arsenal needed to ask different questions of the chelsea defence .\nsouth florida man david etzel , 36 , allegedly lashed out after the 10-pound lapdog bit him after he 'd been drinking . veterinarians who called police said the injuries were comparable to those they seen in pets hit by cars . pet owner michele etzel says she never intends to speak to her 6-foot-8 son again .\nbeth o'rourke , 44 , of paxton , massachusetts , has spent the past 7 years fighting stage four biliary cancer . she passed away on april 16 , and wrote her own obituary . the mother of courtney , 11 , and seamus , 8 , called herself a ` survivor ' and said she ` loved ' life . a page has now been created to raise money for her children 's educations .\njuan mata scored as manchester united thumped manchester city . victory sends louis van gaal 's side four points clear of their rivals in third . manchester united are now just one point adrift of second placed arsenal . mata has challenged his teammates to keep on fighting right to the end .\nresearch conducted by planet cruise surveyed people aged 55 and over . women were more likely to regret their career choices than men . men were more likely to suffer from mental illness as a result of regrets .\nthe boy scouts ' greater new york councils said they hired pascal tessier , an 18-year-old eagle scout . tessier has been a vocal advocate of opening the 105-year-old organization to gay scouts and leaders . board members called him ` an exemplary candidate ' .\nattorney : robert bates assumed the gun was a taser because he saw a laser sight on it . harris family lawyers say there are stark differences between the gun and taser used . in 2009 , an officer in california also said he mistakenly used his gun instead of a taser .\nfamily festival is located in pippingford park in the ashdown forest . music includes a wide range of local bands and dance tents in the woods . food is locally sourced , and there 's a picnic on sunday with a free hamper . stressed out parents can head for the woodland spa while their little ones play sport or do art classes .\ntwo of cournswood house 's owners had bletchley park connections . first was naval cryptographer and enigma codebreaker dillwyn knox . sharon constancon is related to leon family who once owned bletchley . cournswood house , in south buckinghamshire , has pool , lakes and gym .\nscans have revealed all blacks flyhalf aaron cruden needs knee surgery . the 26-year-old injured his knee during clash with canterbury crusaders . surgery is likely to rule him out of a minimum of six months of action . that means all blacks ace cruden will miss this summer 's world cup .\ncctv shows a man fall while walking along philadelphia platform . bystanders jump back in shock , but one instinctively leaps after him . good samaritan pushes the fallen man onto the platform then jumps up .\nelon musk 's spacex and jeff bezos ' blue origin are among several us companies engaged in the private space business . blue origin , llc , keeps a low profile in van horn , texas , a way station along interstate 10 . the highly visible spacex venture is at the opposite end of the state . bezos ' wealth is estimated at nearly $ 35 billion , musk 's at $ 12 billion . both men hope to launch a new era of commercial space operations , in part by cutting costs through reusable rockets .\nman united beat man city 1-0 in saturday 's under 18 encounter . callum gribbin scored the winning goal at moss lane , altrincham . the result leaves united two points behind leaders middlesbrough . the ` real ' manchester derby takes place at old trafford on sunday .\nwisden editor lawrence booth launched an attack on english cricket . the sportsmail writer criticised their handling of the kevin pietersen affair . booth was also scathing of england 's late decision to sack alastair cook as one-day captain on the eve of the world cup . moeen ali stars on the cover of wisden , released on wednesday . sri lanka 's kumar sangakkara named leading cricketer in the world . australia 's meg lanning is honoured with the inaugural women 's award .\nwest ham were beaten 2-0 by manchester city at the etihad on sunday . the hammers have only won once in their last 11 premier league games . carl jenkinson said the players are not resting on their laurels . defender says team are still fired up and want to finish the season strongly .\nsurvivor jeff bauman stresses `` we will never replace the lives that were lost '' a man who was at the finish line is glad dzhokhar tsarnaev is now a `` convicted killer '' `` justice has been served today , '' says a once wounded police officer .\ndubbed ` pet-pot ' , snacks are used to treat joint pain and mood disorders . they are sold by a number of firms in the us such as auntie delores . biscuits contain high levels of legal cannabidiol , also known as cbd . it has been known to alleviate joint pains and treat mood disorders .\ndiscovery means qin dynasty great wall can finally be fully traced . the 6-mile stretch is thought to date back more than 2,000 years . historical records suggested the stretch existed but physical evidence has never been found until now . china 's first emperor built it to stop invaders crossing the yellow river .\ndeion sanders called out his son deion sanders jr. when he wrote about needing ` hood doughnuts almost every morning ' ` you 're a huxtable with a million $ trust fund stop the hood stuff ! ' wrote sanders . sanders later confirmed the entire thing was just a joke between father and son . the former football and baseball star and current analyst is said to be worth around $ 40million . a huxtable is a phrase used by some to refer to upper class black people , in reference to the huxtable family from the cosby show .\nflying is a thrilling experience but is full of mystery for most passengers . mailonline travel spoke to experts to answer common questions . to reduce the risk of food poisoning , pilots do not eat the same meals . larger planes have private sleeping quarters for flight attendants . ` the world 's strongest man ' would n't be able to open a door mid-flight .\nveteran time magazine film critic richard corliss died thursday night in new york city . corliss reviewed more than 1,000 movies and authored four books on film .\nthe ten most discounted houses in australia have been revealed by sqm research . some of these properties have been on the market for up to two years . among them includes a one-bedroom home in oberon , central west of nsw . it was listed 800 days ago for $ 299,000 but the price has since been cut down to $ 149,000 . most of the properties on the list has reduced its asking price from about 35 to 55 per cent .\ngupta is in kathmandu to cover the aftermath of deadly earthquake . the hospitals are so overstretched that he was asked to perform brain surgery on a teenager who had been crushed by a wall in the quake . he said the girl is now doing well - but she is just one of many victims . 4,352 people are believed to have died , including at least four americans , and more than 6,000 suffered injuries .\nthe magazine 's global fashion director carine roitfeld conceptualized and styled the spread , which appears in all 32 editions of the fashion glossy . models jing wen , laura james , anna cleveland , ondria hardin , antonia wilson , kitty hayes , and paige reifler also starred in the photoshoot .\nfloyd mayweather and manny pacquiao came close to a fight in 2010 . the pair will finally meet in at the mgm grand in las vegas on may 2 . trainer freddie roach believes mayweather is slower than he used to be . pacquiao will attack mayweather and knock him out , according to roach . watch here : mayweather vs pacquiao official advert released . amir khan : mayweather and pacquiao have n't even heard of kell brook . click here for the latest mayweather vs pacquiao news .\neden hazard was substituted 62 minutes into belgium 's win in israel . manager marc wilmots said he believed hazard looked to be tiring . chelsea playmaker questioned the decision but admitted he could be tired . read : chelsea star hazard rated europe 's best midfielder . click here for the latest chelsea news .\nmanchester united host rivals manchester city in the league on sunday . united last beat city in the derby at home came in a 2-1 win four years ago . united sit above city in the table after having played the same amount of league matches for the first time since november 2013 . united can move four points clear of their ` noisy neighbours ' with victory .\nkurt ludwigsen fired by nyack college in march after allegations surfaced . police say he kissed , fondled and was inappropriate towards 13 players . ludwigsen charged with forcible touching , harassment and sexual abuse . the 43-year-old father of two is being held on $ 15,000 bail after arrest . would have been coach 's first season at nyack , a christian school in ny . ludwigsen , a career softball coach , lives in ridgewood , new jersey .\ndubbed a hydrafacial , the treatment is currently available in new york . key ingredient is stem cells from an infant 's foreskin . beauty writer who had it said her skin glowed like j-lo 's .\nlindsey norman purchased buns from sainsbury 's store in peterborough . the mother-of-two spotted the image of jesus christ in a hot cross bun . said it made me ` giggle as it 's coming up to easter ' but has eaten the bun .\nafter calling off its air campaign , saudi arabia resumes airstrikes in yemen . no casualties are reported , but 3 houthi military compounds were destroyed . saudi airstrikes resumed after rebel forces attacked a yemeni military brigade .\nfamily seen riding through streets of san miguel de tucuman , argentina . police tracing two adults and four children who were not wearing helmets . family 's actions condemned on social media sites after picture put online .\nrick santorum says `` religious freedom '' debate is about government telling people what to do . santorum , a likely 2016 gop presidential candidate , weighs in on indiana gov. mike pence 's decision .\nshadow cabinet ministers brand industry leaders as members of the ' 1 % ' lord prescott suggests they are ` tax dodgers , tory donors and non doms ' one of them , diageo boss paul walsh , ` should no longer take over at cbi ' . 103 corporate leaders declared government ` has been good for business ' in september 2011 , miliband marks his first year as labour leader by threatening a more punitive system of tax and regulation for businesses that he considers to be ` predators ' who are ` just interested in the fast buck ' . the institute of directors says : ` we would like to know how he plans to identify and reward `` good '' companies over `` bad '' ones . he should have more faith in customers and investors to decide ' . in his 2013 conference speech he pledges an incoming labour government would freeze gas and electricity bills for 20 months . power firms say it will deter investment in much needed infrastructure . energy uk says the policy risks making ` energy shortages a reality , pushing up the prices for everyone ' . also that month miliband announces councils should be allowed to fine developers if they acquire land with planning permission but do not build on it immediately . town halls would also be able to buy and grant planning permission on land held by developers . the iod says the ` use it or lose it ' declaration is a ` stalinist attack on property rights ' . the home builders federation says it ` completely rejects ' the idea land is being hoarded . in january 2014 , labour vows it will reverse george osborne 's cut in the 50p rate of tax for anyone earning more than # 150,000 -- which , with disingenuous class war rhetoric , it dubs a ` tax cut for millionaires ' . in a letter , the heads of 24 of britain 's most successful companies say this would put the economic recovery at risk . in september 2014 labour pledges to reverse a 1p cut in corporation tax . the iod hits back : ` it 's a dangerous move for labour to risk our business-friendly environment in this way . ' . in february miliband and his supporters turn on boots chief executive stefano pessina when he dares to say he fears labour 's business policies will be a catastrophe . pessina is labelled a tax avoider from monaco . appalled business chiefs accuse the labour leader of ` playing the man not the ball ' .\nfive staff members sustained injuries after breaking into the super slide . the easter show ride was closed earlier that night due to safety concerns . officials say the slide runs ` way too fast ' in the wet weather . one woman broke a leg while a second woman broke both her legs . a 60-year-old man suffered broken ribs and internal bleeding . the slide reopened once rain stopped and a safety check was completed .\ngloria ross was found with a distorted face when grandson visited her . he raised alarm with nurses at whipps cross hospital , north east london . but they said she was ` just tired ' and that senior nurse was ` on a break ' . later discovered she 'd had stroke - and she never regained consciousness .\nmiliband 's approach was as choreographed as a torville and dean routine . cameron kept firm hand on the leadership rudder and made no mistakes . clegg 's smooth performance was a complete re-run of his 2010 routine . farage was diminished during debate , perhaps the night 's only casualty . sturgeon , wood and bennett took him down with series of small swats . sturgeon 's speech about ` breaking up old boys network ' finished off coup .\nhundreds of boxes of fresh meat was being taken to refugees in aleppo . but isis militants spotted a label claiming the chickens were us-reared . they declared the cargo ` unlawful ' and set light to hundreds of the crates . wastage comes despite up to 650,000 facing starvation in war-torn syria .\nraymond lee fryberg jr. ` bought a gun in 2013 despite a domestic violence protection order against him banning him from doing so ' he ` said he had no restraining orders out against him when he filled out his federal form and the system did not pick up the error ' he was arraigned on thursday and faces 10 years behind bars if guilty . last october , his son jaylen , 15 , shot dead four of his classmates in the cafeteria at their seattle high school before taking his own life .\nkim pappas did not tell anybody she was pregnant before giving birth . she gave birth standing up in bathroom at ceva logistics in michigan . cut umbilical cord with cuticle scissors , wrapped baby in plastic bag , put that in a tote bag , then returned to her desk and put it in a drawer . co-workers had heard moaning then saw blood on restroom floor . they spotted blood on pappas then found the baby dead in the drawer . she claimed she had a miscarriage but autopsy shows suffocation . pappas faces charges of premeditated murder and child abuse , denied bail .\nnew york city fc 's patchy start to the season continued . mehdi ballouchy put the home side ahead but cj sapong levelled late on . city have won just one of their opening six matches in mls . david villa was forced off at half time with a hamstring strain .\ncaroline wozniacki will compete at the french open , which begins may 25 . danish star predicted she would play at roland garros when she was 11 . former world no 1 also revealed a sneak preview of her adidas outfit .\nsnack amnesiacs are mindless munchers who subconsciously snack . situational snackers have busy schedules and are often stressed out . super snackers plan ahead and nibble only when their body tells them to .\ntop judge said australian commercial surrogacy needs to be legalised . justice diana bryant said current surrogacy laws need to be scrutinised . she believes it will stop abandonment cases like that of baby gammy . it means it can be done on ethical terms and avoid legal complications .\nderry mathews handed a unanimous points decision at the echo arena . tony luis was drafted in after richar abril and ismael barroso pulled out .\nunited flight 3954 carried clinton from omaha , nebraska to newark , new jersey on thursday . met by a town car and a police escort -- on the tarmac -- for what 's likely a short trip back to her chappaqua , new york estate . follows iowa campaign swing full of controlled interactions , staged conversations and little interaction with real people . clinton was , however , photographed pulling her own suitcase down an airport concourse .\np!nk took to twitter to address online comments about her body . her `` squishiness '' is a result of happiness , she says .\nmarylin stoneman took control of victim 's finances after he went into care . she began to withdraw between # 100 to # 200 a day to buy scratchcards . in total she stole # 22,650 in the scam - the 98-year-old 's entire life savings . stoneman , 64 , was ordered to pay back just # 1,350 to compensate victim .\nnatalie fletcher is a body painter from oregon , us , working on ' 100 bodies across america ' project . the 29-year-old has been travelling around painting different subjects . she blends her subjects into the landscapes they 're standing in front of - including buildings and scenery .\ncelebrities and music fans gathered in the southern california desert for the annual music and arts festival . this year 's musical acts include ac/dc , drake , florence and the machine , alt-j and toro y moi . festival runs in two weekends including april 10-12 and april 17-19 .\nfrankie dettori made it six winners in four days at newbury on saturday . dettori rode a 441-1 treble complete with famous flying dismounts . italian rode charlie hills-trained greenham stakes winner muhaarar . earlier in week it was confirmed dettori would concentrate in british racing .\nbritish technology company flow ife has built a prototype device that shows passengers virtual horizon that mimics the movement of the aircraft . device helps to combat the disconnect between eyes and sense of balance . the headset can also display realistic night and day images of a traveller 's destination to help them acclimatise to new time zones during their flight .\nprosecutors formally charged former top official zhou yongkang . zhou charged with accepting bribes , abuse of power and leaking state secrets . former domestic security official is the most senior chinese official to face corruption charges .\ngary locke has been interim manager since start of february . locke has won two and drawn four of his seven games in charge . the 37-year-old took over when allan johnston quit .\nchelsea held to stalemate with arsenal at emirates stadium on sunday . arsene wenger has not beaten chelsea boss jose mourinho in 13 games . cesc fabregas returned to arsenal for first time since leaving in 2011 . oscar had to be replaced at half-time after a collision with david ospina .\nambra battilana , 22 , did not ` co-operate ' with authorities for four days . has been claimed delay was because she wanted to try and land a film role . but once that came to nothing , she decided to pursue the criminal case . sting by nypd shows weinstein did not deny touching her , it is claimed . he denies allegations and has spoken to police , who have not filed charges .\nthe posters feature a portrait of clinton with phrases including ` do n't say ambitious ' and ` do n't say entitled ' street art appears to be a dig at clinton supporters who said words like ` entitled ' and ` secretive ' which are used to describe her , are sexist . on sunday , anti-hillary clinton users shared on twitter reasons why they will not vote for her using the hashtag that began trending online .\nmanchester united flop anderson was sent off for internacional this week . anderson saw red for an off-the-ball shove during the first half of 1-1 draw . team-mate fabricio stole the limelight by swearing at his own fans .\nkell brook enjoys evening at the darts in his home town of sheffield . world boxing champion received a hero 's welcome when introduced . dave chisnall won both his matches to move onto 17 points . phil taylor lost his fourth in five with defeat by raymond van barneveld . michael van gerwen still top after 7-5 win over stephen bunting .\neugenie bouchard has suffered four defeats in her last six matches . the world no 7 is representing canada in fed cup world group play-off . canadian star refuses to shake hands in pre-match press conferences .\nbecca and dale litchfield spent their wedding savings on ivf . the couple were thrilled when they conceived not one but two babies . dale secretly entered a wedding contest and the couple won .\ngitte denteneer was stunned after getting the bill from rubens in leuven . the belgian cafe had charged her 50 cents for use of their electricity . ms denteneer later took to twitter to express her outrage at the charge . others on twitter shared her anger and called the rubens boss ` mean ' .\npeter moores has come to the defence of england captain alastair cook . batsman cook is in danger of becoming english cricket 's next victim . england 's failure to win the first test has left the spotlight on cook . under-fire moores is adamant he will turn things round in grenada .\ncindy santamaria-williams is covered in bruises and has a broken eye socket following the alleged attack on easter sunday . santamaria-williams claims three teenage girl beat her outside the theater after she shushed the girls because they were loud . santamaria-williams ' sister-in-law was also hurt . police are searching for the teens and say they will face assault charges .\nreal madrid take on atletico madrid in champions league quarter-finals . first-leg is at atletico 's vicente calderon on tuesday evening . atletico madrid could only manage 2-2 draw against malaga on saturday . real madrid beat eibar 3-0 to go just 2 points behind barcelona in la liga .\nbulgaria 's black sea resorts cheaper than hotspots in italy , spain and turkey . researchers found cheapest destination using ` imaginary shopping basket ' cheap prices are driven by low exchange rates and country 's high inflation . its most popular resort of sunny beach copies those of spain and greece .\ncarol chandler , 53 , accused of abusing boy under 14 at st paul 's school . teacher at southwark crown court facing three counts of indecent assault and two counts of gross indecency at the school between 1983 and 1985 . school costs # 32,000-a-year and counts george osborne among old boys .\nfloyd mayweather held media workout at his gym - but turned up late . he is just over two weeks away from facing manny pacquiao on may 2 . mayweather will earn more than $ 180m from the richest fight in boxing . but he admitted he no longer enjoys the sport and will retire this year . mayweather plans to have one more fight in september to finish his career . ricky hatton : pacquiao has style but mayweather ` will find a way to win ' click here to watch manny pacquiao 's open media workout live .\nwalter smith spent two spells in charge at ibrox as manager of rangers . stuart mccall was appointed rangers manager in march until the summer . rangers are currently fifth in the scottish championship . smith hails mccall impact and opens up about ally mccoist 's departure .\nbenjamin astbury was born 12 weeks early , weighing just 1lb 3oz . was put into a paralysed state on a ventilator to help him breathe . doctors told his parents he had just a 10 % chance of surviving .\nander herrera 's progress has been monitored by barcelona scouts . xavi is discussing staying at barcelona until the transfer embargo is lifted . liverpool will reject manchester city 's proposals for jordan henderson . ben amos impressed neil lennon during his loan at bolton wanderers . javier hernandez is set to turn down an mls offer to stay in europe . crystal palace and west ham are maintaining interest in stephane mbia .\na tweet was sent from an account claiming to be linked to 2ue news . the sydney fairfax media station recently merged with rival station 2gb . read ` we hope you like the sound of whinging hyenas reading the news ' jobs were lost at 2ue , and 4bc and magic 1278 in brisbane after merger .\nsutherland council is exploring idea of allowing overseas backpackers to park their campervans in allocated locations right on the beach . cronulla and wanda beach are often ignored by tourists due to expenses . this motion was proposed due to the economic boost backpackers bring . seasoned travellers spend $ 700 on eating out and shopping during a stay . some locals believe it can not be done due to rising land values in cronulla .\nbunkie king was a 15-year-old sydney schoolgirl when she met the actor . jack thompson was twice her age and they had a 15-year relationship . during this time , ms king was also involved with her older sister , leona . the 60-year-old has two sons with her ex-husband and works in nursing . thompson and leona are still in a relationship and live in regional nsw .\nthe dog named stains required a cut because of the warm weather . owner decided pet pooch needed a new look and got it cut like lion . video captures the owner laughing hysterically while filming results .\ngolden state warriors beat portland trail blazers 116-105 on thursday . stephen curry broke his three-point record for a total nba season . curry hit eight three 's to surpass his previous best of 272 three-pointers . miami heat lost 78-89 vs chicago bulls in the eastern conference .\njames may reveals he celebrated prematurely by ordering # 200,000 ferrari . lucrative contract was in a draft form with only a few details to resolve . but offer was taken away after clarkson 's infamous ` fracas ' with producer . may said trio planned to continue making show before leaving ` with dignity '\nthe japan atomic energy agency has studied lawrencium for the first time . the element is extremely difficult to make and has a half life of 27 seconds . they found it is different from other rare radioactive elements in the f-block . it is likely to fuel the debate for lawrencium to be in the main body of table .\nluke mcgee made stoppage time double save for tottenham hotspur . chelsea keeper mitchell beeney nearly handed spurs lead with error . tottenham missed out going level on points with manchester united . spurs now sit third in table behind united and liverpool . defending champions , in eighth , remain three points behind spurs .\ntwo mesquite , texas police officers pulled hector valles , 25 , from his burning suv early sunday after he swerved off the highway and crashed . officers ryan nielson and autumn soto managed to get valles to safety just before his vehicle became fully engulfed . valles , whose clothes were burning when the officers dragged him to safety , is now recovering from burns and internal injuries in icu .\narsenal 's david ospina has won 11 of his 12 premier league games . arsenal keeper ospina leads players to have played more than 10 times . stefan savic and gerard pique make up top three , but who else features ? click here for all the latest premier league news .\nseveral top sides are keen on signing german teenager julian weigl . tottenham have stepped up their interest in the 1860 munich midfielder . however spurs face stiff competition from juventus and dortmund .\nambermarie irving-elkins felt a few contractions on thursday morning but thought she had time to go to an la courthouse to pay a fine . but while she was there , she felt the baby coming - and knew she did not have enough time to get to hospital . officers ran to her aid and caught baby malachi as he was born .\nandy murray appointed amelie mauresmo as his coach last summer . mauresmo is a former wimbledon and australian open singles champion . the 35-year-old is also a former world no 1 .\nkate and william to start new royal birth custom . arrival of queen 's fifth great-grandchild will be announced with a hashtag . birth revealed on buckingham palace easel after social media .\nmartin allen believes it 's a crucial time for troops to follow orders . players like john terry ensure whole squad is pulling in same direction . perceptions in football need to change and they need to change quickly . birmingham boss garry rowett is heading all the way to the very top .\nbangladesh beat fellow world cup quarter-finalists pakistan by 79 runs . tamim iqbal and mushfiqur rahim scored centuries for bangladesh . bangladesh made 329 for six and pakistan could only muster 250 in reply . pakistan will have the chance to level the three-match series on sunday .\nbarcelona face psg in champions league quarter-final first leg . lionel messi comes into wednesday 's match in incredible form . he has 45 goals in 44 games and is one short of 400 for barca . messi said he is happy and ` back to my best ' after poor 2014 . messi and cristiano ronaldo could line up together in uefa all-star match .\njordon ibe will sign a new five-year contract which will run until 2020 . ibe has impressed at liverpool since returning on loan from derby county . liverpool also close to signing new deal with jordan henderson . read : martin skrtel rejects talk linking him with a move away from anfield . reds agree to new three-year sponsorship deal with standard chartered .\nexeter moved up to fourth after completing a double over northampton . phil dollman and a penalty try helped the chiefs on their way to victory . james wilson and jamie elliot scored for the saints but to no avail .\nstuart armstrong is hoping he can win his first premiership title . armstrong joined celtic from dundee united in january 2015 . he experienced heartache during last season 's scottish cup final . armstrong and his then dundee united team-mates were beaten 2-0 .\ntottenham forward emmanuel adebayor has taken to twitter to insist his immediate future remains at white hart lane . he has one year left to run on his current contract at spurs . adebayor joined spurs in 2011 from manchester city , initially on loan before an impressive first season convinced them to make the move permanent . unfortunately , adebayor has not managed to rediscover his early form and has been reduced to a bit-part player in mauricio pochettino 's plans . he has not scored a league goal for spurs since october .\nmanuel valls said france is facing an unprecedented threat from terrorism . ` we have never had to face this kind of terrorism in our history , ' he said . comments follow the arrest of 24-year-old student sid ahmed ghlam who was allegedly plotting attacks on catholic churches in paris . dna also reportedly links algerian to murder of dancer aurelie chatelain .\ntwo russian companies have started offering unusual service this year . one message can cost as little as $ 6 , or # 4 , so it is a cost effective method . american fastfood chain posted an ` advert ' to its russian page this month . but critics have pointed out it is unlikely to have mass market appeal .\nman was trapped in stormwater drain in meadowbank in sydney 's west . it took an hour to rescue him using ropes and ladders . it 's unknown how the man ended up stuck in the two-metre deep drain .\nnyia parler ` left her son in the woods in philadelphia so that she could spend the week with her boyfriend in maryland ' but five days later , a passerby discovered the man with nothing but a bible and a blanket and contacted authorities . the son is , who has cerebral palsy , is in stable condition in hospital . parler is in hospital for undisclosed reasons but faces a list of charges .\ngloucester are in danger of being given a points deduction by the rfu . the aviva premiership side played mariano galarza against sale sharks . the lock was ineligible to feature so they will now face a panel hearing .\nmet office assistant commissioner says fanatics ' tactics have changed . rather than large-scale 9/11-style attacks , smaller cells are now forming . isis uses videos like those featuring jihadi john to inspire followers . extremists are now targeting the mentally ill and very young , he said .\njef rouner from houston , texas says his daughter was forced to wear jeans and a t-shirt with her spaghetti-strap sundress . the father expresses frustration that only girls are targeted by school dress codes - even at such a young age . he finds it shocking that a dress his daughter wore to church was deemed inappropriate .\nresearchers sequenced microbiomes of yanomami people in amazon . testing found they harbour microbiomes with the highest diversity of bacteria and genetic functions ever reported in a human group . bacteria they found could be potentially beneficial to modern society .\nliverpool fans are being charged # 50 for a ticket to hull city , compared to everton fans being charged # 35 . fans ' group spirit of shankly want some of the money in the game to be passed back to the fans . brendan rodgers said he respect the supporters ' right to protest . read : liverpool ramp up memphis depay chase . read : rodgers vows to do ` what is best ' for daniel sturridge .\ndata mining firm has found between 20 and 50 social media accounts active in baltimore on monday were also used in ferguson last summer . link suggests the presence of ` professional protesters ' or anarchists who looking to take advantage of freddie gray 's death to incite more violence . one account tweeted photos of gray 's funeral and used language anticipating monday 's violent clashes . a 10 p.m. - 5 a.m. curfew has been imposed by the mayor of baltimore .\ntown planners have allowed two costa cafes less than 500 yards apart . two coffee shops in windsor will be just a short walk away from each other . and there is even a costa express in between the two new outlets .\ntemperatures dipped into the mid-30s during 4 days man lay in woods of philadelphia park . mom told police son was with her in maryland , but he was found friday with blanket , bible . victim being treated for malnutrition , dehydration ; mother faces host of charges after extradition .\nsunderland earn 1-0 tyne-wear derby victory against newcastle at the stadium of light . jermain defoe gives black cats the lead with stunning left-footed volley before half-time . former tottenham striker scores his third sunderland goal in hard-fought win for the home side . sunderland boss dick advocaat earns his first tyne-wear derby victory . black cats are unbeaten in their last seven barclays premier league games against newcastle united .\npat senior runs rescue centre from her home in bolton , great manchester . grandmother , 66 , adopts pets from as far away as romania and hungary . she spends # 240 a week on food , and # 17,000 a year on vet 's bills . mrs senior started taking in dogs in 1981 and currently has 19 animals .\namerica has the highest incarceration rate in the world , holding 25 % of the world 's prisoners . evan feinberg : we must change the dismal status quo with specific solutions .\nreal madrid drew 0-0 with atletico in the champions league on tuesday . players that did n't start the clash returned to training on wednesday . there was no sign of cristiano ronaldo and the rest of tuesday 's starters . real return to la liga action against malaga at the bernabeu on saturday .\nhearts have already secured promotion to the scottish top flight . robbie neilson believes it is inevitable clubs will come in for his players . he insists he will only sell them if it is the right move for the club . hearts play rangers on sunday and could help their rivals hibernian .\nmadonna posted photograph of margaret thatcher before later deleting it . 56-year-old pop star uploaded image and ` thanked ' former prime minister . she quickly deleted the post after getting barrage of abuse from gay fans .\nbetween 2004 and 2013 , number of passenger vehicle drivers aged 16 to 19 involved in u.s. fatal crashes decreased from 5,724 to 2,568 , per 100,000 . new safety features in cars and graduate licenses are among the reasons for the drop in fatalities . graduated licenses decrease crash rate in teen drivers by 20 to 40 per cent . three quarters of high school students aged 16 or older are on the road .\nframework agreement with iran over its nuclear program was reached this month . julian zelizer : white house should seek congressional approval for final deal . there 's a history of congress causing trouble for major international treaties , he says .\ndemetrious johnson retains his ufc flyweight title . the 28-year-old beat kyoji horiguchi by submission in montreal . quinton jackson beat fabio maldonado in ufc 186 co-main event . win was jackson 's first victory in the ufc since 2011 .\nanuradha koirala and 425 young women and girls have been sleeping outdoors because of aftershocks . pushpa basnet and 45 children she cares for were forced to evacuate their residence . seven other cnn heroes and their organizations now assisting in relief efforts .\nnovak djokovic beat andy murray 7-6 4-6 6-0 in miami open 2015 final . djokovic lost his cool after losing the second set to the brit in florida . world no 1 djokovic shouted at his support team next to a scared ball boy . after seeing the replay , the serbian posted an apology video on facebook . click here for all the latest news from the world of tennis .\nbefore he was slammed into by a police car , mario valencia fired a rifle with a loosened lock . he shoplifted the gun and ammo from a walmart , where a saleswoman who showed him the weapon alerted security . walmart says the lock was properly installed but police say it was loose when it was found .\nteenager 's drink was spiked during gcse lesson at hounsdown school . girl immediately given medical treatment by quick thinking teacher . tests reportedly found low concentration of substance in water bottle . headteacher says two pupils have been temporarily excluded over incident .\ndr. anthony j. moschetto allegedly had the office of another doctor torched and tried to have the doctor hurt or killed . moschetto allegedly hired an undercover cop in a failed attempt to carry out his biddings . investigators who went to moschetto 's home in long island found a secret gun room accessible through a motarized bookshelf . ` he had enough weapons to provide a small army means to wreak harm , ' said police commissioner thomas krumpter . moschetto faces a maximum sentence of eight to 25 years in prison .\nthe frozen star features on the cover of good housekeeping 's may issue , in which she also discusses her relationship with husband dax sheppard . kristen , 34 , admitted that she and dax attend regular therapy sessions together and insists it helps their marriage . the actress calls motherhood ` unmissable ' and hopes her daughters understand the ` sisterhood of frozen ' one day .\nat a size 34b , annabel cole has long dreamed of having a bigger bust . the scandfit try size bra claims to take you from a b-cup to a dd-cup . annabel decided to put ` the boob-job bra ' through its paces in three sizes .\nmark o'meara made the cut at the masters for the first time in 10 years . o'meara secured the title back in 1998 . the 58-year-old american is the third oldest man in the field in 2015 .\n` screw ' was found in a stone by ufo researchers in kaluga region , russia . the unusual object is said to be 300 million years old . some think it 's proof aliens used to live on earth or a radical civilisation . but it 's more likely to be a fossilised sea creature called a crinoid .\nblanca cousins fell to her death at hong kong 's exclusive 3 repulse bay road . briton nick cousins , 57 , and teen 's mother , grace , arrested on suspicion of ill-treating the girl . blanca and her sister did not have passports and were educated at a private tuition centre . police have said that blanca may have been ` unhappy with her life '\nstylist lily melrose has imaginative ways to update your wardrobe . uk blogger shares diy tips to take winter clothes into spring on the cheap . they include bejewelling sunglasses and fringing boots .\nwarning : graphic content . dias costa , 49 , slashed the face , arms , and necks of the four raiders . the men , armed with guns , had broken into his home in central argentina . raiders were forced to flee in getaway car and they are all in intensive care .\ndanny cipriani kicked 13 points in sale 's 23-6 victory against gloucester last saturday . cipriani has been in superb form for steve diamond 's side this season . the former wasps no 10 was called up to stuart lancaster 's england squad for the rbs 6 nations . cipriani made appearances off the bench against italy , scotland and france during the tournament .\nrosa camfield of gilbert , arizona became an internet celebrity just before her death on monday . a picture of camfield and her newborn great-granddaughter kaylee was shared thousands of times when it was posted online last week . daily mail online spoke with camfield 's family who detailed her amazing life story .\na woman found a ball deliberately covered in sharp pins at a nearby park . she thinks the balls were made to harm animals or children in the area . tegan peters used social media to warn her auckland neighbours . ` it is something i would want to be aware of so i posted it on my page ' the discovery was made in a popular dog walking park , near schools .\nsecond election after polling day is ` extremely likely ' , academics claim . professor paul whiteley of essex university predicts left wing coalition . but he said : ' i do n't see another coalition government lasting five years ' tories will finish largest party but without enough allies to form a coalition .\nlewis hamilton was fastest in both practice sessions for sunday 's race . hamilton , the world champion , is bidding to win his fourth race in china . he leads title race from sebastian vettel who won last time out in malaysia . kimi raikkonen was second fastest in the second session in shanghai . jenson button was 10th in his mclaren with fernando alonso 12th .\ned balls rules out any snp pact benefiting scotland at england 's expense . ed miliband has ruled out forming a coalition with nicola sturgeon 's party . but stopped short of dismissing deal to prop up a labour administration .\npima county sheriffs say david watson , 46 , killed his ex linda watson while they fought over custody of their daughter in 2000 . three years later , police say watson murdered his ex mother-in-law in a drive-by shooting at the very home where linda watson first vanished . marilyn cox had been fighting for visitation rights over her granddaughter - she was gunned down alongside her neighbor renee farnsworth in 2003 .\njason warnock rescued a man whose suv was dangling off the edge of a cliff . warnock : `` i do n't feel like i deserve any credit ... i just did what anyone would do ''\nin first meeting of the season between the rivals power outage delayed game 16 minutes in the 12th inning . the game lasted six hours and 49 minutes pushing past 2am on saturday east coast time and came to an end after 19 innings .\ngraeme finlay allegedly attacked ronald and june phillips on a cruise ship . came as the couple walked back to their cabin on the ship to drink cocoa . both husband and wife were knocked unconscious and severely injured . finlay denies two charges of wounding and grievous bodily harm .\nmanchester united have robin van persie back fit for sunday . the holland striker has been missing since february 21 . it is unlikely that van persie will make united 's starting xi against city . as united and city go head-to-head , we ask : just how manc is the derby ? click here for the latest manchester united news .\nvicar who went to celebrate end of lent was told his feet needed protection . he gained facebook and twitter support following the incident in ipswich . andrew dotchin , 58 , from whitton said he will continue to wear his sandals .\nglynis barber is known as beautiful half of itv 's 1980s detective duo . the actress turns 60 in a few months but looks barely a day over 40 . under the tutelage of a nutritional therapist , glynis has changed what and how she eats and transformed her health and figure . now , she has just two large meals a day , no wholegrains and she has stopped sipping water in the day .\n650 seats up for grabs on may 7 but more than half will not change hands because one party is so far ahead . electoral reform society calls result in 325 seats in england , 5 in scotland , 20 in wales and 14 in northern ireland . 70 % of seats in the east of england are considered safe but only 10 % per cent in scotland as snp makes big gains .\ntony morris qc is mounting landmark legal challenge in queensland . his blue volvo was caught doing 57km/h in a 50km/h zone last year . he says he was n't behind the wheel but wo n't the name person who was . he has invoked a spousal privilege case from 1817 . it means a husband ca n't be compelled to incriminate his wife .\nrangers were beaten by queen of the south in the scottish championship . derek lyle opened the scoring for the hosts following a first-half corner . lee wallace own goal doubled the doonhammers ' lead after the break . gavin reilly completed the upset that dents gers ' hopes of second place .\na brand apartment block with 14 flats has been built in bath city centre . residents said it was three feet higher and four feet wider than plans . council said it ` breached ' planning control and ordered it to be bulldozed . landmark developments ltd is appealing against ` unreasonable ' decision .\njake drage released after nine months in an indonesian prison . drage was jailed following a crash that killed a woman riding a motorbike . 23-year-old west australian man sang children 's songs as he was released . says one of the first things he 'll do is go surfing after getting back home .\nhodor is a character in game of thrones who only speaks a single word . expert says he may have the neurological condition expressive aphasia . this is where there is a lesion in the part of the brain that controls speech . condition usually caused by a blow to the head , stroke or a tumour .\nraheem sterling has rejected a new # 100,000-a-week deal at liverpool . chelsea , arsenal and bayern munich are interested in the 20-year-old . jose mourinho says he would sell any player who did not want to stay . brendan rodgers has confirmed that sterling will start against arsenal . kolo toure believes his team-mate should remain at anfield .\nliya kebede and toni garrn join christy as ` super role models ' scandinavian brand lindex launches in the uk with westfield store . money from #superrolemodel t-shirts will go to mum and child charities .\nzulkifli bin hir was killed during a raid in january in the philippines . was a member of the al qaeda-linked jemaah islamiah militant group . bin hir thought to be behind numerous bombing attacks in the philippines . he trained as an engineer in united states and there was a $ 5m reward . no longer appears on the most wanted terrorist list on the fbi 's website .\nrory mcilroy was a guest at a nike-sponsored junior event in the us . world no 1 agreed to arm-wrestle 17-year-old player brad dalke . teen dalke demolished mcilroy , who admitted he had ` no chance ' dalke verbally agreed to join oklahoma university when he was 12 .\nunderneath the polished manners lies a history of violence and rebellion . new book ` the old boys ' by education expert offers fresh look at schools . at winchester in 1818 a headmaster held hostage by axe-wielding boys . david cameron is an old etonian , as too is oscar winner eddie redmayne .\nqueensland teen was born a girl but wears a boy 's school uniform . he has lived in misery for years and has even contemplated suicide . a brisbane court was told ' i have the mentality of a dude ' . teens must be 16 years old before they can ask for hormone jabs . the injections are the second stage of gender changing treatment . a child is assessed by at least five doctors before treatment is given .\nwomen have been writing love letters to ivan milat for years , book reveals . ` why they write to me is a puzzle , ' milat says . some letters are from a woman he was acquitted of raping at knife-point . milat brutally murdered seven backpackers between 1989 and 1992 . he is serving seven consecutive life sentences at goulburn supermax jail . he writes up to twice a week to his eldest nephew , alistair shipsey . shipsey has used 94 of milat 's letters in a new book about the killer .\nship owned by king kamehameha ii , the second king of hawaii , sank off the coast of kauai in april 1824 . shipwreck chaser richard rogers excavated site between 1995 and 2001 . retrieved a boat whistle , a ring , utensils and a trumpet shell . collection had been kept at the smithsonian . has been delivered to kauai museum and will go on display later this year .\ngorilla leaps toward exhibit window and hits it , sending family running . zoo says patrons were never in danger .\nhomosexuality is illegal in iran . denizli , turkey , is host to hundreds of gays and lesbians from iran . photographer laurence rasti traveled to turkey to explore her fascination with identity issues .\nalex pritchard puts brentford ahead with stunning curling shot . brentford dominate but fail to take chances to add second goal . darren bent pokes home from close range in 92nd minute .\n160,000 people made same journey last year often on overcrowded vessels . nine bodies recovered after boat carrying 150 people capsized near libya . number of migrants dying in the mediterranean has increased ten-fold .\nglenna kohl was a rhode island college student in 2005 when she was diagnosed with stage iii melanoma . kohl had been a devotee to both indoor and outdoor tanning since she was a high school student and life guard in massachusetts . three years after her shocking diagnosis , kohl died . now her family is on a mission to educate young people about the dangers of tanning .\nworld news tonight evening newscast has officially overtaken underfire rival nbc 's nightly news in the ratings war . nbc 's 288 consecutive week winning run had stetched back to september 2009 and the drop comes two months after brian williams ' suspension . an nbc spokesperson said the network was ` pleased ' with substitute anchor lester holt 's ` strong performance ' switch also follows a change in how the numbers are crunched and nbc is now prevented from including repeat numbers from overnight replays .\nit has long been known that earth is constantly oscillating and ` humming ' earthquakes cause a certain level of hum , but a study claims different sized ocean waves also contribute to earth 's oscillations . as water collides , it creates weak microseismic waves that cause a hum . stronger seismic waves then occurs when water travels along the floor .\nextraordinary footage taken by driver on business trip to indiana . the driver describes how the situation is ` totally crazy ' as he films . he was talking to his son on the phone at the time , so tried to sound calm .\ngold coast training queen ashy bines has apologised to her ` very upset followers ' after error . in an email on saturday , she mistakenly wrote that a new exclusive program cost $ us49 ,500 per year . the real cost of the program was actually a tenth of that , or $ us4 ,950.00 , according to ms bines . the exclusive , year-long program has now sold out , a spokeswoman told daily mail australia .\ngulnaz was jailed after the attack as her rapist was married . her case gained international attention ; prompted a presidential pardon . she was forced to marry her attacker or face disgrace .\nlisa heath , 45 , quizzed by police after colleague saw white powder in bag . assistant at willowtown primary school initially said drugs were n't hers . but later changed her story and accepted a caution for possession .\nthird man charged after terror raids in melbourne at the weekend . the 18-year-old man will front melbourne magistrates ' court on tuesday . earlier sickening details emerged about the planned anzac day terror plot . the men had planned to run down a police officer and kill him with a knife . they then intended to go on a shooting rampage with his gun . it eerily mirrors the death of british soldier lee rigby in 2013 . he was run down and then butchered with a meat cleaver . swords and knifes were found in the teen 's houses .\njose mourinho has spoken about his first meeting with sir alex ferguson . mourinho 's porto beat manchester united in the 2004 champions league . the portuguese says fergie 's respect in defeat has influenced him . mourinho : i have a problem , i am getting better and better . read : mourinho sides with arsene wenger in ballon d'or opposition .\nukip leader blames former scottish first minister for fuelling resentment . claims successor nicola sturgeon has done nothing to stop it . farage dismissed labour claim that ukip is infected with ` virus of racism '\ntons of dead fish are being cleared from a stinking lagoon in rio de janeiro , brazil , which will host olympic events . rotting silver fish have filled rodrigo de freitas lake where rowing and canoeing events should take place next year . there is an overwhelming stench and authorities and biologists have argued about about the cause of the deaths .\nnew report says 41 million metric tonnes of electronic waste worth a staggering # 34billion was discarded in 2014 . countries illegally export ` millions of tonnes ' of e-waste annually to african nations like ghana , campaigners say . shocking photographs from its capital accra show thousands of discarded appliances in huge , filthy landfill sites . some contain toxic materials like lead and mercury which damage environment and people sifting through them .\nkate upton , 22 , is considered to have one of the best figures in the world . supermodel keeps herself trim on a very strict diet and exercise regime . she avoids alcohol , only eats certain fruits and has five smalls meals a day .\nthe woman holds out a banana , which the monkey quickly snatches . monkey then approaches the camera and sniffs it to see if it is food . woman gets too close to protective monkey and it slaps her gopro . the footage was captured by a couple in thai town of kanchanaburi .\ncold-blooded jihadis drove to a mosque in the remote village of kwajafa . disguised killers told locals there were there to teach them about islam . once a crowd had gathered , the militants opened fire with assault rifles . they then set about setting fire to houses filled with unsuspecting families .\nvall d'hebron hospital in barcelona claims it has carried out a world-first . reconstructed a man 's lower face and neck in a 27-hour-long operation . he had facial deformities , speech and vision problems and risk of bleeding . team of 45 medical staff carried out the procedure in february .\nchris byrnarsky was shot and killed in his custom detail shop in 2006 . his friend finished the bumper brynarsky was working on and wrote an inscription on the inside of it before putting it back on the car . brynarsky 's father john was working on a car in his body shop when he removed the bumper and found a message dedicated to his fallen son .\napril 23 marks 10 years since first video , `` me at the zoo , '' was uploaded to youtube . site gets billions of views every day ; 300 hours of uploads every minute . new studios being opened for budget filmmakers to improve quality of output .\nizaak gillen of oregon was taken to randall children 's hospital on april 6 with the injury and was pronounced dead the following day . detectives said he was at the babysitter 's house when he had skull fracture . medical examiner determined child 's manner of death was a homicide . parents justin and stacy gillen said they are deeply saddened by the loss . no arrests have been made and investigators are still looking into incident .\nryan mason celebrated england 's equaliser against italy on tuesday night . the senior england debutant 's tattoo took centre stage on social media . one twitter user likened it to himself at age 12 and got 20,000 retweets .\ncryos international is moving from new york to lab complex in orlando . located near university of central florida , one of the largest u.s. colleges . spokesman said move would help tap into ` abundant donor opportunities ' ucf has undergraduate intake of 52,000 a year , 23,000 of whom are male .\nexotic mosquitoes were discovered at brisbane international airport . authorities have been forced to stepped up bio security measures . all planes coming from south east asia are now being fumigated . exotic mosquitoes were detected in february this year at brisbane , adelaide and perth airports . barnaby joyce said there have been no more detected after biosecurity was amped up .\ngloria borger : hillary clinton 's team is doing all it can to make her appear relatable to ordinary people . she asks if the most famous woman in the world can really connect with ordinary voters ?\nthousands were left stranded at central london station during rush hour . crucial section of track between wimbledon and surbiton was closed . south west trains warned passengers of cancellations on all services . network rail said staff were working ` flat out ' to fix the situation .\nzach yonzon runs the bunny baker cafe with his wife in manila . artist uses a spoon and a barbecue skewer dipped in chocolate . creates incredibly detailed portraits at the request of customers . service started out as novelty when owner began etching rabbits . artistic barista hopes to one day be able to create 3d caricatures .\na man dressed as the cookie monster in times square was arrested . ranulfo perez was accused of aggressively hugging a 16-year-old girl and then ` forcibly ' touching her breasts outside a toys r us store . but he was released and police said they would not be prosecuting because they could not be sure teenager had identified correct man . perez protested his innocence and said it ` could have been anyone ' .\ncute but clumsy elephant calf was following his mother though the bush . suddenly the youngster appeared to catch his foot and his lose balance . fell over and landed - trunk first - down in the mud at idube game reserve .\nkieron power took photographs of police vehicles parked in a bus stand . delivery driver 's wife was given a ticket for doing the same a week earlier . on the drive home , mr power was pulled over under anti-terror laws . he was questioned and ordered to delete the photos - but he refused .\nofficials spoke about the devastating single-vehicle crash in august for the first time last week . current fbi director james comey and vermont senator patrick leahy say freeh severed a major artery in the crash . paramedics and an fbi agent at the scene were able to stop the bleeding - saving freeh 's life . freeh was the director of the fbi from 1993 until 2003 .\nwould-be immigrants come from more than 20 countries to north africa to cross mediterranean to europe . they risk their lives crossing deserts and mountains ; many are robbed or cheated as they try to reach the libyan coast .\nwhile republican gov. asa hutchinson was weighing an arkansas religious freedom bill , walmart voiced its opposition . walmart and other high-profile businesses are showing their support for gay and lesbian rights . their stance puts them in conflict with socially conservative republicans , traditionally seen as allies .\nthere is something about pope francis that 's reawakened her faith , say cnn 's carol costello . meeting cardinal gerald lacroix of quebec showed how the pope is putting people in place to carry out his new vision , costello writes .\nmillwall won their relegation six-pointer with 2-0 victory over wigan . latics substitute martyn waghorn was sent off for senseless kick . nadjim abdou scored the opening goal for the lions on 74minutes . visitors were reduced to nine-men when james pearson was sent off for fighting along with millwall 's ed upson . another substitute magaye gueye sealed victory with an injury time strike .\nla judge reduced bail from $ 25 million to $ 10 million for rap producer . on thursday morning , knight walked out of court after the hearing . authorities contend knight intentionally hit the men , killing terry carter , 55 , and seriously injuring cle ` bone ' sloan . knight , 49 , was a key player in the gangster rap scene that flourished in the 1990s , and his label once listed dr dre , tupac shakur and snoop dogg .\nflower shops in jeff davis county say they want religious freedom bill . employees say they would deny service to gay people even if it 's illegal . georgia legislature ended session this week without considering bill . pizzeria in indiana bombarded with calls after refusing gay wedding .\nprime minister reveals 11-year-old daughter 's withering comparison . phil dunphy is the hapless father loved for his bizarre pearls of wisdom . nancy threatens a no. 10 memoir including how she was left in a pub .\none in five people have never seen a hedgehog in their back gardens . only a quarter of those who do admitted seeing the animals frequently . wildlife survey suggested the small british mammal is in huge decline . there are thought to be less than 1 million hedgehogs in the country .\nraymond billam defrauded the department of work and pensions . 40-year-old claimed he had severe problems with his knees and back . secretly filmed running and jumping as he played football for his pub team . given a suspended prison sentence and ordered to complete unpaid work .\nimage shows two men praying at half-time during fa cup clash . how would the management have reacted if some devout catholics had decided to stage a holy communion at half-time ? muslim fans could start demanding special prayer rooms at stadiums .\nman was allegedly bent over couch and sodomized during gruesome initiation ritual at waxahachie , texas , volunteer fire department . the five firefighters apparently ` yelled with excitement ' during the january 20 incident and switched from broom to sausage . fire chiefs thought to have told victim not to tell about sexual assault . assistant fire chief said to have chuckled , said ` this is funny s *** ' alleged victim vomited in the bathroom and his would-be colleagues stole his clothes .\nnolito scores opener after just nine minutes to put his side in unlikely lead . toni kroos cancels out nolito 's strike before javier hernandez nets goal . santi mina then makes it 2-2 with close-range finish past iker casillas . james rodriguez puts side in lead before hernandez 's second of the night . real madrid xi : casillas , carvajal , varane , ramos , marcelo , kroos , illarramendi , isco , rodriguez , hernandez , ronaldo . celta vigo xi : sergio , hugo mallo , cabral , fontas , jonny , augusto , krohn-dehli , orellana , santi mina , nolito , larrivey . cristiano ronaldo scored a hat-trick in reverse match at the bernabeu . real progressed to semi-finals of the champions league on wednesday .\ncharlotte li started taking selfies after feeling ` unhealthy ' after christmas . helped motivate her to see her body becoming toned . launched healthy selfie with husband joe who also saw results .\nprincess beatrice was hard at work opening a classroom in staffordshire . visit was her second official engagement in less than four days . on friday , she opened a memorial garden at reading school in berkshire . but visits come shortly after another round of international travel . last week , beatrice was at the bahrain grand prix with her boyfriend . then jetted off to italy for a glamorous fashion event in florence .\nracing fans dressed in their finest outfits have arrived for ladies ' day at the aintree racecourse in liverpool . the event is one of the most hotly anticipated of the racing calendar in what is a.p mccoy 's final festival . 45,000 spectators are believed to have arrived through the gates at aintree for the day 's racing . sam twiston-davies rode saphir du rheu to win the betfred mildmay novices ' chase with ease . click here for our grand national 2015 sweepstake kit .\ncaroline irby , 64 , was charged with 10 counts of animal cruelty monday . almost 100 dogs were found locked up inside a windowless barn on her property in manchester , tennessee , without food or water . they were emaciated and ` living in several inches of their own waste ' 10 other dogs were found dead stacked in a wheelbarrow . rescue workers moved them to a shelter in lebanon , tennessee .\nthe 44-year-old has tied the knot with alice arnold in chiswick , london . the pair did not have a ceremony , nor did they invite any guests . balding made clear her intentions to marry once gay marriage was legal .\nthe reporter announced early march he would take time off due to tumour . he made a brief return last night with his voice still recovering its strength . mr robinson 's voice sounded weak and strained following his treatment . the bbc political editor said he hoped to be back full-time ` fairly soon '\nkent sprouse , 42 , died of a lethal injection thursday in texas . it took 22 minutes for sprouse to die after being injected . in 2002 he gunned down ferris police officer marty steinfeldt , 28 , at a gas station outside of dallas and a customer , pedro moreno , 38 . sprouse was high on meth , but his insanity defense was rejected and he was sentenced to death in 2004 . ' i would like to apologize to the moreno family and the steinfeldt family for all of the trouble i have caused them , ' said sprouse in his final statement .\nana figueroa , mother of nicholas figueroa , 23 , set up memorial to her son who died in the march 26 explosion on new york city 's second avenue . blast , which killed two , thought to be the result of illegal gas tapping . the grieving mother said that neither the landlord of the demolished buildings , mayor bill de blasio nor con edison have contacted her . family has built memorial , plans to push for small park in memory of son .\ncarlton cole and nathaniel clyne attend fundraising reception . shaun wright-phillips and matt phillips also in attendance on sunday . the event was held in knightsbridge in london 's west end . event was a reception for football fighting ebola charity .\nindonesia has advised foreign consular officials to travel to indonesia 's `` execution island '' the 10 death row inmates being held have had their legal bids rejected . they include australian `` bali nine '' members andrew chan and myuran sukumaran .\ngreek government has unveiled its final calculation for the war reparations . radical left syriza party says germany owes greece nearly 279billion euros . the german government claims the issue was resolved legally years ago . it comes days before greece is obliged to pay off 450million euros of debt .\nfor the first time in 75 years the california department of water resources has found no snow during its survey of the sierra nevada in early april . nasa images showing the snowpack across the tuolumne river basin show a marked decrease since last april . california depends on the snow to melt into rivers and replenish reservoirs . gov. brown ordered sweeping , unprecedented measures to save water in the state on wednesday . cemeteries , golf courses and business headquarters must significantly cut back on watering the large landscapes . the governor 's order contains no water reduction target for farmers . initiatives are part of the goal to reduce water use by 25 percent compared to levels in 2013 .\ncassandra fortin , 17 , wanted to decline chemotherapy for her cancer . connecticut supreme court ruled that ms fortin must undergo treatment . the teenager complained that she had been ` treated like an animal ' . she said the hospital refused to allow her mother to visit her .\naustralian media personality deborah hutton , 53 , releases new cookbook . ` my love affair with food ' is a compilation of her favourite recipes . hutton says it is not a health or diet cookbook , just good food . she shares three recipes from the book with daily mail australia .\nrevellers took part in outdoor parades and morris dancing to celebrate st george 's day across the country . temperatures soared to 20.9 c in north yorkshire but forecasters warned colder , wetter weather was on the way . from tomorrow the weather will return to what is normal for this time of year with clouds and highs of around 12c .\nletourneau fualaau had a sexual relationship with her student . he was 13 when they began the relationship in 1996 . in may , they will celebrate their 10th wedding anniversary .\nnational front-leader named as one of time 's 100 most influential . marine le pen said it shows her ` brand of politics ' is getting attention . le pen , 46 , has tried to rid party of its extreme right-wing past .\ntour guide gets down in the dirt to attract a mob of emus in the outback . the flightless birds are able to reach running speeds of 70 kms/hr . the manoeuvre is thought to be an old aboriginal technique to catch emus .\nteam sky have never won one of cycling 's five monument races . the tour of flanders takes place next weekend with ian stannard and geraint thomas contenders fro team sky . sean kelly has backed them to finally break their duck .\nmiliband overtakes david cameron as the most popular political leader . it is the first time that labour leader has been ahead in approval ratings . labour party has also taken a commanding four point lead over the tories .\ngyllenhaal lost 30lbs for thriller nightcrawler then gained it all back - and put on 15 more pounds of pure muscle in six months . went to the gym twice a day for six hours . regime included 2,000 situps , three hours of boxing and three hours of cardio and weight training . mimics great hollywood physique changes like matthew mcconaughey going from magic mike hunk to dallas buyers club aids patient .\ndeputy pm said he would block a new coalition deal over welfare cuts . he pledged to force david cameron to impose new taxes on the wealthy . the liberal democrats have called for # 3bn of new welfare savings . coalition has slashed # 20bn off the benefits bill in five years since 2010 . mr clegg said tories now ` lashing out ' because they know they are losing . asked if he was proud of his record in power , he said : ` hell yes '\nthousands of newcastle fans chose to boycott the tottenham game . protests took place outside the stadium with posters and banners . the supporters are angry at mike ashley 's way of running the club . sunderland fans fly a banner to mock newcastle after the recent derby . click here for all the latest newcastle news .\ngerard t. ouimette , 75 , known as ` the frenchman , ' died in medium security federal pen in his sleep . former mob enforcer had ties to new england crime boss raymond l.s. patriarca and was suspected of a role in as many as eight murders . even behind bars , police say ouimette kept his influence - accepting a weekly delivery of as much as $ 600 worth of booze and food to his cell .\nray hinton was convicted of two brutal 1985 killings based on a gun that was found at his house . the us supreme court granted him a new trial because the gun was never definitively matched to the bullets found at the crime scenes . this week , prosecutors announced that they could not find evidence that the gun hinton had matched the bullets at the scene . ' i should n't have sat on death row for 30 years . all they had to do was test the gun , ' he said friday . family of one of the murdered men issued reminder that hinton has not been found ` innocent ' .\nformer edl organiser gary field was spotted at a ukip event in kent . mr field was tagged after he was convicted in 2013 for an assault . one labour canvasser said that mr field sprayed her with deodorant . mr field said he did spray her but claimed the incident was just ` banter ' .\ndiane james described her admiration for putin during radio debate . party 's justice spokesman russian president is a ` very strong leader ' . comments came as campaign chief says party members are ` chauvinistic ' .\nreading lost 2-1 to arsenal in fa cup semi-final at wembley on saturday . royals no 1 adam federici made a horror mistake for second goal . manager steve clarke insists his players will rally around the australian .\njordan spieth sent several records tumbling on his way to augusta glory . jack nicklaus praised the 21-year-old 's ` incredible performance ' he backed spieth and rory mcilroy to ` carry the mantle ' for golf . meet golf 's brightest young star : jordan spieth . read : why it wo n't be too long until mcilroy wins the masters .\nrangers held to a 1-1 draw by bottom side livingston on wednesday . the draw means rangers have won just one of last five away matches . the point was still enough for rangers to move second above hibs . rangers face dumbarton away from home on saturday .\ntaliban spokesman claims 80 per cent of afghanistan is ` controlled by the taliban . us bagram air base was hit by a rocket but no casualties have been reported . afghan security forces are struggling to cope with the new offensive across afghanistan .\nucla study found the pill shrinks two parts of the brain linked to emotion . synthetic hormones found in the contraceptive are thought to be to blame . believe it could account for increased anxiety and depressive episodes .\nsven bender says borussia dortmund need to start scoring more goals . dortmund have been disappointing this season and are currently tenth . jurgen klopp 's men have scored 34 goals in 27 games in the bundesliga .\n1 pierrepont plaza also houses morgan stanley and the federal prosecutor 's office . hillary 's campaign will occupy two full floors in the brooklyn heights neighborhood . upscale hipster neighborhood includes urban outfitters , banana republic , shake shack and a private squash club . ' i guess we can expect all the clinton campaign t-shirts to have ironic slogans , right ? ' said a gop senate staffer . campaign has just 15 days to declare itself in the white house hunt after taking a formal step like committing to office space .\nimam abdul hadi arwani called to a building job in the area he was killed . possible client appeared to back off when arwani arrived with his son . anti-assad activist found in the area days later , victim of a professional hit . police look at personal and financial ties as possible motivation for killing .\nscientists suggest that prehistoric human cousins used herbs like yarrow and camomile to improve the taste of their food around 50,000 years ago . chimps in uganda also eat plants with their meat in a way that is thought to flavour their food so researchers believe neanderthals also did the same . it build recent discoveries that suggest they also ate barley , olives and nuts . the findings transform the view of neanderthals as unsophisticated brutes .\nmost victims of the disaster were high school students . president park geun-hye promised to ` actively consider ' raising it . officials said it would cost # 68million if weather conditions are good . sewol 's captain was jailed for 36 years for gross negligence last year .\nmotorist tried to overtake the lorry on a39 between street and glastonbury . it had been stuck behind 22-tonne hgv for several miles after motorway . driver misjudged gap as road narrowed and lost control of car at 50mph . nick townley , 49 , who was driving lorry , captured moment on dash cam .\nhat-trick in the prestigious london press club awards is unprecedented . judges said a rare feat was ` fully deserved ' and praised all-round quality . front page which revealed truth about feminist t-shirts worn by ed miliband and harriet harman earned a nomination for scoop of the year . literary critic craig brown was nominated as arts reviewer of the year .\nhe released the video flaunting his wealth to 5 million instagram followers . it shows mayweather sitting in his las vegas mansion counting his money . rap song blares over the footage saying : ` big crib , ten cars , twenty acres ' boxer expected to get # 120million for fight with manny pacquiao on may 2 .\nsevere storms swept north and central texas sunday evening . at least five tornadoes were spotted - some as close as just 25 miles from fort worth . baseball size hail and high winds also battered the region .\nlawyers for dave lee travis say he was ` financially devastated ' by trials . former presenter , 69 , will be given more than # 4,000 to pay for taxi fares . travis was also awarded # 630 to pay for hotel costs while he was on trial . he was convicted of indecently assaulting a woman behind the scenes of the mrs merton show and was handed a suspended sentence last year .\naston villa face liverpool in their fa cup at wembley on sunday . the winners will either face reading or arsenal from the other semi-final . fa cup final will take place at wembley on may 30 .\npurvi patel , 33 , purchased two abortion pills online from hong kong . she gave birth at her home in granger , indiana in july 2013 . forensic pathologists claimed the child was still alive when it was born . prosecutors urged judge elizabeth hurley to hand down a 40 year jail term .\nman united will pay their staff at least # 7.85 an hour from july . premier league clubs will pay their staff living wage from next season . chelsea became the first professional club to enforce new ruling . manchester city are also committed to paying living wage .\n`` when a man loves a woman '' singer percy sledge dies at 73 . sledge died tuesday morning in baton rouge , louisiana . `` when a man loves a woman '' is cornerstone of soul music , much covered and much played .\npupils used instagram to share tiffany jackson 's police mugshot . authorities at highland oaks middle school then suspended three pupils . they said sharing image was an ` inappropriate use of electronic media ' but angry parent of suspended pupil said mugshot was already public .\njake shaw , 21 , died after falling 25ft from upper floor of the scout centre . he was in a ` very drunk state ' after playing drinking games before he died . believed to have lost balance as he tried to open window and toppled out . coroner has ruled that the gap year graduate 's death was an accident .\nelliot daly was in fine form at outside centre for wasps in march . daly , 22 , has not yet been capped by england . wasps head coach dai young says england must pick him for world cup .\nhigh court throws out rules introduced to stop violent prisoners escaping . policy introduced after armed robber nicknamed ` skull cracker ' absconded . michael wheatley walked out of standford hill prison while on day release . he was serving 13 life sentences but escaped and went on the run in may .\nthe nuvaring is one of the most popular birth control products on the market . lawsuit cites `` a heightened risk of blood clots associated with the use of nuvaring '' maker : `` there is substantial evidence to support the safety and efficacy of nuvaring ''\npolice went to a home on march 26 in balch springs , texas , to do a welfare check and were told by residents that a two-year-old child had died . neighbor told daily mail online that a woman at the home claimed that five children at the home ` were off the streets of mexico ' .\nin the first three months of the year , 434,775 waited longer than four hours . over the past year , more than 1.4 m forced to wait longer than target time . a&e waiting times have soared to their worst level in more than 10 years . it 's now 89 weeks since a&e s met their waiting targets , figures show .\nmost of the planets we know about are around 10-100 times closer . ogle-2014-blg-0124 was spotted due to its ` microlensing ' effect . similar finds could help reveal the distribution of planets in the milky way .\nthe training materials are a result of a 2013 ruling declaring `` stop , question and frisk '' unconstitutional . they read that racial profiling `` is offensive . ... it diverts us from catching real criminals ''\ntate ricks was reportedly fishing with his grandmother 's boyfriend in florida when boat was hit by wake in st johns river on saturday . the unidentified man tried to rescue the boy but was unable to , police said . the man made it to shore but ricks did not following the incident . incident is being investigated as boating accident ; no foul play suspected .\nthe ecb are creating a new director of cricket role as part of a restructure after the departure of england 's managing director paul downton . however , they have released very few details as to the job description . jonathan trott is back in the england set-up following treatment from leading sports psychiatrist steve peters . chelsea manager jose mourinho is fronting a new promotional deal with car manufacturers jaguar . legendary jockey ap mccoy , is set to retire from racing on saturday .\nscientists in california described how to create artificial auroras on earth . they said a particle accelerator could be sent 185 miles up into space . it would then fire high-energy beams back at earth 's atmosphere . this would create auroras to study - and even types of lightning .\naustralian woman felt a wheeze and took a breath on her uncapped inhaler . felt a scratch on her throat and began coughing up blood and wheezing . in hospital scans showed the earring was stuck in her right bronchus . it was removed and experts warned leaving caps off inhalers is dangerous .\n` we need to send very clear leadership from the white house ... ' christie said . ` and the states should not be permitted to sell it and profit from it ' rubio said : ' i think we need to enforce our federal laws ' ' i do n't believe we should be in the business of legalizing additional intoxicants in this country , ' he added - it sends a bad message to youth . he also defended his framing of hillary clinton as past her prime and said he was knocking her ` ideas , ' not her age .\nvít jedlicka researched unclaimed land in europe to launch a ` new ' nation . czech politician named country ` liberland ' - saying citizens will decide tax and laws themselves and there will be minimal government involvement . tiny ` country ' lies on the banks of the danube and has only one citizen . but legal experts believe the area is likely to already by part of serbia .\nlib dems move level with ukip for first time since 2013 , according to poll . survey shows conservatives ' lead has slipped slightly but are still in front . tories on 34 per cent and labour at 33 per cent with less than month to go . nick clegg 's lib dems are up three points to 12 per cent , equal with ukip .\nnauseating footage captured on phone and uploaded to youtube in the us . teacher tries to give lesson by showing effect of an axe on a cinder block , but misjudges swing , bringing tool directly into fellow teacher 's groin . the victim appears to be ok and stands up and dusts himself off moments after being hit .\njessica mejia , 20 , died when her drunk ex-boyfriend smashed their car into a pole in cook county , illinois in december 2009 . sheriff 's deputies improperly undressed the young woman 's body at the scene and took photographs of her , according to her mother 's lawsuit . but the sheriff 's office says it was necessary to take the photographs in order to preserve evidence that ultimately put the ex-boyfriend behind bars . the case goes to trial next week .\na court in cairo has sentenced the former leader over abuses of protesters . but he was cleared of charges that would have seen him face death penalty . 14 others convicted on same charges with most also sentenced to 20 years . defence lawyers said they would launch an appeal against the convictions .\nbelinda earl was parachuted in to turn round the retailer 's sales slump . today m&s said sales were up 0.7 % - the first time in almost four years . food sales also up after retailer enjoys record valentine 's day sales . glitches with its expensive website also fixed with sales up 13 % . m&s shares up 20p this morning - first time above # 5.50 since 2007 .\nbecky schoenig of st. louis , missouri was shocked when she realized her brand new 2015 ford fusion had been stolen from her driveway monday . she was even more shocked however when it was located and returned to her with new red rims and detailing . she took to facebook after getting the car back , writing ; ' i want to thank the car thieves for pimping out my vehicle for me ... . this b *** h is pimpin now !!! ' .\ndave brockie , 50 , was found dead on march 23 , 2014 , at his richmond , virginia home . medical examiner ruled brockie died of accidental acute heroin toxicity . his father , william brockie filed lawsuit against band seeking $ 1million in compensatory damages on top of unspecified punitive damages . suit alleges bandmates stole his remains , guitars , artwork and a gold record . when mr brockie demanded to have his son 's ashes back , gwar members allegedly gave him a small portion in a used plastic bag .\nmario suarez and marcelo will both be suspended for next week 's champions league quarter-final second leg . atletico madrid and real madrid played out a 0-0 draw on tuesday night . suarez wants a ` better referee ' for the return leg at the bernabeu . dani carvajal could face punishment for punching mario mandzukic .\ntracey taylor was distraught following breakdown of 20 year relationship . she had earlier burst into love-rival 's home and attacker her and her ex . two days later she broke into the property and trashed the lounge . couple have two daughters aged 12 and four , and a son aged 15 together .\nthere are 462 trails of 5,055 prints on a vertical limestone slab in bolivia . rock was pushed upwards by tectonic movement , standing 390 feet tall . site 's thought to be the largest dinosaur trackway in the world and includes footprints made by numerous species and baby dinosaurs such as t.rex . attraction is prone to landslide and is said to be under threat from humans .\nas california struggles with a devastating drought , huge amounts of water are mysteriously vanishing from the sacramento-san joaquin delta . the prime suspects are farmers whose families have tilled fertile soil there for generations . delta farmers say they 're not stealing it because their history of living at the water 's edge gives them that right . california 's water rights system has historically given senior water rights holders the ability to use as much water as they need , even in drought . gov. jerry brown has said that if drought continues this system built into california 's legal framework could be changed .\nwhile visiting oklahoma city , bill clinton said ` i 'm proud of her ' , in reference to hillary clinton 's presidential bid . this is the first comment he 's made about his wife 's campaign . bill clinton was in oklahoma city to mark the 20th anniversary of the bombing that 168 people including 19 toddlers in federal building . hillary clinton kicked off her campaign in iowa last week and will move on to new hampshire on monday .\nleonard keysor , 30 , was a bomb thrower during world war i at gallipoli . he would catch or pick up live grenades and throw them back at the enemy . for his heroic effort , lance corporal keysor was awarded a victoria cross . the victoria cross is the highest military honour an australian can receive . he spent 48 hours throwing ` hundreds ' of bombs back at the turkish army .\nhardy was convicted of domestic abuse against ex-girlfriend nicki holder and was suspended from the dallas cowboys for 10 days by the nfl . charges were eventually dropped after holder could not be located when hardy 's lawyers appealed the decision and asked for a jury trial . this week he got stuck in his bentley in deep flash flood waters in dallas . hardy was forced to abandon his car and it was towed away hours later .\njuventus want psg 's edinson cavani according to corriere dello sport . the italian newspaper claim that cavani would partner carlos tevez . manchester united are also interested in the uruguayan striker . cavani 's agent has talked up a move to england or spain this summer . read : manchester united consider cavani transfer .\nking felipe was making his first appearance since the claims emerged . new book alleges his father had a 10-year affair with a german socialite . corinna zu sayn-wittgenstein claims juan-carlos wanted to marry her . felipe , 47 , was joined by wife letizia , 42 , at university of alcala de henares .\nmanchester city will make a concerted effort to sign english players . raheem sterling , ross barkley and jay rodriguez are all on the wanted list . city chiefs are concerned about lack of homegrown players at senior level . frank lampard will leave in summer and james milner 's future is uncertain .\nan unknown internet source has recreated the ad with curvy alternatives . dove has denied being responsible for the poster , which carries their logo . the image is currently circulating on social media spoofing the original . plus-sized fashion label simply be also created its own poster .\nshailene woodley colours her lips with roasted beetroot . blake applies mayonnaise to the ends of her hair when she showers . kate moss submerges her face in cucumber water .\npremier league champions unveil 64m mural at academy stadium . design was inspired by children and created by artists to show positive influences of football in line with charitable programme cityzens giving . captain vincent kompany was privileged to be part of the street party . click here for all the latest man city news .\nangel di maria and marcos rojo dine out together in manchester . manchester city stars martin demichelis and pablo zabaleta also attend . united 's spanish goalkeeper victor valdes joined the argentine contingent . premier league stars enjoyed meal at italian restaurant san carlo .\nretired col. perry clawson pitched up outside shamed zeta beta tau frat . university of florida chapter in gainesville accused of abusing veterans . witnesses say they spat at wounded vets at panama city beach retreat . zeta beta tau chapter suspended and three members expelled . clawson said the frat ` p ***** d off ' the entire military community .\nthe three-metre oarfish washed up on a salt marsh on the otago harbour . the deep sea creature swims vertically and eats sections of its own tail . its frightening appearance has seen people mistake it for a sea-serpent . tissue samples of the fish were sent to see otago museum for testing .\nphilippe coutinho was man of the match in liverpool 's win over blackburn . alex baptiste was superb in defence for the hosts at ewood park . daniel sturridge continued to show a lack of match sharpness .\nwojciech szczesny to play in goal during arsenal 's fa cup semi-final . the poland international lost the no 1 spot to new signing david ospina . szczesny could leave the club if another keeper is bought by wenger . click here for all the latest arsenal news .\nukip launches its ` policies for women ' to address gender divide . 15 % of men planning to back ukip , compared to only 10 % of women voters . mep patrick o'flynn says party still resorts to ` boorishness or chauvinism '\nphoebe jo chapman turned herself in tuesday in valdosta , georgia . charged with having sex with three male students . she resigned from the school as the investigation progressed . also had relations with another teacher .\nthe body of a baby girl was found inside a plastic bag in a trash can outside the delta gamma theta at muskingum university last week . an autopsy has now revealed that the baby was born alive and was nearly full term but died from asphyxiation . the child 's mother , whose name has not been released , has spoken with police but has not been charged .\nmore than 250 fascinating and eclectic items - with estimated values of # 500 to # 30,000 - will go under the hammer . christie 's has curated the collection , which is filled with historic artefacts , pricey art and travel souvenirs . other items include a maori hei tiki pendant , a model of a british airways concorde and a section of elephant tusk .\nstephen curry 's 40 points included a 3-pointer in the final seconds . curry 's performance propelled golden state warriors to 123-119 win . golden state now lead their first round play-off series 3-0 .\ndylan miller is a senior at juniata college in huntingdon , pennsylvania . he 's been living in a hut deep in the woods a half-hour walk from campus since september . he has no plumbing or electricity in the hut and studies by lantern . he hopes living in the hut will help him better understand henry david thoreau and ralph waldo emerson .\natlanta hawks beat brooklyn nets 131-99 on saturday night . win was 57th of the season for eastern conference leaders . hawks ' paul millsap suffers a shoulder injury in first half . boston celtics beat toronto raptors in overtime to boost play-off hopes . west leaders golden state warriors see off dallas mavericks 123-110 .\nthe death of a toddler two weeks ago is being treated as suspicious . police issued crime scene warrant on the property in neilrex , nsw on wed . detective whiteside said that due to inquiries it is regarded as suspicious . the 20-month-old was rushed to hospital after struggling to breathe . police believe that members of the neilrex community have information .\ncolin cromie hired his stepson 's girlfriend xara grogan as a dental nurse . he flirted with the 29-year-old , shared sexist jokes and tried to kiss her . when she turned him down he became ` hostile ' and forced her out of job . miss grogan won claim for constructive dismissal and sexual harassment .\nhistorian dr mary ann lund believes richard iii used good tailoring and clever armour to hide the scoliosis in his spine that curved to the right . she argues his condition only emerged when he was stripped after death . scientists who examined richard iii 's skeleton say the king was far from being the hunchback portrayed by william shakespeare in his plays . dr lund says the king 's name was probably blackened after death in battle .\ncyle larin set orlando city on their way to earning all three points . larin scored his first professional goal in the first half at providence park . brazilian kaka wrapped up the win when he scored a late penalty . second away win of the season sends orlando city third in the league .\nmisao okawa , the world 's oldest person dies at the age of 117 . she passed away on wednesday morning in japan .\nlidia quilligana was arrested in danbury , connecticut after police viewed a video that allegedly showed her choking and beating a 3-year-old girl . she was also caught allegedly burning the legs , arms and hands of the girl on a hot stove as she screamed out in pain . quilligana , who is being held on $ 1million bail and charged with first degree assault and criminal mischief , has said these charges are untrue . the family set up a nanny cam in december 2014 after they became suspicious of quilligana .\npair were left homeless after storms and met in connecticut trailer park . won lottery last year but only cashed prize in after easter to mark new start . ` because of sandy i met the love of my life ' , said thrilled lottery winner .\nresidents in two exclusive chelsea streets complained of a rancid smell . thames water investigated and discovered a 10 tonne fatberg in the sewer . the sewer which is 40 metres long was made up of fat and used wet wipes . a # 400,000 repair is being carried out to rectify the damage underground .\njose mourinho watched marcus bettinelli when fulham played rotherham . bettinelli made his fulham debut this season and has one year left on his deal . mourinho reportedly sees him as a potential no 2 to thibaut courtois .\nclocks go back an hour at 3am on sunday , april 5 in all states except queensland , the northern territory and western australia . daylight savings will begin again on october 4 this year . changing the clock is also a reminder for people to change their smoke alarm batteries , australian fire services say .\ndaniel sturridge has dance-off with kop kids presenter paisley . liverpool striker shows off new dance move called ` feed the ducks ' 25-year-old reveals his passion for music and dancing . read : sturridge fitness our main concern says liverpool boss rodgers . read : sturridge heads back to the us to see specialist .\njanet street-porter joked about snp leader nicola sturgeon on twitter . the journalist was called ugly , vile and ` someone who deserves to die ' says worrying questions remain about some of the snp leader 's followers .\nphilipp lahm is expected to start against dortmund at the weekend . lahm has made two substitute appearances since his injury comeback . franck ribery , arjen robben and javi martinez will miss dortmund clash . david alaba is expected to be out for the rest of the season .\nhigh temperatures forecast for this week thanks to spanish plume - before familiar showers could return . sunny spells for south west and south wales as temperatures could hit 21c in south east later this week . 9c higher than normal for month - and a few degrees warmer than current temperatures in mallorca , spain . mercury set to rise steadily until friday - and rome is expected to hit 16c , athens 16c and marseille 18c .\nlori smith filmed her pooch boomer being repeatedly hit as she lay with her head resting on the ledge of her electronic dog door . after more than 20 seconds and numerous head taps boomer appears resting in the same position .\nken doherty is struggling in his final world championships qualifier . the 1997 world champion trails mark davis 8-1 after the first session . graeme dott must also spark a comeback at 5-4 down to yu delu .\npredator seen attacking hippo calf in kruger national park , south africa . as the hippo emerges from the water it becomes separated from its mother . lion seizes opportunity and leaps on to animal attempting to land killer bite . but the hippo 's mother charges on to scene forcing the big cat to retreat .\nwalton canonry has view of salisbury cathedral enjoyed by john constable while taking studies for famous painting . 300-year-old home with six bedrooms and views of salisbury cathedral and avon has gone on the market for # 7million . constable painting salisbury cathedral from the meadows was bought by the tate for # 23.1 million in 2013 .\nchris roberts says he sent his tweet because he 's frustrated that a security flaw is n't being addressed . the fbi pulled him from a united airlines boeing 737 . roberts said fbi agents detained and questioned him for four hours . clams anyone can plug a laptop into the box underneath their seat and reach key controls in the plane , such as engines and cabin lighting .\nalan pardew believes high-profile signing will send out statement of intent . the crystal palace manager is keen on bringing the club to next level . pardew has warned potential suitors off of star winger yannick bolasie .\ncraig lister , 54 , from watford , is on hormone therapy for prostate cancer . this starves cancer cells by reducing levels of testosterone in the body . one side-effect is hot flushes : ' i have about ten to 12 flushes a day '\nu.s. sen. jim inhofe : nuclear is our largest source of carbon-free energy , generating over 60 % of our carbon-free electricity . so why does n't the president 's climate plan , allegedly aimed at reducing carbon emissions , do more with nuclear power ?\nsome apparently healthy meals worse for you than demonised junk foods . asda 's piri piri chicken pasta salad contains a surprising 46.5 g of fat . this exceeds the 43.3 g found in a burger king bacon and cheese whopper . caffè nero has more fat than mcdonald 's quarter pounder with cheese .\nbomb expert david hyche created the eggs when his daughter turned blind . the children follow sound of a beeper in a plastic egg , trade it for candy . he has now passed on the idea to alabama institute for deaf and blind .\nlacey spears of scottsville , kentucky , was found guilty last month of second-degree murder in the death of garnett-paul spears . the 27-year-old spears force-fed heavy concentrations of sodium through the boy 's stomach tube . judge who sentenced spears on wednesday said she suffers from a mental illness and said the crime was still ` unfathomable in its cruelty ' she showed no emotion when she was sentenced to 20 years in prison . the boy 's father chris hill wrote on his facebook account of spears : ` crazy a ** woman needs to be beat to death in prison ' .\ntiger woods has confirmed he will compete in the upcoming masters . woods goes into the masters after plummeting to 104 in world rankings . colin montgomerie believes it is important for woods to impress .\nlynn , from chippenham , has scoliosis and hip dysplasia . with 305 mobility in her hips , moving hurts and she uses a wheelchair . tried for three years to conceive baby daughter libby .\nenvironmental health found mice droppings and rotting meat in the pub . investigation came after 24 customers suffered food poisoning last year . owner of the sutton arms admitted breaching food hygiene regulations . were you affected by the food at the sutton arms ? call us on 0203 615 3423 or email hannah.parry@mailonline.co.uk . were you affected by the food at the sutton arms ? call us on 0203 615 3423 or email hannah.parry@mailonline.co.uk .\nnick scholfield is lined up to ride spring heeled in the grand national . the famous race takes place at aintree on april 11 . scholfield travels to ireland to sit on spring heeled on friday .\nrory mcilroy finished strongly to finish an impressive fourth in augusta . mcilroy did his best to repair the damage of a tentative opening 27 holes . but the battle came too late to challenge long-time leader jordan spieth . spieth rounded off a record-breaking week by winning first major of career . read : mciiroy and justin rose lead tributes to spieth after masters win .\nmystery passenger was detained when he and scott were pulled over for missing tail light . recording of patrolman michael slager 's radio call to colleagues released . officer shot dead unarmed 50-year-old black father walter lamer scott . slager can be heard telling dispatcher ` he grabbed my taser ' after shooting . no indication scott had ever had the officer 's taser or used it against him .\nlondon mayor warns the snp want to ` end britain , to decapitate britannia ' says scottish nationalists want higher taxes and welfare payments . david cameron warns england , wales and northern ireland would suffer . nicola sturgeon launches manifesto with vow to ` lead ' the united kingdom .\ncobain lived with courtney love in the two bedroom apartment on spaulding avenue in l.a. 's fairfax district . the nirvana frontman lived here in 1991 and 1992 . currently owned by brandon kleinman . heart-shaped box was supposedly written in its bathtub .\nlabour party supporters most likely to get up and show off their moves . voters for the liberal democrats prefer a window seat on a plane . green party fans more likely to take home the toiletries than others .\nchelsea captain john terry has revealed his pfa team of the year . liverpool playmaker philippe coutinho gets nod as player of the year . tottenham scoring sensation harry kane is his young player of the year . former blues juan mata and ryan bertrand are in his best xi picks .\nresearchers recorded chimps hunting with tools at fongoli in sénégal . tool use was spotted on 300 occasions and 60 % was by females . male chimps did more hunting but tended to capture prey with their hands . the findings may provide clues as to how humans first learned to use tools .\nkim ki-jong , 55 , was indicted on charges of attempted murder for allegedly slashing u.s. ambassador mark lippert with a razor at a breakfast forum . prosecutors have also been investigating whether kim violated a controversial law that bans praise or assistance for north korea . activist kim blames the presence of 28,500 u.s. troops in the south as a deterrent to the north for the continuing split of the korean peninsula .\nthe 79th masters kicks off in augusta on thursday . rory mcilroy is bidding to land a third straight major title . tiger woods arrives to the competition ranked 111th in the world .\naussie the dog saved the lives of his owners kai , seven , and sophie , 10 . he stepped into a puddle that was live with electrical current in the aftermath of the wild nsw storms at caves beach , near lake macquarie . the cattle dog puppy is being remembered as a hero by the family .\nten per cent leave their documents , letters and mementos around in piles . survey of 2,000 britons found that only six per cent back up papers online . just under half asked said they used filing cabinets or safes for documents .\nman posted advertisement seeking ` girlfriend/wife ' on gumtree . rich , 31 , says potential partner would be showered with gifts and benefits . post says the lucky girl would a gym membership , phone , laptop and car . ` previous applicants need not apply -lrb- no exs -rrb- ' the advertisement says .\nthe 1915 fa cup final would be the last game in england for four years . so many soldiers in the terraces saw it be known as the khaki cup final . on friday it will be 100 years since the match was held at old trafford . sheffield united beat chelsea 3-0 but there was no parade for the victory . it was played on the same day thousands of allied troops were killed in a deadly german chlorine gas attack near ypres , belgium . earl of derby urged men not enlisted to play ' a sterner game for england '\njavier hernandez got real madrid 's champions league winner against atletico madrid . hernandez described it as ` one of the most important goals of my life ' . he is set to seek a new team when his loan from manchester united ends .\ngeoff johnson and jennifer mcshea both grew up with a mother who compulsively hoarded things . refrigerator did n't work , trash piled up , but nothing was fixed . it left them with deep-rooted feelings of shame . two decades after they left , their mother died and the house was passed to them . they have revisited and created a photo series , superimposing their children onto photos of the house to show the uneasy sight of youngsters growing up in that environment .\ntracy morgan was seen in public looking greatly improved as he walked with a cane on monday , almost a year after his horrific auto accident . the actor , who suffered a traumatic brain injury as well as a broken leg , a broken nose and broken ribs , was seen walking with a slight limp . morgan was accompanied by his fiancee megan wollover and their daughter maven for a shopping trip in new jersey . this as his lawyer has revealed the actor may never return to ` the way he was ' as the extent of his brain injuries are still unknown . three of morgan 's friends were injured and one , james mcnair , was killed in the crash that occurred when their bus was rammed by a wal-mart truck . the driver of the truck , kevin roper , is facing a criminal case in new jersey , and morgan has filed a lawsuit against wal-mart .\nthe 23-year-old has become an integral part of arsenal 's starting xi . francis coquelin was on loan at charlton earlier in the season . arsenal face liverpool at the emirates on saturday in a crucial clash .\ntulsa reserve deputy robert bates investigated in 2009 over his behavior . concluded that he got special treatment and received questionable training . he has pleaded not guilty to manslaughter over death of eric harris , 44 . 73-year-old killed the father after drawing gun instead of taser during sting .\nrich kids of instagram have been spending spring in the most glamorous hotels in monaco , new york and rhodes . they travel on # 2million private jets , stay in # 1,000-a-night hotels , eat truffles with breakfast and lounge on yachts . but some , including 20-year-old luxury jewellery designer stephanie scolaro , have simply gotten used to jet-setting . others can not leave their work behind as tomer sror continues to make ` hundreds of thousands ' while on holiday .\ntwo famous wrestlers , balla gaye 2 and eumeu sene , competed in ` le choc ' at demba diop stadium in dakar . after a brutal encounter , roared on by the crowd in the sold-out stadium , the burly sene emerged victorious . prior to the showdown event , other athletes - dressed in loin cloths - took to the arena for a series of bruising bouts . wrestling 's popularity in senegal make it a lucrative business in a country where the average annual income is $ 980 .\nan italian newspaper scored theo walcott five out 10 for his display . walcott started in attack alongside harry kane before being replaced . antonio conte is lauded after helping his side claim positive result . graziano pelle should return to serie a , according to the italian media . click here to read martin samuel 's match report from turin .\nrodrigo alves , from london , has undergone 30 body-changing operations including four rhinoplasties , liposuction and pec implants . the 31-year-old flight attendant will appear on the us-based reality show botched this season to ` assist another patient '\npolice raided surgery on alderney as part of investigation into patient deaths . health and social services department alerted force to their ` concerns ' a doctor has been excluded from treating patients but no arrests made yet . anyone with concerns urged to contact staff at mignot memorial hospital .\n` vampire girl ' prank video is spreading on social media in ukraine . sees girl in full vampire make-up and nightgown , prey in a park . she waits until concerned locals come up to her , before scaring them .\njames morrison headed tony pulis ' west bromich albion side in front within the first two minutes from a corner . craig gardner doubled west brom 's lead with a 30 yard screamer in the second-half at selhurst park . tony pulis , on his return to selhurst park , guided his side eight points clear of the relegation zone .\nreal madrid thrashed granada 9-1 in la liga at home on sunday . for the first time since november real have all seven attacking stars fit . fiorentina host juventus in coppa italia semi-final second leg on tuesday .\nin manchester 240 machines still do n't accept coinage introduced in 2012 . a typical # 1.25 hour 's parking is costing many # 1.40 - a 15p profit per ticket . experts fear problem may get worse when new # 1 is introduced in 2017 .\npolice : some suspects involved in pakistan blast that killed , injured more than 300 . evidence suggests vatican was discussed as a possible target in march 2010 , police say . state news : some members of alleged terrorist cell had direct contact with osama bin laden .\nmanuel pellegrini believes man city need to sign a world class superstar . the chilean insists it is important to splash the cash every other season . city brought in eliaquim mangala , fernando and bacary sagna in summer . manchester city face crystal palace at selhurst park on monday night .\nzlatan ibrahimovic scored a hat-trick for psg on wednesday night . it took his tally for the french club to 102 goals in less than three years . he now trails only former portugal forward pedro pauleta in all-time list . the longest spell he has ever spent at one club is three seasons . would the sweden star choose the premier league for a last hurrah ?\nthe 36-year-old will stage his next student on april 29 . in november , wallenda walked back and forth between two chicago skyscrapers in a live television event . his great-grandfather karl wallenda died in a tight-role walk in puerto rico in 1978 . wallenda has also tight-rope walked across niagara falls and the grand canyon .\nkelli jo bauer , 43 , is accused of stealing fake designer clothes and bags . undercover police officers saw her advertising clothes to sell on facebook . they went to her $ 900,000 home where she allegedly tried to sell clothes and handbags . bauer allegedly told officers she is a shopping addict . she said she was selling the clothes because she 'd lost weight and they no longer fit .\nesteban cambiasso helped his side claim a vital victory against west ham . cambiasso scored opening goal in leicester 's 2-1 win over the hammers . nigel pearson has backed the argentinian to lift leicester out of drop zone . the foxes are bottom of the premier league table with 22 points .\nallan donald served as south africa bowling coach since 2011 . donald said ` it was always a big dream ' to work in south african cricket . chief executive haroon lorgat said donald will ` always be a stalwart '\ntony pulis ' side beat crystal palace 2-0 on saturday at crystal palace . james morrison and craig gardner fired in the goals at selhurst park . victory moved west brom up to 13th in the premier league . on 36 points , the baggies are currently eight clear of the relegation zone .\ndan price , founder of gravity payments , will slash his salary to $ 70,000 and raise the minimum wage for his 120 employees to $ 70,000 . the move , in the next three years , will also require price to plow up to 80percent of his firm 's $ 2.2 million profits back into salaries . he says he was inspired to make the bold step after reading that happiness increases dramatically for people earning over $ 70,000 .\ndebenhams and mothercare have called a halt to long-running promotions . and both stores have announced revived figures since making the change . experts claim prolonged sales can devalue products and encourage shoppers to delay buying an item until it is reduced . figures show a third of all fashion purchases are now made in a sale .\nellia beasley loved singing along to lost prophets song as a teen . decided to have line ` scream your heart out ' tattooed onto her belly . but then the band 's lead singer was exposed as child abuser and jailed . 22-year-old hated being associated with him thanks to tattoo . tattoo disasters uk begins on tuesday 21st april at 9pm on spike - sky 160 , talk talk 31 , bt tv 31 , freeview 31 and freesat 141 .\n4ft missile was spotted on the roof of barge as it sailed through reading . alarmed passer-by called police and army bomb disposal team responded . perched next to missile was the menacing head and shoulders of a dummy . experts scoured boat and said weapon ` was found to be purely ornamental '\nthe iconic 1980s vehicle was being transported between stoke and crewe . police stopped the the car on suspicion of having a ` leaky flux capacitor ' . the car 's owner joined the fun asking the police for directions to 1985 . the movie trilogy starring michael j fox made # 750 million in the 1980s .\nhuntley high school in huntley , illinois , offers a blended learning program . it allows students to combine online learning with in-person teacher instruction .\ngases used in anaesthetic in are accumulating in the earth 's atmopshere . the gases - desflurane , isoflurane and sevoflurane - have a greenhouse effect that is 2,500 times more potent than carbon dioxide , say scientists . new study finds their concentrations are relatively low but are increasing . scientists urge hospitals to find more environmentally friendly alternatives .\nbecky watts went missing in february and her dismembered body parts were found 11 days later around three miles from her bristol home . an inquest heard she had to be identified by her dna after parts found . inquest was adjourned until criminal proceedings over death are concluded . miss watts ' step brother nathan matthews has been charged with murder .\nwhen sonia morales was pregnant , her daughter angela was diagnosed with anencephaly . it is a birth defect in which babies are born without parts of their brain and skull - many newborns with the condition die soon after birth . angela celebrated her first birthday on march 23 . the family are celebrating every day they have with angela .\nchelsea won 3-1 away at leicester in the premier league on wednesday . john terry scored chelsea 's second in their win at the king power stadium . goal was terry 's fourth in the premier league this season . ex-west ham defender julian dicks scored 10 during the 1995-96 season . read : branislav ivanovic has more assists than mesut ozil .\na magnitude-7 .8 earthquake struck near kathmandu , nepal . carolyn miles : many survivors will have nowhere to go .\nthe woolworths ` fresh in our memories ' campaign launched last week . it invited customers to upload images to remember australian soldiers . the supermarket then added a woolworths logo and slogan to the image . customers took to social media to mock the campaign and express their anger with what they saw as a marketing ploy by the company . the soldier whose image was used to plug the campaign is unidentified . all that is know about the young man is that his photo was taken sometime between 1915 and 1918 before the he embarked from australia for service .\ntyrus byrd was elected into office in the small city of parma last week . five of the six cops in the city reportedly handed in their resignation . the city 's attorney , clerk and water treatment supervisor also quit . all employees cited ` safety concerns ' in their resignation letters ' . mrs byrd and the outgoing mayor randall ramsey insist they do not know why they decided to leave .\na new # 1bn super hospital in glasgow opened its doors to patients today . the state-of-the-art building includes a children 's cinema and robots . nicola sturgeon said it had been ` entirely funded ' by scottish taxpayers . but scotland gets # 1,200 more per head spent on health than england . this is funded by barnett formula guaranteeing extra spending in scotland .\nwallace , who signed for chelsea in 2013 , is on loan at vitesse arnhem . he has been pulled out of their squad for the trip to excelsior on saturday . the 20-year-old has also been handed the maximum fine by the dutch side . wallace , a brazilian under-20 international , made his debut for jose mourinho 's side during their summer tour of asia in 2013 . click here for all the latest chelsea news .\nlewis hamilton already holds a 27-point cushion in the drivers ' standings . the brit has won nine of the last 11 races following triumph in bahrain .\ndavid king , 70 , from east london , retired to normandy 15 years ago . body found by sniffer dogs and a man has been charged with murder . alleged killer was living rough and is ` behind number of thefts in area ' gardener mr king may have confronted him over stolen vegetables .\narsenal fan 's girlfriend avoids getting dumped after passing football test . saskia got an ` a ' , but apparently needs to work on her player positions . the bemused woman posted pictures of boyfriend 's test on twitter .\nlorenzo simon , 34 , forced tenant michael spalding to decorate his flat . police said simon forced him to work up until midnight like a ` slave ' but following an argument , mr spalding was stabbed and dismembered . after hacking him into pieces , simon stuffed the body parts into suitcases . police also discovered pieces of bone inside a drum used for bonfires . simon was today found guilty of murder and will be sentenced next week .\nkaren bell met victim - who can not be named - on dating site plenty of fish . pair met up and acted out fantasy in which she spanked him with trainers . 42-year-old then claimed son had filmed entire session and demanded # 25 . threatened to post video online unless victim paid cash which rose to # 55 .\nlack of bacteria in the gut means we are less equipped to deal with germs . means our bodies overreact when in contact with bugs , dust or pollen . study : people in the us had far smaller collection of bacteria - called the ` microbiome ' - than people from less sanitised papua new guinea .\nthe video was captured in california by the dogs ' owner tracy . young german shepherd named kali jumps around playfully . adopted mother follows it and nudges it away from its ball . older dog then uses its paw to push the puppy onto the bed .\nblackpool fans protested against owners , the oyston family , before their 1-1 draw against reading on tuesday night . thousands of supporters stayed away from bloomfield road . those who did show protested before the game . they are already relegated from the championship .\nthe depiction is so unflattering a facebook page called ` we love lucy ! get rid of this statue ' has attracted more than 600 likes . it would cost an estimated $ 8,000 to $ 10,000 for the statue to be recast . artist dave poulin has refused to comment on the controversy .\nexperience berlin for # 14 , south africa for # 21 and abu dhabi for just # 29 . new concept of ` the holiday ' is brainchild of park inn by radisson . programme will post your actions ` on holiday ' to social networks .\nboth tiger woods and rory mcilroy took part in the practice session at augusta national golf club ahead of the masters 2015 . woods was making his return to action and his first appearance for 60 days since taking a break from golf to regain form . he was given a warm welcome by the crowd and looked confident as he made his way around the course . mcilroy , meanwhile , teed off with promising young british starlet bradley neil .\ndeutsche flugsicherung urges aviation industry to develop safety system . similar technology is already available for piloting drones , but not planes . co-pilot deliberately crashed jet last month in alps killing all 150 on board . separate report says passengers could hack planes using in-flight tvs .\nthe boa constrictor is still on the loose on queensland 's gold coast . police released it into the wild because they thought it was a python . the south american snake poses a biosecurity hazard . snake catcher tony harrison said it was probably imported illegally . fears that if the snake is pregnant up to 30 live young could also be loose .\nsilvia , from new york , developed a non-food craving while pregnant . the eating disorder , called pica , makes people crave inedible items . both she and partner estevan are worried about what it will do to the baby .\nbrock guzman , 8 , was taken from his home when someone stole the family car from their driveway as he slept inside monday morning . he was found shortly after a few miles away in fairfield , california . his parents , paul and suzanne , are now filing a formal complaint against police for the way they were treated after they reported the incident . suzanne was handcuffed and thrown to the ground by officers , something paul claims he captured in a video . cops say this happened because they say what they thought was blood inside the house and suzanne refused to let them in . the family says they wanted to protect police from their dog who they thought would attack the officers .\nthe geordie passenger was pulled aside at customs by security . six tubs of pease pudding , and several greggs pies were removed . staff thought the north east delicacy was the plastic explosive , semtex . pease pudding is made from split peas , boiled with onion and carrot .\n30-stone woman 's ` perfect belly ' attracted men from around the world . gayla neufeld always struggled with her size , weighing 13 stone aged eight . the 52-year-old now embraces her belly and works as a webcam model . texan gayla met her husband lance , from canada , on a fat-fetish forum .\ndavid cameron set to announce move today to help plug nhs # 30bn hole . move is designed to demolish cynical labour claims of tory cutting nhs . prime minister said last night he was ` utterly committed ' to health service .\nthe new york man unapologetically demonstrates how he harasses women on the street while taking part in an on-camera interview . he insists that the ticking , whistling , and kissing noises he makes at strangers makes them ` feel good ' the man also explains that choosing a woman who is far away from him is better because she wo n't be as ` scared '\njosiah met marjorie jackson , 17 , a few years ago when he was taking spanish lessons at her house . per the duggar family 's rules of courtship , their dates will be chaperoned while they get to know each other in preparation for a potential marriage .\nmaurice thibaux stormed stage at sydney 's mercedes-benz fashion week . the 67-year-old was making a noise complaint to the carriageworks venue . he compared noise of the show to ' a jumbo jet taking off over your head ' mr thibaux said the rumble felt made his house feel like it was shaking . he apologised to organisers , saying he did not mean to disturb the show .\ngeneral martin dempsey sent apology to debbie lee , whose son died in iraq . petty officer marc lee , 28 , was killed in 2006 in battle over ramadi . dempsey had belittled importance of ramadi at a news conference last week . lee said hearing dempsey trivialize son 's sacrifice brought her to tears . castigated general in open letter online , to which he has now responded .\nthousands of people caught in poverty because successive governments refuse to change their refugee status . laws mean that the west pakistan refugees living in jammur and kashmir can not vote in elections or own property . hopes that election of hindu nationalist party as a coalition partner could herald historic change for the community .\nwarning : graphic content - deborah fuller dragged her one-year-old dog behind her car for 400 metres at a speed of around 30mph . animal was left with wounds to paws and elbow and grazes on his stomach . fuller , a breeder , failed to quickly take the animal to vet which could have reduced the ` unnecessary suffering ' of the rhodesian ridgeback . she was banned from keeping animals for five years and given a curfew .\npolice say victor white iii and jesus huerta shot themselves while handcuffed in cars . report : police ignored jorge azucena 's complaints that he had asthma and could n't breathe . kelly thomas died five days after he was beaten by police in fullerton , california .\ncare staff ` increasingly being asked to perform tasks nurses used to do ' some untrained carers are changing catheters and administering morphine . age uk director has called the findings in a new survey ` frankly terrifying ' survey questioned 1,000 workers employed by councils and private firms .\nousman jatta married to wife beryl 13 years ago after meeting in gambia . couple lived in africa until 2006 when mrs jatta became ill with dementia and they moved to bristol . mr jatta took wife to care home in february when he went to africa . but he says bristol city council have not allowed her to return home .\nliverpool seven points off fourth place after 4-1 defeat by arsenal . reds take on blackburn in fa cup quarter-final replay on tuesday night . manager brendan rodgers insists the club are not in crisis .\nchris smalling scored as manchester united beat rivals manchester city . win sends louis van gaal 's side four points clear of the citizens in third . manchester united now sit just one point of arsenal who occupy second . smalling is confident of chasing down both them and leaders chelsea . read : five things van gaal has done to transform united 's results .\nkeith whitworth was jailed for 22 years in 2013 for abusing three children . one of the victims was his daughter mandy greenwood , now 39 . mandy , from greater manchester , was raped almost daily as a child . the mother-of-two has spoken out to try and help other victims of abuse .\nmichael bisping beating cb dollaway on points in montreal during ufc 186 . manchester 's bisping was given the nod 29-28 by all three of the judges . bisping said after the fight that dolloway was tougher than he anticipated .\ndecades of cheap holidays means retirees are paying for sunburn in youth . men over 65 ten times more likely to have disease than parents ' generation . around 5,700 pensioners now diagnosed with melanoma each year in uk .\narsenal take on stoke city in barclays under 21 premier league clash . jack wilshere and club captain mikel arteta have been out since november . abou diaby has been ravaged by injuries during nine-year spell at club . arteta , wilshere and diaby are all close to first-team returns . young winger serge gnabry also in the side on return from injury . read : arsenal 's alex oxlade-chamberlain , calum chambers , jack wilshere and danny welbeck keep their agents close . click here for all the latest arsenal news .\nkealeigh-anne woolley was 7 months old when colin heath shook her . violent incident left her blind , unable to talk and severely brain damaged . spent most of her life in a wheelchair and could only eat through a tube . heath was jailed for manslaughter at birmingham crown court today .\nfloyd mayweather jnr and manny pacquiao fight in las vegas on may 2 . showtime have released a short film from inside the mayweather camp . the undefeated american says he has never wanted to win a fight so much .\nkevin sinfield has announced he is leaving leeds at the end of the season . the 34-year-old will cross codes to join sister club yorkshire carnegie . former england captain has won six super league titles with the rhinos .\nbush , 68 , implied obama 's plan to lift sanctions on iran comes too early . he noted that islamic country 's government appears to be caving in . and he said that the deal would have a bad impact on us national security . speech made to wealthy jewish donors at venetian hotel in las vegas . bush also suggested obama is losing the war against the islamic state . said : ` when you say something you have to mean it - you got ta kill 'em ' and he mentioned vladimir putin , hillary clinton and brother , jeb bush .\nseveral january signings have failed to impress in the premier league . chelsea winger juan cuardrado has barely played since fiorentina move . wilfried bony has scored one goal after leaving swansea for man city . qpr tried to send mauro zarate back to west ham before he flopped . callum mcmanaman has failed to show his wigan form at west brom . benfica 's filip djuricic has struggled with injuries at southampton .\ncape town students demand cecil rhodes ' statue come down . they use the hashtag #rhodesmustfall . school takes it down .\nkevin pietersen has managed to outplay the ecb 's media personnel . adam wheatley says mission sports management had no outside help . andy flower 's job description is similar to new director of cricket role . former glazer family spokesman tehsin nayani is releasing a book . west indies ' shivnarine chanderpaul hoping to play with son tagenarine .\nthe goldfinch piano took six months to build for a sheikh in doha , qatar . each of the half a million crystals was applied by hand . the instrument was designed in collaboration with artist lauren baker . it is said to be worth # 420,000 .\nunidentified 18-year-old told by guards in arizona jail to go back to his cell . inmate at phoenix facility punched two officers , knocking them out . young man eventually subdued , though four taser shots did n't work . scott beaty , 44 , in intensive care with broken facial bones and brain bleed .\njennifer lawless : there 's a strong temptation to view hillary clinton 's candidacy as all about cracking the glass ceiling for women . she says the reality is that most people will vote not on gender but on the economy and partisanship .\nmgm grand garden arena will host floyd mayweather vs manny pacquiao . the hotel in las vegas has hosted a number of big boxing fights . this fight of the century is the biggest single event in vegas history . hotel expect 50,000 people to pass through on friday and saturday . mgm grand president scott sibella promises they wo n't run our of beer . the hotel has 7,000 rooms and suites and 9,000 employees . freddie roach : pacquiao could win with one arm behind his back ! click here for all the latest mayweather vs pacquiao news .\nspain defender courtside with his wife shakira at barcelona open . pique played in barcelona 's 2-0 win over espanyol on saturday . kei nishikori won in straights sets over surprise finalist pablo andujar . world no 5 crowned barcelona open champion for second year in a row .\naid agency received approval from saudi-led coalition to enter yemen . it has been negotiating for weeks to deliver emergency food and supplies . 11 days of coalition airstrikes on iran-backed shi'ite houthi rebel positions have left more than 500 people dead and many more displaced . news comes as pakistan begins talks to join the coalition of sunni nations .\nrandy johnston , 68 , from dallas , texas , decided to leave two ` fake feces ' on his granddaughters ' beds . his son then went about filming the moment of discovery . but footage shows that the prank turned out to be decidedly disastrous , with randy 's six-year-old granddaughter porter crying in horror . randy , an attorney , told daily mail online that he staged the prank in revenge for one his granddaughters pulled on him earlier in the day .\nnorthern california got a day of much needed rains this week but the storm will do little to remedy the historic drought .\nchampions league-chasing clubs looking to hoover up talent . arsenal , manchester united , liverpool and chelsea all in the hunt . southampton , burnley and everton could suffer at the hands of top clubs .\nfossilised skull of daspletosaurus - a close relative of tyrannosaurus rex - found to be covered in bite marks that suggest it was eaten after it had died . palaeontologists believe another daspletosaurus scavenged on the body . the skull was found in dinosaur provincial park in alberta , canada , in 1994 . it also carried wounds that appeared to have been inflicted during battles .\nwest brom 2-3 leicester city : jamie vardy 's injury-time winner seals it . vardy put in a 10-out-of-10 performance at the hawthorns on saturday . the leicester striker is a hard worker and can rarely be faulted .\nbeth hall , 24 , from cambridge , plummeted to a tiny 4st 13lb at her worst . had begun the strict starvation regime at 16 after being bullied at school . says she survived off tea and coffee and would go days without eating . only when she was warned she was killing herself did she seek help .\nmanchester city entertain west ham in the premier league on sunday . frank lampard took part in city training on wednesday ahead of encounter . lampard has scored seven goals in 32 appearances for city this season .\nthe film opens december 18 and stars vets harrison ford and carrie fisher . the space epic is predicted to make more than the final harry potter movie .\namnesty 's annual death penalty report catalogs encouraging signs , but setbacks in numbers of those sentenced to death . organization claims that governments around the world are using the threat of terrorism to advance executions . the number of executions worldwide has gone down by almost 22 % compared with 2013 , but death sentences up by 28 % .\nkym ackerman saw jesus in x-ray of left-side molar at dentist in flagstaff . ackerman , 32 , pointed the special tooth out to both dentist and hygienist . she plans to frame the x-ray and keep the molar and her mouth cavity-free .\npaula creamer won the 2010 women 's us open . creamer suggested a women 's event could be staged the week following the men 's showpiece in april . jordan spieth stormed to his first masters title earlier this month .\nchelsea forward eden hazard has been in superb form this season . the belgian scored the winning goal against manchester united on saturday to extend chelsea 's lead at the top of the premier league table . manager jose mourinho believes hazard is one of the best players in the world and holds him in similar esteem to cristiano ronaldo .\nreal housewives of new jersey star has had his driving license suspended for two years and was fined the maximum of $ 10,000 . state judge called his driving record the worst he 's ever seen - it included 39 license suspensions . guilty plea included an 18-month sentence that will run concurrent with his 41-month federal sentence for bankruptcy fraud and failing to file taxes . wife teresa currently serving a 15-month federal sentence on the fraud charges and he will begin his sentence when hers is over .\nearthquake scientists have been expecting major event in nepal since 1934 . population density , weak building infrastructure amplified damage , usgs spokesman says . `` this event , while large and tragic , is not unusual '' in region , geological engineer says .\njames whitaker 's brief reign as ecb head of selectors is coming to an end . sam allardyce 's future as west ham boss is subject to speculation at a time when a letter sent by venky 's lawyers is doing the rounds . the letter , from december 2011 , makes numerous disputed claims about kentaro 's involvement in blackburn after venky 's bought the club . the fa cup is set to be rebranded as the emirates fa cup .\nsingle lady leaves legacy of labels including chanel , gucci and prada . bid on designs worn by kate middleton and satc 's carrie and samantha . house & son auctioneers in bournemouth to sell the 173 designer lots . worth from # 300 to thousands , the no-reserve lots could go for a bargain .\nshortly after being presented with his green jacket , new masters champion jordan spieth gave 25 interviews over the course of 24 hours in new york . then , despite his fatigue , the 21-year-old flew to south carolina to keep a promise and play in the heritage tournament - his fourth event in a row . by contrast , players on the european tour have not shown the same sort of unwavering commitment to the sport . ian poulter , henrik stenson and sergio garcia have decided not to play at the bmw pga championship being staged at wentworth next month .\ncharles barnhoorn , 20 , was discovered dead at the family home in devon . weekend before he had took hundreds of canisters of ` hippy crack ' an inquest recorded that his death was self inflicted from asphyxiation . his mother susan has called for the sale of nitrous oxide to be controlled . for confidential support on suicide matters in the uk , call the samaritans on 08457 90 90 90 , visit a local samaritans branch or click here . .\nanna broom , 33 , not worked since 2001 and has claimed total of # 100,000 . declared unfit to work with depression and back pain due to her weight . bride-to-be gets # 800 a month in benefits with fiancé jordan burford , 39 . wants # 10,000 loan to fund wedding , but unclear how she will pay it back .\nyoussouf mulumbu has revealed votes for the player of the year awards . west brom midfielder has picked harry kane for the main award . eden hazard was selected by mulumbu for the young player award .\nadhere to beach rules and stay out of shark-infested waters . however , not wearing jewellery in the water might not be considered . tragic death of 13-year-old surfer elio canestri sees the threat of sharks once again in the spotlight . shark attacks continue to rise over the course of the century .\njapan 's top military official earnestly revealed that the country 's self defense force -lrb- sdf -rrb- had never encountered a ufo . celebrity politician and former wrestler antonio inoki had posed a question concerning extraterrestrials to a government committee .\nfethiye cetin learned of her armenian heritage from her grandmother . the grandmother survived the 1915 killings , assimilated , then kept her real identity hidden . cetin , others want turkey to recognize the killings as a genocide ; the government has refused . in the last decade a more public dialogue on the subject has begun in turkey .\nmike and sharon tierney set aside one night a month for grooming regime . sydney couple tint , trim spray tan and wax each other . sharon 's attempt to give husband ` optical extra inch ' had horrifying results . grooming began when sharon needed guinea pig for beauty training .\noriginal lyrics to u.s. pop anthem american pie up for auction tuesday . unidentified bidder won the 16-page document for $ 1.2 million . the manuscript includes a deleted verse about music being ` reborn ' .\nworldwide , 42 million children under the age of 5 are overweight or obese . british heart foundation survey shows two thirds of parents feel badgered by their children each week to buy junk food after seeing it advertised . weight loss expert dr sally norton backed calls for ban on tv ads . and criticised coca cola 's sponsorship of the london eye attraction .\nlu xincai says no one else can look after his 84-year-old mother . she used to get lost after dark when she went to collect firewood . now she goes with him to work on the backseat of his motorbike . he ties her to him with a sash to make sure she does not fall off . she 's now been given her own room at the bank where he works .\nrosemary taylor approached photographer nelson jones at a city festival . jones was taking pictures of a black and an asian model for tourism shoot . taylor apparently told photographer : ` this is not the image i want for city ' moments later , models and jones were asked to leave event by city official . taylor sacked by city of brookhaven in georgia for ` unbecoming conduct ' she has defended herself , saying she was wrongly accused in the incident .\nnew york reports 160 hospitalizations related to synthetic marijuana . gov. andrew cuomo issued a health alert .\nwilliam ` wild bill ' wilson , 93 , and lillian karr wilson , 89 , were both alzheimer 's patients and had to live in separate nursing homes . but their son doug often drove lillian to see bill and said he believes they were able to ` read each other ' even when they had trouble communicating . the couple did n't have their parents ' blessings when they ran off to wed . but they survived a war and many moves and job changes during marriage . their shared funeral service will be a ` celebration of life '\nmark wahlberg is planning to appear in `` patriots ' day '' the film will be about events surrounding the 2013 boston marathon bombing . another film , `` boston strong , '' is also in the works .\nit is not unusual to see arsenal finish the season with good results . arsenal host chelsea at the emirates stadium on sunday . an arsenal win will not stop chelsea from becoming champions . chelsea will not have it all their own way in the premier league next year . no team is better placed than arsenal to dislodge jose mourinho 's side . arsenal must go for it this summer and make the big additions . fabian delph has been aston villa 's best player for the last 18 months . other premier league clubs missed their chance to sign delph for free .\nturkish airlines flight landed at istanbul ataturk from milan , italy . believed there were 97 passengers on board , all who escaped injury . pilot had aborted a first landing as flames engulfed right engine .\nfulham 2-2 wigan athletic : click here to read the match report . latics came from behind twice to stun the cottagers . gary caldwell admitted his first taste of management was ` crazy '\nmany smartphones - including apple 's iphone - come with an fm chip installed but many are not switched on by the manufacturers . bbc and other broadcasters are pushing to have radio capability turned on . they say it would allow users to listen to broadcasts without data charges . it could also prove a vital way of getting information during emergencies .\ndr margaret-ann rous and her husband david were flying to tiree to see her mother and sister . their bodies were found inside wreckage after the plane dropped off radar . couple married last july and were believed to be planning to start family . dr rous 's sister johann has paid emotional tribute to her ` absolute rock ' .\nthe statement chop was made famous by jim carrey in dumb and dumber . one british barber has seen a 200 % surge in demand for the style . stars from miley cyrus to lena dunham have all taken it on . dumb and dumber to is out now on blu-ray and dvd .\nmanchester united beat their rivals city 4-2 at old trafford on sunday . gary neville was co-commentator with martin tyler for the derby . ` smalling has scored . it 's a mauling for city , ' said neville at one point . the former united defender 's commentary was fit for the occasion .\nviv won # 152,319 , 18 shillings and 8d on the littlewoods pools in 1961 . afterwards announced her life would no longer be sensible or boring . said she would ` spend , spend spend ' in phrase that prase that became the title of a hit musical .\nraffaele sollecito pictured shopping for lingerie in a clothes shop in rome . cleared in march of killing the british student meredith kercher , 21 , in 2007 . italian , 31 , and american amanda knox , 27 , both acquitted two weeks ago . knox and sollecito reportedly planning to seek compensation for time wrongly spent in prison .\ndiane greenberg is a catholic and her husband , bob , is jewish . pair from new hope , pennsylvania , decided to raise kids in different faiths . katie , now 24 , received catholic religious instruction and was confirmed . steven , 21 , had jewish teaching - but was ultimately not given a bar mitzvah . family say many find arrangement baffling - but have defended it .\nthe qatari ruling family boasts a prestigious property portfolio in britain worth an estimated # 740 million . they have been quietly buying up trophy properties -- including the shard in london -- over the past eight years . qatar 's constellation group bought a majority stake in company that owns claridge 's and the connaught last week . family have spent # 11.6 billion buying empire and sovereign wealth fund snapped up canary wharf for # 2.6 billion .\nspotify believes it has identified the average age of midlife crises at 42 . staff analysed data and found users aged 42 drop their usual playlists . start listening to today 's chart toppers , such as rihanna and sam smith .\nmichael van gerwen and raymond van barneveld are in manchester . they will contest the ninth leg of the premier league darts tournament . van gerwen is undefeated , van barneveld could be eliminated on thursday . the dutch duo visited manchester united 's old trafford on wednesday .\njet set candy 's marry british royalty spinner charm comes in 14k gold vermeil and sterling silver and retails for $ 198 and $ 148 , respectively .\nillume arclighter creates a ` super high-intensity ' electrical arc . it uses electricity stored in a lithium ion battery instead of standard fuel . arc is smaller than an open flame , but is much hotter and does n't flare up . device is available to pre-order via kickstarter for cad$ 40 -lrb- # 21 or us$ 32 -rrb-\nthe shops are full of red dresses in all shapes and shades this year . so , is it time to switch from our trusty lbds to a lrd for the summer ? kate battersby tried six red looks to see which work and which do n't .\nbarcelona set to travel to celta vigo for clash on sunday . lionel messi set to return from foot injury for la liga match . celta forward nolito urges former team-mate messi not to play .\ngreen party activists have been told to dress in ` mainstream ' fashion . a manual for the party 's supporters urges them to appear ` level headed ' the advice has been distributed among green campaigners in london . provides stock answers to ease voters ' concerns about their radical plans .\ndornoch in scotland is pointing tourists towards the local abattoir . the attraction is listed beneath the toilet , doctor and the town 's museum . visitors hoping to experience the slaughterhouse face disappointment . the abattoir has been closed for several years and is being demolished .\nthe austrian skier worked with the team at red bull to create the multi-coloured skiing video . poles filled with biodegradable powder were positioned on an enhanced slope , which erupted as he went passed . it took six gopros , two phantom cameras and three red epic dragon cameras to capture the event .\nmalia obama is already visiting schools and will attend college in fall 2016 . 11th grader , 16 , goes to private sidwell friends school in washington , d.c. . she has already visited schools like harvard , stanford , columbia and yale . president obama said he 's ` sad ' and he tears ` up in the middle of the day ' malia 's younger sister sasha , 13 , has more time until she considers college .\ncharter a private jet in the us via jetsuite.com for as little as # 369 . airbnb , homeaway and vrbo offer budget stays in castles and mansions . getmyboat.com has luxury yachts from # 125 per person all over the world . a specialist website lets car fans rent a porsche boxster s for # 175 per day .\nlionel messi , neymar and luis suarez have 102 goals this season . they reached the landmark in barcelona 's 6-0 win over getafe . messi and suarez both scored twice at nou camp , suarez once . read : barcelona pupils keen to teach pep guardiola a lesson . 6-0 win put barcelona five points clear and piled pressure on real madrid .\naljaz bedene lost 6-1 , 6-4 to jiri vesely at the grand prix hassan ii . the world no 99 switched allegiance from slovenia to great britain . second seed martin klizan saw off nicolas almagro 6-4 7-6 .\ntwo teenage girls risked their lives trying to save a drowning man . police launched an urgent appeal to help identify him . a man in sri lanka recognised boobesh palani and notified the authorities . the 26-year-old student from india died in wellington hospital . thanks to the appeal his family and friends were with him in his final days . kelly mckay and payge olds pulled mr palani from wellington harbour . payge , 16 , swam 70 metres out to the man in the pitch black . kelly , 15 , performed cpr on the man until paramedics arrived .\namazing scene captured on film in south africa 's kalahari desert . two of the big cats approach the little reptile as it scuttled across the sands . but they were denied their meal and forced to wander off disappointed .\ncharlotte roach was nearly killed in a horrific car accident in 2010 . for lent she decided to dress in fancy dress to raise money for charity . charlotte 's business partner rosemary pringle did the challenge too . the pair wanted to raise money for the air ambulance service .\na cherry picker was called in to clear drugs from roof of hmp altcourse . packages containing heroin and cannabis were hurled there from outside . the throwers missed their intended targets - their inmate friends inside .\nkristi gordon of british columbia 's news channel global bc called out her online bullies because she realized their words had affected her .\nring is an illusion created by the chance alignment of two galaxies . albert einstein predicted the illusion in his theory of general relativity . this predicts the gravity of a closer galaxy will bend light a distant one .\nvlad tarasov could n't resist filming himself ski down the slopes at boston 's largest snow farm located in the city 's seaport district . his one-minute video gives a first-person perspective of pushing through the filthy , trash-filled ice pile that served as a dumping ground for the snow . ` i 've been skiing for 20 years , but never like this , ' he said about the ` surreal ' experience . junk in the filthy snow included rusted lawn chairs , parking cones , broken bottles and even a dead seagull .\nsir ranulph fiennes is the oldest briton to complete marathon des sables . veteran explorer , 71 , said the 256km race is n't set for old geriatrics like me ' he has raised almost # 1million for marie curie by completing six-day event .\nkeith anthony allen , 27 , of columbus , ohio , is facing 19 charges . accused of sexually assaulting three girls . two of them , both 12 , were raped , and one is pregnant . the third victim was allegedly fondled . allen is facing a life sentence if convicted of having sex with a child .\nchelsea youth striker dominic solanke scored a double against roma . the 4-0 win sees chelsea u19s progress to the uefa youth league final . adi viveash 's youngsters will take on shakhtar donetsk in the final .\njames creag suffers from rare condition erythropoietic protoporphyria . he wears a thick brown sunscream to block out harmful rays which would leave him in agony . but after strangers taunted him with racist abuse he stopped using it .\nnatalie prescott , 26 , had to be flown to intensive care by air ambulance . she plunged 40 feet off appley bridge quarry , near wigan . teenager miracle godson , 13 , drowned in same area on friday . mum-of-three vows to have area closed after learning of drowning .\ntop-seeded teams in champions league groups will be title holders . top seven league winners will be joined by the holders of the competition . change in regulations would mean arsenal and porto drop down . atletico madrid and real madrid also face drop from top group . chelsea would stick as top seeds if they win the premier league .\npatrick and valerie jubb purchased the property in andalusia in 2008 . they said the alterations had been legalised by land registry officials . couple also said a certificate listed no infractions at time of purchase . when they tried to sell local authorities said the alterations were illegal . town hall said normal rules do not apply as estate is in a natural park .\ntwo trainee obstetricians have reportedly been removed from a newly-opened $ 2 million hospital in western australia . they were removed due to concerns about the quality of service and problems with patient safety at the obstetric unit , according to a report . health authorities say the move was made in order to reshuffle junior medical staff . there 's been a string of controversial incidents in the hospital , including the death of a patient last month .\nthere are few similarities between democrats martin o'malley and jim webb . but they find themselves in a similar position as long-shot presidential hopefuls .\nchelsea 's eden hazard is poised to be crowned pfa player of the year . gary neville feels he is nowhere near cristiano ronaldo or lionel messi . the former manchester united right-back says hazard must become a bully . neville : ` hazard needs to bully defenders more , become a killer , somebody who gives full-backs nightmares before they play against him '\nfour teens busted towing nearly 2,000 cans of beer and ten litres of spirits . stopped on interstate for driving pick-up and trailer with expired tag . they told deputies they were heading to gulf shores for spring break .\njames may has backtracked on comment suggesting trolls ` kill themselves ' he was referring to people sending death threats to sue perkins on twitter . perkins has been tipped as a bookies ' favourite to replace jeremy clarkson . but it led to a torrent of abuse sent by top gear fans on social media . she announced recently she would be leaving twitter for the near future .\nmichael van gerwen booked place in next month 's play-offs . the dutchman beat james wade 7-0 in betway premier league in cardiff . he was beaten 7-5 by gary anderson in the night 's finale .\neuthanasia programme legalised in 2013 to quell overpopulation of strays . but the dogs are being killed inhumanely in squalid pounds , charities say . the k-9 angels have saved over 700 from these pens and re-homed them . pola , anneka and victoria claim public funds to neuter dogs were ignored . graphic content warning .\nfour chelsea stars took part in audi 's football challenge . they were tasked with various challenges involving the expensive cars . eden hazard and nathan ake faced willian and loic remy in the video . willian accidentally smashes the wing mirror of one of the audi 's . click here for all the latest chelsea news .\nmanchester united host aston villa in the premier league on saturday . arsenal entertain liverpool at the emirates in the midday clash . two points separate manchester city , arsenal and united in the league .\nearl arthur olander was found tied up and beaten to death in his own home . the 90-year-old was a lifelong bachelor and lived alone in rural minnesota . police have offered a # 1,000 reward for any information leading to an arrest . his neighbors and friends said he was loved by all within the community .\npair a floral skirt with a bold , pink sleeveless shirt and matching shoes . accessorise a mondrian print dress with red accents . brighten up monochrome stripes with a vibrant orange waistcoat .\nspeed camera discovered pointing at house in handsworth , birmingham . fixed cameras switched off across the west midlands in spring of 2013 . site is not going to be part of a new trial using digital technology . obsolete camera may now be taken down after engineers examine device .\npeggy was given to a paranormal investigator by her terrified former owner . the doll is believed to be haunted and trigger migraines and chest pains . peggy is said to have correctly predicted the death of one woman 's cat . psychics speculate that she is ` jewish ' and possibly a holocaust victim .\nnewcastle fans to boycott home game against tottenham on april 19 . demonstrations to be held before and after the game at st james ' park . supporters unhappy with the plight of the club under owner mike ashley .\na 19-year-old woman said a man had looked under her changing cubicle . police issued cctv images from at aqua vale swimming pool in aylesbury . new pictures thought to be connected to similar incident at the same pool . on february 7 , two teenage girls were sexually assaulted in changing area .\nfilipe luis signed for chelsea from atletico madrid for # 16million . the defender insists he wants to stay despite interest from former club . brazilian has struggled to make the left back position his own this season .\nreal madrid goalkeeper iker casillas has been criticised this season . casillas put in solid performance during 2-0 win against rayo vallecano . but still fielded questions after the game about his position as no 1 . click here for all the latest real madrid news .\nflights diverted from dubai international airport because of freak weather . a 24-year-old was seriously injured in car collision during the sandstorm . forecasters warn high winds are set to continue over the weekend .\nlos angeles is one of world 's busiest , yet receives negative comments . hurghada airport in the heat of egypt , yet no air-conditioning on departure . laguardia in new york described as the ` most frustrating ' airport . customers complain everything at luton airport is chargeable .\nbusiness leaders are calling for the end of surfers paradise meter maids . the gold coast icons have been around for 50 years and started up in 1965 . but meter maids general manager says they are part of gold coast culture . he said they were an ` under-utilised resource ' to help revamp the region .\nlewis hamilton beat nico rosberg at sunday 's chinese grand prix . the mercedes team-mates finished first and second in the shanghai race . rosberg criticised hamilton for selfishly slowing down during the race . hamilton says he is ` prepared ' for rosberg 's underhand tactics . he claimed rosberg ` was n't quick enough ' to catch him in china .\nthe 4-time super bowl winning new england coach was caught in the act at the white house correspondents ' on saturday . belichick 's girlfriend linda holliday posted the incriminating pic on instagram sunday as if to say ` who could resist ? ' both teigen and her husband , singer john legend , have taken to twitter to crack jokes about the photo .\nthe tv star has suffered with episodes of depression since childhood . contemplated suicide following divorce from first husband . celebrating 15th wedding anniversary with husband phil vickery in may . has just penned a sixth novel , a good catch . says she has talked herself out of botox , is happy to look like a 57-yr-old . for confidential support call the national suicide prevention lifeline on 1-800-273-talk -lrb- 8255 -rrb- in the uk , or call the samaritans on 08457 90 90 90 , visit a local samaritans branch , or click here .\nindonesia executed eight drug smugglers wednesday morning . mary jane veloso was meant to be the ninth but was given reprieve . supporters , family `` overjoyed '' -- indonesia stresses it 's just a delay .\nmax is a husky-corgi cross and measures 18.5 in from foot to shoulder . he has become a favourite with staff at the dogs trust in basildon , essex . unbelievably , he has been abandoned and is now looking for a home . to find out more about max , call the dogs trust on 0300 303 0292 or visit dogstrust.org.uk .\nthe impressive castello baronale is located 31 miles outside rome and has battlement towers . the nine-bedroom fort has an incredible library decorated in the venetian style . napoleon plundered the castle 's gold , and used it as a fortress for french revolutionary troops between 1796-1800 .\na jacket and full skirt ensemble worn in several key scenes in the 1939 movie has fetched $ 137,000 at auction . the has faded over time from its original slate blue-gray color to become light gray . private collection james tumblin learned that the dress was about to be thrown out in the 1960s and negotiated a deal to buy it for $ 20 . other top selling items from the auction were a straw hat worn by leigh that sold for $ 52,500 .\n2 minors were sentenced to 10 years in prison , in addition to adults getting life . 52 of the 73 defendants were sentenced in absentia . the virgin mary church was burned along with dozens of others in august 2013 .\nmr scott , 50 , was gunned down by officer michael slager on saturday morning in charleston , south carolina . singer janelle monáe said : ` this brought tears to my eyes . #walterscott reminds me of my uncle , family . can only imagine the pain his fam feels . rapper big boi simply tweeted an image of a black square with the words : ' #walterscott ' . slager has been charged with murder and could face the death penalty .\nsentiers de transhumance track 's been used by shepherd for centuries . sign-posted route is an easier equivalent to the famed gr20 hiking trail . accommodation ranged from small auberges to family-run hotels . in the seaside resort of porto a 16th century genoese tower stands guard .\njamyra gallmon , 21 , was arrested on wednesday on first-degree murder charges related to the february 9 death of david messerschmitt . the 30-year-old lawyer told his wife he would be home that evening but never showed ; he was found stabbed to death the next day at a hotel . items recovered from the room included a computer , lubricant , condoms , cell phone and enema kit . police sources told nbc washington that gallmon was at the hotel that evening for a ` sexual encounter ' . gallmon 's mother spoke with nbc and said her daughter had never been in trouble before and was considering joining the military .\ncoachella visitors pay an average of # 187 per day for entry , food and drink . travel money company no. 1 currency ranked the summer 's top festivals . tomorrowland in belgium and glastonbury are second and third dearest . serbia 's exit festival in petrovaradin fortress in novi sad is best value .\nhuma abedin came under fire for not tipping at chipotle in iowa . she is hillary clinton 's most trusted aide for the 2016 campaign . on saturday , she and husband anthony weiner went for mexican lunch . it is one of their final weekends before the campaign gets into swing .\na new report from suncorp bank found australians spent $ 20 billion on technology in the past year . men spent twice as much as women on computers , digital accessories , mobile apps , and streaming services . families with children at home spend 50 per cent more to stay digitally than singles , couples without children and empty nesters . one third of households do n't budget for technology or wildly underestimate how much they will spend . .\nclaire nugent and nigel morter restored a 1940s airfield control tower and now run it as a b&b . emma edwards runs a vintage website and spent # 10,000 converting her home into a 50s haven . 48-year-old ursula forbush likes to come home and switch on an old record player like in the 60s .\nparents of martin richard argue against death penalty for dzhokhar tsarnaev . the 8-year-old boy was youngest of victims in the boston marathon bombings . sentencing phase for tsarnaev begins next week .\nresearchers had thought reading or looking at screens caused condition . but now believe it could be because both of these activities occur indoors . forty minutes extra of natural light per day could cut cases by a quarter . chinese children now being sent to schools with translucent walls .\nryan burns of eureka , california , said he could barely believe his eyes when he went out to investigate where the beeping was coming from and caught the pooch in action . youtube user , flying humboldt , has stepped forward as the dog 's owner . the 15-year-old said he was with his mom and they left the pet in their suv with the sunroof slightly ajar - the pet also had access to food and water .\nangel rangel could make first swansea city start in over two months . jefferson montero may be fit enough to make bench for garry monk 's side . romelu lukaku 's fitness at 50-50 with belgian carrying hamstring problem . aiden mcgeady is also a major doubt for everton with a back injury .\nbelinda bartholomew claims she was racially abused at a bondi butcher . the girlfriend of sydney roosters star aidan guerra went to buy a chicken for a game of thrones inspired dinner . she says she was sworn at and told to ` go to a f *** ing aussie butcher ' when she tried to change her chicken selection . the butcher vehemently denies he was rude to or swore at her and says the woman is a ` troublemaker ' out to ruin the business .\nsocial media flooded with images of anzac day services across australia . record numbers gathered at dawn services held across the country . this year marks the 100th anniversary of the gallipoli landing . more than 10,000 people expected to attend centenary dawn service at the gallipoli peninsula in turkey .\na man named jamie proposed to girlfriend dawn on the itv show . she reacted by throwing the diamond at him and storming off in tears . dawn then followed that by revealing that she had been cheating on him . episode was entitled : my fiancé is a womaniser but is he a cheat ? . the jeremy kyle show , weekdays at 9.25 am on itv .\noliver pareece jones , 37 , of colorado was last seen at walmart on april 5 . he was seen in surveillance photo leaving sheraton hotel hours before and withdrew $ 800 in cash from atm and another $ 100 after trip to walmart . at walmart , he was captured in surveillance footage where investigators said he purchased backpack , radio , and camping gear . during trip , jones was reportedly mugged and assaulted , and suffered from a concussion ; he was treated at cedars-sinai medical center . family fears concussion affected his ability to reason or ` do anything ' police were waiting to speak with his cousin on friday who was with him the night before he disappeared .\nmilos raonic had to pull out of tournament after sustaining foot injury . tomas berdych will face grigor dimitrov or gael monfils in next round . berdych is yet to lose a set this week following raonic 's injury .\nin the midst of the worst storm in new south wales in a decade people got creative with their photoshopping skills . while there were many genuine dramatic photos of the devastation caused , the fake ones also caused confusion . the more unbelievable photoshop jobs included a photo of noah 's ark majestically cruising into sydney harbour .\nfabio lavato popped the question to laura knight at their local cineworld . he created a proposal video that was played at the end of the trailers . laura said yes and was too excited to watch the rest of the film .\nreal madrid beat rayo vallecano 2-0 in la liga on wednesday night . cristiano ronaldo scored his 300th goal for the spanish giants . ronaldo was also booked for diving in the area but it appeared unfair . he incurred a one-game suspension but that has now been overturned . click here for all the latest real madrid news .\nhrt increase risk of disease up to eight years after stopping treatment . applies to those taking combined hrt - oestrogen and progesterone . discovery made by scientists from one of largest ever studies into hrt . but women taking oestrogen-only hrt may actually have a reduced risk .\nunion barons gave more than # 700,000 to ed miliband 's party in a week . overall , labour accepted more than # 1.1 million between april 6 - april 12 . tories received just # 492,000 with most coming from wealthy individuals . the lib dems , meanwhile , were given just # 50,000 and ukip # 8,000 .\ncouples are sharing their proposals via instagram account howheasked . alongside the thousands of pictures are couples ' touching proposal stories . stunning settings include mountain tops , balmy beaches and snowy parks . paris , hawaii , venice , norway ... and disney world all feature .\nsystem previously installed in ten animal shelters across the us . allows anyone to move cat toys and see the results . helps relieve boredom for the animals , and has boosted adoption rates .\ngang used power tool to cut a hole into basement of safety deposit centre . raided 72 security boxes before escaping with bins full of precious gems . scotland yard said crime had been carried out by ` ocean 's 11 type team ' offering # 20,000 reward for information leading to conviction of burglars .\nthe group included four children , turkish official says . turkish military did n't say what group 's intent was . uk foreign office says it is trying to get information from turkish officials .\ndoctors at the university of arkansas for medical sciences found a 56-year-old man 's kidney problems stemmed from drinking too much iced tea . black tea contains oxalate , a chemical known to produce kidney stones and sometimes lead to kidney failure . the unidentified man will likely spend the rest of his life in dialysis .\nthe shibu inu puppy has the impromptu chat with a husky . begins vocalising with a yappy bark while the husky whines . american kennel club staff try to pacify the excited shibu inu . shibu inu runs in the air in an attempt to get closer to husky .\ntreatment developed by british team could boost ability to fight cancer . imperial college london say human trials of therapy could begin in 3 years . protein discovered could boost immune system ten times to fight cancer . the chance discovery made when unknown molecule was found in mice .\nandrew anderson was accused of forcing julie mcgoldrick to the floor . fought over tv reduced from # 199 to # 99 at tesco store in manchester . frenzied scenes saw him grab tv before tesco workers pulled him away . 43-year-old had jumped queue and admitted he ` knew what i was in for ' .\njane laut , 57 , stands accused of shooting dead her bronze medalist shot-putter husband dave laut in august 2009 . laut claims self-defense while prosecutors say she 's a murderer -- however , they were unable to get a case together by the time of the trial . when a california judge threw out the prosecution 's request again delay the several times postponed trial , they dropped the charges and refiled . the defense calls the maneuver an unprofessional delay tactic almost unheard of in a murder case .\nian gibson claims he was bullied at h and g contracting services ltd . says he was called ` hoppy ' by a colleague due to a limp from an injury . adds he was overlooked for an office job when pain became too much . mr gibson sustained the knee injury in combat in the parachute regiment .\nhull city are interested in signing queens park rangers ' nedum onuoha . everton and west ham united are also keen on the versatile defender . qpr are in talks with catania over a deal to sign defender nicolas spolli . hull also have their eye on west brom attacker victor anichebe .\nrachelle owen , 16 , has died after being hit by a train at a crossing in wirral . her mother kay diamond , 44 , was allegedly murdered two months ago . friends said the schoolgirl ` just wanted to be with her mum ' after her death . transport police said schoolgirl 's death is not being treated as suspicious . transport police said schoolgirl 's death is not being treated as suspiciou . for confidential support on suicide matters in the uk , call the samaritans on 08457 90 90 90 , visit a local samaritans branch or click here . .\nusain bolt wants to beat own 200-metre record by running sub 19 seconds . bolt had injuries last season as justin gatlin dominated sprint scene . but jamaican insists when he is fit he is almost impossible to beat .\nnext has overtaken marks & spencer on profits . retailer has a vast line in designer copies selling for a fraction of the price . include looky-likey mulberry bayswater tote and victoria beckham dress .\ntimothy rogalski ` called the school five times and accused school staff of staging the shooting that left 20 children and six educators dead ' police traced the calls to his home and he was arrested . ' i do n't think i said anything that horrible , ' he said in court .\ntwo 17-year-olds have not been in contact with families for several days . ` told relatives they were going on a school trip during easter holidays ' one is ` relative of hammaad munshi , who joined islamic cell aged just 15 ' .\npatients using mindfulness-based cognitive therapy -lrb- mbct -rrb- had the same recurrence rates as people taking anti-depressants . mindfulness meditation teaches people to focus on the present moment . experts said mbct courses could be offered as an alternative to drugs .\naid organizations are still working to help the people of nepal in the wake of two major earthquakes . thousands were killed in a magnitude 7.8 earthquake in nepal on april 25 . a second quake rocked the country less than three weeks later .\nthe 79th masters tournament begins on thursday at augusta national . tiger woods and rory mcilroy are among the leading contenders . it has seen many shots which have gone down in golfing legend . bubba watson , jack nicklaus and arnold palmer all made history .\nacms celebrated 50 years sunday night . best moments : garth brooks , reba mcentire , taylor swift 's mom .\ntories say russia 's vladimir putin would be happy with ed miliband as pm . this is because he can not be trusted to keep britain 's trident submarines . defence secretary michael fallon said labour could sell out in a snp deal . mr miliband reacted with fury , stating david cameron should be ` ashamed '\n`` they got it wrong , '' aaron hernandez says as he is transported to prison . the jury deliberated for more than 35 hours over parts of seven days . mother of murder victim odin lloyd says she forgives those who played a role in her son 's death .\nlib dem leader makes a promise to take ` politics out of the classroom ' . in last government lib dems ran business , energy and scotland . but clegg reveals plan to demand control of major public policy area . accuses tory minister michael gove of imposing ` ideological gimmicks '\nmichelle heale of new jersey claimed she was trying to burp mason hess . but jury said she killed him by snapping his neck as he was choking . was charged with aggravated manslaughter and endangering a child . sobbed uncontrollably as the verdict was read out and said : ' i did n't do it ' . turned to her husband and asked him to make sure her five-year-old twins do n't forget her . she faces up to 30 years in prison when she is sentenced next month .\nmanny pacquiao and floyd mayweather fight in las vegas on saturday . the day of the bout is a national holiday in the philippines . pacquiao ca n't be compared with other sports stars - there 's none like him . he has tv shows , plays , coaches basketball and sings . pacquiao is a twice-elected and popular congressman in his homeland . saturday 's fight will be worth at least $ 300m .\nthe reporter , 43 , had been admitted to hospital for the fourth time this year relating to the sexual assault she suffered in 2011 . she is now back home and recovering . logan was previously diagnosed with digestive disease diverticulitis , possibly aggravated by stress , and hospitalized in february . last year , the married mother-of-two was quarantined in south africa after reporting from the ebola hot zone in liberia .\nit 's a decade to the day that bali nine pair were arrested for drug smuggling . friday also marks 34th birthday of sukumaran who will spend behind bars . his cousin has organised exhibition of his paintings in london . sukumaran and chan 's fate rests with a court that that has previously recommended an option of a life sentence for reformed inmates .\nliverpool were beaten 4-1 by arsenal at the emirates stadium on saturday . mario balotelli was absent from the squad due to a training ground knock . brendan rodgers revealed balotelli withdrew himself from the team . the italian did not even travel with the team for the premier league clash .\nunite accused of employing workers on contracts ` effectively zero hours ' union , which has given millions to labour , lost a key employment tribunal . lecturer martyn reuby says he was sacked after complaining about issue . comes after labour was accused of hypocrisy over zero-hours contracts .\nscientists in china are believed to have altered the dna of human embryos so that changes can be passed on to future generations in the germ line . leading researchers have called for a halt on such research until the implications and safety of the technology can be properly explored . they warn germ line modification is ` dangerous and ethically unacceptable ' some fear the technique could be misused to create ` designer families '\nbbc2 's kim shillinglaw says clarkson ` will be back ' because there is ` no ban on jeremy being on the bbc ' she insisted he would return in the future but currently ` needs some time ' also said top gear scenes filmed before sacking would be aired in summer . ms shillinglaw said females were being considered to take clarkson 's post .\nlondon mayor boris johnson has urged ukip supporters to vote tory . he said ukip supporters realise a vote for ukip is a ` vote for ed miliband ' conservative votes would avoid the ` nightmare ' of snp propping up labour . mr johnson yesterday campaigned in kent , where nigel farage is standing .\nwayne rooney was handed the captain 's armband last summer . the manchester united skipper insists ` you have to do it your own way ' rooney insists team spirit is good but there are times he has to speak up .\njapan aims to put an unmanned rover on the surface of the moon by 2018 . the mission is expected to to be used to perfect technologies which could be utilized for future manned space missions .\nkenneth morgan stancil iii was arrested sleeping on beach in daytona beach early on tuesday morning . at 8am on monday , he ` walked into wayne county community college in goldsboro and shot dead the print shop director ron lane ' the school was placed on lockdown and it is not yet clear how stancil traveled the 540 miles south to daytona beach . he had previously attended the school and lane had supervised him under a work-study program ; stancil had left the school without graduating . stancil lists ` white power ' as his interests on facebook and has white supremacist tattoos , including an ' 88 ' to signify ` heil hitler ' . he will now be extradited back to north carolina .\nthe state library is showing a collection of photographs taken in the 1800 's by the first hand held camera . the photographs were taken in the 1880 's by arthur syer , a 27-year old man living in sydney . the hand held camera was the first time people could be photographed without their knowledge . amateur photographers using the ` detective camera ' initiated the first talks about surveillance and privacy laws . this was also the first chance people had to use a camera if they were n't trained in the science behind photography . the exhibition will run from april 4 to august 23 .\nlelisa desisa came in first place with 2 hours , 9 minutes , 17 seconds . caroline rotich of kenya won the women 's division with 2 hours , 24 minutes , 55 seconds after spring finish against mare dibaba of ethiopia . security high at event two years after homemade explosives killed three near the finish line of prestigious race . competition comes less than three weeks after boston bomber dzhokhar tsarnaev was found guilty of terrorism for explosions at 2013 finish line .\nrecent reports suggest that the colombian-born actress insisted her 44-year-old assistant be a surrogate despite her now ex 's objections . loeb has filed a lawsuit to stop modern family actress destroying two frozen embryos , according to legal documents obtained by intouch . embryos were fertilized using her eggs and his sperm six months before their split in november 2013 , it is claimed . former couple previously tried to use surrogate to have children twice during their relationship , but procedures failed , according to the lawsuit . but the split before remaining embryos could be implanted , it is alleged . lawsuit also claims that vergara was ` physically and mentally abusive ' to loeb during their almost-four-year relationship .\nan ill female health worker is being treated for ebola on friday . she 's been admitted to canberra hospital after returning from west africa . the unnamed woman was working at an ebola treatment clinic in liberia . it 's understood the woman did not treat any cases of ebola overseas . she 's being treated in isolation under the hospital 's ebola protocol . the results of the ebola test are expected to be known within 72 hours .\nphotographer yener torun sought to show a new side to istanbul , with the modern colourful buildings . minimalistic pictures with the traditional ornate buildings , mosques and palaces . the photographer has gained a large following for his vibrant pictures on instagram .\nmanchester united beat manchester city 4-2 at old trafford on sunday . sergio aguero gave city the lead after just eight minutes in derby . his former team-mate mario balotelli tweeted his delight after the goal . but the now-liverpool striker benefited more from city losing derby . he and his anfield team-mates face newcastle on monday evening .\nmanchester united were beaten 3-0 by everton at goodison park . wayne rooney limped off in closing stages , replaced by robin van persie . louis van gaal has confirmed the striker suffered a knee injury . united boss said it is too early to know the severity of the injury .\nrobots are made out of old car parts and have cctv cameras as heads . originally created by artist giles walker for a show called ` peepshow ' .\nformer president bought the san clemente , california house in 1969 . paid $ 1.4 million for estate featuring main resident and satellite home . hosted 17 heads of state there , including soviet leader leonid brezhnev . moved out in 1980 and sold it to pharmaceutical ceo gavin s. herbert .\nmonk wu yunqing , who was 102 , sits in lotus position in golden cloak . skin , hair and facial features are all clearly visible years later . mummification a form of higher enlightenment for some buddhist monks . a large porcelain vase is the key to the success of preserving bodies .\ninkster , michigan , police chief vicki yost resigns in the wake of charges against one of her former officers . william melendez was caught on police car dashcam video in january beating an unarmed black motorist . melendez was charged with assault on monday ; all charges against the motorist have been dropped .\nseveral dea agents were participating in alleged sex parties in colombia starting in 2001 according to a new report . the parties featured prostitutes paid for by drug cartels . this news comes two weeks after a report found that at least 7 agents admitted sleeping with prostitutes while on overseas assignments . instead of firing or prosecuting agents , the dea treated prostitution cases as ` local management issue ' and suspended them for no more than 14 days .\nthe university of southern california students wanted to help housekeeper fannie randle purchase a new car . usc senior and former gamma phi beta president alicia jewell called on her sorority sisters and alumni to raise the necessary funds . ms randle has been driving around in an old duct-taped car .\nadam sobel : california 's steps against drought are a preview for rest of u.s. and world . tying climate change to weather does n't rest on single extreme event , sobel says . the big picture should spur us to prepare for new climates by fixing infrastructure , he says .\nrachel lehnardt , 35 , ` allowed her 16-year-old daughter and her friends drink alcohol and smoke marijuana in her georgia home ' they ` all played naked twister and lehnardt had sex with an 18-year-old man in the bathroom before playing with sex toys in front of the teens ' . she said she went to bed alone but awoke to her daughter 's 16-year-old boyfriend having sex with her ; there are no charges against him . after the incident , she lost custody of her children and told her aa sponsor , who contacted authorities . her daughter has now jumped to her defense , saying that her mom used to be a good mother but that everyone makes mistakes .\nteaching watchdog investigating some 100 staff with links to the scandal . in some birmingham schools , islamic views forced on staff and pupils . alleged al-qaeda style video with masked gunmen copied in a classroom . also claimed teachers punished children by making them kneel on tiles . staff members also alleged sent offensive messages in a whatsapp group . messages claimed murder of lee rigby and boston bombings were a hoax .\nscottish first minister 's party is on course for landslide north of border . miliband says he wo n't agree to ` confidence and supply ' deal with snp . but he refuses to rule out relying on snp votes to pass key legislation . party could deprive labour of outright win and hold balance of power .\nthese men reside in a special prison unit set up inside maximum-security facilities to protect gang drop-outs . this sensitive needs housing unit in a california prison forces former members of rival gangs to mix . although there is still some self-imposed racial segregation among inmates , the unit is free from gang activity . up to 97 per cent of level iv maximum-security inmates in california are gang affiliated .\nvladimir putin gave the go-ahead to supply the s-300 missile equipment . moscow blocked deliveries to iran in 2010 after the un imposed sanctions .\nmick schumacher signed deal with van amersfoort racing last month . 16-year-old is son of seven-time f1 world champion michael schumacher . mick makes official formula 4 pre-season test debut at oschersleben . team-mate is harrison newey , son of red bull designer adrian .\nchildren drink ` excessive ' amounts of energy drinks , teachers ' union claim . drinks like red bull , monster and relentless are causing ` hyperactivity ' nasuwt likened caffeinated refreshments to ` readily available legal highs ' of teachers surveyed 13 % cited energy drinks as cause of bad behaviour .\nthe rev. robert h. schuller died early thursday at a care facility in artesia , daughter carol schuller milner said . he and his late wife started a ministry in 1955 with $ 500 when he began preaching from the roof of a concession stand at a drive-in movie theater southeast of los angeles . by 1961 , the church had a brick-and-mortar home -- a ` walk-in/drive-in church ' -- and schuller began broadcasting the ` hour of power ' in 1970 . in 1980 , he built the towering glass-and-steel crystal cathedral to house his booming tv ministry . at its peak , in the 1990s , the program had 20 million viewers in about 180 countries .\nauckland coastguards received unusual call out to a homemade boat race . the race saw 15 ` boats ' including a floating subaru car and couch on tyres . one vessel capsized outside of the harbour , however no one was injured . hibiscus coastguards posted their delight at everyone wearing life jackets .\njustice department prosecuting fedex over unauthorized shipment of drugs . danny cevallos : fedex has a strong argument that it should n't be held responsible .\ndr unt tun maung , 43 , working as a locum gp on teesside at time of attack . he asked vulnerable girl to remove her bra before cupping her breasts . court told he was a clever , respected man who had a ` moment of madness ' currently suspended and is facing general medical council investigation .\nthe rudd family put their family home on the market in november and it sold for $ 1.14 million . kevin rudd and therese rein were originally hoping for $ 1.25 million but lowered the asking price to $ 1.19 million . the property sold to applied economics professor uwe dulleck and his wife monica who already live in the area . they bought the norman park property in brisbane 's east in 1994 for just $ 384,000 . it 's a five-bedroom colonial classic - a hidden sanctuary surrounded by greenery with a resort-style pool . the rudds will use their luxurious , modern noosa home as their permanent base after the sale .\nsome 1,500 migrants were rescued by coast guards in 24 hours . the migrants were picked up from five boats in the mediterranean . arrivals are up 43 per cent this year versus same period in 2014 .\nbody of jose alberto , 58 , discovered at home in argentina by neighbours . they reported smell coming from his house in city of san jose de balcare . was found lying next to scarecrow wearing lipstick and long-haired wig . prosecutor working on assumption he died during sex with the scarecrow .\na wisconsin pizzeria is harassed by people confusing it with one in indiana . owners of memories gourmet pizza co. have gotten angry calls , facebook posts . memories pizza of walkerton , indiana , made headlines amid `` religious freedom '' debate .\ngreg dyke could axe the england c team to find the needed # 30million . the fa chairman needs the money to help with his grassroots plans . premier league player george boyd played for the non-league team .\nlocals say power cuts the weekend before raid could be linked to heist . they also tell of suspicious ` drilling ' noises on evening of good friday . group seen returning to scene on saturday - a day after initial break-in . police admit they did n't respond after alarm went off early on friday .\nclare van santen , 37 , has stage 4 breast cancer , which means it 's terminal . single mum-of-five was first diagnosed in 2005 while pregnant with her son . she underwent chemotherapy and a mastectomy to fight the cancer . then in october 2013 she learned it had spread to her liver and shoulder . discovered she had tumors in her brain after a seizure in february 2015 . now she has thrown her support behind the buying time campaign . it urges people to donate to fund more breast care nurses and services .\nusually eat vegetables from spain and south america at this time of year . but recent temperatures have led to english tomatoes sprouting early . strawberries and raspberries also on shelves already , far earlier than usual .\nkenyans use hashtag # 147notjustanumber to honor victims of kenya university attack . the attack killed 142 students , three security officers and two university security personnel .\nassociation of professional flight attendants argues nicole kidman 's etihad deal is at odds with un women 's goodwill ambassador role . kidman stars in etihad 's new ` hollywood glamour ' global brand campaign . union is waging a campaign against etihad and united arab emirates airlines due to treatment of female employees . etihad has rejected allegations saying employees are their top priority .\nefron 's buff bod is far from the weedy teen days of high school musical . femail looks at more famous tots and teens all grown up and looking hot . cute kids do n't guarantee cute adults , though , as we find out ... .\ntory leader hits back at bbc 's andrew marr after interview on live tv . marr twice said the pm told a magazine foxhunting is his favourite sport . presenter has admitted mistake , insisting it was a ` cock up not conspiracy ' cameron climbs on to wooden pallet to address party faithful in yorkshire . but he was heckled by a factory worker who said the ` nhs is dying '\nthe 34-year-old beauty was seen walking for colcci during são paulo fashion week in her native brazil , wearing a selection of summery ensembles . supporting her from the front row was husband tom brady , her parents vania and valdir and sister gabriela . tom shared gushing facebook message about his wife : ` your beauty runs much deeper than what the eye can see ' she is the highest-paid supermodel for the last 10 years and worth a staggering $ 386 million . in the past 12 months alone she has amassed $ 47 million -lrb- or $ 128,000 a day -rrb- mother-of-two plans to publish a book and appear in a documentary on her life .\nboth designers sent models down runway with sequins glued to faces . highlight shows of wednesday included steven khalil and kate sylvester . manning cartell show to attract star front row in the evening .\nesa has released an image of one of saturn 's outer moons , hyperion . its bubbly appearance is due to it having a very low density for its size . scientists believe 40 per cent of the moon is made up of empty space . hyperion has been known to unleash huge bursts of charged particles .\n` x ' marks have been spotted on garden sheds in east kilbride , lanarkshire . other codes suggest occupant is vulnerable or that property has an alarm . another mark tells burglars if there is nothing worth stealing in the building .\nbrian the lar gibbon was captured strutting at the lake district wildlife park . amanda dorman from scotland shot and uploaded the seven-second clip . video shows 50-year-old primate sneaking along while looking at filmmaker . park manager said brian has been ` entertaining our guests for years '\nemma forbes , 49 , bought four-storey london mansion with husband . it has five kingsize bedrooms , five bathrooms and an underground pool . but one neighbour describes it as looking like a ` down-market mortuary ' comes after miss forbes made handsome profit on sale of chelsea flat .\ntim howard joined everton in the community 's wheelchair football team . toffees goalkeeper took part in training session at croxteth sports centre . the u.s international took part in shooting practice and a short game .\ntito vilanova died aged 45 on april 25 last year after a long cancer battle . vilanova was pep guardiola 's assistant during a golden spell for the club . he was key to three la liga and two champions league titles from 2008-12 .\narsenal risk missing out of chelsea 's petr cech is they hesitate on move . cech looks set to leave stamford bridge after losing his no 1 spot . liverpool , psg , roma and inter milan are all also interested in cech . if the gunners do not make their move early , they could be beaten to him . chelsea are looking for a fee in excess of # 10million for czech keeper .\njohan bavman photographed fathers in sweden , which has generous parental leave . sweden 's policies encourage fathers to take just as much leave as mothers .\ntrey moses , a kentucky high school student who has committed to ball state next year , surprised ellie meredith during her p.e. class on thursday . he asked her to prom with flowers and a sign reading : ` let 's party like it 's 1989 ' - a reference to an album by taylor swift , ellie 's favorite singer . she accepted and is now looking forward to going dress shopping . moses works with teenagers with developmental disabilities through a volunteer program in louisville .\ncastleford tigers defeated hull kr 25-4 in the super league on april 11 . australian winger justin carney dislocated his elbow during win . james clare is expected to take carney 's place against widnes on sunday .\nwest ham manager sam allardyce has warned brendan rodgers that any bumper deal offered to raheem sterling could upset other liverpool players . sterling has recently rejected terms of # 100,000 per week at the anfield club . the england international is widely regarded as one of the best young talents this country has to offer . speaking ahead of west ham 's game with leicester , allardyce also took time to defend under-fire foxes boss nigel pearson . pearson was part of allardyce 's coaching staff when he managed newcastle .\nthis page includes the show transcript . use the transcript to help students with reading comprehension and vocabulary . at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teacher or a student age 13 or older to request a mention on the cnn student news roll call .\niranians celebrate deal online and in the streets .\nlorry left roof suspended on hedge behind it near birdlip , gloucestershire . police officer tweeted picture as warning to other drivers on country roads . driver may now be prosecuted for motoring offence after police attended .\nliam marshall-ascough is a tory candidate for stoke-on-trent central . the crawley councillor has been seen in pictures licking a friend 's breasts . but he insists the photographs were taken seven years ago and show him having fun and being sociable , like a normal person in their twenties . mr marshall-ascough said he enjoys interacting with people , which is important for a politician to not be ` just all about the politics '\nmalky mackay had only been in charge since november . under mackay wigan have picked up just 19 points in 24 games . wigan are eight points from safety with five games to play .\nrarely since the first century have christians faced persecution on this scale , say dolan , downey and burnett . crisis escalated substantially as isis has swept through iraq 's nineveh province , the authors write .\nin an interview with the new york times , president obama says he understands israel feels particularly vulnerable . obama calls the nuclear deal with iran a `` once-in-a-lifetime opportunity '' israeli prime minister benjamin netanyahu and many u.s. republicans warn that iran can not be trusted .\nadam johnson charged with three counts of sexual activity . johnson also formally accused of grooming a 15-year-old girl . he was previously arrested on suspicion of sex with underage girl . 27-year-old has made three appearances for sunderland since his arrest . johnson will now appear at peterlee magistrates court on may 20 . click here for all the latest sunderland news .\njulie creffield was told she was ` too fat to run ' when she was a size 18 . but she still completed a marathon . now encouraging other women to run whatever their size . launched this morning 's run for your life campaign with nell mcandrew . poll carried out by show found two thirds of women think they ca n't run .\npreviously , the u.s. did not disclose whether a stopped traveler was on the list or why . but facing legal pressure from the aclu , the obama administration has enacted a new policy to let americans know if they are on the list . grounded americans are also now allowed to inquire about how they got on the list . however , the government has not promised to reveal why in all cases - citing possible national security threats . last fall there were about 64,000 people on the no-fly list , and americans made up approximately 5 per cent .\ntommy cox from colchester looks just like prince george of cambridge . both two-year-olds have the same rosy cheeks and a similar hairstyle . even tommy 's mother - who is also called kate - thinks they look alike . while he looks like george , tommy 's mother admits her son 's behaviour sometimes falls rather short of regal .\namber alert issued after toddler and his mother were abducted from home . pair driven to another house where mother was tied to cupboard in garage . mother ran from garage screaming ` they attacked me ' after untying herself . toddler ronnie tran reunited with parents but grandmother is still at large .\nofficer michael slager 's file has little to suggest use of excessive force . south carolina residents say complaints dismissed without investigation . mario givens accused slager of excessive force in 2013 for taser incident .\njamie carragher : tim krul was wrong to congratulate jermain defoe . that argument from sportsmail 's columnist has divided opinion this week . carragher still can not work out why the newcastle keeper did what he did .\npulis has spoken with his striker about pre-season plans . berahino is expected to be involved with england at under 21 euros . 21-year-old has made no secret of desire to play in champions league . berahino shares same agent as liverpool winger raheem sterling .\nuniversity of illinois researchers gave 150 children a pattern game . it was designed to test cognitive flexibility , which is our ability to shift attention and select information to fit the changing demands of a task . they compared the results with the children 's food diaries . found those who ate fatty food had slower reaction times and worse working memories than children who ate healthier diets .\neerie earthflow was captured in the kemerovo region of russia . it left a wide path of destruction , toppling pylons and crushing trees . earthflows can vary in speed from barely detectable to 12 mph -lrb- 20km/h -rrb- they are a form of landslide where fine soil or sand becomes waterlogged .\nthe 1961 ferrari 250 gt swb california spider is regarded by many as the most beautiful convertible ever made . it is the same model that was famously crashed into a ravine in the 80s cult classic film ferris bueller 's day off . convertible - which does 0-60mph in less than 7 seconds - is going to auction and is expected to reach # 10million .\nsweets were aimed at jason puncheon during crystal palace 's victory . puncheon appeared to be struck while making his way to take a corner . the eagles playmaker scored in his side 's 2-1 home win at selhurst park .\nblackburn 's jordan rhodes and rudy gestede have both attracted interest . gary bowyer believes players will attract attention after fa cup exploits . blackburn lost 1-0 to liverpool on wednesday in quarter-final replay . read : bowyer shocked by keeper 's late effort against liverpool .\nthe boston runbase is scheduled to open april 16 . it is a combined effort between the boston athletic association , adidas and longtime shoe-seller marathon sports . the space will allow visitors to learn about the boston marathon , run a replica of the course on a treadmill or see artifacts from its 118-year history . the b.a.a. plans to use the runbase for special events , including clinics and meet-ups where recreational joggers can connect or get tips . runbase is just a few blocks from the marathon finish line , and even nearer to the spot where the second bomb exploded during the 2013 race .\nwarning : graphic language . national right to life committee wrote the legislation , which bans the use of medical instruments to remove a fetus from the uterus in pieces . gov. sam brownback made so-called ` dismemberment ' abortions illegal , beginning july 1 . exceptions were made for situations where carrying a baby to term would irreversibly damage a woman 's health or threaten her life . there are no exceptions for incest or rape . governor 's office calls procedure ` horrific ' ; abortion-rights groups are considering lawsuits against the state .\nopening sketch had former first lady and adviser discussing campaign . politician , played by kate mckinnon , tries to record a personable announcement video on her cellphone . fails in her bid to come across as soft and approachable in the clip . compares potential rival martin o'malley to a simpsons character . her husband bill then enters the room much to hillary 's dismay . says he is grateful camera phones were n't around when he was president . sketch came hours before she 's set to reveal she is running .\ndocuments reveal relatives of hollywood stars served during wwi . service records include two of actor joel edgerton 's great grand-uncles who fought in gallipoli 100 years ago . it comes as australia prepares to commemorate anzac centenary . nicole kidman 's great-grandfather , edward glenny , worked as a private in the military running the wireless communications during wwi .\netiquette expert and author william hanson on what makes a home posh . cafetiere in the kitchen , and classical books -lrb- not dvds -rrb- in the sitting room . william reveals the items you should not own ... such as napkin rings . fun quiz revealed below ... how many points do you score ? .\nformer barcelona centre back carles puyol retired in may last year . but he could now be in line for a return with new york city or al-sadd . puyol is reported to be training ahead of a comeback from retirement .\narnold breitenbach of st. george , utah , wanted to get ` cib-69 ' put on a license plate . that would have commemorated both breitenbach getting the purple heart in 1969 and his combat infantryman 's badge . the utah dmv denied his request , citing state regulations prohibiting the use of the number 69 because of its sexual connotations .\nsergeant edwin mee , 46 , is accused of raping and molesting 11 hopefuls . army recruiter is said to have abused power while interviewing applicants . court heard mee abused young women to make his job more ` exciting ' sergeant denied 17 counts of sexual assault and three counts of rape .\ncuban-born kathy ferreiro 's curves have attracted fans on social media . bikini-loving beach babe says photos of her booty are all natural . miami-based party girl is hoping to become next kim kardashian . has a huge following in colombia and other latin american countries .\nandy murray and kim sears are getting married in dunblane this weekend . preparations are underway for their nuptials at the town 's cathedral . the decor echoes that of prince william 's wedding to kate middleton .\nindia predicted to outpace china as as world 's fastest-growing economy in next year . china 's economy is slowing after over 25 years of breakneck growth . but experts say india simply ca n't size up against china 's raw economic might .\njose mourinho has a stunning defensive record from his time at chelsea . he has 101 clean sheets from 189 games , conceding only 120 goals . his record surpasses those of rafa benitez and sir alex ferguson . mourinho : i have a problem , i am getting better and better . click here for all the latest chelsea news .\njack wilshere captained arsenal under 21s against reading under 21s . gunners first team players abou diaby and serge gnabry also featured . niall keown scored with a header for the royals after only eight minutes .\nscar booth allows users to superimpose cuts and bruises onto their selfies . app boasts that your friends will think you 've suffered a ` painful beating ' anti-violence charities have slammed it for making a mockery of abuse .\naaron finch had surgery on his left hamstring in melbourne . the australian opener is set to be out for up to three months . finch picked up the injury while playing in the indian premier league . the 28-year-old was due to join yorkshire at the end of may . finch not named in australia squad for the ashes this summer .\naward-winning artist has created tribute to loved ones killed by asbestos . the installation , unveiled in london , contains over 50 heartbreaking notes . more than 5000 people die from asbestos-related diseases each year .\n18-year-old who had been waiting at a bus stop raped and left for dead . attacker hit her on head with rock 20 times before dragging her into garden . the unidentified victim will speak in a crimewatch documentary tonight . in it she tells reporters she is too scared to sleep for fear of reliving ordeal .\nthe leaked memo was written by apple 's retail chief angela ahrendts . she said she expects online orders ` to continue through the month of may ' and added it had not been an easy decision and would provide more updates as the firm gets ` closer to in-store availability ' .\ngiant vegetable was grown in yunnan province by keen gardener mr li . the monster turnip measured an incredible 4ft long and weighed 33lbs . mr li said it was so big it had been nicknamed ` fat little girl ' in his village .\nmo farah will compete at the birmingham grand prix in june . olympic gold medalist wants to prepare for world championships . farah will join jessica ennis-hill and greg rutherford for sainsbury 's anniversary games .\ngwyneth paltrow filed for divorce from chris martin a year after splitting . our sexpert says there 's much to applaud in their civilised separation . but says aspects of their ` conscious uncoupling ' should be avoided .\nsheriff thomas hodgson who had aaron hernandez in custody for 18 months is opening up about the football star . he claims hernandez is a master manipulator who would charm prison guards and be polite to get what he wants . hodgson added that he thinks hernandez will be fine behind bars given his demeanor and attitude . hernandez was convicted april 15 of the 2013 killing of odin lloyd and received a life sentence .\nliberal champion , 82 , has spoken widely about gay rights . she even officiated at a same-sex ceremony in august 2013 . opponents have said it makes her unfit to rule on upcoming case . obergefell v. hodges will be heard by nation 's top court from this week . case will decide whether all states have to allow gay marriages . even if not , could be forced to recognize gay marriages in other states . ginsburg is in liberal minority in the supreme court . but conservative anthony kennedy often votes in favor of gay rights .\nquavious marshall , 24 , kirschnick ball , 20 , and kiari cephus , 23 , were escorted off the georgia southern university campus on saturday night . famous for 2013 hit ` versace ' . multiple guns , marijuana and another undisclosed drug were discovered inside their tour van . they reportedly face charges of drug possession ; possession of firearms in a school safety zone and during the commission of a crime .\nstephen munden , 54 , has absconded from hospital , near hook , hampshire . he was described as having a ` fanatical obsession ' with small girls . munden was convicted of sexually touching a child under the age of 13 . the sex offender may have shaved off his thick beard , police say .\ndrone was filming at royal burgers zoo chimp enclosure for a tv show . chimpanzees spotted the drone - and one grabbed a branch . on its second attempt , it knocked the drone out of the sky .\nsarah jewell , 25 , went to local social security office to prove she 's alive . she learned someone had filed her number as deceased in november 2014 . jewell said the office implied ` everything 's taken care of ' and she was fine . but after three months her number has n't been reinstated , she has n't received her tax refund , and her driver 's license also lists her as deceased . and now she 's in jeopardy of losing her job as a licensed pharmacist .\nformer footballer woke up in middle of the night to find his leg was cold . mabbutt diagnosed with diabetes at 17 but complications had developed . he required the main artery to be replaced and almost lost his left leg . the ex-spurs star wants to raise awareness of dangers relating to diabetes .\nthe richest compiled a list of the top airport landing charges . be prepared to fork out # 2,630 to land at la guardia in new york . prices are based on landing a private 767-400 jet carrier .\nthe world happiness report highlights the happiest countries . people live longer and experience more generosity and social support in these counties . the united nations first declared a world happiness day in 2012 .\nreport claims ivan milat shot first victim years before backpacker murders . the ` wrong man ' jailed for attack , which left milat free to kill , report says . milat 's brother , boris , says he has kept the shocking secret for 52 years . report claims milat shot and paralysed neville knight in march , 1962 . ` ivan shot him - he told me the next day , ' mr bilat said of the shooting . milat brutally murdered seven backpackers between 1989 and 1992 . he is serving seven consecutive life sentences at goulburn supermax jail .\nthe raiders stripped off before entering the esso station in caterham . police have released cctv images of two of the three would-be raiders . the men escaped with one staff member 's mobile phone but no cash . a third man has been arrested and is on police bail following the incident .\nthree adults taken to hospital after head on collision at frenchs forest . the crash was between a toyota klugger and e-type jaguar . nobody was injured in the crash and it is being investigated . it comes after police warned motorists to obey road rules over easter .\nliam livingstone hit 34 fours and 27 sixes 138-ball innings of 350 . the 21-year-old all-rounder is yet to debut for lancashire 's first team . his nantwich town made 579 for seven from their 45 overs against caldy . they won national club championship match by 500 runs .\nfloyd mayweather is thought to have net worth between $ 280m and $ 300m . mayweather has earned $ 400m during his boxing career . the boxer is not afraid to splash the cash and show it off . he is partial to buying the odd super car and also owns a private jet . mayweather takes on manny pacquiao in las vegas on may 2 . mayweather and mariah carey pose as pacquiao sings with jimmy kimmel . click here for all the latest floyd mayweather vs manny pacquiao news .\njamal kiyemba , arrested over killing of uganda 's top female prosecutor . the 36-year-old ugandan national grew up in london from age 14 . arrested in pakistan in 2002 and held at guantanamo bay until 2006 . after his release he claimed he had admitted to terrorism under torture . awarded # 1m compensation over human rights abuse claims .\nthomas cain 's mother orae mae died in 1943 , when he was just 13 . he thought that no photographs of her had survived . granddaughter andrea ferrell , 29 , tracked one down , and filmed the reveal . emotional mr cain sheds tears as he looks on image from the 1920s . ferrell is now looking for other photos - especially mr cain 's father . can you help andrea ferrell track down the photograph of her great-grandfather , henry cain ? email her at andreavferrell@gmail.com .\ninvestigators have released a handful of photographs to help inquiries . they show fans rushing to tend to the dying as they lay on football pitch . police say the people photographed could address unanswered questions . a home office probe into 1989 disaster which claimed 96 lives is ongoing . anyone with information is urged to call 08000 283 284 or visit www.operationresolve.co.uk . anyone who can identify any of the people in the images should call operation resolve on 08000 283 284 or via the website www.operationresolve.co.uk .\nvincent viafore , 46 , from poughkeepsie was on the hudson river near newburgh , new york , with angelika graswald april 19 . he was thrown out of the boat when they hit rough waters . she was rescued by people in a nearby boat and made it to shore . fiancee charged with second-degree murder for allegedly causing viafore 's death .\nasu linebacker davon durant , 19 , was arrested last month after he allegedly hit his girlfriend of 18 months in the face and choked her . kelsi langley , 19 , posted his bail and recanted her story to police the next day . witness called 911 on the day of alleged attack saying he had seen a man hit a woman in a car . durant pleaded not guilty to aggravated assault and disorderly conduct , and has been suspended indefinitely from the team . langley later claimed she got angry with durant and lied to police . said finger marks on her neck were hickeys and her eyes were red from crying , not bruised . the female asu student and a civil rights activist accused police of making durant out to be a thug .\njonathan pitre has deep blistering wounds all over his body that wo n't heal . his condition , epidermolysis bullosa , has a life expectancy of 25 years . every day screams in pain as his mother bathes and bandages him . he loved sports but ca n't play any more , now trying out sportscasting . for more about jonathan and his condition , visit the website of charity debra .\nin a few years , the military will be unable to recruit enough qualified soldiers because of america 's obesity problem . carol costello : we have a serious national security issue at hand , but it 's within our control if we could own up to it .\nwellness blogger belle gibson has finally admitted she never had cancer . ` no , none of it is true , ' she told the australian women 's weekly magazine . model jesinta campbell has joined the chorus of angry followers . campbell said the pair shed tears together at the the cosmopolitan fun fearless female awards last year as gibson told her fake story . the whole pantry founder is still refusing to meet with her publisher .\nwayne rooney , david de gea and louis van gaal greeted unwell fans . michael carrick and ashley young were also in attendance . the ` dream day ' was organised by the manchester united foundation .\naaron hernandez has been found guilty in odin lloyd 's death , but his troubles are not over . he also faces murder charges in suffolk county , massachusetts , but trial was postponed . in addition , hernandez will face two civil lawsuits ; one is in relation to suffolk county case .\njose callejon finished a neat one-on-one to send napoli on way to victory . antonio balzano scored a bizarre own-goal to double the away side 's lead . substitute manolo gabbiadini scored minutes after coming on for a third . christian maggio earned a second-half red card but napoli grabbed victory .\njim murphy scored winning penalty in charity shootout in edinburgh . game put on for terminal motor neurone disease sufferer gordon aikman . mr aikman was diagnosed with the terminal condition less than a year ago . he has raised over # 250,000 for research into a cure through his campaign .\ndale and debra krein sued their neighbors in oregon over the noise . they claim the tibetan mastiffs have barked unnecessarily since 2002 . a jury has ruled in their favor , ordered the dogs to be debarked .\nborder collies ace and holly were caught on camera performing a gravity-defying feat together . the two pooches stood up on their hind legs while balancing on their owner and trainer dai aoki . they have appeared in a number of videos showing off their tricks .\ncandice bergen 's competition for her dad 's affection was not with a sibling - it was with his iconic sidekick dummy charlie mccarthy . ` charlie had his own bedroom next to mine -- and his was bigger ' she and french director louis malle had been ` crazy in love ' her role on murphy brown made her a fortune . real estate developer second husband was suffocating and she reacted with tiny tantrums . she 's packed on 30 pound and says ` no carb is safe -- no fat either ' .\nfifty-six people were killed and 265 were injured on may 11 , 1985 , when the bradford city fire disaster occurred at valley parade . martin fletcher 's mother , susan , told her son about the disaster on may 11 , 1994 , that killed her other son , husband , brother-in-law and father-in-law . then-bradford chairman stafford heginbotham was linked to at least eight other fires before the disaster at valley parade . fletcher is releasing his book , ` fifty-six - the story of the bradford fire '\ngovernment names abdirahim abdullahi as one attacker ; his father is a government official . kenyan government tweets that attack mastermind was mohamed mohamud . al-shabaab threatens `` another bloodbath '' in kenya .\nimage was taken by emergency services officer scott murray who dubbed the phenomenon ` looping lightning ' a bolt of lightning is shown leaving the top of the cloud before looping back towards the earth . lightning is caused when positive and negative charges build up in a cloud to a level where one leaps to the other . as a result lightning has been seen striking the ground from a cloud and vice versa , and can move between clouds .\nsteven gerrard no longer has chance of ending liverpool career on high . the liverpool ace was hoping to win fa cup in last appearance for reds . gerrard will face the likes of hull , qpr and stoke in final six matches . read : gerrard faces a miserable farewell tour with liverpool trophyless .\nzodiac aerospace revealed new designs for cabin crew quarters based on feedback from airline workers . the luxury concept aims to maximise space , comfort and privacy , with a bunk bed system . each bunk has a personal entertainment and air-conditioning system and lie-flat area . areas are hidden away from passengers behind concealed doors on the lower deck .\nnondescript semi-detached home for sale in horfield , bristol , is an unlikely collector 's paradise . house has gone untouched for more than 80 years and comes complete with stain-glass windows . the timewarp home also boasts oil-fired central heating and comes with original bathroom and kitchen .\nmethyl bromide is suspected to have been used improperly several times in the u.s. virgin islands , local officials say . teen brothers exposed to the pesticide while on vacation are both in comas ; parents are recovering .\nfemail has compiled the best budgeting tips for brides-to-be . seat guests on larger tables to save decor costs . opt for family-sized meals on the table rather than three-course meals . offer a signature cocktail menu rather than an open bar .\ngermanwings plane was about to take off when bomb threat was received . pilot was forced to evacuate the plane while police conducted search . sniffer dogs found no evidence of explosives and no one was hurt . threat comes less than a month after germanwings plane was deliberately crashed into mountain in the french alps killing all 150 people on board .\ntottenham are sitting sixth in the premier league after a long season . that place would see them qualify for the europa league next year . but in the past it has been said to cause them more harm than good . christian eriksen says he wants to qualify as it helps attract top players . tottenham 's europa league participation was a factor in the dane signing .\nsuzy lamplugh trust said slogans make the crime seem ` humorous ' charity warns joking about stalking can prevent victims coming forward . t-shirts joking about stalking are sold online in various us and uk stores . one in six women will be stalked at some point in their life .\nbritish scientists invents robotic hands able to cook a meal from scratch . hands each governed by 24 motors , 26 micro-controllers and 129 sensors . the # 10,000 -lrb- $ 14,000 -rrb- kitchen device will be sold from as early as 2017 .\nloeb says he filed the lawsuit and does n't want want money from his `` ex '' nick loeb reportedly wants to prevent vergara from destroying the embryos . vergara spoke of freezing embryos with loeb in a 2013 interview .\nhannah mcwhirter , 21 , had threesome with co-worker and her husband . exchanged texts with dionne and shaun clark after saying she had fun . but when mcwhirter 's boyfriend found out she claimed she had been raped . she has now admitted wasting police time and will be sentenced in may .\nprosecutors have called more than 100 witnesses to testify . defense team expected to wrap up within a day or two . the 15 jurors could be sent out early next week to deliberate . hernandez has pleaded not guilty to shooting dead odin lloyd .\nwinston reid has been out of action since injuring his hamstring in a 1-0 defeat by chelsea on march 4 . reid returned to full training during the international break . enner valencia will not be available for the clash with foxes .\nelection candidates failed to check spelling , punctuation and grammar . derek tanswell and sharon snook 's leaflet said ukip will protect ` boarders ' teacher , who helps children born abroad with their english , responded by circling mistake and said : ' i think you mean borders ' mr tanswell left lib dems last month and claims they are behind leaflet .\ndaisy goodwin has had problems with head lice since she was 19 . she says she 's suffered with the itchy parasites at least 100 times . a nit is the egg sac laid by female lice on human hair shafts .\ntomas berdych beat juan monaco 6-3 , 6-4 in the miami open last-eight . the czech now goes on to play andy murray in friday 's semi-finals . berdych and murray contested a fiery match at this year 's australian open .\na native american from a tribe not recognized by the feds wins the return of his eagle feathers . an irs accountant is fired for insisting on carrying a symbolic sikh knife to work . a group of chicago pastors takes on city hall over its permits for new churches and loses .\nnicholas tooth , 25 , was playing for the quirindi lions in regional nsw . on saturday he hit his head on an opponent 's shoulder during a tackle . he was airlifted to newcastle 's john hunter hospital in a critical condition . on sunday mr tooth , who had been living in sydney , died in hospital .\nthe labour leader 's looks proved an unlikely hit with twitter users . one described him as a ` sexy beast ' while another liked his ` sexy grey tie ' mr miliband 's smoulder and the silver streak in his hair proved popular . a vine showing mr miliband smouldering quickly went viral .\nanti-vaccination group get rid of sids has had its charity status revoked . group was behind seminars with anti-vaccine campaigner sherri tenpenny . the u.s.-based speaker was set to speak across australia earlier this year . but dr tenpenny cancelled after she received threats and feared for safety .\nlatest group of migrants rescued from mediterranean includes 59 children . picked up off italian coast as families make desperate bid to reach europe . comes days after 900 men , women and children died in capsize disaster .\non april 16 , molly parks was found in the bathroom of the new hampshire pizza restaurant where she worked with a needle still in her arm . her family wrote an honest obituary announcing her death and detailing her ` bad decisions including experimenting with drugs ' she had been addicted for 5 years and previously had a near-fatal overdose . her family said they are sharing her story as a warning to other families and to plead with them ` to stay on top ' of their loved ones with addictions .\nsaige 's rant is captured on film by her mother who put it online . she loaded the funny video on to her youtube channel fourth st. james . clip in which little girl threatens to leave has been watched 120,000 times . saige : ` this is way dirty , it has no space . my room is a disaster '\nbayern munich were beaten 3-1 by porto in the champions league . pep guardiola and the squad returned to germany on thursday . karl-heinz rummenigge refused to criticise the players , blaming injuries .\ntottenham full-back kyle walker sustained a foot injury following a collision with burnley 's kieran trippier during the draw at turf moor on sunday . early fears that the foot was broken have been allayed following scans . spurs are hopeful that the england international will return soon .\ndespite ` keeping a low profile ' crystal o'connor and her father kevin o'connor went on fox news to discuss their controversial comments . crystal , who told a reporter that she would not cater a gay wedding , revealed on thursday she has never catered any wedding . when asked if they 'll re-open kevin said he initially shut down because he ` could n't tell if they were getting real orders ' crystal added that they 'll 're - open soon ' but said she did n't know when . revised indiana law : no one has the legal right to ` refuse to offer or provide ' goods , services , facilities or employment to anyone in previously protected classes or based on sexual orientation or gender identity '\nronan ghosh , 39 , was shopping at tesco store in birmingham , west mids . he was caught on cctv putting expensive bottles of wine and meat in bag . businessman runs a # 16million-a-year global recycling firm in solihull . ghosh admitted theft at court and was given 12-month community service .\n3d sonar images of the massive ship revealed many features were still intact . discovered near california 's farallon islands with hull , deck well preserved . it was underwater for 64 years after being used in atomic bomb tests 1940s . controversy surrounds its sinking as some believe it contaminated waters .\nfamilies flee parts of western iraq amid continuing onslaught from isis fighters . officials there say the iraqi government is failing to protect them . thousands have been forced to grab what they can and head east toward the capital .\njamie vardy scored late winner to ensure his side claimed all three points at the hawthorns . west brom led for the majority of the premier league clash thanks to a goal by craig gardner . darren fletcher opened the scoring before david nugent levelled the scoreline after 20 minutes . robert huth struck with 10 minutes to go to make it 2-2 before vardy hit winning goal . west brom wore 1968 fa cup kit in honour of former striker jeff astle on ` astle day '\nretail experts say sales of royal memorabilia are unlikely to top # 70m . by comparison , prince george 's birth resulted in a # 247m splurge . between july and august 2013 , # 70m was lavished on souvenirs alone . the newest royal is expected to have a big long term impact however . sales boost will be particularly noticeable if the new baby is a girl .\njacob church , 21 , and joe tobin , 29 , were locked inside bank vault . 6mx6m bank vault was one of the rooms on show at a cardiff art exhibition . pair only met earlier in night and inadvertently locked door behind them . had to be rescued by fire crews who drilled through thick concrete walls .\ntwo 21-year-olds and a 25 and 22-year-old collapsed on the vessel on good friday . they were rushed to st vincent 's hospital in a critical condition but are now stable . on friday afternoon , about 800 partygoers poured off the bella vista boat after the party came to an end . the boat , which was hosting a ` dirty funken beats ' party , left king street wharf at noon . police say they discovered cocaine , marijuana and mdma before the boat left the wharf .\nlocal councils are urged to draw up maps of the residents who are at risk . essex and gloucestershire have already made ` loneliness maps ' experts warn that being lonely can lead to serious health problems .\nbali prosecutors want an australian man allegedly caught smoking a joint on the beach to serve up to 12 years in jail . nicholas james langan , 24 , from townsville , was arrested about 1.00 am on january 27 at a beach in canggu , north of kuta . police allege he was smoking a joint at the time of the arrest . prosecutors said he possessed a small bag of marijuana weighing 0.86 grams .\npolice say they ca n't confirm whether jones was involved in the crash , which injured a pregnant woman . jones is the reigning ufc light heavyweight champion .\namericans on the no-fly list will now get info about why they 've been banned from flights . aclu says the policy still denies `` meaningful notice , evidence , and a hearing ''\nian gibson , 55 , was hunting in zimbabwe for an american client . he was taking a rest when he spotted the bull elephant in the zambezi valley . approached it to measure ivory , fired one shot then was crushed to death . funeral to be paid for by dallas safari club , where he was a popular figure .\nheated open-air swimming pool to open on the thames in two years ' time . celebrity backers tracy emin and david walliams speeded the plans along . the social enterprise scheme is set to benefit local groups and the elderly . pools will use sophisticated filtration system to clean polluted river water .\nmillie-belle diamond is just 14 months old but has 115,000 instagram fans . her mother schye fox styles her outfits and snaps photos with her iphone . ms fox first set up her baby 's instagram account to share pics with family . the mum , from sydney 's northern beaches , wanted to let her family in wa and queensland see how millie-belle was growing . millie-belle is now sent designer garbs to wear in her photos .\njessica mauboy and gq editor among those who had tablets stolen . $ 899 personalised lenovo tablets were gifted to front row guests . toni maticevski presented ss16 runway show at carriageworks in sydney .\nair strikes were launched by saudi forces a month ago against rebels . saudi forces have focused on beating back shiite houthi rebels in yemen . prince alwaleed bin talal pledged bentleys for pilots involved in bombings . he made pledge on wednesday after bombing raids appeared to resume , despite an official announcement that they would be halted last night .\nkim roberts worked as a housekeeper for dowager countess bathurst . she admitted stealing antiques and picasso sketch from her country home . roberts confessed to taking antique vases , a car and committing fraud . she took the items while she was employed at cirencester park .\nharold henthorn is charged with murdering his second wife and being investigated over the similar death of his first wife . he has demanded that he gets access to the $ 1.5 million life insurance payout from his second wife 's death to fund his defense . prosecutors are opposing move to access the funds .\nsylvia matzkowiak , who goes by goldie berlin , is a german instagrammer , travelling everywhere from fiji to canada . though the blonde gypsy may have been born in california , she 's become famous for her stunning balkan snaps . and when it comes to celebrities , shay mitchell and beyonce are redefining what it means to be a jetsetter .\nin march atlanta-based reverend creflo dollar launched private jet appeal . he asked 200,000 people for $ 300 to fund $ 65million gulfstream g650 . defending action , recently told a congregation ` devil ' was discrediting him . also claimed critics do n't understand preacher 's work or need for a plane .\nmanager of rex cinema in berkhamsted cancelled regular baby matinees . james hannaway , restored 1930s cinema in 2004 , explained reasons online . he said staff were fed up with ` whingeing , bitching , snitching and the law ' mr hannaway also claimed they had been forced to reconsider film ratings .\ntinder only displays the last 34 photos - but users can easily see more . firm also said it had improved its mutual friends feature .\na video uploaded by youtube user shkesi shows a baby girl mesmerized by the mothering hen . as the plush bird bounces up and down and pops out an egg the infant can barely believe her eyes .\nlucas akins scored twice as burton albion were promoted to league one . morecambe victory secured jimmy floyd hasselbaink 's side promotion . shrewsbury are just one victory away from securing league one football . bury beat portsmouth to secure record seven away wins in succession .\nthe 79th masters tournament begins on thursday at augusta national . tiger woods and rory mcilroy are among the leading contenders . it has seen many shots which have gone down in golfing legend . seve ballesteros , phil mickelson and nick faldo all made history .\ndanny eckhart , a reserve officer from st. tammany parish in louisiana , was arrested saturday and stripped of his commission . authorities say he drunkenly took a patrol boat out on the tchefuncte river then crashed it into t-river bar and restaurant . st. tammany parish police say he was not on duty . he 's been charged with unauthorized use of a movable and operating a vehicle while intoxicated .\ngeorge went missing from north wales home and turned up in yorkshire . runaway 18-year-old tabby has been reunited with owners after five weeks . they believe he ran off towards caravan park and hitched a 128-mile ride . he was found ` poorly , thin and grumpy ' on julia hill 's doorstep last week .\nart lovers flock to the city of canals set on a lagoon in the adriatic every two years for the 6-month cultural festival . the atmospheric waterways and majestic buildings meant it was chosen by the clooneys for their nuptials . the clooneys ' favourite hotels are some of the the most beautiful in italy - but they do n't come cheap .\nmartin skrtel has been linked with a move to wolfsburg and napoli . but the liverpool defender has admitted he wants to stay at anfield . skrtel 's agent karol csonto says new contract should be finalised soon . the 30-year-old has made over 200 league appearances for the reds . read : liverpool set for summer overhaul with ten kop stars on way out .\ncamden , new jersey , police lieutenant benito gonzalez , 46 , pleaded guilty to a lewdness charge after touching himself inappropriately in a starbucks . gonzalez says he does not remember the incident and claims it was the result of trauma from a near-death experience more than three years ago . gonzalez , who is suspended without pay , is fighting for his more than $ 60,000 pension , but county officials are pushing for his termination .\nexchange facebook check-ins for free cocktails with drinki . thousands of wine tasting notes at your fingertips with berry bros. app . plan balanced meals with smartmeal which calculates nutritional content .\nbarcelona beat getafe 6-0 at the nou camp on tuesday night . lionel messi and luis suarez both scored twice , while neymar also struck . the front three have now scored more than 100 goals this season .\nfrench full back says juve played ` the italian way ' on his return to monaco . evra made no apologies for serie a club 's pragmatic but effective approach . former manchester united ace questions the mentality of french teams . evra has urged team-mate paul pogba not to rush his return from injury .\nhusband william snyder has been charged with evidence tampering . was arrested on friday in new york state in a small town motel . kelly jo snyder was last seen alive on easter sunday by her family . snyder 's body was found in a local river near to her home in pennsylvania . police say william snyder has admitted moving her body from their home . an autopsy is being carried out on the mother-of-three with results pending . police in renovo say that more charges could be brought against snyder .\ndelaware rare book dealer ian brabner bought the form at ephemera show . it 's dated august 21 , 1921 , and lists 20 questions for potential kkk recruits . questions include ` are you a jew ? ' and ` do you want white supremacy ? ' .\nbarry bonds has been cleared legally after 11 1/2 years in court . when he answered a question about steroid injections by saying he was ' a celebrity child , ' he was convicted of obstruction of justice . a federal court ruled his meandering answer before a grand jury in 2003 was not material to the government 's investigation into illegal steroids .\nian harris , 51 , is challenging dvla over rights to wear colander in licence . he claims it is the equivalent of a muslim woman wearing a hijab in photo . father-of-one turned down by driving agency but is making a second bid . church of the flying spaghetti members say colander is religious garment .\ndavid villa had a season at atletico madrid before joining new york city fc . the former spain forward struggled for form at the vicente calderon . villa was watching tuesday 's nights champions league madrid derby . diego simeone 's men were held to a goalless draw by their neighbours .\nup to 2500 passengers and crew stranded outside sydney harbour as massive storm batters the city . passengers report large waves were crashing into the ship right through the night and into tuesday . the vessel has suffered damage with a satellite damaged and a door ripped open by the crashing waves . carnival cruise lines hopes to have the cruise-liner dock on wednesday but there are fears they will have to wait another 48 hours . 11 metre waves have been recorded off-shore . weather conditions are expected to worsen in the afternoon with 100kph winds on the way .\nrobin van persie has been linked with a move from manchester united . holland international 's son shaqueel has been showing off his skills . the dutchman 's son scored with a scorpion kick made famous by colombia keeper rene higuita .\ndr adam cobb , 45 , was arrested in portsmouth , new hampshire on friday . he allegedly uploaded images of child pornography to tumblr website . the 45-year-old held senior military and government roles in australia . he was in the us working as a research professor and director at the prestigious us naval war college in rhode island . if convicted of the child pornography charges he faces 20 years ' jail .\nthis book is an exquisite account of what farming life is really like . the stark prose brilliantly evokes the horror of the foot-and-mouth of 2001 . rebanks studied for a degree at oxford before returning to his rural roots .\nmemphis depay is being targeted by manchester united and liverpool . the holland international is linked with a # 25million move from psv . but he has held talks with paris saint-germain over a potential switch . read : depay is like a young cristiano ronaldo , says ronald de boer . click here for all you need to know on depay .\narsenal face chelsea at the emirates stadium on sunday afternoon . cesc fabregas makes his first return to his former club in the clash . arsenal manager arsene wenger wants fans to respect ex-players . the gunners had the chance to re-sign fabregas but he went to chelsea . wenger refuses to say if he regrets that but admits he wishes he never left . read : arsenal can beat chelsea , says arsene wenger . arsenal vs chelsea special : cesc fabregas makes emirates return .\nthe two males arrested are 21 and 15 years old , st. louis police say in a tweet . a video that went viral showed three black males attacking a white man .\neden hazard and loic remy hit the net as chelsea beat stoke 2-1 . charlie adam hit the net from 66 yards for stoke to level the scores . the moment is one to forget for chelsea goalkeeper thibaut courtois .\nfa youth cup final first leg between man city and chelsea is on monday . chelsea are in their fifth final in six years and won in 2010 , 2012 and 2014 . man city last lifted the trophy back in 2008 after beating chelsea 4-2 .\nsean bowen maintained three-winner lead in conditional jockeys title race . bowen scored aboard abidja at newton abbot on monday afternoon . while , nico de boinville was victorious on one lucky lady at kempton . the latter can close gap with rusty nail and taylor at exeter on tuesday .\nthe 44-year-old came under fire last month after she tweeted ` ten rape prevention tips ' aimed at male attackers . in the levo league 's ask4more campaign video , sarah recalls a time she was discriminated against because of her gender .\nrachel sandridge , 29 , from maryland , says she was shocked at the unexpected diagnosis but thankful it was discovered . sandridge was due to undergo surgery after her weight reached 430lbs . news was even more devastating as only two years earlier her father has died from cancer . she is now cancer free and has dropped 10 dress sizes .\nblack mass is set to be released in september 2015 .\nlooking after a newborn is one of the most exhausting periods in life . new mums are surviving on little sleep and providing round-the-clock care . when friends and family visit the baby , they have several annoying habits . parenting blogger emily-jane clark shows how not to annoy a new mum .\nuefa will make a decision on september 's match on may 21 . scotland are set to face georgia in tbilisi on september 4 . uefa has opened disciplinary proceedings against the georgian football federation following recent crowd trouble . georgia fans twice invaded the field of play during sunday 's 2-0 defeat to germany in tbilisi . scotland currently sit third in group d , a point behind leaders poland .\nparents spend more on first child because of excitement and inexperience . survey by debenhams shows more pictures and videos taken of first child . second children have to put up with fewer new clothes and cuddly toys .\nthe coach burst into flames while on the a2 slip road to the m25 at dartford . the blaze sent plumes of black smoke drifting across the carriageway . it is thought that the fire began in the engine and spread to the rest of the coach .\nliverpool lost 2-1 against aston villa in their fa cup semi-final on sunday . reds are seven points adrift of fourth-placed man city in the league table . no liverpool boss since 1950s has gone three seasons without a trophy . read : liverpool set for summer overhaul with ten kop stars on way out . read : rodgers has conviction quashed after rental property fine .\nemmanuel sithole was attacked by a mob who repeatedly stabbed him and beat him using a metal wrench . south african gang carried out the sickening murder because mr sithole was born in neighbouring mozambique . killing took place in alexandra township near johannesburg after a night of xenophobic looting and attacks . locals blame migrants from elsewhere in africa for a lack of jobs - with neighbours turning on one another . in a chilling twist mr sithole did not receive treatment at nearby medical centre because foreign-born duty doctor failed to turn up for work as he feared being attacked . warning graphic content .\npet cat marv became stuck in five inch gap between two garages in bristol . marv was stuck upside down in the small enclosed space for two hours . firefighters were forced to chisel through a wall in order to free him . he was then reunited with his owners and luckily was uninjured .\nthe least known of the dutch cities , the hague was a village until 1806 . it owes its growth to louis bonaparte , napoleon 's brother , who ruled here . the city has a wealth of art , including vermeer 's ` girl with a pearl earring '\ncompanies will have to reveal names , ip addresses and residential addresses of 4,726 people who uploaded the film online illegally . this will allow the film 's copyright holders to seek damages or court action . internet provider iinet warned they could demand up to $ 7000 . justice nye perram ruled that individuals ' privacy must be kept and all letters from the copyright holder must be sent to him first .\na man contacted police after noticing he was driving in front of the truck that had been stolen from him earlier that morning , police said . the truck was swiped on victim 's birthday . police attempted to stop the stolen vehicle -- but the driver , 29-year-old terry proctor of piedmont , alabama , did not stop , leading to a pursuit . the driver crashed the vehicle and was ejected as the truck rolled over . proctor was captured after a foot chase and was booked into a jail .\nthe usc women 's tennis team won the pac-12 championship on thursday . the girls defeated the women of ucla 4 - 3 . while celebrating , they smashed and broke the trophy .\nbaptism held at saint james cathedral in jerusalem 's old city . khloe kardashian is godmother while priest acted as north 's godfather . child wore white baptismal gown in keeping with tradition . north now officially a christian and a member of the armenian church . family dined with jerusalem mayor after the ceremony .\njean-mcconville , 37 , was taken from her belfast home by masked gang . she was accused of being a british army informer by republicans . the mother-of-ten was suffocated with a plastic bag and shot dead . gerry adams said incidents like her murder happen ` in every single conflict ' .\nfloyd mayweather faces manny pacquiao in las vegas on may 2 . mega-fight to become highest grossing pay-per-view event in sport . mayweather 's victory against saul alvarez currently tops the list . american fighter will pocket upwards of # 111m if he goes the distance . pacquiao could earn close to # 62m if the fight last 12 rounds . read : sportsmail takes a look inside both boxers ' training spots . click here for the latest floyd mayweather and manny pacquiao news .\ntoto wolff says the mercedes drivers may be unhappy with some calls . lewis hamilton and nico rosberg have fallen out after the chinese gp . ferrari are proving tough competition and wolff says they must win .\nher body was discovered by hotel staff face down in bath . believed charmain adusah had been dead for four days when found . self-proclaimed prophet accused of leaving hotel in a hurry . she was pregnant and had son , eight , from previous marriage .\nnorthern territory 's chief minister adam giles issued harsh warning . minister for children and families john elferink also made the threat . they say children who throw rocks at police will be taken into care . ` parents should not doubt our resolve to do this , ' mr giles said . nt police have seen a recent rise in youth crime in alice springs . on monday 50 young people threw ` large rocks ' at police . by wednesday night , however , there was no rock throwing reported . police explained to daily mail australia it was not a ` regular occurrence ' no police officers have been harmed during the rock throwing .\nanimal liberation victoria activists who broke into wagner 's poultry farm . activists found birds sick and dying in terrible living conditions . hens were in such a bad state they had to be removed from the cages . wagner 's poultry farm denied they had done anything unethical . government department found no breaches under animal cruelty laws .\nworld 's best surfers have taken to their boards for the margarent river pro . the dangerous surf break , ` the box , ' has initiated spectacular wipeouts . australian josh kerr faceplanted into the reef when he lent too far forward . adam melling and owen wright also succumbed to the huge surf break .\nmichael foster denied launching a foul-mouthed attack at a rival candidate . mr foster objected when a candidate mentioned his # 1.5 million home . the former literary agent was at a public hustings in cornwall . loveday jenkin challenged mr forster over the value of his second home . the above article has been amended to make clear that loveday jenkin is standing for the cornish party mebyon kernow not the cornish nationalist party . .\nhaley fox , 24 , of turner , oregon , fractured 26-year-old samuel campbell 's skull with a baseball bat at her home last wednesday . she offered him wine at her home and then told him to ` close his eyes ' . fox and campbell , of adger , alabama , had been in a relationship for around two years after meeting online .\ncologne defender kevin wimmer is a # 4.4 million target for tottenham . austria boss marcel koller said ` he switches in the summer to england ' . the 22-year-old says it would be a ` dream ' to join a top club like spurs . wimmer is relishing the challenge of adapting to the premier league .\nnewcastle set another record as losers of the last five tyne-wear derbies . they played in grey and put in an equally dismal and uninspired display . defeat came after newcastle announced club record profit of # 18.7 million . they were left to rue decision to ditch their black and white stripes .\nthe millers fielded on-loan farrend rawson in 1-0 win against brighton . derby defender 's youth loan extension was n't handled correctly . rotherham now just one point ahead of the championship bottom three .\nstriker jay hart , 24 , was caught having sex with supporter after 4-1 defeat . he was filmed with the blonde in dugout while wearing tracksuit . his girlfriend , who has two children , slammed those who filmed sex clip . mr hart has been sacked from non-league clitheroe fc in lancashire .\nmr turnbull was interviewed about his childhood and his political stance . he also admitted he planned to run for prime minister if tony abbott had been successfully toppled in february 's leadership spill . the words ` primed minister ' were controversially also printed on the cover .\nparent genti rustemi 45 , dropping off daughter and refused to slow down . he took child to school , then returned and punched lollipop man john doyle to the floor in ` repugnant ' attack in front of schoolchildren . chip shop bosses admitted attack and given suspended sentence . grandfather says rustemi 's failure to stop was ` like going through a red light ' , and both he and the children ` could have been run over '\nben morgan broke his left leg playing against saracens in january . morgan last played for england against australia back in november . england head coach stuart lancaster is due to name a 45-man world cup training squad next month .\ngerman magazine uncover ` blueprints for islamic state ' in syria . handwritten by former member of saddam hussein 's iraqi army . details ` stasi-like ' system of islamic state leaders spying on each other . outlines how isis would infiltrate villages through recruiting spies .\na u.s. citizen from the middle east who died of variant creutzfeldt-jakob disease in texas in may 2014 likely ate contaminated uk meat . investigators say the unnamed man , who was in his 40s , likely ate the tainted meat before moving to the u.s. in the 1990s . variants creutzfeldt-jakob is a deadly neurological disease caused by abnormal proteins -- britain 's seen hundreds of cases since the 1990s .\ngeorgia state patrol provides more details of crash . georgia southern university mourns five nursing students killed in auto accident . five cars and two tractor-trailers were involved in crash on interstate 16 .\nfive young women have been detained by china since early march . they campaigned against sexual harassment . their detention has attracted international criticism .\ntaxi driver has been arrested on suspicion of molesting a british woman . man , known as salim , is accused of assaulting tourist in jaipur , india . police confirmed he is being held after statement taken from alleged victim . incident follows a number of sexual attacks in india , on locals and tourists .\nmelanie and vanessa iris roy , of charlotte , north carolina , have both always wanted to be mothers . they decided to have family together and that each would carry a child , with vanessa giving birth to son jax in 2014 . melanie then became pregnant and the women welcomed their daughter , ero , months later . couple documented the experience and shared the photos of how they created their new family on instagram .\njohn carver insist he 's enjoying the newcastle job despite his results . the 50-year-old believes he 's getting the best out of the players . newcastle have won just twice since carver took charge at the club . click here for all the latest newcastle united news .\ngovernor david ige said he has n't decided if he will sign bill into law yet . bill has $ 10 fine for first-time offenders , increases to $ 50 for next offenses . similar bans exist in hawaii county and new york city . bill 's opponents say it would be unfair to allow people to join the military but prohibit them from smoking a cigarette because of their age .\nfifty years after the futuristic puppet show launched itv is bringing it back . it is computer-generated with more women and multicultural characters . lady penelope lost twin-set and pearls and looks like a lady secret agent . parker has dropped his chauffeur uniform and sports a roll-neck sweater . thunderbirds , itv1 tomorrow at 5pm .\nbrentford beat local rivals fulham 4-1 in the championship . mark warburton 's side moved up to fifth in the table with their win . the bees boss admitted he is ` really pleased ' with the result . fulham manager kit symons says his team are not safe from relegation .\nsix leeds players withdrew from squad for saturday 's match with charlton . manager neil redfearn described the events as ` freakish ' ahead of defeat . former leeds captain trevor cherry says it is ` disgraceful ' behaviour . club president massimo cellino insists he had nothing to do with the events . redfearn 's side suffered a 2-1 championship defeat to charlton .\nofficers were seen running around as they attempted to catch the foal . the incident took place around 10am on tuesday along interstate 35w . traffic was backed up as a result . sheriffs eventually caught the pony and returned him to his owner .\nharry was with his parents in cambridge when he was caught under wheel . he was dragged along path with blood pouring from his face and mouth . mother angela buckler said cyclist rode off without showing any remorse . police said female cyclist did not stop and urged her to contact officers .\ncontrary to the abba song , napoleon did not surrender at waterloo . templar hospice is being turned into a restaurant-cum-brewery , museum . may sees the 75th anniversary of ` glorious failure ' of operation dynamo .\ntv chiefs have announced drama poldark will return for second season . about 8.1 million people on average tuned in to watch each episode . second series will be based on winston graham 's third and fourth books .\niron man-style arm and hand was built by laser expert patrick priebe . it fires beams from the back of the wrist or from the wearer 's palm . in a video , the contraption is shown popping balloons and lighting matches . gadget is powered by lithium-ion cells and can be ordered from mr priebe .\nselena quintanilla-perez will be re-created as hologram-like figure . the tejano singer is first to be part of a new technology , says sister . selena was killed 20 years ago but remains hugely popular .\nmodels put aside their fear of heights to strut along a mountain path in central china . the challenge was part of the annual miss bikini of the universe contest , which has been running since 2005 . competition tests if people can ` keep their cool ' and has previously seen contestants parade in -16 degrees celsius .\nluke brett moore overdrew $ 2 million he did not have from a bank account . the goulburn man was found guilty of exploiting the loophole in february . he spent money on buying a maserati , an alfa romeo and a power boat . police raided his home in december 2012 and he will be sentenced friday .\nnaunihal singh stabbed great-grandfather ujjal singh with kitchen knife . came after argument over his son and daughter-in-law 's lack of children . was visiting son monty , 37 , and daughter-in-law balvinder , 42 , last year . naunihal jailed for at least 17 years in manchester after admitting murder .\nxabi prieto struck a 33rd-minute penalty to give real sociedad the lead . perez martínez equalised for deportivo five minutes before the break . gonzalo castro restored sociedad 's lead with a stunning volley . but verdu nicolas rescued a point for the visitors late on .\nsam schmidt drove a sports car on the long beach grand prix road course sunday despite being paralyzed from the neck down . the modified car allowed him to navigate the vehicle independently using his head and mouth . in 2000 , schmidt suffered a spinal injury while testing in florida , his team thought he would never drive again .\nmark lippert was attacked in early march by a knife-wielding pro-north korean activist . needed 80 stitches and may have suffered nerve damage as a result .\nhenri morris , 67 , was the president of edible software solutions . jailed for 10 years for ` calculated ' and ` choreographed ' abuse . caught in an fbi sting after one of his victims approached investigators .\nqueensland mother angela postle discovered the phenomenon last month . she sliced some oranges and found they turned purple in her kitchen . ms postle sent them to health authorities but they have failed to explain it . the samples have been sent to a molecular laboratory for further tests . food experts have voiced their bewilderment at the images of the fruit .\ncarwyn scott-howell died on a family holiday in flaine in french alps . he went ahead alone when sister fell and his mother stopped to help . skied into dense woodland before sliding towards a 164-foot cliff . thought he may have entered woodland as thought it was shortcut to hotel . family described him as a ` very daring , outgoing , determined little boy '\ndavid hibbitt was diagnosed in 2012 after initially being told he had piles . underwent chemo , radiotherapy and surgery but was told he was terminal . desperate , he researched online and bought cannabis oil , at # 50 a month . credits it with his remarkable recovery and is now cancer-free .\narsenal host liverpool in explosive return from international football . manchester united feature at saturday 3pm when they take on aston villa . league leaders chelsea welcome stoke city in saturday evening kick off . barclays premier league champions manchester city travel to crystal palace for monday night football . sunderland and newcastle united clash in wear-tyne derby on sunday .\nfarryn johnson was fired from a hooters in 2013 . she has claimed that a supervisor at the time had an issue with her getting blonde highlights . johnson has alleged she was given reduced shifts , written warnings and later terminated . she is now set to receive $ 250,000 covering both legal fees and lost wages from an arbitration ruling . hooters has said her ` claims of discrimination are simply without merit ' the company has said johnson 's lawyers are actually getting $ 244,000 , while johnson herself is getting around $ 12,000 .\nfastest growing groups will be from pakistan , bangladesh and africa . minority population will increase three times faster than whites to 2051 . between 2011 and 2051 total population will increase from 63.4 m to 77.4 m. campaigners warn this will put strain on housing , schools and the nhs .\nben hiscox , 30 , was playing for stoke gifford united in bristol on saturday . he slid on wet ground and ploughed into the building after going for a ball . striker was rushed to intensive care but died three days later from seizures . club spokesman said : ` no one is blaming anyone . it was a tragic accident '\nnewcastle have lost their last four premier league games . john carver 's side lost 1-0 to sunderland in the tyne-wear derby . the magpies have won just twice in 2015 ahead of their anfield trip .\nmartin skrtel caught daniel kolar in the face with a raised boot . slovakia continued their good recent form thanks to ondrej duda 's goal . it was third win over czech republic since break-up of czechoslovakia .\nletter was left in the treasury by the former minister liam byrne in 2010 . it said : ` dear chief secretary , i 'm afraid there is no money . good luck ' balls insists it was just a ` jokey note ' that should not be taken seriously . the tories this morning accused him of treating the public with ` contempt '\nplan hatched for chief secretary to the treasury to go to house of lords . polls suggest he is on course to lose his seat to the scottish nationalists . but he is a close ally of nick clegg and worked well with george osborne .\neight teams are left to battle for a place in the semi-finals of the european rugby champions cup . sportsmail takes a look at their strengths , weaknesses , key players and record in the competition up until now . the quarter-finals will be played over saturday and sunday april 4-5 .\ncourt imposed social media blocks after images of siege were shared . militants stormed an istanbul courthouse last week , taking him hostage . both he and his captors were killed during the subsequent rescue effort . blocks were lifted today after twitter , facebook and youtube agreed to remove images of the deadly siege from their sites .\nrichard kerr says he was taken from the belfast home to london in 1970s . claims he and two other youngsters were abused by ` very powerful ' figures . mr kerr , who now lives in dallas , texas , made a highly emotional return to london last month to visit the scenes of his alleged abuse . account provides the first clear link between three alleged major vip paedophile rings that operated in london and northern ireland .\ngerlayn ganci , 32 , repeatedly asked for sex by boss raymond townsend . long island 's us limousine and manager to pay $ 700,000 after firing . townsend sent text explaining reason was ` refused to have sex ' with him . married manager told her to come over when his wife was away .\nleicester defender matthew upson will miss out against former club . dean hammond and jeff schlupp to be given fitness tests by foxes . winston reid returns from hamstring injury for west ham united . hammers without enner valencia who is back in training . andy carroll , james tomkins and doneil henry also missing for west ham .\njudge issued european arrest warrant for colin shearing , of chichester . shearing , published as colin king , was convicted of indecent assault . he was released on bail and given a week to ` put personal matters in order . sentenced to three years in jail in his absence and faces additional sentence for absconding .\ncustomer witnessed dog being butchered at lo yen city restaurant . it was killed to be served as a pork dish , it has been alleged . police raided the restaurant and arrested five people , including the owner . officials on the scene discovered a decapitated puppy in a rubbish bin .\nking goodwill zwelithini allegedly compared foreigners to ` ants ' and ` lice ' back in 2012 the 67-year-old told followers homosexuals were ` rotten ' but father-of-28 's lavish lifestyle with his six wives is equally controversial . last year he declared himself bankrupt having spent # 250,000 on wedding . yet just last month he bought a mercedes for each wife - plus a spare .\na truck driver has been caught on camera intimidating road drivers . the driver was laughing while tailgating the men and flashing his lights . the incident started on warringah road and continued for 8.5 km . truck company ac & s say they have disciplined the driver .\naround 1,300 people have drowned fleeing to europe in the past two weeks . ed miliband called on the uk to take a ` fare share ' of refugees fleeing africa . he said it was unacceptable to abandon immigrants on makeshift boats . ministers claim rescue missions encourage migrants to attempt the journey .\nfloyd mayweather is set to take on manny pacquiao on may 2 . pacquiao 's promoter bob arum says contracts have n't been signed . arum says the draft he received is different from the agreed terms . tickets for the fight at mgm grand have yet to go on sale . mayweather vs pacquiao : wbc unveil $ 1m emerald green belt . mayweather ` is a control freak ' , says pacquiao 's promoter .\nmurder and torture charges for detroit mom after bodies found in her freezer . prosecutors accuse mitchelle angela blair of killing her 13-year-old daughter and 9-year-old son . their bodies were discovered in her freezer as she was evicted from her home last month .\nbrady cited ` prior family commitments ' in bowing out of meeting with obama . has been to the white house to meet president george w. bush for previous super bowl wins .\ncyclist wang pingan had his cycle stolen just days before completing an epic ride around china . locked bike was stolen outside an electronics market in shenzhen , guandong province . wang had vowed to complete his journey by foot , but police managed to recover it against the odds .\napril 19 marks 20 years since the oklahoma city bombing . the bombing was carried out by domestic terrorists . today 's domestic terror threats range from eco-terrorists to anti-government extremists .\nhamilton college in clinton received bomb threat and threat of shooting at 9.45 am . students and staff were urged to shelter in place , lock doors , draw curtains and stay away from windows . suspicious package found in kirner-johnson building ; bomb squad arrived from albany to investigate . a state trooper announced just before 12.40 pm there was no active shooter . all classes at hamilton were canceled for the day . suspicious package at kirner-johnson building was found to be harmless .\nmitchelle blair , 35 , is charged with with felony murder , premeditated murder and torture . in court she shouted : ` he 's never given a -lrb- expletive -rrb- about my daughter , ' about the father of two of her children ' . accused of killing stoni blair , 13 and stephen , eight , at home in michigan . blair 's two surviving children have been placed into a relative 's care . state officials are seeking to terminate blair 's parental rights to her two children , as well as the parental rights of her children 's fathers .\ncouncil chiefs attached the leaflets which promoted recycling to green bins . it told stratford-upon-avon residents what could and could not go in them . but embarrassingly , a footnote on the poster read : ` this is not recyclable '\nfacebook page ` the diggers are dole bludgers ' was created in january . the page claims returned australian servicemen are rapists and terrorists . one post says '' you have freedom of speech thanks to us . stop talking sh*t or we 'll f *** ing rape you c ** t ' social media users have criticised the page as shameful and insulting . a protest page demanding the removal of the page has been set up .\naaron cresswell gave west ham united an early lead with a stunning 25-yard free kick on seven minutes . hosts were denied all three points after marko arnautovic equalised for stoke city in the 95th minute . arnautovic had earlier seen two goals disallowed for offside during the upton park encounter .\nluke shambrook , 11 , was found after he went missing on good friday . he went missing in lake eildon national park - north-east of melbourne . his family had taken him to the park since he was just one year old . ` every year he 's been up and down the hills , ' his dad tim said . the autistic boy was found on tuesday by a police helicopter . doctors are amazed at how well he is doing considering his four-day ordeal . the boy was suffering from dehydration , hypothermia and exhaustion .\nrebecca lowe has helped to enhance premier league coverage in the us . the nbc anchor insists ` the premier league sells itself with its drama ' manchester united recent win over liverpool was the most-watched premier league game screened before 10am in us history . man united 's 2-1 win at anfield had an average audience of 1.2 million on nbc cable and spanish partner universo combined .\nwith room for 3600 , britannia is the largest ship built for the uk market . p&o 's new ship has a gourmet edge , with a host of restaurants on board . top chefs working with the ship include eric lanlard and mary berry .\nmelanie serita buck , 33 , accused of ` deliberately ' knocking michael buckley . there was ` altercation ' before she ` rammed him out of frustration ' , jury told . 60-year-old fell to floor , breaking two bones , and died three months later . buck , from bromley , denies manslaughter and gbh - the case continues .\nfigures come a week after jeremy clarkson was dismissed from the bbc . top gear took up first , third and fifth spots in iplayer top five for february . episode two of the bb2 show 's last series was watched 2,645,000 times .\nlewis hamilton roared to victory in bahrain to extend his lead in title race . it marked the world champion 's third victory from four races this season . he was interviewed on the podium by the legendary sir jackie stewart . and hamilton could do worse than learn a few things from the great scot .\nmarriam seddiq ensured models were turning heads on the catwalk . part of the st george new gen show of six up and coming designers . collection featured sheer fabric and racily cut designs . the raffles international showcase also caused a stir with racy designs . any step showed a dress made of just leather straps and buckles .\none direction star niall horan will caddie for rory mcilroy on wednesday . 1d released their debut album in 2011 , same year mcilroy won first major . niall is an honorary member at both mullingar and westmeath golf club . caroline wozniacki caddied for the northern ireland ace at 2014 masters . click here for all the latest news from the masters 2015 .\nadnan januzaj turned up at the snooker world championship in sheffield . the manchester united winger cheered on shaun murphy in last eight . murphy beat anthony mcgill to reach the semi finals at the crucible .\nmad men star was charged with assault for november 1990 hazing incident . allegedly viciously beat pledge for the sigma nu fraternity at ut-austin . hamm and other frat brothers put pledge through humiliating initiation . allegedly struck him with a paddle 30-times and set fire to his pants . the alleged victim 's mother called the police and arrest warrants issued . hamm had a summons issued to him after he left ut-austin in 1992 . the incident led to the permanent closure of the sigma nu fraternity .\nsummer robertson , 21 , drowned after being overcome by strong waves . she had been completing a 10-week volunteering course in south africa . four months on , her parents sarah and john have paid tribute to her . they say they take great comfort knowing she died doing something she loved .\nbobbi ann house , 39 , is currently on-the-run for check fraud . her and husband zackerie house , 27 , believed to be camping in oklahoma . allegedly used bad checks worth $ 13,500 in oregon , colorado and oklahoma . bobbi ann hit headlines in 2010 for marrying at 14 servicemen . she would move around different military bases stealing money . spent at least seven months in prison but was recently released .\nwarning : graphic content . footage was released along with other key pieces of evidence . video played in court shows truck pulling up to driveway of burger stand . his pickup then backs up after a struggle and runs over sloan 's leg . the vehicle is then seen plowing over carter , killing him . other pieces of evidence included an hour-long interview with cle ` bone ' sloan , who survived being run over by the death row records co-founder . a number of images taken immediately after his arrest were also released . close-ups of his face were intended to show injuries he sustained after being punched by sloan .\nformer gop representative compares president obama to andreas lubitz . bachmann said with possible iran deal , obama will fly `` entire nation into the rocks '' reaction on social media ? she was blasted by facebook commenters .\ndiego costa to be given late fitness test following hamstring injury . john obi mikel will not be included despite recovering from knee injury . jon walters expected to shake off a calk knock for stoke city . marc muniesa expected back after five games out with hamstring problem .\nben thurlow attacked paramedic rebecca hudson while in an ambulance . the drunk 23-year-old was being treated after receiving a head injury . he shoved the emergency worker twice forcing crew to call the police . he was spared jail after admitting assault at beverley magistrates court .\ndavid lammy said the snp was a party labour could ` do business with ' admission comes amid increasingly stark warnings over threat of snp . polls suggest the party is on course to win up to 50 seats on may 7 . john major will today warn that britain faces a ` daily dose of blackmail ' .\nmanuel pellegrini 's job at manchester city is precarious . the premier league champions have struggled this season . city met with jurgen klopp two years ago but opted for pellegrini . the dortmund manager will leave the club at the end of this campaign .\nferrari won the second grand prix of the season in malaysia . sebastian vettel 's victory was a shock given mercedes ' strong start . but ferrari 's technical director believes mercedes will be strong in china . the cooler climate should suit lewis hamilton and nico rosberg . click here for the latest f1 news ahead of the 2015 chinese grand prix .\nthe mistley thorn in essex is set in the heart of a historic coastal village . built as a coaching inn circa 1723 , the hotel offers award-winning dining . it has 11 bedrooms - four with panoramic views along the stour estuary .\nbrisbane designer raking in millions on the back of hollywood 's blockbuster moving ` the avengers : age of ultron ' . release of their new line caused the website to crash . some items sold out in minutes when launched this week . most expensive items are thor and iron man dresses at $ 100 . swimwear is among the cheapest to buy at $ 45 . fans of the series are buying up big because ` they are hoping to wear the outfits at early screenings of the movie ' .\nheather mack avoided the death penalty last week for murdering her mother and stuffing body in suitcase at bali hotel in august . the 19-year-old got 10 years because she needs to take care of daughter . andrew chan and myuran sukumaran were executed for attempting to smuggle drugs to australia . the penalty came a decade after their convictions . in that time , chan became a christian pastor and sukumaran an accomplished artist . australian barrister says sentences should reflect the seriousness of the crime .\ngeraldine jones charged with murder , kidnapping , criminal confinement . gary , indiana , woman , 36 , charged in death of samantha fleming , 23 . posed as a social worker to lure fleming and her baby from their home . had called the victim 's mother and lied to her to get information . allegedly stabbed fleming to death and hid body in a closet . jones had faked a pregnancy and planned to claim the baby girl , serenity . police tracked her to a hospital in texas , where she was visiting her mother . jones is now awaiting extradition to indiana .\napple 's sport , watch and edition wearables are cheaper in us and europe . the edition costs up # 1,100 more in the uk than it does in the us . but british prices include vat , while us sales tax is added on top . customers could save up to # 63 buying the sport abroad too .\nfbi director james comey suggested in remarks last week that poles were accomplices during the holocaust . comey 's comments are offensive to poles as they had no role in running death camps and were themselves victims of the third reich . poles see themselves as heroes of the war who have never been properly recognized , making the comments yet more hurtful . the remarks came shortly before the 72nd anniversary of the warsaw ghetto uprising , which was commemorated on sunday . the u.s. ambassador to poland , stephen mull , was called to the foreign ministry in a formal act of protest . the incident echoes a gaffe by president obama in 2012 when he referred to ' a polish death camp ' - he offered his regrets for the error .\ncoloring books made for adults are popular on amazon 's bestselling books list . books with calming , meditative and spiritual themes appeal to adults looking to unwind .\narizona police chief terry rozema has voiced his support for his officer after dashcam footage emerged . officer michael rapiejko is seen mounting a sidewalk in his speeding police car and knocking down armed suspect mario valencia . pozema argued that rapiejko may actually have saved valencia 's life because we do n't know what he would have done next . ` we do n't know that if -lrb- rapiejko -rrb- lets him go for another 10 seconds , -lrb- valencia -rrb- does n't take somebody out in the parking lot , ' rozema said .\njodi speidel , 46 , and her 45-year-old husband , randy , were found dead in their bellefontaine , ohio , home tuesday . couple had dragged two charcoal grills inside bedroom and locked door , but let their cats out and left note warning passersby of carbon monoxide . suicide comes two months after speidels launched online fundraisers asking for help because they were starving and on verge of eviction .\nus geological survey said quake just before 9pm had depth of five miles . was centered about four miles north of san fernando near interstate 210 . jolt was felt across san fernando valley and parts of los angeles county .\nangel di maria joined manchester united from real madrid for # 60million . di maria took the no 7 shirt upon his arrival at the english giants . 27-year-old also wears the no 7 jersey for argentina too .\npaul and laura elliott met half way round at st katharine docks . ceremony was witnessed by 80 guests . pair ran across finish line under a shower of confetti . returned to scene of ceremony for party later on . raised # 7,000 for cancer research in honour of paul 's father .\neddie hearn has offered carl frampton # 1.5 m to fight scott quigg . the matchroom promoter is keen on finalising a deal for the super-fight . fight date has been pencilled in for july 18 at manchester arena . hearn insists ` there will be no options , no rematch clause ' .\nracing grounds bans selfie sticks for may 2nd derby day and all live races . ban sparked by safety concerns for horses , roughly 160,000 spectators . museums are banning the technological toys as they become more popular .\nadam lyons , 34 , from east london , is in a relationship with two women . his girlfriends brooke , 26 , and jane , 25 , say they do not ` share ' him . they are all in love with one another . trio appeared on today 's this morning to explain why relationship works .\nmemphis depay has been linked with a summer move to man united . tottenham and man city are also said to be keeping tabs on psv star . depay has scored 19 goals in 25 league games so far this season . the dutch ace worked under louis van gaal at the 2014 world cup .\narsene wenger admits he can see why top teams have struggled against burnley . arsenal needed an aaron ramsey strike to earn narrow victory at turf moor . wenger hails burnley 's ` solidarity and organisation '\njermain defoe scored stunning volley as sunderland beat newcastle 1-0 . tim krul sportingly greeted defoe at half-time in wear-tyne derby . toon stopper hit back by stating defeat hurt him as much as any toon fan . dutchman also claims what he said to defoe could n't be repeated on tv . dick advocaat proud of his sunderland team and fans following win . defoe hailed his volley as one of the finest goals of his career .\nmassive hailstones already fell wednesday during the storm system 's first lashings in missouri , kentucky and kansas . strong storms also swamped indianapolis , cincinnati and charleston , west virginia at midday wednesday . experts warned that millions were under a moderate tornado threat wednesday evening into thursday .\nryan gosling 's directorial debut , `` lost river '' , is set in the city of detroit .\nmother-of-three georgina rojas-medina , 41 , was shot and killed by her common-law husband on saturday night . gerardo tovar , 44 , then turned the gun on himself in tulare , california . the couple 's bodies were discovered by their 4-year-old daughter who walked out of the house and asked a neightbor to call the police . the 4-year-old girl and two other siblings , ages 10 and 12 , were not hurt in the shooting .\npablo mandado and ilze zebolde left london last year on a quest to explore the world on bicycles . they camp or stay with couchsurfing and warmshowers hosts and spent an average $ 2.99 per day . pablo , from spain , and ilze , from latvia , moved to manchester together after meeting in riga in 2011 . they saved up for their travels , which they share on their website , while working in english restaurants .\nreport says north korea may have as many as 20 nuclear warheads . victor cha : washington has tended to downplay north korean threats .\nnick clegg made the admission in a rare joint interview with his wife miriam . lib dem said she decided against moving into ` government mansion ' ` discussion 's a rather grand word for miriam basically saying no , ' he joked . miriam claims he has put ` country above party ' at ` great personal cost ' tonight : spotlight nick clegg tonight -lrb- thursday -rrb- on itv at 7.30 pm .\ngeorginio wijnaldum is set to guide psv to their first title in seven years . dutch giants can win eredivisie with a win over heerenveen on saturday . manchester united , arsenal and newcastle have been linked with him . midfielder has scored 16 goals in all competitions for psv this term .\nlib dem leader makes highly unusual plea for help from party rivals . alex salmond bidding to be an mp after quitting as first minister last year . clegg boasts lib dems could be left with more scottish mps than labour .\nrose put himself in contention , ending the second day on seven under . it took a neat bit of psychology to rescue his round after a disastrous start . rose bogeyed three of the first four , finding himself playing from the trees . and that was where the magic pencil line came to his rescue .\nreanne evans faces ken doherty in world championship qualifier . she lost the first frame 71-15 against the 1997 world champion . evans replied well , winning the next three before the mid-session interval . but doherty fought back and leads 5-4 at the midway point . click here to follow reanne evans vs ken doherty live .\nbadou jack is the new wbc world super-middleweight champions . the 31-year-old beat anthony dirrell via a points decision on friday night . george groves will fight badou jack as his mandatory challenger next .\nactor bought blackadore caye , an unpopulated , private 104-acre belizean island , in 2005 for $ 1.75 million . he announced friday he is now building a luxury eco-resort there to open in 2018 . the resort will have villas over the water , artificial reefs with ` fish shelters ' and a nursery growing marine grass . dicaprio plans to rehabilitate the area , which has been over-fished and suffers from sand erosion . he is working with the nyc developers delos to build 68 resort villas and 48 private house . they will cost between $ 5 million and $ 15 million each .\nnathan priestly , 21 , slimmed from from 26 stone to 13 stone over two years . a failed suicide attempt at 18 was his catalyst for change . nathan , from norwich , traded alcohol and takeaways for the gym . he now wants to show his school bullies that he 's defeated them .\nthe doctor in is 's most recent propaganda video has been identified . tareq kamleh refers to himself as abu yusuf al-australi in the film . he calls on foreigners with training to join the isis health service . kamleh was identified after the propaganda film went viral . colleagues said he was a ` womaniser ' who drank alcohol regularly . they also said he showed no signs of defecting to the militant group . he studied at adelaide university before continuing his work in peadiatrics .\nclass of '92 owners of salford city discuss their non-league club . paul scholes , phil neville and gary neville co-own alongside former manchester united team-mates nicky butt and ryan giggs . salford currently top the evo-stik league first division north .\nlewis hamilton said at malaysian grand prix that contract was nearly done . british world champion is negotiating contract without an agent . hamilton admits it is unlikely mercedes deal will be agreed this weekend . driver is preparing for shanghai grand prix in china .\njohn higgins defeated judd trump 5-4 at the china open in beijing . he will play defending champion ding junhui in the quarter finals . there were also wins for mark selby , shaun murphy and kurt maflin .\npicture believed to be sole image of civil war ship revealed to be a fake . john potter , from savannah , admitted forging it with his brother in the 80s . image , part of the unofficial history of the ship , was never authenticated . faked using a fishing pole and a styrophome model from a historical film .\nparty on course to lose a third of the 57 seats it won in 2010 , sources say . clegg admits party is fighting ` tooth and nail ' in a tenth of constituencies . aides think that even 30 seats could be enough to hold balance of power .\noutraged food blogger allie dodds alleges fitness blogger and entrepreneur ashy bines used her recipes in her clean eating guide . ms dodds said ms bines had contacted her about using her recipes on her facebook page in early 2012 . but she was not credited in the book . she said ms bines had not specifically asked her whether the recipes could be used there . ms bines , from the gold coast , recently admitted that several recipes had been plagiarised . she blamed an unnamed ` nutritionist ' who had been working for her at the time , adding : ` it really sucks that this can happen ' . ms bines received several vile message following her plagiarism statement . one person wished her forthcoming baby would be ` born with down syndrome '\n#firebrittmchenry has become a popular hashtag on twitter . britt mchenry is a reporter for the sports network , and she is based in washington . she apologized on twitter for losing control of her emotions , not taking the high road .\ndavid billing , 48 , diagnosed with cancer after being left unable to swallow . had 14-hour surgery during which doctors sawed through his jawbone . needed new tongue created from arm skin , which allowed him to talk . but skin still has hairs on it , meaning he now needs to shave his mouth .\nthe presenter said disabled people should not be portrayed as victims . 70-year-old also claimed fears of islamophobia were victimising muslims . does not believe any politician is currently equipped to be prime minister .\nkevin pietersen has made a return to county cricket with surrey . the 34-year-old is determined to make a comeback for england . paul downton was axed as managing director of english cricket . pietersen 's surrey team-mate chris tremlett back him to return .\nthe contestant stormed off the show last august after dessert meltdown . this easter has seen traditional simnel cake overtake hot cross buns . the irish baker has given cake modern update with pistachios and figs .\npaula duncan is an australian actress famous for ` ajax spray 'n' wipe ' ad . previously starred in seventies shows ` the young doctors ' and ` cop shop ' jessica orcsik , daughter of duncan , found her after suicide attempt . duncan talks candidly about feeling rejected and attempting to take her life .\nchris gayle posted an instagram photo behind the dj decks on tuesday . gayle is in india ahead of the ipl season with royal challengers bangalore . royal challengers bangalore begin at kolkata knight riders on saturday . click here to read sportsmail 's ipl preview ahead of the tournament .\nfrida ghitis : isis and other jihadi groups see women as crucial in role of caliphate they want to create . she says the groups want to enslave women , tie them to a long outdated view of how society should work .\nthere are no english clubs left in the champions league or europa league . diego simeone admits he is surprised at the plight of premier league sides . he believes barcelona and real madrid are the top two clubs in europe . atletico madrid face real madrid in their champions league quarter-final .\nmichelle obama told talk-show host rachael ray that secret service agents taught her daughter malia how to drive . mrs. obama has n't driven herself in seven or eight years , she said . she added that driving gives malia ' a sense of normalcy , ' helping her feel like the rest of her friends who are also driving .\nbritish companies found oil and gas in a remote field north of the islands . comes days after minister warned of ` very live threat ' from argentina .\ncaroline wozniacki took to twitter to congratulate golfer jordan spieth . spieth won the first major of his career at the masters in augusta . but fans were quick to question wozniacki 's motives following his win . many asked whether it was a dig at former fiancee rory mcilroy . click here for more news and reaction to masters 2015 .\njan oblak kept a clean sheet as atletico drew 0-0 with rivals real madrid . carlo ancelotti admitted that oblak ` did a great job ' to keep his side out . diego simeone was also impressed with his goalkeeper 's performance . simeone refuses to blame sergio ramos for clash with mario mandzukic . second leg of their champions league quarter-final takes place next week .\npreacher trevor brooks has been refused a passport by the home office . brooks , 39 , is an associate of islamist firebrand preacher anjem choudary . a home office letter said he is linked to banned group al muhajiroun . it added he was assessed as being likely to travel to syria to fight for isis .\nalbert roux has been dating a string of ladies since divorcing heiress wife . they include a ukrainian cloakroom attendant , an artist and a tea hostess . the 79-year-old is said to have spent thousands on one of the women . last year it emerged his wife was divorcing him on grounds of adultery .\nstudy finds booze ` mimics ' how a person 's body demonstrates health . facial flushing and confidence perceived as ` healthy and attractive ' experiment by the university of bristol dubbed ` reverse beer goggles ' .\nbaltimore mayor says she wants to `` clarify '' use of the term . some community leaders in the city call the term equivalent to the n-word . others disagree and do n't want the debate overshadowing the issues .\nalexsandro palombo has created #briefmessage social campaign . italian artist asked women to write a message about violence on their pants . he says the response has been ` immediate and powerful ' .\nal qaida seized control of an airport , sea port and oil terminal in yemen . latest advance marks a major gain for al qaida in the arabian peninsula . came amid chaos pitting rebels against forces loyal to exiled president .\nthe pfa premier league team of the year was unveiled on sunday night . it included six chelsea players including captain john terry . man united , arsenal , liverpool , tottenham and southampton represented . the ea sports team sees diego costa and nemanja matic miss out . but blues midfielder cesc fabregas is included . sergio aguero , santi cazorla , aaron cresswell and phil jagielka also in . click here for all the latest premier league news .\nwallaby has been filmed ` punching ' a wombat in a victorian national park . the wombat approached the unsuspecting wallaby and was met with a fist . both animals went back to grazing in the area straight after the encounter . no animals were harmed during the writing of this article .\na new zealand family of fourteen walked out of remote christian sect . residents of gloriavale isolate themselves from the outside world . with a population around 500 , they do not use birth control . all residents are required to wear blue uniforms . they have advanced farming tech but rarely watch tv or listen to radio . the ` ben canaan ' family , as they are known , now live in timaru . they have been supported by local church who have rallied around them . the family have moved into a home and the father has a job as a farmer .\n18-year-old billy-anne huxham was abducted from her caboolture home . the car she was seen in has been found by police , investigations continue . police report she has made contact with a family member . she was allegedly taken by ex-boyfriend and wounded by a machete . reportedly has wounds on her legs and bruises on her face after the ordeal . hunt under way for carl garry chapman , 32 , seen driving with the victim after the alleged abduction and is understood to now have a firearm . perpetrator ` broke into a home and waved gun at residents ' after abduction .\noxford scientists say a mercury-like body struck the young earth . the mars-sized object would have been the heat source for our planet . the same object could have been responsible for creating the moon . it also explains where some rare-earth elements came from .\npremier league clubs on alert after shock reports from germany . klopp has told dortmund bosses he wants to leave in the summer . press conference has been scheduled for 12.30 pm . the 47-year-old has been linked to arsenal and man city jobs . klopp has won two league titles and the german cup in seven years there . breaking news : klopp confirms he will leave dortmund in the summer .\nchelsea could consider selling brazilian midfielder oscar this summer . both juventus and liverpool are keeping tracking of developments . oscar has struggled to maintain a first team place this season .\nthe city of knox council made an ` administrative decision ' to kill izzy . an appeal to save the dog has begun in australia 's high court on tuesday . the staffordshire terrier bit a woman in august 2012 . she suffered a 1.5 cm cut but it was classed as a ` serious injury ' council decided to destroy izzy during a council panel meeting . normally a magistrate decides whether a dog should be killed . the barristers animal welfare panel are fighting her case at no cost . if they win the council will have to pay legal fees . rspca sa offered to take izzy and assess her for rehabilitation .\nspencer bell , 71 , ventured onto m1 motorway after man fell from a bridge . but as he tended the victim he was struck by car driven by iram shahzad . she had tried to avoid queue of traffic by veering into outside lane at speeds of up to 88mph . mrs shahzad , 32 , pleaded guilty to causing mr bell 's death and received a suspended sentence .\nbayern are in portugal to face porto in champions league quarters . robben , ribery , schweinsteiger and alaba are all out through injury . but muller believes these problems have brought the team closer together . pep guardiola 's side have looked untroubled by their absence . they have a big lead in the bundesliga and progressed in the cup .\nafter one series on the show claudia winkleman is nominated for a bafta . neither sir bruce forsyth nor tess daly were nominated for the awards . she will compete against ant and dec , graham norton and leigh francis .\npeggy drexler : media , even candidate herself call clinton just ` hillary . ' this reinforces stereotypes about women needing to be approachable . she says especially in global context , trust , respect important for the potential leader of free world , not familiarity . just ` hillary ' not appropriate .\nphotos of the raccoon were taken by crane operator rob macfarlane . climbed about 213 meters up macfarlane 's crane on wednesday night in toronto . shots of ` little mac ' were posted on thursday morning and spread on twitter . animal got safely back down to the ground after doing its business on crane . they have climbed the crane in the past and left their ` evidence ' behind .\nmain problem was that the bureau of meteorology could not forecast exactly where the storm would form . storm was forecast to gather between port macquarie and newcastle , but it formed just north of newcastle . it then covered 150km south from newcastle to wollongong where a third of australia 's population live . when the storm hit it caused the maximum amount of destruction because of it being a huge suburban area . budget cuts also meant the bureau of meteorology did not have as many resources at its disposal . ` it 's just economics . weather balloons can now only be used in a limited number of places , ' says climate specialist . emergency services admitted on tuesday they were shocked by the severity of the storm . their teams were overwhelmed by a weather system that changed very rapidly . this weather system usually moves away after 12 hours but this one is going to stick around for 24-36 hours .\nabubaker deghayes has left brighton to go and rescue his eldest son amer . his two younger sons abdullah and jaffar were killed in syria last year . amer is also in syria fighting isis and the country 's government forces . mr deghayes insists he has not ` run away ' to join the fight and just wants amer home .\nkim kardashian has revealed her daily diet in extract from her new book . the star changes her meals every ten days with the help of a nutritionist . kim typically eats eggs for breakfast and fish with vegetables for lunch . other stars to reveal their eating habits include beyoncé and j-lo . jennifer aniston is a new atkins fan while gwyneth paltrow eats ` good '\nlib dem leader 's wife says party 's mps have suffered ` great personal cost ' . joined minister lynne featherstone for campaigning in north london . 100 miles away in chippenham , nick said : ` miriam just wanted to do her bit '\npit crew member todd phillips was hit by a car on sunday during the inaugural indycar grand prix of louisiana . he was injuried when he was struck by the car of francesco dracone , who had come in on lap 25 for tires and fuel . phillips received stitches for a cut on his leg and has been released . dracone did not finish the race and wound up 23rd .\ncoyote was spotted in a park near church of holy apostles in manhattan . it ran across grass , hid behind bushes and dodged cops for over an hour . finally captured after it was shot with tranquilizer dart laced with ketaset . put in animal containment box and taken to animal care & control center . it is the second coyote to have been seen in new york in only two weeks . on march 30 , another spent an hour wandering on roof of bar in queens . coyotes are flocking to city in rising numbers as competition for food becomes increasingly fierce , forcing them to scavenge new territories .\ndr warren weinstein died during the counterterrorism operation in january . the 73-year-old was captured from his home in lahore , pakistan , in 2011 . his family are said to have transferred money to his kidnappers in 2012 . they asked for the release of prominent afghan prisoners in return . the transaction did not lead to his release and his family have since slammed the us government for their ` disappointing ' reaction . us officials insist the family will be receiving compensation for his death .\nbill and denise richard wrote an op-ed opposing the death penalty for tsarnaev in the boston globe on thursday . the parents of 8-year-old martin richard , the youngest bombing victim , say they can only begin to move on once tsarnaev 's legal battle is over . they want prosecutors to sign a plea deal , sending tsarnaev to prison for the rest of his life and forfeiting his right to appeal . last week , tsarnaev was found guilty on all counts related to the april 15 , 2013 bombing at the boston marathon finish line . next week starts the penalty phase of the trial , in which jurors will decide tsarnaev 's sentence .\nroberto martinez has confirmed he will hold talks with romelu lukaku . striker lukaku has been linked with a move away by new agent mino raiola . raiola said he would have never sanctioned lukaku 's # 28million move . belgian international is one year into a five-year-deal at goodison park .\nimages were taken at the dawn of photography by hugh owen and give a glimpse of how the city looked in 1850 . they are being put up for auction in cirencester tomorrow and are expected to fetch between # 20,000 - # 30,000 . the unique pictures provide a rare chance to see what bristol looked like before it was heavily bombed in the war .\nzoe gregory , 26 , hijacked pupil 's email and threatened to blow up school . holly littlefield , 16 , was arrested and held in a police cell for 14 hours . another pupil was arrested because she had access to the email account . married mother-of-two gregory is now likely to receive a lengthy jail term .\nbritish graffiti artist painted mural on metal door of dardouna family home . it was the only part of the two-storey building to survive bombing last year . local artist belal khaled convinced homeowner to sell door for just # 100 . but now that he knows banksy murals are valued at hundreds of thousands of pounds , rabie dardouna is demanding the door is returned .\nceltic extend their lead at the top of the scottish premiership table . james forrest scored the opener for the visitors before stefan johansen made sure of three points from the penalty spot . st mirren remain bottom of the league table with 21 points .\npresident barack obama is calling for an end to psychiatric therapy treatments aimed at turning gays into heterosexuals . the move comes in response to an online petition posted on the white house website following the death of 17-year-old leelah alcorn . the american psychiatric association has long opposed conversion therapy and says being gay is not a mental disorder .\nrhiannon langley , from melbourne , is undergoing rhinoplasty in bangkok . the 24-year-old has 189,000 followers on instagram alone . she is sharing pictures and videos of her experience on social media . langley tells daily mail australia that reaction so far has been positive .\nthe trussell trust admits that the one million were not all ` unique users ' it had previously claimed that it served a million hungry people in a year . labour party and trades union congress were quick to seize on the figure . trust has said the figure was based on the number of parcels handed out .\nfloyd mayweather and manny pacquiao fight in las vegas on may 2 . roach rates andre ward and gennadiy golovkin above mayweather . mayweather has not fought enough of the competition , says roach . roach says pacquiao is in the best shape of his life ahead of fight .\nolivia munn will play psylocke in `` x-men : apocalypse '' film . psylocke trended for hours on twitter after director bryan singer announced casting .\nlizzi crawford piled on the pounds after feasting on takeaways . she decided to make a change after a child mistook her for being pregnant . lizzi went on to loose almost 8st slimming down to 12.5 st. she also fought off cervical cancer after she was diagnosed in 2012 .\naston villa striker christian benteke scored three against qpr on tuesday . players from belgium have now netted 48 premier league goals this term . english players have scored 255 goals - almost four times more than spain . a total of nine nations have just a single top-flight goal this season . players from 46 countries have scored a total of 800 goals during 2014-15 .\nvictoria prosser , 33 , stood up and heckled david cameron during debate . she spoke about homeless people who had served in the armed forces . claimed she heckled him because she wanted people to question ` the 1 % ' ms prosser is said to be a ` health and wellbeing ' worker who votes green .\nronnie o'sullivan says he would love to be new top gear presenter . the five-time world snooker champion has an affection for cars . o'sullivan has appeared as a guest on the show in the past . the 39-year-old plays matthew stevens in the second round .\nlondon 's metropolitan police say the man was arrested at luton airport after landing on a flight from istanbul . he 's been charged with terror offenses allegedly committed since the start of november .\nmother and autistic son to be deported to philippines within 28 days . maria sevilla and her son , tyrone , have lived in australia since 2007 . appeal rejected because son 's autism could be a burden on government . their family is in queensland , sevilla is a nurse at townsville hospital . queensland disabilities minister says decision is ` cold and heartless ' . immigration department says child does not meet visa health requirements .\nthe death toll in nepal rises to 3,218 , a government official says . the number of injured is reported to be more than 6,500 , he says . another 56 people are dead in india , and 20 in china .\ngemma flanagan , 31 , from liverpool , was hit by guillain barre syndrome . she was working for ba when rare illness left her paralysed . but today the aspiring model makes catwalk debut in her wheelchair . she is taking part in a models of diversity show at london 's olympia .\nset on 200 acres near bridgnorth , shropshire , the chyknell hall estate also boasts a tennis court and wine cellar . the grade ii-listed regency home at the centre of the property offers 11 bedrooms , a library and a billiard room . it is thought it could attract a-list buyers as the secluded grounds and gardens offer residents complete privacy .\npremier league clubs are overwhelmingly in labour constituencies . labour hold seats in the majority of football league clubs ' constituencies . the traditional view is that football is the working man 's game , while labour is the party that was established to fight for the working man . just one football league club , bradford , is in an independent constituency . football clubs are found in only seven liberal democrat constituencies .\nliverpool suffered 4-1 premier league defeat by rivals arsenal . the defeat greatly reduced liverpool 's chances of top four finish . brendan rodgers admits top players want champions league football .\nan artist apologizes for his lucille ball statue . in a public letter , the sculptor offers to pay for fixes to the statue . the mayor says he 's not interested in having the original artist work on the statue .\nmaps were created by the eco experts based on data from the world bank . indonesia topped the list with a total of 184 endangered mammals . second was madagascar with 114 and third was mexico with 101 . species include lemurs , sumatra tigers , blue whale and the red wolf .\nmilitants in yemen fired on saudi border troops in saudi arabia 's asir region , media outlet says . rebels have taken yemen 's presidential palace in aden , sources say . u.s. warships are patrolling off yemen in search of suspicious shipping , a u.s. defense official says .\ncharlie hill contemplates returning to the united states for family and blackberry pie . he would also have to face justice on charges of killing a police officer and hijacking a plane .\na bathing box sold in brighton , melbourne , for a record $ 276,000 . a sydney garage was snapped up to be turned into a home for $ 1.2 million . an old maximum security prison in victoria is on the market for $ 2 million . and australia 's priciest parking space at $ 330,000 suggests even your car ca n't find a cheap home in the current property boom .\nrupert brooke 's poem the soldier made him famous throughout england . he died aged 27 from blood poisoning while en route to gallipoli . in 2000 , love letters between brookes and phyllis gardner were discovered . it was then , 85 years after his death , that their love affair was revealed .\nkeurig green mountain 's single-serve capsules in 2014 hit over $ 3 billion in us sales , it 's been revealed . the company has also made $ 4.7 billion in revenue . 1/3 of homes in the us reportedly feature single-serve coffee machines . keurig 's chief technology officer kevin sullivan has said ` single serve , i think , found the hidden need - the need that people did n't know they had ' .\nexclusive : danczuk says those who try to join isis ` enemies ' of britain . nine members of the same rochdale family were arrested in turkey . they are expected return to the uk from turkey later this week . mr danczuk said it was ` unacceptable ' for them to be free to live in the uk .\njo gilchrist left writhing in pain when staph infection attacked her spine . the 27-year-old mother was rushed to brisbane hospital in february . doctors are still administering strong antibiotics to rid her body of bacteria . she says her friend was carrying bacteria on her face and she used the same make up brush on her pimple . she 'll be confined to a wheelchair and has no feeling below belly button .\nrampaging isis militants have seized up to 90 per cent of yarmouk camp . 100 palestinian refugees have been killed or kidnapped since wednesday . two members of a hamas-linked group were beheaded , witnesses said . now gaza-based leaders have sworn bloody revenge on isis terrorists .\npatrice evra enjoyed eight years at old trafford before joining juventus . claims sir alex ferguson spoke to him before leaving in 2013 . ferguson said him and ryan giggs would make great coaches one day . giggs is currently louis van gaal 's assistant at manchester united . evra says he has already taken some of his coaching badges .\nwest brom lost 3-2 to qpr earlier in the season having led the game 2-0 . hoops midfielder joey barton accused the baggies of losing their cool in a result that would contribute to former manager alan irvine 's sacking . new boss tony pulis has admitted that barton ` probably had a point ' the two teams meet in the premier league on saturday at the hawthorns . pulis has steadied the ship at west brom since taking over in january and the club looks unlikely to be relegated this term .\nwhalen family 's dinner at kfc was interrupted by sounds of a sex scene . gerald and april were with two young children at the oklahoma restaurant . scene from risque show outlander was broadcast on kfc 's television set .\nmatyas gutai is pioneering the use of water as an insulator for sustainable architecture . reacting to its surroundings , the water keeps the house at a comfortable temperature .\nsteve smith became a self-made multi-millionaire with birth of poundland . 52-year-old started life in business on his parents ' saturday market stall . he opened first poundland shop in 1990 when he was just 18-years-old . sold the firm for # 50million in 2000 and gave half the profits to his parents . despite his wealth , his wife tracy gives him ' # 10 - # 20 pocket money daily '\nphotographer graeme oxby documented dedicated impersonators at a number of elvis tribute events across britain . the 50-year-old from east yorkshire also visited fans ' homes for his photo series , called ` the kings of england ' mr oxby said most of the fans are old , but that there is a new generation of people discovering elvis ' music .\nporche wright , 27 , is accused of setting her seven-year-old daughter on fire over the weekend . the child survived but suffers from serious burns . wright was charged with attempted murder and in the past has been charged with prostitution , disorderly conduct , and domestic violence . neighbors say they often heard wright yelling at her daughter .\nthe woman allegedly boarded special flights organised for victims ' families . police in hoexter are looking into the possible fraud , will question woman . investigators have been searching andreas lubtiz 's internet search history . lubitz sought information online on various methods of taking his own life .\napril 25 , 2015 marks the centenary of the start of the gallipoli campaign in turkey during wwi . anzac troops stormed the beaches at gallipoli , beginning a bloody eight-month campaign .\nsinging the national anthem is a risky proposition . whitney houston nailed it ; roseanne barr destroyed it .\nfbi is offering a $ 20,000 reward for information about bhadreshkumar chetanbhai patel 's whereabouts . he allegedly killed his wife , palak bhadreskumar patel , on april 12 in hanover , maryland . taxi driver told investigators she drove him to a hotel in newark , new jersey . patel was last seen in surveillance footage at a best western near newark liberty international airport on april 13 . police believe that he is still in the u.s. and is considered to be dangerous .\nerik de vries and josephine egberts lost contact after parents ' divorce . years later , erik , 24 , swiped right on what was his sister 's tinder profile . pair flirted before realising they were related and brother and sister .\nisis is known for brutal takeovers and medieval justice , but it sees itself as a state . official documents show just how far their rules affect daily life .\npassenger accused of smuggling 108 exotic animals on flight from jakarta . two baby crocodiles died on the journey to russia after 6,515-mile ordeal . woman faces up to seven years in jail if found guilty of smuggling leopard .\na wolf spider races across a kitchen floor in hallett cove , south australia . unluckily for it it 's spotted by a man who smashes it with a broom . following a few whacks hundreds of babies burst out of the female spider . after hatching , spider babies crawl onto the mother 's back and stay there . as most of the the spiders are now dead the man sweeps them all up .\nincident occurred as the boeing 737-800 landed at khajuraho airport . plane tilted to one side and left engine scraped along runway . crew ordered an evacuation and passengers slid down emergency slides . jet airways said no one was injured and reports of a fire were false .\nthe star trek star helped pressure a new jersey auction house to cancel a sale of 450 photos and artifacts from world war ii internment camps .\n3rd `` tron '' is coming together with `` tron : legacy '' stars returning . olivia wilde and garrett hedlund will reprise their roles . `` tron : legacy '' grossed $ 400 million worldwide , after the 1982 original gained fans online .\nhomeowner in florida filmed as nine foot bull shark swam behind condo . residents say fishermen throwing bait into water is attracting the animals . bull sharks are considered among the most likely species to attack people .\nroyal baby gaga the brainchild of breastfeeding campaigner victoria hiley . the leeds mother collaborated with ice-creamery the licktators . ms hiley wanted to remind duchess of cambridge of breastfeeding benefits .\nneymar helped brazil beat chile 1-0 at the emirates stadium last weekend . barcelona won the el clasico to go four points clear at the top of la liga . luis enrique 's side take on celta vigo in la liga on sunday .\nthe pfa awards ceremony is being held in london on sunday evening . the famous faces turned out to attend the gala at the grosvenor house . harry kane , nominated for two awards , appeared excited beforehand . fellow young player of the year nominee philippe coutinho arrived with liverpool team-mates steven gerrard and kolo toure . manchester united goalkeeper david de gea looked pensive following sunday 's 3-0 defeat by everton . manchester city midfielder frank lampard was also in attendance . eden hazard is hot favourite to land the pfa player of the year award . hazard 's chelsea team-mate diego costa is also shortlisted for the gong . the belgian star was named in the pfa premier league team of the year .\nlondon estate agents invited to value a house rigged with special effects . the viral video was created to promote sky living 's new three-part drama . the enfield haunting looks at supposed genuine haunting in late seventies .\nthose who often dine out are more likely to have elevated blood pressure . eating out is associated with higher calorie , saturated fat and salt intake . researchers found 27.4 % of singapore 's population had pre-hypertension . of these , more than a third ate more than 12 meals out every week .\nthe shop in mecca , saudi arabia , will stock ` islamically approved ' products . set to be opened by moroccan owner of a dutch sex shop called el asira . abdelaziz aouragh claims that a saudi cleric has approved the proposal .\nlee garlington is opening up about his secret gay relationship with hollywood star rock hudson . garlington and hudson dated from 1962 until 1965 , and hudson called him his ` one true love ' garlington says he would sneak over to the star 's house after work , and leave first thing in the morning . he also says the two would each bring a date when they went out to avoid being outed . hudson died in 1985 of aids .\n`` the late show with david letterman '' concludes may 20 . letterman 's guests will include oprah winfrey and bill murray . stephen colbert takes over the slot september 8 .\nwinston 's lawyer : kinsman 's `` false accusations have already been exposed and rejected six times '' erica kinsman said jameis winston raped her in 2012 ; a prosecutor declined to bring criminal charges . her lawsuit alleges sexual battery and false imprisonment ; winston has said they had consensual sex .\nmarcos rojo and angel di maria will spend easter sunday in portugal . man united defender rojo posted an image of himself on board plane . rojo was joined by his family - including his wife and daughter . argentina ace rojo has been accused of sleeping with a fitness instructor . the red devils face local rivals manchester city on april 12 .\nfather-of-three craig sytsma was mauled to death in michigan last year . dog owners sebastiano quagliata and wife valbona lucaj agreed to plea deal friday to around 15 years in jail , though judge could add six months . sytsma was jogging in july 2014 when the two cane corsos attacked him . he was bitten almost ten times and was ` screaming and begging ' for help .\nalan hutton , scott sinclair and ashley westwood ruled out for aston villa . philippe senderos & kieran richardson among doubts for tim sherwood . yun suk-young and eduardo vargas absent for queens park rangers . richard dunne , leroy fer and alejandro faurlin also missing for qpr . two sides clash at loftus road on tuesday at 7.45 pm .\nbarcelona star dani alves is out of contract at the end of the season . brazilian defender is yet to agree a new deal with luis enrique 's side . 31-year-old insists he has n't agreed any deal with another club . read : will dani alves be at man utd next season ? click here for all the latest manchester united news .\nzachariah fike head of vermont-based purple hearts reunited , says the military id belonged to world war ii veteran cpl. william benn . benn lost them in 1939 at a coastal artillery placement on salisbury beach . discovered last year by metal detector enthusiast following a storm .\nzipporah lisle-mainwaring accused of painting # 15million house like a ` beach hut ' in row over planning application . the paint job comes after planning applications to demolish home and rebuild it with double basement were rejected . mrs lisle-mainwaring involved in row with family over inheritance after her husband robert died in 2007 . she is the daughter of a second world war flying ace shot down during a bombing raid on germany in 1943 .\njonathan crombie is best known for playing gilbert blythe in `` anne of green gables '' book , movies about girl sent to live on canadian farm .\nluis figo is challenging to replace sepp blatter as fifa president . former portugal star does n't believe all of confederation of african football 's -lrb- caf -rrb- 54 votes will decide in blatter 's favour . prince ali bin al hussein and michael van praag are also in the running .\nairbus are increasing their seats from 10 to 11 seats in every row . the addition will see airbus creating a fourth cheaper class called choice . the change is to be launched in 2017 on the airbus 380 model . airbus state the move is to reflect 90 per cent of fliers using economy . thankfully seat widths will remain at the standard 18 inches .\n` crash for cash ' fraud involved cars being deliberately driven into buses . passengers - most of whom were friends and relatives - would then claim . john smith , 45 , from connah 's quay , orchestrated crashes in chester area . he processed 218 bogus personal injury claims to no win no fee lawyers . convicted yesterday of fraud and conspiracy to commit fraud after trial .\nthe cross dressing robber from taylors hill is in police custody . the 23-year-old man was arrested and charged with armed robbery . the robbery took place at a service station in watervale in march . a man dressed in female clothing produced a fake machine gun . the staff member handed over the cash which the robber placed in a bag .\namerican researchers examined more than 900 people aged 60 and over . experts believe that air pollution could increase the risk of ` silent strokes ' . microscopic particles in pollution are thought to kill 29,000 people a year . the risk of having a silent stroke can be raised by more than 40 per cent .\nsean dyche says his side can avoid relegation from the premier league . burnley host tottenham at turf moor in a game they ca n't afford to lose . the clarets beat manchester city in their last home premier league game . click here for all the latest burnley news .\nsergey burkaev , 16 , and konstantin surkov , 17 , ` confessed ' to murders . duo are also said to have raped one of the girls before cutting her throat . the accused and their victims were at a house party in kumertau , russia .\nman impregnated female friend using his sperm and a turkey baster . robert preston boardwine had envisioned an active role in child 's life . mother , joyce rosemary bruce , only wanted him to be ' a friend ' she believed that if she used turkey baster and avoided intercourse boardwine would have no parental rights . but virginia court rules boardwine has the right to be involved as a parent .\nroy keane pleads not guilty to committing a public order offence . he is alleged to have been involved in a road-rage incident with taxi driver . keane is accused of causing harassment , alarm or distress to the driver . he will face trial at manchester magistrates ' court on june 19 .\nalvaro morata started just three la liga games for real madrid last season . 22-year-old joined juventus in # 15.8 million transfer last summer . morata has scored seven goals in 22 serie a matches so far this campaign .\nsurvey found more than half of uk children kids do n't have any veg . fussy kids are frustrating for parents when they refuse to eat certain foods . nutritionist annabel karmel tells femail how to make a child like greens .\nthe ipad was engraved with `` his holiness francisco '' and `` vatican internet service , march 2013 '' a harley-davidson the pope donated to charity sold for $ 284,000 last year .\nharley street is a top destination for private cosmetic surgery . patients pay thousands for treatments they hope will change their lives . michael , 33 , spent # 7,500 on a hair transplant to boost his self-esteem . andrea , 72 , pays for a facelift - but her husband ca n't tell the difference .\nthe ocean-going tug mv hamal was intercepted by hms somerset and border force vessel about 100 miles east of the aberdeenshire coast . value of the cocaine is likely to be worth hundreds of millions of pounds . crew of the hamal , nine men aged between 26 and 63 , were detained .\nworld war i graffiti is discovered in an underground quarry . the writings are generally plain , with listings of names and places . photographer : graffiti a human connection to the past .\nbear was hunting along the brooks river katmai national park , in alaska . might have gotten lucky after fish jumped almost directly into his mouth . but the dozy creature allowed the salmon to slip through his claws .\nrubi light has been confirmed as a definite runner for the grand national . grade one winner had the option of running in the shorter topham chase . rubi light schooled over some aintree-style fences on saturday afternoon . hennessy 's horse is one of eight irish-trained horses targeting the race .\nnext summer thomson will launch the transformed royal caribbean 's splendour of the seas as the new ship in their fleet . it has not been announced what she will be named yet . transformation of ships is common , as shown by ms grand holiday becoming the magellan .\nthe film 's cast is diverse . ew points out that hollywood still needs to catch up . one of the stars says the franchise has evolved .\nfirst official weekly vinyl chart established as annual sales reach 2 million . gallagher also claims most successful album of last 20 years on format . classic releases by led zeppelin , pink floyd and bowie are also in top 10 .\nkendall schler crept onto the go ! st. louis marathon 's course last weekend after the last checkpoint and did n't run the entire 26.2 miles . her times that qualified her to run in monday 's boston marathon have now been erased , and her spot in the event has been vacated . the true winner of the race was a woman named angela karl .\nto understand thursday 's attack , one must understand that kenya and al-shabaab are at war . al qaeda 's 1998 attack on the u.s. embassy is the single largest , but al-shabaab have killed many more kenyans .\nnewcastle united travel to sunderland on sunday in tyne-wear derby . gutierrez has appeared as substitute in three games since return from testicular cancer , but has n't yet been on winning side . argentine wants to make amends after four straight losses to rivals .\ndame sally davies has ordered review into cost of giving out free vitamins . comes after a rise in the number of cases of rickets in children in the uk . increase is being put down to fact children spend less time outside playing . rickets can cause bone deformities such as bowed legs and a curved spine .\nshelly sterling has been awarded most of the nearly $ 3 million she had sought to be returned . her lawyers successfully argued that money used to buy v. stiviano a house , luxury cars and stocks was her community property . stiviano 's lawyer had argued the gifts were made when donald and shelly sterling were separated . ruling comes nearly a year after stiviano 's recording of donald sterling making racially offensive remarks that cost him ownership of the clippers . shelly had filed the suit about a month before the recording of donald telling stiviano not to associate with black people created an uproar .\nmarleni olivo , 54 , hit venezuelan president nicolas maduro in the head with a mango . in a national tv broadcast , maduro said he would grant her request for a new apartment . she wanted to give him a note , she says , but had no paper , only a mango .\nduo started out by making versions of famous vehicles they loved . celebrities and wealthy film fans are flocking to buy the pair 's creations . the fleet includes a transformers-style truck and ` tron ' motorbike .\nkitty carroll was last seen playing at the kemah boardwalk marina in texas on wednesday but when her father checked on her , she was gone . authorities launched a search from sea and air and her body was found early on thursday morning near the marina . family members said she had been celebrating her fifth birthday before she went missing . police will review nearby surveillance footage to determine what happened .\nchinese scientists tried to tweak gene responsible for a blood disorder . leading researchers have called for a halt on such research until the implications and safety of the technology can be properly explored . they warn germ line modification is ` dangerous and ethically unacceptable ' some fear the technique could be misused to create ` designer families '\natletico madrid 0-0 real madrid : click here for martin samuel 's report . gareth bale wasted real 's best chance to score an away goal . fans waited outside the training ground early on wednesday morning . the # 86m signing was verbally abused a month after his car was attacked . spanish newspaper marca gave bale just five out of 10 in their ratings .\nmembership gives the icc jurisdiction over alleged crimes committed in palestinian territories since last june . israel and the united states opposed the move , which could open the door to war crimes investigations against israelis .\nallotment holders moved elsewhere after prize-winning plots bulldozed . gardeners say soil at new allotments is so poor they ca n't grow a bean . they are demanding the council pays out compensation for the problems . oldham council say new site is not due to be ready for growing until may .\nthe comedian stayed with flavours who offer a painting in venice break . jenny and her partner geof stayed at the farmhouse villa bianchi . days involved sitting in medieval market towns with a brush and prosecco .\nconsumers are buying luxury items amid falling prices and rising wages . restaurants have seen spending increase by 17 per cent in the past year . figures expected to show uk is now in first period of deflation since 1960 .\ntony blackburn claims disgraced entertainers ` tarnished ' his era of djs . bbc reeling from historic sex abuse claims against his former colleagues . broadcasters jimmy savile , dave lee travis and rolf harris among them . he 's outraged at how friend and fellow dj paul gambaccini was treated .\nmotorcade raced from keene to claremont to concord , obliterating speed limits as hillary kept a tight schedule of off-the-books events . claremont party at the home of an aide to democratic sen. jeanne shaheen included messaging about income inequality , despite clinton 's own wealth . event was reportedly scheduled to test the waters for a shaheen endorsement for clinton . evening dinner party was at the sprawling home of the former new hampshire state senate president , sylvia larsen . larsen 's house was also the setting for the final democratic women 's event that hillary attended in december 1991 before filing her husband 's paperwork to enter the new hampshire primary race .\nformer california governor criticises the gop for not focusing on issues that matter , such as airport delays , graduation rates and air pollution . says the religious freedom restoration act will hurt his party the most . called the laws ` divisive and distracting ' ` we must be the party that stands for equality and against discrimination in any form , ' he said in the op-ed for the washington post .\nthe company says it is seeking to `` redefine sexy '' victoria 's secret was criticized for its `` perfect body '' campaign .\npm said he understood why tory supporters had backed nigel farage . he pledged to do more on immigration and europe if re-elected on may 7 . mr cameron has previously described ukip supporters as ` fruitcakes ' made the plea at campaign rally in which he warned over labour tax plans .\nexperts have raised red flags about the warming of planet by 2 degrees celsius . john sutter : this one little number is significant as a way to focus world 's attention on problem .\nindependent commission for reform in cycling -lrb- circ -rrb- concluded that the uci colluded with lance armstrong to cover up allegations . hein verbruggen was criticised as events occurred under his leadership . verbruggen has revealed he is having the report analysed by lawyers .\njohn daniels , 61 , from surrey , has decades of experience working with animals . photographer 's charming snaps celebrate national pet day , which takes place tomorrow . include comedy props , tiny furniture and unusual animal pairings .\njurgen klopp will leave borussia dortmund at the end of the season . speculation has been rife that his next job will be in the premier league . he has been linked with taking over at arsenal or manchester city . but gunners boss arsene wenger said the talk was ` ridiculous ' .\nkim jong-un dismantled the group of teenagers after his father 's death . but now three years of mourning has expired he has demanded they return . group are traditionally private dancers and maids for north korean leaders . the girls are usually married off to top officials once they reach their 20s .\nasia siddiqui , one of two femlae isis converts arrested in new york on thursday , had a jihad-themed poem published in an al qaeda magazine . the poem , titled ` take me to the land where the eyes are cooled ' , is a gory account of her dream to become a martyr . the poem was published by samir khan , an american citizen and one-time editor of al qaeda magazine inspire , who siddiqui met in 2006 . khan wrote a how-to guide for bomb-making for inspire , which is believed to have been used by the accused boston bombers . khan was killed in a 2011 drone strike in yemen .\nwomen spend # 18,000 on products for the face in one lifetime . many women make common mistakes , leaving products redundant . femail calls on top dermatologists to dispel myths and share tips .\nassistance dogs are a little known but crucial tool for children with autism . they are used to keep the child safe and encourage social skills . children with autism often have difficulty with social interactions and their verbal and non-verbal communication skills may be badly affected . autistic children ` have a tendency to ` bolt ' when anxious or stressed . the assistance dog is trained to keep a child out of harm 's way and make outings more manageable for the carer .\ndavid luiz was at fault for both of luis suarez 's goals in barcelona 's win . the psg defender is a defensive liability , according to glenn hoddle . luiz came off the bench early on despite a hamstring injury 10 days ago . thierry henry believes laurent blanc should not have played the brazilian . luiz was nutmegged by suarez in the build-up to both of his goals .\nincreasing costs mean few owners can keep up with looking after a horse . with dwindling buyers more horses than ever are being abandoned . last year , the rspca alone took in 1,500 , many of them family pets .\nmammoth ocean liner , the anthem of the seas , has now reached its summer home : the southampton docks . owned by royal caribbean , the impressive ship expects to welcome over 80,000 people on board this summer . while on board , guests will be served by robotic bartenders and also have the chance to hone their circus skills .\nthe kiss took place after she sang three of her hits , hung up , express yourself and human nature . sources insist drake liked the smooch but it was her ` glossy ' lipstick that made him recoil .\nmessenger is expected to impact on the surface of mercury around april 30 . spacecraft has been orbiting mercury since 2011 , taking 250,000 pictures . as it gets lower it is sending back images of the surface in greater detail . engineers have attempted to extend the mission by using up its last fuel .\nsami al-saadi 's communications with his lawyer were illegally intercepted . the investigatory powers tribunal overseeing the security services has ordered spies to destroy two copies of the eavesdropped communications . mr al-saadi claims the british government was complicit in kidnapping him and sending him back to libya to be tortured by the gadaffi regime .\nfabien le coq took photos of trees from the bottom looking up . the branches take on their own patterns in the sky : `` each tree has its own personality ''\nnew england patriots take on pittsburgh steelers on september 10 . nfl released full schedule for the 2015 season on thursday . dallas cowboys host new york giants on sunday night in week one . seattle seahawks vs green bay packers rematch set for week two . green bay packers will host chicago bears on thanksgiving night . visit nfl.com for the full 2015 season schedule .\nprojection underlines next government 's task to eliminate annual deficit . it hit a record # 153billion under labour in 2009/10 and is now # 90billion . tories pledged to return uk to black in 2018/19 with surplus of # 5.2 billion . but global watchdog predicts there will still be deficit of # 7billion that year .\nfloyd mayweather and manny pacquiao meet on may 2 in las vegas . mayweather was soft-spoken during a half-hour conference call . he made no apologies for claiming to be greater than muhammad ali . two days earlier pacquiao had time for just two words at his conference call before his promoter bob arum hung up the phone in frustration . read : floyd mayweather vs manny pacquiao tickets finally go on sale . click here for all the latest mayweather vs pacquiao news .\nmore than 2,000 perfectly preserved inscriptions were found on the walls of an underground cave in naours , france . they were left for posterity by young men facing the horror of trench warfare a few dozen miles away at the somme . experts believe the bored young soldiers used their spare time to visit the caves , which are well known locally . only weeks later they were sent to the somme battlefields , where more than a million men were killed or injured .\nhairstylist chris appleton explained the inspiration for 24-year-old rita 's unique and over-the-top hairstyles . he confessed that her blonde mane requires a lot of ` maintenance ' and has to be bleached every three weeks . unlike kim kardashian however , chris does n't believe rita will be going back to brunette any time soon .\na fire consumed a michigan building that was once home to a strip club on wednesday afternoon . the blaze took place at a building located on a flint intersection , and started at about 1pm . only the building and a few nearby power lines were affected . an investigation into what was behind the flint blaze continues .\nconcerns growing for people trapped higher up the mountain . helicopters begin airlifting injured people from the base camp in nepal . climber reports at least 17 dead ; many others injured , missing or stuck .\nsoil underneath a slide in the park showed extremely high radiation levels . has raised fears for the health of children in the toshima ward of tokyo . days after traces of radiation found at prime minister shinzo abe 's office .\njamie o'hara scored from the spot after just six minutes . but grant hall 's own goal gave reading a share of the spoils . blackpool fans protested against owners , the oyston family . the seasiders need two more points to pass stockport 's 26 .\nhomaru cantu , 38 , was found dead inside his upcoming restaurant , crooked fork brewery , on tuesday . an autopsy has been scheduled for wednesday , though authorities are investigating cantu 's death as an apparent suicide . cantu worked for famed chicago chef charlie trotter for four years before opening his own restaurant , moto . a month ago , a former investor filed a lawsuit against cantu , accusing the chef of using moto 's bank account for personal expenses . according to friends , cantu had become strained in recent days because of the lawsuit .\nvideo by extra storage space has been viewed almost 600,000 times . features mothers and fathers offering up advice to first-time parents . list of tips includes ` do what works for you ' and ` get on a schedule '\nindian air force and nepalese army medical team launch rescue mission to bring injured people to hospitals in kathmandu . forshani tamang 's family carried her for four hours to reach help after she was wounded when their home was destroyed .\njared forsyth , 33 , joined ocala police department in 2012 . he was shot in the chest by a colleague during firearms training monday . forsyth was rushed to hospital but died after undergoing surgery . incident at lowell correctional institution under investigation . officials say he was wearing a vest , but the round entered his arm .\nwarning : graphic images . armed woman was shot dead as she tried to attack istanbul 's police hq . she was said to be carrying a rifle , two hand grenades and one pistol . a day earlier , prosecutor mehmet selim kiraz died from gunshot wounds . two terrorists from revolutionary people 's liberation front also killed .\nsidonie , a well-known group from catalonia , created and sang mid-flight . the ` anti-ryanair ' song was crafted about flight attendants ' ` lack of respect ' ryanair , in response , has slammed the song 's ` out of tune ' vocals and ` average ' lyrics . since being posted on march 27 , the video has been viewed 24,000 times .\nno one was injured in the attack on the times square military recruitment station in march 2008 . officials said the explosion may be connected to earlier unsolved bombings at the british and mexican consulates . fbi footage showed the times square suspect placing the bomb and riding away on a bike .\nalison saunders consulted neil moore , a barrister where daniel janner worked , over whether to prosecute the labour peer . mrs saunders said it was her job to make ` very difficult decisions ' . justified her decision not to prosecute by saying experts agreed lord janner , 86 , was in poor health due to advanced alzheimer 's disease .\nbbc foreign correspondent malcolm brabant had a yellow fever vaccine . 24 hours later he had been reduced to a sweating , shivering wreck . had a fever for two weeks then psychosis : ' i went completely bonkers ' spent two years in and out of mental institutions , unable to work . even attempted suicide , but has fortunately made a full recovery .\nchristian benteke netted all three as aston villa drew 3-3 against qpr . the belgian can fire aston villa to premier league safety . that 's the view of tim sherwood , who lauded his main striker .\nreports suggest sandra malcolm 's body was mutilated by her attackers . pensioner , originally from dundee , was found at her home in cape town . her grandson made the discovery after climbing through a window when nobody answered the door .\nnitrogen gas causes a quick loss of consciousness and then death from lack of oxygen , oklahoma says . the state 's executions are on hold while the u.s. supreme court reviews the state 's use of lethal injections .\nthe plate - h982 fkl - was on clarkson 's porsche during christmas special . local veterans considered it a reference to the bloody 1982 falklands war . angry villagers attacked top gear convoy and the team fled the country . judge ruled the number plate was deliberate reference despite bbc denial .\nceltic face inverness in sunday 's scottish cup semi-final at hampden park . ronny deila 's side are on course for a treble-winning season this year . scottish league cup winners are eight points clear in scottish premiership . deila said celtic themselves provide the biggest hurdle to treble hopes .\ndorian poe , 11 , from burlington , ontario , sends his stuffed polar bear tikko to other children around the world . each child who looks after tikko is tasked with raising awareness about autism in his or her community .\ncare home resident arthur townsend poured it over mercedes sprinter . he had become angry at martin carter , son of his friend olive carter , 96 . believed he was making her stay at home to sign for business packages . townsend admitted criminal damage and must pay # 500 compensation .\nsheriff 's spokeswoman : ebony dickens is out of jail after posting $ 10,000 bond . police : authorities found a firearm , three computers in her east point residence . dickens is accused of posting her facebook rant under the name tiffany milan .\na new reddit thread has garnered 18,000 submissions of terrible names . i ` munique , boy boy and abstinence were all stand-outs . the most popular uk baby names are currently sophia and muhammad .\nmore than 10,000 people marched in durban against violence , officials say . twitter followers voiced their support through hashtag campaigns . a cape town resident tweets his complaints against a zulu king .\nadrian langlais died on march 19 , the day after his second birthday , from head injuries allegedly caused by his mother 's boyfriend christian tyrrell . the toddler 's adoptive grandparents say they started noticing bruises on the boy in november , when mother jessica langlais started dating tyrrell . they say jessica ignored their warnings , and that child protective services cleared tyrrell of any wrong doing a month before adrian 's death . tyrrell was arrested wednesday on capital murder charges and is being held on $ 1million bond .\nstuart mccall jokes he will wear livingston scarf during hibernian match . the rangers boss will be at the energy assets arena to watch clash . hibernian are four points behind rangers with game in hand . both sides are vying for second spot in scottish championship .\nmillionaire businessman backs labour 's plan to scrap ` non-dom ' status . he said : ' i never thought any party would have courage to do this ' just last week he publicly backed the tories over their economic record .\nphilip lyle hansen , 56 , has pleaded not guilty to 11 charges . on wednesday wellington district court heard of his teeth ` fascination ' he allegedly removed six teeth from one woman , 47 , during sex . hansen later allegedly removed her wisdom teeth with a screwdriver . he is said to have injured four women between 1988 and 2011 . defence lawyer mike antunovic suggested hansen was trying to help .\npotentially fatal drug contains chemical used in pesticides and explosives . despite the dangers , the drug can be bought cheaply and easily online . most recent victim is 21-year-old eloise aimee parry who died this month .\nchelsea are currently nine points clear in the premier league standings . jose mourinho 's side face arsenal at the emirates on sunday . the blues have six games remaining in the current league campaign .\nofficial unemployment rate -- which does n't count people who have dropped out of the labor force -- stands at 5.5 per cent . manufacturing , construction and government sectors all cut jobs in march . other sectors , including health care , lawyers , engineers , accountants and retailers , grew their workforces . could be a temporary blip as the us recovers from an unseasonably cold march that may have tamped down hiring .\nrussia won the vote to host the 2018 world cup . us senators have asked fifa to reconsider because of ukraine crisis . england are planning to bid for euro 2028 after sepp blatter steps down .\nradamel falcao was ineffective for manchester utd in 1-0 loss by chelsea . striker has not had shot on target since netting vs leicester in january . colombian earns # 280,000 a week as part of his loan move from monaco . falcao has scored just four goals for manchester united this season .\nthomas has refereed a preseasons game , scrimmages and minicamps . she was first woman to preside over a bowl game in college football . shannon eastin , replacement ref , officiated game during 2012 lockout . hiring would make nfl second major sports league with woman official .\nzoo keepers place food in the barrels to stimulate the lions when feeding . one lion reaches too far into the food barrel and gets its head stuck . lion is captured on video thrashing about attempting to free itself . the incident occurred at the dierenrijk zoo in the netherlands .\nroy hodgson has told nathaniel clyne he is england 's right-back . southampton star has been linked with chelsea and manchester united . saints defender faces competition from calum chambers and kyle walker . clyne spotted at wwe event alongside wilfried zaha on monday night .\nsolomon bygraves admitted robbing 93-year-old stanley evans at his flat . cctv showed bygraves , 29 , taking the pensioner 's wallet containing # 5 . in an statement mr evans called for his attacker to be jailed for a long time . today he was jailed for 30 months after admitting robbery at southwark crown court .\nrachel lehnardt , 35 , ` allowed her 16-year-old daughter and her friends drink alcohol and smoke marijuana in her georgia home ' they ` all played naked twister and lehnardt had sex with an 18-year-old man in the bathroom before playing with sex toys in front of the teens ' . she said she went to bed alone but awoke to her daughter 's 16-year-old boyfriend having sex with her ; there are no charges against him . after the incident , she lost custody of her children and told her aa sponsor , who contacted authorities .\nhouse in london was one of five properties the man - worth # 600m - owned . their main home was # 26m ` palatial ' mansion in jeddah , which had 40 staff . wife now given homes in london and cannes as part of legal settlement . but judge refused to give woman the # 205,000 she wanted to spend on jewellery , handbags and cars .\nresearchers at john hopkins university in baltimore showed babies magic tricks where balls seemed to pass through walls and toy cars floated on air . 11 month old infants were surprised when objects defied their expectations . the babies then played more with the ball and car when given them later on . scientists say the children appeared to be trying to work out their secrets .\neugene , oregon will host the 2021 world athletics championships . the sport 's governing body iaaf bypassed the normal bidding process . eugene missed out on bid to host 2019 event which was awarded to doha .\ndusty the kangaroo was adopted by the stewart family from esperance . the two-year-old roo now believe 's he is one of the couple 's dogs . he rides around in the back of their truck , and sleeps and eats with them . dusty asks for scratches and tries to sneak dog treats when he can . mr stewart said that like any other dog , dusty is either eating or sleeping .\narmed isis fighters shown wandering the streets , shopping for new equipment . knives , tunics and bandoleers appear to be high in demand for jihadists . even young children are shown dressed in their own miniature jihadi uniforms . the worrying photos come from the iraqi province of nineveh .\nconrad clitheroe was jailed with his friends gary cooper and neil munro . trio arrested after writing down plane registration numbers at uae airport . fears for mr clitheroe 's health after he ran out of blood pressure medicine . he will now be able to celebrate first wedding anniversary with wife in may .\nadam johnson charged with three offences of sexual activity with girl , 15 . winger also facing charge of grooming and has been bailed until may 20 . sunderland decided not to suspend johnson and he is available to play . read : johnson charged with three offences of sexual activity with a child . read : johnson 's sunderland future in doubt .\nfrank ernest shepherd , iii of houston , texas was shot dead by police after leading them on a 20 minute high-speed chase . the chase ended when shepherd crashed into another car . he then got out of the vehicle and reached into the backseat , and was shot moments later . no weapons were found in the car and it is not known what shepherd was reaching for . shepherd was a father of three with another baby on the way . police are investigating why he fled during a traffic stop .\noscar-winning cinematographer andrew lesnie has died . he is best known for `` lord of the rings , '' `` the hobbit '' and `` babe ''\nanthony ray hinton goes free friday , decades after conviction for two murders . court ordered new trial in 2014 , years after gun experts testified on his behalf . prosecution moved to dismiss charges this year .\nthe opening of the championships have been delayed after heavy rain . the $ 10 million program will be moved to monday instead . punters will be able to use tickets they purchased for the saturday event . monday 's warrick farm card will be moved to wednesday . while the wednesday program has been completely abandoned .\nunidentified man is captured in video claiming to be army infantryman . he 's confronted by a young man who asks a series of questions including where he did basic training and why he 's not wearing a name badge . the man says he did basic training in north carolina but the young man says infantry training is conducted in fort benning , georgia not miami . eric coins , who posted the video , says the guy wore the uniform ` to pick up girls and get sympathy drinks '\nmanchester united have shown interest in signing edinson cavani . psg striker has been out of favour at times in paris this season . cavani bounced back to score in 4-0 win over bastia in league cup final . psg owner says ` the question of his departure has not arisen ' .\nfamily of italian woman killed in a horror car crash in perth are pleading with the australian public to help them bring her body home to italy . they have started a crowdfunding appeal to raise up to $ 20,000 . the appeal on ` go fund me ' has already raised over $ 13,000 for the family . ms riccioni was killed in a car accident on easter monday . her best friend antoinettia caffero , remains in hospital in critical condition .\nanthropologists studied the teeth of a prehistoric woman nicknamed the red lady who was found in the el mirón cave in eastern cantabria , spain . the plaque showed signs of plant pollen and several mushroom spores . it is the earliest evidence for humans eating mushrooms yet discovered . researchers say the mushrooms may have flavoured the red lady 's diet .\nthe indigenous tribe has lived on north sentinel island in the indian ocean for an estimated 60,000 years . their limited contact with the outside world usually involves violence , as they are hostile towards outsiders . islanders have been known to fire arrows or toss stones at low-flying aircraft on reconnaissance missions . tribespeople have rarely been photographed or recorded on video , as it is too dangerous to visit the island . india 's government has given up on making contact with the islanders and established a three-mile exclusion zone .\nthe stylish sisters ` how two live ' collaborate with print and shoe brands . the collaboration is with us company ' print all over me ' that lets you design and customise a print to wear or sell commercially . also featured is buffalo shoes , makers of the spice girls platforms . the vibrant sisters have 111,000 fans on instagram .\nchair was on first class deck when ship hit an iceberg in april 1912 . mackay-bennett crew members found it while clearing up the wreck . owned for last 15 years by english collector and will be auctioned on april 18 .\nian poulter is on holiday just weeks before the first major of the year . but poulter insists he will return fit and ready for assault on augusta . the golfer has secured two top-10 finishes at augusta in the last five years . he admits retiring without a major victory would leave him unfulfilled .\nhuang funeng , 80 , lost his sight to degenerative eye condition . wei guiyi , 76 , struggles with osteoporosis but leads him on daily walks . couple have become online hit after pictures emerged of their ` true love '\nrobbie savage posted the snap on his twitter showing his weight loss . the pundit has been labeled as ` podgy ' previously by some people . sportsmail 's laura williamson once described savage as ` marmite ' .\njuventus reached semi-finals of the champions league by beating monaco . they could face bayern munich , barcelona or real madrid next month . but the italian giants will not fear anyone and could cause an upset . juve have endured 12 years of struggles since reaching final in 2003 . but they now boast stars such as paul pogba and carlos tevez . gianluigi buffon and arturo vidal both say they can go on in competition .\nmichael shepard , 35 , conned parents into believing he was n't dangerous and even convinced them to let him babysit , police say . he raped and sexually abused at least seven children , including a girl as young as five , authorities allege . at a hearing to keep him locked up , one psychologist testified in his defense , the other said he was ` on the fence ' about keeping shepard behind bars . shepard spent 15 years in prison for sexually abusing two boys and has a history of sex offense dating back two decades .\nkeane accused of aggressive behaviour towards driver near traffic lights . allegedly caused harassment , alarm or distress to 44-year-old fateh kerar . tv pundit keane , 43 , of hale , cheshire , has denied public order offence . footballer won seven league titles and is now ireland 's assistant manager .\nmad men star was charged with viciously assaulting mark allen sanders in after 1990 hazing incident . the freshman was hit so hard he suffered a fractured spine and nearly lost a kidney . sanders alleged that he and his fellow pledges were subjected to ` repeated confinements ' in tiny compartments carved into the frat building 's basement . the pledge listed hamm as one of his chief tormentors at the sigma nu fraternity at the university of texas at austin . the future star ordered him to recite a six-page list of phrases pledges are told to memorize called the ` bulls *** list ' . now 45 , sanders is a doctor and an attorney specializing in medical malpractice and personal injury .\njavier hernandez scored twice to make it six goals in eight games for real . carlo ancelotti says striker 's form makes him ` non-negotiable ' at present . hernandez is enjoying his football at present despite uncertain future . real madrid 's win moved them back to within two points of barcelona . read : celta vigo 2-4 real madrid : javier hernandez scores twice as real come from behind to keep la liga title battle with barcelona alive .\nsjaak rijke saved by french troops who captured jihadis and killed others . no word on two other men including south african with british citizenship . dutch minister : ` i 'm happy this terrible period has been brought to an end '\nmiranda calvin , 19 , was arrested on sunday in gresham , oregon after allegedly hitting a woman with her car and fleeing the scene . jerrie ann hornig , 49 , was found dead at the scene by gresham police . calvin was booked on manslaughter , felony hit-and-run and reckless driving . police said the public helped lead to calvin 's arrest , after one person called in after spotting the mercedes while listening to a police scanner .\ndavid zaslav was compensated $ 156.1 million for his role as ceo of discovery communications in 2014 it was revealed on friday . this amount is thanks to the success of television events like shark week and shows like the once popular here comes honey boo boo . he also helps to run oprah winfrey 's network , own . this amount is far , far greater than the $ 93million cbs chairman sumner redstone made in 2013 , the highest paid television executive . of this money , $ 144million is in stocks .\nmemphis grizzles ' defence helped them to a 100-92 win over oklahoma city . they moved level with houston rockets at top of the southwest division . thunder star russell westbrook was largely shut down in their defeat . san antonio stayed within two games of fight over no 2 playoff seed . spurs cruised past denver 123-93 after losing tiago splitter to a calf injury . brooklyn 's deron williams scored 31 to lead the nets to a 114-109 win .\npupils applying to cambridge university may have to take an entrance test . exams could be introduced next year and would help select best applicants . university says changes to exams has made it harder to choose students .\nsources claimed he 'd go if lib dems are reduced to fewer than 30 mps . but yesterday insisted he would fight for his job ` in all circumstances ' warned of ` very real risk we undo all the hard work over last five years ' . vince cable hopes to be chancellor if lib dems form another coalition .\nparis saint-germain won 3-2 at ligue 1 title rivals marseille on sunday . david luiz tore his hamstring during the stade velodrome encounter . luiz will be out for at least four weeks after scans revealed the injury .\nyounger people feeling lonelier than older generations according to report . 43 % of 18 to 34-year-old wish they had more friends . many only interact with friends online . chloe jackson , 19 , said facebook makes her feel lonely . feels left out when she sees friends ' posts when they 're out having fun .\nremains of the magdalenian ` red lady ' were uncovered in el mirón cave . bones were stained with a red ochre made from a haematite crystal . grave is the first burial of this kind found in the iberian peninsula . her identity and why she was buried in an elaborate tomb are unknown .\nnaoki ogane says that chelsea have made an offer for yoshinori muto . the 22-year-old forward has one goal in 11 games for japan . muto admits that it is an ` honour ' to receive an offer from the blues . chelsea have signed a # 200m sponsorship deal with yokohama rubber . muto graduated from university with an economics degree two weeks ago . he would become the first japanese player to sign for chelsea .\nthe ` horrific ' mudgeeraba caravan village is home to over 100 people . queensland police patrol the site daily due the extreme level of incidents . it has seen a fatal house fire , stabbings , brawls , and continual violence . ambulance officers will only enter the park under police protection . ` we 'll get up to mischief here on occasions , ' owner bob purcell said .\ndortmund value defender mats hummels at # 35million . manchester united could take advantage of sea of change at dortmund . jurgen klopp is leaving dortmund and host of stars are expected to follow . man utd also identify ilkay gundogan as replacement for michael carrick . man united fan provides louis van gaal with # 300m transfer wish list .\nconservative and labour parties to get near identical number of votes . poll puts tories at 31.8 per cent of the vote and labour at 31.7 per cent . lib dems are expected to get 13.5 per cent and ukip 12.7 per cent .\n`` grey 's anatomy '' is in its 11th season . derek shepherd , played by patrick dempsey , died after a car crash .\nmanchester united manager louis van gaal was stunned players could not train after dark at the swish carrington training ground . van gaal ordered improvements including the installation of floodlights . the dutchman is keen to replicate match conditions during sessions .\nonly 4 % more women have chosen to go part-time over the last two years . there are now 1.02 million men in uk who have decided to reduce hours . men now make up 10 % of parents who care for children or family full-time .\njake castner is wanted over burglary and theft-related offences . he is boasting about how the police ` ca n't catch ' him on facebook . he also appears to offer to sell drugs and a locked iphone 4 . the 19-year-old was called a nightmare by a magistrate last year . police are appealing for help to find the teen from ballarat , victoria .\n` republicans seem to be talking only about me , ' hillary told reporters in new hampshire . that 's true : a forthcoming book claims she traded official favors at the state department for speaking fees and donations to her foundation . ` hopefully we 'll get on to the issues , ' she said . clinton has yet to publicly articulate her own platform of issues and policy goals as a presidential candidate .\nboy , 13 , arrested after deadly attack at secondary school in barcelona . the teenager allegedly shot and killed a teacher using a crossbow . teen had written a ` kill list ' of 25 teachers and students , classmates say . two students and two teachers were injured in the attack this morning . attack took place on 16th anniversary of columbine school massacre .\nander herrera has scored seven goals for man united since joining in june . herrera 's eyes have been shut when striking the ball for six of his goals . his superb strike against yeovil town has been only goal with eyes open . herrera netted a brace in manchester united 's 3-1 win over aston villa .\nthe robot fanuc cr-35ia was engineered by a company in coventry . it is designed to be used alongside humans without safety fences . uses vision technology to look for humans and stops if it touches them . could be used in warehouses to lift heavy items up to 77 lbs -lrb- 35kg -rrb-\nfrances cappuccini died after giving birth to son giacomo in october 2012 . two doctors and kent hospital accused of gross negligence manslaughter . international arrest warrant issued for dr nadeem azeez , 52 , from pakistan . teacher and husband wanted caesarian but allegedly persuaded not to . mrs cappuccini required emergency c-section and died hours later .\nlabour leader ed miliband had motivational notes for televised debate . secret cribsheet revealed his set of reminders including ` me versus dc ' also included words : ` happy warrior ' , ` calm , never agitated ' and ` decency ' labour defended notes calling them evidence of miliband 's ` positive vision '\nthe video shows people throwing chairs and stanchions . friday was the grand opening of fat tuesday at the casino . three men have been arrested .\nseaworld florida accused of drugging its performing killer whales . lawsuit alleges park 's pools are so shallow the orcas get sunburned . accuse staff of painting over killer whales ' injuries and burns . claims marine park use chlorine ` many times stronger than bleach '\nmarilyn zuniga , third grade teacher at forest street school in orange , new jersey , suspended without pay . she had her students write letters to former black panther mumia abu-jamal who was hospitalized at schuykill medical center in pennsylvania . zuniga had the cards delivered and they made mumia ` chuckle and smile ' critics say they ` promote a twisted agenda glorifying murder and hatred ' . school district said zuniga did not speak with parents or ask permission . mumia is serving a life sentence after years of appeals won him a reprieve from his death sentence in 2012 .\nlance futch , 26 , was shocked to discover that his ` informal meeting ' with a federal official to discuss jobs for veterans was actually with president barack obama . ` if i had known it was my commander-in-chief , i definitely would have been wearing my blues , ' said futch , referring to his national guard dress uniform . futch works for utah solar energy company vivant solar and discussed with the president whether the field offered stable career paths for veterans .\ncraig cathcart stuck the only goal of the game in the 56th minute . if the hornets win their final two games , they will be promoted . bournemouth were held 2-2 at home to sheffield wednesday .\nantarctic song does n't fit the pattern of noise made by beaked whales . beaked whales are elusive deep divers about which little is known . song could hint at a new species or could be made by a southern bottlenosed whale , although experts have their reservations .\namerican youtube user kentuckyfriedidiot filmed himself teaching his newborn daughter how to suck a plastic water bottle . to date the clip has been watched more than 190,000 times .\nscientists created a computer model to analyse kola fireball 's trajectory . it had similar orbit to asteroid 2014 ur116 due to pass by moon in 2017 . this suggests the two bodies may be related as streams of asteroid fragments can travel on nearly identical orbits .\nellie harrison says she ` accepts ' that she will one day be replaced . she has previously been asked to be less ` hollywood ' on screen a comment she believes refers to her blonde hair . in 2009 bbc came under fire for dropping former countryfile presenter miriam o'reilly who successfully sued them in 2009 .\nanais zanotti , 30 , has completed 1,350 freestyle skydives . french model moved to miami to pose for international magazines . is also a pro skydiver who teaches other adrenaline junkies how to jump .\nandrew odell tweeted a picture of the mouse crawling around on his bread . mr odell later wrote that he did n't think aldi was taking matter seriously . aldi have said they are looking into the incident ` as a matter of urgency ' .\nstrange formation is a sun spot and fairly common.the number on the surface correlates with how active the sun is . spots occur when magnetic fields causes surface temperature to reduce , making a section stand out . have temperature of up to 4,200 °c -lrb- 7,590 °f -rrb- , compared to 5,500 °c -lrb- 9,930 °f -rrb- of the surrounding solar material . gordon ewen captured the unique photograph using a large telescope at the bottom of his garden in hertfordshire .\nmarine le pen accused father jean-marie of committing ` political suicide ' comes after he called france 's prime minister manuel valls ` the immigrant ' he also defended comment that nazi gas chambers were ` detail of history ' le pen said she would oppose her father 's bid to lead the national front .\ndanny ings is being targeted by manchester united in the summer . louis van gaal has been impressed with the burnley forward this season . ings is likely to be one of a number of signings for the red devils . click here for all the latest manchester united news .\neric cantona has claimed earlier that javier pastore is ` best in the world ' but pastore believes cristiano ronaldo and lionel messi are better . psg face barcelona in the second leg of their last-eight champions league clash in the nou camp on tuesday ... they trail 3-1 in the tie . read : laurent blanc admits getting past barca is ` practically impossible '\nsergeant louise lucas was shopping with her eight-year-old daughter , 8 , in swansea when she was struck by a bus . onlookers said mother-of-three pushed daughter olivia out of the way , taking the full impact of collision and died . police of all ranks flocked to her funeral in cyncoed , cardiff , today while her hearse was flanked by police horses . her husband gavin walked hand-in-hand into church with olivia and son lloyd , 7 , to their mother 's favourite song .\njason cotterill knew his victim had previously been involved in sex videos . he taunted her with links to x-rated explicit video and insinuated that if she did not have sex with him again , he would send photos to family members . pair had known each other since childhood and met again via facebook . but victim regretted their liaison and said she did n't want to see him again .\nlyndey milan created easter lunch recipes for $ 6 per person from aldi . home cook icon trawled supermarket aisles to find inspiration for recipes . result of experiment include greek lamb and herb crusted salmon dishes . hot cross bun and easter egg bread & butter pudding came in at just $ 2 a person and lyndey says it is sure to be a crowd pleaser .\nedward mccaffery : there 's a fundamental unfairness to u.s. tax laws . but americans do n't care because most of us get a refund on tax day , and that makes us happy .\nscientists believe future vaccine could trigger body 's immune system . could flush out dormant hiv hiding in the body allowing the immune system to identify and target virus cells . theory based on one case study , 59-year-old man with hiv whose virus load - amount of hiv in his blood - drop dramatically after treatment .\nremmie , 18 , got a piercing across the top of her ear . she hoped it would make her stand out from the crowd . went ahead with piercing against advice of her mother . her body tried to heal the wound by producing scar tissue . created an unsightly lump known as a keloid scar . extreme beauty disasters is on tlc , thursdays at 8pm .\nfernando alonso , 34 , signed a three-year deal with mclaren this year . spanish driver says this will be his last venture in formula one . mclaren have struggled for pace in first two grand prix of the season . alonso says he expects success will come - it is just a ` matter of time ' .\npressure on education intensified following baby boom and migration . schools are being forced to boost class sizes and add classrooms . lga warns they may not be able to create more places at the rate needed . by september next year two in five local authorities in england will have more children ready to start school than there are places .\nmasters 2015 starts on day two with ian woosman and erik compton . former golf world no 1 tiger woods is set to feature at 3.30 pm . rory mcilroy will start near the end of day two in group 32 at 6.48 pm . click here to follow the masters 2015 day two action live .\ncosmetic dermatologist to the stars fredric brandt was found dead at his coconut grove home in miami on sunday , aged 65 . ripa tweeted : ` my heart is breaking for the loss of dr. fredric brandt . my friend . you will be missed forever and in my heart even longer ' . on live with kelly & michael the 44-year-old said , ` he was a great man ' .\nsky sports will be paying # 11millon a game to broadcast games in 2016 . three-year deal means sky are re-addressing their entire sports strategy . ` fit for the future ' plan will see reduced programming support .\nali gordon and lydia millen met when he liked her picture on instagram . the couple then met up at a party and started dating four months later . fitness fanatic ali then started to help lydia transform her fitness . he taught her about training techniques and nutrition .\nas reports carlo ancelotti will remain real madrid manager next season . ancelotti also expects iker casillas to be at the bernabeu next year . madrid host malaga tonight looking to close the gap on leaders barcelona .\nmoses kipsiro says five female athletes came to him for help . he alerted his federation and police to the allegations . the commonwealth champion has since received death threats . kipsiro may have to leave uganda as he wants to protect his family . he has passed details of the death threats to officers in kampala , uganda . kipsiro , along with mo farah , is represented by pace sports management .\nphotographer jessica fulford-dobson took pictures of the girls at the skateistan facilities in kabul . australian oliver percovich created skateistan , an ngo , to promote education through skateboarding ; participants can also join a free back-to-school program .\nsacha whitehead collected sleeping bags and clothing donations . she braved the storm by delivering the donations to homeless people . the 26-year-old mother is collecting more donations to hand out tonight .\na youtube video shows the scale of an avalanche on mount everest on saturday . eight nepalis are dead at everest , but not identified ; three americans are also dead . helicopter rescues are underway to retrieve climbers stranded on everest .\nteenager charged with arson at manchester hair salon will not face trial . inferno erupted at paul 's hair world in northern quarter on july 13 , 2013 . scientists initially stated the fire could not have been started accidentally . but they now say discarded cigarette near the fire exit could have caused it . stephen hunt , 38 , died after he and colleague got into trouble tackling fire .\natletico madrid 0-0 real madrid : read martin samuel 's report from spain . mario mandzukic was battered and bruised during the quarter-final tie . the atletico striker came to blows with sergio ramos and dani carvajal . atletico have a history of buying great strikers after selling their forwards . diego simeone has bought the closest thing to diego costa he could find . mandzukic differs from costa in style of play but proved as aggressive . he and antoine griezmann can become suitable replacements at atletico .\na poll of 600 executives was conducted by yougov for gsm london . the biggest pet peeve was spelling or grammatical errors on the cv . brevity is valued , with employers disliking waffling resumes .\nnew instagram account showcases buff , often topless , men cuddling their adorable pet pups . launched one month ago , it boasts 148,000 followers and relies on submissions via direct messages . owned and run by elite daily 's staff writer kaylin pound , who also created rich dogs of instagram .\nbrits spend # 815 million a year to ` social media proof ' their wardrobe . survey shows that men spend more money than women . one third of brits admitted to buying new clothes to avoid multi-tagging . blogger lily melrose says social media has changed the face of fashion .\nbuzim in north west bosnia saw 21 sets of twins born during the civil war . researchers believe there are more than 200 sets of twins in the town . more are believed to have fled due to the civil war and grinding poverty . the mayor now wants to hold a convention for twins to boos tourism .\naston villa take on liverpool in the fa cup semi-final on april 19 . midfielder jack grealish watched villa as a fan at wembley twice in 2010 . they lost to man united and chelsea in the league cup and fa cup . grealish is hoping to replace that misery as a fan with joy as a player . liverpool set up the tie after beating blackburn 1-0 on wednesday night .\ncass high school head basketball coach greg scott , 51 , lost his short battle with leukemia wednesday . family were initially told scott 's blood cancer was treatable , but the disease proved to be fast-moving . the teacher and coach is survived by his wife , two children and a young grandchild .\nmarc wabafiyebazu , 15 , has been arrested for felony murder and his brother jean , 17 , was shot dead on monday . this after an incident in which the two reportedly tried to rob a group of miami drug dealers . their mother is roxanne dubé , the recently appointed canadian consul general in miami . the boys had driven to a house with a third friend to reportedly purchase two pounds of marijuana for $ 5,000 . gunfire erupted soon after they entered , though marc was in the car at the time . another man , joshua wright , was killed , and anthony rodriguez , who was wounded , was also arrested on charges of felony murder .\nlenny mordarski was rudely awakened when he fell asleep before take-off on a south west airlines flight on thursday . a female passenger sitting next to him was jabbing him with a ballpoint . he said : ` imagine being asleep and then being stung by bees , and then waking up and going ` owww '\nsaudi arabia airstrikes on the capital increase as jets hit military facilities in sanaa . the u.n. security council meets to discuss the situation . social media : a senior al qaeda commander stands in a presidential residence after a jail break .\nswiss professor jean-pierre wolf is pioneering the use of lasers to affect the weather . he suggests lasers could also be used to limit the impact of climate change .\nchristopher lawler claims he was pinned to a chair and groped by staff . he left job at clarence house the same day as alleged incident in 1978 . mr lawler , now 68 , claims he reported his account but was twice ignored . the palace is now ` cooperating ' with police to investigate historic claims .\ncelebrities can make travel seem effortless and glamorous on social media . stars experience the same airport mishaps regardless what they pay . the rooney 's luggage was ransacked and naomi campbell 's was lost .\nthe moose toys headquarters is located in the heart of melbourne . staff can enjoy basketball , table tennis and yoga sessions during breaks . the team can scribble their ideas on whiteboard walls inside the cubby . employee of the year gets a gold crown and a free holiday of their choice . but there 's one catch - no one is allowed to eat lunch at their desks . other activities include a trip to an art exhibition and karaoke nights .\nchef sam longhurst of splendid kitchen manchester created the burger . the 10-inch tall whole damn farm burger weighs half a kilogram . two beef burgers , chicken thigh , pulled pork , bacon , ham and bacon jam .\nsenior official said there will be ` zero chance ' that family of american held hostages overseas will face jail or prosecution for trying to free loved ones . a national counterterrorism center advisory group is set to recommend the move which would mark radical shift in us hostage policy . family of us contractor warren weinstein , who was taken by al-qaeda in pakistan in 2011 , paid a $ 250,000 ransom to try and secure his release . journalist james foley 's mother said obama administration told her it was illegal to raise a ransom to free her son . james foley was beheaded in august 2014 by islamic state fighters .\nrural practice in north wales left with one gp to care for 4,300 patients . dr afron williams is the sole doctor after his two partners retired . he warns the nhs is at ` breaking point ' adding that it will be ` incredibly difficult to provide realistic , safe service for our patients ' health board said recruiting gps is a national problem but said they are exploring both short and long term options to relieve the pressure .\nprince harry visited one of the most remote areas in the world as part of his tour with the australian army . captain wales spent time with locals in the wuggubun community , some 600 miles from darwin , the nearest city . locals who were thrilled to spend time with harry said he just ` rocked up ' and that he is a ` delightful chap ' 30-year-old has been in australia since monday and will stay for a month before retiring from the british army .\nto counteract shifts in gravitational pull , engineers build typhoon on ` floating ' concrete rafts with laser trackers and computer-automated jacks . this # 2.5 million system means the jet is accurately aligned . elsewhere , the jet fighter can reach supersonic speeds in 30 seconds . and the typhoon helmet lets pilots ` see ' through the bottom of the jet .\ndriver played ` demolition derby ' through streets of banglamung in thailand . police shot out three tyres to stop the car as it drove into oncoming traffic . angry mob surrounded the vehicle after it stopped to attack blond driver .\nmanchester united beat manchester city 4-2 at old trafford . louis van gaal thanks united fans for their patience . united now four points ahead of city in third place in premier league . van gaal endured tough start to the season with a loss at home to swansea on the opening day and a 4-0 defeat by mk dons .\nkendra spears , 26 , has given birth to her first child , a son named irfan . the baby , whose father is prince rahim aga khan , was born in geneva . ms spears , now known as princess salwa , is said to be doing well .\nnico rosberg was the last driver out of the pit-lane and was forced to turn in a quicker out-lap than he would have liked ahead of his final shot at pole . the german narrowly lost out to his team-mate lewis hamilton . rosberg was just 0.042 secs slower than his mercedes rival . rosberg also said : ` oh , come on , guys ' , over the team radio after he was informed he 'd missed out on pole for sunday 's chinese grand prix .\na store in pittsburgh , pennsylvania is charging women 76 per cent of what they charge men , reflecting the local pay gap . owner elana schlenker says she hopes the project , called less than 100 , draws attention to wage inequality . she plans to travel with the shop and will open up in new orleans , louisiana , this fall .\nlizzie borden and her family are buried in fall river , massachusetts . their plot at oak grove cemetery was defaced with black and green paint . speculated graffiti is related to lifetime 's the lizzie borden chronicles . borden was acquitted after going on trial for the two murders in 1892 . inspired rhyme : ` lizzie borden took an ax and gave her mother 40 whacks ' historic murder house is adjacent to where aaron hernandez is on trial .\nferrari finished disappointing fourth in the constructors ' standings in 2014 . they improved this season and are second to mercedes after three races . sebastian vettel won the second race of the season in malaysia last month . kimi raikkonen sees no reason why ferrari can not challenge for the title . click here for all the latest f1 news .\nmatthew kenney , 34 , said he smoked flakka before he went streaking . was arrested on saturday after run through fort lauderdale , florida . drug is made from same version of stimulant used to produce bath salts . it causes euphoria , hallucinations , psychosis and superhuman strength . kenney has prior arrests and was hospitalized for a psychiatric evaluation .\nthe world no 1 defeated tomas berdych 7-5 , 4-6 , 6-3 in monte carlo . novak djokovic is first player to win opening three masters 1000 events . serbia star defeated clay court specialist rafael nadal in semi-finals .\ngerman eossc2 concept car is electric and semi-autonomous . it can turn on the spot and be driven diagonally and sideways . concept car can park itself in tight spaces using cameras and a sensor . engineers hope to make 40mph -lrb- 60km/h -rrb- vehicle completely autonomous .\nandrei arshavin will be released by zenit st petersburg at end of season . former arsenal striker 's contract at russian club has expired . ukraine captain anatoly tymoshchuk will also be departing . zenit , coached by andre villas-boas , are top of russian premier league .\nthe noose , made of rope , was discovered on campus about 2 a.m. hundreds of people gathered wednesday afternoon to show solidarity against racism . duke official says to unknown perpetrator : you wanted to create fear but the opposite will happen .\non saturday , rosetta was just 8.6 miles -lrb- 14 km -rrb- of the comet 's surface . images reveal one of most detailed photos of the comet 's bump ` neck ' . esa recently released a trove of images captured from rosetta 's journey . rosetta will make passes through comet geysers in the coming months .\nnew england revolution came from behind to beat philadelphia union . new york city 's struggles continued with defeat by the portland timbers .\nmanchester city beaten 2-1 by crystal palace on easter monday . # 40m signing eliaquim mangala was left on the bench . crystal palace 's entire starting xi cost just # 17million . click here for all the latest manchester city news .\ntv debate was the first proper view of sturgeon for most outside scotland . snp leader has most experience of governing of politicians who took part . sturgeon is the most dangerous woman in british politics , writes columnist .\na new reddit thread asked disabled people to submit their pet peeves . many said being labelled ` brave ' or ` inspirational ' is just patronising . others hate it when people take charge of their wheelchairs .\nshinjiro kumagai is a priest at a buddhist temple in southwest japan . he dresses as iconic japanese hero kamen rider and hunts drink drivers . the temple sponsors his cause by funding the costume and cyclone bike . kumagai has the support of police and is an ` official drink-drive patrolman ' kamen rider was a popular japanese superhero series airing in the 1970s .\na student expelled from george mason university for violating its sexual misconduct policy is suing in federal court to clear his name . the man is arguing an encounter with a girlfriend was sadomasochistic role playing , not sexual assault . the sexual misconduct allegations stem from an october 2013 encounter with the couple in the male student 's dorm room on the fairfax campus . at one point , according to the lawsuit , she pushed him away but did n't invoke her safe word . later that night , the two engaged in a second sex act , in which the male student asked her if she was interested , and she replied , ' i do n't know ' the lawsuit claims the woman only filed a complaint months later , after the couple broke up and she had found out the man was cheating on her .\nbeatriz paez was walking sunday when she saw police activity . she says marshals told her to stop recording but she refused . marshals service said it is looking into incident after man took her phone and smashed it .\nmarcus , a 13-year-old maryland boy , provided firefighters with instructions . smelled smoke when family 's clinton home caught fire sunday morning . was trapped in a second-floor bedroom with nine-year-old sister during fire . soothed his sister after she blurted out ` we 're going to die ' during the call . siblings saved and three other people in the home escaped without injury .\njason gillespie has landed a role in the big bash t20 league . the former australian fast bowler will coach the adelaide strikers . gillespie will combine the role with his duties at yorkshire .\nred ed wants councils to encourage building by hiking tax on unused land . sites still left idle could be compulsorily purchased by another developer . property analysts say it would take uk back to ` dark days of the seventies ' tory candidate said it 's ` sort of policy you might expect from soviet russia '\nanonymous vlogger bionerd has become cult figure in the science world for her thrilling videos shot in chernobyl . during visits to measure radiation she 's been bitten by ` radioactive ' ants and eaten contaminated apples from trees . says she 's more likely to get cancer from swimming in the sea - but officials say it 's so dangerous to live there .\nthe owner of the cooden beach hotel has apologised to guests and staff . almost everyone who has visited in the last two weeks has fallen ill . a warning sign has been posted on the door of the hotel in bexhill-on-sea . health officials said they have eight confirmed cases of norovirus .\nniloofar rahmani , 23 , is the first female pilot in the afghani military since the fall of the taliban in 2001 . she and her family have been forced to move several times after receiving death threats from the taliban . captain rahmani has now been awarded the u.s secretary of state 's international women of courage award .\neden hazard scored the opening goal for chelsea against manchester united . at the start of the preceding move , john terry brought down radamel falcao . sky sports pundits agreed that play should have been stopped . thierry henry , graeme souness and jamie redknapp analysed at half-time .\nconnor sullivan , 17 , of cupertino , went missing from school early monday . junior returned home thursday night after hundreds searched for him . he used portable bathrooms at school , which has guava and quince trees . teenager told police that he slept under the bleachers every night .\nliverpool beat manchester united 1-0 in the fa cup fifth round in 2006 . alan smith suffered a broken leg and a dislocated ankle during the game . reports claimed liverpool fans attacked the ambulance with smith in .\nmesut ozil was brilliant during arsenal 's 4-1 victory against liverpool . the german is first to get criticised , but he is a special talent . eden hazard 's composure has been key for chelsea this season . manuel pellegrini will be feeling the pressure on monday night . ander herrara is enjoying his football after a difficult start . bafetimbi gomis is proving there is life after wilfried bony at swansea .\ntyler macniven , who won the ninth season of the amazing race , filmed a save the date for his upcoming wedding . in the video , macniven and his fiancee kelly hennigan battle friends and in the end escape one very large explosion . the couple 's wedding will be on september 26 , 2015 , though the video fails to say where the ceremony will take place .\nglen walford , 75 , grew up in her parents ' house in stourport-upon-severn . the theatre director 's mother mary was forced to move into care in 2006 . worcestershire county council tried to sell the house to pay for her care . but miss walford fought them , claiming the property was hers to retire to . high court sided with the walford family who were allowed to keep house . but its decision was overturned in the court of appeal earlier this year . now the council will decide whether or not to put the house on the market .\nfranck ribery hopes to be fit for next week 's german cup clash . ribery aggravated the injury picked up against shakhtar donetsk . fellow winger arjen robben also out of the weekend 's big game .\nalexander bradley , a key witness in the aaron hernandez murder trial , told the jury on wednesday the football star had access to the murder weapon . bradley claimed he saw someone hand hernandez a black glock pistol in a miami hotel . bradley , who says he was hernandez 's former drug dealer and then best friend , was not allowed to testify that hernandez shot him in the eye . prosecutors had contended the february shooting is relevant to the lloyd murder since it shows that hernandez had no trouble shooting his friends . bradley is currently suing hernandez for shooting him . during one sidebar bradley stared directly at hernandez , who refused to make eye contact . the prosecution in the case is expected to rest tomorrow . meanwhile , hernandez 's lawyer james sultan has implied he only plans on calling one witness when they begin their case on monday .\ntom mctevia , 42 , and his passenger and best friend , tina hoisington , 45 , died after their atv plunged from an idaho overlook on sunday . witnesses said they got too close to the edge while posing for a photo . mctevia was left paralyzed in another atv accident 11 years earlier . but the former cop and navy veteran continued to stay active and advocated for better trails for people in wheelchairs .\nkevin bollaert was found guilty of 27 counts of identity theft and extortion . he operated ugotposted.com , where anonymous users posted nudes without the subject 's consent . he then earned tens of thousands from running changemyreputation.com , where victims would pay fees of $ 300 to $ 350 to have their photos removed . also published their names , addresses and social media details . he was sentenced to 18 years friday . judge said the sentence reflected the amount of victims . prosecutors said he took pleasure in hurting women .\nfour sisters were at centre of an international custody dispute . the girls were sent back to live with their father in italy in 2012 . they were dragged kicking and screaming from their sunshine coast home . the distressing scenes shown on tv caused hysteria and concern . 60 minutes has exclusively interviewed the girls at their home near florence . their mother has not visited them in italy until now . this edition of 60 minutes will screen nationally on channel 9 at 8.30 pm this sunday , april 12 .\nsamantha fleming and daughter serenity were last seen in anderson , indiana on april 5 . the three-week-old infant was discovered unharmed in the gary , indiana home where the body of a young woman was discovered . the alleged kidnapper was not at the home , which had a nursery . alleged kidnapper 's neighbor said the woman had told her she was pregnant with twins but that one had died during birth . the child was in the care of the alleged kidnapper 's sister when police arrived after fleming 's wallet was found nearby .\nlewis hamilton will start on pole in china . pushed teammate rosberg into second on the last lap . rosberg refused to shake hamilton 's hand afterward .\ngaioz nigalidze is banned from the dubai open chess tournament . officials say he frequented the bathroom , where his phone was hidden in toilet paper . that phone had a chess analysis application open , officials say .\ndavid de gea is yet to extend his contract beyond 2016 . real madrid want the spanish goalkeeper to replace iker casillas . as claim real will wait for contract to run down if they ca n't sign him . carlo ancelotti wants petr cech as a stop-gap if he has to wait until 2016 .\npolice say 275,000 demonstrators marched in sao paulo . many want president dilma rousseff to be impeached . a corruption scandal has implicated politicians in her party .\nmegan huntsman , 40 , pleaded guilty to the six murders in february . police said children , born between 1996 and 2006 , were alive just minutes . she would strangle newborns with her thumbs and hide them in garage . two of her old daughters spoke up for their mom in letters read in court . huntsman , from pleasant grove , utah , was sentenced for her crimes today . given six sentences of five years to life , three of which are consecutive . means she will spend at least 15 years behind bars , and likely much longer .\nmaickel melamed , 39 , finished the race at 5am on tuesday morning . the venezuelan athlete was supported and cheered on by dozens of friends as well as his physical trainers and volunteer team . melamed 's condition makes it hard to just walk or move but this week he completed his fifth marathon . he chose boston to be his final marathon because he received a life-saving procedure in the city when he was child .\nnick and sharon chalwell have been trying to start a family for seven years . the perth couple have gone through nine rounds of ivf treatment . turned to crowdsourcing to find an egg donor due to long waiting lists . found a mother-of-one called shannon willing to help them conceive .\njordan rhodes has scored 70 goals in the last three seasons . dougie freeedman tried to sign the striker in march , but was turned down . rhodes and partner rudy gestede also attracting premier league attention .\nhull are currently 17th in the premier league table with a difficult run-in . steve bruce revealed that relegation would see players ' salaries cut . the tigers face crystal palace at selhurst park on saturday .\nricky hatton was ko 'd by both floyd mayweather and manny pacquaio . hatton says pacquiao has an advantage over mayweather because he has freddie roach in his corner . but he still expects mayweather to win may 2 mega-fight . hatton believes amir khan could trouble mayweather more than pacquiao .\na reddit user handed in their notice by writing sarcastic letter . apologises for step-mother dying , sickness and doctor 's appointments . clearly disgruntled staff member says ` sorry ' for working unpaid overtime .\nfreddie gray , 25 , died sunday a week after his arrest in baltimore . four officers arrested him for a violation now revealed to be switchblade . he was dragged during the arrest and witness said his legs ` looked broke ' gray was loaded into a transport van and put in restraints on way to station . gray lapsed into coma and underwent extensive surgery at trauma center . baltimore mayor stephanie rawlings-blake promised thorough investigation . ` whatever happened happened in the back of the van , ' she said .\nlillian roldan says she dated ariel castro from 2000 to 2003 according to a new book about the cleveland house of horrors by john glatt . roldan says she met castro on a blind date and that during their three-year relationship , he was nothing but a gentleman . two years into their relationship , castro kidnapped his first two victims , michelle knight and amanda berry , and locked them in his basement . roldan says she never knew castro was hiding the women , but that he did keep a padlock on his basement door . castro broke up with roldan with a letter in october 2003 , and a few months later went on to kidnap his third victim gina dejesus . the three women were kept captive in the house for another nine years , until they made a dramatic escape in may 2013 .\nformer english teacher brianne altice , 35 , ` had sex with three students ' she ` had sex with the third student while she was out on bail and a judge ordered for her bail to be revoked ' one of the students , who was 16 when they allegedly had sex , has now sued the davis county school district . another alleged victim filed $ 647,000 lawsuit last month accusing district of negligence .\njulie mckenzie , 53 , from bushy , herts , had a nagging back pain . her gp assured her it as down to a mild curvature of the spine . but she 'd always been strong and active until the pain began in 2013 . she used her private medical cover to see a spinal surgeon , robert lee . mri scan revealed her coccyx contained a tumour .\njeni 's splendid ice creams of ohio said in an online statement on thursday that it has initiated voluntary recall of all of its products . company 's ice creams , frozen yogurts , sorbets and ice cream sandwiches are being recalled and retail stores are closed until products are 100pc safe . nebraska department of agriculture found listeria in a sample of jeni 's ice cream it randomly collected at a whole foods in lincoln , nebraska . jeni 's wrote in statement that it was taking precautionary measure in order to ensure complete consumer safety . on monday , blue bell creameries issued a voluntary recall of its products . centers for disease control and prevention said there are no known illnesses linked to jeni 's products .\nthe spfl have announced their post-split fixtures . celtic will not play another saturday league fixture this season . they face nearest rivals aberdeen at pittodrie on sunday , may 10 .\nbritain ranks as just 27th best country in the world for health and wellness . obesity levels were the main factor pushing britain down in health ranking . study shows uk came 11th in countries with high standards of prosperity .\nmelissa ball was parked at gas station with son grayden in the backseat . christopher whitmore pulled up beside car , shooting his son and then wife . couple had history of domestic issues but motivation for killing not known .\nmauricio pochettino has gathered a considerable reputation in england . tottenham boss brought through the likes of harry kane and ryan mason . the argentine manager is a godsend to fa chairman greg dyke . sportsmail reveal which managers have most faith in young , english talent .\nleo bernal , 8 , suffered gunshot wound to the head as he lay in bed in culver city , california . doctors had to open his skull to save his life , leaving him with 23 staples . bernal 's mother say her son is not afraid to return home .\nhundreds were evacuated from a big top circus after rain tore through it . more than 1000 homes lost power between houston and dallas . cars floated across harris county in half a foot of rain on saturday .\nexperts have warned hospitals not using standard treatment for sepsis . blood poisoning affects more than 100,000 britons a year and kills 37,000 . 10 % of patients at edinburgh royal infirmary ward given correct treatment . sepsis six involves blood tests to check for infection and monitoring urine .\nandrew cole revealed he went out for dinner on saturday with four of his former manchester united team-mates . cole was joined by ryan giggs , paul scholes , gary neville and nicky butt . manchester united fell to a 1-0 defeat by premier league leaders chelsea .\njiaro mendez and elias acevedo got into fight on april 14 just before 1am . police said the men were taken to hospital with lacerations on their bodies . the pair were found to be ` highly intoxicated ' as officers arrived at scene . mendez said acevedo hit him in the head with beer bottle and stole his car . acevedo , 21 , was arrested and charged with assault with a deadly weapon .\njordan spieth holds lead in 2015 masters . strong starts from mcilroy and woods . both fall away as 21 year old spieth takes control .\nwojciech szczesny feels sorry for adam federici after his fa cup error . the goalkeeper let an alexis sanchez shot squirm into the net in extra-time . szczesny insists federici ` was the best player on the pitch ' at wembley . arsenal went onto win the semi-final 2-1 after the goalkeeper 's error . click here for all the latest arsenal news .\nadmiral insurance has complained about use of text speak in applications . ' u r a gr8 company 2 work 4 ' just one example of the poorly worded forms . welsh assembly asked companies to say why school leavers out of work .\nlabour rival alerted colleagues after spotting councillor tucking into roast . it is not the first time jonny bucknell , 58 , has demonstrated odd behaviour . in 2013 he slept in his car to make a point while attending tory conference . mr bucknell said he will campaign for rule change about eating at meetings .\n26-year-old atlanta woman uses a mason jar as a trash can . she has produced about as much waste in six months as an average person does in less than a day . she strives to live a ` zero waste ' lifestyle .\ngeneral motors unveiled their concept car at an event in shanghai . chevrolet-fnr has ` dragonfly ' swing doors and ` crystal laser headlights ' it is self-driving , electric , and the front chairs can swivel round . and using iris recognition software you can start it using just your eyes .\nmanchester united lost 3-0 at everton in the premier league on sunday . man united sit fourth in the premier league table with four games left . they are seven points clear of liverpool - who have a game in hand . chris smalling : manchester united must improve . van gaal : i could tell the players ' attitude was not right during the warm-up .\nchristopher furniss-roe , 8 , found hanged in his bedroom in south wales . he had been sent to bed early for breaking younger sister 's beach bucket . his father tried to save his life , but he died in hospital the following day . coroner ruled it was a ` tragic accident ' and recorded the cause as hanging . for confidential support on suicide matters in the uk , call the samaritans on 08457 90 90 90 , visit a local samaritans branch or click here . .\ngeoff haigh , 61 , wanted to marry partner heather after cancer diagnosis . couple married at manchester register office but day was full of blunders . guests forced to listen to wedding song 10 times in a row and venue dirty . marriage certificate had spelling errors and wrong date and names .\nlittle foot was unearthed in the 1990s in south africa . new dating of fossil shows it is is roughly 3.7 million years old . lived at roughly the same time as australopithecus afarensis , the species whose most famous fossil , known as lucy , comes from ethiopia . raises the question of how many other species there may have been .\nfor 25 years , ali addeh refugee camp has been a holding point for those fleeing into djibouti . many come from somalia , ethiopia and especially eritrea -- which is ruled by a one-party state . despite the risks , eritrean refugees say they 'd risk their lives with people smugglers .\nsim bhullar is set to sign a 10-day contract with the sacramento kings . the 22-year-old will become the nba 's first player of indian descent . bhullar will be on the roster when the kings host new orleans pelicans .\ntesco operated multimillion-pound a fleet of five aircraft for its bosses . four of the private jets have been sold after they were put up for sale . sale comes after grocer embroiled in # 263million fraud investigation . over a seven year period firm spent # 29million flying executives across the world .\nbrendan rodgers has stated his intent on purchasing a forward . the liverpool boss wants a top forward who can ` play every week ' daniel sturridge has made just 12 premier league appearances . rodgers is keen on signing danny ings and memphis depay .\nmats hummels has two years left on deal but is considering his future . manchester united reportedly ready to pay # 30million to sign defender . hummels missed dortmund 's 3-2 win over hoffenheim on tuesday . franz beckenbauer : hummels is the perfect age to join manchester united . click here to watch highlights of dortmund 's win over hoffenheim .\nsir bradley wiggins and geraint thomas avoided the crash . but their sky team-mate elia viviani was not so fortunate . viviani hit the barriers in the final kilometre of the race .\nromelu lukaku has opened up about receiving racist abuse when just 15 . lukaku spoke on thursday at a kick it out session in a liverpool school . former chelsea front man admits racism still exists in modern football . lukaku reveals ` heavenly ' feeling of playing alongside arouna kone .\nmedics told the family of margaret hesketh she was riddled with tumours . relatives say she was then put on discredited treatment for the dying . had fluid and nutrition drips removed six days before she passed away . family say post-mortem exam found no sign of cancer in the grandmother .\n` crystal clear ' footage was found by worker based 50ft away from scene . police reportedly only knew about video when worker flagged it up to them . met refused to release cctv , despite claims it 's better than existing video . last week , scotland yard released cctv a day after images were revealed in the media .\nchelsea win barclays premier league and reach champions league . bounemouth promoted to premier league for first time in their history . watford make first return to top flight since 2007 . bristol city crowned league one champions with two games to play . burton albion promoted from league two with shrewsbury . tranmere rovers and cheltenham town relegated from league two . barnet win conference to earn promotion back to football league .\nstunning creations made by uk 's top cake artists and shown at the cake international exhibition in london . bakers used a range of decorating techniques and detailed sugar work to make the stunning cakes . every part of the ornate bakes is edible from the hand moulded sugar beads to sugar-work figurines . each cake egg measures 30cm high and was created as part of a feature for cake masters magazine .\nsamantha cameron makes solo campaign visit to a charity project . growing zone project helps children and adults with special needs . says the best part of campaigning is ` getting out to meet amazing people '\npremier league fans saw a number of brilliant goals scored this weekend . jermain defoe finished things off with a fantastic volley on sunday . alexis sanchez and bobby zamora also netted memorable goals . sportsmail 's jamie redknapp picks his top five strikes from the weekend .\n`` high profits '' follows the owners of a recreational marijuana dispensary . the cnn original series airs sundays at 10 p.m. et .\ntaline gabrielian , founder of hippie lane app has recreated all the classics . created raw versions of mars bars , twix , cherry ripe , snickers and bounty . gabrielian shares her recipe for raw bounty bars with femail . the sydney mother of two has 129k instagram followers . hippie lane app was released on itunes in january .\nxana doyle was killed after toyota avensis flipped and landed on its roof . driver sakhawat ali took class a and b drugs before crashing stolen car . court heard the 23-year-old was driving the vehicle at ` excessive speed ' admits death by dangerous driving and aggravated vehicle taking .\nsurvey finds women rule out five photos before posting a selfie online . two in three women anxious about having their photo taken , onepoll found . itv show launching campaign to get people to share their first selfie online .\nerica ginnetti , 35 , must also serve 60 days under house arrest , 100 hours of community service and three years ' probation . judge garrett page reportedly asked ` what young man would not jump on that candy ? ' . ginnetti pleaded guilty in a pennsylvania court in december to having sex with a 17-year-old student . page told ginneti her ` sexual hunger ' had devastating consequences for two families . married mother of three said she has mended fences with her family and became a fitness instructor . she first approached her victim in may 2013 when she chaperoned the senior prom and invited him to come work out at her gym .\ndomenico rancadore given a seven-year sentence by italian court in 1999 . he was convicted for role as a ` man of honour ' , taking bribes from builders . in february the sicilian mafia fugitive lost battle against extradition to italy . today it emerged that the 65-year-old 's case expired in october last year .\ngeorgia gov. nathan deal signs a medical marijuana bill . the bill is inspired by haleigh cox , a 5-year-old whose seizures threatened her life .\ntwo houses built over the site of former home so address no longer exists . place of 12-year-old 's brutal murder was reminder of evil to its neighbours . stuart hazell abused young tia there before dumping her body in the loft . council feared new addington house would become sick tourist attraction .\npoppy smart , 23 , accused builders of sexual harassment for wolf-whistling . compared it to racial discrimination and asked other women to speak out . building firm claims cctv footage proves it was not one of their workers . police investigated ms smart 's complaint but took no further action .\nscientists and biologists arrived wednesday to determine how the massive mammal died . the animal is one of 17 dead sperm whales to beach along the north coast of california in over 40 years . officials say it 's not immediately clear would be done with the carcass after the examination .\nmichael phelps was suspended by usa swimming following arrest . american is entered in five events at this week 's arena pro swim series . phelps ' rival ryan lochte has entered into the same five events .\nflorida a&m drum major robert champion died in 2011 after a hazing ritual aboard a bus . a jury convicted the last three defendants of manslaughter and hazing with the result of death .\naston villa beat liverpool 2-1 at wembley to book their fa cup final place . philippe coutinho opened the scoring for liverpool in the 30th minute . fabian delph set up christian benteke for villa 's equaliser . delph then swept home the winner nine minutes into the second-half . tim sherwood 's side will return to wembley to face arsenal in the final .\nsnp leader denied claims she shaved the heads of sister 's dolls as a child . bizarre accusations have since sparked the #dollgate social media trend . politician was into ` sitting reading ' when she was a girl , her sister claimed . sturgeon today attended an snp women 's rally in glasgow city centre .\nevangelos patoulidis also attracted interest from barcelona and arsenal . anderlecht rejected a move to barcelona when he was 12 . city in talks with anderlecht chief roger vanden stock to complete a deal .\nblaine boudreaux , 34 , charged with intoxication manslaughter , intoxicated assault and failure to stop and render aid involving death . accused of killing 6-year-old joshua medrano , injuring his mother , mowing down 61-year-old leonard batiste and slamming into into another vehicle . he was stopped by police after first crash involving mother and toddler but was let go with a ticket . batiste , a homeless man , was found dead in a ditch a day later . one of joshua medrano 's relatives screamed at boudreaux in court : ' i hope you die ! '\ntiger woods has been dating us alpine skier lindsey vonn since 2013 . the former olympic gold medalist spoke on late night with seth meyers . vonn revealed details of her relationship with woods and his two children .\nexperts say older workers are left behind in workplace because of training . this left them vulnerable when companies start ` shedding ' jobs , they claim . the association of accounting technicians say older workers must ` reskill ' .\nandrew has made his first official visit since sex claims were thrown out . the duke visited the akzonobel paint factory in slough , berkshire . appeared visibly relieved and was on noticeably cheerful form . claims were thrown out by judge kenneth marra last wednesday . virginia roberts claimed she had been forced to have sex with the duke . andrew has always vehemently denied the allegations are true .\nthe government will scrap the religious exemption from welfare benefits . scott morrison has announced parents will be cut from childcare benefits if they do n't immunise their children . the welfare ban comes into force from january 1 , 2016 . parents who refuse to immunised their kids are set to lose up to $ 15,000 . these include family tax benefit a as well as childcare assistance . scott morrison said rules around welfare payments need to be ` tightened ' .\njoseph o'riordan , 73 , stabbed wife eight times after discovering her affair . she was left with life-threatening injuries to her torso , chest , arms and back . o'riordan rang ambulance for amanda and admitted attack in the 999 call . court heard while on remand he asked her to ` get things together ' for trial .\nleicester looked to be on the brink of relegation just two weeks ago . but a freshly discovered attacking potency has given them hope of survival . however manager nigel pearson believes there is ` still an awful lot to do ' .\narsenal are in advanced talks with velez sarsfield over a # 4.5 million swoop . maxi romero , 16 , has been compared to barcelona star lionel messi . deal has been held up by red-tape over the make-up of ownership rights . click here for all the latest arsenal news .\nmaickel melamed , who has muscular dystrophy , took part in the 2015 boston marathon . he completed the race 20 hours after the start . despite rainy weather , fans and friends cheered for the 39-year-old .\nlocals had noticed the ground in the area was warmer than usual . experts ca n't get close enough to determine how deep the hole is . temperature measured at 792c from two metres away . thought to be caused by a coal seam spontaneously combusting .\nthe queen 's granddaughter is vying for a spot on team gb in 2016 . she gave birth to her daughter , mia grace , in january last year . to regain her fitness zara , 33 , uses an exercise bike every morning . she sticks to a healthy diet and also goes swimming and cycling .\nlian doyle , 24 , hid a pair of trainers belonging to justin robertson . she thought he wore them to carry out a burglary but confessed to police when she realised he had murdered pennie davis . robertson was paid # 1,500 by benjamin carr to kill the keen horsewoman . doyle was given a 10-month jail sentence but has been released because of the time she has already served .\npair , both from london , captured in europe within 24 hours of each other . trafficker jayson mcdonald was found hiding under a bed in amsterdam . paul monk captured in alicante as workmen lay marble at his luxury villa . both wanted for their connections with international drug dealing networks .\nsofia davila , 21 , nicknamed the ` black widow of facebook ' over crimes . caught after going to police , claiming she was forced out her victim 's flat . she has admitted bedding and robbing 15 men after spiking their drinks .\nsaudi officials say 500 houthi rebels killed , but signs of progress appear scant . civilian casualties continue to mount . u.n. security council favors houthi arms embargo .\nmuhammadu buhari 's win marks the first democratic transition of power from a ruling party to the opposition . nigeria , the most populous country in africa , is grappling with violent boko haram extremists .\nneighbourhood watch treasurer has been handed three-year restraining order banning him from contacting neighbours following row over gate . paul phillips said john and karen copleston moved gate on to his land . but they claim he harassed them over the dispute which ended up in court . case against mr phillips was dismissed but restraining order was imposed .\nseven human skulls , nearly 2,000 years old , have so far been uncovered . it is thought they were discarded as part of ritual burial on river walbrook . sparked the theory the skulls could be the remains of boudicca 's rebels . excavation of 3,000 skeletons at new liverpool street site is now complete .\ndenis suarez scored an 87th minute winner to make it 2-1 to sevilla in the first-leg of the europa league quarter-final against zenit . khouma babacar scored a late equaliser for fiorentina to secure a vital away goal against dynamo kiev . club brugge and dnipro played out a tense goalless draw .\nfinnish daredevil antti pendikainen races his snowmobile off the edge of a mountain in sweden . pendikainen defied gravity by floating effortlessly thanks to a parachute attached to the vehicle . ideas is brain child of finnish extreme sports group stunt freak team .\nchris jans was fired for ` acting aggressively and inappropriately ' at the bar on march 21 . parents of woman he touched at the local venue filmed his behavior . they also accused him of moving a woman 's head towards his crotch . made one girl walk infront of him so he could ` evaluate her assets ' . jans , who had a $ 325,000 contract , is married and has two children . university said his behavior ` failed to meet the obligations of a head coach '\nuniversity lecturer dr alex russell shares his expert advice . dr russell says that anyone can improve their tasting skills in four hours .\nthe three-letter airport codes are known as iata location identifiers . some follow a pattern like syd for sydney and mel for melbourne . others do n't seem to make any sense , like ord for chicago . airline codes explains how each airport got its identifying code .\napril 26 , 2016 marks the 30th anniversary of the chernobyl tragedy - and the site sees more visitors today than ever . several private tour operators lead excursions into the exclusion zone , a nearly 50-kilometre contamination radius . however , in order to enter , tourists must obtain a pass and go through multiple security check points . though there are several abandoned villages in the zone , the most popular site to visit is the ghost town of pripyat .\nliana barrientos , 39 , re-arrested after court appearance for alleged fare beating . she has married 10 times as part of an immigration scam , prosecutors say . barrientos pleaded not guilty friday to misdemeanor charges .\nmidfielder sebastian rode scored in the 38th minute from close range . bayern munich secured the three points after andreas beck 's own goal . pep guardiola 's side lead bundesliga by 13 points , with five games left .\nno man 's fort is located a mile off the coast of the isle of wight and is accessible by helicopter or boat . amazing venues has renovated the 134-year-old sea fort into ' 75,000 sq ft of fun ' with cabaret bar and rooftop bbqs . the fort boasts 23 suites at # 450 per night , with the lighthouse suite rising to # 1,150 a night during the summer .\nthe fight broke out at store in the city 's rittenhouse square neighborhood . it went on for several minutes while witnesses both watched and filmed . the police were called but all the women had departed by time they arrived . an investigation is ongoing and the cause of the fight remains unclear .\ndavid cameron travelled to cornwall overnight on paddington sleeper . the prime minister used the visit to outline his new plan for the south west . he promised to give chancellor george osborne a cornish pasty t-shirt . he joked that the train trip allowed him a night of peace without the family .\nthree british men wo n't be charged or deported , their lawyer says . they were arrested after plane spotting near fujairah airport and have been in jail since february 22 .\nhailey , 18 , is known for her close friendship with fellow fashion star kendall jenner , 33-year-old kim 's younger sister . the daughter of actor stephen baldwin appears in a shoot in the may issue of elle . she is joined in the issue by rising star bella hadid , younger sister of guess campaign star gigi .\n9th us circuit court of appeals confirmed elmore 's conviction wednesday . appeals court rejected claim that constitutional rights were violated at trial . convicted in 1995 of killing and raping christy ohnstad in bellingham . said girl threatened to tell on him for molesting her when she was younger . elmore has been on death row since 1996 but executions are suspended .\nthe dadaab refugee camp is the world 's largest , with more than 600,000 people . kenya will change `` the way america changed after 9/11 , '' deputy president says . william ruto adds that `` we must secure this country at whatever cost ''\njannik andersen , 23 , was attending coachella music festival at weekend . he was struck and killed by a freight train at 3am saturday , officials said . crash occurred in pacific street in indio , four miles north-east of festival . coroner says it is too early to tell whether drugs or alcohol played a role . andersen , a student in boulder , described by friends as a ` genuine dude ' singer at festival , mac demarco , said on twitter : ` rip jannik andersen ' .\njack wilshere has been traipsing his local supermarket 's shopping aisles . arsenal midfielder reveals his craving for cereal and his preferred choices . eggs and baked beans suggest wilshere loves a full english breakfast too . read : what are arsenal 's transfer options this summer . arsene wenger : arsenal are close to bridging the gap on the top four .\njoseph getty , 26 , drove his range rover through belgravia while drunk . he has been banned from driving for 20 months and fined # 1,000 . getty is the son of getty images founder and great-grandson of oil baron .\nman using electric wheelchair rolled over platform edge tuesday afternoon . commuters leaped up to help at u street station in washington , d.c. man escaped with only minor face injuries after two men helped him up .\njeb corliss jumped over the 562m high ball 's pyramid at lord howe island . footage shows the 39-year-old leaping out of the helicopter in a wing-suit . ball 's pyramid is the world 's tallest volcanic stack between australia and new zealand .\nmore than 200 mummified bodies were found in a hidden crypt of the dominican church in the city of vác in hungary during restoration work . geneticists led by scientists at the university of warwick studied samples from 26 of the bodies and found that eight of them had died of tuberculosis . they discovered dna of 14 different strains of tb bacteria in the mummies . analysis showed the strains all descended from a single strain that begun causing infections during the late roman empire between 396ce-470ce .\nnicholas pence , 25 , and his father david , 56 , had friends round to celebrate a victorious football game on wednesday in their rural new orleans home . their guests left at midnight , moments later they were both shot dead . david was shot three times in his chair and nicholas was shot twice with tactical shotgun . quiet wealthy community reeling , said both men ` got on with everybody ' two teenagers , aged 17 and 18 , charged with the killing . police believe it was a botched burglary , connected them to car break-ins .\njay parini : bernie sanders , who is running for president , is a liberal long shot , but he 's also a populist truth-teller who speaks without fear . he says the vermont senator could help move hillary clinton to left on progressive issues .\nthe burmese capital was moved from yangon -lrb- rangoon -rrb- to naypyidaw , inexplicably , about a decade ago . despite multi-million dollar efforts to build up the city , foreigners are not keen to visit and locals refuse to relocate . the official numbers reveal a population of 924,000 , but rarely have people been photographed walking outside .\nmary magdalene is one of the bible 's most complicated characters . mark goodacre , who appears in the series , answers your questions about her .\nmanchester city have slipped to fourth in the premier league table . sergio aguero may look elsewhere should city continue to struggle . argentine striker has scored 19 premier league goals so far this season . manuel pellegrini 's future as city boss is also in doubt . real madrid and barcelona are both fans of the former atletico madrid star .\njimmy anderson will make 100th test appearance for england on monday . england play the west indies in the first of three test matches . anderson reveals he has no plans to retire and still feels fit . the 32-year-old admits low periods during his early career spurred him on .\naddison russell , 21 , was playing in his first home game for chicago cubs . he was batting in the seventh inning when he swung at pitch and lost bat . bat struck a fan sitting several rows behind the cubs ' on-deck circle . fan suffered ` wounds ' but was conscious and taken to a nearby hospital . russell saw fan get hit and said : ` words ca n't describe how bad i feel '\nrangers held to 1-1 draw by bottom side in the championship . stuart mccall 's side go second in the league above hibernian . myles hippolyte gave livingston the lead just after half-time . marius zaliukas equalised for rangers two minutes later .\nengineer-turned-science-tv-host told a white house pool reporter that he loves the smell of jet fuel . earth day trip with president obama aboard boeing 747 is meant to highlight climate change threats but will leave a massive carbon footprint . flights to the florida everglades and back will cover 1,836 miles and consume more than 9,180 gallons of fuel .\ntyecka evans , 28 , charged with manslaughter in death of 3-month-old taliya richardson . evans initially lied that she fell asleep at home and woke up to discover her daughter with plastic bag over her face . florida mother of two later admitted she went to a club with her sister , leaving three children home alone for nearly two hours .\nnational crime agency examined police investigations into child sex abuse . concluded police failings left gangs free to prey on children in rotherham . nca will review three more operations in hope of finding more offenders .\ntoulon beat wasps in their european rugby champions cup quarter-final . toulon and wasps scored two tries each at the felix mayol stadium . no 10 frederic michalak kicked six penalties and two conversions . william helu scored two tries for the visitors in a gallant effort . they face leinster for a place in the european champions cup final . saracens earlier defeated racing metro 92 by 12-11 in a thriller .\npaul bakewell , 35 , arranged for partner tara barber , 32 , to drive by . bakewell , from walsall , told friends and family to hide on other side of road . billboard was 20ft-tall and 30ft-wide , on side of a34 in walsall , west mids .\nliam sandham , of fleetwood , has gone viral with the prank . plasterer holds magnifying glass to friend 's hand in a van . he concentrates light onto an area on work mate 's knuckle . his friend reacts in shock and swears after being burnt . video has been watched over one million times online .\nmanchester united travel to everton in the premier league this weekend . it is marouane fellaini 's first return to goodison park since joining united . louis van gaal admits he has told fellaini to keep his cool . united are likely to be without michael carrick , phil jones , marcos rojo and daley blind for the trip to merseyside . everton vs man united : team news , kick-off time and probable line-ups .\ndenis cuspert sings ` in germany the sleepers are waiting ' in the video . he also says ` put an end to the filthy ones ' in the three-minute production . cuspert was compared to nazi minister for propaganda joseph goebbels .\npeter reece , his fiancee , baby and mother were parked on an ocean shores beach on thursday when the tide reached their vehicle . the car 's tires had sunk into the sand and they could n't drive away . reece and his fiancee got out of the car but his mother and six-month-old daughter were stuck in the car . officers pulled them out of the vehicle seconds before a wave flipped the vehicle , pulling it out into the water .\ntickets for the fight in las vegas go on sale on thursday night . around 1000 tickets will be on sale priced between $ 1,500 and 7,500 each . the mgm grand has a capacity of 16,500 but most of the tickets will be split between mayweather and pacquiao 's camps and the tv broadcasters . up to 50,000 tickets for closed-circuit viewing will also be on sale . jeff powell : mayweather 's now the mature man who weighs words carefully .\nchristian benteke gave aston villa a 1-0 win over tottenham on saturday . benteke 's first-half strike moves villa into 15th in the premier league . tim sherwood returned to white hart lane for the first time since last year .\nbrazilian defender david luiz pulled up during win against marseille . former chelsea man was substituted before half-time following injury . scans have since revealed luiz could miss up to eight psg matches . those games include the champions league clash against barcelona .\ntrial of journalists paying public officials collapsed at old bailey on friday . raises questions over judgement of keir starmer , who led the investigation . he pushed use of ` unheard ' 13th century law - misconduct in public office . operation elveden , which has now cost taxpayer # 20million , left in ruins .\ncarlton tavern made it through bombing during the second world war . it was knocked down days before it was due to be marked a listed building . westminster city council is considering legal action against developers . danny john-jules , who played cat in red dwarf , has hit out at demolition .\nmother became advocate after seeing her son play with loaded pistol . she and husband jim helped pass assault weapon ` brady bill ' in 1993 . mrs brady died friday in her native virginia from pneumonia .\njake tapper will add the sunday show `` state of the union '' to his portfolio at cnn . tapper also anchors `` the lead '' on weekdays .\nsarah stage , 30 , welcomed james hunter into the world on tuesday afternoon . her baby boy weighed eight pounds seven ounces and was 22 inches long at the time of his birth . as her pregnancy progressed , the model came under fire from critics who claimed she was ` unhealthily ' trim and toned .\nharry kane has 29 goals for tottenham this season and played for england . tim sherwood says tottenham may lose him if they do n't improve as fast . sherwood said christian benteke has found form through greater service .\nbbc 's back in time for dinner claims that grubs are the future of food . the robshaw family dig into cricket tacos , worm tarts and insect burgers . meat will become scarce or more expensive as demand for it grows . insects are full of protein , low in fat and packed full of nutrients .\nmanchester united , tottenham and chelsea are all travelling abroad after the end of the premier league season . arsene wenger has decided not to extend arsenal 's summer tour . the gunners face relegation candidates burnley on saturday .\nthree-year-old girl was mauled in the face by her family 's dog at home . toddler suffered horrific facial injuries and was airlifted to hospital . family heard screams and found dog ` gripping ' toddler by her head . they gave permission for the alaskan malamute to be destroyed .\ntwo neuroscientists have conducted brain imaging to examine moments of clarity . sudden `` insights '' are otherwise known as `` eureka '' or `` aha '' moments . we can increase our chance of these insights with a variety of daily changes .\ntemperatures reached 20.5 c in scotland today , while highs of 17c were seen across the south west and wales . best of sunshine was in scotland and northumberland , while norfolk , suffolk , essex and kent remained cloudy . today 's warm weather is the start of week-long spell of sunshine , which could culminate with 21c high on friday . tourist , in her 20s , had to be rescued in cambridge after toppling into the water while punting with three friends .\nchef matt kemp and former footballer mark geyer have spoken out about their anger issues . kemp said his ` uncontrollable rage ' cost him his marriage and his business . once , the celebrity chef called his ex-wife a ` c *** ' on national television . while geyer said he would get into a lot of fights after drinking alcohol . the former nrl player said he turned it around after the birth of first child .\n$ 2 million worth of stolen artwork has been found in a caretakers garage . works were stolen in 2010 after being taken from home in darling point . three luxury cars were also found during the police raid . the works belonged to property investor , peter o'mara . his insurance company paid out $ 1million after the theft and will now claim the paintings .\n9 indicted on organized crime charges related to bourbon thefts . employees at two kentucky distilleries among those indicted .\narsenal face liverpool at the emirates on saturday afternoon . the gunners are currently third in the premier league table . arsene wenger 's side are looking to consolidate their top-four finish . to read mailonline sport 's april fools ' day gag , click here . read : wenger reveals secrets of his arsenal team selection process . click here for the latest arsenal news .\nmatthew whelan , 35 , from birmingham has spent # 40,000 on tattoos . he changed his name to king of inkland king body art the extreme ink-ite . says prejudice about body modification has stopped him finding work . plans to start his own business but worries he wo n't be taken seriously . spends his time campaigning for his local liberal democrat mp . mr body art appears on 2,000 tattoos , 40 piercings and a pickled ear , tonight at 10pm on channel 5 .\nfreezer trawler with crew of 132 sank 205 miles off kamchatka peninsula . at least 54 of the sailors are dead and a further 63 have been rescued . reports suggest dalny vostok may have hit drifting ice in pacific waters .\nimage is released by chinese traffic police to warn dangerous road stunts . van is strapped to the three-wheel moped with two crisscrossed strings . man is likely to be on his way to a garage as minibus has a flat tyre . police said driver broke traffic regulations but they failed to track him down .\nindiana town 's memories pizza is shut down after online threat . its owners say they 'd refuse to cater a same-sex couple 's wedding .\nemergency services are preparing for damaging winds of up to 100km/h to hit large parts of new south wales . the ses had responded to about 15 jobs on monday morning , mainly in sydney metropolitan area . residents in victoria and queensland prepare for a week of colder weather after a hail storm hit melbourne .\npeter moskos : when man died in police custody , many unfairly blamed all baltimore cops . but cops are in a no-win situation . he says those who trashed city are part of larger societal woes of poverty and class . in just blaming cops , we ignore source of strife .\nthe bombing is `` an attack against the future of our country , '' somalia 's president says . unicef says the staff members ' vehicle was hit by an explosion on its way to their office . four wounded staff members are in serious condition , the agency says .\nmindy kaling 's brother vijay chokalingam pretended to be black to get into med school . jeff yang : that 's offensive and ironic , considering that minorities experience many disadvantages .\njennie , 47 , and raymond kehlet , 49 , were last seen on march 22 . their campsite and vehicles were found intact in remote wa bushland . police have begun to search old mine shafts , some up to 20 metres deep . search aircraft with infrared equipment have examined an area of 625 square kilometres , however no trace of the couple has been found .\nbryan santana , 20 , of orlando , florida , was found guilty of murdering his former roommate , shelby fazio , 23 , on thursday . he was sentenced to life terms in prison . santana previously admitted to strangling and stabbing fazio , a disney world employee , to death and having sex with her corpse . he also attacked their third roommate with a knife and killed fazio 's dog . his trial was set for tuesday , but pushed back after he smeared feces all over his body at the courthouse and tried to hit an officer . in opening statements wednesday , prosecutors said santana ` delighted ' in the murder of fazio . they also showed photos of the messages he wrote on the wall in her dog 's blood , including one that said ` i 'm not sorry for what i did '\nharry kane is approaching 30 goals for the season in all competitions . mauricio pochettino says kane is similar to gabriel batistuta . roy hodgson wants kane to play for the england under 21s in the summer .\nsiem de jong has made just one premier league start this season . the 26-year-old has been plagued by injuries since joining from ajax . he played 45 minutes as newcastle lost 2-0 at home to derby county . loanee facundo ferreyra replaced de jong at half-time . alefe santos and farrend rawson on target for the rams at st james ' park .\nnotebook written by alan turing during world war ii sold for # 700,000 . it was written at the bletchley park code-breaking headquarters in 1942 . only extensive turing manuscript thought to exist , auctioneer said .\njake castner was arrested over alleged burglary and theft-related offences . he was boasting about how the police ` ca n't catch ' him on facebook . appeared to offer to sell drugs and a locked iphone 4 on his page . the 19-year-old was called a nightmare by a magistrate last year . police arrested the teen from ballarat , victoria , on monday morning .\nreveals a massive construction effort on fiery cross reef in spratly islands . the region is claimed by philippines , vietnam , malaysia , brunei and taiwan . china could use runway to carry out military operations , experts have said . follows other images of chinese construction in disputed south china sea .\na huge gas explosion ripped through farmhouse in lincolnshire , tearing down back wall and blowing out windows . susan house , who lives in the home , miraculously survived because she was out walking her dogs at the time . her father has owned the property for more than half a century and said it would have to be knocked down . a bath tub can be seen teetering over the edge of what was once the upstairs bathroom at bleak house farm .\nfootage shows stingray gliding itself over a diver 's body on ocean floor . diver and documentary maker johnny debnam was free-diving , meaning diving without a breathing apparatus . he lay motionless on the ocean floor and stingray came to investigate . stingrays are potentially deadly animals due to their dangerous barbs .\nmick schumacher makes his formula 4 debut this weekend in germany . for the first time , he will use his own name rather than his mother 's name . his father is still recovering from a ski accident at his home in switzerland . schumacher snr , seven-time formula champion , won a record 91 races .\njoe allen admits , at times , challenge of playing for liverpool felt too big . however , reds midfielder has impressed in liverpool 's recent victories . allen is disappointed at how he coped with things when he first signed . wales international hopes he can stay fit and show fans the best of him .\nmike holpin , from ebbw vale in monmouthshire , has at least 40 children . he has three ps4s , three widescreen tvs and more than 200 # 50 games . 16 of children taken into care ` because of my drinking and womanising ' but 56-year-old wants more because he ` ca n't live without them ' ` in the bible , god says go forth and multiply . i 'm doing what god wants ' .\nthe alarm system at the former president 's houston property failed around september 2013 but was not replaced until december 2014 . it came after an agent recommended in 2010 that the 20-year system be replaced but the request was denied . the details emerged in a report by the department of homeland security office of inspector general released on thursday . the report recommended that the agency reviews all security equipment .\nfabricio coloccini is set to be removed as newcastle united captain . manager john carver feels recent skippers have let the team down . coloccini and moussa sissoko were both sent off in recent games . daryl janmaat will be given the role in the summer as his replacement .\nhigh temperatures are recorded on the northern tip of the antarctica peninsula . the world meteorological organization will make the final determination .\nchoupette earned # 2million in fees and has over 100,000 twitter followers . french cats earnings outstripped those of supermodel cara delevingne . karl lagerfeld compared his pet to hollywood legend ` greta garbo ' .\nroman drains with warm spring water could be used for eco-heating . 850,000 litres of waste spring water filters to avon each day at present . this waste water could be used to heat bath abbey in the historic city . engineers are looking at drains to explore whether the idea is viable .\nkingsley burrell , 29 , arrested by police and sectioned on march 27 , 2011 . mr burrell had called officers , alleging three men put a gun to his head . but cctv later showed nobody approached him , so he was hospitalised . four days later he died in custody , and allegedly told family about ordeal . court told that police allegedly beat mr burrell , restrained him for six hours , and forced him to wet himself by denying him access to a toilet .\nswitzerland are facing poland in the fed cup world group play offs . martina hingis lost 6-4 , 6-0 to world no 9 agnieszka radwanska . the former no 1 and five-time grand slam singles winner has not played a singles match since 2007 .\nsadie the german shepherd was filmed at home in alberta , canada , switching on an electric keyboard with her nose and sitting down to play . instead of classical music , the pooch appears to recite a minimalist piece with clashing notes and no time signature . after a 20-second rendition , she decides she 's had enough for one day and turns around to take a bow .\nrosie , 27 , shows off her new lingerie and sleepwear range . shares her daily diet and says eating organic is an important investment . stars in mad max - fury road film , which is out this year .\npresident franklin d. roosevelt died suddenly 70 years ago april 12 in warm springs , georgia . lauder : he was longest-serving president in history ; impact was felt immediately and personally .\nreserve deputy robert bates surrenders to authorities , posts bail of $ 25,000 . bates is charged with second-degree manslaughter in the killing of eric harris .\nwashington 's american chemical society video explains the avengers . it looks at the composition of iron man 's suit and captain america 's shield . and it also explains science behind black widow 's super-healing abilities . the verdict is that some - but not all - of the science is plausible .\nwat pha luang ta bua - ` tiger temple ' - has long been a hit with tourists . they flock there to visit the buddhist monks and their huge feline pets . however , a vet recently alerted officials to three tigers being missing .\nmanchester united beat manchester city 4-2 at old trafford . win moved united four points clear of city in third place in the table . louis van gaal has left angel di maria and radamel falcao on bench . ashley young , juan mata and marouane fellaini have all been revived . chris smalling and phil jones are showing progress at the back .\npowerful 7.8 magnitude earthquake caused an avalanche on mount everest . at least 18 people have died and more than 30 injured on the mountain . there are reports the avalanche has buried people in tents at base camp . the earthquake - nepal 's worst in 81 years - has killed at more than 1,300 .\nmanu tuilagi has been out of action since october . the leicester tigers centre has struggled with a groin injury all season . tuilagi is hoping to be back in time for england 's pre-world cup plans .\noff-duty member of the uniformed division of secret service arrested friday . police said he was charged with trying to break into a woman 's residence .\naudrey nethery , from kentucky , suffers from diamond blackfan anemia . the youngster has already undergone 20 blood transfusions because her body does n't produce enough red blood cells . a video of audrey dancing at her zumba class has had nearly three million views and raised vital funds for the diamond blackfan anemia foundation .\nreal madrid earn 3-0 la liga victory against eibar . cristiano ronaldo gives madrid the lead with first-half free kick . javier hernandez doubles home side 's lead with 31st minute header . jese completes 3-0 victory with brilliant strike in the closing stages .\nsouthampton 's highly-rated defender nathaniel clyne is about to enter the final year of his current contract at the club and is stalling over new terms . clyne is wanted by several top clubs including manchester united . he has expressed a desire to play champions league football . the saints will actively look to sell clyne in the summer if they can not agree a new deal , because they do n't want to lose him on a free transfer .\nlisa and james tuttle moved with children to idyllic geldeston , norfolk . their dogs kept escaping onto neighbouring farmland . they were warned if dogs kept bothering farmer 's birds , they 'd be shot . couple believed dogs were gentle and would n't have attacked birds . in 2014 while family were on holiday , gamekeeper shot two of the dogs . acted within law so was not charged . family are devastated by loss of pets and now want to move .\nlippert , 42 , suffered deep gashes to his hand when he was assaulted by knife-wielding nationalist kim ki-jong in central seoul last month . ` it is an amazing apparatus , one i have n't seen before - so innovative and creative , ' he wrote on facebook .\nsunderland are interested in signing former chelsea and wigan forward franco di santo , who has recently hit form for werder bremen . di santo is currently rated at # 8million by the bundesliga side . black cats sporting director lee congerton knows di santo from their time together at chelsea .\nthe satellite , sentinel-1a , sends out radio waves and times how long it takes for them to reflect back . the data has been transformed into an ` interferogram ' showing how the land mass has shifted . scientists count the colored ` fringes ' in the interferogram to detect how much the land has moved . everest lost an inch of its height in the quake , but still stands at 29,029 feet . an area 75 miles by 30 miles around kathmandu has risen over three feet .\nephedra foeminea waits for the full moon to produce nectar . experts from stockholm university studied plant in greece and croatia . plant 's ` aim ' is to seduce insects so they will fertilise its seed . it 's the only species that 's known to follow the moon 's phases to survive .\nharry panayiotou selected from 24 teams in division one and two . 20-year-old scored in leicester city wins against sunderland and chelsea . also netted a hat-trick in his third game for st kitts and nevis . under 21 premier league player of the month award based on statistics . sportsmail held an exclusive interview with young striker .\npakistani women 's rights activist sabeen mahmud gunned down in her car . friends and family claim her brutal killing was a ` targeted assassination ' she was shot by two men on a motorcycle while idling at a traffic light .\nanthony bourdain teaches anderson cooper a korean recipe . budae-jiigae is a stew made with all sorts of canned meat , including spam .\nryan bertrand takes to instagram to upload snap of his daughters toy car . 25-year-old southampton defender got her a red ferrari to match his own . bertrand has made 26 premier league appearances this season .\nchelsea loanee patrick bamford has impressed at middlesbrough . 21-year-old has scored 17 championship goals so far this season . bamford insists he wants his long-term future to be at stamford bridge .\nin the searing california heat , many jumped on the chance to shed most of their clothes . string monokinis and skimpy leotards were spotted at every turn . celebrity style offenders included paris hilton , katy perry , jourdan dunn and kendall jenner .\ncassey ho boasts over two million subscribers on her youtube channel blogilates . the 28-year-old receives hundreds of comments a day telling her that she needs to lose weight .\nmartin castillo , from nuevo laredo , mexico , lost the ring in 2013 . the precious accessory was discovered by daniel roark , who picked it up a year later while scuba diving in the same mexican resort . mr roark , from massachusetts , began a global facebook campaign in the hopes of tracking down mr castillo and his wife jessica . mrs castillo 's cousin heard about the campaign and messaged mr roark to tell him that the ring belonged to her relatives .\nthe broadway show is finishing after 14 years on stage . former abba singer bjorn ulvaeus will be creating the musical venture . guests will experience all the beloved abba songs in a greek taverna . the show will open in stockholm in sweden in january 2016 .\nwin a pair of nike magista obra boots signed by city and england no1 . prize winner will receive band new gillette fusion proglide razor worth # 12 . and we 'll also throw in some fusion proglide shave gel worth # 4.99 . click here to enter the competition .\nmore than nine in ten working households will receive a tax cut from today . personal allowance rising to # 10,600 - putting extra # 17 a month in pockets . cameron due to set out case for people keeping more of their own money . he will argue for continued lower taxes , with less spent on ` bureaucracy ' . a rise in the personal allowance from # 10,000 to # 10,600 . the first increase in the 40p higher threshold -- in line with inflation -- for five years . the # 1,060 marriage tax allowance , which benefits traditional couples where one parent does not work . a one per cent increase in working age benefits .\nsunderland face stoke city next up in the premier league on april 25 . the black cats are just three points above the relegation zone . dick advocaat has concerns about the strength of his players .\njessica brown and husband zakk satterly were en route to hospital tuesday when they became stuck in standstill on the i-65 in louisville . the roads were closed for the presidential motorcade . brown went into labor , and a nurse , tonia vetter , quickly came to her aid . the baby was born ` quickly ' in the traffic . an ambulance was able to get through and transport them to hospital .\na ceremony was held on boylston street on tuesday morning to mark two years since the april 15 , 2013 bombings . the family of eight-year-old martin richard , the youngest victim to lose his life , helped unveil commemorative banners at the site . jeff bauman , who lost both his legs , also walked along the street on his prosthetic legs with his wife erin and their baby daughter nora . he also greeted carlos arredondo , who helped save his life . a moment of silence was also held at 2.49 pm to mark the first of the explosions , which killed three people and left more than 260 injured .\nsearch area for missing flight mh370 doubled by government officials . extended search area means hunt for plane could run for another year . comes after maldives locals said they saw a low-flying jet on day of crash . island sighting more than 5,000 kilometres away from the then-search area .\njames ward-prowse scored the winner for england u21s against germany . southampton youngster practices free kicks like david beckham and his childhood idol steven gerrard . saints boss ronald koeman has been giving him tips on dead balls .\ngrimes cottage is a heritage-listed 1830s colonial georgian residence with three storeys and six bedrooms . one of the oldest surviving homes in sydney - the 185-year-old house was built by whaling captain george grimes . less than 10 minutes walk to the city 's centre - the property boasts sydney harbour bridge views . only one of two freestanding properties in nsw goverment 's social housing portfolio earmarked to be sold in area . the 50 argyle place property is situated in the much sought after postcode of millers point .\ngary barlow , mark owen and howard donald ordered to repay # 20million . take that stars have still not done so 11 months on , sparking criticism . trio used an ` investment ' scheme later found to be in breach of tax rules . tv sports presenter gabby logan has paid back all the money she owed .\nomar hussain , from high wycombe , often posts about life in islamic state . 27-year-old moans of one jihadi who left him on his own to defend position . the next day he went online to say westerners should stop being ` cowards ' some fighters moan like ` menstruating women ' about guns they 're given .\none man was killed and another seriously injured after last night 's fight . the victim has been named locally as james gregoire , 54 , from clacton . the men involved in the fight are all believed to have known each other . essex police said they arrested a man , 21 , in connection with the killing .\nchelsea scored late winner to beat qpr 1-0 at loftus road on sunday . cesc fabregas scored with chelsea 's only shot on target . chelsea move seven points clear at the top of the premier league .\npresident obama attends howard university roundtable on climate change and public health . linking climate change to how it affects a person 's health is a new way to talk about the subject .\nmarli van breda , 16 , suffered serious head injuries in january attack . she was moved to a rehabilitation clinic after six weeks in hospital . now released , marli has no recollection of the horrendous ordeal . but she can walk and talk - and her sense of humour is intact . parents and eldest brother were killed in axe attack at south african home . her other brother , henri , escaped with light injuries and rang the police . henri has been kept away from sister over fears he may traumatise her . the 22-year-old apparently ` giggled ' as he reported his family 's murder .\ntv presenter said sister debbie had contacted family to say she was safe . she said : ' i can barely speak and i 'm still quite numb . it 's an awful situation ' says her sister may have been airlifted from the mountain this morning .\nu.s. official said in february that iraqi troops could go into mosul in april or may . officials say now that there 's no timetable , an invasion could come sooner or later . they note that recapturing mosul from isis could be a complicated endeavor .\nresidents at hebrew care home in new york are woken by video recordings from loved ones to help ease their confusion and agitation . idea was inspired by the 2004 film 50 first dates starring adam sandler . experiment will be evaluated next month but results are ` very positive ' .\nconservative work and pensions secretary likened to mary antoinette . says only 2 % of workers on zero-hours deals and most are carers . labour seizes on comments as proof the tories are ` out of touch ' .\nmichael phelps won his first race back following six-month suspension . phelps was suspended by usa swimming for failing a drink-driving test . olympic champion won 100m butterfly at the arena pro swim series .\ndustin johnson can prove himself at this year 's tournament . henrik stenson has been ill but has the quality to impress . phil mickelson , at 25-1 , is a good each-way bet for the title .\nspiderfab uses arachnid-like droids to construct large objects in orbit . could be used to create the infrastructure to get man to mars .\nnabil bentaleb is locked in talks with tottenham over a new contract . tottenham are keen on tying the algeria international to new deal . spurs plan on offering bentaleb new # 35,000-per-week deal . clubs from across europe are monitoring bentaleb 's situation . read : danny rose wanted by man city but spurs will fight to keep him .\nactress gwyneth paltrow is trying to live on $ 29 worth of food for one week . it 's a part of the #foodbanknycchallenge , which is bringing awareness to food poverty . paltrow was nominated by her friend chef mario batali .\njonathan trott hit an impressive 72 on england return in the carribean . england captain alastair cook hit an unbeaten 95 on a dominant day . duo played at top order for first time since brief experiment five years ago . england barely broke sweat as they bowled a st kitts xi all out for 59 .\nwoman threatened to jump off shanghai tower block after being dumped . dangled herself off ledge after police failed to talk her down . fireman xu weiguo climbed out and grabbed her arm just as she was attempting to push herself off .\nanti-racism campaigners have asked carlisle to refuse admission to any fans who black up as part of the fancy-dress theme . hartlepool fans plan to dress as bob marley on final day of the season . kick it out say they have received complaints from hartlepool fans .\nhackers reportedly wormed their way into the white house system by breaching the state department 's network first . cyber-bandits took over a state department email account and sent phishing email containing malware to white house . obama aide said white house in 2014 disclosed cyber intrusions that did not affect classified information . six-month probe reportedly uncovered evidence pointing to hackers working on behalf of kremlin .\nrobert durst was indicted wednesday on the two weapons charges that have kept him in new orleans . gand jury charged durst with possession of a firearm by a felon , and possession of both a firearm and an illegal drug : 5 ounces of marijuana . arrest related to those charges has kept durst from being extradited to los angeles , where he 's charged in 2000 death of friend susan berman .\nmarshall county in illinois requests money from resigned rep aaron schock . four term congressman from 18th district resigned after spending scandal . lavish lifestyle questioned after $ 40,000 spent for ` downtown abbey ' office . special elections for republican 's replacement will be in july , september .\nvideo released showing isis supporters ` declaring a caliphate ' in yemen . it comes after months of fighting between several groups in the country . isis emerged in yemen last year , and has carried out suicide bombings . sunni isis may take hold as shi'ite rebels fight government and al-qaeda .\nit has cost the taxpayer # 135,000 to move 55 protected water voles . they have been removed from somerset levels for dredging to take place . in 2014 over 600 homes and 17,000 acres of farmland were flooded with water after rivers burst their banks following years of insufficient dredging . critics say moving the voles is an unnecessary waste of public money .\ntest is being offered by silicon valley-based start up color genomics . it tests for 19 gene mutations linked to ovarian and breast cancer . works by asking patients to send back a sample of saliva to a central lab . test is available in 45 us states and needs to be ordered by a physician .\nliverpool take on blackburn in their fa cup sixth round replay tonight . the competition represents the anfield club 's last chance of success . brendan rodgers ' side are all but out of the race for the top four . liverpool also endured poor campaigns in both european campaigns . robbie fowler : fa cup hunt must not be all about steven gerrard .\nrosannah gundry , 19 months old , was diagnosed with stage three neuroblastoma cancer in december last year . doctors found a seven kilogram tumour growing in her abdomen . it is pressing against her spinal cord and vital organs , making it difficult for her to walk or eat without pain . after undergoing four rounds of chemotherapy , the tumour is inoperable . her family is now seeking to travel to the us for alternative treatment .\nall the party leader 's wives have been spotted looking stylish in trousers . samantha cameron and justine miliband wore almost identical uniforms . miriam gonz · lez was more quirky donning a pair of lib dem yellow chinos .\nvideo shows cher lair from apex , north carolina , cutting into a cake at her gender reveal party with family gathered around . she did not know the sex of her baby and gave the scan results to a baker . as she lifts up a slice of pink sponge , she can hardly believe her eyes and proceeds to scream out in excitement . the mother-of-six said that she and her husband , stephen , had given up on ever having a daughter - their first is due in august .\nlouisa steckenreuter was diagnosed with osteosarcoma last june . the mother-of-two , 35 , is fundraising to access expensive treatment . a drug called keytruda could buy her more time with her husband and kids . it costs $ 6000 a month and is not on the pharmaceutical benefits scheme . ms steckenreuter would be the first australian with her cancer to trial drug .\nwarning : graphic content . air force jets blitzed two jihadi camps in the gedo region bordering kenya . cloud cover made it difficult to establish damage caused or the death toll . kenyan special forces ` took seven hours to arrive at scene of massacre '\nthe 18-year-old , who goes by the name of dark.cyanide , says he likes capturing the city from different perspectives . he has climbed some of new york 's tallest and most iconic buildings , including one that was 72 storeys high . images including landmarks as never seen before , such as one world trade centre and the empire state building .\ntoya graham , a single mother-of-six , said she ` just lost it ' when she saw her 16-year-old son michael at monday 's riots carrying a rock . she said of her son : ` we made eye contact . i was saying '' how dare you do this ? '' ' . she traveled to new york for interviews on wednesday after being applauded by moms across the us and the baltimore police chief . her pastor called her ` mom of the century ' on wednesday for her actions .\ntony blair has claimed his personal wealth does not make him ` super-rich ' in an interview , he said his earnings pay for ` infrastructure ' around him . blair : ' i could not do what i do unless i was also able to generate income ' he earns millions of pounds a year from consultancy and public speaking .\nfar-right afrikaner resistance movement fighting for separate white state . recruit , 15 , says : ` you can not mix nations . i do n't have black friends ' youths subjected to vile racist indoctrination by apartheid-era leaders . they are told : ` we look different . they have thick lips . we have thin lips '\ngodfrey elfwick recruited via twitter to appear on world have your say . came after claims he had never seen the star wars franchise before . on the show he described the films as both anti-women and anti-gay . also said that darth vader was a black man and a ` really bad racial stereotype ' .\njaclyn pfeiffer , 29 , worked at the aloma methodist early childhood learning center in orange county , florida , full-time for about 18 months . she started dating kelly bardier , 33 , in october . bardier recently started part-time at the daycare . both were fired when staff learned of their relationship . they say they were unaware of the center 's stance against homosexuals . have asked for their jobs back by april 15 , or will sue for discrimination .\nroxy wallace , 50 , was born as a boy , but wanted to live life as a woman . she lived reclusive life , unable to bond with son william due to depression . but in october 2013 , roxy finally revealed her secret to wife of 20 years , jo . jo , 44 , supported roxy through her transition and the trio , from churchdown , glos , are now happier than ever . william said : ' i love my second mummy so much . i never want daddy back '\nhuman rights watch report reveals suffering of yazidi women and children . isis fighters have carried out ` systematic rape ' of females from iraq region . children forced to convert to islam , marry fighters who then ` own ' them . survivors left feeling suicidal and in need of psychological support .\nvandal spray painted ` no evictions ' and ` yuppies ' across the store front . at least one person has been arrested on suspicion of criminal damage . demo organised by reclaim brixton was attended by thousands of people . ` we ca n't be held accountable for one lone idiot , ' organiser told mailonline .\nengland close day one of first test against west indies on 341 for five . ian bell , joe root and ben stokes all played well to lead the recovery . england 's top three were all dismissed cheaply to leave england in a hole . when england were 34 for three i received a lot of comments about my supposed motivational skills . i replied that i only spoke to the middle order . paul newman 's day one report from antigua .\ncompany known for use of publicity stunts . tweet contained pun on name of liverpool 's kop stand . it was used to link to liverpool-newcastle stats . social media backlash leads to apology .\nphiladelphia police add attempted murder to list of charges mom will face . mom told police son was with her in maryland , but he was found friday alone in woods . victim being treated for malnutrition , dehydration ; mother faces host of charges after extradition .\nconor mcdonnell is the young photographer behind instagram 's most liked photo . 23-year-old has snapped the likes of calvin harris , drake , and justin bieber .\nthe two moms from `` big bang theory '' guest star this week . `` backstrom , '' `` blue bloods '' are among the week 's season finales . comedy `` younger '' is gaining big buzz .\nsir terry 's final novel , the shepherd 's crown , to be released in september . book finished in 2014 , shortly before sir terry 's death last month aged 66 . will star character tiffany aching , who first appeared in the wee free men .\nwest ham move to the olympic stadium ahead of the 2016-17 season . karen brady announced reduced season ticket prices ahead of move . cheapest price will be # 289 , down from the current cheapest of # 620 . sam allardyce says filing the stadium is most important thing for a club .\nwhen people search hashtags for the aubergine emoji no posts appear . this is despite the fact photos have been tagged using this image . vegetable , also known as eggplant , is often used to represent male genitals . instagram bans nudity on the site under its community guidelines .\nthe bunker in chislehurst was built as a place for government officials to flee to as the cold war intensified in 1951 . the site was chosen due to the wooded area surrounding it but in the following years the house fell into disrepair . has now been transformed into a # 3million luxury home boasting five bedrooms , a swimming pool and glass atrium .\nceltic u17 won the glasgow cup at hampden park on tuesday night . josh kerr opened the scoring for the bhoys in the 74th minute . mark hill then doubled celtic 's lead two minutes later . the match was played behind closed doors due to trouble in the past .\nbritish physicist stephen hawking has sung monty python 's galaxy song . song is being released digitally and on vinyl for record store day 2015 . it is a cover of the song from 1983 film monty python 's meaning of life . professor hawking , 73 , appeared on film alongside professor brian cox .\nluke shambrook found alive after going missing while camping on friday . remarkable video shows the moment rescuers reach the terrified boy . the 11-year-old was found in thick bushland 3km from the campsite in the fraser national park near lake eildon , north-east of melbourne . police were hopeful they would find luke , who has ` high pain tolerance ' . he has dehydration and hypothermia and has been driven to hospital .\ngoogle says robot could replicate a deceased loved one or a celebrity . firm has already developed the 6.2 foot atlas robot . robot personalities can be downloaded like apps online .\nhulk saw the premiere of the avengers : age of ultron movie on monday . 28-year-old signed a new deal with zenit st petersburg in february . hulk has scored 15 goals in 33 appearances for the russian club this term .\nbuilding owner made the discovery while searching for a sewage pipe . dig revealed a messapian tomb , a roman granary and a franciscan chapel . roman devotional bottles , ancient vases and a ring with christian symbols as well as hidden frescoes and medieval pieces were also unearthed . the finds are believed to date back more than two centuries .\nroxanne jones : jury right to find hernandez guilty , but the waste of life for player and his victim is tragic . she says nfl , patriots knew his troubled past , but could not have predicted his actions , and both handled case well .\nwest spruill , 39 , has been charged with murdering ann charle , 36 , on monday evening in the bronx . spruill allegedly ordered her to undress at gun point and sexually assaulted her . as she escaped , he chased her and then allegedly shot the mother-of-two dead . the 39-year-old lived at the 108-bed center from last june until january .\nmisty machinshok of pennsylvania is no longer able to have children . she met gary machinshok on onlinebootycall.com , he moved in with her . he raped her 15-year-old daughter ` every few days ' throughout 2013 so misty could have another child , she ` coached ' them on the best positions . gary , 29 , also sexually assaulted her other daughter , 11 . the two girls are now in foster care , misty sentenced to 15-30 years .\n` cannibal cop ' gilberto valle stars in an hbo documentary called thought crimes which premiered on thursday at the tribeca film festival . ` when you 're behind a computer screen late at night , no one knows who you are , where you are , ' valle says in the opening of the documentary . valle insists throughout the film that he never intended to actually hurt anyone and says he just has dark fantasies . valle was arrested in 2012 for plotting to kill and cook women but was released in july .\nluke lazarus was convicted of raping an 18-year-old at soho nightclub . the 23-year-old sydney man was sentenced to a minimum of three years . waverley mayor sally betts wrote a reference for him . she asked for him not to receive a custodial sentence . says she is trying to ` close loophole ' of ` risky behaviour ' in young women .\nwinemakers accused of trying to hide calorie count from consumers . proposed eu regulations would force makers to put calories on bottle . producers say calorie counts on label would increase production costs .\nelliot kear played for premiership rugby 's relegated london welsh . he joined the oxford-based rugby club from super league 's bradford . kear could line up for the broncos as soon as sunday against dewsbury .\nraheem sterling has stalled over signing a new contract with liverpool . michael owen says any viable move for winger would be a sideways one . owen left liverpool for real madrid in a # 16.8 million move in 2004 . he says sterling does not owe his career to the anfield club .\nstefania la greca is standing for election for the lega sud ausonia party . she has posted dozens of selfies and pictures of herself in skimpy bikinis . but the stunning 36-year-old denied she was using her looks to get votes .\nkim ki-jong is charged with attempted murder and assaulting a foreign envoy . he 's accused of stabbing u.s. ambassador mark lippert in the face and arm . police said kim opposed the joint u.s.-south korean military drills .\nthe crashed plane was a cessna 414 , national transportation safety board reports . coach torrey ward , administrator aaron leetch among the 7 killed in the crash . the plane crashed while coming back from the ncaa title game in indianapolis .\ntrial for aurora theater shooting suspect begins monday . survivors say the shooting changed their lives , but does n't define it .\njolyon palmer will drive in every friday practice session for lotus . the bit is determined to seize his chance with the team . in china , he was only 0.6 seconds behind pastor maldonado .\nchelsea defeated manchester united 1-0 with eden hazard scoring the goal . despite the win , chelsea had only 29 per cent possession at stamford bridge . the total is chelsea 's lowest since opta started recording the data in 2006 . manager jose mourinho said that the end result was the most important thing .\nmanchester city lost in the under 21 premier league at upton park . dan potts gave the home side the lead with a header after 11 minutes . adam drury put the ball past his own goalkeeper to double the lead . olivier ntcham pulled a goal back for patrick vieira 's side but they lost out .\ndavid beckham has come third in a poll of most stylish brits . audrey hepburn scooped the top prize and princess diana came second . bizarrely , queen elizabeth i featured at number six .\nprime minister insists he will carry on focussing on economic message . mr cameron has been criticised for running a lacklustre campaign . tory donors have backed boris johnson to take over if the pm falls short .\ndeep brain stimulation involves implanting electrodes inside the skull . technique is already used to help treat diseases such as parkinson 's . scientists think it could help delay dementia by replenishing brain cells .\ncharlie austin revealed that joey barton ignored him on his first day . the pair are good friends now following the hilarious incident . the 25-year-old says qpr ca n't afford to lose in their double header . austin is delighted and humbled to be fourth in the goalscoring charts . click here for all the latest queens park rangers news .\nbayern munich beat porto 6-1 in the champions league on tuesday . pep guardiola 's team have now scored 115 goals this season . robert lewandowski scored twice and is their top marksman . hamburg are bayern 's favourite opposition with 11 strikes against them .\nladbrokes offering 4/6 on spring 2015 being warmest on record and 2/1 on this summer being the hottest ever . today will be cloudy in central and eastern uk with chance of showers , but it will be dry and bright elsewhere . forecasters say temperatures in the south could reach 17c tomorrow , 21c on tuesday and 23c on wednesday . but five environment agency flood alerts are in place for devon , cornwall , somerset , bristol and lancashire .\ncrystal palace beat manchester city 2-1 at selhurst park on monday night . glenn murray netted his fifth goal in five games to open the scoring . murray now has best goals-per-minute ratio of anyone in premier league .\nsteven gerrard 's hopes of a trophy ended with liverpool 's fa cup exit . he was pictured at boujis nightclub in kensington on sunday evening . liverpool captain is moving on to la galaxy at the end of the season . he now has a six-game farewell tour of uninspiring matches to play . gerrard will go to champions-elect chelsea in the midst of a title party . a trip to stoke city on may 24 will be gerrard 's last game for liverpool .\nfootball association have created a panel made up of concussion experts . the eight medical professionals will meet in may to discuss future plans . game has been criticised for not dealing with head injuries properly .\nsir james munby made comments during ruling over family dispute . presiding over case where teenagers had refused to see father in six years . says ` carrot and stick ' method helps parents get their children to behave .\nluca railton was born with leg bones missing due to a medical condition . in february 2014 , doctors said he would need to have his leg amputated . but his family raised # 135k to take him to the us for surgery instead . now , he is able to walk unaided and is happy he can wear skinny jeans .\njason cotterill bombarded his victim with abuse and threatening messages . he sent an explicit picture of the terrified woman to her own daughter . mother says her life became a living ` hell ' as he plagued her with abuse . cotterill was jailed for 12 weeks and ordered to not contact woman again .\nreal madrid face atletico madrid in champions league clash on tuesday . madrid closed gap on league leaders barcelona over the weekend . gareth bale returns to training ahead of crucial madrid derby . cristiano ronaldo looking to add to his eight champions league goals . click here for all the latest real madrid news .\nmaricopa county sheriff 's office in arizona says robert bates never trained with them . `` he met every requirement , and all he did was give of himself , '' his attorney says . tulsa world newspaper : three supervisors who refused to sign forged records on robert bates were reassigned .\ndanny alexander exposes ` secret ' plans by tories for # 8billion welfare cuts . accuses conservatives a ` con ' by keeping cuts secret until after election . tories hit back and brand their former coalition partners ` desperate ' . growing dissent in lib dem ranks over a second coaliton with tories . no income tax on earnings less than # 12,500 . cut # 12billion from the welfare bill . introduce a new law to ensure those working up to 30 hours a week on the minimum wage are never subject to income tax . raise the 40p income tax threshold to # 50,000 . guarantee not to raise vat , national insurance contributions or income tax . cap benefits at # 23,000 a year . increase the inheritance tax threshold for married couples and civil partners to # 1million . abolish the bedroom tax . re-introduce the 50p top rate of tax on those earning more than # 150,000 . guarantee not to increase the basic 20p or higher 40p income tax rate . guarantee not to raise vat , national insurance contributions or income tax . introduce a new 10p tax rate for the first # 1,000 of taxable income . abolish ` non dom ' status . cut and then freeze business rates . increase corporation tax by 1 per cent . increase working tax credits . halt and review universal credit . no income tax on earnings less than # 12,500 . consider raising the employee national insurance threshold to the income tax threshold . ` limit ' welfare reductions . introduce a mansion tax on properties worth over # 2million . cut # 3billion from the welfare bill . cap increases in working-age benefits to 1 per cent until 2017/18 -lrb- not including disability or parental leave benefits -rrb- increase benefits in line with inflation once the deficit has been cut . no income tax on earnings less than # 13,000 . raise the threshold for paying 40 per cent income tax to # 55,000 . abolish inheritance tax . introduce a new tax rate of 30 per cent on incomes ranging between # 43,500 and # 55,000 . remove vat completely from repairs to listed buildings . reduce the annual cap on benefits . scrap the ` bedroom tax ' increase taxes by # 200billion by 2019 . introduce a wealth tax of 2 per cent on people worth # 3m or more . bring in a new 60 per cent income tax rate on earnings over # 150,000 . double child benefit .\nchristian benteke headed aston villa into the lead in the 35th minute against tottenham at white hart lane . tottenham had harry kane as captain for the second consecutive premier league game . villa held on for three points to considerably boost their survival hopes but carlos sanchez was sent off .\nscientists say camel was left in tulln after the 1683 siege of vienna . it would have shocked residents as camels were an alien species . ` they did n't know what to feed it or whether one could eat it , ' study said . ottoman army used camels for transportation and as riding animals .\narsenal reached the fa cup final despite failing to live up to recent form . adam federici 's gaffe was only difference between the sides at wembley . he let a soft alexis sanchez effort squirm through his grasp in extra time . wenger felt federici kept reading in the game with numerous top saves .\nliverpool have agreed to a contract extension with their shirt sponsors . standard chartered 's logo has appeared on liverpool shirts since 2010 . during their sponsorship , liverpool have only won one trophy .\nmats hummels admits he is considering his borussia dortmund future . germany defender is being linked with a move to manchester united . franz beckenbauer says he is at perfect age to move to premier league .\ndaniel ricciardo finished 9th while daniil kvyat retired with engine failure . red bull on the backfoot this season after troubled opening three races . renault boss cyril abiteboul has vowed engine supplier will improve . red bull chief dietrich mateschitz has threatened to pull team out of f1 .\nbournemouth are now one point clear of norwich at the top of the table . birmingham took the lead through clayton donaldson and david cotterill . steve cook and callum wilson drew bournemouth level before yann kermorgant and charlie daniels sealed the three points .\nferrari driver sebastian vettel won the malaysian grand prix on march 29 . mercedes duo lewis hamilton and nico rosberg came second and third . chinese grand prix takes place on april 12 in shanghai .\njuventus were awarded penalty fouling foul on striker alvaro morata . however , replays suggest ricardo carvalho fouled striker outside the area . the serie a champions claimed a 1-0 win thanks to arturo vidal 's penalty .\nrafael correa , who claims to speak english , pictured with arm around boy . but apparently failed to pick up meaning of the message on child 's t-shirt . picture shared thousands of times on social media networks in ecuador .\n` bethanie 's ' heartfelt message to airline and pilots shared on twitter . female writes how she wants to ` extend a compassionate hand ' thanks the pilots for allowing her to travel between spain and england . says that they are ` the reason i can smile tonight ' letter shared on twitter by jai dillon , colleague of pilots who received the handwritten note . emotional message comes a week after germanwings disaster that saw andreas lubitz deliberately crash plane killing 150 people .\ned miliband lost one of the backers of his high profile support letter . blogger callie thorpe was one of the ` ordinary workers ' who signed it . just hours later she tweeted her support for greens leader natalie bennett .\nscott sinclair and jack rodwell are two who have failed to make it at city . danny rose and aaron cresswell are the latest english players to be linked . man united , arsenal and liverpool have more success recruiting english .\ncreflo dollar 's ministry had posted a now-withdrawn request asking 200,000 people to chip in $ 300 each . dollar preaches a prosperity gospel , which promises wealth to those who tithe 10 % of their income to the church . the atlanta-based pastor said the devil wants to stop him from traveling the world , spreading christianity .\nsulinh lafontaine presented herself as a daredevil stunt driver who appeared in newly released blockbuster . said in interview on cnn ireport at furious 7 premiere in hollywood that she was the only female stuntwoman driving cars . the production , in fact , employed seven or eight female stunt drivers , but lafontaine was not one of them . she only appeared as extra on the set in a crowd of 1,500 .\nalbertville , alabama high school junior joy webb , 17 , took her grandfather james drain , 80 , as her date to prom last saturday . the teen says she asked her grandfather to be her date because he never got to attend his own prom . drain was 17 when he enlisted in the navy to serve in the korean war , so missed his own high school dance .\ngemma , 23 , has left her children to be raised by her mother . handed them to her 52-year-old parent when they were four months old . spends her time partying and has ` missed out ' on seeing them grow up . is now at risk of being banned from seeing them thanks to feckless ways . mother debbie also says the unemployed 23-year-old has stolen from them . the jeremy kyle show , weekdays at 9.25 am on itv .\nformer district judge g. todd baugh has been chosen for a lifetime achievement award by his local bar association . yellowstone area bar association president jessica fehr said thursday that baugh was chosen for the award by the group 's board of directors . baugh , 73 , sparked widespread outrage in 2013 over comments suggesting that 14-year-old girl shared some responsibility for her rape by a teacher . he sentenced stacey rambold to just one month in prison in the case . at the sentencing , baugh said 14-year-old cherice moralez was ` as much in control of the situation ' as rambold . he also described moralez as ` older than her chronological age ' and called her a troubled youth . moralez killed herself before the case went to trial . after prosecutors appealed , rambold was re-sentenced in september and is serving 10 years in montana state prison . he is appealing the sentence .\nukip claim they would welcome turkey-born foreigner st george to britain . party 's economic spokesperson today faced questions on the scenario . patrick o'flynn told reporters : ` well i guess dragon-slaying is a skill ' the party 's election manifesto states it would have a five year moratorium on unskilled migrants moving to britain .\ncui hongfang hit the back of her head on a corner of the stone wall . police have ruled it an accident , but are still investigating . victim 's family said the tourist was running on a steep section of the wall .\nchelsea agreed to request from bbc to film the trophy at stamford bridge . the blues agreed on understanding public could not see the trophy . however , a 20-strong stadium tour saw the silverware on the pitch . chelsea can win the premier league with victory over crystal palace .\nfloyd mayweather will fight manny pacquiao on may 2 at mgm grand . tickets were officially sold for as much as $ 10,000 . read : fans get their hands on mayweather vs pacquiao tickets . mayweather vs pacquiao by numbers : from tickets to betting odds . click here for the latest mayweather vs pacquiao news .\nlaurene jobs praised former first lady hillary clinton . steve jobs ' widow claimed the democratic front-runner is ` revolutionary ' mrs clinton has announced her candidacy and began campaigning in iowa . she described mrs clinton as ` america 's greatest modern creation '\ngraeme mcdowell believes it is an exciting time for the sport . jordan spieth won his maiden major at the masters at augusta on sunday . rory mcilroy finished in the fourth position , six shots behind spieth . mcdowell finished in a tie for 52nd on six over par .\nraheem sterling has rejected a new contract worth # 100,000-a-week . liverpool boss brendan rodgers says sterling will not be sold . he believes sterling still needs to prove himself at the highest level . rodgers is confident that sterling can win silverware while at anfield . liverpool face arsenal at the emirates on saturday , kick-off at 12.45 pm .\nsaracens skipper brad barritt will line up opposite wesley fofana . flanker julien bonnaire will be tasked with stopping billy vunipola . charlie hodgson is enjoying a rich vein of form at present . clermont will fear jacques burger after his performance last year . the top 14 side have the best supporters in french rugby .\njonah willow played russian alexander cherniaev at a chess congress . home-schooled 12-year-old drew the grandmaster in their two-hour game . youngster began playing chess aged five and has represented england .\nhugo lloris suffered a gashed knee in tottenham 's win against leicester . michel vorm will start at turf moor as lloris continues his recovery . roberto soldado is doubtful for sunday 's clash with burnley . mauricio pochettino hopes spurs ' england contingent will return on a high .\nmichael clarke believes kevin pietersen 's surrey form warrants a recall . the 34-year-old has not played for england since the fifth test in sydney . he was described as ` disengaged ' from his team-mates during final test . pietersen signed for surrey hoping to score enough runs to regain place .\nphotos reveal ` ordinary lads ' hassan munshi and talha asmal , both 17 . imam says muslims must talk to others who ` might think this is the way ' boys from dewsbury believed to have fled to syria via turkey last week . next-door neighbours were seen ` playing snooker about a week ago ' .\nnasa scientists in california have revealed a distant image of curiosity taken by the mars reconnaissance orbiter . it was taken from an altitude of 187 miles -lrb- 300km -rrb- up , revealing where the rover is heading towards . one interesting aspect is that the rover 's tracks can not be seen behind it in the image . this may be due to martian weather or that they are the same colour as the surrounding surface .\ndavid bianculli : correspondents ' dinner , and cecily strong as host , were mostly weak , but obama had some funny zingers . he says `` anger translator '' bit was funny , but crowd was tough on strong as event went on and on .\nprime minister announced plan to amend working times regulations . mr cameron wants workers to have three paid days off to do good deeds . he described announcement as demonstration of the big society in action . immediately afterwards eric pickles suggested it would n't be enforced . john prescott described mr pickles ' interview as a ` car-crash '\nchelsea star eden hazard made his 100th top-flight appearance at qpr . he 's scored 35 league goals and assisted 25 times since signing in 2012 . jose mourinho insists hazard must win pfa player of the year award .\nresponse across social media led to multiple trending topics for hillary clinton 's presidential announcement . some responded to her video and her new campaign logo .\nbilly vunipola was cited for clash of heads with leicester 's mathew tait . rfu disciplinary panel have deemed the clash was accidental . vunipola free to play in saturday 's champions cup quarter-final . saracens lock maro itoje has signed a new long-term deal at the club .\nparis saint-germain captain thiago silva suffered a thigh injury on wednesday . brazilian defender had to substituted against barcelona in champions league . he is recovering at home and is among a list of absentees for game at nice .\nrobert tomanovich first hung a noose and a confederate flag , printed with the slogan ' i ai n't coming down , ' on a fence at his michigan home . neighbours complained so an employee of tomanovich 's hung a second noose outside his tree-cutting business . tomanovich said he simply liked the colors of the flag and his wife claimed the noose was a tribute to a dead friend of her husband . he has since taken down the nooses and flags , but refuses to apologize .\nchelsea set to spend most days at top in a single premier league season . manchester united currently top the list with 262 days in 1993/94 . jose mourinho 's side have been top for 230 days so far this season . could set a record of 272 days if they stay top until end of this campaign . click here for all the latest chelsea news .\ndundee united have faced criticism from fans over the 25 per cent commission paid out from # 6.3 m worth of transfer fees received . however , the club have responded by pointing to their record on the pitch . dundee have reached back to back domestic cup finals for the first time in 29 years and secured european football three times in the last four seasons .\ndaphne benaud has politely declined a state funeral for her late husband . the wife of the legendary cricket commentator has settled on a gathering with only immediate family indicating this is what he would have wanted . former australian captain died peacefully in his sleep at a sydney hospice . he had been receiving radiation treatment for skin cancer since november . benaud had witnessed , as player and commentator , over 500 test matches . australian prime minister tony abbott offered his family the state funeral .\nthe 52-year-old libertarian lawmaker from kentucky shared a snapchat video of himself learning how to play liar 's poker with $ 100 bills . blizerian is best known for his x-rated instagram page followed by 8million users worldwide . he plays poker professionally and reportedly once earned $ 50million in winnings in just over a year . video from last year showed blizerian hurling porn star from a roof .\nthe cyclone travelled through siberia 's third largest city , krasnoyarsk . video captures the snowstorm engulfing the kommunalnyi bridge . flakes of snow become bigger as visibility reduces drastically .\nhernandez 's fiancée , shayanna jenkins , 25 , sobbed when the verdict of first-degree murder was announced on wednesday . she left the courtroom with hernandez 's mother soon afterwards . her sister , shaneah jenkins , odin lloyd 's girlfriend , wept alongside the victim 's family as hernandez was told he would spend rest of his life in jail . the once-close jenkins sisters have sat on opposite sides of the courtroom throughout the trial in massachusetts .\njohn and stipe issued a joint statement calling for equal rights of transgender inmates . ` transgender women in male prisons have an equal right to protection from violence and abuse in prison , and yet they continue to face horrific injustices , ' statement read in part . southern poverty law center in february filed sued georgia department of corrections on behalf of ashley diamond , a transgender woman . diamond , 36 , identifies as a woman and has been taking hormones since age 17 . claims lack of medical attention has harmed her transition process .\nmic 's andy jordan spoke to mailonline about how chelsea boys holiday . he got stopped on his gap year in mexico and were searched for drugs . the star said spencer was the most high maintenance traveller .\nmemory neurons that covert short-term memory to long-term work most effectively when a person is asleep , scientists believe . brandeis university scientists believe memory neurons put us to sleep . say you need to sleep to consolidate and remember what you 've learned .\njean sharon abbott , 38 , from plymouth , minnesota , was told she had spastic diplegia , a form of cerebral palsy , when she was four-years-old . she was 33-years-old when she learned she actually had dopa-responsive dystonia -lrb- drd -rrb- , a rare muscle disorder that can be treated with one pill . jean , who was nearly immobile for 30 years , went on a 10-mile hike four months after she was given her new medication , which is known as l-dopa . despite her misdiagnosis , the mother-of-three insists she feels no resentment or anger about her doctor 's life-altering mistake .\nwild asian elephant was trapped in a swamp in rural southern china . female animal had battled all night to escape before being discovered . villagers and police teamed up in a dramatic three-hour rescue operation . exhausted elephant can not stand up and is being treated with medication .\nthe april lunar eclipse turned the moon blood red on saturday night . bad weather ruined viewing chances for sydney , brisbane , hobart , darwin . adelaide and melbourne had the clearest skies out of all the states . a lunar eclipse occurs when the moon passes in the shadow of earth .\nyeovil town drew 1-1 with notts county at huish park on saturday . result condemned yeovil to relegation from league one . paul sturrock was appointed as yeovil 's latest manager on thursday .\nmillie elia plunged to the ground while rappelling with her family in mount cheaha state park on saturday afternoon .\ndiana 's will is among those stored in an archive which is to be put online . in it she bequeathed # 50,000 free of tax to her former butler paul burrell . the rest of her estate was divvied up between princes william and harry . internet users can pay # 10 to view the documents and millions of others .\njody farley-berens helps single parents who are battling cancer . farley-berens saw the need firsthand through her childhood friend . do you know a hero ? nominations are open for 2015 cnn heroes .\nraheem sterling fails to impose himself as arsenal beat liverpool 4-1 . he won the penalty that jordan henderson scored for liverpool . sterling spoke out about his contract situation at liverpool in the week .\ninteractive graphic shows more than 231 million migrants around the world , with 7.8 million immigrants in uk alone . more than 45 million recorded in u.s. which is most popular destination for migrants before russia with 11 million . data by united nations shows how number of international migrants has increased by nearly 80 million in 25 years .\nthe a&e networks are remaking the blockbuster `` roots '' miniseries , to air in 2016 . the epic 1977 miniseries about an african-american slave had 100 million viewers .\naston villa play liverpool in their fa cup semi-final on sunday at wembley . christian benteke has scored eight goals in his last six matches for villa . bundesliga side wolfsburg are believed to be interested in benteke . 24-year-old striker has two years left on his current # 50,000-a-week deal .\nsportsmail revealed manchester city would listen to offers for yaya toure . manuel pellegrini admitted he was not happy about toure 's performances . but the city boss has vowed to support him until the end of the season . manchester city face west ham at upton park on sunday . sam allardyce has warned aaron cresswell about joining manchester city .\nquade cooper has agreed to join top 14 club toulon until 2017 . queensland reds fly-half is injured but will move to france this summer . australian rugby union changed its test squad selection policy this week . overseas-based players with over 60 caps now available for selection .\njames harris , 30 , got four years and two months in prison in 2011 garroting death of 49-year-old james gerety in kansas . his ex-girlfriend testified last year that harris kept gerety 's severed head and spoke to it after the slaying . the woman told the court harris admitted to shooting gerety and torturing him for two days before cutting his head off . harris originally was charged with first-degree murder but pleaded no contest in december to involuntary manslaughter . prosecutors said they accepted plea deal because of major problems with evidence and witnesses .\naround 16 million tourists visit florence - population 350,000 , every year . officials worry the city 's cultural significance has been radically altered . a new iniative aims to appeal to ` true travellers ' looking for soul of the city .\n31-year-old was transferred to solitary confinement in hmp manchester . wants to be moved to ashworth hospital , a high-security psychiatric unit . killed two men before luring two officers to house with fake 999 call . fired 32 bullets at fiona bone and nicola hughes and threw a grenade .\nthree-year-old accused of murder by the apartment block manager . xie hong feng had dropped her keys through the gap of the lift and floor . neighbour yang claims toddler pushed her - but there 's no other evidence .\ncorey edwards , five , was born with a complex congenital heart defect . his final wish - to see his parents get married - was granted last weekend . the boy held the rings and wore a suit as his parents wed at his bedside . corey died last night , days after the ceremony at bristol children 's hospital .\nabu khdeir 's name is on the memorial wall at jerusalem 's mount herzl . his father and a terror victim advocacy group objected to his being included in the list . the palestinian teenager was beaten and burned by three israelis , authorities say .\na bed is kept in the archers studio to help with realistic sex scenes . scriptwriter said bed is is vital for convincing post-coital conversations . he added that parties in fictional ambridge are limited to nine attendees because of budget constraints .\nqantas lounge 's ` smart casual ' dress code is now being enforced by staff . since april 1 staff can refuse entry to customers dressed incorrectly . customers have complained on social media after being turned away . many of them said they were refused entry because of their thongs . ` the dress guidelines for our lounges are the same as most restaurants and club , ' qantas say . but they refuse to define exactly what items are not allowed .\nlania roberts is a freshman painting major at syracuse university , in new york , and specializes in creating colorful self-portraits . the 18-year-old recently gave a moving on-campus speech about unconditional self-love . her speech detailed her journey from being bullied as a child to eventually realizing she did not have to meet the physical standards of others .\npeter crouch analysed charlie adam 's robot celebration against chelsea . the midfielder scored from his own half at stamford bridge on saturday . adam followed his goal with a light-hearted ode to his stoke team-mate . the scot was asked to perform the act by sky 's soccer am presenters . crouch made the celebration famous whilst playing for england in 2006 .\njuventus go through to the uefa champions league semi-finals 1-0 on aggregate after second leg draw . arturo vidal 's penalty in the first leg in torino proved enough to earn the italians a date with winner in madrid . real madrid defeated 10-man atletico madrid 1-0 in their second leg clash after a 0-0 deadlock in their first leg .\nhove promenade 's white art deco houses are filled with british celebrities . singer adele and dj norman cook among stars who own on beach front . the properties were built between 1909 and 1910 by michael paget baxter . one of the houses has gone on the market for a guide price of # 4million . brandvaughan.co.uk , 01273 683111 .\njoe root has been terrific to bounce back from a difficult time in australia . root 's 182 * in the first innings in grenada showed he is a steely competitor . he looks a natural no 3 , but england should n't move him from current spot . the captaincy always wears players down , and it is n't his time yet . ben stokes is right to be passionate , but needs to keep his cool as well .\njimi manuwa plans to finish opponent jan blachowicz inside two rounds . the londoner says his ` aggression and killer instinct ' will see him through . manuwa wants to get back to winning after losing to alexander gustafsson .\njudge ruled deporting libyan alcoholic would breach his human rights . the 53-year-old serial criminal has been convicted of 78 offences in britain . he argued he would be tortured in libya because drinking alcohol is illegal . his case is estimated to have cost british taxpayers a six-figure sum .\nkell brook was keen to fight amir khan at wembley stadium this summer . but instead brook will take on frankie gavin at the o2 arena on may 20 . amir khan 's dad shah says brook could have had the fight he wanted . but khan snr claims that promoter eddie hearn has been ` disrespectful ' andre ward sees paul smith as an ideal opponent before a carl froch fight .\nsummer elbardissy was partying at the beta theta pi frat house last year . she ` tried to reach makeshift roof deck ' , but fell out of third-floor window . rushed to hospital with brain injury , a broken skull and bruising on lung . forced to relearn skills such as walking , swallowing food and dressing . seven months on , 19-year-old is still recovering from traumatic injuries . she has filed lawsuit against fraternity house , accusing it of negligence . in 24-page document , she also accuses wesleyan university of ` failing to protect her from dangers at the frat house ' despite city officials ' reports .\nzuriel oduwole is a 12-year-old filmmaker . to date , she has interviewed 14 heads of state .\npeter moskos : reserve cop , 73 , meant to use a taser on a man , but shot him dead instead . why was a volunteer cop witha gun in a violent crimes unit ? he says the man may have bought his way in with donations to police . cops are , and should be , wary of those a little too eager to be police . moskos : right approach is unarmed auxiliary cops , like in nyc , volunteering as a way to connect public to police .\ndanny nickerson was diagnosed with an inoperable brain tumor in 2013 . he received more than 150,000 birthday cards and packages after requesting a ` box of cards ' for his birthday last july . his mother , carley nickerson , shared the news of his passing on friday . nickerson fought through 33 radiation treatments and two clinical trials which consisted of chemotherapy during his battle with dipg .\nhundreds of payday lenders will be wiped out by tougher rules , say experts . it comes as wonga today revealed a # 37.3 million loss for last year . city watchdog says just three or four lenders out of 400 will remain .\nleonie granger , 25 , convinced mehmet hassan she was interested in him . she went to his flat with him and let in her boyfriend kyrron jackson and his accomplice nicholas chandler . they kicked hassan to death and stole some of his gambling winnings . granger has been convicted of manslaughter as the two men were found guilty of murder .\narsenal legend thierry henry says ` wenger has to strengthen ' the gunners . however the progress of hector bellerin , francis coquelin and nacho monreal has been significant this season . to come second in the premier league and defend the fa cup can be seen as progress . but the arsenal manager has two years on what could be his final contract . alexis sanchez says arsenal must challenge for the title next season . thierry henry : arsenal ca n't win title with olivier giroud in attack .\nshe is expected to take over as head of the u.s. justice department on monday , replacing eric holder . ` loretta 's confirmation ensures that we are better positioned to keep our communities safe , keep our nation secure , and ensure that every american experiences justice under the law , ' said the president . lynch , 55 , was approved by a 56-43 vote ; ten republicans voted for lynch , including senate majority leader mitch mcconnell . gop presidential candidate marco rubio did not ; ted cruz tried to stop her nomination from moving forward and was missing during the final vote . an invitation flying around twitter shows cruz has a fundraiser tonight at former texas rangers ' owner and billionaire tom hicks ' dallas home .\nhannah brierley , 16 , initially thought 6ft-long snake was a prank by mother . but when it suddenly moved she realised the northern pine snake was real . she shouted mother karen marriott who panicked and called police for help . det con craig wallace used a pillowcase to capture it and taken to rspca . believed to have got in through window or door in the recent warm weather .\nnuri sahin said he turned down an offer from arsenal to stay in germany . the decision was based on his family 's wishes to not move to england . former liverpool loanee said borussia dortmund is his ` home ' club . read : wenger reveals secrets of his team selection process . click here for the latest arsenal news .\nimage was captured by mercury-redstone 1a probe in december 1960 . part of project mercury which was us ' first mission to put men in space . scientists believe ufo sightings such as this are caused by pareidolia . condition tricks the brain into seeing familiar objects in random places .\nbuyers expert on ` the block ' gives his tips on kitchen design . frank valentic takes into account what buyers look for in a kitchen . bench and storage space , splashbacks and lighting are key factors . along with ventilation and flow on and activity-based designs .\nmajor general james post iii was fired for saying that the retirement of the a-10 warthog amounted to ` treason ' the incident added fuel to a controversy over efforts to retire the low-flying , tank-killer plane highly regarded by ground troops . post said he told the group the air force did n't want to get rid of the plane but needed to because of budget constraints .\ncatherine nevin was allowed out despite being jailed for life in april 2000 . 62-year-old was seen on the bus , with a pal and walking around in dublin . sat next to unsuspecting commuter on bus and went totally unnoticed . ireland 's most infamous female prisoner murdered husband tom in 1996 .\nthierry henry wants arsenal to sign a ` spine ' of top players . arsenal look set to fall short of challenging for the premier league title . the likes of petr cech could be available come the end of the season . edinson cavani is hoping for a move away from paris saint-germain . john terry : arsenal will never be champions with their tippy-tappy football .\npaddy power said on its twitter page : ` newcastle have suffered more kop beatings over the last 20 years than an unarmed african-american male ' . it has resulted in a furious backlash , with people calling it ` deplorable ' . bookmakers have attracted criticism in the past for controversial adverts .\ngoogle has already patented system to swap robot personalities . sebastian thrun says system to swap personalities is ` doable ' .\ncnn investigation uncovers the business inside a human smuggling ring . 10 % discount offered for every referral of another paying migrant , desperate to reach europe .\njoel parker , 33 , was riding the bus in st johns county , florida . police said he threatened the driver and was disruptive during the ride . as he got off the bus he offered the candy bar to the driver , who declined . he was arrested for battery and is never allowed to ride the bus again .\nthe # 3.7 million structure is the longest skywalk in the world beating one at the grand canyon by five metres . the cantilevered platform in chongqing offers visitors a 720 degree view of the canyon below . glass platforms and transparent barriers mean people get an unobstructed view of the natural beauty spot .\naudrey dimitrew , a sophomore in high school in virginia , filed a suit with her family against chesapeake regional volleyball association . she said she accepted spot on team believing she would get playing time , but was benched for first two tournaments . teen was accepted onto a different team but league said player has to show ` verifiable hardship condition exists ' to be moved to another team .\neverton have won their last three games and visit swansea on saturday . swansea manager garry monk is hoping to stifle everton 's revival . swansea beat them in november and have been on a good run themselves .\na recent surge in jellyfish numbers has been recorded off the coast of the uk as the weather has warmed up . stay in cornwall has been moved to reassure swimmers that going in the water is safe , even with some jellyfish . nhs-approved method of treating jellyfish stings is now shaving cream , not urine or vinegar as previously though .\nlizzy hawker entered the 2005 ultra-trail du mont-blanc -lrb- utmb -rrb- on a whim . hawker was the first woman to cross the finish line that year in 24th place . she 's gone on to become britain 's most distinctive female ` ultra runner ' .\nyoutube videos show four-month-old noah monte perfectly balancing on the palm of his father 's hand as he 's lifted through the air . he apparently started performing the ` circus act ' when he was a month old . but now - more than a year on - it appears he could be getting a little too heavy for his father to lift in the palm of his hand .\nkieran lee 's second-half goal wins the game for sheffield wednesday . alan judge missed a one-on-one chance to equalise for brentford . brentford now sit outside the play-off places after a damaging defeat .\ncardiff university scientists found few teenagers become regular users . noted most teens who try e-cigarettes are already smokers . suggest they are not using the electronic devices to help quit their habit .\ndillard was the first of the duggar daughters to be married . her 9-pound , 10-ounce son was overdue .\narsenal midfielder abou diaby 's contract runs out at the end of the season . he had been expected to leave after 22 appearances across five seasons . but wenger has hinted a sign of progress could see him earn a new deal . read : diaby gets a game in friendly win over brentford . click here for all the latest arsenal news .\nthe 33-year-old made the announcement on monday morning 's show . jenna and henry , who married in may 2008 , welcomed their first daughter mila in april 2012 .\nwalsh appears to jump a car travelling at 40mph in paddy power advert . irish jockey says in clip he is preparing for saturday 's grand national . two-time national winner will ride ballycasey at aintree . bookmaker is no stranger to controversial ad campaigns .\nlord janner signed over the deeds of his flat in hampstead north london . the transfer happened after police raided his office in the house of lords . documents show the deeds were passed without charge to his children . lawyers representing his alleged victims have asked for answers .\nmammoth bones found in russia suggest new theory for their demise . a major mineral deficiency was found in the 23,500-year-old bones . suggest mammoths may have been riddled with osteoporosis . animals would have eventually collapsed to the ground under own weight .\navengers star made remarks about alejandro gonzalez inarritu . the 51-year-old won best director for birdman at this year 's oscars . said in an interview last year superhero films represent ` cultural genocide ' downey jr said for a spanish-speaking man to use a phrase like that ` speaks to how bright he is ' comments come just days after he walked out of a tv interview in britain .\na businesswoman worries that if hillary clinton becomes president , her hormones will make her go to war . mel robbins : what 's scary is that the bias against women in the workplace is still going strong in 2015 .\ncrystal palace beat manchester city 2-1 at selhurst park on monday . south london side are 11th in premier league table and look to be safe . alan pardew left newcastle in 10th place when he departed in december . john carver 's side have only picked up nine points since . ` team pardew ' would be eighth in the table five points behind southampton .\nan unidentified man was caught on the nbc sports channel wandering across the green at the ko olina resort in oahu and plunging into a pond . announcers could n't help but chuckle at the course-crasher 's escapades as he went into the water to retrieve a hat that had blown off in the wind . thegolfnewsnet.com reported that the man made it out of the water with his hat , but had to leave the beer behind . the 2015 lotte championship , hosted at the ko olina resort in hawaii , comes to a close on april 18 .\n31-year-old reportedly transferred to ashworth hospital , merseyside . move to high-security psychiatric unit comes after cregan refused food . killed two men before luring two officers to house with fake 999 call . fired 32 bullets at fiona bone and nicola hughes and threw a grenade .\nmike cannon-brookes is the ` accidental billionaire ' who co-founded a company with a net worth of around $ 3.5 b . the aussie began the company in a modest apartment above a sex shop with his uni mate at the age of 22 . cannon-brookes has now reportedly splashed out in a stunning centennial park property for $ 12 million .\nthree-month-old western lowland gorillas pictured for first time in exhibit . pair were born just 48 hours apart in january to layla and kumi , both 16 . will join 17 other gorillas , including ernie , 32 , who is father to them both .\nthe final film featuring the late paul walker , `` furious 7 '' is opening around the globe this weekend . it 's worldwide debut may approach or cross $ 300 million by the end of easter sunday .\na group of nevada sex workers , hookers for hillary , have come out in favor of the democratic contender for president . the hookers all work at dennis hof 's moonlite bunny ranch , a legal brothel in carson city . the group cite clinton 's work on health care reform , foreign experience , tax reform and responsible government oversight on public health issues .\nmr shatner revealed his radical proposal in an interview with yahoo news . he wants to build a 4ft-wide pipeline from seattle down to california . this would bring water to help alleviate some of the drought problems . but some experts have called his $ 30 billion idea ` highly illogical ' .\ngermanwings flight 4u3882 was flying from hanover , germany to rome . the airbus a319 was carrying 145 passengers and five crew members . passenger and flight attendant suffered ` an acute feeling of sickness ' . woman who had ' a fear of flying ' was assessed by medics , said passenger . replacement aircraft had to be flown in with an additional crew member .\n1,500 people are attending the touching ceremony at cologne cathedral . among them are 500 relatives of those who died in germanwings crash . the doomed plane was ` deliberately ' crashed by its ` depressed ' co-pilot . cardinal woelki has urged compassion for all victims , including lubitz .\nchampions league qualification is more lucrative than ever . liverpool are already five points off the top four with eight game to go . raheem sterling dispute shows how important european football is .\ndr donald dewitt , 65 , veteran teacher at bergen county academies in new jersey , charged with attempted sexual assault and criminal sexual contact . dewitt , who is married , has been at the top-ranked school since 1992 , teaching biology , physiology and anatomy to juniors and seniors . prosecutors say dewitt 's lewd emails to 16-year-old victim were discovered this week by her sister . dewitt has been suspended from his $ 105,000-a-year job and banned from campus .\ndetails of prince harry 's australian deployment have been released . prince will arrive in canberra and will visit the australian war memorial . he will then report for duty and will be in perth and darwin among others . duties set to include bush patrols and ` indigenous engagement ' prince harry will briefly travel back later this month for gallipoli memorial . 34,000 britons and 8,700 australians killed during wwi campaign .\ncell phone footage has emerged appearing to show actor dennis quaid having a diva-esque meltdown on set . ` this is the most unprofessional set i have ever been on , ' he screams .\nanne-louise van den nieuwenhof was diagnosed with cancer at age five . she defied the odds given to her by doctors and became a nurse . died tragically six days after giving birth to her second child on march 10 . over $ 40,000 has been raised to help her husband ryan care for their kids . anne-louise grew up in sydney but lived in canada with her family .\nsuma underwent a thorough health examination on thursday to monitor the progress of her arthritis . melbourne zoo 's aging orangutan was first diagnosed with the condition in 2013 . the 36-year-old orangutan , who turns a year older in june , has arthritis in her hips and ankles . zoo vets took the opportunity to give suma a full check-up including her ears , teeth and eyes .\nlouis jordan , 37 , was stranded 200 miles off the coast of north carolina . refused treatment when he was taken to hospital in norfolk , virginia . coast guard crew who rescued him said he was smiling when they arrived . group expected him to be severely sun burnt and covered in blisters . refused treatment at hospital and conducted tv interviews straight away .\nlocals say the bizarre refurbishment is more suitable for a playground . vale of glamorgan council paid # 750,000 for the unusual renovation . one resident living near the penarth home called it an eyesore . council claims colour scheme will help elderly residents with dementia . an earlier version of this article stated the welsh government contributed # 500,000 to the ` legoland ' makeover of sheltered accommodation in penarth . we have been asked to clarify that their funding was in fact support services for the residences . .\nhead of libyan army tells cnn libyan authorities have not been consulted . gen. khalifa haftar says libya will `` look after '' its interests . solution to migration problem requires lifting of sanctions , general says .\ntom poynton missed the entire 2014 campaign due to leg injuries . he made his playing comeback during derbyshire 's pre-season tour .\nclermont auvergne take on saracens in champions cup semi-final . french side aiming to make amends for last year 's exit at same stage . clermont thrashed english champions northampton in the last-eight .\nblackburn face liverpool in the fa cup quarter-final replay on wednesday . tom cairney has sympathy for raheem sterling over his contract . sterling rejected a # 100,000-a-week new deal at anfield .\nads are the brainchild of a trio of people opening a new thai restaurant in the motor city . as well as exposure for their new business they want to promote detroit as an alternative for new yorkers who feel it has got too expensive .\nleto will play the clown prince of crime in 2016 's `` suicide squad '' the first picture of leto in character led to a series of spoof photos .\nmatthew weathers tricked his class at biola university in california . pretends to be embarrassed by help video recorded back to front . suddenly begins arguing with his virtual self on the video screen . a virtual fight ensues before rogue teacher steals the id of real one .\ndecorated former argentina international esteban cambiasso says that keeping leicester up this season would be like ` another cup ' . the former inter milan and real madrid midfielder joined leicester last summer on a free transfer , signing a one-year deal . leicester are currently bottom of the premier league table with 19 points from 29 games and take on west ham in their next fixture .\nbody of woman believed to be celilia powell was discovered at her home . her son david powell , 73 , has been charged with the 95-year-old 's murder . police called to the scene in stoke-on-trent on thursday at about 8pm .\nwest ham became first premier league club to drop prices since tv deal . manager sam allardyce believes it 's the best business done in a long time . the hammers move into the olympic stadium in 2016 .\ngrigor dimitrov plays gael monfils in monte carlo masters quarter-final . world no 9 stan wawrinka looked listless and disinterested in the defeat . defending champion did n't get on the board until the match 's fifth game .\nmanchester united beat city 4-2 at old trafford on sunday afternoon . man utd have the most impressive record against the top seven clubs . louis van gaal has averaged two points per game against the top seven . chelsea -lrb- 1.56 -rrb- are second in the premier league in an alternative table . read : ashley young laughs at city as united silence ` noisy neighbours ' .\nmohammad qamaruzzaman was hanged around 10.30 pm on saturday . he was the assistant secretary general of the jamaat-e-islami party . militia group collaborated with pakistani army in 1971 independence war . his supporters slammed the decision and have called for a protest .\nthe magazine usually carries tributes from nearly every major party leader . where milband 's message is expected , the page is blank with sharp rebuke . chief of self-employed organisation , ipse , called decision ` disappointing ' .\nvijaya gadde said social network had let internet abuse go ` unchecked ' she claims it is because scope and scale of problem was not recognised . twitter has tripled the size of team that deals with online abuse , she said . anti-bullying campaigners long complained twitter is sanctuary for trolls .\ngerman grand prix has been scrapped because of financial problems . bernie ecclestone can not guarantee the future of the italian grand prix . jackie stewart insists there should always be a place for ` essential races ' .\nsurveillance cameras caught the thief taking $ 9,000 out of the account of kate sullivan at banks in long island , new york on september 23 , 2014 . sullivan was informed of the fraud while fighting for her life at memorial sloan kettering cancer center in new york . she died five days later . the 50-year-old had worked as a marketing executive for fashion designers kimora lee simmons and diane von furstenberg .\napril 1 has heralded a crop of fake news stories hoodwinking readers . the guardian claims jeremy clarkson is campaigning against fossil fuels . simon cowell will replace the queen on the # 5 note , according to the sun . the leaning tower of pisa is set to become a luxury hotel , says one paper . ant and dec ` will add strictly 's anton du beke to their presenting line-up '\ngambian footballer baboucarr ceesay , 21 , died seeking new life in the uk . aunt jessica sey , from cheltenham , outraged at treatment by smugglers . she said : ` he had his head turned and his money taken by criminals ' mr ceesay understood to have been locked in hold when vessel sank .\nmanchester city are willing to listen to offers for yaya toure this summer . his agent dimitri seluk has hit out and called manuel pellegrini ` weak ' he also criticised the city 's chief executive and director of football . ivorian midfielder has had a difficult season at the premier league champions .\nsoldier survived bomb blast in afghanistan during 10-year army career . he was victim of unprovoked attack in town centre after returning to uk . punch left him severely brain damaged and ruined his military career . attacker - who has string of past convictions for violence - is jailed .\nbrock guzman , was found safe two miles from his californian home . police said a thief likely stole the car after the boy 's father left it running . the car was found less than four hours later , after a resident spotted it . police have not yet released a description of the suspect who stole the car . brock was unharmed and appeared to have slept through the entire ordeal .\ntim stanley : muhammadu buhar won nigeria vote on campaign against corruption . he 's an ex-dictator , but there 's reason for optimism . he says jonathan administration failed to address corruption , poverty and rise of boko haram . buhar may be tonic to years of misrule .\n`` slip and capture '' explains why deputy shot suspect , investigator says . sheriff 's office says a reserve deputy thought he had pulled out a taser . instead , he shot the suspect , who later died at a local hospital .\nshaun mckerry started offending when he was 11 and is believed to have committed more than 1,000 crimes including theft and witness intimidation . the 31-year-old was dubbed ` boomerang boy ' because he would always return home after committing crimes and was arrested 80 times in a year . mckerry has been unmasked as axe-wielding thief in local post office raid . cctv footage shows him bursting into the store and threatening assistant before shopkeeper rugby tackles him and his wife grabbed a baseball bat .\nanalysis of martian weather seems to support the idea that the planet could be dotted with salty puddles at night . the finding has `` wider implications '' for efforts to find evidence of life on mars , a researcher says .\na collection of 750 items belonging to legendary actress lauren bacall has been auctioned off at bonhams in new york . highlights from the lot , which fetched $ 3.6 million , include bronze sculptures , jewelry , and a number of decorative arts and paintings .\nfloyd mayweather and manny pacquiao are two weeks away from fighting . their $ 300million bout will be the richest in the history of boxing . both men spent time with those closest to them over the weekend . they are both starting their final week of hard training .\ntectonica responsible for websites of more than 200 labour candidates . the argentinian link is an 'em barrassment ' for miliband , tories claimed .\nman walked into hospital in guangdong province and took nurse hostage . but brave doctor lin xikun offered to swap place with terrified woman . managed to keep the knife-wielding hostage taker calm until police arrived . the accident and emergency doctor is being hailed as a hero by colleagues .\npeter moore received the letter from hm revenue and customs last week . wife debbie opened it while he was out and was left ` gobsmacked ' . mr moore yesterday demanded an apology from the government .\ndaniel sturridge 's calf and thigh injuries show no sign of relenting . the striker will yet again be absent for tuesday night 's clash with hull . brendan rodgers is unsure whether sturridge will play again this season . rodgers says he will bring in more players to relieve burden next season .\ntiger woods increased speculation regarding possible major comeback . woods has been spotted at augusta national on more than once occasion . the 39-year-old has dropped out of top 100 for first time in almost 19 years .\ncarolyn thorpe from bristol died when the tree toppled onto her in 2007 . the 62-year-old 's daughter was also injured in the tragic accident . town hall of hiers-brouage has now paid out thousands in compensation .\nit is 20 years since the worst case of homegrown terrorism in us history . timothy mcveigh killed 168 people with bomb in oklahoma city in 1995 . terror was encapsulated by photo of a firefighter carrying a lifeless baby . that baby was baylee almon , who had turned one the day before . nearing what would have been her 21st birthday , her mother aren almon-kok tells dailymail.com how she marks baylee 's birthday every year . but says she will never get over the pain of seeing that photograph . she is still in touch with the firefighter who was pictured with the baby .\nlost phone was handed in to albury police station in nsw on sunday . police used phone to post selfies and puns on owner 's facebook page . bella crooke lost the phone on saturday at a friend 's birthday party . police have been hailed as ` legends ' by her friends for unusual approach .\nthe home side were gifted the lead after james collins sliced a cross over adrian for an astonishing own goal . a devastating counter-attacking goal was swept in by sergio aguero for his 20th league goal of the season . the victory moved manuel pellegrini 's side back to within one point of manchester united in third in the league . click here for the player ratings from the etihad stadium after jesus navas steals the show .\nthe hilarious moment took place at the hengdaohezi siberian tiger park in northeast china during feeding time . it was captured by us-based photographer libby zhang who said that the crowd burst out in a roar of laughter . the humorous slip came as several birds were thrown by staff in to the tiger enclosure for them to eat .\nernst haas , a celebrated 20th-century photographer , was a regular on movie sets . his work from the industry has been brought together in a new book , `` ernst haas : on set ''\nhector bellerin broke theo walcott 's arsenal sprint record last summer . arsenal defender bellerin says the result has caused ' a bit of banter ' . the arsenal youngster has impressed at right back this season . return of mathieu debuchy leaves arsene wenger a decision to make . bellerin scored opening goal for arsenal against liverpool last week .\nfamily of bounkham ` bou bou ' phonesavanh settled with habersham county , georgia late last month for $ 964k for his pain and suffering . in may 2014 , swat police in search of a drug dealer they believed was living at the phonesavanh home tossed a grenade in bou bou 's crib . while those officers were cleared of wrongdoing in october , bou bou 's medical care has surpassed $ 1million and he still needs more surgery .\nthe crumbling st ivan rilski church is the only remaining evidence of the community of zapalnya , bulgaria . named after the patron saint of bulgaria , the stone structure cuts a ghostly figure in the zhrebchevo reservoir . the settlement and two other villages were wiped out when the land was submerged in 1965 .\nvirgil van dijk gave celtic the lead with a superb free-kick . josh meekings escaped a red card just before the break for a hand ball . celtic keeper craig gordon was sent off early in the second half . greg tansey 's penalty and edward ofere put inverness ahead . john guidetti equalised , but david raven had the final say .\nnew pictures show raheem sterling and jordon ibe with shisha pipes . the liverpool pair are dressed in casual clothing and have a pipe each . pictures emerged last week of liverpool star sterling smoking shisha . footage also emerged of him inhaling nitrous oxide from a balloon . the pictures create a fresh problem for liverpool boss brendan rodgers .\ncalbuco volcano in southern chile - which has been dormant for 40 years - erupted without warning on wednesday . a second terrifying eruption yesterday has now forced over 4,000 to flee in aftermath of the ` apocalypse-like ' event . footage of the eruption has revealed a strange pair of white lights floating perilously close to the ash cloud .\npedro abad was driving with two fellow linden , new jersey police officers and a friend on march 20 when he crashed head-on with a tractor-trailer . toxicology tests revealed monday show abad had a .24 blood-alcohol content - three times the legal limit . abad and officer patrik kudlac were critically-injured in thecrash , while officer frank viggiano and friend joe rodriguez were killed .\ntottenham have shown an interest in marseille forward andre ayew . the ghana international is being chased by host of european clubs . ayew fits into tottenham 's blueprint and can move for free in the summer . click here for all the latest tottenham news .\ntiny cubs from derbyshire , cornwall and somerset nursed back to health . the orphans fed on milk and then , gradually custard creams as they grew . first cub ` little star ' weighed less than half an apple when she arrived .\nnutricentre 's nutritional therapist lorna driver-davies explains benefits . companies are harvesting , filtering , bottling and selling rainwater . nutrient-rich birch water has diuretic properties and good health benefits .\nbali nine ringleaders will face the firing squad at midnight on tuesday . andrew chan and myruan sukumaran have requested their last wishes . the men will likely be executed at a place called nirbaya , aka ` death valley ' white clothing will be given to them to wear which represents the after life . a cross will be placed over their heart as a target for the riflemen . they can choose to stand , sit or kneel before facing their demise . they are then given a maximum of three minutes to calm down . three shooters will have live rounds and nine other will have blanks . if doctor confirms prisoner is still breathing - final shot fired to side of head .\nporto host bayern munich in their champions league quarter-final first leg . the match on wednesday brings together the two highest scoring teams . managers julen lopetegui and pep guardiola were barcelona team-mates . lopetegui said his side is still evolving with new talent from the summer .\na petition launched on monday demanding samantha armytage apologise for ` racist ' remark made last month . presenter was interviewing mixed race twins lucy and maria aylmer on sunrise . during introduction she said ` good on ' lucy for getting ` her dad 's fair skin ' video of the interview has popped up on social media and sparked change.org petition . a seven spokesperson said the comment was sam ` taking a dig at herself '\nanjelica ` aj ' hadsell , 18 , has been missing since march 2 , when she was home in norfolk while on spring break from longwood university . remains were found in franklin , 40 miles from norfolk , on thursday and they are being taken to the medical examiner 's office for identification . her stepdad wesley hadsell was arrested after breaking into a home two weeks after her disappearance and claims he was looking for aj . he has insisted that he does n't know where she is .\na little owl was captured trying to join his siblings ' huddle by gently tugging on their wings in beaconsfield , bucks . photos taken by sales manager dean mason , 48 , from bournemouth , from a camouflaged shelter six metres away .\nitalian glamour : the essence of italian fashion , from the postwar years to the present day captures the rise of the country 's fashion powerhouses . looks at designers such as pucci in the 50s and prada in the 90s . highlights key moments in fashion folklore including liz hurley wearing versace 's dress at the four weddings and a funeral premiere in 1994 . book written by enrico quinto , 51 , and paolo tinarelli , 49 .\nfour-poster bed dumped in a hotel car park and sold at auction for # 2,200 . owner suspected it had historic value and experts have been investigating . historian now claims dna from the timber proves it belonged to henry vii . ornate bed , now on display , was made for king and wife elizabeth of york .\nthe tiny garden gnome is signed by all four members of the iconic band . it appeared with celebrities and world figures on 1967 sgt peppers artwork . it was given to an assistant photographer following the shoot for the cover . the cardboard garden ornament has been valued at # 17,000 by us experts .\ndramatic pictures show two three-year-old lions antagonising hippopotamus in zimbabwean national park . hippo initially avoided the big cats by walking towards nearby water before turning around and charging at them . altercation caught on camera by researcher brent stapelkamp , who has been studying lions in the reserve for years .\nclarence david moore , 66 , was convicted of larceny of more than $ 200 in north carolina in 1967 and was sentenced to up to seven years in prison . while working with a road crew in the asheville area , he escaped and was recaptured in 1971 . he escaped again the following year and was on the lam until he was apprehended in texas in 1975 . his third escape from a henderson county prison was august 6 , 1976 . moore 's neighbors knew him by an alias and described his as ' a good neighbor , ' and also ` very compassioante ' the sheriff said he thought moore 's poor health factored into his decision to turn himself in . as moore arrived at the jail , he thanked the sheriff for his kindness .\njessica cleland committed suicide last year after being cyber bullied . she was sent horrible messages from two friends who said they hated her . the teenagers were named in the coroners report but were n't investigated . her parents want to see cyber bullying legislation be taken seriously . under victorian legislation cyber bullying can result in ten years jail .\ndoug hughes landed a gyrocopter on the u.s. capitol lawn on wednesday . charged with crossing no-fly zone , he is under house arrest until court date . his wife alena hughes has not been charged , says her husband is a patriot . but when asked if he was a patriot , hughes said ` no i 'm a mailman ' . he spent two years planning stunt to protest campaign finance laws .\nenglish voters have grave concerns over nicola sturgeon 's power plan . half believe ms sturgeon will have the upper hand over ed miliband . ukip has been gaining support from former labour voters and not tories . the poll shows snp are more interested in independence that the economy . survation interviewed 1,004 people online on friday and saturday .\nspecial warfare operator 1st class brett allen marihugh , 34 , of livonia , michigan , died sunday after being found unresponsive friday . the other seal , 32-year-old special warfare operator 1st class seth cody lewis of queens , new york , died on friday .\nroberto martinez will hold end of season future talks with kevin mirallas . mirallas has made no secret of his champions league playing ambitions . martinez also confirmed he wants to keep aaron lennon at goodison park . lennon is currently on loan at everton from rivals tottenham hotspur .\nnasa has been testing a flexible wing on a plane in california . the wing can bend from -2 degrees up to 30 degrees . technology means that regular flaps are n't needed - and it is much lighter . it could increase fuel efficiency 12 % and reduce noise 40 % .\nmr x was caught speeding along the m11 in essex in 2009 in his honda . the 35-year-old motorist denied that he was driving his car at the time . during the course of his legal battle , he changed his name to ashley x. mr x was jailed for nine months at ipswich crown court for perjury .\nprince harry is to begin a monthlong military attachment in australia . he 'll be leaving the british armed forces in june .\nohio gov. john kasich : washington is gridlocked , but states can make a difference . he says ohio has gone from a budget deficit to surplus , from losing jobs to creating them .\ngary neville believes manchester united can get a result at chelsea . the sky pundit thinks that louis van gaal 's side are currently hard to beat . united travel to stamford bridge looking to close the gap on the leaders . click here for all the latest manchester united news .\nbird watchers photographed the rare bird near british raf base at akrotiri on the island 's south coast . the last recorded sighting of a black flamingo was in israel in 2014 . dark colouring thought to be caused by genetic irregularity where it can generate more melanin than usual .\nresearchers say the cerebral cortex of rats is ` like a mini-internet ' . team planning to look at human brain in the same way .\nthe former milking parlour on mayfair 's farm street has four bedrooms , an indoor swimming pool and roof terrace . it was once the site of a dairy where farmers housed cows for milking on the busy central london market street . the original property was knocked down and replaced with the plush , modern mansion four years ago .\nbyron schlenker and daughter emily , 14 , are both world record holders . 47-year-old from syracuse , new york , has tongue wider than an iphone 6 . is now a celebrity in hometown since winning guinness world record crown .\nthe queen 's granddaughter had been set to make her kentucky debut . but high kingdom suffered injury in stables and had to withdraw . zara phillips still hopeful the horse can competed at badminton .\nbills averaged # 16,900 - almost four times the national average of # 4,363 . people also paid more in windsor , beaconsfield , chesham and amersham . stoke-on-trent central had the lowest bills at # 2,100 per year .\nitalian navy 's `` mare nostrum '' mission to rescue would-be migrants in peril rescued an estimated 100,000 people . operation ended in october 2014 , but the tide of people trying to cross the mediterranean has not abated . italy has borne brunt of task of picking up , sheltering and providing food and medical help to illegal migrants .\nroseanne barr told the daily beast that she is slowly going blind . barr said she has macular degeneration and glaucoma .\nmichelle filkins , 44 , of west wareham has been charged with breaking and entering , larceny over $ 250 , and the malicious destruction of property . she was arrested on april 17 after owner mark conklin found her sitting in his summer home . a neighbor told police he saw filkins outside with items from the house and that she appeared to be having a yard sale or giving the items away . police are asking anyone who received items from the home - including a lamp and a painting - to return them .\nsecret service says supervisor 's security clearance has been suspended . he is accused of trying to kiss a colleague .\nexperts warn ed miliband 's changes for non-doms would cost millions . the labour leader initially suggested he would abolish non-dom status . but it later emerged he is effectively only proposing a time limit on it . it allows those with foreign links to be taxed only on money entering britain .\njulian zelizer : hillary clinton has immense political and governmental experience . he says she needs to make stronger connection to her party 's base . clinton also needs to convince voters of her authenticity , zelizer says .\nretired film maker andy erlam will stand to end ` corruption and cronyism ' 64-year-old was one of four petitioners who accused former mayor of fraud . lutfur rahman kicked out of office after judge branded him a liar and cheat .\nuncle teng took first snap 10 years ago when couple offered him a tip . set himself target of 10,000 selfies for ` smile shenyang ' event . became online star after posting pictures on twitter equivalent weibo . he has no plans to stop taking she snaps when he retires .\njames oliver , 48 , was left with a serious leg injury after being allegedly hit by a car driven by linda currier , 53 . police found oliver in the driveway of a home in maine , on saturday night . currier arrested operating under the influence and aggravated assault . oliver charged with attempted gross sexual assault , unlawful sexual touching and failing to comply with the sex offender registration act .\nceltic were beaten 3-2 after extra-time by inverness as the underdogs reached the first ever scottish cup final in their club 's history . however , a blatant handball in the box by josh meekings was missed by officials , leading celtic striker leigh griffiths to feel ` robbed ' the hoops were left to rue the decision not to award a penalty or red card .\nraymond van barneveld beat fellow dutchman michael van gerwen 7-3 . robin van persie watched the clash via a rather bizarre camel tv . phil taylor beat dave chisnall 7-3 and drew with stephen bunting in a pulsating clash to end the premier league darts in scotland . adrian lewis crushed bunting as he lost twice in aberdeen . gary anderson produced a stunning comeback in front of his home crowd to draw 6-6 with james wade after being four legs down .\nobama recently explained u.s. foreign policy moves on iran and cuba . sager : misguided u.s. leadership and policies are reasons for the enduring tragedy in the middle east .\nsuperior court judge m. marc kelly handed kevin jonas rojano-nieto a 10-year sentence . the mandatory sentence rojano-nieto should have received was 25-years to life . the state of california has said that it will appeal judge kelly 's decision .\njohn goodwin , 75 , of atkinson , new hampshire , went on trial this week on six counts of aggravated felonious sexual assault . the jury were not aware of what had happened when they decided they could not reach a verdict . goodwin had pleaded not guilty in the case in which prosecutors said he repeatedly sexually assaulted a student , who is now 24 . the former student alleged the abuse began when he was 11 years old and lasted from 2002 to 2005 .\nnearly 500 british holidaymakers were stranded on the mv azores all night . lawyers slapped court order on ship over an ` unresolved financial wrangle ' harbour master refused to let ship leave lisbon to final destination bristol . portugese authorities allowed it to sail , passengers got home 19 hours late .\nsherrilyn ifill : a city with a pattern of racial discrimination elected two new black candidates to its city council tuesday . she says ferguson faces other changes , too , that should spur rethinking in working class suburbs across america .\nattorney for the family of freddie gray says developments are step forward but another issue is more important . family will have a forensic pathologist do an independent autopsy . police say gray should have received medical care at different points before he got to a police station .\nvalerie rutty altered invoices by raising prices of work she commissioned . rutty then paid herself difference between actual sums from school fund . she stole # 3,500 from fund of school in greater manchester in three years . avoids jail but receives suspended term and 70 hours of community work .\nellanora arthur baidoo has been trying to divorce her husband for several years . husband does n't have permanent address or permanent employment . baidoo is granted permission to send divorce papers via facebook .\ncouple spends $ 1,200 to ship their cat , felix , on a flight from the united arab emirates . felix went missing somewhere at john f. kennedy international airport , airline says . pets are `` treated no differently than a free piece of checked luggage , '' jennifer stewart says .\ngang bundled birds from aviary in brownhills , west midlands into sacks . they were jammed into drawers , squeezed to death and chased by a dog . all four men involved found guilty at walsall magistrates court last week .\nthe posters were hung around youngstown state university this week . posters promoted event as a time to not highlight sexual orientation or differences among students . student government leaders believe the posters were satire , but still worked with university officials to get the posters removed . though they were posted anonymously , officials are investigating possible student code violations and disciplinary action may follow .\nbrazilian neymar took to instagram to show off his skills to his followers . quick-footed barcelona attacker impressed for the filming camera . neymar will be hoping to show off that trickery away against sevilla . barcelona currently sit four points clear of rivals real madrid at the top .\nchristopher eccleston 's turn was among shortest incarnations of dr who . actor , who grew up in manchester , played the doctor for just 13 episodes . he was a huge hit with fans , but fell out with show boss russell t davies . the 51-year-old suggested he quit after a row over his decision to play character with a strong northern accent .\ninvestigators have found more body parts from where mh17 fell in ukraine . also discovered personal possessions including jewellery and bracelets . mailonline also found a charred passport of a malaysian mother killed . plane downed on july 17 2014 killed all 298 passengers and crew on board .\nnational union of teachers said mps had a duty to tackle ` homophobia ' critics said proposals risked ` oversexualising ' children at a young age . christian groups warned some teachers would have to act against beliefs . but union said changes were needed to tackle ` prejudice in our schools '\nphotographer andres figueroa spent a week in one of the driest places on earth . he took portraits of chileans who dress up in costume for popular religious festivals .\nloeb has filed a lawsuit to stop modern family actress destroying two frozen embryos , according to legal documents obtained by intouch . embryos were fertilized using her eggs and his sperm six months before their split in november 2013 , it is claimed . former couple previously tried to use surrogate to have children twice during their relationship , but procedures failed , according to the lawsuit . but the split before remaining embryos could be implanted , it is alleged . lawsuit also claims that vergara was ` physically and mentally abusive ' to loeb during their almost-four-year relationship .\nresearchers studied 40 million posts made by 1.7 million web users . from this they divided people into two groups - future-banned users -lrb- fbus -rrb- and never-banned users -lrb- nbus -rrb- they built an algorithm that scans posts for signs of antisocial behaviour . study shows this algorithm can identify potential trolls in 80 % of cases .\ncassandra fortin removed from hartford , connecticut , home in january . she was forced to undergo chemotherapy to treat hodgkin 's lymphoma . her mother jackie had supported desire to explore natural alternatives . but state ruled teen was not legally mature enough to make the decision . on monday , cassandra was released from the children 's medical center . she said ` i 'm so happy ' , adding that the feeling of fresh air ` is wonderful ' teen was reunited with mother in april for first time since the new year . cancer is in remission , but she says she is happy she ` fought for my rights '\nhans-wilhelm muller-wohlfahrt quit as bayern munich doctor this week . the 72-year-old had worked at the bundesliga club for nearly 40 years . he said the medical department had been blamed for porto defeat . pep guardiola has denied there was a dispute and has taken responsibility for bayern munich 's champions league loss .\nchelsea beat stoke 2-1 in premier league at stamford bridge on saturday . cesc fabregas ' nose was left bloodied after tussle with charlie adam . midfielder showed off injury as he posted picture to instagram after game . fabregas joked that he might finally be able to get his nose fixed .\nnice forward alassane plea is attracting interest from the baggies . west brom are also keeping tabs on ex-blackburn right back bryan dabo . read : tony pulis confident of keeping hold of saido berahino .\nsaracens scored through billy vunipola , marcelo bosch and chris wyles . charlie hodgson added seven points from the boot . leicester replied with two freddie burns penalties .\nan axe-wielding robber has been jailed for attempting to rob a corner shop . but he failed after he was held and hit with a baseball bat by shopkeepers . he was later revealed to be a juvenile offender nicknamed boomerang boy . shaun andrew mckerry , 31 , had been arrested 80 times by the age of 15 .\nbishop robert finn failed to notify police about a suspected child abuser . he waited months before telling authorities about reverend shawn ratigan . in 2012 , finn plead guilty to a misdemeanor charge and was given probation . he is now the highest-ranking church official convicted of sex abuse-related charges . children 's rights advocates have called on pope francis to do even more .\nbath and yale university scientists reveal clean hydrogen power . using a new material they say it can be generated from easily from water . a new molecular catalyst splits water and makes storable energy . breakthrough could provide the world with more sustainable fuels .\njohn carver believes newcastle must sort out off-the-field problems . newcastle fans have been encouraged to protest against mike ashley . supporters will ` stand up to ashley ' during match against swansea .\npeter morris was devastated when his sister , claire , died in a car crash . only a year before , she had married malcolm webster . he believed his sister had died in a tragic accident . it took two decades for the truth to be revealed . claire was murdered by webster so he could cash in on her life insurance . tried to do same to his second wife in 1999 - and was jailed in 2011 .\nfather : `` i know he went through what he went through '' louis jordan was found on his sailboat , which was listing and in bad shape , rescuer says . he appears to be in good shape , physically and mentally .\n"
  },
  {
    "path": "output/test.xsum.ours",
    "content": "`` i always wanted to be a hotelier , '' says frasers group chief executive choe swee swee .\nnorthern ireland 's euro 2016 qualifier against bosnia-herzegovina has been postponed after a car crash on the m1 in essex .\ntheresa may has said she has `` absolute faith '' in the uk 's trident nuclear weapons system - despite reports of a misfire .\ntennis star venus williams has been involved in a car crash that led to the death of a 78-year-old man , us media report .\nan international tribunal has ordered ghana not to drill for oil in a disputed area off the coast of ivory coast .\nloyalist bonfire makers in east belfast say they have been forced to move their bonfires to a car park .\nthe bbc has `` strongly refuted '' claims that the iguana v snakes scene in planet earth ii was faked .\nthe parents of three victims of the hillsborough disaster have been appointed obes in the queen 's birthday honours list .\nthe environmental risks of fracking for shale gas in the uk are `` very low '' , a government-commissioned report has concluded .\nnadia is one of the rising stars of the british rap scene .\nsir tom jones is to return to the voice uk , it has been announced .\nfa chairman greg dyke says he is `` a long way down the path '' of reaching an agreement with tottenham over playing home games at wembley .\ngreat britain 's men 's handball team missed out on a place at the rio olympics after losing their final world cup qualifier .\njeremy corbyn has told business leaders he will not `` stand back '' when there is `` injustice '' in the workplace .\nchina has deployed surface-to-air missiles on a disputed island in the south china sea , taiwan and the us say .\nhead teachers involved in the so-called trojan horse allegations have warned that extremism is still a problem in schools .\nwest lothian and livingston will be one of the most marginal seats in the uk on 8 june .\nleeds united have signed middlesbrough winger marvin de roon on a season-long loan deal .\nwhen annan athletic beat hamilton academical to reach the fifth round of the scottish cup , it was a dream come true for the team 's 19-year-old striker omar aldin .\nexeter city captain jacob butterfield says he is likely to retire at the end of the season .\nthe lawn tennis association -lrb- lta -rrb- has announced a # 250m plan to improve access to tennis in britain .\nan american who was kidnapped in syria four years ago has been released , the us state department has said .\nformer department store chain bhs has launched a new online shop , selling home and garden products .\nmore than 2,000 people have signed a petition against plans to introduce pay and display parking meters around the royal berkshire hospital in reading .\na woman who helped her boyfriend and another man beat a poker player to death in north london has been jailed for 16 years .\nit 's been an extraordinary night for the scottish conservatives .\nthree people have been injured in a three-vehicle crash on the a90 in aberdeenshire .\na former ira man who went on the run to south america has been granted permission to appeal against a weapons conviction .\na security alert in west belfast has ended .\naustralian prime minister malcolm turnbull has scrapped knights and dames from the honours system .\nsevilla fought back from a goal down to draw 2-2 at fc lviv in the first leg of their europa league semi-final .\nthe crisis in the steel industry is not the only threat to the welsh economy , plaid cymru has said .\na pro-refugee campaigner has been found guilty by a sheriff of racially aggravated abuse at a demonstration .\nthe queen 's official portrait has been unveiled on a new # 5 coin .\na lion is on the run after escaping from a national park in south africa .\nin a refugee camp on the border between syria and lebanon , children are making their own homes .\nthe prince of wales and the duchess of cornwall have visited a south london fruit and vegetable market .\nnearly 20 million people in china could be exposed to unsafe levels of arsenic in their drinking water , a study suggests .\nengland made it three wins from three under eddie jones with a dominant victory over south africa at twickenham .\nsaracens will face leicester in the semi-finals of the anglo-welsh cup , while harlequins will face exeter .\na bitter row has broken out between the children of singapore 's founding father , lee kuan yew .\na pensioner from denbighshire has been jailed for 12 years for raping and sexually abusing a young girl .\nstar wars and harry potter actor warwick davis has said his touring caravan has been stolen .\nindian police have dropped sedition charges against 11 muslim men arrested for allegedly cheering for pakistan in the champions trophy cricket match on tuesday .\nthe french government has ordered the dissolution of a far-right group after the killing of a left-wing activist .\ngloucester will play bath in the european challenge cup final after a hard-fought victory over la rochelle .\nthree teenage boys have been charged in connection with an attempted murder in dumbarton last month .\na murder investigation has been launched after a man 's body was found at a block of flats in aberdeen .\nhuman remains have been found on a mudbank off the kent coast .\nleague two side cheltenham town have signed midfielder danny graham from hibernian for an undisclosed fee .\non the first day of e3 last year , phil spencer laid out his vision for microsoft 's next xbox .\nadam voges and dawid malan hit centuries as middlesex dominated day two against hampshire at lord 's .\na gwynedd airfield is being considered as a potential location for a uk spaceport , the uk department for transport has said .\na newborn baby girl has been found abandoned at a bus stop in north wales .\nsoldiers in world war one spent less than half of their time at the front , research has suggested .\nin the sunshine on the costa del sol , sue stevenson explains why she and her husband , nigel , moved from the uk to spain three years ago .\nformer foreign secretary william hague has said the uk should have done more to stop the civil war in syria .\nlewis hamilton says the battle between mercedes and ferrari will be `` close '' this season .\na coroner is considering whether to exhume the body of a soldier found dead at deepcut barracks .\na former police community support officer -lrb- pcso -rrb- has been jailed for four years for child sex offences .\nus president donald trump has said special counsel robert mueller should not be allowed to lead the investigation into alleged russian meddling in the 2016 election .\nthe cost of the new borders railway line has risen by about # 1m , according to a council report .\ntwo of the uk 's biggest vlogging stars have told newsbeat they do n't support plans to make youtube videos clearer about sponsored content .\na diver who was facing extradition to malta over the deaths of two friends has said his `` utter nightmare '' is over .\na rocket carrying supplies for the international space station has exploded shortly after lift-off on the us east coast .\nsri lanka 's government has criticised the media after a buddhist monk set himself on fire to protest against the slaughter of animals .\nas the race to succeed dominique strauss-kahn as managing director of the international monetary fund -lrb- imf -rrb- draws to a close , two names stand out .\na british teenager who travelled to syria to join islamic state -lrb- is -rrb- has reportedly carried out a suicide attack in iraq .\na group of lebanese artists say they were asked by the makers of us drama homeland to write anti-american graffiti for an episode of the show .\na man has been jailed for 20 years for raping and sexually abusing two teenage girls .\nthe funeral of coronation street creator ken warren has taken place at manchester cathedral .\ncardiff city manager neil warnock says he does not need the club 's owner to pay a club record transfer fee for a player .\none of europe 's oldest carnivals will celebrate its 50th anniversary this year .\na daily guide to the key stories , newspaper headlines and quotes from the campaign for the us presidential election .\nprostate cancer is the most common form of cancer in men .\nthe bbc has been told by whistleblowers in india that talktalk customers have been conned out of more than # 20m .\nmodern family star sofia vergara has topped forbes ' annual list of the highest-paid actresses in the us .\ntata steel has confirmed it is in talks to sell its speciality steels unit .\nwales fly-half james hook will return to ospreys from gloucester at the end of the season .\non sunday morning , eight-year-old faizan ahmed dar went to his grandmother 's home in a remote village in indian-administered kashmir .\nderry 's all-ireland sfc hopes suffered a blow as they were beaten by mayo in extra time in the semi-final in castlebar .\ntalks aimed at resolving the dispute over a new junior doctors ' contract in england have been extended .\na near-miss involving an air canada plane at san francisco 's airport was `` very rare '' , aviation officials say .\nsouthend united striker nile ranger will not be fit for the start of the season as he continues his rehabilitation from a criminal conviction .\nfive-time world champion ronnie o'sullivan says he does not want to be the `` top man in snooker '' .\nlondon is the most expensive city in the world to travel by public transport , a survey has found .\na father-of-two from liverpool , james hennessy travelled by car with friends , who all survived .\nwhitehaven have appointed former st helens academy coach carl forster as their new head coach .\na community council on lewis has been targeted in an email scam .\noxford united will host scunthorpe in the third round of the checkatrade trophy .\na northern ireland fan has died during the team 's euro 2016 match against ukraine in lyon .\nbbc radio 1 is changing its schedule to give new presenters a chance to impress .\nthe republic of ireland has become the first country in the world to ban the sale of so-called legal highs .\nwolves striker marcin zyro is expected to be out for `` a considerable time '' after suffering a serious knee injury .\nbbc radio 4 presenter jon snow has launched a campaign to save a ferry service on the isle of wight .\nengland 's limited-overs team are due to arrive in bangladesh on friday for their three-match one-day series against a bangladesh invitation xi .\nit 's been a year since apple unveiled its much-anticipated smartwatch .\nin a packed auditorium in the northern paris suburb of saint-etienne , a woman stood up to speak .\nmillions of uk shoppers are expected to return items they bought online over the festive period .\nthe financial reporting council -lrb- frc -rrb- which oversees the corporate governance code should `` get stronger '' , former city minister lord myners has said .\nthe bbc should have a dedicated books programme , author ian harris has said .\nthe president of the republic of ireland is to hold a special meeting later to consider a controversial abortion bill .\nbarcelona 's central square was a hive of activity on friday morning as people returned to the city after the attack .\nthe life expectancy gap between men and women is narrowing , according to a new study .\na 17-year-old boy arrested following the deaths of two teenagers in caerphilly county will face no further action .\nwales 's miserable autumn campaign came to an end with a last-gasp defeat by australia in cardiff .\na volcano in western indonesia has erupted , killing at least 11 people , officials say .\nnewsnight presenter jeremy paxman has revealed he has shaved off his full beard .\nengland 's tyrrell hatton and matthew fitzpatrick share the third-round lead at the arnold palmer invitational at bay hill in florida .\nivory coast international midfielder cheick bissouma has signed a new contract with french ligue 1 side lille until 2021 .\nteachers in england are being subjected to `` vile , insulting and personal comments '' online , a teachers ' union has warned .\ntorrential rains have caused severe flooding in the southern indian city of chennai -lrb- madras -rrb- .\nhow much do you remember about the news in wales this year ?\nthe uk government has passed a motion to ban five terrorist groups , including the islamic state in iraq and the levant -lrb- isis -rrb- .\nwales wing liam williams will miss scarlets ' european champions cup match against zebre on saturday .\nharlequins flanker alex waller could be out for up to a month with a neck injury .\nrory mcilroy has withdrawn from thursday 's first round of the abu dhabi championship because of a stomach bug .\nformer footballers gary neville and ryan giggs have unveiled revised plans for a # 500m development in manchester . have the potential to enhance the character of the deansgate/peter street conservation area , rather than dominate it , as the previous scheme threatened . ''\nthe bbc has been embedded with iraqi forces fighting so-called islamic state -lrb- is -rrb- in mosul .\ncardiff 's principality stadium would be happy to host a anthony joshua fight , says chief executive martyn phillips .\nthe home office has launched an investigation into the alleged illegal employment of more than 100 workers at takeaways in the isle of wight .\nonline retailer amazon has begun recording sales made in european countries as taxable income .\nnew chelsea boss antonio conte will be replaced as italy coach by giampiero ventura after euro 2016 .\na turkish military pilot has died after his jet crashed near the syrian border , state media report .\n`` they 're the signs of the rural mafia , '' says cesare de simone .\na denbighshire pensioner died after being hit on the head by a boat propeller while snorkelling in malta , an inquest has heard .\naddictive mobile game flappy bird has been taken down .\nfor the past few weeks , spacex has been carrying out a routine test of its rocket .\nscientists in the united states have created human-pig embryos that could one day grow pancreases for transplant . pablo ross says this is unlikely but is a key reason why the research is proceeding with such caution : `` we think there is very low potential for a human brain to grow , but this is something we will\nhe 's the latest in a long line of scottish wingers to have come through the ranks at ibrox , rangers and scotland 's national team .\nst mirren 's craig goodwin has been charged with violent conduct by the scottish football association .\nit 's not every day you get to interview one of the greatest footballers of all time .\nmillions of muslims across the world are celebrating eid al-fitr , the end of the holy month of ramadan .\na table tennis coach has admitted having sex with a teenage girl .\nthe first results of the secondary school admissions process in england have been published .\nat least four migrants have been killed in an attack by a libyan coast guard speedboat off the coast of libya , an aid group says .\nfour men have admitted carrying out an armed robbery at a fife flat .\na grade ii-listed theatre is to be auctioned after its owners defaulted on a loan .\nbarnsley 's hopes of reaching the league one play-offs suffered a blow as they lost at chesterfield .\nnorth korea has carried out its second test of an intercontinental ballistic missile -lrb- icbm -rrb- , us and japanese officials say .\nuk interest rates `` could remain lower for longer '' , the bank of england 's chief economist has suggested .\na senior us state department official tried to influence the fbi to change the classification of an email from hillary clinton 's private server , the fbi says .\nfacebook has said it is `` working hard '' to remove pages belonging to convicted sex offenders .\nscottish professional football league chief executive ian wishart has called for a `` proper and adult discussion '' on gambling in the game .\nimax , the world 's largest cinema exhibitor , plans to list its shares in hong kong .\nthe democratic republic of congo 's president joseph kabila has appointed opposition leader jean-pierre tshibala as his prime minister .\nthe suspended chief constable of west yorkshire police has been cleared of any wrongdoing .\nleicester city 's winless start to the premier league season continued as they were held to a goalless draw by southampton .\nfacebook has published detailed maps of the world 's population .\na police dog which bit a man has been put down .\na heatwave in spain and a strong breeze could be bringing the hot weather north to the uk .\ngermany 's economy grew faster than expected last year , according to official figures .\na mystery clown who sparked a police alert in county antrim has apologised for any distress caused .\nparents in australia who fail to vaccinate their children could lose childcare subsidies .\na police investigation into serial killer peter tobin is to be scaled back .\nten years ago this week i went to san francisco to report on the launch of the iphone .\nthe didcot power station chimney tower has reportedly come down .\nvenezuela 's defence minister says two men have been arrested in connection with an attack on an army barracks last week .\njoe marler will captain the british and irish lions in tuesday 's second test against the hurricanes in wellington .\nfacebook has defended its decision to keep a billionaire on its board despite his involvement in a legal battle with the news website gawker .\na german far-right politician has been injured in a hit-and-run crash involving a car driven by a syrian refugee .\nlocal areas should be allowed to raise extra funds for the nhs and social care , the lib dems ' norman lamb has said .\na us-born basketball player in south korea has been found guilty of falsifying her birth certificate .\na pipe bomb has been found in a car in west belfast .\nthe inquest into the murders of 11 protestant workmen by loyalist paramilitaries almost 40 years ago has been delayed again because of a lack of coroners .\njim broadbent has won rave reviews for his return to the west end stage as scrooge in a christmas carol at the old vic .\na former waffen ss soldier , who was convicted of murdering three dutch civilians during world war two , has been sent to prison for life .\nlambing season is a busy time for farmers , with thousands of baby sheep being born across the uk .\nhilary mantel has won a crime award for her debut novel someone else 's skin .\nthe family of a woman who drowned while on a school swimming trip have won a high court battle for compensation .\nus republican presidential candidate donald trump has met mexican president enrique pena nieto but did not discuss his proposed border wall .\na man is in a critical condition in hospital after being stabbed outside a police station .\nhartlepool 's league two play-off hopes suffered a blow as they lost 2-0 at home to barnet .\na jockey has been banned from driving for six months after he admitted drinking and driving while sleep walking .\ntwo men have died in separate road accidents in the republic of ireland .\nsouth africa batsman hashim amla has resigned as test captain after the second test defeat by england .\nbrendan rodgers says new signing olivier ntcham has `` everything to be a top , top level number eight '' after he made his celtic debut in saturday 's friendly defeat by paris st-germain .\nbbc sport 's football expert mark lawrenson is pitting his wits against a different guest each week this season .\nwhen pope benedict xvi announced his resignation in february 2013 it was one of the biggest shocks in the history of the roman catholic church .\ndonald trump has said african-american communities are `` absolutely in the worst shape they 've ever been in '' .\nthe body of a man found in a wheelie bin on monday has been identified as that of a woman found dead in a flat a day earlier .\nisabelle linden scored on her women 's super league one debut to earn birmingham city ladies a draw at reading .\nplans to build a 15,000-seater entertainment arena in bristol are being backed as part of the city 's regeneration .\ngylfi sigurdsson says swansea city 's 2-1 win at aston villa was vital to their premier league survival hopes .\nthe mayor of london has appointed a former met police authority chair to carry out a strategic review of the capital 's security services .\nit has been a month since the result of the eu referendum was announced .\na council has voted to ban smoking breaks during work hours .\nplans for a new tennis court at a country house owned by the queen and duke of edinburgh have been submitted .\npartick thistle captain alan osman says the club do not want head coach alan archibald to leave firhill .\nworld champion marc marquez extended his lead at the top of the motogp standings with victory at mugello .\na man has been jailed for seven years for sexually assaulting a woman in canterbury .\nmore than 500 migrants from myanmar and bangladesh have been rescued off the coast of western indonesia .\nbritain 's andy murray will take on novak djokovic in sunday 's french open final in the hope of winning his first grand slam title .\nthe international olympic committee -lrb- ioc -rrb- president has apologised for comparing russian athletes banned from the 2018 winter olympics to holocaust victims .\nlabour is investigating claims one of its councillors shared a facebook post calling for the death penalty for sex offenders .\nbelgian prosecutors say a man who attacked two policewomen with a machete in the city of charleroi was a 29-year-old moroccan .\ntsai ing-wen has never been one to mince her words .\nthe british and irish lions tour of new zealand will go down as one of the best tours in history .\nleinster moved up to second in the pro12 table with a hard-fought victory over scarlets .\na 92-year-old man who has alzheimer 's disease has said he will not accept a council 's offer of a mobility scooter .\na new community hospital in somerset is set to be built after the government agreed to pay for a quarter of the project .\nviewsnight is bbc newsnight 's new place for opinion .\nhundreds of eggs from two rare bird species have been stolen from nests in a harbour .\na school in sydney , australia , has banned students from clapping at assemblies .\nislamist clerics in mauritania have called for the death penalty for a blogger convicted of insulting the prophet muhammad .\na police officer who wrongly recorded the date of birth of the wrong man during a search of a house in north belfast has been disciplined .\na cake-maker has baked a life-size model of the land rover defender to mark the car maker 's two millionth model .\naaron cook has been left out of great britain 's taekwondo team for the london olympics after the british olympic association ratified lutalo muhammad 's selection .\na powys town 's library could be taken over by a secondary school .\na record number of birds have been spotted on the western isles .\nthree journalists have been shot dead in mexico in the space of a week .\npope francis 's three-day visit to africa will be his first to the continent since he became pontiff in 2013 .\nthe number of people diagnosed with cancer in wales has increased by more than 10 % in the last decade , according to new figures .\nsierra leone has been declared free of ebola , the world health organization -lrb- who -rrb- has said .\nus private equity firm kkr has raised its bid for australian winemaker treasury wine estates -lrb- twe -rrb- .\nheavy rain and strong winds are affecting flights in and out of the republic of ireland .\nthe jury in the trial of a pensioner accused of sexually abusing a teenage girl has been discharged .\ntickets for a banksy exhibition in weston-super-mare have gone on sale , despite technical problems with the site .\ndozens of cakes decorated to look like fairytale princesses have been taken to homeless shelters after a party at a golf club descended into disorder .\nrule the world , ridden by david mullins , won the grand national at aintree on saturday .\ntorquay united have signed defender myles anderson and striker ruairi keating on short-term deals .\nkilmarnock have ended the season-long loan deals of dundee united 's jordan waddington and hibernian 's ryan davies .\nwakefield trinity wildcats chief executive steve carter says the club 's lease at belle vue is `` crippling '' and they may have to groundshare for 2016 .\na mental health trust has been praised for treating patients with `` kindness , dignity and respect '' .\na south korean soldier has been sentenced to death for killing five fellow soldiers last year .\nscotland voted to stay in the european union -lrb- eu -rrb- in the referendum that took place in june .\na shop worker who accidentally left his tools in a charity shop has said he has had offers to appear on i 'm a celebrity ... get me out of here !\nthe fbi has raided the los angeles home of an alleged hacker in connection with the nude photo leak scandal last year .\nthe chairman of leeds united saw the club 's employee as `` a pair '' , an employment tribunal has heard .\nthe race is on to become the next secretary-general of the united nations .\npakistan have been given permission to play two warm-up matches in india ahead of the world twenty20 next month .\nbournemouth striker callum wilson says he feels `` strong and ready '' after making his return from a knee injury .\nconservationists in spain have warned tourists not to harass a dolphin that washed up on a beach on monday .\nthe beatles ' first management contract , signed by the band 's manager , george epstein , has been sold at auction for # 280,000 .\nroyal bank of scotland has seen its capital levels fall in the latest european banking stress test .\nnational league side chester have re-signed defender ben lloyd from national league north side southport on a one-month loan deal .\nchildren 's toys could be targeted by hackers under plans being considered by the home office .\na watermelon farmer in central china has died in a dispute with local law enforcers , state media report .\nthe chief executive of the health board at the centre of the tawel fan scandal has said he is `` hugely impressed '' by the way the families have reacted .\nleague one side fleetwood town have signed leicester city midfielder luke davis on a permanent deal .\nleonardo ulloa 's injury-time penalty rescued a point for 10-man leicester as they maintained their seven-point lead over tottenham at the top of the table .\nabout 800,000 chemists in india will go on strike on wednesday in protest against online drug sales , officials say .\ncarrick rangers have signed former crusaders player jamie mcallister on a two-year deal .\na 16-year-old boy has been arrested after a teacher was stabbed at a school in bradford .\nlee westwood says he is `` back to the stage where i turn up fully expecting to play well '' ahead of this week 's open championship at royal troon .\nscotland 's top-ranked squash player laura adderley has won the women 's title at the scottish national championships in edinburgh .\nmichael van gerwen beat peter wright 9-6 to win the pdc world darts championship at alexandra palace .\nplans for a gravel quarry on ancient woodland in staffordshire are the `` largest threat '' to such land in england , a conservation charity has said .\nkilmarnock manager lee clark said his side 's promotion to the premiership was tinged with a warning .\nperth and kinross council has asked councillors to back a food hall plan for perth concert hall .\nthe violence that erupted at a bundesliga match in leipzig was the worst seen in germany since the fall of the berlin wall .\nwe 've been following the story of the thousands of migrants who have been rescued from the sea in recent weeks .\nthe mexican government says it will deliver food to the south-western state of oaxaca after weeks of protests by teachers ' unions .\nsouth african athlete oscar pistorius was on his stumps when he hit the toilet door with a cricket bat , his murder trial has heard .\ndozens of people have queued up at a cash machine in north lanarkshire to withdraw extra money .\na northern ireland man is working in the video game industry in los angeles .\ndundee united manager mixu paatelainen praised his side 's `` mental toughness '' after they held on to beat st johnstone .\nnigeria 's main opposition party has won a record number of governorships in state elections .\nthe uk government 's top lawyer has told the supreme court the scottish parliament has `` no authority '' over brexit .\na stretch of the towpath on the river dee in flintshire will be closed to the public for six weeks for repairs .\nprivate landlords in england are to be given new powers to evict migrants from their homes .\nthe number of plastic bottles washed up on beaches across the uk has risen sharply , a survey has found .\nthe cia has been accused of using code released by wikileaks to spy on its targets .\nedinburgh 's arts festival season is under way .\nsunday times political columnist adrian gill has died at the age of 59 .\nformer england and tottenham striker jimmy greaves has suffered a severe stroke .\nthe 2017 tour de france grand depart will be held in the german city of dusseldorf .\nthe government `` repeatedly expressed concerns '' about kids company but continued to fund it , a report has said .\nscotland 's finance secretary knew the size of next year 's budget before the holyrood election .\nnigel farage 's former press officer suzanne evans has said she has `` given up hope '' of becoming the next ukip leader .\nwrexham have appointed dean keates as their new manager on a two-year contract .\npolice investigating the murder of a teenage girl 21 years ago are working with canadian forensic experts .\nchelsea have won the premier league title for the second time in three seasons .\niran 's national football team goalkeeper has been suspended for wearing trousers deemed `` inappropriate '' by the authorities .\nsaturday 's game between oldham athletic and peterborough united has been postponed because of a frozen pitch .\nthe number of homeless people living in the private rented sector in scotland has risen by 18 % in five years , according to a report by shelter scotland .\na man has been threatened during an aggravated burglary at his home in londonderry .\na new diplomatic push is under way to find a political solution to the crisis in syria .\nrory mcilroy is three shots behind leaders victor dubuisson and jaco van zyl after the third round of the turkish open in antalya .\na man and his dog have been rescued after becoming stuck up a tree in greater manchester .\nthe ross sea has become the first large scale marine protected area -lrb- mpa -rrb- in the world 's oceans .\nuniversity students are being urged not to take so-called `` smart drugs '' bought online .\nmae prif weinidog cymru wedi dweud yn flaenorol y dylai ' r sefydliadau datganoledig gael penderfynu a ddylid datblygu fframwaith gyda san steffan yn dilyn brexit\nmanchester city midfielder kevin de bruyne will miss up to 10 weeks after fracturing his ankle in tuesday 's capital one cup win over everton .\nmark williams was knocked out of the world championship in the first round as ding junhui swept to a 13-0 victory .\nat least six people are feared dead after a building collapsed in naples , in southern italy .\nmclaren 's jenson button and mercedes ' nico rosberg have raised concerns about the safety of the new baku grand prix track .\na conservative general election candidate has won damages after being falsely accused of trading with the so-called islamic state group .\na memorial is to be erected in memory of a teenager who drowned in the river avon .\nthe snp 's `` historic '' holyrood election victory has dominated the front pages of scotland 's newspapers in the early hours .\ngritters have been brought back into service by gloucestershire county council just weeks after being stood down .\nalex salmond has met officials from the european free trade association -lrb- efta -rrb- to discuss scotland 's post-brexit future .\nwork to restore a beck in cumbria to its natural meandering state has been hailed a success .\na financial services firm has announced plans to create 500 new jobs in birmingham .\nscotland 's national sporting body is to cut its budget by 20 % in the next two years .\na former child protection worker who stole more than # 120,000 from newport council has been jailed for three years .\na swan found shot with a bow and arrow in fife has been released back into the wild .\ndirk coetzee , one of south africa 's most notorious apartheid-era spies , has died at the age of 81 .\na bus driver is in a critical condition in hospital following a crash with a lorry in bath .\na jury in the liam fee murder trial has been shown a video of the toddler lying dead in his bedroom .\nthe mormon tabernacle choir and the radio city rockettes will perform at donald trump 's inauguration .\nwhen i arrived in bangkok , i had no idea what to expect .\na hospital 's accident and emergency unit is under `` considerable pressure '' , inspectors have said .\nhewlett-packard -lrb- hp -rrb- has apologised for the way it informed users of a change to its printers that stopped unofficial ink cartridges being used .\ntwo men have appeared in court charged with the murder of a man who died after being stabbed in a west midlands nightclub .\na footbridge is to be built in a north yorkshire town where a bridge has collapsed .\nthe skeleton of a stegosaurus , one of the largest dinosaurs ever to live , has been reconstructed for the first time .\nnorthern ireland economy minister simon hamilton has outlined his plan to deal with the renewable heat incentive -lrb- rhi -rrb- scheme .\nnorthampton saints have unveiled plans for a new stand at the club 's franklin 's gardens ground .\nbritain 's johanna konta and andy murray have reached the australian open semi-finals for the first time .\ntesco has apologised after using an `` inappropriate '' image of a man pulling carrots from an organic farm in a supermarket promotion .\na wartime welsh flag poster from world war two has sold at auction in conwy county for # 340 .\nfrance received a tip-off about a possible jihadist attack during next month 's olympic games in rio de janeiro , the french defence minister has said .\nhull fc have signed full-back joe arundel on a two-year deal from castleford tigers .\ntens of thousands of people in the southern german city of augsburg will be evacuated on sunday as a world war two bomb is defused .\nbadminton has had its uk sport funding cut by more than # 3m for the tokyo 2020 olympic games .\nluton town scored three first-half goals to beat bristol city in league two .\nthe home town of the uk 's eurovision hopefuls is preparing to celebrate if he and his partner win the contest .\nmanchester city have been fined # 20,000 by the football association after breaching anti-doping rules .\nbritain 's giles scott won silver in the finn class at the european sailing championships in majorca .\na safety device on the virgin galactic spaceship that crashed on friday , killing one pilot , failed , investigators say .\nall images are copyrighted .\nworld number one andy murray beat stan wawrinka in straight sets to reach the semi-finals at the atp world tour finals .\na new section of motorway has opened to traffic in the south west of scotland after months of delays .\na post-mortem examination has failed to establish the cause of death of a man who died in the measles outbreak .\ncatalans dragons have sacked head coach laurent frayssinous after three years in charge .\nhearts have signed former motherwell goalkeeper lee hollis as cover for injured neil alexander and stephen gallacher .\ndisgraced former cyclist lance armstrong has told the bbc he would `` probably do it again '' .\nairdrie savings bank has appointed the boss of scotland 's largest community bank as its new chairman .\nmore than one million older people in england are struggling with everyday tasks because of a lack of support , a report says .\nwhy did a british drone drop a missile on so-called islamic state fighters in syria ?\nnew castleford tigers half-back rangi chase says he is in the `` best shape '' of his life .\na kent council is considering a rise in council tax to help plug a # 580,000 funding gap over the next year .\na new population of rare spiderlings has been released into the wild in suffolk .\na former google employee who accidentally took over the search giant 's website google.com has been rewarded by the company .\nomar bogle missed a stoppage-time penalty as barnet came from two goals down to draw at grimsby .\npolice in the us state of missouri have fired tear gas at protesters after a curfew was imposed in the wake of the killing of a teenager .\nburton albion have signed fulham 's lasse christensen and cardiff 's cauley woodrow on loan until january .\nthe australian government has blocked the sale of one of the country 's biggest private landowners to foreign investors .\na deep-sea diver has discovered a new depth record for loch ness .\nthe world 's oldest people are living longer in norway than anywhere else in the world , according to a new index .\nalmost one in five bee colonies across the eu died last year , according to a new survey of more than 32,000 colonies .\na four-year-old boy has died in a house fire in neath port talbot .\na hacker has been sentenced to 20 years in jail in the us for distributing a list of american military personnel to the so-called islamic state -lrb- is -rrb- .\na new weather camera has been installed at a lifeboat station in a bid to cut down on the number of launches .\n`` hunger and dehydration are the leading cause of death in hospitals and care homes in england and wales '' , according to labour leader jeremy corbyn .\na series of videos has been produced to help people get a grip on their money .\nthis winter 's snowsports season in the scottish highlands has been the best in a decade , ski scotland has said .\nthe closure of a berkshire fire station will go ahead as planned .\naberdeen 's first ever comedy festival has kicked off .\npolice investigating the murder of a woman in county down have appealed for information about a bonfire on monday night .\nshrewsbury town have signed west bromwich albion youngster lloyd roberts on loan until the end of the season .\ndavid cameron is to hold talks with german chancellor angela merkel later about the migrant crisis and the uk 's eu renegotiation .\na 77-year-old woman has died in a deliberate house fire in edinburgh .\na former primary school teacher has been jailed for 16 years for raping and sexually abusing pupils .\nwales women ran in seven tries in a comfortable win over the british and irish forces .\nformer leyton orient striker simon cox says he is `` not too proud '' to play in league two .\ntelecoms firm talktalk has confirmed that financial details of some of its customers may have been stolen in a cyber-attack .\nprince harry has launched a scholarship programme for young people from caribbean countries who want to work for the queen .\ntens of thousands of people have taken part in pro-independence rallies in the spanish region of catalonia .\ncraig shakespeare 's `` personal ambition '' to succeed claudio ranieri as leicester manager is `` almost out of order '' , says former foxes defender martin keown .\nat least one person has been killed and nine are missing after a building collapsed on the spanish island of tenerife .\nit 's easy to look at england 's record in this year 's six nations and wonder what has gone wrong .\nthe uk 's serious fraud office should investigate corruption claims surrounding the selection of russia and qatar to host the 2018 and 2022 world cups , a uk mp has said .\ntheresa may has set out her vision for the future of the conservative party in a speech to the cbi .\nthe liberal democrats have accused ukip of `` scaremongering '' over immigration .\nthe us space agency -lrb- nasa -rrb- has launched a mission to bring back samples from the asteroid bennu .\npartick thistle 's premiership survival hopes suffered a major blow as they were thrashed by inverness caledonian thistle at firhill .\na group of families whose babies were not given their ashes have launched a legal challenge against shropshire council .\na california mother-of-three who was abducted two weeks ago has been found .\nbarratt homes has announced plans to build 332 new homes in edinburgh .\nseven police officers in hong kong have been jailed for six months for beating up a protester .\na rock star has travelled to the us to encourage more people to sign up as bone marrow donors .\nscientists say they have made a `` game-changer '' step towards a cure for type 1 diabetes .\na cyclist who died after being hit by a car that police had tried to stop has been named .\nplans to devolve tax-raising powers to the assembly without a referendum are a '' hollow argument '' , the first minister has said .\na new species of shrimp has been named after rock band pink floyd .\nletting agencies are `` getting away '' with charging tenants `` extortionate fees '' , a labour am has said .\nukraine 's interim government in kiev has been making a series of moves to reassure the public .\nprisons in england and wales are `` less safe and less decent '' for older prisoners , according to a report by the prison reform trust .\nthe psni has arrested more than 1,000 people in relation to public order-related incidents in the last six months .\na man has appeared in court charged with an acid attack .\nscotland head coach vern cotter says he understands why the scottish rugby union chose to appoint gregor townsend instead of him .\nthe ferry service between guernsey and the isle of man has resumed after repairs were completed on the liberation .\na suicide bomb attack by the kurdistan workers ' party -lrb- pkk -rrb- in south-eastern turkey has killed five police officers and injured at least 30 others , the turkish army says .\nthe church of england has said it will divest from companies that make money from fossil fuels .\nuk mortgage approvals have risen to their highest level in more than a year , according to official figures .\nhibernian moved back to the top of the championship with a comfortable win over st mirren .\nthree men have been seen on the roof of pentonville prison .\nnew argentina coach edgardo bauza wants to talk to lionel messi before naming the five-time world player of the year in his first squad .\ngerman chancellor angela merkel has said she is `` very unhappy '' after her christian democrats -lrb- cdu -rrb- suffered a setback in a regional election linked to her migrant policy .\na man accused of slavery has told cardiff crown court he did not force a man to work for # 50 a day .\nlincoln city reached the third round of the fa cup for the first time in eight years with victory over league one oldham .\neddie redmayne has been working with a coach to prepare for the role of einar wegener .\nyoung tenants are the most likely group to be victims of identity theft , a survey suggests .\nderbyshire trio adam milnes , ben lewis and liam mckay have all left the club by mutual consent .\nfirst minister carwyn jones has branded the conservatives `` politics of the gutter '' .\ntom bolarinwa and ashley chambers scored their first goals of the season as grimsby beat accrington at blundell park .\nformer footballer george weah has won a seat in liberia 's senate in the first parliamentary elections since the end of war in 2003 .\nirish paralympic champion jason smyth says he is already thinking about the next olympics .\nwhat do you do if your family has relocated and you no longer have time to spend with them ?\npolice in the western indian state of maharashtra have arrested a doctor after the discovery of 11 aborted female foetuses in a drain .\na project to mark the life and work of a scottish poet is to be launched .\nthe results from saturday 's county antrim cricket league games .\nthe national audit office -lrb- nao -rrb- has published its report on the profitability of the big four outsourcing companies .\ntaylor swift 's shake it off has been banned from triple j 's hottest 100 list .\nethnic minorities in hong kong are being denied equal access to education , according to a new study .\nrafael nadal is one of the greatest tennis players of all time .\nbristol rovers manager paul sturrock says his side 's current injury crisis is `` scary '' to watch .\ngoldman sachs is changing the way it hires students .\nscientists have developed a new type of lithium-ion battery which could be used in smartphones and other electronic devices .\ndominika cibulkova will face angelique kerber in the final of the wta finals in singapore on saturday .\npolice in seven european countries have arrested more than 20 people suspected of being part of a kurdish-sunni jihadist network .\nsamsung electronics has agreed to buy us electronics firm harman international for $ 8bn -lrb- # 6bn -rrb- to help develop connected cars .\nactress jane fonda has been honoured by the american film institute -lrb- afi -rrb- with its life achievement award .\nleyton orient have signed queens park rangers defender luke young on loan until the end of the season .\na social worker who was sacked after an investigation found he had viewed more than 1,000 pornographic images has been struck off .\na neolithic monument in the cotswolds has won an award for providing the best view of the night sky .\nscots actress karen gillan is set to star as a space pirate in the new marvel superhero movie guardians of the galaxy .\nnasa 's curiosity rover has begun its first test of mars 's atmosphere .\nlord derby has won a high court challenge against the government 's refusal to approve plans for up to 2,000 new homes .\nrare birds of prey have returned to fields in norfolk for the first time in more than 20 years .\nchildren as young as 10 were involved in recent rioting in northern ireland , the police service of ni -lrb- psni -rrb- has said .\na stretch of beach huts in lincolnshire is to be restored after being awarded a # 50,000 grant from the government .\na pothole may have contributed to the death of an 81-year-old cyclist , an inquest jury has ruled .\nlenovo and acer have become the first smartphone-makers to use bigger batteries in their handsets .\nthe uk 's equality watchdog has called on politicians to stop `` legitimising hate '' following the brexit referendum .\ncampaigners are walking the length of the lake district in a bid to stop pylons being built in the landscape .\nformer first minister gavin robinson has accused those campaigning for the uk to leave the eu of using `` fear tactics '' .\non one side of the border wall in california is a concrete barrier , on the other is a chain-link fence .\nfirearms are being sold illegally on the dark net by `` lone-wolf '' terrorists , according to a study .\na man has been jailed for 12 years for raping a woman in 1985 .\nwales manager chris coleman says he is not surprised marcus rashford has been included in england 's squad for euro 2016 .\nthe pirate bay appears to be back online .\na freight train has derailed and caught fire in the us state of tennessee , forcing the evacuation of more than 1,000 people .\nthe uk is holding a referendum on whether to remain a member of the european union .\nthe ospreys will review their coaching structure following the departure of scott johnson , says andrew hore .\nsir alfred hitchcock 's film vertigo has beaten orson welles 's citizen kane to be named the greatest film of all time .\nreality tv star stephanie jones has given birth to a baby boy .\nthe new mayor of the south african city of tshwane has said he will stop buying luxury cars for himself and his council .\nserbia captain branislav ivanovic has warned chris coleman 's wales side they face their `` hardest game '' so far in world cup qualifying .\nyeovil town ladies have re-signed defender lauren howard following her graduation from university .\nan 82-year-old man has been assaulted and robbed in his home in south lanarkshire .\nsingapore 's joseph schooling won olympic gold in the men 's 100m butterfly as michael phelps missed out on a 23rd gold medal in rio .\nconnacht have signed new zealand-born prop dominic robertson-mccoy on a two-year deal .\na high-speed train came within seconds of causing a crash during the final stage of the criterium du dauphine in france .\npolice have released the name of an 82-year-old woman who died after being hit by a car in kinross .\nthree teenagers who murdered a man in slough have had their sentences increased by the court of appeal .\nlast night was a historic night for classical music , as the bbc proms at london 's royal albert hall marked the first time a female conductor has conducted the event .\nformer foreign secretary jack straw has defended a review of the freedom of information act .\nconductor and musicologist christopher hogwood has died at the age of 82 .\nbournemouth striker joshua king says the players will not take their foot off the gas now they have secured their premier league safety .\nwhen bolivian film-maker ana cappa stumbled across a box of film in her attic , she had no idea what she was looking at .\ntributes have been paid to boxing legend muhammad ali on twitter .\nauthorities in nigeria 's largest city , lagos , have shut down more than 100 churches and mosques in a crackdown on noise pollution .\nindia 's ambitious plan to create the world 's biggest biometric identity database is set to take the world by storm .\nall photographs getty images .\nalex salmond has been criticised by scottish conservatives leader ruth davidson and scottish liberal democrat leader willie rennie for not attending westminster 's debate on syria .\na woman who killed her unborn baby by taking a cocktail of sedatives has been jailed for eight years .\nconservationists have criticised a draft report on the future of wales ' national parks .\nborussia dortmund were outclassed by wolfsburg in the german cup final as coach thomas tuchel 's last game in charge ended in defeat .\na full undergraduate degree will be available online within five years , according to the head of one of the world 's biggest online course providers .\na 12-year-old boy 's performance at the grammy awards on sunday night has been hailed as a `` dream come true '' in indonesia .\nterrence malick , wim wenders and tom ford are among the films to be screened at this year 's venice film festival .\na giant arch has begun moving towards the site of the chernobyl nuclear disaster in ukraine .\nin a refugee camp in northern iraq , a group of yazidi women and girls were sitting around a table , listening to visitors from the us-led coalition fighting so-called islamic state -lrb- is -rrb- .\na number of fuel tanks have been dumped in south armagh .\na teenager who fell from the roof of a college has suffered `` life-changing injuries '' , a judge has found .\na former cia station chief convicted in italy of kidnapping a terror suspect has been arrested in panama .\nat least 45 people have been killed in a suicide bomb attack on a football match in southern iraq , officials say .\na human rights activist from the united arab emirates -lrb- uae -rrb- has been awarded a prestigious human rights award .\na man has died following a fire at a house in east sussex .\nit 's difficult to see how the leak of labour 's manifesto on wednesday night could have been premeditated .\nvisitors to legoland have complained of long delays leaving the theme park due to a lack of parking .\nthe government has suspended a controversial system which detains asylum seekers while they await hearings .\naction camera maker gopro has said it will cut 1,000 jobs as part of cost-cutting moves .\nthe 100th anniversary of charles rennie mackintosh 's masterpiece , glasgow school of art , has been marked .\nharlequins have signed fly-half demetri catrakilis from racing 92 .\nthe bbc has a reputation for keeping secrets .\nplans have been submitted for a new justice centre in inverness .\nthe number of new house sales fell in april for the first time in nearly six years , according to surveyors .\nmyanmar 's aung san suu kyi 's national league for democracy -lrb- nld -rrb- party has named its two candidates for vice president .\nalexandra palace has been awarded # 26.7 m by the heritage lottery fund to transform its theatre and tv studios .\nveteran us actor eli wallach has died at the age of 95 .\ndavid cameron has been to st athan before .\noldham athletic have become the first league one club to offer free entry to their fans for saturday 's home game against rochdale .\na record amount of money was spent on film production in the uk last year , according to the british film institute -lrb- bfi -rrb- .\nthe world 's first concorde has been unveiled at a new museum in bristol .\na rugby player was killed when his car was catapulted into the air in a suspected racing crash , an inquest has heard .\nthe uk economy grew by 0.6 % in the third quarter of the year , official figures have shown .\nmanchester united boss louis van gaal says goalkeeper david de gea will not play in saturday 's premier league opener against southampton .\na victim of child sex exploitation in rochdale has said asian men are still targeting girls in the town .\nderbyshire have signed fast bowlers ben cotton and tom taylor on loan from nottinghamshire until the end of the season .\namerican striker abby wambach will retire from international football after the us 's tour of china .\nleague one side walsall have signed crewe alexandra midfielder jon nolan on a two-year deal .\nif you want to make it in the music business , you have to have a good look .\nthe welsh government has announced plans to ban the use of e-cigarettes in public places .\nnottingham forest have signed greece international striker georgios makris on a four-and-a-half-year deal from greek side panathinaikos .\na $ 150,000 -lrb- # 94,000 -rrb- dress worn by actress lupita nyong ' o at the oscars has been stolen from a hotel room in los angeles .\nplaid cymru has launched its assembly election campaign by accusing labour of failing wales .\neastern europe could miss out on a chance to elect the next un secretary general , because of a lack of regional unity in the race to succeed ban ki-moon .\na 25-year-old man has been arrested on suspicion of causing death by dangerous driving after a cyclist was hit by a car .\na holiday firm has collapsed with the loss of more than 1,000 jobs .\ntens of thousands of pakistani christians have attended the funerals of victims of sunday 's church bombings in lahore .\na man has been jailed for life for killing a 12-year-old girl 40 years ago .\nsoldiers in ivory coast have taken over parts of the central city of bouaké in a second day of unrest over pay .\nnational league side bromley have signed former liverpool striker david ngoo on a deal until the end of the season .\ntax-dodging by banks and accountants should be made a criminal offence , danny alexander has said .\na library book borrowed more than 120 years ago has been returned to a herefordshire school .\nup to 40 % of bus services in wales could be at risk if funding is cut , local authority leaders have warned .\nhundreds of people have attended a public inquiry into plans to build 500 homes in kent .\nthousands of people have travelled to the republic of ireland to take part in the commonwealth games in glasgow .\nleague two side stevenage have signed striker nathan hyde on a two-year deal .\nthe news that melania trump is moving her family out of the trump tower in new york city and into the white house has sparked a backlash on social media .\na beatles album sleeve designed by sir peter blake has topped a list of the 10 most valuable rare records .\ntributes have been paid to a 91-year-old cyclist who died in a crash while trying to set a new national record .\nwarren gatland is targeting a third grand slam in four years as wales begin their six nations campaign against ireland on saturday .\nyoung people in england are being offered qualifications of `` little worth '' in a `` complicated patchwork '' of apprenticeships , a report says .\nthere has been a big rise in the number of babies being breastfed in england since the 1990s , figures show .\nthe business case for a subsea electricity cable linking the western isles and mainland scotland has been submitted .\nmae rspb cymru wedi cadarnhau i ' r elusen yng nghymru ddydd sadwrn yn eich gerddi .\nyork city have re-signed macclesfield town striker shaun parkin on loan .\nbaroness warsi has been at the top of the conservative party .\nworld number one angelique kerber suffered a shock 6-4 6-2 defeat by zheng saisai in the second round of the miami open .\nscottish author irvine boyd is to write a new james bond novel .\nrussia has blocked access to pornography websites for the second time in two years .\nthe uk 's participation in the invasion of iraq `` undoubtedly increased '' the level of terrorist threat to the uk , a former head of mi5 has said .\nthe battle for tal afar is shaping up to be one of the most important in iraq since the 2003 us-led invasion that toppled dictator saddam hussein .\neverton manager ronald koeman should `` toughen up '' , says former republic of ireland captain roy keane .\nnine people have been arrested following clashes in maidstone .\nfirefighters have been tackling a blaze at a derelict building in the templeton area of glasgow .\nfour men have been charged in connection with an explosive device found in lurgan , county armagh , on friday .\nrugby world cup final referee nigel owens says he has no plans to retire .\naustralia 's immigration minister peter dutton has criticised media coverage of the country 's offshore detention centres .\na teenager has been charged with the murder of a man who was stabbed to death in essex .\nthe winding-up petition against the lotus formula 1 team has been adjourned until 21 december .\nbritain will '' bypass '' christian refugees coming to the uk from syria , the head of the catholic church in england and wales has said .\nan mp facing a vote of no confidence over his links to a missing # 10.25 m loan to a football club has said he will not stand in the next election .\nmotorists have criticised plans to increase the cost of a speed penalty course in bristol .\nfoxconn , the company that makes apple 's iphones and ipads , has reported a 33 % rise in fourth-quarter profits .\nhe was once described by lance armstrong as the greatest sprinter of all time .\nthe greek people will vote on sunday on whether to accept the terms of a third bailout from international lenders .\nthe london fire brigade -lrb- lfb -rrb- has apologised for using the term `` hipster '' in a tweet about a fire in east london on friday .\nthe oneweb project , a joint venture between airbus and intelsat , aims to build the world 's largest constellation of satellites .\ngillingham have pulled out of a bid to sign newport county midfielder liam byrne .\nan audit of a welsh amateur boxing association has found it is `` not fit for purpose '' and does not qualify to receive public money .\na supplier of ambulance services in sussex has said he is `` aggrieved '' he has not been paid for his work .\na man has been arrested after two men died in a crash involving a car and a lorry in stoke-on-trent .\nchelsea ladies kept their women 's super league title hopes alive with a thumping win over liverpool ladies at stamford bridge .\ntiger woods missed the cut at the farmers insurance open as england 's justin rose extended his lead to two shots .\na court in india 's tamil nadu state has ruled that a transgender woman can become a police officer .\nwales manager chris coleman would be hard-pressed to turn down a big-money job in the premier league , according to his former fulham assistant osian roberts .\nthe london stock exchange -lrb- lse -rrb- has said its shareholders will be asked to approve its merger with deutsche boerse .\nthe football association says it backs michel platini 's bid to be the next president of fifa .\nsir ben ainslie led oracle team usa to a remarkable comeback to beat emirates team new zealand in the 35th america 's cup final .\na former us student who was jailed for six months for sexually assaulting an unconscious woman has been released .\nstevie johnson 's injury-time strike gave motherwell victory over inverness caledonian thistle .\nus president donald trump has said he believes barack obama was behind leaks to the media and protests at his town hall meetings .\nthe number of women becoming nuns in the uk has reached its highest level in 25 years .\nst johnstone have signed northern ireland under-21 international kyle mcclean .\nan inquest into the deaths of four british soldiers who died after their vehicle crashed into a canal in afghanistan has resumed .\nthe number of people dying from heart disease in scotland has fallen by more than a third in the past decade .\nloganair has carried out the first part of a multi-million pound refurbishment programme on one of its aircraft .\na wind turbine has collapsed on a mountain in county londonderry .\na baby girl mauled to death by a `` vicious '' dog was `` failed '' by police , a report has found .\nformer states minister phil parkinson has been elected as the new deputy for st peter port north .\na `` toxin tax '' for diesel cars is expected to be rolled out across the uk next year .\na brazilian fisherman has found a piece of space debris from a uk satellite .\nchina is `` committing to do something about '' overcapacity in the steel industry , business secretary sajid javid has said .\nthirty indian nurses held hostage by islamist militants in iraq have returned home .\nnew england patriots quarterback tom brady has apologised to the national football league after a judge overturned his four-game ` deflate-gate ' ban .\nengland 's ian poulter will take a two-shot lead into the final round of the turkish airlines open in istanbul .\na denbighshire man is trying to track down a postcard he received 29 years ago .\na man has been arrested in connection with the alleged hacking of pippa middleton 's icloud account , scotland yard has said .\nrobert snodgrass scored twice on his return from injury as hull came from behind to beat southampton .\nthe uk 's hottest day of the year so far has been recorded , with 36.7 c -lrb- 98f -rrb- recorded in west london .\nchelsea have appointed guus hiddink as interim manager until the end of the season , following the sacking of jose mourinho .\ncrystal palace winger yannick bolasie could leave the club for # 5m in january .\na # 31m arts centre in gwynedd is `` a mess '' , a construction worker has told bbc wales .\nfor the second time in a month nhs workers have gone on strike in a row over pay .\njohan cruyff 's son jordi has thanked people for their `` kind words and memories '' following the death of the dutch great .\nindia 's railway ministry has been praised on social media for helping a mother and her newborn baby .\nthree more men have been arrested in connection with the murder of kevin mcilhagga .\nthe government 's brexit repeal bill has been criticised by the scottish and welsh governments for giving ministers `` sweeping powers '' .\nisraeli police are investigating alleged price-fixing of school trips to the auschwitz death camp .\na nurse who downloaded hundreds of thousands of indecent images of children has been jailed for four years .\nelite uk firms are `` systematically excluding bright working-class applicants '' from their workforce , a study suggests .\njoe root is the `` obvious candidate '' to be england test captain , says pace bowler james anderson .\na lorry driver who killed a couple in a head-on crash has been jailed for five years .\nfor much of the 20th century , america was the world 's most powerful country .\nthree brothers have been jailed for a total of 12 years for a number of drugs offences .\na woman in the us state of utah has been sentenced to life in prison for killing six of her newborn babies .\nan advert in el salvador 's main newspaper , la prensa , asks the public to help catch members of the country 's criminal gangs .\nthe body of a man has been found at a recycling plant in bristol .\nplans for a new bridge over the river tay on the a90 have been unveiled .\ncouncils in england are calling on the government to allow them to sponsor `` failing '' council maintained schools .\nbrighton midfielder dale stephens will serve a two-match ban after the football association rejected his appeal against his red card .\ntelecoms regulator ofcom has released a free app to help people find out if their wi-fi is working properly .\ntwo tube lines have been temporarily closed due to the grenfell tower fire in west london .\nformer llanelli and liverpool striker john wallace is celebrating his 90th birthday .\nsouth african prosecutors are to appeal against oscar pistorius ' sentence for killing his girlfriend .\nsyrian government forces have retaken control of the last rebel-held area in the city of homs , state media say .\na pedestrian has been taken to hospital after being hit by a car on the a470 in monmouthshire .\nnew zealand 's joseph parker will fight andy ruiz jr on 10 december for the vacant wbo heavyweight title vacated by tyson fury .\nchampionship side leeds united have signed former ac milan midfielder miroslav benedicic on a two-year deal .\ntwo police officers have been found guilty of plotting to steal drugs destined for birmingham .\nplans for a # 10m specialist cancer palliative care unit at royal glamorgan hospital in bridgend have been announced .\nethiopia has come a long way in the last 20 years .\ncampaigners are calling for a specialist muscular dystrophy centre to be built in wales .\na woman credited with saving thousands of lives with her polio campaign has been praised by a charity .\nsomerset have re-signed south african all-rounder roelof van der nerwe on a two-year deal .\na project to save a surrey cathedral from demolition has reached its fundraising target .\nindonesia 's president has summoned australia 's ambassador after reports that canberra spied on his phone .\nbournemouth have signed striker jermain defoe from premier league rivals sunderland for an undisclosed fee .\n-lrb- close -rrb- : the pound rose against the euro on tuesday after the bank of england kept interest rates on hold .\nthe fbi has agreed to help a us court in a murder case , days after it said it could not access the iphone of one of the san bernardino gunmen .\none of the most prestigious samba schools in brazil , the samba da mangueira , has won this year 's rio de janeiro carnival .\nolam international has been accused of buying palm oil from `` rogue '' producers in indonesia that may contribute to the annual haze affecting singapore .\nthe us has appointed its first full-time ambassador to cuba in more than 50 years .\npremier league referee mike dean has been given a one-match touchline ban and fined # 20,000 by the football association .\njames vaughan says some of his new sunderland team-mates want promotion back to the premier league .\ndouble olympic champion nicola adams says she has joined forces with trainer virgil hunter to become a world champion .\npolice are investigating after a man was seriously injured in edinburgh .\ntheresa may says she wants to reassure the world that the uk is strong and stable .\nat least three people have died in japan after choking on rice cakes .\nsalmon has become the uk 's second biggest food and drink export after whisky , according to industry figures .\nthere has been a sharp rise in the number of police shootings in england and wales , figures show .\na russian court has jailed six people for dancing twerking at a world war two memorial in the siberian city of novorossiysk .\na man has denied killing a former rugby player in swansea .\nso what is the fiscal lock in the labour party 's manifesto ?\npolice are investigating whether the shooting of a mother and son at their north london flat was a targeted attack .\nlabour 's leadership contender liz kendall has accused her rivals of failing to spell out how they would change ed miliband 's policies .\nthe government has said there is `` no green light '' for fixed-odds betting terminals in england and wales .\nthe outgoing catholic priest fr michael donegan has been heckled by protesters in north belfast .\ncarrick rangers have appointed former crusaders and republic of ireland defender paul callaghan as their new manager .\nsony is to restart vinyl record production for the first time in more than 30 years .\nnorth carolina republicans have chosen their nominee to run against democratic us senator kay hagan in november 's elections .\nthe bank of england has released the results of its annual stress test of the uk banking system .\nformer west indies head coach phil simmons has returned to his post .\nas russell knox emerged from the clubhouse at gleneagles on tuesday morning , his eyes welled up with anticipation . i 'm not sure if you 're ever really ready for it but you 've just got to do your best and go for it . '' there 's a wider goal for knox than doing\na security alert in west belfast has ended .\nthe daughter of british hostage david haines has said islamic state -lrb- is -rrb- must be `` eliminated '' .\na substance found in fish oil has been found to boost the body 's immune system and fight deadly infections .\na plane bound for chicago has made an emergency landing in edinburgh after declaring a second emergency in 24 hours .\nthe husband of a british-iranian charity worker jailed in iran has said she is `` terrified '' as she appeals against her sentence .\njoe garner , head of bt 's openreach business , is to leave to become chief executive of the uk 's largest mortgage lender , nationwide .\na police officer has been arrested over an alleged plot to kidnap a colleague .\ngreat britain 's mark latham won bronze in the men 's points race at the track cycling world championships .\nufc featherweight champion conor mcgregor says he will fight at next month 's 200th anniversary event after being pulled out of the card .\na grade ii-listed manor house has reopened to the public after a # 3m restoration .\nwhy do we change what we buy ?\nthe idea of an eu army is `` unnecessary and redundant '' , the uk defence secretary has said .\nthe african union -lrb- au -rrb- has agreed to readmission for morocco of the territory of western sahara , which morocco annexed in 1975 .\nformer premier league footballer clarke carlisle has been given a 12-month community order for drink-driving .\nengland manager roy hodgson says his side must `` win the war '' when they take on switzerland in their opening euro 2016 qualifier in bern on monday .\ntwo former khmer rouge leaders are to go on trial in cambodia for crimes committed during the regime 's reign of terror in the 1970s .\na man has been charged in connection with a bomb attack on a police station in county tyrone 20 years ago .\nwrexham striker andy morrell will take charge of the club 's first team for the rest of the season following dean saunders ' resignation .\na woman in her 70s has died in a house fire in ballymena , county antrim .\nthis year 's eurovision song contest took place in the ukrainian capital , kiev .\nthe welsh government could lose # 50m a year if stamp duty revenues are used as a benchmark for funding , a report has claimed .\ncoral reefs around the world have been devastated by the el nino weather phenomenon , say scientists .\nthe uk and scottish fishing industries have secured increases in their north sea quotas for 2015 .\nthe first thing you notice when you arrive at the reception centre run by the international organization for migration -lrb- iom -rrb- in belgrade is that it is a hive of activity . `` around 400-500 a day . '' vladimir says the increasing restrictions imposed by countries along the balkan route - and finally its official closure -lrb- although hundreds\npakistan has lifted a three-year ban on the youtube video-sharing site , which was imposed over an anti-islam film .\ntwo scottish journalists who have spent decades working on fleet street in london say they feel `` unworthy '' of the torch it once held .\nbritain 's chris froome retained third place in the vuelta a espana despite being involved in a crash at the end of stage 10 .\na 16-year-old girl who headbutted and punched a police officer at dundee sheriff court has been detained for eight months .\nthe church of england has appointed its first female bishop , the reverend libby lane .\nmore than 50 jobs could go at a swansea distribution centre which is being taken over by a rival .\na man arrested on suspicion of causing death by dangerous driving after a pedestrian was hit by a van in leicester city centre has been released .\na primary school head teacher is retiring after 35 years in the role .\nthe uk should be a world leader in genetically modified -lrb- gm -rrb- crops , according to a government-commissioned review .\npeter kennaugh has won the volta a catalunya in barcelona .\nbristol city came from behind to beat 10-man watford and reach the efl cup third round .\nmore than 5,000 jobs have been created in wales by overseas firms in the last year , according to new figures .\nspain 's government has taken legal action against catalonia 's plan to secede from the rest of the country .\nthe head of spain 's state-owned rail company has said there was no indication that the train that derailed last month , killing 79 people , had been damaged .\nso what 's going on in nicosia ?\npremier league football clubs are entering a `` new era of sustained profitability '' , according to business consultancy , deloitte .\nthe bbc 's director general tony yentob has said he would not rule out the possibility of a new series of top gear , following jeremy clarkson 's suspension .\nus car owners will be able to tinker with software in their vehicles without violating copyright laws .\ngoogle has been ordered by a court in the netherlands to hand over information about people who left fake reviews about a nursery online .\nhampshire coach dale benkenstein says all-rounder gareth berg could miss the start of the county championship season because of a knee ligament tear .\nthe duke of cambridge has said he takes his royal duties `` very seriously '' but that when the time comes to accept more responsibility he will do it .\nformer scotland defender willie watson has joined stuart mccall 's backroom staff for the 2018 world cup qualifiers .\nvoting has begun in elections being held in merseyside .\ncrusaders moved seven points clear at the top of the irish premiership thanks to late goals from craig whyte and andrew forsythe against linfield at windsor park .\na man with learning difficulties was attacked and robbed at knifepoint at a bus stop in south lanarkshire .\nat least 20 civilians have been killed in russian air strikes on the islamic state-held syrian city of raqqa , activists say .\nfour royal navy frigates have been sold off for recycling .\niran is `` committed to giving up the prospect of nuclear weapons '' , french foreign minister laurent fabius has said .\na-level results day can be a stressful time for students and their parents .\na cruise ship with more than 4,200 people on board has arrived in us waters after a week adrift off the gulf of mexico .\nthe victim of a rape has written to the director of public prosecutions , alison saunders , asking for a review of the case .\na walkers crisp factory in county durham is to close with the loss of 355 jobs .\narchaeologists have uncovered a roman town in dorset during a field school .\nmichael garcia , the former us attorney who led fifa 's investigation into the bidding process for the 2018 and 2022 world cups , has been appointed by the us department of justice to lead a criminal inquiry into the bidding process .\njack grealish scored twice as england under-21s came from behind to beat guinea 6-1 at the toulon tournament .\na woman with terminal cancer has been told by a high court judge that she has the right to refuse life-saving dialysis treatment .\na cathedral 's decision to allow a muslim student to read a passage from the koran during a service has led to a senior clergyman resigning .\nwales coach warren gatland says his side will learn from their series whitewash by new zealand .\narsenal have signed legia warsaw midfielder krystian bielik for an undisclosed fee on a four-and-a-half-year deal .\nglasgow 's defeat by northampton in the european champions cup is a sobering reminder of how difficult it is to win in this competition .\nus home improvement giant home depot has reported better-than-expected sales for the fourth quarter .\ni 'm really happy to be through to the second week of wimbledon after my win over andreas seppi .\na fire which destroyed a former textile mill in bradford is `` heartbreaking '' , historic england has said .\nthe decision to take military action in syria is never taken lightly .\njapanese knotweed has been a problem in the uk for more than a century .\nphil taylor beat kim huybrechts to set up a pdc world championship quarter-final against raymond van barneveld .\nleigh centurions secured their first super league win since returning to the top flight with a convincing victory over salford red devils .\na man who stabbed his ex-girlfriend 's new boyfriend to death in front of two children has been jailed for life .\nthe partner of a transgender woman who was found dead in her prison cell has said a letter she wrote before her death should have been reported .\nscottish labour leader kezia dugdale has backed rival owen smith in the party 's leadership contest .\nrestoration work on the swansea and brecon canal is under way as part of a # 1m project to restore the waterway .\ninstagram , the photo-sharing app owned by facebook , has announced it is introducing advertising .\nthe australian speaker of parliament , peter slipper , has resigned , dealing a blow to prime minister julia gillard 's minority government .\na brazilian man has been arrested at rome 's airport after he tried to smuggle cocaine hidden in his trainers .\nit 's the deadline , it 's the deadline , it 's the deadline , it 's the deadline .\nricky burns retained his wba world super-lightweight title with a unanimous points win over mexico 's arturo beltran in glasgow .\nmexican footballer alan pulido , who was kidnapped over the weekend , called an emergency number and threatened to kill his kidnapper while on the phone .\nemperor penguins in the antarctic are surprisingly adaptable , a study suggests .\nplans for a new # 2m lifeboat station in scarborough have been approved by councillors .\nthe price of scottish pork has fallen by 18 % in a year , according to a farming union .\nmichael dunlop set the fastest lap of wednesday 's opening senior tt practice session .\na 16-year-old boy has died after suffering a head injury during a fight at a girl 's 16th birthday party in south-east london .\nrobert snodgrass will be out for six months with a cruciate knee ligament injury , hull city manager steve bruce has confirmed .\nplymouth moved top of league two as goals from james threlkeld and craig tanner earned victory over crawley .\ntwo colleges in dorset have been awarded # 5m by the government to upgrade their buildings .\nmiddlesbrough have signed burnley midfielder dave jones on a season-long loan deal .\na canoe has been found in the middle of the m1 motorway .\na woman 's body has been found in woodland in wirral , merseyside police have said .\nedinburgh moved into the pro12 's top six with a hard-fought win over newport gwent dragons at rodney parade .\nus bank jp morgan chase is reported to have agreed to pay $ 13bn -lrb- # 8bn -rrb- to settle claims it misled investors about risky mortgage-backed securities .\nthe northern line extension to battersea has been given the go-ahead by the government .\nmore than half a million women in the uk have suffered a miscarriage , according to new research .\nengland 's performance in the first test against india in rajkot was unacceptable .\nmicrosoft has announced xbox smartglass , a software tool that links the firm 's forthcoming video games console with tablets and televisions .\nlancashire 's one-day cup match against gloucestershire was abandoned without a ball bowled because of rain .\nross county boosted their hopes of premiership survival with victory at kilmarnock .\ndisgraced snooker player stephen lee has been fined and ordered to repay # 1,600 to a fan he defrauded out of a snooker cue .\nthe forestry minister is to set out plans to commercialise some of wales ' public forests .\n`` it 's a big day for the eu , '' one senior eu official told me .\nthe government 's immigration cap could have caused a crisis in the nhs this winter , mps have said .\nformer rangers captain barry ferguson has backed scott allan to handle a move to celtic .\nhundreds of people have taken part in a march to protest against the closure of motherwell and clydebridge steel plants .\na man has been charged with the murder of jean mcconville , one of the disappeared .\nthe sequel to harry potter spin-off fantastic beasts and where to find them will be released in november 2017 , film studio warner bros has confirmed .\na man has been arrested on suspicion of murder after a woman 's body was found in a house in worcestershire .\nbruno alves is the `` perfect fit '' for pedro caixinha 's rangers side , according to former ibrox defender john mccarthy .\na millionaire was shot in the leg by a burglar who burst into his home armed with a stocking over his head , a court heard .\nciara mageean has been left out of the irish team for the european team championships .\nthousands of little mix fans have been left `` gutted '' and `` sick '' after the band cancelled a concert in belfast because jesy nelson was ill .\nmanchester united 's summer transfer window plans have been confirmed .\npowers over teachers ' pay and conditions will be devolved to the welsh government , welsh secretary alun cairns has said .\nat least 20 civilians have been killed in an air strike on a village held by so-called islamic state in eastern syria , activists say .\nall pictures are copyrighted .\nsouth africa beat sri lanka by an innings and 88 runs on day four of the first test to take a 1-0 lead in the series .\na hospital has extended a ban on visitors after an outbreak of norovirus .\na man has died following a fire at a house in oxford .\nred bull 's daniel ricciardo set the pace in first practice at the hungarian grand prix .\nmae heddlu gogledd cymru wedi ei gyhuddo o geisio llofruddio ar gyswllt fideo o garchar altcourse .\nmario balotelli has said he will quit the pitch if he is racially abused again .\na writer-activist has been charged with sedition for allegedly insulting the indian national anthem .\nnew england manager sam allardyce says he is concerned about goalkeeper joe hart 's future at manchester city .\nformer labour mp bob marshall-andrews has quit jeremy corbyn 's shadow cabinet to join the lib dems .\nwelsh actress angharad rees , best known for her role as demelza in the 1970s tv series poldark , has died at the age of 71 .\nthe world 's largest fund manager , blackrock , is set to cut up to 1,000 jobs in the us , according to media reports .\nhundreds of people have taken part in two cycling events in plymouth on saturday .\nblack and ethnic minority women are to be offered work placements as part of a new scottish government scheme .\nthree pupils have been expelled from edinburgh school for girls after cannabis was found on school property .\nchelsea have celebrated their premier league title victory with an open-top bus parade through london .\nit has been a long time coming , but les hutchison 's plan to sell his stake in motherwell has finally been completed .\nsheffield panthers kept their elite league title hopes alive with a thumping 6-1 win over cardiff devils .\na mother and son have set two new world sailing speed records during a race around the isle of man .\nwhole brain radiotherapy , used to treat lung cancer , is no longer safe , say doctors writing in the lancet .\na man has been arrested after two teenagers died in a crash .\na man has been jailed for perverting the course of justice over the death of a 16-year-old boy 12 years ago .\nindian hammer thrower surender singh says he failed a drugs test because his sample was `` tampered with '' .\nfrench presidential candidate francois fillon and his wife penelope have been questioned by police as part of an investigation into payments she received .\na woman who claims a former royal aide sexually abused her has told a court she is not fantasising .\nnew laws in australia threaten `` entrusted people '' with up to two years in prison if they reveal protected information about the country 's detention facilities , the bbc has learned .\nfive men have been cautioned for publishing the name of a woman who accused footballer ched evans of rape .\nwomen 's champions league holders arsenal ladies have signed netherlands international midfielder danielle middag from ajax amsterdam on a three-year deal .\na man has been jailed for 16 years for attempting to murder a takeaway restaurant worker .\nchildren are being encouraged to try new foods at school , a survey suggests .\nchesterfield director of football paul turner has left the league one club by mutual consent .\nben stokes and james taylor both hit centuries as england reached 332-8 on the first day of their tour match against south africa a in potchefstroom .\nnewport county chief executive mark foxall says the club are `` expecting to be honoured '' at rodney parade .\na children 's author from rhondda cynon taff has teamed up with falklands veterans to tell the story of mrs orangeleaf .\nwest brom manager tony pulis says striker saido berahino is not fit enough .\nquinton de kock and hashim amla hit centuries as south africa beat england by seven wickets in the third one-day international .\nthe future of online marketing is being discussed at a conference in london this week .\ntwo suspected members of the so-called islamic state -lrb- is -rrb- group have been arrested in germany on suspicion of planning a terror attack .\na 95-year-old man who phoned in to a bbc radio show to say he felt `` so alone '' was taken to the studio by a taxi .\nbbc radio 4 has a reputation for producing some of the best shows on the planet .\none of the uk 's leading fund managers has warned that a uk exit from the european union would be bad for the economy .\ntony adams says his time as granada coach has been a `` disaster '' after their 2-1 defeat by espanyol .\nmexican president enrique pena nieto has promised to help the people affected by a series of explosions at a fireworks market .\naccrington stanley have signed fulham midfielder filip rodak on loan until the end of the season .\ntributes have been paid to two men who died in a four-vehicle crash .\nswansea city 's supporters ' trust says it has yet to hear from the club 's new owners .\nan eight-year-old girl has urged a council to make a disabled swing at a new play park for her twin brother .\nrangers moved up to second in the scottish premiership with a comfortable win over aberdeen .\nwales have reached the quarter-finals of euro 2016 for the first time in 58 years .\nhuman remains have been found at the site of brighton 's corn exchange as part of work to restore the venue .\nthe father of a us student who has been in a coma in north korea for more than a year has criticised the country 's government .\nbovine tuberculosis -lrb- tb -rrb- is a `` devastation '' to farmers and communities in england , the government has warned .\na campaign has been launched to save newport 's arthur machen library from closure .\najax midfielder abdelhak nouri has suffered `` catastrophic '' brain damage after collapsing during a pre-season friendly on sunday .\nthe scottish government has been warned it could face legal action over its record on air pollution .\nfrench president francois hollande 's plan to strip jihadists convicted of terror offences of their french citizenship has triggered a political storm .\ntheresa may 's letter to the president of the european council setting out her plans for leaving the eu has been met with anger in wales .\nthe head of monarch airlines has said the recent terror attacks in paris will `` last a little while '' .\nefe ambrose 's move from celtic to blackburn rovers on transfer deadline day may not be completed because of visa issues .\nolly marshall scored two tries as gloucester came from behind to beat sale sharks and move up to eighth in the premiership .\ncharles scored a late winner as 10-man atletico madrid lost to la liga leaders barcelona at the bernabeu .\nthe number of people waiting for mental health treatment in wales has more than doubled in the past six years , new figures show .\nprof frank pantridge , the belfast doctor who invented the portable defibrillator , has been described as a man who had a `` mischievous streak '' .\na memorial service has been held against plans to dig up a victorian cemetery to make way for the hs2 high-speed rail link .\nthe sale of arm holdings to japan 's softbank is a `` bad deal '' for the uk economy , former city minister lord myners has said .\nmicrosoft has defended its decision to search a blogger 's hotmail accounts .\na white supremacist who killed three people at two jewish sites in the us has been sentenced to death .\nhuddersfield moved into the championship play-off places with a comfortable win over norwich city .\nhartlepool united have signed reading midfielder george tshibola and mansfield town striker david bingham on loan until the end of the season . .\nscottish chambers of commerce -lrb- scc -rrb- has said it plans to undertake a `` deep-dive '' of scottish firms with potential to export to china .\nwelsh triathlete helen jenkins says she has a `` massive desire '' to make team gb for the rio olympics , alongside vicky holland and non stanford .\na customisable prosthetic hand that can control its own muscles has won a uk engineering prize .\nwest ham have been ordered to reveal the terms of their olympic stadium deal .\nit was half-time in malta and gordon strachan was talking about a crisis .\npeterborough united manager grant mccann says james maddison is one of the best players in league one .\nplymouth argyle defender paul hartley says his late winner against portsmouth in the league two play-off semi-final second leg was the `` biggest moment '' of his career .\ndanish police say a swedish journalist who went missing on a submarine in copenhagen may have been killed before it sank .\nthe general election has seen a dramatic increase in the proportion of young people casting their vote .\ninternational olympic committee -lrb- ioc -rrb- president thomas bach has said he has no regrets over the organisation 's response to the russian doping scandal .\nbritain 's ibf heavyweight champion anthony joshua has been ordered to defend his title against american victor ortiz .\nchris eubank jr says he will not let the injury suffered by nick blackwell affect his performance in saturday 's british middleweight title fight against ashley doran .\nmental health crisis teams should be the `` priority '' for suicide prevention in the nhs , a report says .\nfiji , a former british colony , is one of the world 's fastest-growing economies .\nnhs highland has approved plans for a midwife-led community maternity unit -lrb- cmu -rrb- at caithness general hospital in wick .\ncoventry blaze have signed former alaska aces defenceman liam stewart .\nan exhibition celebrating the life and work of author william blake has opened in south london .\na new school in the highlands has been forced to close after a hot water pipe burst in its ceiling .\nfrench prime minister manuel valls has called on british business leaders to stop `` bias '' against his country .\nrotherham united have signed former st mirren defender greg van zanten on a one-year deal .\nrichard hannon has compared teenage jockey marquand to three-time champion jockey ryan moore .\ntucked away in a corner of the national museum of natural history in london , is a small laboratory .\na coach drop-off and pick-up point in conwy could be widened to help foreign visitors cross the road .\nthe international atomic energy agency -lrb- iaea -rrb- says it has seen new indications that north korea 's main nuclear site is operating again .\nbritish expats in australia are gearing up for the uk 's eu referendum on 23 june .\nthree children have been removed from the care of a couple who are members of the uk independence party , rotherham council has said .\npeter houston wants falkirk to challenge for the scottish championship play-offs in his first full season as manager .\nthe hubble space telescope has helped to shed light on the most massive stars yet found outside our solar system .\nsumner redstone has removed viacom 's chief executive philippe dauman from the company 's board .\nengland captain chris robshaw says his side `` let themselves down '' in their 28-21 world cup warm-up defeat by france .\nisle of wight council is to appeal against a magistrates ' decision not to fine a father who took his daughter on holiday in term time .\nbritish pair naomi broady and heather watson lost 6-3 6-2 to chan yung-jan and yung-jan in the final of the wuhan open in china .\nconsumers are `` skint '' , according to credit card firm visa .\na 19-year-old has been jailed for life for plotting to carry out a terror attack in london .\nhoneymoon murder accused shrien dewani has been extradited from the uk to south africa , scotland yard has said .\nwales is on `` watch '' over the number of midwives working in the nhs , according to a report .\nan iron age hill fort in gwynedd may have been more important than previously thought .\nbbc news takes a look at some of the most popular social media platforms .\nus conservative activist phyllis schlafly has died at the age of 88 .\ngambling revenue in the chinese city of macau hit a record high in 2010 , official figures show .\nus chipmaker qualcomm has been fined $ 9.2 bn -lrb- # 5.4 bn -rrb- by china 's anti-monopoly watchdog for abusing its market position .\na 36-year-old man has been arrested in connection with the deaths of a man and woman in dundee .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo looks at the state of zimbabwe 's economy .\na man is in a critical condition after being hit by a lorry on the m6 in staffordshire .\na married couple have pleaded guilty at belfast crown court to the rape and assault of a woman they kept as a sex slave .\nthe death of rapper a$ ap yams has been ruled an accident .\na german man arrested on suspicion of links to the berlin christmas market attacker has been released without charge .\ncardiff city defender bruno ecuele manga is out of hospital after being diagnosed with malaria , the championship club have confirmed .\njon stewart has hosted his final edition of the us satirical news show the daily show .\ncharges have been dropped against former rangers owner craig whyte .\nipswich town head coach mick mccarthy says defender christophe berra is the best defender in the championship .\npoland 's conservative law and justice party has won the most votes in sunday 's general election but failed to win an outright majority .\nplans to increase passenger numbers at london luton airport to 30 million a year have been revealed .\nguernsey manager craig vance says his side 's fa cup first-round replay against premier league side fulham could have gone ahead without them .\nwigan athletic were knocked out of the efl cup in the first round as they lost at oldham .\nit all started with a competition .\na doctor in tanzania has turned motorcycle taxi drivers into first-aid volunteers .\npeople at high risk of heart disease should consider taking cholesterol-lowering statins , according to a major review .\nthe glastonbury festival has pleaded guilty to polluting a river after sewage leaked from a storage tank .\nfalkirk manager peter houston has confirmed that he is interested in signing a striker .\nthe government has been defeated in the house of lords over plans to give english mps a veto over english-only laws .\nsouth africa 's president jacob zuma has said he will pay back some of the $ 23m -lrb- # 16m -rrb- spent on upgrades to his private residence .\ndoga makiura , a 25-year-old japanese entrepreneur , left his job as an engineer in tokyo to travel to rwanda in 2010 .\nformer british middleweight champion nick blackwell 's sparring partner has been banned .\nengland head coach eddie jones has defended his team 's treatment of ireland fly-half johnny sexton in the six nations .\nsam tomkins says he would never rule out returning to wigan warriors in the future .\nkilmarnock have re-signed jamie hamill from hearts .\noscar-nominated actor joaquin phoenix has said he does not want to be a part of the awards ceremony .\nin our series of letters from african journalists , laurent sanguinetti reflects on australia 's political history .\na kentucky doctor who was dragged off a united airlines flight was `` terrified '' when he left vietnam , his daughter has said .\na woman has been left blind in one eye after two teenage boys shone a laser pen at her in glasgow .\na lighthouse has been erected at walt disney world in florida in memory of a boy who was killed by an alligator .\nthe head of the organisation of american states -lrb- oas -rrb- , luis almagro , has hit back at venezuelan president nicolas maduro , saying he is a `` traitor '' .\nat the chalcots leisure centre in north london , the gym is bustling with activity .\na man jailed for three years after sending a tweet threatening to blow up an airport has launched an appeal against his conviction .\ncomedian norman collier , best known for his chicken impression , has died at the age of 89 .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo considers the history of tobacco .\nbelgian police have killed two suspected islamist militants during anti-terror raids in eastern belgium , officials say .\na student has said she is `` devastated '' after losing a prosthetic hand while out on a night out .\nbbc radio 1 and radio 1xtra have seen listenership fall , according to the latest figures from rajar .\ngermany 's domestic intelligence agency , the bfv , says it has arrested a 25-year-old man on suspicion of making islamist statements online .\niaaf president lord coe has been backed by the man who wrote a damning report into doping in athletics to lead the organisation out of its crisis .\nsteve mcclaren has been sacked as newcastle united manager with immediate effect .\na teenager has been jailed for two years after biting off half of a man 's ear .\na hacker has hijacked thousands of printer devices .\nmore than half of christians in england and wales do not believe in the resurrection of jesus , a church of england survey has suggested .\na high court ruling on term-time holidays causes a `` huge amount of confusion '' , a conservative mp has said .\nsir elton john has said he is `` not surprised '' a dup mp said heterosexual people could contract hiv .\nscientists have discovered a plant fossil that dates back more than five million years .\nulster rugby has defended its decision not to wear a poppy during sunday 's game against newport gwent dragons at kingspan stadium in belfast .\nfrancesco schettino , the captain of the costa concordia , has been found guilty of manslaughter and sentenced to 16 years in prison .\nus olympic swimmer ryan lochte has lost sponsors ralph lauren and speedo after his drunken behaviour at rio .\nmanchester united manager louis van gaal blamed a lack of concentration for his side 's 2-1 defeat by ajax .\nthree people have appeared in court charged with terrorism offences .\nderby county 's winless run in the championship extended to five games after they were held to a goalless draw by brentford .\nat least 40 members of yemen 's special forces have been killed in a saudi-led coalition air strike in the capital , sanaa , officials say .\nthe mothers of two teenage boys missing off the coast of florida say they are hopeful their sons will be found safe and well .\ntwo men have been arrested in pakistan over the murder of a prominent pakistani politician in london , officials say .\nplans to set up new marine protected areas in welsh waters have been scrapped , the natural resources minister has said .\nthe digital revolution is changing the way we work , live and play .\nthe mother of missing teenager charlene downes is taking legal action against police .\nmanchester united manager louis van gaal says the europa league is the `` best route '' to champions league qualification .\nthe longlist for the bbc 's sound of 2016 list has been revealed .\nmyanmar 's president thein sein has said he will not seek re-election in the country 's first openly contested election in 25 years .\nthe humble coconut is a tropical staple in many parts of the world .\nbaroness nuala o'loan is one of northern ireland 's best-known republicans .\nthe number of cases dropped by the crown prosecution service -lrb- cps -rrb- in england and wales has risen for the first time , figures show .\ntranmere rovers and fleetwood town played out a goalless draw in league one .\nadults across the uk will be voting in the general election today .\naustralia 's cadel evans will win the tour de france for the first time after finishing second in saturday 's individual time-trial .\nceltic have given 13-year-old midfielder karamoko dembele his first-team debut .\na west midlands hospital has said it is looking at ways to address parking problems .\njeremy corbyn has said luxury flats must be requisitioned to re-house local residents affected by the grenfell tower fire .\n`` i was born in burma , but i have never been able to return to my homeland , '' says sarlan .\nnorwich city striker kyle lafferty has been fined # 30,000 by the football association for breaching betting rules .\na former usa gymnastics doctor has been ordered to stand trial on child sex abuse charges .\nthe bbc is to be the focus of intense scrutiny at this year 's mactaggart lecture at the edinburgh festival .\na driver who killed a three-year-old boy in a crash has been jailed for eight years .\nchinese artist ai weiwei has opened an exhibition on the island of lesbos .\nwales prop tomas thornton says he is relishing his first test start against samoa in cardiff on friday .\nsix of the nine members of the sport ni board have resigned .\nambulances spent a record number of hours handing over patients at accident and emergency departments in yorkshire last year , new figures show .\nuk house prices rose slightly in december , according to the nationwide building society .\nscarlets hooker ken owens says french side racing 92 are the best team in european rugby .\na man has been rescued after becoming trapped in a nightclub on `` mad friday '' .\neach day we feature a photograph sent in from across england .\nathletics world records set before 2005 could be stripped under new proposals from european athletics .\npamela geller , who has been arrested in connection with the shooting at a prophet muhammad cartoon exhibition in texas , is one of america 's most prominent anti-islamists .\na beach in denbighshire is at risk of a breach in its flood defences , according to a report .\na transgender woman who was found dead in a men 's prison told her partner she was going to kill herself , an inquest has heard .\na man has been jailed for life for the `` brutal '' murder of a romanian woman .\naston villa midfielder fabian delph has signed a four-and-a-half-year contract with manchester city .\ntwo men have been arrested on suspicion of firearms offences after a gun was found in luton .\nas the prince of wales celebrates his 800th birthday , bbc wales looks at some of the key events in his life .\nthe world 's first humanoid robot has been built in switzerland .\nserbia have been cleared to play their next two euro 2016 qualifiers behind closed doors by uefa .\nthe head of spanish football , angel maria villar , has resigned from his position with european governing body uefa .\nthor star tom hiddleston has spoken out for the first time about his relationship with pop star taylor swift .\nbernie ecclestone has hit back at criticism from drivers about the governance of formula 1 .\ngordon greer has not given up hope of playing for scotland again .\njohn akinde 's second-half goal was enough to give barnet a 1-0 win at mansfield in league two .\nthe former chief executive of anglo irish bank , david drumm , has been granted bail after being extradited from the united states .\njuventus have re-signed real madrid striker alvaro morata on a four-year deal .\nscotrail has reached an in-principle agreement with the rmt union in a long-running dispute over driver-only operated trains .\nbarnsley have signed torquay united midfielder angus macdonald on a two-year contract .\nthe former leader of guatemala 's army , efrain rios montt , has been declared mentally incompetent to stand trial .\nchildren 's services in birmingham have been rated `` good '' by the care quality commission .\ndavid gold has learned a valuable lesson on social media - do n't retweet .\nthe assassination of reinhard heydrich by british special forces during world war two has been made into a film .\nthree men have been arrested after a life-sized baby jesus doll was stolen from a nativity display in aberdeen .\nlewis hamilton finished 10th in a chaotic and incident-packed chinese grand prix as mercedes team-mate nico rosberg extended his championship lead .\nthree nurses have been found guilty of gross misconduct over the treatment of a paralysed man at a kent hospital .\nprime minister david cameron has said the government will not stand for `` hate crime '' after reports of attacks following the eu referendum .\nthe mayor of paris has said she will sue fox news over its coverage of the paris attacks .\nformer russian prime minister mikhail kasyanov has accused president vladimir putin of failing to react to a video that appeared to show him being shot .\npresident donald trump 's response to the removal of a statue of robert e lee in charlottesville , virginia , was a curious one .\nchelsea manager antonio conte has signed a new four-year contract with the premier league champions .\nsouthampton have signed winger nathan redmond from norwich city for an undisclosed fee .\nmarcus trescothick and james trego both hit centuries as somerset fought back against middlesex .\nit has been a year of many firsts for the bbc school report - from the first news day to the record-breaking temperature measurement .\nmae dyn wedi cael ei godi i ' r categori uchaf posib ers yr ymosodiad terfysgol ym manceinion nos lun yn abertawe .\na new online consultation system has been launched in a bid to get more students into general practice .\na book about the death of a british soldier in afghanistan has won the bollinger everyman book prize .\nfrench customs officials have stopped a boat trying to export a picasso painting to switzerland .\nhampshire all-rounder craig young has been ruled out of ireland 's two-match one-day international series against sri lanka with a hamstring injury .\ni met craig wright for the first time last week in a small meeting room in the basement of a building in london 's west end .\na former head of care at a school for children with special educational needs has been charged with child sex offences .\nalex corbisiero has been called up to replace injured prop cian healy on the british and irish lions tour to australia .\na restored railway carriage used to carry winston churchill 's coffin has been unveiled in county durham .\na suspected unexploded bomb has been found in a park in lancashire .\na man has been charged with two counts of attempted murder after two boys were stabbed .\na hat worn by princess beatrice at the royal wedding has been sold at auction for # 1,100 .\nan investigation has been launched after a six-year-old boy was left on a school bus in powys for a second time .\nmiddlesbrough head coach steve agnew says his side were `` naive '' in their 4-3 defeat at hull city .\nliverpool ladies have signed england midfielder jess greenwood from women 's super league one rivals notts county ladies .\nsocial housing contributed # 1.1 bn to the welsh economy in 2014/15 , according to a report .\nthe foreign office is `` urgently working '' with the authorities in thailand to establish whether a british national has died in the country .\nplans have been submitted for a new school campus in the scottish borders .\na woman has been taken to hospital after her car left the road in aberdeenshire .\nfour welsh universities have topped a national survey of student satisfaction .\npeople who carry a faulty gene are up to three times more likely to have a stroke , scientists say .\na bbc radio derby appeal set up by a presenter with skin cancer has reached its # 50,000 target .\nscientists say they have developed a blood test which could help diagnose alzheimer 's disease .\na film celebrating the life of one of the uk 's most famous buddhists has been premiered in dumfries .\nleague two side gloucester all golds have held talks with the city 's rugby league club about a possible partnership .\nceltic beat aberdeen 3-0 at hampden park to lift the scottish league cup for the 11th time .\nthe white paper on housing is the government 's latest attempt at a `` pragmatic '' solution to the housing crisis .\ndavid cameron 's pledge to hold a referendum on the uk 's membership of the european union by the end of 2017 looks like it could be a pipe dream , at least for the conservative party .\nwigan warriors have signed full-back sam hopkins from championship side leigh centurions .\nplanning applications have been submitted to erect wind turbines at donald trump 's aberdeenshire golf course .\npolice failed to properly investigate the extent of sexual exploitation of children in care , a report has found .\nelectrical stimulation of a specific part of the brain can improve maths ability , according to scientists at tel aviv university .\nheavy rain has caused flooding in parts of essex .\nengland 's matthew fitzpatrick will take a one-shot lead over kira aphibarnrat into the final round of the bmw masters in munich .\nbosses have been urged not to snoop on their staff 's private messages on social media sites .\nus supreme court justice ruth bader ginsburg has admitted she fell asleep at last month 's state of the union address .\nrail services between newcastle and edinburgh have been disrupted after a tree fell on overhead lines .\nbath have signed newport gwent dragons scrum-half jonny evans on a two-year deal .\navengers : age of ultron director joss whedon has deleted his twitter account following criticism of his portrayal of female characters .\nukip wales leader nathan gill has said he would give up one of his jobs if asked by new leader paul nuttall .\nthe former prime minister tony blair has said he would not have gone to war in iraq if he had known that saddam hussein had weapons of mass destruction .\nscotland 's education secretary john swinney is to give his response to a review into the death of aberdeen schoolboy bailey gwynne in 2007 .\ncafodd llwybr yng nghymru yn ystod yr ail ryfel byd , derwen josef , yn cael ei defnyddio fel lloches gan deulu o iddewon y natsaid .\npeople who are optimistic about the future have a lower risk of dying prematurely , research suggests .\nthe death of ethiopia 's prime minister meles zenawi is a major blow to the country 's political and economic stability .\na man who robbed a bank with a fake bomb strapped to his head has admitted assaulting a taxi driver .\na man has been taken to hospital after a drum of hydrochloric acid exploded at an industrial estate in belfast .\ngoogle is taking legal action against anti-litter app keep london beautiful .\nthe snp and labour have won seats on edinburgh council in two by-elections .\nmao zedong once said that `` the spirit of the red guards is lurking in the shadow of the mao era . ''\nmanchester united manager jose mourinho could name an unchanged side .\nbarclays has reported a drop in third-quarter profits after setting aside # 560m to settle claims over mortgage bonds and foreign exchange rates .\nthe number of people diagnosed with cancer in england taking longer to start their treatment has fallen .\na world war two veteran who survived the auschwitz death camp has turned 100 .\nenergy secretary amber rudd has been talking about the impact of brexit on the uk 's energy system .\nhuman rights lawyer amal clooney has called on the united nations to investigate the `` genocide '' being committed by islamic state -lrb- is -rrb- militants in iraq .\nlewis hamilton has been crowned formula 1 world champion for the second time .\nthe furore over the # 1.3 m pay package for the chief executive of marks and spencer has once again highlighted the issue of executive pay .\ncouncils across england are carrying out `` urgent reviews '' of tower blocks following the grenfell tower fire .\nmore than 100 shops in the uk have shut down since a ban on so-called legal highs came into force in may , the home office has said .\nayr united have unveiled the winner of a public vote to design a new badge .\nthe rmt union is to stage a strike on merseyrail trains on the day of the grand national , the union has said .\ntottenham 's 2-0 defeat at liverpool shows they are `` not ready to fight for the premier league '' , says manager mauricio pochettino .\nderek mcinnes says he is `` surprised '' his left-back has not been named in gordon strachan 's scotland squad .\na four-year-old girl has been released from hospital after a crash which killed her mother and three other people .\nanthony joshua 's promoter eddie hearn hopes wladimir klitschko will fight the ibf and ibf heavyweight champion .\nthe israeli city of tel aviv has been hit by a series of rocket attacks from the gaza strip in recent days .\nthe government is to publish a new plan to tackle air pollution on 9 may .\ndomino 's australia and new zealand has agreed to buy germany 's biggest pizza chain in a joint venture with domino 's pizza group .\nneil lennon 's appointment as the new manager of hibernian was a no-brainer for the scottish championship club .\ngerman industrial giant siemens and japan 's mitsubishi electric have increased their offer for french engineering firm alstom .\ngreece and its international creditors have failed to reach a deal on the country 's debt crisis .\njohnson & johnson -lrb- j&j -rrb- has been ordered by a us jury to pay more than $ 72m -lrb- # 49m -rrb- to the family of a woman who died of cancer after using its talcum powder .\nprosecutors in iran have said the most likely cause of the death of blogger sattar beheshti was `` shock '' .\nthe question of who was behind the attack on a school in peshawar that left 141 people , mostly children , dead remains unanswered .\ntwo men arrested in connection with the murder of a cambridgeshire pub owner have been released without charge .\nthe royal mint has struck more than 2,000 silver coins to mark the birth of the duke and duchess of cambridge 's first child .\nmost people think of cardiac arrest in the elderly , when they think of sports stars who have collapsed and died .\nformer conservative minister lord west has told mps that a missile was `` fired into wales '' in the past .\nrangers have signed midfielder marius zaliukas on a two-year contract .\none of australia 's most prominent politicians has announced he is taking a leave of absence from the senate .\nchris woakes will replace the injured james anderson for england 's first test against south africa in durban starting on thursday .\nflying scotsman has been unveiled in its new green and white colour scheme following a six-year restoration project .\nthe world 's oldest human being , an italian woman , has died at the age of 116 .\na 16-year-old boy has been jailed for three years for raping and sexually abusing five schoolgirls .\nmexican interior secretary francisco blake mora has been killed in a helicopter crash near mexico city .\nfor decades , philips has been one of the world 's biggest makers of light bulbs .\na londonderry woman has missed out on becoming the voice of the speaking clock .\nthe robocup kicks off this weekend - and the british team taking part in the international competition are not your average robots .\nclashes have continued for a third day between saudi security forces and residents of a town in the eastern province of qatif .\na teenager has admitted attacking and robbing a taxi driver with a machete .\na dispersal order has been issued in a gwynedd town to tackle anti-social behaviour .\nat least 19 people have been killed in an attack on tunisia 's bardo museum in the capital tunis , the prime minister says .\npeople will be able to book office space in a tree in east london for # 5 a day .\nthe uk 's top 10 best-attended sporting events attracted a combined attendance of 75 million in 2015 , according to business consultancy deloitte . deloitte said that although overall attendances for the year fell short of the record of 75 million set in 2012 , taking away the one-off effects of the olympic and paralympic games that year\nthe chief executive of royal bank of scotland -lrb- rbs -rrb- has said a vote to leave the european union would be `` bad '' for the uk economy .\nthe us has said it will release an instalment of frozen funds to help iran meet its commitments under an interim nuclear deal with world powers .\nan `` epidemic '' of zero-hours contracts is undermining hard work and family life , ed miliband has said .\nscotland 's political leaders have been making their final pitches to voters ahead of the general election on thursday .\nwork has started on a second tram line in birmingham .\npeople with long-term health conditions are more likely to develop poorer quality of life if they do not learn to live with their symptoms , a study suggests .\njimmy floyd hasselbaink got off to a winning start as queens park rangers manager with a comfortable victory over leeds .\na university has written to students warning them they could face disciplinary action over complaints about noise and drunken behaviour .\ngreat britain 's winter athletes can win six medals at the 2014 sochi winter olympics , uk sport has said .\nbritain 's land rover bar suffered back-to-back defeats at the america 's cup qualifiers in bermuda .\na 29-year-old man is in a critical condition in hospital after being attacked by two masked robbers in kilmarnock .\nsouth korean tech giant samsung electronics has forecast that its operating profit for the last three months of 2015 will miss forecasts .\nscottish liberal democrat leader willie rennie has retained his north east fife seat in the general election .\nthe us has imposed new sanctions on russia over its alleged interference in the us election .\npolice in peru have questioned a british man after he and another tourist stripped naked at the machu picchu citadel .\na judge has ruled that adnan syed , the subject of the hit us podcast serial , can seek a new trial .\na warrant has been issued for the arrest of former celtic and chelsea midfielder osman feruz .\npolice are searching for a four-year-old girl who went missing after being seen by hospital staff .\nthe foreign office has responded to a petition signed by more than 100,000 people calling for a second eu referendum .\nceltic have appointed brendan rodgers as their new manager .\na number of high-profile sporting events have been cancelled or postponed in the wake of monday 's terror attack in manchester , in which 22 people were killed .\none of poland 's most celebrated film directors , andrzej wajda , has died at the age of 88 .\nformer labour leader harriet harman has said the killing of a cardiff man in syria was `` extra-judicial '' .\nlabour and the conservatives have clashed over the future of the nhs in wales in the election campaign .\na galashiels man has appeared in court in connection with a drugs operation in the borders .\na second doonhamer 's festival has been cancelled after ticket sales fell short of expectations .\nthe number of illegal immigrants detained or arrested at the port of dover has more than doubled in a year .\npaint has been thrown through the front door of a methodist hall in west belfast .\npoland 's parliament has rejected a bill to tighten the country 's abortion laws .\nthe government is to set up a national standard for infant cremations following the shrewsbury baby ashes scandal .\narmed robbers have raided a teesside jewellery store for the second time in less than a year .\nthe head of the miss america pageant has apologised to vanessa williams for the way she was treated in the 1980s .\nindia 's central bank has kept its key interest rate unchanged in its first meeting since the controversial currency note ban .\nall photographs by amr gharbeia\na service will be held to remember the 11 men who died in the shoreham air disaster .\nstriker sam vokes says wales can take confidence from their recent performances ahead of friday 's world cup qualifier against the republic of ireland .\nrussian weightlifter anton artykov has been stripped of his rio 2016 bronze medal after failing a drugs test .\nbbc sport 's football expert mark lawrenson will be making a prediction for all 380 premier league games this season against a variety of guests .\nhundreds of people have protested in the afghan capital kabul against what they say is iran 's refusal to allow fuel exports to the country .\nzimbabwe 's president robert mugabe has said the government will enforce a controversial law requiring 51 % black ownership of companies .\nformer wimbledon champion marion bartoli has retired from tennis .\na 19-year-old man stabbed to death in a bar in south-east london has been named .\nbt 's shareholders were not the only ones to react positively to the news that the telecoms regulator , ofcom , had ruled that the company should be separated from its pension scheme .\nhundreds of people have been evacuated from the german town of deggendorf as the danube and isar rivers burst their levees .\nwhen dutee chand was named india 's athlete of the commonwealth games , it was clear she was destined for greatness .\nglamorgan one-day batsman colin ingram says he wants to play more international cricket .\nmore than half of female sports coaches in the uk believe sexism is not reported , a bbc sport survey suggests .\nthe fall in the price of oil has had a dramatic impact on the global economy .\ngarda -lrb- irish police -rrb- have carried out searches in dublin as part of the investigation into the murder of former irish international boxer eamon byrne .\nhamilton accies and kilmarnock played out a goalless draw at rugby park .\nthe chief constable of northumbria police is to retire .\na four-year-old girl has been airlifted to hospital after being attacked by her own dog .\naustralian investigators have arrived at the scene of a plane crash in melbourne that killed five people .\nthe government 's preferred route for the hs2 high speed rail line between london and birmingham has been confirmed .\nebola and the ice bucket challenge were the most popular searches on google in 2014 .\nsir andrew davis is one of the most familiar faces at the british proms at the albert hall .\na british backpacker has been seriously injured in a fall from a moving train in thailand .\nrepublican presidential hopefuls marco rubio and ted cruz are ramping up their attacks on each other 's record in the us senate .\nparents have launched a campaign against plans to ban smacking children in wales .\na complaint has been made to police after the scottish spca put down a snake thought to be one of the world 's deadliest .\na south african university has boarded up a statue of british colonialist cecil rhodes .\nmarcus rashford came off the bench to score a stoppage-time winner as manchester united beat hull city at the kcom stadium .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo looks back at some of the most memorable moments of 2013 .\nrussia 's president vladimir putin has backed a bill that would limit foreign ownership of russian media .\nsheffield 's steelworkers who worked during world war two are to be honoured with a statue .\na new class of `` network drugs '' has been discovered by researchers at the institute of cancer research .\nwelsh actress angharad rees has died after a long battle with pancreatic cancer .\nparents in the uk will have to get permission from their school before taking their children out of school for holidays , after a supreme court decision .\nguernsey won their first island games table tennis gold since 2011 as they beat sweden 's gotland 2-0 in the final at st peter port .\nfrench police investigating the kim kardashian west robbery have arrested three more people , including the victim 's sister , reality tv star khloé west .\n-lrb- close -rrb- : the ftse 100 closed at a new record high on wednesday , boosted by gains in housebuilders and itv shares .\na conservative mp has been reselected as the party 's parliamentary candidate in bristol following a `` vicious smear campaign '' .\nin october 2010 , saracens captain steve borthwick found himself in a bit of a bind .\nharlequins survived a huge scare from london irish to reach the european challenge cup semi-finals .\nmanchester city have signed valencia defender nicolas otamendi on a four-year deal .\n-lrb- close -rrb- : wall street markets closed higher on wednesday , with the dow jones closing above the 22,000 level for the first time since may .\nnorthern ireland 's deaf and hard of hearing people have called for the use of sign language to be legalised .\na group of volunteers are taking people on walking tours of edinburgh .\nformer bolton wanderers chairman phil gartside has died aged 71 .\ncraig levein says he has `` high hopes '' for head coach ian cathro despite hearts ' disappointing season .\nscientists have developed a machine that can read someone 's lips .\nthe second black box from the egyptair plane that crashed last month has been recovered from the mediterranean sea , egyptian investigators have said .\nswansea city head coach francesco guidolin is confident his side can avoid relegation from the premier league .\nthe french ambassador to tunisia has been killed in last week 's attack on a museum in the capital , tunis , which left 22 people dead .\na united nations committee has called on the northern ireland executive to `` actively promote '' integrated education in the country .\nhartlepool united have signed sunderland midfielder connor nelson and plymouth striker jordan rooney on loan . .\nthe head of the us central bank has warned the uk 's eu referendum could have `` consequences '' for global financial markets .\nthousands of native white-clawed crayfish have been released into rivers across wales in a bid to reverse the species ' decline .\nliverpool defender mamadou sakho has been cleared of doping by uefa .\nwestern sahara , a former spanish colony , is a semi-desert territory in north-west africa .\nwest bromwich albion have appointed reading director of football nick hammond as their new head coach .\nroy hodgson fears manchester united midfielder michael carrick has suffered a serious ankle injury in england 's 1-0 friendly defeat by spain in spain .\nsussex all-rounder steve magoffin has been ruled out for the rest of the season with a knee injury .\nalastair cook made his first century since november as england drew with st kitts in their final warm-up game before the first test against west indies .\nthe final demolition of the so-called jungle migrant camp in calais , france , has been completed .\na bicycle hire scheme in dumfries has failed to attract enough users in its first three years .\nsussex have appointed former all-rounder chris anyon as their new head coach for the women 's team .\na man has been jailed for three years for causing the death of a teenager in a car crash .\nbolivia has declared a state of emergency after a huge swarm of locusts swept across the country .\nmatty taylor scored twice as bristol rovers came from two goals down to draw with mk dons at stadium mk . matty taylor -lrb- bristol rovers -rrb- right footed shot from very close range to the bottom right corner .\na welsh health board has been criticised over its handling of funding for a cross - wales charity cycle challenge .\neight-year-old rohit singh spends most of his time on the banks of the gandak river in the eastern indian state of bihar , fishing for coins .\na new flag to mark the centenary of the battle of the somme has been unveiled in belfast .\na letter thanking a man for his role in the reykjavik summit in 1986 is to be sold at auction .\nedinburgh hooker alasdair dickinson says the pro12 strugglers need to win every game in their final five matches .\nthousands of people have taken part in the snowdon race , one of the uk 's biggest mountain races .\npolice have released cctv images of a man they want to trace after a 12-year-old girl was sexually assaulted in bristol .\na 15-year-old boy has been charged in connection with hare coursing in dalkeith in march .\na man has died following a three-vehicle crash in bangor , county down .\nmae prif weinidog theresa may wedi cymryd ei fel gweinidog gwladol , first minister carwyn jones yn ymgyrchu i brydain .\nmanchester flyers will play glasgow rocks in the british basketball league play-offs after finishing fifth in the bbl .\na derby ram has been promoted to the rank of lance corporal in the army .\nthe partner of footballer adam johnson has told a court he told her he had been unfaithful to other women .\nif you 've been to a conference in the past few years , you 'll have heard of the term `` event fatigue '' , according to industry analyst seema aggarwal of research firm ibisworld .\na busy city centre street has been re-introduced to traffic restrictions .\nfrank duddy ran a fish and chip shop in londonderry 's shankill area .\nit 's been a tough year for social media .\nthe number of migrants and refugees arriving on the greek island of lesbos has halved in the past week .\nbarnsley manager paul heckingbottom says he has no plans to recall elvis yiadom for tuesday 's championship game at preston .\na man has been jailed for seven-and-a-half years for attempting to murder a father-of-three .\nengland all-rounder ben stokes has been recalled to the squad for next month 's twenty20 international against pakistan .\ncourt of appeal judges in northern ireland have rejected a bid to ask the supreme court to review a ruling against a christian-run bakery over a `` gay cake '' .\nhundreds of people in the italian city of venice have staged a protest against the number of tourists visiting .\na shot has been fired at a car outside a primary school in liverpool , police have said .\never since she was a little girl , gina seifert has dreamed of becoming a beauty queen in the philippines .\nliverpool travel to stamford bridge on saturday looking to end chelsea 's 100 % start to the premier league season .\na judge in the us state of ohio has acquitted a white police officer of all charges over the fatal shooting of two black men .\nengland have been drawn against northern ireland in the quarter-finals of the world team snooker championship .\ngerman chancellor angela merkel is due to meet president barack obama at the white house on thursday .\nyoutube has changed its views limit after south korean rapper psy 's gangnam style video became the most-watched ever .\njamie murray and bruno soares beat marcelo melo and ivan dodig 6-4 6-4 to reach the final of the monte carlo masters doubles .\nthe body of a third man who died in the collapse of the former didcot power station has been recovered .\nus tv network univision has said it will no longer air the miss universe pageant , owned by republican presidential candidate donald trump .\nbritain 's chris froome extended his overall lead in the tour de france as he finished third on stage 13 .\ngeorge osborne 's budget speech was meant to be about boosting the economy .\nivory coast 's government has banned the sale and use of skin - lightening creams .\nit was one of the great sporting upsets of all time .\njose mourinho returned to chelsea as manager in the summer of 2004 .\nhosts england were knocked out of the world cup in the quarter-finals as they were comprehensively outclassed by france in wellington .\ngloucestershire were made to toil by glamorgan 's bowlers as they were bowled out for 220 on day one at the sse swalec .\nmore than # 1m has been spent on welsh government credit and debit cards in the last two years , it has emerged .\na festival is being held to mark the 500th anniversary of the birth of scotland 's most famous philosopher .\nformer ireland and lions lock paul o'connell has joined munster 's coaching staff as a consultant .\na 15-year-old girl has been raped in hertfordshire .\nhundreds of migrants have walked through the hungarian capital , budapest , after the government said it would send buses to take them to austria .\nus author jackie collins has died of breast cancer at the age of 77 , her family has said in a statement .\nschalke have signed tottenham midfielder nabil bentaleb for an undisclosed fee .\ndozens of eye operations have been cancelled at a bristol hospital after patients complained of `` discomfort '' after surgery .\na man has been arrested after a car was stolen with two children inside .\nleague two side crawley town have re-signed former bournemouth and portsmouth midfielder steve hollands on a deal until the end of the season .\nthe un security council is to hold an emergency meeting after a series of bomb blasts in syria that killed more than 100 people .\nkevin pietersen 's england career has been a turbulent one .\nsouth korea 's president park geun-hye has apologised over a corruption scandal that has engulfed her government .\na woman 's body has been found at a house in oxford .\nwomen 's super league one clubs have until the end of the transfer window to make signings .\na canadian woman has been arrested in turkey on suspicion of insulting the president .\ndavid cameron is to hold talks with the leaders of france , spain and germany as he seeks to secure a new deal for the uk in the eu .\nthe former director of public prosecutions has called for cyclists ' deaths to be treated the same as those of pedestrians .\nus president donald trump has accused former fbi director james comey of lying to congress .\nthe number of people falling victim to online holiday scams in the uk has risen by more than a quarter in a year .\nthe former home of stoke-on-trent city football club is to be turned into housing .\nasian markets were mostly lower on monday , following disappointing manufacturing data out of china .\nnon-payment of the bbc licence fee should be made a civil offence , the government has said .\n-lrb- close -rrb- : shares in asia rose on friday after a strong lead from wall street where the dow jones and s&p 500 indexes closed at record highs .\na fatal accident inquiry -lrb- fai -rrb- into the glasgow bin lorry crash is to issue its findings next week .\na new breed of celebrity book clubs is taking over the literary world .\nleicester city have agreed a deal to sign midfielder n'golo kante from french side caen .\nhibernian have appointed alan stubbs as their new head coach .\nstocks on wall street were little changed on tuesday as investors digested the release of thousands of emails from donald trump 's former campaign chairman .\na company has been suspended from accepting waste after a large fire at a recycling plant in manchester .\na former youth worker jailed for sexually abusing a boy was refused permission to become a foster carer by a council , a report has revealed .\na kent council 's twitter account has been `` hacked '' .\nthe death of a baby at a hospital in pakistan 's southern city of karachi has been described as `` heart-breaking '' by her family .\ngary neville praised his valencia side 's `` dignity '' after they held la liga champions barcelona to a 1-1 draw in the second leg of their copa del rey semi-final .\nwest ham captain joey o'brien has signed a new five-year contract with the premier league club .\na chronology of key events :\nthe burial of osama bin laden at sea was carried out in accordance with islamic tradition , us officials have confirmed to the bbc .\nan 89-year-old cyclist who had her bike stolen while she was out shopping has been given a new one after a social media appeal went viral .\nboris johnson is one of british politics ' most colourful characters .\nformula 1 is littered with imposters .\nsoutheastern has said it will compensate passengers hit by delays and cancellations caused by damage to the dover to folkestone railway .\nwelsh secretary alun cairns has said he is `` disappointed '' by the high court ruling on brexit .\nthousands of people have taken part in leicester 's street party to mark diwali .\nthe crew of the st abbs lifeboat have agreed to return their pagers after threatening to go on strike .\nthe former head of the irish catholic church , the most reverend john d'arcy , has said cardinal sean brady should resign .\nthe cost of a flood protection scheme for dumfries town centre has risen by more than # 5m .\ntwo people have been taken to hospital following a two-vehicle crash on the a55 in bangor .\nunqualified teachers are being used in state schools in england , a teachers ' union conference has heard .\nchina 's state media are largely keeping a low profile on the corruption trial of disgraced politician bo xilai in the eastern city of jinan .\nserena williams beat sister venus in straight sets to win her 23rd grand slam title at the australian open .\na us teenager who posted videos of a gun and a flamethrower being carried by drones is suing his university over his expulsion .\nthe uk 's electricity prices could rise by up to 8 % if it continues to rely on fossil fuels , according to a report .\nplans to centralise welsh-medium education in powys have been opposed by the full council .\ntwo new flights between inverness airport and amsterdam have been launched .\ntoo many schools in parts of england are failing pupils , ofsted says .\nthe case of a muslim foster family accused of discriminating against a non-muslim girl in their care has raised questions about foster care in the uk .\nus supreme court justice clarence thomas has asked a question in a case for the first time in more than a decade .\nhull city 's summer signings did not have time to make an impact in the premier league , says assistant manager billy davies .\na man has been jailed for killing a 22-year-old diver he hired to retrieve golf balls at a lake .\na woman has been arrested on suspicion of murder after a boy 's body was found in oxfordshire .\nandy murray has pulled out of an exhibition match because of a hip injury .\nyum brands , the owner of kfc , pizza hut and taco bell , has reported better-than-expected profits , helped by growth in its chinese division .\nhere are some tips to help you avoid being struck by lightning .\nhundreds of people attended a protest against plans for student accommodation in falmouth on saturday .\n`` i 'm cameron toshack and i 'm my own man '' .\nis the organisation of the petroleum exporting countries -lrb- opec -rrb- finally on the verge of making a difference to the oil price ?\nnigeria international daniel oshaniwa has joined hearts on a season-long loan deal .\n-lrb- close -rrb- : london 's leading shares closed higher on wednesday , boosted by a global rally .\nthe bbc 's new period drama war and peace has beaten channel 4 's wartime drama endeavour in the overnight ratings .\nan iguana has been living up a tree in a suffolk village for three months .\na man and a woman who were stabbed to death at a house in bradford have been named .\nmotorists are facing a rise in the insurance premium tax -lrb- ipt -rrb- .\na swansea scientist who helped the allies in world war two has been honoured by the city council .\nbritish number one johanna konta says she is `` just happy to be here '' as she bids to become the first british woman to win wimbledon for 37 years .\nthe smoking ban has `` destroyed '' communities than the closure of pits , a former ukip parliamentary candidate has claimed .\na freight train has derailed and exploded in a village in north-eastern bulgaria , officials say .\nukrainian government forces and pro-russian rebels in the east have begun observing a ceasefire , ukrainian and russian media report .\na mother-of-one left a handwritten note saying `` you know you 've got this '' in a supermarket car park .\ntony blair has said he will not '' queer ed miliband 's pitch '' over a dispute between labour and the unite union .\nthe creator of crime drama broadchurch has said he is `` emotional '' about the show 's final series .\nus republican senator john mccain has travelled to syria to meet rebel leaders , his spokesman has said .\nplans to restore alexandra palace 's grade ii-listed theatre have been unveiled .\na man who confessed to raping and sexually abusing two young girls told police his mother was `` up in the sky '' urging him to do so , a court has heard .\nscotland captain john barclay says scarlets ' pro12 final appearance reminds him of his time at glasgow warriors .\nscotland manager gordon strachan says his side 's 1-0 friendly win in poland gave them `` confidence '' ahead of their next game .\nred bull hope mercedes ' reliability problems will help them catch sebastian vettel and daniel ricciardo in the formula 1 title race .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo looks at how lie detector tests could be used in africa .\na circus elephant that escaped from its enclosure in southern germany has attacked a man , leaving him with facial injuries , police said .\nfriends of a british man allegedly murdered by his wife in india have called for a proper investigation .\nthree women have been charged in connection with a suspected charity fraud in cardiff .\na non-league football team has returned to its home town for the first time in nine years .\nthe us and uk have called on the syrian government to allow air drops of humanitarian aid to besieged areas .\nhearts have set a target of raising # 3m for the club 's main stand project over the next three years .\nformer wales rugby captain sir gareth edwards has been awarded a knighthood .\na parish council has vowed to fight plans to close a sports centre .\ndavid cameron is to defend his `` compassionate conservatism '' as the row over iain duncan smith 's resignation intensifies .\nislamic state -lrb- is -rrb- militants in egypt 's sinai peninsula say they have shot down an egyptian coastguard vessel .\nnhs staff are being asked to prove they are human before accessing google , the bbc has learned .\nindia 's olympic boxing champion mary kom has welcomed bollywood director sanjay bhansali 's plan to make a film on her life .\na woman with learning disabilities who has given birth to six children is to be sterilised , a high court judge has ruled .\nan mp has been reunited with a `` lost '' toy bunny she found outside the palace of westminster .\nleague one side gillingham have signed queens park rangers striker hiram emmanuel-thomas on a season-long loan deal .\nmeat inspectors in the uk are opposing new rules which mean they will no longer be able to cut open pig carcasses to check for disease .\ncarlisle united have signed queens park rangers midfielder brandon comley on loan until the end of the season .\nalex cuthbert will be `` very lucky '' to retain his place in wales ' squad for the world cup , says former captain gavin james .\nthe sister of a girl found dead in a canal 20 years ago has made an emotional appeal to find her killer .\nsaudi arabia 's decision to create a so-called `` morality police '' is the latest example of the growing influence of hard-line islam in the gulf state .\nleyton orient midfielder scott kashket has signed a new one-year contract with the league two club .\ntwo manchester united fans have been arrested at old trafford before saturday 's game against arsenal .\na man has been stabbed in the chest during a fight at a gig at glasgow 's sse hydro .\ncardiff city manager neil warnock expects to hold talks with midfielder peter whittingham about a new contract before the start of the new year .\ndenmark 's right-wing bloc has won the most seats in the general election , but not enough to form a government .\nchildren 's charity kids company was aware of allegations of sexual abuse at one of its sites , the bbc has learned .\ngoogle is developing a blood test that can detect cancer .\nthe population of northern ireland is projected to rise by just over 100,000 over the next decade .\nus car giant ford has reported a big jump in first-quarter profits , helped by strong sales in europe and north america .\na woman has died following a road crash in county londonderry .\nat least two people have been killed in clashes in the lebanese capital , beirut , officials say .\nformer bolton wanderers striker dean holdsworth has agreed a deal to buy the club , reports bbc radio manchester .\nthe a470 and a483 have been closed following separate crashes in powys .\njeremy corbyn 's `` marrow moment '' at the labour conference was a reminder that , as the leader of the labour party , he has a lot to live up to .\nmatch report to follow .\nwe stood in that queue for three hours or more ...\nthe us has imposed sanctions on venezuela 's vice-president over his alleged role in the illegal drug trade .\nthe world 's first fully operational tidal array has been installed in shetland .\nnorth korea says it has successfully carried out a hydrogen bomb test .\ntottenham have signed spain international striker roberto soldado from valencia for a club-record fee .\nthe third and final series of bbc one comedy miranda has ended on a high note .\nthe met office has issued an amber warning for rain in parts of northern ireland .\nrochdale have re-signed paul mullin on a two-year deal following a successful trial period .\njoe leach and ed barnard hit half-centuries as worcestershire fought back on day three against leicestershire at grace road .\nget inspired is bbc sport 's new website which aims to inspire you to get active .\nqpr captain rio ferdinand has been charged with misconduct by the football association following saturday 's 1-0 home defeat by tottenham .\nthe specials have paid tribute to their former drummer brad bradbury who has died at the age of 60 .\na man sexually abused as a child at a catholic school in east yorkshire has been awarded damages .\nanthony joshua says saturday 's world heavyweight title fight against wladimir klitschko is the `` defining fight '' of his career .\nit 's a busy day in northern ireland 's papers .\na man who absconded from a mental health unit where he was detained for stabbing his neighbour to death has handed himself in .\nthe un security council has strongly condemned north korea 's launch of a long-range rocket .\nst mirren have signed striker david clarkson on loan from motherwell until the end of the season .\na man has appeared in court charged with the kidnap of a four-year-old girl .\ntwo engineering firms have announced plans to create hundreds of jobs in renfrewshire .\na black woman has said she was refused entry to a nightclub in nottingham because of her skin colour .\na freckle on the hand of a paedophile led to the arrest and conviction of one of the world 's most prolific paedophiles , the national crime agency has said .\nthe german media group axel springer has bought a majority stake in us news website business insider .\nthe number of centenarians in the uk is set to double in the next 20 years , according to official estimates .\na russian diplomat has been accused of beating a mongolian rapper who wore a swastika on stage during a concert .\njournalists at australia 's fairfax media have begun a one-week strike in protest at job cuts .\nit 's been the greatest campaign ever .\nnorthern ireland 's finance minister has said there is no prospect of an early assembly election .\nwhen it comes to strategic defence reviews , the armed forces are notoriously slow to predict the next conflict .\na vicar has been arrested on suspicion of sexual activity with a child .\nhacking the nerves in the body to control disease could be a reality within the next decade .\ndavid goodwillie says he has not given up hope of playing for scotland .\npope francis has used his christmas message to call for a more merciful world .\na drug already used to treat skin cancer reactivates latent hiv in the body , us researchers say .\nblackburn rovers defender hope akpan has been charged with violent conduct by the football association after pushing a referee .\nceltic manager ronny deila says qualifying for the europa league group stages would be the biggest achievement of his career .\nsony pictures has been the victim of a massive hack attack .\none of scotland 's oldest sporting rivalries takes place this weekend - the glasgow-edinburgh university boat race .\na 15-year-old girl was raped and murdered by a man she met on facebook , a court has heard .\nkieron cadogan scored twice as sutton united eased to victory over north ferriby united .\nkidderminster harriers have appointed john eustace as their new manager following relegation from national league south .\ndavid cameron tried to persuade angela merkel to give the uk concessions on immigration , bbc newsnight has learned .\nswansea city have appointed alan curtis as their new loan player manager .\nrecord numbers of people are expected to take part in christmas day swims across the uk .\na hospital trust in cornwall has declared a `` black alert '' for the second time this year .\nthe scottish ukip leader , tom coburn , has said he would `` do his best '' to lead the party .\nregulators are investigating former hbos executives over the collapse of the bank during the financial crisis .\nenniskillen rower alan campbell has won a silver medal in the men 's single sculls at the european rowing championships in racice .\ngoogle is to stop showing long unskippable 30-second adverts on its youtube video site .\nemmerdale , coronation street and eastenders were the big winners at this year 's inside soap awards .\nthree tiny marmoset monkeys stolen from a zoo in australia have been found safe and well .\nbenik afobe has been named in the democratic republic of congo squad for the 2017 africa cup of nations qualifier against angola next month .\ntalks over the future of bradford bulls have broken down .\nderek mcinnes deserves more recognition for his `` phenomenal '' work at aberdeen , says former ibrox striker steven thompson .\nnewcastle united midfielder jonas gutierrez says he feels `` born again '' after recovering from testicular cancer .\na judge has ordered the media not to report the name of the man accused of killing 12 people at a colorado cinema .\na flood-hit road in somerset has reopened after being closed for more than a week .\na landmark building in swansea city centre is to be demolished as part of plans to move the city council .\ndawid malan hit an unbeaten 150 as middlesex beat glamorgan by seven wickets at lord 's to reach the one-day cup semi-finals .\ncanadian police have arrested 10 people suspected of trying to travel to syria to join so-called islamic state -lrb- is -rrb- .\na man has been arrested in connection with the death of a man in coleraine .\nthe organisers of today 's world yoga day in the indian capital , delhi , were n't short of superlatives .\noldham athletic 's league one game against southend united has been postponed because of a waterlogged pitch .\nit 's been a day of mixed fortunes for the pound and the stock market .\na group of soldiers who refused to stand up during a parade have been sentenced at a court martial .\na murder investigation has begun after a man 's body was found on a road in derbyshire .\nthe isle of wight 's conservative mp has survived a vote of no confidence in him by party members .\noil and gas firm bg group has reported a sharp fall in first quarter profits .\njonathan silberman has won the samuel johnson prize for non-fiction for his book on autism .\na woman has told the arlene arkinson inquest how she was sexually assaulted by the man later convicted of her murder , robert howard .\neight children who were taken into police custody during loyalist protests in north belfast have received compensation payments .\nas a child , othman was forced to leave his home in northern iraq because of the collapse of mosul dam .\na fire at a wood recycling plant in bridgend county has been brought under control .\nconor henderson has signed a new one-year contract with league two side crawley town .\nbusinesses will have to pay an apprenticeship levy of 0.5 % of their wage bill , the chancellor has announced in his spending review .\nchinese president xi jinping has arrived in hong kong to mark the city 's 20th anniversary of its return to china .\nthe woodland trust are calling for more trees to be protected in the uk .\ntwo men have been charged with planning a terror attack in sydney , australian police say .\nbrighton missed the chance to go top of the championship as they were beaten at huddersfield .\na woman has been jailed for life for murdering her partner after an argument over missing money .\ntottenham 's moussa sissoko has been banned for four games for elbowing bournemouth 's harry arter .\nnovak djokovic and his doubles partner viktor troicki were beaten in the first round of the olympics .\nalex baptiste 's second-half header was enough to give preston victory at norwich city .\nscientists believe dinosaurs were able to walk the earth 100 million years ago because they were able to cross the continent of antarctica .\nthe global food system is at risk from climate change , the un has warned .\nwelsh secretary stephen crabb has said wales should be `` central to the debate '' on devolution .\na three-year-old boy in new zealand has won a nz$ 1m -lrb- $ 750,000 ; # 450,000 -rrb- bonus bond .\nthe future of lydney harbour in the forest of dean has been secured .\nscientists have estimated that the earth 's surface holds more than a quarter of a trillion litres of water .\na 17,000-tonne drilling rig has run aground on a beach on the isle of lewis .\nviolence has broken out in several parts of london for a second night .\nyoung people in northern ireland have been giving their views on how stormont should be run ahead of the assembly election .\nnational league side alfreton town have signed york city midfielder david mooney on loan until january .\nfour northern ireland rowers have qualified for the finals of their respective boat classes at the european rowing championships in racice .\nthe cost of free childcare in wales could rise significantly if more parents take up the offer , a report commissioned by the welsh government has said .\nthe family of a teenager who died in a crash in gwynedd on sunday have said they are `` beyond heartbroken '' .\nthe government 's eu brochure leaflet is available online , where the world can pick it apart , but when you retrieve it from your doorstep , take a glance at its contents .\nireland fly-half johnny sexton will start for the british and irish lions against the maori all blacks on saturday .\ntenants in southampton are being forced into unregulated rented homes because of a shortage of affordable homes , a charity has warned .\nmanchester united manager jose mourinho wants to make major changes to his squad in the january transfer window .\nthe speaker of the texas house of representatives has introduced a resolution urging people not to confuse the chilean flag with the state 's flag .\nbritain 's andy murray beat argentina 's juan martin del potro to win his second olympic men 's singles gold medal in rio .\na second kent council has suspended its own litter wardens after a bbc panorama investigation found officers were handing out thousands of pounds worth of fines .\nwales scrum-half mike phillips has been suspended by the national rugby union after an incident in cardiff .\nfour tourists who were jailed in malaysia for stripping off on a sacred mountain have been released .\none of the alleged victims of a child sex ring in rotherham told her mother she was being raped , a court has heard .\na world war two veteran who survived the nazi death camp at auschwitz says football played by british prisoners of war kept him sane .\nsuspected islamist militants in bangladesh have hacked to death a us-bangladeshi gay rights activist and his friend .\na study involving more than 100,000 people has identified genetic links to chronic pain and depression .\nworcestershire batsman tom shantry has signed a new two-year contract with the county .\nthe invention of the car , the telephone and the computer came from the inventors themselves .\nbuy-to-let landlords will have to pay an extra # 5,520 a year in stamp duty , the chancellor has announced .\nvictims of clerical child abuse and former residents of magdalene laundry-style institutions in northern ireland are excluded from the remit of an inquiry into historic abuse .\ndefender alex scott has signed a new contract with women 's super league one club arsenal ladies .\nluis suarez has been named the world 's most valuable player for the third year running at a value of # 149m .\nmore than 100 syrian opposition figures have met in the capital , damascus , for the first time since the start of the uprising .\nthe peruvian army says it has captured two members of the maoist shining path rebel group .\na 16-year-old boy has been charged with the rape of a 15-year-old girl in manchester .\nlast week a young woman in france killed herself on a train , after live-streaming her final moments on the app periscope .\nthe boss of a private hospital has told mps he is `` disappointed '' the health watchdog did not change its report on the facility .\nchina 's president xi jinping has said his country will not `` close its door '' to the world .\nireland all-rounder becky shillington has retired from one-day international cricket after her side 's defeat by south africa .\ngreat britain 's nethaneel mitchell-blake has become only the second briton to run under 20 seconds for the 200m .\nsunderland have sacked adam johnson after he was found guilty of one count of sexual activity with a 15-year-old girl .\na woman jailed for defrauding a south of scotland castle out of more than # 110,000 is to appeal against her conviction .\nan independent review is to be carried out into the training of nursery staff after the death of a baby at a greater manchester school .\nburnley 's michael keane has been called up to the england squad as a replacement for the injured glen johnson .\na court in azerbaijan has jailed prominent human rights activist leyla yunus for seven years for tax evasion .\nchelsea have been charged by the football association for failing to control their players in saturday 's derby against manchester city .\nformer us football star and actor oj simpson is seeking a new trial in a las vegas court after being convicted of armed robbery and kidnapping in 2008 .\nsuspected boko haram militants in north-eastern nigeria have killed at least 22 people in two separate attacks .\ned miliband has said he will `` leave the landscape gardening to other people '' after his election pledge stone was ridiculed online .\nthe sight of rainbow-shaped clouds in the sky has been captured on camera in parts of scotland .\nedvald boasson hagen won his second stage of the tour de france with victory on stage 12 .\ntottenham striker harry kane should be included in roy hodgson 's england squad , says danny murphy .\nthe mother of former olympic mountain bike champion chris boardman has died in a crash .\nmanchester united manager jose mourinho says some of his players `` feel the pressure and responsibility too much '' .\nwhen you think of pharmacists , the first thing that comes to mind is the dispensing of medicine .\nnorwich city manager alex neil says his side deserved to win their 1-0 victory over ipswich town .\nliverpool eased past championship side burton albion to reach the fourth round of the fa cup .\ncameras in three denbighshire towns are to be switched to a network in cheshire in a bid to cut crime .\ncardiff city made a pre-tax loss of just over # 2m in the year after relegation from the premier league .\na giant panda at a hong kong zoo is due to give birth to a cub on monday .\na man has been arrested on suspicion of murder after a pensioner was stabbed to death in rhondda cynon taff .\nstevenage missed the chance to go top of the league two table as they were held to a goalless draw at cambridge united .\na us court has ruled in favour of a university in a patent dispute with apple .\nbarcelona defender gerard pique says there is `` room for improvement '' after they were knocked out of the copa del rey by real madrid .\na man has been arrested after a stolen pick-up truck was abandoned during a police chase .\nthe funeral of leeds rhinos president harry jepson has taken place .\nguy martin has pulled out of this year 's ulster grand prix at dundrod because of injury .\nthe ministry of defence -lrb- mod -rrb- is to sell 13 military sites for more than 12,000 new homes .\nformer england left-back ashley cole has signed for aston villa on a one-year deal .\nswindon town striker nathan byrne has left the club before saturday 's 1-0 defeat at northampton town .\nirish prime minister enda kenny has announced that he will step down as leader of the fine gael party next week .\nus president-elect donald trump has named south carolina governor nikki haley as us ambassador to the united nations .\nthe first funerals have taken place in the argentine town of salgar , which was hit by a landslide on monday .\nworld number one angelique kerber survived a scare to beat american qualifier irina falconi in the first round at wimbledon .\nformer taoiseach -lrb- irish prime minister -rrb- bertie ahern has said a hard border would have to be re-introduced after the uk leaves the eu .\na mural by the street artist banksy is to be sold at auction after it was removed from a lot in the us .\nthe us embassy in dublin feared the quiet man would be regarded as `` a rollicking farce '' in ireland , newly released documents show .\nsomalia 's militant islamist group al-shabab has denied that a us air strike killed more than 150 fighters .\npoland and ukraine can improve for the next european championship in france in 2016 , says polish football federation president krzysztof pohorecki .\nactor and comedian kevin hart is to release his first album as a rapper .\narchaeologists have uncovered the remains of an iron age dwelling in wiltshire .\nthe number of people living with diabetes in wales has risen by more than 10 % in the past decade , a charity has warned .\na mystery photographer who took a `` last photo '' of a dying woman has been urged to come forward by the national trust .\nmore than 90 new jobs are to be created at the belfast office of financial services firm axiom .\nsam baldock 's first-half header was enough to give brighton victory over wolves .\nlondon welsh have been disqualified from the british & irish cup because of `` uncertainty '' over the club 's future .\nzinedine zidane has been cleared to coach in spain .\nchildren who took part in a landmark health survey 50 years ago are being asked to take part in a new study .\nfive men , including radical preacher anjem choudary , have been arrested on suspicion of encouraging terrorism .\ntwo plaid cymru ams are hoping to win a vote in the welsh assembly to ban letting agency fees .\nthe mother of paralympic torch bearer l/bdr ben parkinson has appealed to facebook to allow him to have more friends .\nscottish labour 's ian murray has retained his seat in the general election .\na chameleon has been put down after being found in a cardiff park .\nbombardier has completed the first flight of its new cs300 passenger jet .\nthe lack of high-speed broadband in wales is `` very surprising '' , a leading technology expert has said .\nthe pensions regulator , the pensions regulator , has created a life-size pig to highlight the importance of workplace pension plans .\npolice officers in england and wales are being paid more than # 1m a year for working overtime , the bbc has learned .\na suicide attack on the national directorate of security -lrb- nds -rrb- compound in the afghan capital , kabul , has ended .\ncastleford tigers prop adam garbutt has apologised after being sent off in sunday 's super league defeat by st helens .\njessica ennis-hill 's coach toni minichiello has witnessed it all .\neastenders has revealed the first new character to join the soap in more than a decade .\npolice acted `` proportionately and reasonable '' in the case of a man who died after being restrained by members of the public , the police watchdog has found .\ncardiff city striker kenwyne jones is a doubt for sunday 's championship trip to fulham .\ntunnelling for the new east-west crossrail line in london has reached its first milestone .\nthe new operator of south western rail has been accused of reneging on a promise to keep a second member of staff on trains .\nbriton max chilton dedicated his win in the indy lights race in iowa to former team-mate jules bianchi .\nthe founder of a scottish online tyre retailer has sold his company to the world 's biggest tyre maker , michelin .\nwigan warriors captain matty smith says his side can use the momentum gained from friday 's comeback win at warrington to secure a home super league final .\nnew york 's federal court building is a few blocks from madison square garden , the home of the new york knicks .\na 70-year-old woman has run her final london marathon .\na new cricket helmet has been developed following the death of australia international phillip hughes in 2014 .\nzheng he , the ming dynasty 's first ambassador to africa , is back in the spotlight .\na doctor accused of the manslaughter of a 12-year-old boy did not ask enough questions about his illness , a court has heard .\na hiatus in global temperature growth may be due to a cycle in the oceans , a study suggests .\nclimate change and natural disasters could threaten the global food trade , a report has warned .\nthe greek government has decided not to take britain to court over the return of the parthenon marbles .\ncardiff city director of football wally dalman says manager russell slade has the full support of the board .\na councillor has lost an appeal against his suspension for sending `` inappropriate and offensive '' information to a grievance panel .\ncyprus 's parliament is due to vote on a bailout deal agreed with the eu and international monetary fund on sunday .\nwhen tony smith joined wasps from leeds rhinos in the summer of 2013 , he was one of a number of high-profile rugby league players to switch codes .\na us judge has ordered the secret service to release the names of visitors to president donald trump 's mar-a-lago golf resort .\nbastian schweinsteiger has been named in manchester united 's squad for the europa league .\ncanada post says it will stop delivering letters directly to the home as part of efforts to save money .\ncentrist french presidential candidate emmanuel macron has won the support of a centrist rival who will not stand in next month 's elections .\naustralian prime minister malcolm turnbull has defended his country 's controversial asylum policy , amid calls to end detention camps on nauru .\nat christmas , it 's more important than ever that wales spreads the message of togetherness and unity , the first minister has said .\nthe next stage of the scotland bill has been delayed to allow further talks between the scottish and uk governments over the fiscal framework .\na new waste-to-energy power station has been given the go-ahead .\nactivity in china 's manufacturing sector contracted at its fastest pace in more than two years in july , according to a closely watched private survey .\na former minister in the western indian state of gujarat has been sentenced to death for her role in the 2002 anti-muslim riots .\na memorial service has been held in guernsey to mark the 75th anniversary of a world war two air raid .\nedinburgh zoo has said its female giant panda tian tian could give birth at the end of the month .\ntwo italian senators have been suspended for a day for making offensive gestures towards women during a debate .\nall pictures are copyrighted .\nmicrosoft 's research and development -lrb- r&d -rrb- strategy has long been criticised .\npeople have been warned not to eat shellfish found to be contaminated with toxins .\nchina 's environmental ministry has issued its second wave of `` red alerts '' for air pollution in 10 cities across the country .\nbeyonce has been named the world 's highest-paid artist for the second year running .\nthe uk arms trade with saudi arabia is lawful , the high court has ruled .\nuk interest rates have been held at 0.25 % for another month by the bank of england .\nhave you ever wondered what it is like to have six siblings who all play the same instrument ?\nryan macniallais scored two goals as donegal beat fermanagh by seven points in the ulster sfc quarter-final at ballybofey .\nisrael 's cabinet has voted to decriminalise the possession of small amounts of marijuana .\ntelecoms provider talktalk has reported a fall in annual profits due to the cost of last year 's cyber attack .\nfrench rider franck petricola has died in a crash during a practice session at the isle of man tt .\ntwo nurses have been jailed for wilfully neglecting stroke patients .\na family of 12 from luton are believed to have travelled to syria , the bbc understands .\ngreat britain will host the european judo championships for blind and visually-impaired athletes in july .\ntwo new buildings are being built in china , which will help to filter out the pollution in the air .\na vicar 's son who tried to groom a 15-year-old girl online has been jailed for 12 years .\njuan mata inspired chelsea to a hard-fought win at sunderland .\nformer hillsborough match commander david duckenfield is one of six people charged over the 1989 disaster .\nandrew shinnie 's injury-time winner gave aberdeen the advantage going into next week 's second leg of their europa league qualifier against apollon limassol .\nshops have been looted in western venezuela during protests over food and medicine shortages .\na peer has been found guilty of posting a facebook message offering # 5,000 to anyone who ran over gina miller .\nthe us says north korea has forced kenneth bae back to the labour camp where he has been detained for 15 months .\nchris wakely and andy keogh hit centuries as northamptonshire took control against leicestershire at wantage road .\nat a russian restaurant in the turkish capital , ankara , locals were struggling to come to terms with the murder of their colleague .\nsix people have been arrested in a series of drugs raids in gloucester and cheltenham .\nthe general election campaign in northern ireland has been a colourful affair .\nospreys head coach matthew rees says his side must focus on the six nations after losing 26-17 to exeter chiefs in the european champions cup .\nthe russian state was involved in the murder of ex-russian spy alexander litvinenko , the public inquiry into his death has heard .\nthe international olympic committee -lrb- ioc -rrb- says it is investigating the protest by ethiopian runner feyisa lilesa at the rio olympics marathon .\namerican phil mickelson shot a nine-under-par 63 to take a one-shot lead after the first round of the open at royal troon .\na spate of suspected heroin-related deaths in south wales could be linked to the same batch , police have said .\ntwenty-two men have been rescued from suspected slavery offences at chinese restaurants in the west midlands .\none in eight people in the uk are too ill to work before they reach the state pension age , the tuc has said .\na tipper truck has crashed into the front of a house .\na pilot had to make an emergency landing after reports of smoke in the cabin on an easyjet flight .\na former celtic kit man is to stand trial accused of indecently assaulting a boy .\nclashes have broken out in indian-administered kashmir on the anniversary of the death of a popular militant commander .\na man has been arrested on suspicion of murdering a woman from milton keynes who has been missing since sunday .\na # 1m grant from the heritage lottery fund -lrb- hlf -rrb- has been announced as part of plans for a dinosaur museum in a quarry .\njeremy corbyn has set out his transport policy if he wins the labour leadership contest next month .\na west london mother has won a legal battle against her local council after it ordered her to send her son to school .\ndemolition of a former hospital in denbighshire has been delayed because seagull chicks are nesting on the roof .\na 16-year-old malaysian boy has had his parasitic twin foetus removed , state media report .\na man arrested after 10 people were hospitalised after taking the drug mdma in greater manchester has been released on bail .\nluton town winger paddy mccourt has left the league two club to return to northern ireland .\ncharlie gard is a baby who has been at the centre of a legal battle between his parents and his doctors .\nst johnstone midfielder steven craig has signed a new two-year contract with the scottish premiership club .\nthere is `` insufficient evidence '' to support allegations of electoral fraud against an mp , the crown office has said .\na lorry driver who caused a pile-up which killed a three-year-old girl and her unborn baby has been jailed for seven years .\nguinea were knocked out of the under-20 world cup in south korea after a 6-0 defeat by argentina .\ntyphoon chan-hom has made landfall in eastern china 's zhejiang province , bringing heavy rain and strong winds .\nit 's one of the biggest nights in the music industry .\nmore than 1,000 homeless people were referred to a charity last year because they could not find a place to live .\nformer england batsman paul downton has been appointed as the england and wales cricket board 's new managing director .\none direction have reassured fans that the band are `` not splitting up '' .\nthe body of kim jong-nam , the murdered half-brother of north korean leader kim jong-un , has returned to pyongyang , china says .\na man in his 50s has been left badly shaken after a gang of men forced their way into his home in west belfast .\nit is 100 years since the start of one of the biggest battles in world war one .\nthere is little difference in the effectiveness of academy trusts and local authorities when it comes to improving school standards , analysis suggests .\nthe financial results of the nhs in england will not be published until after the general election on 8 june , the bbc understands .\na frenchwoman who was kidnapped in yemen in february has returned to france .\nwales is bidding to become uk city of culture for the first time .\nuk air strikes against so-called islamic state -lrb- is -rrb- in iraq have killed 1,306 militants , the government has said .\nsri lanka 's rangana herath has retired from international twenty20 cricket .\npolice are treating the deaths of a mother and her seven-year-old son as suspicious .\na controlled explosion has been carried out on a suspected unexploded mine found on the river gourock in inverclyde .\na residential building has collapsed in the western indian city of mumbai -lrb- bombay -rrb- , killing at least 19 people , police say .\na man has died after his car hit a lorry in sittingbourne .\nthe sight of a smear on the touchscreen of your mobile phone , tablet or computer is enough to make you want to throw it away .\nan outbreak of measles has been confirmed at a nursery school in neath port talbot .\nlevels of violence at hmp bristol are higher than in similar prisons , inspectors have said .\naberdeen 's jonny hayes has signed a new two-and-a-half-year contract with the scottish premiership club .\nthe president of the breakaway georgian region of abkhazia has fled the capital sukhumi after days of protests .\nthe first phase of a new 20mph speed limit in edinburgh has been approved .\nsaudi arabia has announced plans to develop a red sea tourist zone , with a number of theme parks and luxury hotels .\nnewport county chairman peter foxall says the decision to sack manager graham westley was based on `` all factors '' .\nvictims ' rights are being ignored in england and wales , the victims ' commissioner has said .\nthe deputy minister of guernsey 's housing department has resigned .\nsyrian rebels and their allies have captured the town of al-rai , a stronghold of so-called islamic state -lrb- is -rrb- , activists say .\na council has been ordered to pay # 60,000 to a man who was sexually abused by a former employee .\nhow long will it take for the investigation into the manchester attack to be concluded ?\njenson button is a leading candidate to replace valtteri bottas at williams next season , bbc sport has learned .\nan al-qaeda trained terrorist who plotted a bomb attack in manchester has been found guilty by a jury in the us .\na woman who stole more than # 500,000 from her employer has been ordered to pay back more than # 600,000 .\nfalkirk manager peter houston has dismissed reports sunderland are interested in teenage defender tony mcmahon .\ngatwick airport has said it will make a series of guarantees if it gets the go-ahead to build a new runway .\na texas grand jury has decided not to indict anyone over the death of sandra bland , who was found dead in a jail cell .\nfunding cuts to councils in england have not hit all local authorities equally , the public accounts committee has said .\nroy hodgson 's england side were held to a goalless draw by slovakia in their final euro 2016 qualifier in trnava .\narchaeologists have unearthed what they say is the remains of a man who died from the bubonic plague .\nbritish banker rurik jutting has been found guilty of murdering two women in hong kong .\nlibya 's un-backed unity government has been backed by the us to fight so-called islamic state -lrb- is -rrb- .\ngreat britain 's greg grabarz won bronze in the high jump at the world championships in beijing .\nthe use of urinary catheters in hospitals is putting patients at risk of infection , a leading expert has warned .\ngreat britain 's omar yafai won the vacant wba super-flyweight title with a unanimous points victory over jose pedraza in manchester .\nbombay house is one of india 's most famous buildings .\na man who stole a roller-coaster to get home from a night out in dumfries has been banned from driving for two years .\nsri lanka has rejected a un call for a special court to investigate war crimes committed during the civil war with tamil tiger rebels .\neight crew members seized by pirates off the coast of somalia have been released without a ransom , officials have said .\na pro-independence blogger has been arrested on suspicion of online harassment .\nrupert murdoch 's news corp has reported a loss for the three months to the end of september as it took a hit from its australian newspaper business .\nchloe grace moretz has become the latest star to speak out against body shaming .\na six-year-old girl injured when a bouncy castle she was playing on blew away is to have surgery .\nit 's been more than a year since myanmar 's rohingya muslim minority were forced from their homes by buddhist mobs .\na number of roads in county down have been closed due to flooding .\nindia 's economy grew at its slowest pace in more than three years in the january-to-march quarter .\ngoalkeeper luke blackman made his third penalty save of the season as wycombe held blackpool to a goalless draw at adams park .\nmore than 100 jobs have been lost following the collapse of a torfaen it firm which received # 1m from the welsh government .\na man has been questioned by detectives investigating the murder of notorious criminal john `` goldfinger '' palmer .\nthe uk should renew its trident nuclear weapons system , theresa may has said .\nsmoking may increase the risk of schizophrenia , according to uk researchers .\ngreat britain 's adam peaty won his second gold medal of the world championships with victory in the 50m breaststroke in budapest .\nexeter chiefs head coach rob baxter has praised the form of full-back olly woodburn following the chiefs ' european champions cup win over stade francais on friday .\nbotswana is one of africa 's richest countries , thanks in large part to its vast diamond reserves .\na mother and her 13-year-old daughter have spoken of their anger at a far-right activist they confronted over his views .\nthe fate of two bottles of whisky salvaged from a sunken ship immortalised in the novel whisky galore could be revealed .\nin the southern gaza strip city of rafah , hundreds of new homes are being built in the name of sheikh hamad .\nukraine 's president says his forces have retaken control of the strategic eastern town of debaltseve from pro-russian separatists .\na doctor in edinburgh has admitted persuading his wife to take a cocktail of heroin in a bid to save their marriage .\nthe nhs in england could save # 500m a year by cracking down on so-called `` health tourism '' , the government has claimed .\nthe fa and english football league are to donate a share of proceeds from the community shield to the victims of the grenfell tower fire .\ncaledonian macbrayne and the rmt union are to resume talks in a dispute over ferry workers ' jobs and pensions .\npoland 's state forests have been devastated by severe storms .\nthe west end production of matilda has had to cancel two performances after one of the cast members ' voices deteriorated .\nthe head teacher of a school in bangladesh who was forced to perform a hindu religious ritual has been sacked by the government .\none person has been taken to hospital after a tanker overturned on the m4 near cardiff .\nmore than 1,000 runners have taken part in a `` boring '' ultramarathon in hong kong .\namerican businessman frank mccourt says he has agreed a deal to buy french ligue 1 side marseille .\nlloyds banking group 's return to private ownership is a significant moment for both the bank and the taxpayer .\nmanchester city winger jesus navas has joined spanish la liga side celta vigo on a season-long loan deal .\na man has been arrested on suspicion of murder after a man was stabbed in croydon , south london .\nscientists in the uk have launched a new service to map the earth 's shifting tectonic plates .\naid workers in vanuatu have begun to reach some of the islands hit by cyclone pam .\nukrainian officials claim that far-right parties did not win any seats in last month 's parliamentary election .\npolice in the republic of ireland are continuing to investigate the movements of one of the london terror attackers who lived in dublin .\nleicester captain wes morgan is available again after missing the win over manchester city with a hamstring problem .\nthe uk 's anti-slavery commissioner has said he is `` extremely concerned '' about the number of nigerian women being trafficked to the uk .\nfive men have been sentenced to death in chad for the gang rape of a 15-year-old girl in january .\nformer north wales police chief john anglesea 's lawyers are to appeal against his conviction for sex offences against two boys .\nthe us aerospace company , boeing , has successfully tested a laser weapon that can be carried on a belt .\nintelligence services in the uk need to do more to recruit women .\nnour 's family was forced to leave their home in the syrian city of aleppo by the so-called islamic state -lrb- is -rrb- .\ndisgraced cyclist lance armstrong has pleaded not guilty to all charges in a lawsuit brought by the us government .\n-lrb- close -rrb- : shares in standard chartered fell by more than 10 % after the bank announced plans to raise funds and cut jobs .\nthe aa has said it will review its car insurance prices in the light of a rise in the tax paid by drivers .\na bus lane in the centre of blackpool is to remain in place until april .\na koala that was hit by a car in australia and trapped in its engine grill has been nicknamed `` bear grylls '' .\nthe musical adaptation of sue townsend 's adrian mole has opened .\npolice in northern ireland have said they have seized a `` significant '' number of weapons in a county antrim forest .\nwhen mark dodson , the chief executive of the scottish rugby union , and steve browne , the chief executive of the irish rugby football union , set out their vision for the future of the pro12 , they did so with a mixture of optimism and trepidation .\nmore than 100 pupils have been sent home from a school in bristol for breaking uniform rules .\nu2 have played their biggest ever gig in the republic of ireland .\naustralia beat wales to secure top spot in pool a of the world cup .\na police officer who thought his abuser had died has been jailed for child sex abuse .\non friday afternoon , a man drove a stolen lorry into a crowd of pedestrians in central stockholm , killing four people and injuring 15 others .\nthe us military says it has shot down two missiles fired from yemen at a us warship in the red sea on sunday .\nlionel richie has announced he will open a residency at the mgm grand in las vegas .\nqueen of the south twice came from behind to earn a point against falkirk .\nspain 's joaquim rodriguez has announced he will retire at the end of the season .\na five-year-old boy is in a serious condition in hospital after a motorcyclist died in a collision with a car in east london .\nblackberry has announced a new android-powered smartphone .\na scottish paralympian has revealed he has been given the all-clear from a brain tumour .\nmikhail khodorkovsky , once russia 's richest man , says he is considering seeking asylum in the uk because he believes he is a threat to president vladimir putin .\ngreenock morton manager jim duffy is targeting a `` monumental upset '' in sunday 's scottish cup tie at ibrox .\na vj day service has been held at portsmouth cathedral .\ngreat britain 's jack burnell was disqualified from the men 's 200m freestyle final as south africa 's thomas weertman won gold .\nlondon irish prop moray low has been banned for two weeks after pleading guilty to striking bath 's luke hamilton .\nmillwall 's league one play-off hopes suffered a blow as they were held to a goalless draw by walsall .\nthe number of children contacting a charity for help with online bullying has more than doubled in the past year , figures show .\ncharges have been dropped against a us woman accused of child sex offences in wrexham .\nathletics has a problem with `` four , five or six nations '' , says uk anti-doping chairman ed warner .\npope francis has described the mass killing of armenians by ottoman turks during world war one as `` genocide '' .\na drug that reduces the risk of hiv infection is to be made available on the nhs in wales .\npolice in the republic of ireland have seized cannabis with an estimated street value of 1m -lrb- # 700,000 -rrb- in a raid .\na mother and daughter have pleaded guilty to causing grievous bodily harm after a teenager drowned during a swimming lesson .\nthe outgoing head of the church in wales has said devolution in wales is not `` a just settlement '' .\na decanter used to feed newborn babies during the highland clearances has been donated to a museum in inverness .\nceremonies have been held across the republic of ireland to mark the centenary of the battle of the somme .\nchris packham has been cleared of breaking the bbc 's impartiality guidelines over his comments in bbc radio 4 's pm magazine .\na girl with an ultra-rare genetic condition is to be the first person in wales to receive a new drug to treat her condition .\na rare species of wombat has been born for the first time in five years .\nit 's that time of year again - the christmas adverts .\nnorthern ireland 's curlew has been added to a list of the uk 's most endangered birds .\nthe number of people visiting town centres in the borders has risen by 5 % in the past year , according to a council survey .\nscarlets flanker james davies has apologised after being sent off during sunday 's european champions cup defeat by toulon .\nislamic state -lrb- is -rrb- militants have released a video showing the destruction of ancient assyrian statues in iraq .\ntwo men have been charged in connection with an attempted armed robbery in west belfast .\ncyclist bradley wiggins , rowers helen glover and heather stanning and swimmer michael jamieson have won gold medals for great britain on day four of the london 2012 olympic games .\nthe fiasco over the west coast main line franchise could cost taxpayers up to # 1bn , mps have said .\nnottinghamshire director of cricket mick newell says relegation from division one of the county championship is an `` embarrassment '' to the players and supporters .\na machete-wielding intruder has been shot dead by security forces at the home of kenya 's deputy president william ruto .\na female lion rescued from a zoo in turkey has given birth to a cub at a wildlife reserve in saudi arabia .\nisraeli prosecutors have filed corruption charges against former prime minister ehud olmert , israeli media report .\na man accused of murdering a 24-year-old outside a bar in aberdeen was `` in a bad way '' , a court has heard .\ncarl frampton 's world title fight against leo santa cruz has been confirmed for 26 may in new york .\nthe trial of two ohio high school football players accused of raping a 16-year-old girl will go ahead , a judge in the us state has ruled .\na # 2m project to protect the landscape of snowdonia 's highest peak has been given the go-ahead .\na man who offered to drive people to and from manchester and leeds after the suicide attack at an ariana grande concert has described the response as `` amazing '' .\nus cable tv giant discovery communications has agreed to buy media firm scripps in a $ 14.6 bn -lrb- # 10.8 bn -rrb- deal .\nfive people have been arrested following the aberdeen v celtic game at pittodrie .\nactress julie hesmondhalgh , who played a rape victim in itv 's broadchurch , has been named as the charity 's new patron .\nhundreds of people attended a street party in glasgow city centre to celebrate the queen 's birthday .\nderry city began their premier division campaign with a 2-1 defeat by finn harps at finn park on friday .\npolice are trying to trace a man who exposed himself to an eight-year-old girl in aberdeen .\na man has been charged in connection with the death of a 41-year-old man in dundee .\nthe russian military has begun large-scale military exercises in the south-east of the country .\nben stokes starred with bat and ball as england beat india by six runs in the third one-day international in bangalore .\na magistrate has resigned after being investigated by police over a racist tweet .\ncambridge cathedral has been marking the anniversary of the death of one of henry viii 's divorcees .\ntwo-time olympic champion mo farah has given newsround his top tips for young athletes .\nleague two side colchester united have signed southampton midfielder jordan mcqueen on loan until the end of the season .\na man has died after falling into a hot spring in yellowstone national park .\nus president barack obama has visited dallas , where five police officers were shot dead last week .\nthe basque people descend from stone age farmers who spread agriculture across europe , a study suggests .\na law firm hired by cerberus , the us investment fund , to help it buy nama 's northern ireland loan portfolio claimed it could get access to the first minister .\nmanchester city manager pep guardiola believes barcelona are the best team he has faced in his managerial career .\nulster 's hopes of making the pro12 play-offs suffered a blow as ospreys secured a bonus-point win .\nmalian soldiers fighting islamist militants have summarily executed at least 30 people in recent days , a rights group says .\narsenal midfielder santi cazorla will miss the rest of the season with a foot injury .\nthree senior staff at dumfries and galloway council have left their posts .\nthe man accused of carrying out a deadly shooting at a florida airport on friday has been charged with hate crime murder .\nworld track cycling champion alan irvine has announced his retirement from the sport .\nscientists studying the chicxulub crater where an asteroid smashed into earth , killing off the dinosaurs , say they have found a pointer to the asteroid 's composition .\naustralian golfer robert allenby says he was robbed and dumped in a park in hawaii after a night out .\nuniversities are concerned about the number of websites offering students custom-written essays in return for money .\nthe soloist building in belfast has been sold .\nnigeria 's senate is considering a bill that would criminalise social media use .\nwest ham co-owners david sullivan and david gold will not be selling their stake in the club , reports bbc radio london .\nformer england all-rounder dave lewis is to play in a series of one-day internationals to help young cricketers .\nthe uk 's economy grew faster than expected in the second quarter of the year , official figures have indicated .\ndavid beckham has become `` hyper-correcting '' in his speech , university of manchester researchers have found .\nnorway has rejected a proposal to give finland the highest point on its territory .\nbrazilian footballer neymar has appeared before a spanish judge as part of a fraud investigation into his transfer to barcelona fc .\nthe head of northern ireland 's education authority has denied that teachers ' pay has been reduced .\ngateshead trio scott hogan , manny smith and dominic o'donnell have signed new one-year contracts .\nthe assembly 's presiding officer has urged people to register to vote ahead of may 's elections .\ned sheeran 's parklife show in manchester has been described as `` one of the best gigs of his career '' .\nvenezuela 's vice-president , jorge isturiz , has ruled out a recall referendum against president nicolas maduro .\nthe complete genetic code of breast cancers has been revealed by scientists .\na chronology of key events :\nboats have been used to break up coral reefs off the coast of jersey .\nthe new trump administration has said it is willing to co-operate with russia if moscow fulfils its commitments in syria .\nin 1942 , the then prime minister , sir william gladstone , outlined his vision for the welfare state .\nchina is set to overtake the united states as the world 's biggest university nation by 2020 , according to a major international study .\nengland batsman joe root has paid tribute to former coach peter moores after being named the men 's player of the year .\na us college entrance exam has been cancelled in south korea and hong kong because of cheating .\nscotland 's former top doctor is to lead a review of nhs targets .\nhome secretary theresa may has announced plans to make it easier to remove illegal immigrants from the uk .\nsouth korea 's kia motors has been named the world 's best-performing car brand in a reliability survey .\nus secretary of state rex tillerson says his wife convinced him to take the job after he was asked to meet donald trump .\nbritain 's andy murray beat canada 's milos raonic in straight sets to win his second wimbledon title .\nscientists in norwich have sequenced the genome of the fungus that causes ash die-back .\nthe high court is about to hear the first legal challenge to the brexit process .\ntwo british students rescued from a sinking boat off the coast of indonesia have told their mother they swam for eight hours to safety .\na teenage boy was removed from an overbooked easyjet flight at gatwick airport , his mother said .\na health regulator has launched an investigation into a cancer hospital in manchester .\nit is a year since indian prime minister narendra modi took to twitter to celebrate his country 's resounding victory in the general elections .\nricardo santos scored twice in three second-half minutes as barnet secured victory at leyton orient in league two . curtis weston -lrb- barnet -rrb- right footed shot from the centre of the box to the high centre of the goal .\ninterim head coach gary brazil says he is `` not aware '' of where nottingham forest are in their search for a new manager .\nsantander and deutsche bank have failed the us central bank 's annual stress tests .\nbournemouth have signed former reading goalkeeper adam federici on a two-year deal .\nthe scottish government 's spending watchdog has cleared the culture secretary of any wrongdoing over funding for the t in the park festival .\nformer liberal democrat mp david laws has said he is unlikely to stand for re-election .\na 17,000-tonne oil drilling rig that ran aground on the western isles in august is to be scrapped .\na german woman is suing pharmaceutical giant bayer , claiming its contraceptive pill yasminelle caused her to develop blood clots in her lung .\npolice in ohio are searching for a man who sent them a selfie instead of turning himself in to authorities .\ncentral banks around the world are doing everything they can to stimulate the economy .\nthe former progressive unionist party -lrb- pup -rrb- chairman william `` plum '' smith has died at the age of 74 .\nthe world 's super-rich are now spending as much as the rest of us , according to one of the world 's leading wealth advisers .\nthe family of a londonderry man who died while working in china have said they are `` devastated '' .\nthe belfast giants have announced that they will play a pre-season friendly against the calgary flames .\nchelsea midfielder eden hazard will miss the start of the new premier league season after undergoing ankle ligament surgery .\nthousands of people have signed up to be stem cell donors after a cardiff woman 's appeal to find a match .\na man killed his wife before killing himself , an inquest has heard .\ninverness caledonian thistle manager john hughes has left the club .\nthe icc world twenty20 gets under way in india this week with scotland and ireland hoping to qualify for the super 10 stage .\nbritain 's olympic taekwondo team was investigated over the welfare of its athletes , it has been reported .\nformer drug smuggler howard marks has died at the age of 59 , his family has said .\nnottingham forest have signed greece under-21 midfielder georgios bouchalakis on a four-year contract .\na south african minister has resigned after being charged with assaulting a woman at a party in cape town .\nrescue workers in colombia are searching for survivors of a landslide in the north-western town of bello .\ntesco 's full-year pre-tax profit has more than halved after the supermarket giant set aside more than # 200m to cover legal costs .\nthe main structure of europe 's most powerful space telescope has been moved from its uk factory .\nnick kyrgios said he was `` bored '' and `` tired '' as he beat sam querrey at the shanghai masters .\nformer olympic champion mark lewis-francis has been left out of great britain 's bobsleigh squad for the world championships in sochi .\na man 's body has been recovered from the sea off the vale of glamorgan coast , police have confirmed .\nleague one side scunthorpe united have signed bradford city midfielder sam baldock on a two-year contract .\nbritish cycling is celebrating its 50th anniversary this year , and one of the ways you can get involved is by becoming a member of the organisation .\na new programme to help primary school pupils cope with the transition to secondary school has been launched .\ntwo teenagers have been jailed for life for murdering a man in a revenge attack .\nalan stubbs has left hibernian to become rotherham united 's new head coach .\ntwo black candidates have won seats on the ferguson council in the us state of missouri , a year after the fatal shooting of an unarmed black man .\nthe number of road accidents in the south of glasgow has halved since the m74 was extended , a new study has suggested .\nsix people have been arrested on suspicion of human trafficking after a lorry was found with a person in it .\nan indian court has adjourned the case of a british man who has been held in chennai for more than two years .\npolice have released cctv images of a man they want to trace after a woman was racially abused on a train .\nnigeria 's economy shrank by 1.9 % in the second quarter of 2015 , according to official figures .\nthe catholic church in australia has been criticised for its handling of child sex abuse claims .\narsenal produced a scintillating display to thrash premier league champions chelsea at emirates stadium .\na suspected firearm has been found in west belfast .\none of the world 's highest glaciers is in danger of becoming a lake , say scientists .\nthe makers of a children 's board game based on ant and dec 's saturday night takeaway have apologised after some of the answers were found to be wrong .\na jury has been discharged after failing to reach a verdict in the trial of a couple accused of performing a sex act on each other on a london bus .\nwest brom boss tony pulis says saido berahino 's transfer saga is `` over '' after the striker scored in the 1-0 win over aston villa .\na white police officer in the us state of texas has been charged with the murder of a black teenager .\nswansea city caretaker boss alan curtis says it would be `` tough '' to return to the premier league if they are relegated .\nmansfield town have signed shrewsbury town defender jack caton on loan until the end of the season .\na teenage boy was punched and stamped on by two people as he lay on a train at a glasgow station .\nthree security guards have described the moment they saved the life of a man trapped in a car that plunged into water .\npeterborough united manager graham westley says his side have `` lost their way '' since their fa cup exit at the hands of oldham athletic .\na british soldier killed in afghanistan has been named by the ministry of defence .\nthousands of people have attended the funeral of otto warmbier , an american student who died after being detained in north korea .\nas the islamic holy month of ramadan draws to a close , some arab broadcasters are turning to pranks to attract viewers .\nbritain 's callum hawkins was pipped to the men 's title at the great edinburgh international cross country by kenya 's conseslus korir .\na ukrainian mother has been charged with child neglect after her youngest son died and her other two children were found locked in a flat .\nsale sharks ' new signing josh charnley says he wants to learn the game as quickly as possible .\nsir bradley wiggins and mark cavendish will return to the road in september 's tour of britain .\nglamorgan batsman colin ingram will play for adelaide strikers in the big bash twenty20 competition in australia .\nlewis hamilton says he needs to improve his consistency if he is to win a fourth world title this season .\na life-size replica of lady penelope , the lead character in tv show thunderbirds , is to be auctioned for charity .\nnato has been accused of failing to properly investigate the deaths of civilians in libya .\nleague one side fleetwood town have signed jack rothwell and chris maguire for undisclosed fees .\npowys has taken over the work of the office of fair trading -lrb- oft -rrb- to tackle rogue estate agents .\nchildren 's services at eastbourne 's district general hospital could be downgraded .\ntwo world war two glider pilots who took part in the rhine landings have been honoured at a ceremony in gloucester .\na man has died after his car was hit by a train at a level crossing .\npremier league clubs arsenal , chelsea and leicester have denied claims made in the sunday times newspaper .\nthe scottish football association -lrb- sfa -rrb- has apologised after a scam email was sent out to supporters .\nmixu paatelainen expects the battle to avoid relegation from the scottish premiership to go down to the final day .\nsouth africa 's law reform commission is calling for christmas to be removed from the national holiday calendar .\na ticket for the beatles ' first ever gig in the uk is expected to fetch up to # 3,000 at auction .\nhuddersfield giants secured a top-eight finish in super league with victory over leigh centurions .\nryan rowland scored two goals as armagh beat louth 0-13 to 0-8 to keep their division three title hopes alive .\njake sheppard scored a late winner as dagenham came from behind to beat bromley 2-1 at victoria road .\na huge barge that ran adrift in high winds has missed a bp oil platform in the north sea .\njapanese prosecutors have filed a criminal case against one of the country 's biggest advertising agencies over the death of a young employee .\nfive ospreys rugby players have taken part in a recycling drive in bridgend .\nst mary 's magherafelt will face st paul 's bessbrook in next week 's dr mckenna cup final after beating st ronan 's bessbrook 0-13 to 0-8 in thursday 's semi-final .\nformer jockey hayley turner says the success of female jockeys such as michelle obama is a boost for women in racing .\njon stewart , host of the daily show on comedy central , is stepping down after 16 years .\nengland 's collapse on day four of the final test against india in chennai was one of the great sporting disasters .\nsixteen petrol bombs have been found in west belfast .\nuk internet service providers -lrb- isps -rrb- have been accused of not doing enough to protect customers ' personal data following a security audit .\n`` you 're in the wrong place at the wrong time . ''\na man who ran the silk road 2.0 online drug marketplace has been sentenced to 20 years in prison .\nhull city say they are still in talks with potential buyers , but will focus on strengthening their squad ahead of the new premier league season .\nthe uk will not begin formal negotiations to leave the eu until after the next general election , foreign secretary philip hammond has said .\na lorry driver and two accomplices have been jailed for trying to smuggle 20 people into the uk .\naberdeen or partick thistle will host celtic or st mirren in the scottish cup quarter-finals .\nthe paris agreement on climate change is set to be signed by world leaders in new york .\ntaliban fighters have ended a siege of a police base in north-eastern afghanistan .\na former liberal democrat peer who resigned from the house of lords over comments he made about nick clegg has donated to a lib dem candidate in his old seat .\na primary school in county antrim has been closed after a father set himself and his children on fire in the playground .\nwelsh long jumper sally peake will attempt to qualify for the 2016 olympic games at the cardiff indoor grand prix on saturday .\na troubled academy school on the isle of wight is to be merged with another .\nsean o'brien will start for ireland in saturday 's six nations match against scotland .\nwigan 's championship survival hopes suffered a blow as they were beaten at ipswich .\nformer scotland footballer robert snodgrass has failed to appear in court in glasgow on a charge of dangerous driving .\nukip has said it would create a dedicated veterans ' minister if it wins the election .\ntwo people have been arrested after a couple were killed when they were hit by a car following a police chase .\nthe french government has ordered special security measures in muslim countries after the satirical magazine charlie hebdo published cartoons of the prophet muhammad .\nferrari 's kimi raikkonen headed mercedes ' nico rosberg and lewis hamilton in second practice at the chinese grand prix .\na man has died in hospital after being hit by a van in glasgow .\na man who was shot in the head in rhondda cynon taff has died , police have said .\npakistan cricket board chairman shaharyar khan has criticised australia and new zealand for postponing their tour of bangladesh because of security concerns .\na woman has died and an eight-year-old boy has been injured after being hit by a car at a rally in the highlands .\nas the sun sets on lido beach in the somali capital , mogadishu , abdiweli mohamed hassan is on duty .\na new law banning smoking in enclosed public places has come into effect in wales .\na woman had her hair set on fire in a mcdonald 's restaurant in kent , police have said .\na police officer has been charged with three counts of rape .\nthe author of the chilcot inquiry into the iraq war is to be questioned by mps for the first time next month .\nthe replacement for a soldier who died suddenly last year has been named .\na leading think tank has cut its growth forecast for scotland 's economy this year and next . paul brewer , a senior partner at pwc which sponsors the fraser of allander reports , said : `` the potential for the forthcoming budget to exert further fiscal tightening , oil price uncertainty and the uncertainty surrounding the potential outcome of\na 98-year-old woman has been `` thrilled '' to meet george clooney after staff at a care home asked him to visit her .\ntwo police officers involved in the `` plebgate '' affair involving former chief whip andrew mitchell are to face misconduct hearings .\nthere are few sporting rivalries as passionate as the one between italy and the republic of ireland .\nsports direct 's chief executive dave forsey has been replaced by the company 's founder , mike ashley .\ngreat britain 's women suffered a 3-2 defeat by north korea in their third game of the world championship in finland .\nthe national union of students -lrb- nus -rrb- is launching a campaign against `` broken pledges '' on tuition fees by liberal democrat mps .\nthe uk 's office of fair trading -lrb- oft -rrb- has paved the way for online travel agents to offer discounts on hotel rooms .\ntributes have been paid to the man who led the search for the remains of the disappeared in northern ireland .\na multi-million pound deal by natural resources wales -lrb- nrw -rrb- to sell timber to a sawmill operator has been criticised by the auditor general .\nin the us , president barack obama has called for an end to the war on drugs .\nhomes in parts of bournemouth have been left without water after a water main burst .\nmanchester city have made everton defender john stones their number one transfer target this summer .\nthe men 's game in tennis is heading in the right direction , with the likes of garbine muguruza , milos raonic and sam querrey making significant strides towards the top of the world rankings .\nthe number of students completing a key qualification for nursery staff in england has fallen by more than a third , figures show .\ndrugs used to treat osteoporosis may increase the risk of fractures , a study in the lancet suggests .\nceltic striker leigh griffiths is ready to make his scotland debut against slovenia in sunday 's world cup qualifier .\na county clerk in the us state of kentucky has again refused to issue marriage licences to gay couples .\nbudget airline easyjet has announced it will start flying between durham tees valley airport and aberdeen .\nplans to redevelop jersey airport have been given the go-ahead by the states .\nthe scottish government 's land reform bill has been published .\npolice scotland has admitted it does not record the number of cases of child sexual exploitation in its records .\nhartlepool united have appointed craig hignett as their new manager on a two-and-a-half-year deal .\nthe treasury is preparing for the worst . as government colleagues speak boldly of the economic opportunities brexit might offer and point to the better than expected economic news since the referendum , the treasury is quietly warning there may still be pain ahead .\nrussia has expelled two us officials in response to an attack on a us diplomat in moscow , the us state department says .\nmore than 600 syrian refugees have been resettled in wales since october 2015 , home office figures have shown .\nan italian court has ordered the seizure of more than 1bn euros -lrb- $ 1.2 bn ; # 850m -rrb- of assets belonging to a notorious criminal .\nghana coach avram grant has urged fans to stop criticising his players .\nmore than a foot of snow has fallen in parts of the east coast of america .\nengland missed out on a place in the final of the women 's world twenty20 as they were beaten by australia .\npakistan beat west indies by seven wickets in the first day-night test in dubai despite dwayne bravo 's century .\nthe wreckage of an raf helicopter which made an emergency landing on a north wales mountain has been removed .\nthe us has begun training syrian rebels to fight against the islamic state group .\ngoogle has said it will soon be able to cluster a small number of its internet-beaming balloons around a specific region of the world .\nunited airlines is to stop flying from belfast to newark in the us .\nthe crew of pan am flight 73 , hijacked in pakistan 30 years ago , have spoken publicly for the first time about the harrowing ordeal .\nindia 's supreme court has refused to allow one of two italian marines accused of killing two indian fishermen to return home to italy .\ncalifornia governor jerry brown has vetoed a bill to eliminate a tax on tampons .\nbromley climbed off the bottom of the national league table with a 1-0 win over torquay .\nlivingston extended their lead at the top of scottish league one to seven points by beating airdrieonians .\nwolves defender eggert bodvarsson says new manager paul lambert 's `` plan '' is starting to pay off .\na welsh make-up artist who has worked with hollywood star leonardo dicaprio has won an oscar .\na council leader has been asked to resign over claims he misled councillors about his links with a fitness company .\nanglers and fishermen are being asked to help conserve one of the world 's rarest sharks .\na woman has admitted killing a man whose body was found at a house in lincolnshire .\nten years ago today , northern ireland qualified for the european championship finals for the first time in 60 years .\nthree haitian ministers have resigned after president michel martelly made an obscene remark at a campaign rally .\na teenage girl has been bitten by a prison dog in south-east london .\nthe leader of the welsh conservative group in the senedd has said a row over a tweet by one of its members will not be repeated .\nbritish soldiers are complaining about the new body armour they are being given .\nthe uk population rose by more than 500,000 between mid-2013 and mid-2014 , according to the office for national statistics -lrb- ons -rrb- .\nhundreds of postal ballot papers were sent out in hull without the names of two general election candidates .\nthe uk prime minister has offered eu citizens living in the uk the same rights after brexit as uk citizens in the eu .\npolice are investigating social media abuse directed at st helens player ben flower .\nan indian journalist has been arrested for allegedly fabricating a report about a ban on muslims teaching yoga .\na man has been jailed for three years after being caught in a child sex sting operation .\nthe older people 's commissioner for wales has begun a review into the inappropriate use of drugs in care homes .\njack leaning 's maiden first-class century put yorkshire in a strong position against lancashire at old trafford .\nin our series of letters from african journalists , novelist and writer adaobi tricia nwaubani looks at cricket in nigeria .\na ward at altnagelvin hospital in londonderry has been evacuated after smoke was reported coming from a `` bed pan washer '' .\nat least four people have been killed and eight others wounded in a bomb attack in a border town in lebanon , officials say .\nchampionship club wolves have been sold to chinese conglomerate fosun international .\naston villa midfielder jack grealish has been cleared to play for england under-21s .\na man has been arrested on suspicion of sexually abusing two boys at a care home .\na statue of a gorilla made entirely out of spoons has been unveiled in shropshire by illusionist uri geller .\nengland women 's 2-0 win over japan in their final group game at the women 's world cup was `` brilliant '' , says manager hope powell .\na woman has been raped after leaving the henley royal regatta .\n-lrb- close -rrb- : the ftse 100 index closed 26 points , or 0.5 % , higher at 6,278 , with shares in itv and carillion leading the way .\na judge at pakistan 's supreme court has recused himself from hearing the appeal of a christian woman sentenced to death for blasphemy .\naustralia should consider a four-day working week , a leading politician has said .\none of the 25 byron restaurant workers arrested in immigration raids in london has said he was deported .\ntwo sisters have appeared in court charged with terrorism offences .\nworkers on southern rail are to stage three 24-hour strikes in april and may in a row over jobs .\nthe sun has apologised for a column by kelvin mackenzie which the liverpool mayor has described as `` racist '' .\nengland 's performance in the women 's world cup semi-final in canada was a huge step forward for women 's football in the uk .\n`` you can see how it was done , '' said dedel dos santos , as he showed me around his small community in the amazon region .\nthree british teenagers arrested in turkey on suspicion of terrorism offences have been released without charge .\nwelsh councils are losing hundreds of thousands of pounds a year because of falling recycling prices .\nmanchester city will face former boss pep guardiola 's barcelona in the champions league group stage .\na group of 30 people left a restaurant in the spanish town of bembibre without paying for their meal , the owner has said .\nthe met office has issued a warning of snow and ice across parts of scotland .\na man who was cleared of involvement in one of northern ireland 's most notorious murders is challenging a decision not to re-impose his sentence .\nwigan prop ben flower has been banned for eight games for punching st helens ' lance hohaia .\nthe russian government has launched its own version of the online encyclopaedia wikipedia .\nthe psni has warned of a rise in the number of people in northern ireland being blackmailed after being duped into performing sex acts online .\nceltic manager brendan rodgers says his side have `` everything to play for '' in their final two games of the season .\nthe european court of human rights has ruled that lithuania breached the rights of former presidentmindaugas paksas by banning him from running for office .\njapan 's supreme court has upheld a law that prevents women from taking their husband 's surname on marriage .\nshares of chipmaker qualcomm fell more than 7 % in after-hours trading after the firm announced plans to cut costs .\na man has been arrested on suspicion of smuggling endangered species into the uk .\na fire broke out in a restaurant at the o2 arena in south-east london .\na woman has been arrested in connection with the death of a 60-year-old man in west belfast .\nthe head of queen 's university in belfast has said northern ireland 's higher education system is `` in trouble '' .\nboaty mcboatface is leading a poll to name a new polar research vessel .\nlukas jutkiewicz 's second-half header rescued a point for birmingham at huddersfield .\nthe un human rights team has accused the venezuelan security forces of using excessive force against anti-government protesters .\nus economists gary hart and eric holmstrom have won the nobel economics prize .\nthe workers party has accused the bbc of putting a `` price tag '' on political airtime ahead of the general election next week .\na giant road sign has been spotted on a roundabout in berkshire .\noutdoor learning should be made part of the curriculum in england 's schools , according to a report by the institute for fiscal studies .\na team of scientists is launching a project to test the remains of alleged yeti creature sightings around the world .\nbusinesses at an industrial estate in wolverhampton say they are `` devastated '' by a spate of break-ins .\nengland wing emily scarratt has been ruled out of the women 's rugby world cup with a hamstring injury .\nsubstitutes marko pjaca and dani alves scored as juventus took control of their champions league last-16 tie against 10-man fc porto in portugal .\nthe number of new council homes sold in scotland has risen by more than 50 % , according to official figures .\nformer scotland coach alan solomons says south african sides set to join the pro12 will face `` brutal '' travel demands .\nscientists believe they have identified a gene that could explain why some people enjoy a cup of coffee every day more than others .\na debenhams store in norwich has been closed for a second day after a burst water main flooded the building .\nsomerset 's county championship match against lancashire was abandoned without a ball being bowled because of rain .\na bus driver has been praised for his quick thinking after a fire broke out on his vehicle .\nan raf pilot who caused an aircraft to nosedive after his camera was accidentally pushed into the plane 's control stick has been jailed for six months .\na sheriff has warned a 60-year-old woman whose dog bit a postman on the leg that a second bite would bring destruction .\nthe former archbishop of canterbury has said the church of england could be `` promoting anguish and pain '' if the right to die is legal .\nplans to demolish a 92-year-old fire station and build a new one have been approved .\na perth woman has admitted stealing more than # 8,000 from her mother by forging her signature on cheques .\nnorthern ireland 's preparations for euro 2016 suffered a setback as goals from havard nordtveit , mohamed elyounoussi and vegard ruud gave norway victory at windsor park .\nleanne wood , the new leader of plaid cymru , is the first woman to lead the party in its history .\nchina 's inflation rate rose to 2.7 % in june from 2.4 % in may , the national bureau of statistics said .\nmedals for august 's world athletics championships in london have been unveiled by the international olympic committee .\nthe conflict in yemen is having a `` catastrophic effect '' on the country 's food supply , the red cross has warned .\nstan wawrinka beat world number one novak djokovic in five sets to win the french open .\ncases of sexually transmitted infections -lrb- stis -rrb- in england and wales have risen sharply in the past three years , figures show .\na french court has sentenced a woman to 15 years in prison for murdering four of her newborn babies in 2003 .\na coroner has called for a review of patient safety at weekends following the death of a grandmother .\nharry potter fans have been reacting to the news that hermione granger will be played by a black actress in the new film adaptations of the series .\npassengers were stranded at belfast international airport for several hours on tuesday night due to high winds .\nnational league side boreham wood have signed defender luke prosser on a one-year deal following his release by national league south side braintree town .\naustralia beat the british and irish lions 18-15 in a pulsating second test in melbourne to take a 1-0 lead in the series .\nthe welsh government is to spend an extra # 28m on the housing association sector over the next three years .\nshe was the woman he fell in love with .\nat least 160 people have been killed after a church collapsed in the southern nigerian city of uyo , officials say .\na man has been charged in connection with a ram-raid at a supermarket in fife .\nmiddlesex and england wicketkeeper-batsman chris simpson has signed a new two-year contract .\nan independent report has cleared the former garda -lrb- irish police -rrb- commissioner , martin callinan , and the former justice minister , alan shatter , of corruption .\nseveral leading us writers have announced they will boycott a literary awards ceremony honouring the french satirical magazine charlie hebdo .\ndundee boss neil mccann cancelled his players ' day off after their scottish league cup win over brechin city .\nguinea international souleymane camara has joined french ligue 1 side guingamp on a two-year deal after his contract with derby county was terminated .\nsolihull moors have signed versatile midfielder james edwards on a two-year deal following his departure from national league rivals braintree town .\nbritish and irish lions head coach warren gatland says new zealand counterpart graham henry 's approach to selection has been key to his team 's success in the tour .\non 7 august 1947 , the british empire was split up into two new countries , india and pakistan .\na cat has had to have its leg amputated after being shot three times with an air gun in west lothian , the scottish spca said .\nthousands of people have marched in the south african city of durban to condemn recent xenophobic attacks .\na man who killed a woman in a caerphilly county hotel had previously made death threats , an inquest has heard .\narchaeologists in china have discovered an ancient game of dice in a tomb .\nbritain 's katarina johnson-thompson has qualified for the rio olympics with victory at the european heptathlon championships .\nwest indies beat defending champions australia by three wickets to win the women 's world twenty20 in india .\nbritish cycling has called for tougher sentencing guidelines after a man was jailed for six months for causing the death of a former international cyclist .\nshares in the world 's biggest carmaker have fallen sharply after it was found that it cheated emissions tests in the us .\na phd student has developed a range of `` eco-friendly '' falling snow liquids .\nan aberdeen man has captured a `` stunning '' picture of a dolphin attacking a porpoise .\ngermany 's exports and factory output fell in november , according to official figures .\na man accused of murdering a man in a denbighshire car park has told a court he was `` stupid '' to approach the victim 's car .\nnewsweek , the 80-year-old us news magazine , has unveiled its final front cover .\ncoventry city 's move from highfield road to the ricoh arena 10 years ago was hailed as a success by fans .\nthree universities in england are advertising tuition fees above the government 's proposed # 9,000 upper limit .\na leading british conservationist has accused maltese hunters of illegally shooting birds of prey .\nrecordings of christmas and new year celebrations made by a family in london have been restored and are now being played for the first time by relatives .\nuk house prices rose by 9.5 % in 2015 , according to the halifax , the biggest mortgage lender in the uk .\na rare painting of the coronation of king henry viii has been found in a county durham park .\nnottingham panthers head coach corey neilson says his side are capable of winning the elite league play-offs .\nfour men have been charged with second-degree assault after shots were fired at protesters camped out near a police station in minneapolis .\nthe chief constable of south yorkshire police is to retire following the rotherham child abuse scandal .\nfrom kevin keegan to tony pulis , here 's a look at 10 managers who have enjoyed - or endured - more than one spell with clubs in the english football league .\nevery day , the pupils at the moco-moco primary school line up for their national exam .\nfour men have appeared in court charged with conspiracy to supply cannabis with an estimated street value of up to # 20m .\nan 18th century stone cross in hampshire is expected to cost more than # 10,000 to repair .\neddie izzard is to run 27 marathons in 27 days in south africa for sport relief .\nmohamed , 19 , is one of thousands of migrants arriving in turkey from syria .\nbrazil 's ex-president luiz inacio lula da silva has been accused of obstruction of justice and money laundering .\nus president barack obama has criticised david cameron 's handling of the libya intervention .\nat least 60 homes have been flooded in cambridgeshire after heavy rain .\na us cybersecurity expert says he has been the victim of a plot to poison his life .\na fox has been released back into the wild after being rescued in powys .\nadults in the uk are still smoking around children , according to public health england .\na scottish government minister has blamed the fall in the oil price for much of the country 's economic slowdown .\nthe us-based transparency international -lrb- ti -rrb- has warned that russia 's plan to restrict access to personal property data could make it harder to tackle corruption .\na second scottish independence referendum will not be held in 2017 , the first minister has said .\ntaylor swift has been named album of the year at the grammy awards for the second year running .\nnorthampton town boss chris wilder is in talks with bolton wanderers about their managerial vacancy , bbc radio northampton reports .\nthe saudi-led coalition has been carrying out air strikes against houthi rebels in yemen since 25 march .\nis climate change getting less coverage in the media ?\na sippy cup manufacturer has stepped in to help a boy who does not drink from them after his father 's twitter appeal went viral .\neight people have been arrested in iran for `` spreading immoral and un-islamic culture '' on social media , a court has announced .\nbydd geraint thomas yn dweud bod yn gyrraedd y terfyn yn ddianaf ddydd sadwrn , yn l un o ' r tour de france ddydd llun .\ntributes have been paid to five britons who died when a whale-watching boat capsized off the coast of tofino , british columbia .\na man has been charged with the murder of a man who was stabbed to death in essex .\nformer falkirk mp eric joyce has been found guilty of head-butting two teenagers .\nkent have signed all-rounder sean dickson following a successful trial period .\njoyce banda is malawi 's first female president .\npope francis has pardoned a priest who was jailed for stealing confidential papers from the vatican .\none of san francisco 's most exclusive streets has been sold at auction .\nleicester hooker tom youngs says he is determined to earn a recall to the england squad after recovering from back surgery .\nplans to drill a borehole to test for shale gas in county fermanagh have been blocked .\na man is to stand trial accused of causing the death of a teenage girl by driving dangerously at a petrol station in renfrewshire .\nwarrington wolves have released matty bailey , ben cox and anthony dodds after the end of the super league season .\npolice investigating the disappearance of toddler ben needham in 1991 have said they believe he was killed by a digger .\nthe family of a cyclist who died in a crash in east london have appealed for witnesses to come forward .\na new treatment for children with severe epilepsy is being tested in the uk for the first time .\nsome private muslim and christian schools have been rated inadequate by ofsted inspectors .\ntributes have been paid to a man who died while competing in a triathlon .\na tortoise has been stolen from a tank in a pet shop .\nthe top trending hashtags on twitter in russia in november were all related to western pop culture .\nthe inquest into the death of mother-of-two samantha bevan , who took her own life after giving birth to a baby girl , has focused attention on the mental health of new mothers .\nsuper league side leigh centurions have signed hull fc prop curtis naughton on a deal until the end of the 2018 season .\ngillingham manager justin pennock is hoping to add `` two or three '' more players to his squad before the transfer window closes .\npolling stations have opened in nigeria 's key state elections , which are being held two weeks after the presidential poll .\nfourteen-year-old malala yousafzai was shot in the head by the taliban for campaigning for girls ' education .\nheavy rain has caused flooding across parts of england and wales .\nthe snp has held on to a seat in the scottish parliament following a by-election .\ncorey whitely 's second-half strike was enough to give dagenham victory at eastleigh .\nsuite francaise , a world war two romance set in nazi-occupied france , has opened the bfi london film festival .\nthe former governor of nigeria 's delta state , james ibori , has pleaded guilty in a london court to money-laundering and forgery .\nformer england footballer leon mckenzie has been given the go-ahead to defend his english title in november .\neducation secretary michael gove and deputy prime minister nick clegg have clashed over free schools in england .\nthe uk border agency -lrb- ukba -rrb- has no plan in place to deal with 150,000 migrants who have been refused an extension to stay in the uk , the immigration inspector says .\nit 's been a year since the united states and cuba announced a historic thaw in relations .\nthe main platform door at bath railway station has been opened to the public for the first time in almost a year .\nsussex 's matt machan hit a career-best 168 to put his side in a strong position against worcestershire at hove .\ntwelve of edinburgh 's old town closes are to be transformed as part of a project to `` reconnect '' the city .\nthe police service of northern ireland -lrb- psni -rrb- has lost its appeal against being ordered to hand over documents in a damages claim brought by a former loyalist paramilitary killer .\nthe german authorities have begun distributing asylum seekers more evenly across the country in an effort to cope with the influx .\nplans for the future of gloucester prison have gone out to the public .\nvolunteers are being asked to help tackle the number of grass fires in south wales .\nhundreds of jobs could be created under plans to redevelop a ministry of defence -lrb- mod -rrb- depot in telford .\na large sinkhole that opened in a town centre was caused by gypsum deposits , the british geological survey -lrb- bgs -rrb- has said .\nthe director of the marie stopes abortion clinic in belfast , dawn purvis , is to step down .\nfrench president francois hollande has called on the european union to be `` simple , clear and effective '' .\nus researchers have used electromagnetic waves to implant a pacemaker into a rabbit 's heart .\njulie and her daughter shannon are sitting in the living room of their home in stockport , talking about the death of their three-year-old son kayden .\nscotland ran in five tries to thrash georgia in their six nations opener at murrayfield .\nvoters in wales go to the polls on 5 may to elect ams to their local councils .\nthe chief executive of barnet council has resigned after voters were turned away from polling stations during the eu referendum .\nnorthampton town defender dean richards says manager chris wilder has been `` first class '' for the club this season .\na woman believed to be the world 's heaviest has returned to the united arab emirates after undergoing weight-loss surgery .\nfears are growing in the egyptian resort of sharm el-sheikh after a series of shark attacks in the red sea over the weekend .\nthe car used in the murder of a man in the republic of ireland has been found burnt out .\nreform of the council tax in scotland is a `` major undertaking '' , according to a report .\nthe welsh government 's chief veterinary officer has said bovine tb is her `` number one priority '' as she steps down .\nfracking operations in lancashire have been halted after a small earthquake was detected near preese hall .\ndetectives investigating the murders of two british tourists in thailand have completed their work , the met police has said .\na police unit that dismissed a rape allegation against a man who went on to kill his two children was `` wholly inappropriate '' , a report has found .\ncommunity shares are to be sold to help fund the restoration of a fire-damaged pier .\naldershot town have re-signed defender connor mcginty on a two-year deal following his release by league two rivals bury .\npublic satisfaction with the nhs in england has fallen to its lowest level in more than 30 years , according to a new survey .\nfirefighters have been tackling a blaze at a thatched house in suffolk .\nswansea city winger nathan dyer has been ruled out for the rest of the season with a torn anterior cruciate ligament .\nburundi is one of africa 's smallest countries , with a population of 10.4 m.\nvictims of abuse at a children 's home in halifax have staged a protest calling for an independent inquiry .\nplans to downgrade maternity services at a denbighshire hospital have been voted down by councillors .\nthe us treasury department has accused the european commission of targeting us companies in its probe into apple 's tax arrangements .\neilish mccolgan is slowly turning into the terminator .\nthe unsolved murder of a teenager in manchester 45 years ago is to be featured on the bbc 's crimewatch programme .\na majority of scottish firms believe brexit will have a negative impact on their business , according to a fraser of allander study .\nwaiting times for mental health treatment in wales are to be cut , the welsh government has announced .\nfive cygnets have been killed after being hit by a car in county fermanagh .\nthe prince of wales has called for `` fair play , civility and a sense of humour in adversity '' at a graduation ceremony for officer cadets .\nken owens is used to being called `` super sub '' .\nceltic manager ronny deila insists his side still have a chance of reaching the europa league knockout stages , despite facing ajax on thursday .\nluke rowe 's first-half goal was enough for doncaster to beat colchester and extend their lead at the top of league two to five points .\nat a steam bathhouse in central london , a group of men and women are lying on their backs , covered in bunches of red oak .\ndenny solomona scored a hat-trick of tries as sale held on to beat premiership leaders wasps .\narsenal ladies midfielder alex iwobi has signed a new contract with the women 's super league one club .\nscientists have identified a genetic mutation that they believe was responsible for the development of the human brain .\nformer conservative home secretary lord waddington has died at the age of 86 .\ntoo many young people leaving care in england are struggling to find work , education or training , says a report by mps .\ntorquay united have signed gibraltar international omar bogle on a one-year deal .\npolice have released an e-fit of a man they want to trace after a five-year-old girl was attacked by a dog at a parade .\nkell brook says beating gennady golovkin would make him the best pound-for-pound boxer in the world .\nasian commodities trader noble group has warned that its full-year profit will be at the low end of forecasts .\nshrewsbury maintained their league one play-off hopes with a hard-fought victory over blackpool .\nfrance 's presidential election is entering its second round , with two candidates still in the race .\nthousands of runners from around the world are taking part in this year 's great north run .\nmcdonald 's is rationing fries in japan .\njimmy noppert beat scott waites 3-0 to reach the semi-finals of the bdo world championships .\npatients at reading hospital are to have their say on the care they receive .\n-lrb- close -rrb- : shares in us health insurance companies rose after the us supreme court ruled in favour of the affordable care act -lrb- aca -rrb- .\nstormont mlas have voted against a proposal to cut the penalty for parking offences from # 90 to # 45 .\nthe poverty rate in the us remained unchanged last year , according to the us census bureau .\nbrighton have signed stoke city midfielder steve sidwell on loan until the end of the season .\na pair of queen victoria 's underpants are to be sold at auction .\na mother and her three-month-old baby have been found `` safe and well '' in pembrokeshire , police have said .\nleague two side carlisle united have signed former wigan athletic midfielder mike jones on a two-year deal .\nengland lost their last five wickets for just five runs as australia won the women 's ashes series with a 169-run victory in the third test at bristol .\nengland full-back ryan hall says the team will have to `` focus '' on the positives after saturday 's defeat by new zealand in the four nations .\nthe number of skier days at scotland 's outdoor snowsports centres this winter was lower than in previous seasons .\na new exhibition of portraits of famous faces is opening in hull .\nchina has admitted for the first time that it allows commercial trade in tiger skins from captive animals , officials and participants at a key wildlife meeting have told the bbc .\nthe organisers of the e3 harelbeke cycle race in belgium have apologised after a poster for the event showed a man pinching a girl 's bum .\nrobert kubica says he misses racing in formula 1 two years after suffering life-changing injuries in a rally crash .\nthe number of immigrants arrested in the us has more than doubled since the beginning of the year .\nportsmouth owner michael eisner is keen to appoint a chief executive to run the club .\nleicester city manager claudio ranieri says striker jamie vardy is `` very close '' to returning to form .\na alton towers theme park ride where five people were injured in a crash is to reopen next month .\naston villa manager remi garde has been boosted by the news that tom cleverley has returned to training , reports bbc radio birmingham .\ntributes have been paid to mp jo cox in her constituency a year after she was murdered .\na dog control order proposed by wrexham council could `` punish responsible dog owners '' , the rspca has claimed .\nthe irish justice minister , alan shatter , has resigned after a series of controversies .\njonathan trott 's century helped warwickshire beat essex by 39 runs to reach the one-day cup semi-finals .\nthe death of a man whose body was found in a drain in lincolnshire is not being treated as suspicious .\nluke hall , the younger brother of olympic taekwondo champion jade , has been selected for the great britain squad .\na japanese pensioner accused of murdering four men with cyanide has told a court she is innocent , local media report .\ndarren fletcher should remain scotland captain for wednesday 's friendly against northern ireland , according to former midfielder barry wilson .\nthe us has issued a travel warning for turkey , saying there are `` credible threats '' to tourist areas in istanbul and antalya .\ncelta vigo have signed fulham midfielder jonathan kodjia on loan until the end of the season .\nresidents in liverpool should pay more to maintain the city 's parks and open spaces , a report has said .\nbangladesh took control of the second test against england on day three in dhaka .\nmansfield boss steve evans was sent to the stands as his side lost 3-0 at grimsby .\nleague one side wigan athletic have signed oxford united defender lewis dunkley on a two-year contract .\na man has died after falling from a cherry picker at a factory in skegness .\nfifa president gianni infantino says he has `` overwhelming '' support for his plan for a 48-team world cup .\na professional boxer has been given a suspended prison sentence for attacking his girlfriend .\na police training centre has been used to train officers in how to break into people 's homes .\ncomedian bill bailey 's tour bus has been stolen during a gig in liverpool .\nkilmarnock goalkeeper craig samson has signed a new one-year contract with the premiership club .\nthe new chancellor has said the government could `` reset '' its fiscal policy if the economy needs a `` kick start '' .\nnational league side guiseley have signed mansfield town midfielder paul hurst on loan until the end of the season .\nsenior police officers in england and wales are prepared to use disciplinary procedures against officers who make complaints about their colleagues , the national police chiefs ' association has said .\nthe badger trust has launched a high court challenge against the government 's plans to cull badgers in england .\nsalford red devils owner marwan koukash says he has not decided whether to stay on beyond the end of the season .\na motion has been tabled in the irish parliament calling on the chief constable , nirn frazer , to cancel a planned march by the orange order in dublin on saturday .\nross moriarty 's first week with the british and irish lions has been anything but ordinary .\njon stead 's late strike earned notts county their first win of the league two season at hartlepool .\na 15-year-old girl is in a critical condition in hospital after being hit by a car in the black country .\npolice in the us state of alaska have apologised to a family after telling them their son had been killed in a car crash .\nlabour mp david lammy has said he is considering standing for the party 's leadership .\nfirefighters have tackled a new blaze at a woodchip factory in cardiff .\nunited airlines is offering hackers a million flight miles if they report security flaws in its website .\na man convicted of raping and murdering an irish woman in australia in 2012 has been found guilty of raping three more women .\na third dead whale has washed up on the suffolk coast in the past three days , experts say .\nrory mcilroy says he is `` totally fine '' to play in this week 's us open despite missing two warm-up tournaments .\na third runway at heathrow airport would have a `` marginal '' impact on air pollution , according to research .\nchildren who use a smartphone or tablet at least once a day are less likely to sleep well , research suggests .\nleicester lions have been taken over by promoter david bates .\nhopes are fading of finding more survivors in the rubble of the collapsed rana plaza building in bangladesh .\nmae ' r datblygwyr yn dweud y byddai ' r cynllun yn costio # 425m , ac yn creu 6,000 o swyddi yng nghymru .\nus president donald trump 's eldest daughter , ivanka , is joining the white house .\nroberto martinez says he will `` treasure '' his three-year spell as everton manager `` forever '' .\nthe totten glacier in the french alps is likely to rapidly retreat inland .\nit 's all well and good having a pet who understands what you 're saying .\na man has been seriously injured in an unprovoked attack in a glasgow pub .\nuk unemployment fell by 39,000 to 1.67 million in the three months to july , official figures have shown .\nlevels of violence at a prison where three inmates have died in the past year are `` very high '' , inspectors have said .\nsome hospitals in scotland are spending more per patient on food and drink than any other health board .\na stage has collapsed at a radiohead concert in the canadian city of toronto , killing one person .\nhbo has cancelled mick jagger and martin scorsese 's period drama vinyl after one season .\nfor decades , the land rover defender has been one of the uk 's best-selling off-road vehicles .\namerican football star johnny manziel has been charged with assaulting his ex-girlfriend .\nsean dickson 's maiden first-class century put kent in a strong position against derbyshire .\njeremy corbyn has called for an `` open and respectful debate '' after scottish labour leader kezia dugdale was jeered during a tv debate in glasgow .\nthe family of a scots aid worker who was killed during a rescue mission in afghanistan five years ago have travelled to the country .\nheineken 's planned takeover of punch taverns has been provisionally approved by the competition watchdog .\nborussia dortmund have signed france under-19 midfielder ousmane dembele from borussia monchengladbach .\nyoutube has hit back at claims it is not paying enough to the music industry .\nplans to close a swimming pool in derby have been scrapped .\nsaudi arabia 's prince alwaleed bin talal has bought a 5 % stake in twitter .\na 21-year-old man who died after his motorbike was involved in a crash in lancashire has been named .\ndoctors say they have made a `` groundbreaking '' breakthrough in treating cystic fibrosis .\nthe chairman of chinese clothing giant metersbonwe , zhou chengjian , has gone missing .\ntwo men arrested on suspicion of murdering a man who went missing a year ago have been released .\ndundee defender darren o'dea says it is `` virtually impossible '' to replace kane hemmings and greg stewart .\nformer toronto mayor rob ford 's body has been lying in state at the city 's city hall .\ndundee united missed a late penalty as they were held to a goalless draw by raith rovers at starks park .\na teenage boy has been arrested on suspicion of attempted murder after a man was stabbed .\npolice in the western indian state of gujarat say seven men have died after allegedly taking poison at protests .\nthe israeli navy has intercepted a boat carrying pro-palestinian activists trying to break the blockade of gaza .\na man who claims he was sexually abused as a child by a man who later killed himself has called for an independent inquiry .\nantimalarial drugs are being counterfeited and mis-prescribed in parts of the world where malaria is prevalent , say scientists .\nhilary mantel 's booker prize-winning novel bring up the bodies and madeleine thien 's debut novel the sense of an ending are among the british titles in the running for a prestigious international prize .\nthe democratic unionist party -lrb- dup -rrb- has threatened `` unilateral action '' next week if the government does not intervene in northern ireland 's political crisis .\na chinese astronaut has returned to earth after spending a year living inside a space capsule .\nit 's been almost a year since the scottish independence referendum , but it 's still visible in the polls .\nsales of scotch whisky have fallen by 2 % at one of the world 's biggest distillers .\na 73-year-old man has been arrested on suspicion of murdering his wife at a house in bristol .\ntwo previously-unpublished manuscripts by welsh poet dylan thomas are to go on display in his home town .\nprince harry has been performing the haka dance with new zealand 's prime minister john key .\nwhat happens when things go wrong ?\nmae dyn wedi cadarnhau ei gyd yn ymchwiliad ddydd sadwrn .\nthe us has closed its embassies across the middle east and africa because of a `` significant '' threat from al-qaeda in the arabian peninsula .\ndavid haigh has resigned as managing director of leeds united following the takeover by massimo cellino .\nchelsea came from behind to stun manchester city and move up to third in the premier league .\nandrew davies set a new british record in the shot put with a throw of 15.98 m at the arizona grand prix .\nwest ham came from two goals down to draw 2-2 with juventus in their first game at their new london home .\nan islamic high school in birmingham has defended its `` open door '' policy after it was criticised by ofsted .\nspotlight has been named best film at the new york film society awards .\nmore than 30 puppies have been seized by the irish border force as part of an investigation into the illegal dog trade .\nbarclays chief executive antony jenkins has been sacked after falling out with the board over the size of the investment bank and the pace of cost cuts .\n-lrb- close -rrb- : shares in royal bank of scotland fell more than 5 % after the bank warned that profits would be lower than expected .\ncharlton athletic have re-signed chelsea defender callum dasilva on a season-long loan .\na fox cub has been rescued after getting stuck in the engine bay of a car on the a74 -lrb- m -rrb- near lockerbie .\njustice secretary michael matheson has said it is `` better if all parties refrain from making comment while the investigation is taking place '' into the death of falkirk teenager nelson bayoh .\ngambian president yahya jammeh has said he will `` wipe out '' 82 % of his country 's workforce by friday .\ninverness caledonian thistle 's premiership survival hopes were dealt a further blow as st johnstone cruised to victory at mcdiarmid park .\nreferee mark clattenburg has been cleared by the football association of racially abusing chelsea midfielder john mikel obi in october .\nsherlock star benedict cumberbatch is to star in a new tv adaptation of shakespeare 's the tempest .\nformer taoiseach -lrb- irish prime minister -rrb- albert reynolds has died aged 74 .\nparis st-germain have signed brazil centre-back marquinhos from roma for an undisclosed fee .\nitaly 's parliament has approved a controversial new electoral law that will give more power to political parties .\na 16-year-old boy has been rescued after falling 20ft -lrb- 6m -rrb- down a cave .\nthree british tourists rescued from the langtang valley in nepal have arrived back in manchester .\na baby whose remains were found in a bag on a footpath in west yorkshire a year ago may have been born elsewhere .\nbrazilian president michel temer has condemned the gang rape of a teenage girl in rio de janeiro .\na spire at a church in surrey is to be repaired after it was damaged by woodpeckers .\nthe discovery of one of the world 's rarest and most valuable opals has finally gone on display in south australia .\nthere 's plenty to watch out for in the next few days , as the eu -lrb- withdrawal -rrb- bill goes through its second reading in the house of commons .\nan investigation into the pat-down of australian foreign minister julie bishop at new york 's jfk airport has found that security procedures were not followed .\nan australian woman who was severely burned in a bushfire has completed her first ironman triathlon .\nclaudio ranieri 's reign as leicester city manager came to an abrupt end on wednesday .\narsenal secured their first premier league win of the season with victory over watford at vicarage road on saturday .\na light aircraft has crashed in a field in kent .\ngirl guides and brownies in the uk will no longer swear to `` love my god '' as part of their oath .\ntwo teenage boys have been arrested at an illegal rave in east london .\nsheffield united boosted their league one play-off hopes with victory at chesterfield .\na man with terminal bowel cancer has climbed mount everest .\nonline grocer ocado has reported its first annual profit .\na three-year-old boy has died after becoming trapped between a revolving floor and a wall at a restaurant in the us city of atlanta .\nchelsea manager jose mourinho accused west ham of playing `` football from the 19th century '' after their goalless draw at stamford bridge .\nwhen the duke and duchess of cambridge visited holywell , shropshire , last month , they were taken on a tour of the town 's most famous landmark - st winefride 's well .\nan environmental group has launched a legal challenge against a controversial block of student flats built by the university of oxford .\nedinburgh city will play in scottish league two next season after drawing 1-1 with cove rangers in the second leg of their play-off final .\nnicola sturgeon has said supporting independence is not a `` magic solution '' to all of scotland 's challenges .\ntens of thousands of music fans are descending on glastonbury this week .\nthirteen people have been rescued from a fire at a hotel in north london .\nplaid cymru leader leanne wood grew up in the rhondda valley .\na bridge in county durham has been closed due to structural problems .\nmanchester city 's sergio aguero says the club 's fans `` expect a bit more '' from the team .\nbritain 's shauna coxsey finished second in the second event of the 2017 bouldering world series .\na new technology centre for the oil and gas industry has been officially opened in aberdeen .\na north wales police officer has been cleared of assaulting a man in gwynedd .\npassengers at edinburgh airport faced `` massive disruption '' after their computers failed .\nthe man who has provided the voice of kermit the frog for more than 25 years is leaving the muppets .\nlenovo has unveiled a smartphone that uses google 's tango virtual-reality technology and a modular version of its moto z handset .\npeople affected by flooding in york are struggling to apply for grants , an mp has said .\nthe chief constable of the police service of northern ireland -lrb- psni -rrb- has said an exit from the european union -lrb- eu -rrb- is `` probably doable '' .\ncuts to school libraries in england are '' feast or famine '' , a teachers ' union has warned .\nrichie ramsay said he was `` gutted '' not to win his first european tour title at the scottish open at castle stuart on sunday .\nthe east midlands has voted overwhelmingly to leave the european union .\na senior ukip mep has said he will leave the party if it goes `` in any direction that it absolutely should not be going in '' , amid a row over the leadership contest between emma waters and diane james .\na us appeals court has ruled that the national security agency 's -lrb- nsa -rrb- bulk collection of phone records violates the us constitution .\nschools have reopened in guinea , the first to do so since the outbreak of ebola in the country .\ncampaigners have handed in a petition to the foreign office calling for the return of residents of the chagos islands .\nthe former head of the army has warned against `` playing the taliban 's game '' after a spate of attacks in afghanistan .\na man has died after the car he was driving crashed into a garden .\npermian and khalidi have been added to the field for the epsom derby .\nthe new penalty shootout system will be introduced in the english football league next season .\nbournemouth have been charged by the football association for breaching anti-doping rules .\nzac efron , bradley cooper and meryl streep were among the winners at this year 's teen choice awards .\nglasgow warriors have signed south african lock kebble kebble for next season .\nkatarina johnson-thompson missed out on long jump gold at the world indoor championships in portland , oregon .\na golfer in australia has been attacked by a crocodile while playing a hole at a golf course .\na man has been fined for fly-tipping more than 100 tonnes of rubbish at the side of a road .\nthe prime minister 's announcement today that the government is to set up an english parliament for english people is a significant step forward in the process of making the uk more self-sufficient .\nburton albion goalkeeper stephen bywater has signed a new one-year deal with the championship club .\nurgent care centres in the north-east of england have been temporarily closed at night to save money .\nthe conflict in syria has left a trail of destruction across the country .\ndonald trump 's first visit to europe as us president has been a mixed bag .\nthe county down-based building materials firm northstone has reported a fall in turnover and profits for 2012 .\na private health firm is `` not clinically assured '' of the safety of its nhs 111 and out-of-hours services , a leaked report has found .\na council contractor has been sacked after a set of road markings appeared to direct motorists towards a bird of prey .\nfive british men who have been held in an indian jail for nearly two years have been released .\nsale sharks forward nick easter has announced he will retire at the end of the season to take up a teaching position .\nthe us has urged china and vietnam to de-escalate tensions in the south china sea over a disputed oil rig .\nsurvivors and relatives of those killed in the merthyr tydfil disaster have spoken at a public event in merthyr tydfil town centre .\ndoctor foster star ruth jones says her character 's split from her husband in the first series of the drama made her realise the `` gloom '' of divorce .\na man has been shot dead in a bar in dublin city centre .\naggressive octopuses may display a range of body colour and behaviour to avoid conflict , a study has found .\nhousehold spending power in northern ireland is the lowest in the uk , according to a new report .\nengland 's women lost the second twenty20 international against south africa in bristol by seven runs .\na boxer has said she will never box for wales again after being banned from competing at a commonwealth games .\na food factory in dumfries and galloway is to receive a # 5m investment .\nwhen the irish foreign minister simon coveney told the house of commons last week that the irish government was prepared to work with the uk to find a way to avoid a hard border on the island of ireland after brexit , it was widely seen as a statement of intent .\nbradford moved up to second in league one thanks to steve evans ' first-half goal against cheltenham .\nmanchester united captain wayne rooney 's testimonial against everton will be streamed live on facebook on sunday , 20 august .\nnapoli missed the chance to return to the top of serie a as they were held to a 1-1 draw by ac milan .\naston villa manager tim sherwood says his side must change their `` losing mentality '' after their 4-0 fa cup final defeat by arsenal at wembley .\na lebanese journalist has gone on trial at a un-backed tribunal investigating the murder of former lebanese prime minister rafik hariri in 2005 .\na lorry has been left stranded in a sinkhole after a tunnel beneath the road collapsed .\na consultation on plans to downgrade maternity services in north wales has been launched .\ntwo young people have become the first in south wales to join a new monastic order .\nan investigation has been launched into the way dogs seized by police were cared for at a kennels in teignbridge , devon .\na man who crashed his car into the front of a house in west sussex has been banned from driving for three years .\nmore than 100 australian expedition members stranded on a research ship in antarctica have been flown home .\ncomedian jason manford 's search for a job for his 71-year-old father has gone viral on social media .\na us magistrate has ordered a woman to unlock her iphone using her fingerprint .\nit 's been a year since channel 4 's benefits street first aired .\neoin morgan led england to a seven-wicket win over australia to level the one-day series at 2-2 .\ncole stockton 's second-half header gave tranmere victory over dover at prenton park .\nnigerians are going to the polls on saturday to vote in a presidential election between incumbent goodluck jonathan and former military ruler muhammadu buhari .\na cardiff man has told how a colony of `` massive '' tube spiders have infested his home .\na surgical bung fell out of a patient 's arm during an operation , it has emerged .\nengland 's 1-0 defeat by spain flattered their opponents , says captain gary cahill .\na borders knitwear firm has reported a surge in sales following the launch of its own brand .\na campaign to raise money for disabled pensioner alan barnes who was mugged has raised more than # 300,000 .\nactress michelle terry is to take over as the actor-manager of shakespeare 's globe .\nred bull 's sebastian vettel beat team-mate mark webber to win the malaysian grand prix in a controversial finish .\na security robot patrolling the streets of san francisco was knocked over by a car on monday .\na man has been jailed for the murder of a man whose body was buried in a concrete outhouse .\nricky miller scored a hat-trick as dover came from behind to beat forest green 4-3 at the crabble .\na man has been stabbed to death in north london .\nrepublican presidential nominee donald trump has sparked a backlash after suggesting gun rights supporters could stop his democratic rival hillary clinton from appointing judges .\nlabour leader jeremy corbyn will be the opening speaker at this year 's cheltenham literature festival , it has been announced .\na woman has appeared in court charged with the murder of her five-year-old son in dublin .\nwomen 's super league one leaders manchester city will face holders arsenal in the semi-finals of the continental cup .\nthree-time paralympic archery champion jade brown says she will not switch disciplines in order to qualify for the 2016 games in rio .\nlabour will commit to a `` clear plan '' for a fully integrated railway in public ownership , leader jeremy corbyn has said .\nlord ashcroft has told guests at the launch of his book about david cameron that he is recovering in hospital after suffering septic shock .\nan algorithm that can make investment decisions has been developed by a uk firm .\nan ipad used by a boy with autism has been stolen from his home .\nthe uk is to build a new prison in jamaica as part of a plan to deport hundreds of jamaican criminals back to the island .\nrory mcilroy and lee westwood share the lead at six under par after the first round of the dp world tour championship in dubai .\nthe democratic unionist party -lrb- dup -rrb- has `` lost the run of themselves '' within northern ireland 's political institutions , sinn féin has claimed .\ndundee manager neil mccann says the club need more help in their search for new players .\nthe big reveal in eastenders this week will see the killer of lucy beale finally revealed .\nfive members of canada 's armed forces have been removed from duty after carrying a british flag during a first nations ceremony in halifax .\na space technology firm based in belfast has gone into administration with the loss of eight jobs .\na man shot dead in west belfast was a suspect in the murder of a former provisional ira commander .\njohn esposito , one of elvis presley 's closest friends , has died at the age of 83 .\none in five scots has gone without food at least once in the past year , according to a survey .\nserena williams says she does not deserve to be paid less because of her sex .\nlas vegas is known as the `` city of lights '' .\nbernardo babenco , the brazilian director of oscar-winning film kiss of the spider woman , has died at the age of 74 .\nmichael farmer extended his lead at the top of the british moto2 championship with victory in saturday 's opening race at brands hatch .\nmali 's government has asked mps for military support to combat the poaching of one of the world 's most endangered elephants .\nthe number of women diagnosed with lung cancer in scotland has more than trebled in the past 40 years , according to a charity .\nsmall businesses are often the most vulnerable to cyber-attacks .\nthe proposed m4 relief road would have an `` adverse effect '' on protected wetland land , a public inquiry has heard .\ntablets in schools are helping to motivate pupils who might otherwise be disengaged , suggests research from the university of cambridge .\ncigarette packets with a street value of about # 300,000 have been found on a road in dorset .\na man has been arrested on suspicion of murder after a woman was stabbed to death in sheffield .\n`` you 're not wanted any more , '' chanted the afc wimbledon fans as steven gerrard made his final appearance for liverpool .\nthe european space agency has launched the first part of a network that will allow earth observation satellites to talk to each other .\na look back at some of the top entertainment stories over the last seven days .\ngermany 's michael jung won olympic gold in the eventing team event as greece 's antonis fischertakinou failed to defend his title .\nhopes are fading for scores of people missing after a landslide in sri lanka , the army says .\nat least 22 people have been injured after a pick-up truck crashed into spectators during a mardi gras parade in the us city of new orleans , officials say .\nleague one side sheffield united have signed fulham defender richard stearman on a season-long loan deal .\nspanish police have raided a jewellery shop in barcelona and arrested a suspected member of the notorious pink panther gang .\nthe cost of building the thames tunnel will be passed on to customers in the form of higher water bills , a water expert has claimed .\nthe arts in northern ireland lost some of their biggest names in 2016 .\nyemen 's shia houthi rebels have freed the chief of staff they kidnapped last week .\nfrench presidential candidate francois fillon has won the backing of his party , the republicans .\nbbc newcastle and bbc look north are on-air seven days a week from 06:00 bst .\nnorth korea says it has carried out a live-fire drill simulating an attack on the south korean presidential palace .\ntwo men have been arrested on suspicion of attempted murder after a teenager was stabbed .\na labour councillor has been suspended from the party over anti-semitic tweets .\ntens of thousands of families with more than two children could face poverty under changes to benefits , say researchers .\nthe majority of payments to farmers have been made , scotland 's rural affairs secretary has said .\nderbyshire have appointed former player john wright as their new assistant head coach for t20 cricket .\nthe head of the metropolitan police has said officers `` fear the consequences '' of shooting someone .\nas the final whistle sounded at west ham 's boleyn ground , there was a collective sigh of relief among the home fans .\na 17-year-old boy has been charged after a teenager was taken to hospital after taking tablets he believed to be ecstasy .\nthe future prosperity of the people of wales is in the knowledge economy and the universities are the building blocks of that economy , a university leader has said .\nthe belfast-based mexican restaurant chain boojum has been sold .\nkaren bardsley has been ruled out of england 's euro 2017 qualifiers against belgium and bosnia-herzegovina .\na man has been jailed for eight months for failing to give money to a cancer charity in memory of a boy who died of the disease .\nsheffield wednesday have signed middlesbrough striker jordan rhodes on loan until the end of the season .\n`` i 've always had a talent for telling stories , '' says potato trader and entrepreneur david chase .\nhospitals in england are struggling to cope with rising demand and are missing key a&e targets , experts say .\nthe man in charge of the new home of the balmoral show in county down has said new roads will improve access to the event .\na woman who falsely claimed she was gang-raped by 14 men has been jailed for two years .\none of the passengers on board the thalys train that was attacked by a gunman in belgium has described how train staff locked themselves inside a coach .\nscotland 's men 's and women 's curling teams have secured places at the european championships in braehead .\nvictims of the thalidomide drug scandal have called on the first minister to support their campaign for compensation .\nat least 700 migrants are feared drowned after their boat capsized in the mediterranean sea .\nexeter chiefs have signed second-row geoff parling from leicester tigers and bath winger olly woodburn on loan until the end of the season .\na man has been injured after a firework was dropped through the doorway of a shop in north belfast .\nsingapore has tightened rules on taxi booking apps in a move aimed at curbing the growth of the industry .\nin case you missed it , here 's a round-up of all the talking points from the opening weekend of the premier league season ...\nthe rugby football league is to review footage of a brawl between keighley cougars and fryston warriors in the challenge cup .\nsports direct boss mike ashley has lost a high court battle with rangers football club over a merchandise deal .\na gloucester water treatment works has been fined # 180,000 after a worker was crushed to death by a telehandler .\nwhen i was at manchester united , we were known as the team that won away games against the rest of the premier league .\nfire crews have been working to clear up after flash flooding hit parts of norfolk .\nrepublican presidential candidate donald trump has said the us would not defend turkey in the event of a military coup .\ntwo rabobank traders have been charged in the us over the manipulation of the london interbank offered rate , or libor .\ndonald trump 's campaign manager corey lewandowski has been charged with assaulting a reporter .\nwhen i first met my new coach , ivan lendl , i did n't think he 'd want to touch me .\na fire has broken out at a school in west yorkshire .\ngeorge north and robbie henshaw have become the latest british and irish lions players to be ruled out of the tour of new zealand .\nnew york-based final frontier is the latest company to set up shop in the us space sector .\naston villa have appointed tom fox as their new director of football .\nthe family of a 21-year-old woman from bournemouth who has been missing in thailand for more than a week have appealed for help to find her .\nnorthern ireland 's first purpose-built mri scanner for children has been installed at the royal victoria hospital in belfast .\nabertay university has been named the world 's best university for its postgraduate courses in computer games development .\ntwo british soldiers who died during world war one have been reinterred in belgium .\ntransformers : age of extinction has taken the top spot at the north american box office on the 4 july holiday .\ngreat britain 's men were held to a goalless draw by australia in their opening match of the champions trophy .\na british man has begun a bid to become the first person to swim across the atlantic ocean from africa to brazil .\nthe bodies of two german climbers have been found on the matterhorn in the swiss alps , police say .\na diver has been rescued after getting into difficulty in the sea off oban .\nmillions of pounds worth of national insurance -lrb- ni -rrb- credits could be unclaimed by relatives who care for children , a pensions expert says .\ncharlton athletic head coach guy luzon says he is not concerned about his future ahead of saturday 's championship game against reading .\na rare sea turtle which washed up on the uk coast has died at an aquarium .\nhackers who claim to have stolen game of thrones scripts have released two episodes of the fantasy drama .\nin the past few years , the art world in africa has seen a boom in the number of galleries and galleries have opened in the region .\nan eight-year-old boy who ran a half marathon with a cane has been named yorkshire 's young citizen of the year .\nfour members of the french resistance have been inducted into the pantheon mausoleum in central paris .\na woman has admitted kidnapping a three-week-old baby boy from his shropshire home .\nup to a quarter of the free-to-use cash machines in the uk could be at risk , if a dispute between banks and the atm network goes ahead .\nhomeowners who lost part of their house when a river wall collapsed say they have been told they are not insured .\naustralia batsman phil hughes has died at the age of 25 , after being struck by a ball .\nbay tv , a 24-hour regional tv station for the north west of england , has gone into administration .\ncarwyn jones hopes her baby son will be able to speak welsh when he returns to cardiff for the champions league final .\nhundreds of students have been caught cheating in school examinations in the eastern indian state of bihar .\na huge payslip scandal involving some of iran 's top public sector officials has sparked fury in the country .\nthe us justice department has announced new rules that require a search warrant before police can use surveillance equipment to track mobile phones .\nsinger-songwriter lala njava is from the democratic republic of congo .\nas the street child world cup gets under way in rio de janeiro , bbc news looks at the life of rodrigo kelton , who was shot dead on his 14th birthday .\neu nationals should be allowed to stay in london after brexit , according to the london chamber of commerce and industry .\nandriy yarmolenko and evgen seleznyov scored as ukraine beat slovenia in the first leg of their euro 2016 play-off .\nat least 30 people have been killed and more than 100 injured in a truck bomb attack in a market in baghdad , iraqi officials say .\nscientists say they have made a `` breakthrough '' discovery about breast cancers that spread to the bone .\nphil taylor will face peter wright in the semi-finals of the premier league .\npolice in england and wales are to be given new guidelines on dealing with cases of domestic abuse .\nchipotle mexican grill has been linked to an outbreak of e. coli in five us states , health officials have said .\na payday lender who preyed on the `` weak '' has been given a suspended jail sentence after he repaid more than # 30,000 .\nin the latvian capital , riga , thousands of people are taking part in a memorial service .\nthe us is to send special forces troops to iraq , defence secretary ash carter has announced .\nthe trump administration has agreed a deal to sell military aircraft to nigeria , us media say .\na murder inquiry has been launched after the death of a 23-year-old man in larkhall , north lanarkshire .\na specialist search team is looking for a vulnerable woman who has been missing from her home in inverclyde for more than a month .\na nurse who injected her mother with a lethal dose of insulin has been found guilty of attempted murder .\na british firm has developed a 3d-printed prosthetic hand that can be fitted to amputees .\nthe uk 's inflation rate turned positive for the first time in almost 50 years in may , official figures show .\nfootball 's world governing body fifa says the 2022 world cup in qatar should be held in november and december .\ncampaigners fighting plans for holiday lodges at warwick castle have called for a public inquiry .\na man who was caught with herbal cannabis worth more than # 200,000 has been jailed for two years .\nthe number of little terns nesting on the east coast of england has dropped by 50 % , according to the rspb .\na group of students at queen 's university in belfast have begun a sit-in protest over the university 's investments in fossil fuels .\na statue of cricket legend dickie bird has been raised after it was targeted by pranksters .\nsinger phil collins has said he has spoken to joni mitchell for the first time since she suffered a stroke earlier this year .\nthree convicted rapists have absconded from a prison .\ntwo 12-year-old girls accused of stabbing a classmate to please the horror character slender man have pleaded not guilty by reason of mental disease .\ndefender stephen baxter has been released by league one side sheffield united .\ndylan hartley will captain england despite serving a 12-week ban for striking at the world cup , says ian ritchie .\ndonald trump 's announcement that former alaska governor sarah palin will be his running mate is a coup for the republican front-runner .\nthe uk 's largest naval dockyard has been put back into special measures because of safety concerns .\nthe cost of weddings and funerals in the church of england is to rise by up to 40 % .\nit 's not every day you get to see a building that resembles the twin towers of new york 's world trade centre .\na conman has admitted escaping from prison by posing as a court officer .\nfirst minister carwyn jones has said he `` never called for a veto '' over any brexit deal .\nhealth secretary jeremy hunt is to hold talks with junior doctors ' leaders this week in a bid to resolve a dispute over a new contract .\nshrewsbury town have signed striker luke barnett on a two-year deal following his release by mk dons .\nat the consumer electronics show -lrb- ces -rrb- in las vegas , disney has been showing off its latest gadgets and technology .\nbritain 's charlotte dujardin and carl brash are among the stars set to compete at the london international horse show , which starts on sunday .\nthe number of energy customers switching supplier has hit a record high .\nthe duke and duchess of cambridge have arrived in the remote himalayan kingdom of bhutan .\nlabour voters are `` fundamentally disagreeing '' on whether the uk should stay in or leave the eu , mp john mann has said .\na 12-year-old girl is in a critical condition in hospital after being hit by a car in dundee .\nmore than # 30m has been raised for hull 's year as uk city of culture in 2017 , organisers have said .\nformer world cup-winning footballer abby wambach has pleaded not guilty to a drink-driving charge in portland , oregon .\nwelsh liberal democrat leader kirsty williams has defended her party 's pledge to scrap tuition fees in wales .\nthe partner of one of three men missing after the collapse of didcot a power station has said she is `` disgusted '' rescuers have given up on finding him .\ntransport for london -lrb- tfl -rrb- is to freeze bus , tram and rail fares until 2020 , the mayor sadiq khan has announced .\nportugal reached the confederations cup semi-finals as group a winners after drawing 1-1 with australia in sochi .\nthe deaths of a couple in their 70s in ballycastle , county antrim , are being treated as unexplained .\nspanish banker ignacio echeverra , who died in saturday 's terror attack in london , has been awarded the country 's highest civilian honour .\nat least 29 people have been killed in a knife attack at a railway station in the chinese city of kunming , state news agency xinhua says .\ndonald trump is not the most likely candidate to win the us presidency .\na blue plaque has been unveiled to honour a scottish general who was in charge of a nazi concentration camp during world war two .\nan accident report into a crash on the isle of wight has criticised the lack of safety equipment on board .\na rail company accused of safety breaches has had its safety certificate revoked .\nlewis hamilton equalled michael schumacher 's record of 68 pole positions by taking pole position for the belgian grand prix .\nsyria has submitted its declaration of its chemical weapons programme to the international mission overseeing the destruction of the weapons .\nwhen acid was thrown in the face of pakistani human rights activist malala yousafzai , her life was turned upside down .\neuropean migrants are among those sleeping rough on the streets of a northamptonshire town .\nmanchester city moved up to second in women 's super league one with victory at birmingham city .\nhundreds of ` boris bikes ' are to be installed in bristol .\nthe environmental benefits of organic farming have been revealed in a study of fields in western france .\nvillagers have reached an agreement to buy a pub which was threatened with demolition to make way for a supermarket .\npakistan head coach waqar younis says he has `` no doubts '' about his team 's integrity despite their defeat by england in the first one-day international .\nit 's not a big deal that the european union is going to endorse theresa may as prime minister after the general election .\nthe first day of the glastonbury festival has been hit by bad weather .\nport vale reached the second round of the fa cup with a penalty shootout win over west brom .\nthe chief executive of the rugby football league has called for london rugby league to be given a strong presence in the capital .\nthe flight data recorder of a russian jet shot down by turkey on the syrian border last month has been opened .\nthe uk economy is `` turning a corner '' , chancellor george osborne has said in a speech in london .\neastenders actor ross kemp is to reprise his role as grant mitchell for dame barbara windsor 's final episodes of the bbc one soap .\nronnie o'sullivan suffered a 4-3 defeat by michael holt in the first round of the welsh open in cardiff .\nwork to stabilise a section of the a890 bypass near dornoch is to continue for up to three weeks .\noldham athletic have sacked midfielder cristian montano following allegations of match-fixing .\nmargaret thatcher was the prime minister of the united kingdom from 1979 to 1990 .\nmore than five million workers in the uk have now been automatically enrolled into a pension .\nas part of this year 's world music festival in cardiff bay , we asked the leading exponents of wales ' folk music to share songs that best represent each tradition .\na postman has apologised to a customer after his parcel fell down the toilet .\nsweden 's six-hour working day experiment has come to an end , but the country 's left-wing government is still pushing ahead with plans to extend the scheme to other care homes .\na cafe sign in the town where murdered schoolgirl april jones was last seen has been criticised for being `` inappropriate '' .\na new study suggests that angry faces make horses ' heart rates faster than happy ones .\ndavid beckham has paid tribute to an air ambulance doctor who saved the lives of 16 people in a rollercoaster crash .\ntom dumoulin lost more than two minutes as vincenzo nibali won stage 15 of the giro d'italia in bormio .\nbritain 's heather watson and naomi broady both lost in the first round of the aegon classic in birmingham .\nthe number of people visiting town centres in the scottish borders increased last year , according to the latest figures .\nthe remains of seamus wright and kevin mckee , two of the disappeared , have been formally identified .\na decision by the crown prosecution service -lrb- cps -rrb- to drop a rape case against a 15-year-old girl has been defended by the chief prosecutor in the rochdale child sex abuse case .\na petition calling for the removal of a us judge who sentenced a former stanford university student to six months in jail for sexual assault has gathered more than 100,000 signatures .\naston villa midfielder james milner has retired from international football .\nscunthorpe united have signed hull city left-back josh watson on a month-long loan deal .\ndirector joss whedon has revealed the name of the new villain in avengers : age of ultron at comic-con in san diego , us .\nthe uk has warned its citizens against travelling to north carolina and mississippi because of laws that discriminate against lesbian , gay , bisexual and transgender -lrb- lgbt -rrb- people .\nswansea city head coach paul clement says his side are in a `` heart-breaking '' position as they battle to stay in the premier league .\nthe rspb has warned about the dangers posed by plastic bags after a bird was photographed with one in its talons in the highlands .\nleeds united chairman steve raynor has defended owner massimo cellino after a protest outside elland road .\na new target to ensure all children in wales are `` immersed '' in welsh by the age of seven has been set by the welsh government .\ntravelling by air can be a stressful experience .\nformer south sydney rabbitohs forward joe burgess has taken part in a trial with the san francisco giants .\na man has died after falling ill at a house in south-west london .\nthe funeral has taken place in syria of a british man who died fighting against islamic state -lrb- is -rrb- militants .\nmeet former rally champion david llewellin and his shooting star son , ben .\nplans to give english mps the power to vote on welsh laws should not be brought into disrepute , a welsh mp has said .\nengineers have built a tentacle-like robot arm that could be used in keyhole surgery .\nthe chief executive of belfast international airport has written to enda kenny asking him to do more to promote northern ireland .\nthe father of edward snowden , the us intelligence leaker , has arrived in russia to learn more about his son 's plight .\ntwo wings at a prison in wiltshire have been `` destroyed '' during a disturbance involving three inmates .\nsyrian forces say they have carried out a chemical attack on rebel-held areas in the city of aleppo .\nlast winter 's floods were `` the most extreme on record '' , according to a study .\nlinfield will play celtic in the second qualifying round of the champions league after jordan stewart 's late goal saw off san marino 's la fiorita 1-0 .\nthe final boat built by a bristol shipyard has set sail for edinburgh .\nwork has started on a new library and community space at anglesey 's market hall in holyhead .\nscientists have reconstructed the fossilised face of a new species of mollusc called calvapilosa .\ngeorge osborne 's first budget as chancellor of the exchequer was dominated by tax cuts for the wealthy .\na holyrood committee is to review building standards in scotland following the grenfell tower fire in london .\nus actress shirley temple , known as the `` little miss '' , has died at the age of 85 .\na group of musicians in south sudan have appealed for an end to the recent fighting between rival factions in the world 's newest nation .\npoland has banned a russian biker group from entering the country , citing security concerns .\nronnie o'sullivan , john higgins and jimmy white are through to the second round of the scottish open at the sse hydro in glasgow .\nmental health providers in england say they are `` struggling to see the difference '' in extra funding for children 's mental health services .\nscotland has missed its annual target to reduce greenhouse gas emissions , according to official figures .\nthe leader of morocco 's main opposition party has accused the government of widespread fraud in sunday 's referendum on a new constitution .\nscooter gennett became the first player in four years to hit four home runs in a game as the cincinnati reds beat the pittsburgh pirates 13-7 .\na dumfries woman has been found guilty of having a pipe bomb in her flat .\nbrentford head coach mark warburton will leave the club at the end of the season .\nhuman footprints found on a ceredigion beach could be up to 4,000 years old , experts have said .\nbrazilian president dilma rousseff has marked the start of the torch relay for the 2016 olympics in rio de janeiro .\neight men have been rescued after their fishing boat got into difficulty off the coast of argyll .\ntens of thousands of people have attended a popular annual pink dot rally in singapore , amid a row over gay rights and ramadan .\nfour members of a gang who stole artefacts worth up to # 57m -lrb- $ 79m -rrb- from museums and auction houses have been convicted .\na children 's nursery in ceredigion has sent a letter to parents saying it has been targeted by a stranger .\ntrading standards in england are `` as strong as its weakest link '' , a leading expert has said .\nthe un mission fighting ebola in west africa has ended its operations in the ghanaian capital , accra .\nformer australian rugby league international karmichael hunt has been charged with drug offences .\nthe egyptian press is divided over the country 's new constitution , which was approved by more than two-thirds of voters in a referendum on sunday .\nthe brother of one of the 14 people killed on bloody sunday has said a march by former soldiers in londonderry is `` totally insensitive '' .\nthe russian consul general in the greek capital , athens , has been found dead in his apartment .\nthe health of children 's teeth in wales is lagging behind the rest of the uk , according to a long-running survey .\na prototype electric car built by students in switzerland has set a new world speed record .\nliverpool city council has backed calls for newsagents to stop selling the sun over its coverage of the hillsborough disaster .\nat least 35 people are reported to have been killed in an explosion in south-eastern nigeria .\naverage speed cameras are to be installed on some of scotland 's busiest motorways as part of a # 500m project .\ndundee united have signed teenage goalkeeper harry lewis from southampton .\nthe search is continuing in the french alps for two climbers who have gone missing on one of the country 's highest peaks .\nrock band u2 have paid tribute to their tour manager dennis sheehan , who has died in los angeles .\nchina has accused the us of '' militarisation '' of disputed islands in the south china sea .\nthree hospitals in the us have been attacked by malware that encrypts files and demands a ransom to unlock them .\ntravel search firm skyscanner has reported a sharp rise in revenues , helped by strong growth in asia .\nthe government 's plans to ban so-called legal highs have been heavily criticised by the expert panel set up last year by the home office 's advisory council on the misuse of drugs .\nthailand 's former prime minister yingluck shinawatra has been charged with negligence over a rice subsidy scheme .\nit was another quiet summer of transfer activity in scotland 's top flight .\na new caledonian macbrayne ferry has been withdrawn from the stornoway-ullapool route after an engine room fault .\nnicklas bendtner suffered a suspected broken leg as nottingham forest beat birmingham city in the championship .\npop stars taylor swift and katy perry have been trading barbs on social media over the past few days .\ncornwall beat lancashire to win the county championship at twickenham .\nchelsea moved three points clear at the top of the premier league after a 4-0 win over arsenal at stamford bridge .\nthe history of the `` windrush generation '' is being explored in an exhibition at nottingham carnival .\ngoogle has developed a way to remove the puzzles that appear when people try to log in to websites .\na couple from derbyshire have won the european wife carrying championships in austria .\nthe use of cash for school meals should be scrapped in wales , an am has claimed .\nmore than 1,000 people in the south eastern trust area are waiting up to a year for their first urgent consultant-led appointment at the ulster hospital .\ngreat britain 's liam cassells and tom scrimgeour won gold in the lightweight double sculls at the world rowing championships in rotterdam .\nnineteen west midlands police officers and staff have a case to answer for misconduct over the death of a domestic abuse victim .\nthe mexican comedian ruben aguirre has died at the age of 83 .\nsouth africa coach ephraim mashaba says the blame for his side 's poor form in africa cup of nations qualifying goes to the team as a whole .\nmatthew todd miller : april 2014 - september 2014 .\nan anonymous donor has paid for the life-saving treatment of a five-year-old boy with leukaemia .\nlondon 's tower bridge is to close to traffic for six months for `` essential maintenance works '' .\nsecurity flaws in the computer systems used by airlines and travel agents have been exposed .\na catholic priest from the republic of ireland has been declared a saint by the vatican .\nedinburgh zoo has confirmed that its female giant panda tian tian is pregnant .\nthe great manchester run will go ahead on sunday , despite the terror attack at manchester arena .\nmsps have called for a `` decent cup '' of coffee for new and existing members of the scottish parliament .\ndefending champion stuart bingham was beaten 6-3 by joe perry in the first round of the uk championship in london .\nthe afghan taliban leader mullah akhtar mansour has been killed in a us drone strike , officials say .\nthe mother of murdered florida toddler caylee anthony has spoken publicly for the first time since her acquittal in 2011 .\nengland 's sarah taylor is to take a break from international cricket to focus on her club career .\ntake a look at this video of a group of children singing on the back of a bus .\ncampaigners have stepped up a bid to save a 100-year-old public swimming baths in reading .\nat least 18 people have been killed in a bus that burst into flames after being hit by a lorry on the a7 motorway in germany .\nnaghel houvenaghel has become the latest high-profile cyclist to criticise british cycling .\nthe sentencing of a man found guilty of murdering his former lover is to be filmed live on twitter .\nformer germany midfielder thomas hitzlsperger has become the first player to come out as gay in the bundesliga .\npolice in the eastern indian state of west bengal have arrested a suspect in the rape of an elderly nun in march .\nit 's not every day you see 500 people queuing outside a theatre .\na woman accused of defrauding an 87-year-old woman out of more than # 100,000 has told a court she is a `` woman of faith '' .\nthe house of lords european union committee has released a report that looks at the risks and opportunities for the uk fishing industry .\n2013 was the year of the flag .\na mechanic who drove a customer 's car faster than the speed limit during a service has been sacked .\na british naval ship has arrived in the southern part of the search zone for the missing malaysia airlines plane after a chinese vessel detected two underwater signals .\nmame biram diouf 's late equaliser earned stoke city a point at premier league leaders chelsea .\nwasps moved to within four points of premiership leaders saracens with victory over sale .\nwycombe wanderers have signed leyton orient 's sam kashket and southampton midfielder jack gape on loan . .\ngrand national-winning horse many clouds died from a haemorrhage `` rarely seen on the racetrack '' , an investigation has found .\na passenger plane was forced to make an emergency landing after being struck by lightning .\na dorset gp surgery has been rated `` inadequate '' by the health watchdog .\n`` there 's only one tony stewart . ''\nmsps are to examine the controversial payments made to returning officers ahead of elections and referendums .\na group of traveller families have moved into a field close to the dale farm site in essex .\nfirefighters have been tackling a blaze at a derelict victorian building in glasgow 's harbour area .\ncolin fleming says tennis players should be banned from the sport if found guilty of match-fixing .\nplans for a new railway station in a lancashire town have taken a step forward .\nchancellor of the exchequer george osborne is back in the commons .\nspain 's inditex , owner of chains including zara , massimo dutti and pull & bear , has reported a rise in profits and sales .\na multi-vehicle crash on the m74 -lrb- m -rrb- in dumfries and galloway has been caused by hail .\nin 2003 , the daily telegraph ran a story about a footballer who had been locked up in a mental health unit .\nformer nigeria coach sunday oliseh says he is `` very pleased '' with the results he has achieved since taking charge of belgian second division side fortuna sittard .\nsuper league leaders warrington wolves will host wigan warriors in the quarter-finals of the challenge cup .\nkenya 's president uhuru kenyatta has called for an end to the country 's dependence on foreign aid .\npassports are being scanned at uk airports and ferry terminals as part of new exit checks .\nleeds united manager stuart mccall has criticised millwall fans for invading the pitch after saturday 's league one play-off final .\na football fan has completed a 1,000-mile -lrb- 1,770 km -rrb- run from liverpool to wembley .\nadama diomande scored twice as hull came from behind to beat league two exeter in the efl cup .\nfrench prime minister manuel valls has announced a new package of financial aid for young people in response to weeks of protests against his labour reforms .\nsouth africa scrum-half ruan van rooyen says his southern kings team-mates would prefer to play in the pro12 .\nprime minister david cameron has hinted that sir jimmy savile may have his knighthood taken away .\na stranraer schoolgirl who has a rare genetic condition is backing a campaign to get the drug which helps her treated on the nhs .\nusain bolt qualified fastest for the men 's 100m semi-finals at the rio olympics .\nmark mcghee has urged scotland supporters not to boo the team in sunday 's world cup qualifier against slovenia .\nulster have appointed jono gibbes as their new head coach on a three-year deal .\neast dunbartonshire council has been criticised in a report by scotland 's public spending watchdog .\na man accused of murdering his partner 's three-year-old son punched another child in the stomach , a court has heard .\nleyton orient 's league two play-off hopes suffered a further blow as they were beaten at crawley town .\nthe european union has pledged 1bn -lrb- $ 1.1 bn ; # 750m -rrb- to a trust fund to help africa tackle the migrant crisis .\nbrechin city came from two goals down to draw with livingston in the scottish championship .\na woman has been rescued by firefighters after getting stuck in a tyre in a play park in aberdeenshire .\na car ended up on top of another in a car park on the a74 -lrb- m -rrb- in dumfries .\na vote by the uk to leave the european union would be a `` shock to the world economy '' , finance ministers from the world 's biggest economies have warned .\nderry city moved up to third place in the premier division as rory boyle 's first-half strike earned them victory over wexford youths at the brandywell .\na `` malicious cyber attack '' on the city of edinburgh council 's website has exposed the email addresses of about 20,000 people .\nhull kr came from behind to draw with championship side halifax in the challenge cup first round .\nthe van attack in barcelona 's historic las ramblas district killed 13 people and injured 120 .\none of scotland 's most famous shipyards , the fairfield yard in govan , has closed .\nthe leader of the baloch separatist movement in pakistan 's balochistan province has said he is prepared to hold talks with the military .\nscientists have built a robot to help them answer one of the big questions about sauropod dinosaurs from the jurassic period .\na scottish sea salt producer has signed a deal with a supermarket chain to sell its product in its stores .\nparalympian david smith had to learn to walk again after a serious spinal injury .\ntwo women have been rescued by the coastguard after getting into difficulty while walking on the isle of lewis .\ntwo men who died in an industrial accident were working in a paint booth bought from an raf base , an inquest has heard .\na gang who stole more than # 1m worth of copper from railway lines have been jailed .\nbournemouth manager eddie howe says his side 's poor run of form should not be down to a lack of confidence .\nvolkswagen has said it will stop car and parts production at five more plants in germany because of a dispute with two suppliers .\naustralian prime minister tony abbott has denied that the president of the human rights commission -lrb- hrc -rrb- was asked to resign .\nhuddersfield giants have signed warrington wolves full-back alex ormsby on a three-year deal .\nandy warhol 's iconic portrait of chairman mao is to be auctioned in hong kong next month .\nan indian doctor has been suspended from practising medicine in australia after using a false identity to work as a junior doctor .\na 17-year-old boy has been charged with the murder of celebrity bodyguard lee hayden in east london .\nmatch reports from saturday 's scottish premiership and championship games .\nthe mother of a man accused of stabbing a pensioner to death in a road rage attack has told a court her son 's mental health had been `` failed '' .\nthe giza pyramids in egypt have been found to have `` thermal anomalies '' , the antiquities ministry says .\nnorwich city have signed striker alex pritchard from tottenham hotspur for an undisclosed fee and goalkeeper nathan jones on a free transfer .\namerican justin gatlin won the 100m at the diamond league meeting in brussels with a season 's best time of 9.98 seconds .\nsunderland 's adnan januzaj has been ruled out for six to eight weeks with a knee injury .\na collision between earth and a planet like mercury could explain the abundance of carbon in the planet 's mantle .\nmatt parkin scored twice as forest green rovers came from behind to beat braintree town and go top of the national league .\nin the world of science , women make up less than 1 % of scientists .\nthe cost of renting a home in london is `` unaffordable '' for most families , according to a report by the housing charity shelter .\nthe former governor of the northern mexican state of tamaulipas , tomas yarrington , has been arrested , officials say .\na gull has died after being shot in the head with an airgun in dumfries .\nrussian president vladimir putin and german chancellor angela merkel are due to meet for the first time in nearly three years .\naberdeen manager derek mcinnes says he is `` fully focused '' on his job at pittodrie despite being linked with the rangers post .\ncardiff city manager neil warnock says defender jazz richards ' injury problems have been `` difficult '' to deal with .\nsaracens director of rugby mark mccall says there is `` no reason why we ca n't get better '' after reaching the european champions cup final .\nthe result of the eu referendum is a seismic moment for british politics and politicians must seize it with both hands .\ndebut writer kj orr has won the bbc national short story award for her story disappearances .\nross county have signed aberdeen midfielder paul quinn on loan until the end of the season .\nikea has issued a global recall of one of its beach chairs after reports of users being injured by it .\nbeing overweight in late adolescence increases the risk of bowel cancer later in life , a study suggests .\nhibernian head coach neil lennon expects most of his squad to stay at the club next season .\nthe 70th anniversary of one of the isle of man 's worst air disasters has been marked with a service at st peter port .\na new # 350m science and technology hub has opened in newcastle .\nradon gas has been found in more than 100 homes in the channel islands for the first time .\ntwo women in south west scotland have been conned out of thousands of pounds by callers claiming to be from bt support .\na fire has badly damaged a derelict 18th century mansion house in fife .\nin our series of letters from african journalists , novelist and writer yousra elbagir looks at the poetry scene in sudan 's capital , khartoum .\naustralian politician bob katter has defended an election ad in which he appears to shoot dead political rivals .\nantibiotic-resistant sepsis is on the rise in the uk , a leading doctor says .\nthe 2017 winter olympics are taking place in pyeongchang , south korea .\na rare biblical manuscript has been saved from extinction after a # 1m fundraising campaign .\na man arrested on suspicion of murdering a woman whose body was found in a field in hampshire has been released on bail .\ncuba has condemned president donald trump 's decision to tighten the us embargo on the island .\nnico rosberg beat mercedes team-mate and title rival lewis hamilton to win the singapore grand prix .\nin a week when scotland 's first minister unveiled plans for a possible second referendum on independence , the strength of nationalist sentiment has usually been gauged by polls .\nthe army has missed its recruitment target for reservists for the second year running , figures show .\nsix people , including four children , have been taken to hospital after a two-car crash in north yorkshire .\nmsps have criticised the finance secretary over his refusal to hand over planning information ahead of the scottish budget .\nworcestershire have re-signed new zealand all-rounder mitchell santner for the 2017 t20 blast campaign .\nscotland manager gordon strachan says scott brown has been a `` big part '' of his career .\nthe obama administration is drafting a plan to close the guantanamo bay prison , the white house has said .\na jet-powered unmanned warplane has flown for the first time over the pacific ocean .\nparents of children who went to a holiday camp which was shut down by ofsted will be refunded .\na dog that sparked a global campaign to save it from being destroyed is to be returned to its owners in belfast .\na conservative mp 's chief of staff has appeared in court charged with raping a woman at parliament .\nthe uk government 's target for superfast broadband is `` woefully inadequate '' , according to the institute of directors -lrb- iod -rrb- .\nmore than 400 pilot whales are stranded on a beach in new zealand .\nthe international olympic committee -lrb- ioc -rrb- says it is `` happy '' to discuss the possibility of north and south korea co-hosting the 2018 winter olympics .\nswiss bank ubs has been placed under official investigation in france over alleged tax evasion .\nbritish astronaut tim peake has been answering questions from primary school children in a live internet talk .\nthe us military says it has ended its search for three marines missing after an aircraft crash off the coast of australia .\nlivingston moved seven points clear at the top of scottish league one with a 3-1 win over 10-man east fife .\nnew traffic lights are to be installed at a busy junction in plymouth after a rise in the number of accidents .\nthe scottish professional football league -lrb- spfl -rrb- has recovered money paid into a fraudulent account .\nsuper league side castleford tigers have signed st george illawarra dragons centre michael shenton on a two-year deal .\na `` thug '' plant has turned bluebells in guernsey blue .\nasda 's website was open to hackers for more than two years , it has been revealed .\npolice investigating the deaths of eight cows in conwy county have released a cctv image of a man they want to trace .\nsheffield 's crucible theatre has been nominated for three prizes at the critics ' circle theatre awards .\na baby pine marten has been filmed for the first time in wales .\nfour men have been arrested on suspicion of possessing a firearm after police stopped a car in north london .\ntrading standards officers are warning young people about the dangers of buying cosmetic contact lenses .\na man accused of murdering a woman in a `` frenzied attack '' has told a court he saw a hammer being swung at her .\na new library and community centre is to be opened in cardiff .\nchina has criticised the arrest of more than 100 chinese nationals in zambia on suspicion of illegal mining and human trafficking .\ntullow oil has reported a loss of # 1.2 bn for 2015 as the slump in oil prices continued .\nsunderland band pulled apart by horses have closed down their pop-up music shop after four years in the city .\nfunding for flood defences in wales is to be cut for the third year in a row .\nthe liberal democrats have apologised after launching a campaign website with the name of a 1920s estate agency .\nrobin mcbryde will take charge of wales on the 2017 lions tour .\nunpaid internships should be banned to improve social mobility , mps say .\nkeurig green mountain , the maker of single-serve coffee pods , has agreed to be bought by a private equity firm for nearly $ 14bn -lrb- # 9.5 bn -rrb- .\nus secretary of state rex tillerson has said he is `` disappointed '' by qatar 's rejection of a list of demands made by four arab countries against it .\nthe scottish government is to invest # 20m in general practice over the next year .\nformer world champion mark williams will begin his bid to qualify for the world championship on tuesday .\nmore than 200 people have been arrested during protests against an oil pipeline in the us state of north dakota , police say .\nchelsea may appeal against john terry 's red card in the fa cup win over peterborough , says manager antonio conte .\nmarta rodriguez does n't spend much time in bed .\nis a vote to leave the european union going to be bad for northern ireland ?\na man accused of being part of a # 144,000 insurance fraud ring has told a court he was injured in a car crash .\na head teacher in lincolnshire is offering his staff a ` duvet day ' every year in a bid to recruit more teachers .\none of the world 's last flying lancaster bombers has been forced to make an emergency landing .\ncolchester united have signed former watford goalkeeper sean gilmartin and brought in dean brill on a one-year deal .\nthe european parliament elections saw a slight increase in the number of meps , with 736 seats up from 736 in the 2014 vote .\nhull kr captain jamie peacock is unsure if albert kelly will play for the club next season .\nopponents of gay marriage in california have asked the us supreme court to reinstate a ban on same-sex marriage .\nnew manager craig hignett says he was taken by surprise by the standard of training at league two strugglers hartlepool united .\nrussia has promised to look after a polish journalist 's cat , days after ordering him to leave the country .\nthree-time world champion mick fanning has been knocked out of the final world surf league -lrb- wsl -rrb- event of the season after the death of his brother peter .\nhundreds of thousands of small businesses will be spared paying business rates , the chancellor has announced in the budget .\nengland footballer adam johnson had sex with a 15-year-old fan in his car , a court has heard .\nreports of racist abuse at amateur football matches in wales are being investigated by the football association of wales .\ntheresa may is giving the impression she does not listen to the welsh government , the first minister has warned .\ndavid cameron 's eu summit this week is shaping up to be the most important in his political career .\njersey 's bid to join european football 's governing body uefa has been rejected .\na former republican presidential candidate has criticised snoop dogg for a music video in which he shoots donald trump .\na man has appeared in court charged with causing death by dangerous driving after an 18-year-old was hit by a car in bristol .\nrangers have signed midfielder graham dorrans from norwich city for an undisclosed fee .\non the outskirts of the colombian city of cali , in the department of antioquia , there are a number of wooden huts that look like something out of a james bond movie .\nrihanna has teamed up with sir paul mccartney for a new song called four five seconds .\nnato is carrying out its first anti-submarine exercise off the coast of the uk .\nstephen keshi has signed a new two-year contract to remain as nigeria coach for a third time .\ntrainspotting author irvine welsh is in the running to win this year 's scottish book of the year award .\ncomic book superhero wonder woman has been appointed as the united nations ' honorary ambassador for women and girls .\nlondon welsh say they have agreed a deal to sell the club to a us-based group .\nbournemouth and poland goalkeeper artur boruc has announced his retirement from international football .\na man has been charged with the murder of a man who died after an alleged assault in a north yorkshire pub .\nthe president of the orange order in northern ireland has said there will be protests across the island of ireland on friday .\na review of inquests into troubles-related deaths in northern ireland is under way .\nparaguay 's president horacio cartes has announced he will seek re-election in 2016 .\nlee mcculloch has joined kilmarnock on a free transfer .\na couple who paid for their parents ' funerals have been left `` completely penniless '' after the funeral company went out of business .\nthe home secretary has said it is `` too early '' to say whether net migration will feature in the conservatives ' election manifesto .\nwigan warriors moved level on points with super league leaders catalans dragons with a convincing win over leeds rhinos .\nmedia regulator ofcom has invited bids for new local tv channels in 21 areas of the uk .\nthe body of a seven-year-old boy has been recovered from a river in the scottish borders .\nthe government 's plans for new grammar schools in england will not improve educational standards for free school meals pupils , say experts .\na man and woman accused of murdering a toddler have been remanded in custody .\ntwo legal challenges to the ban on same-sex marriage in northern ireland have been dismissed .\npetra kvitova beat simona halep in straight sets to reach the final of the wuhan open .\nthe grammy awards are one of the biggest and most prestigious music awards in the world .\nbury have signed midfielder michael brown on a one-year deal after a successful trial .\nthe ulster unionist party -lrb- uup -rrb- has accused the democratic unionist party -lrb- dup -rrb- of trying to `` sabotage '' the northern ireland executive .\nhaiti is still reeling from the devastation of hurricane matthew .\nwatford have signed colombia defender juan zuniga from napoli on a four-year deal for an undisclosed fee .\ntaiwan has banned its civil servants from going to china to pursue higher education , citing national security .\njoseph parker retained his wbo heavyweight title with a unanimous points win over razvan cojanu in auckland .\nshane williams has ended his playing career with the ospreys by joining a japanese side .\nthe first boeing 787 dreamliner to be flown since the plane was grounded in january has taken off from addis ababa .\nspain 's alberto contador beat tour de france rivals chris froome and richie porte to win the criterium du dauphine .\na race at great yarmouth was abandoned after the wrong horse was declared winner .\ntwo of africa 's biggest pop stars have recorded a song in response to recent attacks on foreigners in south africa .\na greater manchester biscuit maker has gone into administration , blaming the uk 's vote to leave the european union .\nthe former treasurer of spain 's governing people 's party -lrb- pp -rrb- has been questioned by anti-corruption prosecutors .\nchris wood and souleymane doukara scored second-half goals as leeds united beat burton albion at elland road .\na group of tech giants has pledged $ 1bn -lrb- # 700m -rrb- towards research into artificial intelligence -lrb- ai -rrb- .\na shortage of prison officers contributed to a riot at a jail last year , a report has found .\nthe world 's best gravy wrestlers have taken part in a charity event .\nthe french author michel houellebecq has won the prestigious goncourt prize for literature for his satirical novel the map and the territory .\ncristiano ronaldo scored a hat-trick as real madrid beat kashima antlers in extra time to win the club world cup in japan .\nthe prime minister 's comments on school sports have been met with a mixture of praise and criticism .\ntesla 's autopilot feature was not to blame for the death of a driver in may , us regulators have said .\nworld champion mark selby eased into the second round of the world championship with a 10-1 win over qualifier barry o'brien at the crucible .\na protected bird of prey has been shot and killed in bedfordshire .\nthirteen people have been charged in connection with an investigation into slavery at traveller sites in lincolnshire .\nus vice-president joe biden has praised canada 's prime minister justin trudeau as a `` genuine leader '' .\n`` i 'm rachel and i 'm famous . ''\nthe ebola outbreak in west africa is spiralling out of control .\nis amazon , the world 's biggest online retailer , paying no tax in the uk ?\na ship 's captain has been fined for being drunk while in charge of a container ship in belfast harbour .\na man accused of murdering his ex-girlfriend told a friend she would `` pay for what she 's done '' , a court has heard .\ntwo two-year-old boys in the us state of ohio have crashed their mother 's car after taking it for a joyride .\nrolling stones frontman sir mick jagger has paid tribute to his partner l'wren scott .\nbournemouth captain tommy elphick could be out for up to 10 weeks after undergoing ankle surgery .\ngateshead and guiseley shared the spoils in a 1-1 draw at the international stadium .\nthe us government 's website has been flooded with automated comments against proposals to curb net neutrality .\na giant `` corpse flower '' at edinburgh 's botanic garden is expected to bloom .\nthe government has delayed a decision on a new nuclear power plant in the uk , hours after it approved investment in the project .\na public vote is under way to choose the uk 's official bird .\njack marriott scored a hat-trick as peterborough thumped bristol rovers at the memorial stadium .\n`` i 'm fine , thank you , '' cynthia whispered to me as she lay on the floor of the classroom where she 'd just been shot dead .\nspanish police say they have broken up a chinese human trafficking ring .\nglentoran manager gary haveron says his players must show passion and belief in saturday 's derby against linfield at the oval .\nwhen jordan spieth was a 12-year-old amateur at augusta national in 1999 , his father offered him a pair of clubs for free .\nlance armstrong 's confession to oprah winfrey that he used performance-enhancing drugs during all seven of his tour de france victories has led to widespread criticism of the disgraced american .\nthe us state of california has declared a state of emergency in two counties hit by wildfires .\nhigh street retailer next has been ordered by the court of appeal to pay more than # 100m in back taxes .\nthousands of people have attended the twelfth of july parade in rossnowlagh , county donegal .\ntorquay united moved to within four points of national league safety with victory over struggling kidderminster harriers .\nwork to repair a flood-damaged bridge is to start in july , councillors have agreed .\na seal has been released back into the sea after it was found tangled up in fishing net on the aberdeenshire coast .\ntwo wards have been closed at the university hospital of wales in cardiff due to an outbreak of flu .\never wondered if you could work for a company without a boss ?\na man has been arrested on suspicion of arson after a number of vehicles were set on fire in wiltshire .\nthis year marks the centenary of arthur miller 's birth , and the playwright 's work is being celebrated across the world .\nedgardo bauza has been sacked as argentina coach after his side 's poor world cup qualifying form .\nbirmingham city midfielder lee caddis is set to leave the club .\nthe united arab emirates ' ambassador to the us has backed apple 's refusal to help the fbi access data on an iphone used by one of the san bernardino attackers .\nthe government 's plan to tackle air pollution in england has been criticised by the high court .\nhovertravel has provisionally agreed a plan to run a summer ferry service between the isle of wight and portsmouth .\nnasa 's mars rover , curiosity , has taken another picture of the surface of the planet .\neurope 's ryder cup vice-captain paul lawrie believes rory mcilroy 's recent form bodes well for this week 's event at medinah .\na bar in county londonderry has been ordered to close after a man died following a night out .\nthe official opening of two new rspb nature reserves in cambridgeshire has been delayed because of flooding .\na classic car festival has been cancelled because of funding cuts , organisers have said .\na christmas song has been sung in london 's sewers to highlight the problem of fatbergs .\nderbyshire all-rounder luke wells has signed a new three-year contract with the club .\nall images are copyrighted .\ndefending champion judd trump will face stuart bingham in the final of the world grand prix in preston on sunday .\neven the labour party do not want to remain part of the eu 's single market , welsh secretary alun cairns has claimed .\nthe us is once again in the grip of a crisis over police shootings of black people .\ntoyota has raised its full-year profit forecast , citing a weaker yen and a tie-up with smaller rival suzuki .\n-lrb- close -rrb- : wall street markets closed higher on tuesday , with technology stocks leading the way .\na row has broken out over plans to build 4,000 new homes in a garden village .\nthe psni has said it has completed an investigation into claims made by former soldiers about their activities during the troubles in northern ireland .\nsaif al-arab gaddafi , the youngest son of libya 's leader col muammar gaddafi , was not a senior military commander or propagandist .\nall pictures are copyrighted .\nsingapore retailers have been asked by the government to stop buying products from firms suspected of contributing to the haze in the city-state .\na close associate of radical preacher anjem choudary has been jailed for three years for assaulting a boy and girl who were hugging .\nall photographs joseph fox .\nthere 's been a big debate in the uk about whether or not to punish bullies .\nthe international paralympic committee -lrb- ipc -rrb- says it is investigating reports that algeria 's goalball team has boycotted two matches at the rio paralympics .\na new website allowing people to lodge petitions has been launched by the house of commons .\nliverpool defender mamadou sakho 's failed drugs test was caused by `` incomplete '' communication between uefa and the world anti-doping agency -lrb- wada -rrb- .\ngirls in the uk are less active than boys , according to a study of seven-year-olds .\nhow often do you check your social media accounts ?\nstrictly come dancing 's steve backshall and ola jordan have spoken out for the first time about bullying claims .\nmanchester united midfielder bastian schweinsteiger has been banned for three games for violent conduct .\nplans for a safari park , hotel and water park have been given the go-ahead .\nthe mother of a teenager who disappeared nine years ago has appealed for the owner of a car seen in the town to come forward .\nan employment agency 's job advert for a `` sexy female assistant '' has been branded `` sexist '' .\nmore than a million rail passengers in the uk are paying too much or too little for their journey , according to the rail regulator .\neleven members of a banned cult have gone on trial in china accused of beating a woman to death in a mcdonald 's restaurant in shandong .\ntwo german tourists have been sentenced in singapore to three-and-a-half years in jail for vandalising public property .\nmansfield town have signed crewe alexandra striker michael oliver on a deal until the end of the season .\ninvestment in aberdeen 's commercial property market fell by more than 60 % in 2016 , according to a report .\nthe ministry of defence has announced brecon barracks will close in 2026 .\nhighland council is seeking quotes for repair work after complaints about people urinating and defecating in the highlands .\nthe last thing britain needs is a second general election before christmas , lib dem leader nick clegg has warned .\nhibernian manager neil lennon believes his players will `` enjoy '' their return to the scottish premiership next season .\njeremy corbyn has won the backing of the largest union , unison , in the labour leadership race .\nmeet the team behind the world 's first electric bus that runs on formic acid .\nthe row over university funding in wales has rumbled on for a while .\nross county won the scottish league cup for the first time in their history as alex schalk 's injury-time goal secured victory over hibernian .\ntwo passenger planes have been involved in a mid-air collision at an airport in detroit in the us .\nsir steve redgrave and chris hoy will be part of the bbc 's coverage of the rio 2016 olympic and paralympic games .\nin the 1970s and 1980s , magician paul daniels was one of the most influential entertainers of his generation .\nalex salmond has been scotland 's first minister for the past 10 years .\ncambridge united will host manchester united in the fourth round of the league cup .\ngreat britain beat the netherlands 3-0 to secure their second win in the eurohockey championships in dusseldorf .\nprosecutors in the trial of a man accused of carrying out the boston marathon bombings have rested their case after calling more than 100 witnesses .\nrussia says it has carried out air strikes on islamic state -lrb- is -rrb- targets near the ancient city of palmyra in syria .\na fifth ukip councillor has defected from the party to form an independent group .\nnorwich city midfielder alex tettey says his goal against southampton on saturday was inspired by manchester city 's yaya toure .\na 20-year-old black woman has been shot dead in a suspected road rage incident in the us state of texas .\na staffordshire bull terrier with a `` unique '' lower jaw has found a new home after a social media campaign .\na food truck serving food to members of the public is to double the number of trainees it employs .\nstar wars actor john boyega has given back to the theatre company he used to play in as a child .\na native american tribe in the us state of south dakota plans to open a marijuana resort .\nsinn féin 's martin mcguinness has been sworn in as first minister at the northern ireland assembly .\na man who spent more than 20 years on death row in the us state of texas has written his own book about his life .\nplans to redevelop bristol city 's ashton gate stadium are set to go ahead .\nukip leader nigel farage has been `` compelled '' to withdraw his resignation , the party has said .\ngreat britain 's men lost their final warm-up game against the netherlands 84-77 at the copper box in london .\nglamorgan chief executive hugh morris says he is `` proud '' to have hosted three full houses for england internationals in 19 days in cardiff .\nmilos raonic won his first atp title with a 6-4 6-4 victory over roger federer in the brisbane international final .\njeremy corbyn is on course to win the labour leadership contest , according to a new opinion poll .\na man who died after being hit by a car in barnsley has been named .\na council which warned two years ago it faced `` bankruptcy '' has said it will have to make an extra # 134m of cuts .\nderry boss damian barton says brendan rogers has been `` very quiet '' about the `` horrific '' incident that left the midfielder needing stitches in his lip in the mckenna cup final defeat by tyrone .\na man jailed for filming himself having sex with a 15-year-old girl has won an appeal against his conviction .\nbearded dragons have been found abandoned in a cardboard box at a swansea pet shop .\ngreat britain 's wheelchair basketball team have been back in training !\na paraglider narrowly avoided a mid-air collision with a military transport plane , a report has found .\na man has been threatened with a gun during an armed robbery in county antrim .\nvillagers are calling on the government to tackle `` nightmare '' traffic caused by the dualled a303 at stonehenge .\ncolum eastwood has announced he will challenge the sdlp leader , alasdair mcdonnell , for the party leadership .\nmsps have launched an inquiry into the gender pay gap in scotland .\nwidnes vikings moved out of the super league relegation zone with a hard-fought victory over st helens .\nindia is using indelible ink to stop people from exchanging their banned big bank notes .\na disabled man has been attacked in his own home during a `` vicious '' armed robbery in the govan area of glasgow .\ntalks between labour and plaid cymru to try to form a welsh government have ended without agreement .\nthe owners of a ceredigion animalarium have been fined for illegally selling protected animals .\njames chester , paul dummett and mitch matthews have been recalled to the wales squad for the euro 2016 qualifier against belgium on 5 june .\nmany of us struggle with mental health issues at some point in our lives .\nan investigation into a labour mp 's claims about the death of her husband has upheld most of her allegations .\nmore needs to be done to tackle alcohol abuse in wales , a report has said .\nsir elton john has postponed a series of concerts after being diagnosed with an appendix abscess .\nengland 's nick simpson has been knocked out of the world squash championship in the second round by egypt 's karim gamal abdel kawy .\na plane had to make an emergency landing because of a series of technical problems , a report has found .\nnew nottingham forest manager philippe montanier says the league cup is `` the only way '' for the club to qualify for european competition .\nformer japan striker kazuyoshi miura has signed a new one-year contract with j-league side sagan tosu .\nlesotho 's prime minister has accused the army of staging a coup , hours after troops fired warning shots in the capital .\ncontractual issues at london gatwick airport will hit full-year profits at logistics firm menzies aviation .\nsome uk universities are considering opening branches in eu countries in the wake of the brexit vote .\nsale sharks director of rugby steve diamond says the premiership club are close to signing `` four or five international players '' .\nthere is no `` compelling evidence '' a tumble dryer was the cause of a fire which killed two men in a flat , an inquest has been told .\nthe story of a chinese teenager hiding in the cargo hold of a flight from shanghai to dubai has gone viral on social media .\namerican bubba watson holds a one-shot lead after the first round of the shenzhen international .\nthree pieces of equipment have been stolen from a public works site in dumfries and galloway .\naustralia 's scott hend leads england 's tyrrell hatton by one shot going into the final round of the bmw pga championship .\nliverpool manager jurgen klopp says goalkeeper simon mignolet `` needs help '' from his team-mates after another costly error in the draw against arsenal .\nthe number of ivf cycles offered on the nhs in scotland should be increased , a charity has said .\nbernie sanders has been trending on social media since the democratic debate on sunday night .\nif greeks elect a new government in sunday 's election , the country 's future in the european union and eurozone will be secured .\nuruguay will begin selling marijuana in pharmacies in july , the government has confirmed .\nteaching assistants in county durham face industrial action after councillors voted in favour of changes to their contract .\nopponents of the named person policy have accused the scottish government of a `` sham '' consultation on the scheme .\nthe world 's largest cruise ship , the harmony of the seas , has just been unveiled in shanghai .\nthe bbc proms is one of the most important events in classical music 's calendar .\na coalition of us civil rights groups has renewed its call for facebook to do more to tackle racism on the site .\nstephen paul copoc , a student from liverpool , travelled by car with friends , who all survived .\njapan 's main share index closed lower on monday as a stronger yen weighed on exporters .\nthe government 's proposed ring-fence between retail and investment banking in the uk is `` well short '' of what is required , a watchdog has said .\nfive people have been arrested after a laser pen was shone at a plane approaching edinburgh airport .\naudi will withdraw from next year 's le mans 24 hours and enter the formula e series .\njonathan demme , the oscar-winning director of the silence of the lambs , has died at the age of 76 .\naustralia 's government has announced a a$ 500m -lrb- $ 300m ; # 243m -rrb- loan package to help drought-hit farmers .\npolice have used tear gas and water cannon to break up protests in the centre of belfast .\npolice are investigating after two men were seriously injured in a disturbance at a nightclub in aberdeen .\na leading spanish newspaper has published documents it says prove prime minister mariano rajoy received illegal payments from a slush fund .\na former soviet officer has appeared in a us court accused of leading a taliban attack on us forces in afghanistan .\nedin dzeko scored his 24th serie a goal of the season as roma beat bologna .\nukip has complained to kent police over comments made on the bbc 's have i got news for you programme about party leader nigel farage .\nbadges designed to help disabled and sick tube passengers get to their destinations are to be trialled in london .\na cartoon depicting donald trump as a nazi has won a competition in iran .\ntranslink has said that its new trains will return to service on wednesday .\nthailand 's crown prince maha vajiralongkorn is set to become the country 's new king .\nit 's a simple operation - mixing honey and water to make a fizzy , sugary drink that 's popular in the us .\nthe eurozone 's unemployment rate has risen to a record high , official figures have shown .\na major search is under way for a teenager who went missing after a night out on the devon coast .\nthe premier league has announced its 23-man squad for the 2017-18 season .\npolice have released cctv images of a man they want to trace in connection with a serious assault in cathcart , north lanarkshire .\nthe roll-out of smart meters in the uk has been delayed again .\nthe last flying vulcan bomber has flown over its final home in greater manchester .\nhosts northern ireland suffered a 2-0 defeat by spain in their opening group a match of the uefa women 's under-19 championship at windsor park .\na company has announced plans to create 100 new jobs at a new site in angus .\nan outbreak of flu at a carmarthenshire nursing home has led to the death of a resident .\nthe northern ireland flag has been flown at half-mast for the first time .\na second teenager has been charged in connection with an attack on a pregnant woman in south london .\nthe world economic forum is taking place in the swiss city of davos .\ntwo canadians have been arrested in china on suspicion of drug trafficking .\nsouth african athlete oscar pistorius has left court after being sentenced for killing his girlfriend reeva steenkamp .\na nurse who was sacked for posting sexually explicit comments on facebook has been struck off .\nthe world health organization -lrb- who -rrb- says processed meat increases the risk of cancer .\na trail of moth sculptures has been unveiled in hull to mark the life of aviator amy johnson .\nsupermarkets are selling generic school uniforms for as little as # 1 each , in a bid to win back-to-school shoppers .\na teenager has jumped out of an emergency door on to the wing of a plane at san francisco airport .\none of the world 's most famous locomotives has returned to the tracks .\namazon 's founder , jeff bezos , says he 's found the lost engines of the first rocket to land on the moon .\nbritish comic book artist steve dillon has died at the age of 55 .\nthe conservative party is in the grip of a mini-crisis .\na sex offender who chatted about raping a baby and sexually abusing children has been jailed .\nscientists in japan have created a 3d model of cancer spreading around the body .\na restaurant in china has become the first in the world to serve pet food to dogs .\nsouthport chairman david clapham has resigned following the club 's relegation from the national league .\none of the uk 's biggest travel firms has stopped selling holidays that involve visiting zoos .\na man has admitted causing the death of a 15-year-old girl in a crash on the a470 in ceredigion .\nmore than a third of children around the world are sleep deprived , according to a new study .\nfidel castro , the former cuban revolutionary leader , and the queen , the reigning british monarch , were two of the world 's most famous political figures .\ncornwall will face cheshire in the final of the county championship cup after beating surrey 30-15 at st mary 's .\nbarcelona defender dani alves has decided to leave the club after eight years .\noil giants bp and gdf suez have announced the discovery of a new oil field in the central north sea .\njohn mcginn insists hibernian are determined to get back to winning ways before the end of the scottish championship season .\nthe conservatives have retained all but one seat in dorset in the general election .\nit is a tale of billions of pounds for schools , hospitals and transport projects , but will the cash dry up if the uk leaves the eu ?\nformer nottingham forest striker stan collymore has pulled out of the running to be the club 's chairman .\nsatellite images have suggested that the ancient monastery of st elijah in iraq has been destroyed by so-called islamic state -lrb- is -rrb- .\njack disley 's second-half header saw grimsby beat forest green to move level on points with second-placed lincoln city .\nrory burns hit a career-best 219 as surrey held on to draw with hampshire at the oval .\na us aircraft carrier strike group that president donald trump had said was heading to north korea has failed to arrive in australia .\nmanchester city captain vincent kompany will be out for up to three weeks with a calf injury , the club have confirmed .\na fountain in a hertfordshire town is to be refilled with water from a natural lake .\nstriker martin paterson says northern ireland are to blame for their 2-0 world cup qualifying defeat by azerbaijan in baku .\nmalaysia has criticised switzerland for suggesting billions of dollars may have been misappropriated from its state fund .\na new portrait of wolfgang mozart has been unveiled by a north east orchestra .\npolice searching for the body of a schoolgirl who went missing 60 years ago have identified five new areas of interest in the clyde canal .\nwelsh cyclist owain doull has become the first welshman to win two olympic gold medals .\nastronomers have discovered a baby planet orbiting a star just like jupiter .\nat least 102 hindu pilgrims have been killed in a stampede in the southern indian state of kerala , police say .\nun special envoy staffan de mistura has said formal peace talks between the syrian government and opposition will resume on monday .\nthe funeral of a `` true club legend '' has taken place in barnsley .\nthe number of empty shops on scotland 's high streets has fallen by more than 10 % in the last three years , according to a new study .\na man from london has appeared in court charged with the attempted murder of a man in a county antrim hotel .\nlabour and the lib dems have clashed in the house of lords over the government 's brexit strategy .\nthe leaders of the two main political parties in the republic of ireland are holding talks to try to form a minority government .\nbutterflies in parts of the uk could face extinction if global warming continues at its current rate , according to a new study .\nnorth korean leader kim jong-un has said his country has the `` sure capability '' to attack the us .\nan australian man found guilty of helping men travel to syria to fight for the islamic state group has apologised for his actions .\nmps are to debate a petition calling for us presidential hopeful donald trump to be banned from entering the uk .\ntwo crocodiles have been shot in northern australia after a boy was taken by a crocodile on monday .\na `` culture change '' is needed in prisons in england and wales to stop inmates taking their own lives , a report says .\nmore than 200,000 hospital appointments were missed by patients in scotland in the last year , according to new figures .\nscotland goalkeeper anna fay has retired from international football after deciding it was time to move on from the world cup .\nseveral african governments have passed or proposed stringent laws to fight cyber criminals and hacktivist groups .\na teacher who used a personal email account to contact a pupil has been struck off the profession .\nfour men who claim they were framed for the murder of a british army officer in londonderry have said they are `` disappointed '' that police interview notes from 1979 have gone missing .\na team of scientists are heading to the bottom of the indian ocean to find out if there 's life on mars .\nan american artist 's connection with the sound of sleat is to be celebrated at skye college in fort william this week .\n`` i 've always loved fitness , '' says zoe black .\neducation needs to be devolved to local authorities across the uk , former deputy prime minister lord heseltine has said .\nwales head coach warren gatland says he will be `` neutral '' when his side face australia at twickenham on saturday .\nprince william and prince harry have visited a garden dedicated to their mother , princess diana .\nkyle wootton 's late goal rescued a point for scunthorpe against port vale .\nrussia has handed to the eu a list of 89 people who have been banned from entering the country .\nshakespeare 's richard iii is to be performed in leicester cathedral next month , the cathedral has said .\nswansea city boss paul clement has compared striker fernando llorente to real madrid greats sergio ramos and cristiano ronaldo .\nwarwickshire bowlers josh poysden and alex mellor have signed new two-year contracts with the bears .\nthe family of a teenage girl who died in a crash have paid tribute to a `` beautiful , talented , loving daughter '' .\nthe number of assaults on prison staff in england and wales has risen sharply , figures show .\nformer swedish foreign minister johan gustafsson has been freed after being kidnapped in mali in 2013 .\nfirst minister carwyn jones has said the welsh government will have to make `` very difficult decisions '' over spending cuts .\nresearchers in wales have developed a helmet designed to reduce the risk of brain injuries in sports .\na man has been shot and wounded by police in ferguson , missouri , on the first anniversary of the killing of unarmed black teenager michael brown .\nthe eu has urged georgia to avoid `` provocative '' actions after a new border was established with russia .\nbritish number one heather watson was knocked out in the second round of the abierto mexicano telcel in straight sets by american varvara lepchenko .\na man has been found guilty of causing the death of a cyclist by careless driving .\njaime winstone and sam spiro are to play dame barbara windsor and babs in a new bbc one biopic .\na bolivian air traffic controller has claimed she tried to stop a plane that crashed last week , killing most of a brazilian football team .\nsalmon exports surged in the first three months of the year , according to the food and drink federation -lrb- fdf -rrb- .\ntwo young rugby players from county down are celebrating a victory after a battle with the sport 's governing body .\n-lrb- close -rrb- : stocks on wall street closed lower on the last trading day of the year as the oil price continued to slide .\noscar pistorius 's family have filed a complaint against a south african woman they say is a conman .\npolice in australia have released images of two detainees allegedly involved in a riot at a detention centre on christmas island .\nhugh grant is to join the cast of guy ritchie 's man from u.n.c.l.e.\nkenneth zohore 's late strike gave cardiff city victory at burton albion .\na man has died after being pulled from the river leith in edinburgh .\na man has been shot dead in liverpool - the fifth to be killed in the city in five days .\na pembrokeshire man who tried to kill himself in a court has been remanded in custody .\na reward has been offered after the body of a greyhound with its ear cut off was found in a field .\nin the summer of 1866 , a group of men from dumfries and galloway travelled to new york .\nengland captain alastair cook says his side showed `` inexperience '' in their 72-run defeat by bangladesh in the first test in chittagong .\na senior councillor has been accused of misconduct in a report into the sale of council property .\na firearms instructor has been jailed after police found a stash of weapons at his home .\nscotland 's councils are ready to take in syrian refugees , according to cosla , the body representing local government in scotland .\ngeorge osborne is to hold talks in berlin later with german officials about the uk 's eu renegotiations .\ncannondale 's pierre rolland won stage nine of the giro d'italia in a sprint finish in canazei .\nit 's that time of year again when you 're fighting over who 's going to get the best christmas present .\na large fire in caerphilly county is believed to have been deliberately set , police have said .\nnew images have been released of an asteroid that passed by the earth on sunday .\nvirgin media has said it overstated the number of premises connected to its superfast broadband scheme , project lightning .\ngreat britain 's james guy and chloe tutton won bronze medals at the european swimming championships in amsterdam .\nnew research suggests that playing rugby in school could be a lot safer than it was a few years ago .\nthe pound has fallen after the bank of england cut its growth forecast and kept interest rates unchanged .\na boxer who beat his ex-girlfriend so badly she thought he was going to kill her has been jailed for 28 weeks .\na paedophile who preyed on a nine-year-old boy via facebook has been jailed for 16 years .\nfive men who blew up a cash machine outside a mcdonald 's restaurant in carnoustie were lawfully shot by police , a report has found .\nseven young migrants have gone on trial in berlin accused of setting fire to a polish man at a berlin underground station on christmas day .\nwales manager chris coleman says his late father would have been `` ecstatic '' about his country reaching the euro 2016 semi-finals .\nthe decision to delay the new nuclear power station at hinkley point is the biggest political gamble of theresa may 's premiership .\npeople are being asked to help kangaroos and koalas that have been injured by bushfires in australia .\nmichael jordan has confirmed he will join lupita nyong ' o in marvel 's black panther .\nthousands of teenagers are taking part in the annual ten tors challenge on dartmoor .\na report into the controversial # 1.2 bn sale of nama 's northern ireland loan portfolio is to be published next week .\nthe new queensferry crossing could open to traffic in may 2017 .\nmore than half of young people check their mobile devices before going to bed , a poll suggests .\nestonia is the smallest of the baltic states , with a population of just over one million .\nthe killing of a lion in zimbabwe , africa , by a us hunter has sparked a huge outcry .\nkenya 's opposition leader raila odinga has said he will challenge the presidential election result in the supreme court .\na petition calling for parliament to debate the reintroduction of the death penalty in the uk has been launched .\nscotland 's laura muir broke her country 's 20-year-old 1500m record at the glasgow international on sunday .\nthe owner of the three mobile phone network , li-ka shing , has announced plans to buy rival o2 for # 5.3 bn .\nphil collins has postponed two concerts at london 's o2 arena after suffering a head injury during a gig in germany on wednesday .\nfirms in the uk face a `` significant increase '' in fines for data breaches , according to pwc .\nthe uk 's decision to leave the european union has implications for the world 's central banks .\nderek mcinnes insists aberdeen are not fazed by the prospect of facing maribor in europa league qualifying on thursday .\nollie norburn 's late strike earned macclesfield a 3-2 win at chester .\na controversial youth bus pass scheme is to be extended , the welsh government has announced .\nforty years ago today , richard nixon 's decision to fire the special prosecutor investigating the watergate scandal sent shockwaves through washington , dc .\nnational league side eastleigh have signed midfielder josh cole from national league south side staines town .\nthe number of sexual abuse allegations against un peacekeepers has risen sharply in the last two years , according to a un report .\nmanchester united and captain wayne rooney are set to hold talks about a new contract .\nteaching assistants in county durham have staged a rally in support of their pay dispute with the council .\na transgender woman has launched an appeal against her sentence for assaulting a woman in prison .\nten men have been arrested after a cigarette factory was raided in birmingham .\nraffaele sollecito , the former boyfriend of amanda knox , has been cleared of murdering her british flatmate meredith kercher in perugia in 2007 .\na us soldier who fought off a taliban attack in afghanistan has been awarded the medal of honour , the us military says .\nguernsey 's department of planning has launched a public consultation on the potential locations for new homes and businesses .\nmore care homes in england have cancelled their registration to operate as nursing homes due to a shortage of nurses , figures show .\nenergy supplier co-operative energy has been fined # 1.6 m by the regulator for `` unacceptable levels of service '' to customers .\na 1,000-year-old weir discovered on the coast of hampshire has been dated back more than 1,000 years .\nfrontline staff at railway stations could be trained to spot people at risk of suicide , the government has suggested .\nreal madrid have confirmed they have been asked by fifa to provide information on 51 players .\na nine-year-old boy who took his own life had told a fellow pupil he felt `` unsafe '' at school , an inquest has heard .\nthe shroud of turin has gone on public display in the italian city for the first time in five years .\nthe cornwall-based independent party mebyon kernow has announced it will not be fielding candidates in the general election .\na man is in a critical condition in hospital after being attacked twice in west belfast .\nrussia 's ambassador to poland , andrei andreyev , has said he is not retracting remarks he made blaming poland for the start of world war two .\npop group all saints are celebrating their 20th anniversary with a new album , and the band reflect on the sexism they faced in the early days of their career .\nnew zealand prime minister john key has told the asia business report that the trans-pacific partnership -lrb- tpp -rrb- trade deal is a `` once in a generation opportunity '' for asia .\na man and a woman have been found dead at a house in sheffield .\nmauritius goalkeeper leopold leopard has been arrested on suspicion of drug dealing , the bbc understands .\nmigrant workers will have to earn at least # 35,000 a year before they are allowed to settle in the uk , ministers have announced .\nhundreds of people have been evacuated from a sicilian village as wildfires rage across the south of the country .\nthe archbishop of canterbury has said he hopes easter will be fixed .\nsteven lawless has rejected a new contract with partick thistle .\nteam sky boss dave brailsford praised luke rowe 's bravery as chris froome won his third tour de france title .\nthe owner of arsenal football club , stan kroenke , has ordered the removal of content about trophy hunting from a new tv channel .\ndoncaster missed the chance to go top of the league two table as they were held to a draw at stevenage .\nrory best hopes to succeed paul o'connell as ireland captain and work alongside head coach joe schmidt .\na 19-year-old man has been charged with preparing terrorist acts after being arrested at heathrow airport .\ngillingham chairman paul scally says the club 's proposed new stadium could take them to `` the heady heights of the premier league '' .\nlegislation is needed to tackle cyber-bullying , the children 's commissioner for wales has told the bbc .\nleague two side accrington stanley have signed cambridge united midfielder michael keane on a season-long loan deal .\nscunthorpe united director of football derek swann has urged fans not to panic , despite their recent poor form .\na mountain rescue team has blamed a rise in callouts to snowdon on a tourism campaign .\nkenya is marking the 60th anniversary of the start of the mau mau rebellion against british rule in the north-east of the country .\njohnny cash 's son , carter cash , has announced the release of a new album of previously unreleased recordings .\nboris johnson has said he sees a `` big opportunity '' for the uk to remain in the eu 's single market after brexit .\nhearts have signed poland defender tomasz grzelak on a two-year deal .\nbritish astronaut tim peake has told newsround what it 's been like to be in space .\ngreat britain 's men 's ice hockey team have missed out on a place at the 2018 winter paralympics in pyeongchang .\na british man has been jailed for 10 years in the united arab emirates for drug-smuggling .\nevery home and business in the uk will have access to fast broadband by 2015 .\na 25-year-old man has appeared in court charged in connection with a security alert at a london underground station .\nrising levels of acidification in the oceans are already damaging marine life , according to a report .\nthe uk 's most famous chocolate maker , cadbury , is to stop using the fairtrade mark .\nthe energy regulator ofgem has announced plans to stop energy suppliers back-billing customers for energy used more than 12 months before .\na woman has been airlifted to hospital following a two-vehicle crash in monmouthshire .\ntommy hilfiger has said comments he made about model gigi hadid were `` completely false '' .\nliverpool have appointed england under-19s head coach sean o'driscoll as first-team coach .\nfaissal el bakhtaoui scored twice as dunfermline athletic beat ayr united to move up to fourth in the scottish championship .\nthe stars of this year 's baftas have been talking about the importance of supporting actors , meryl streep 's speech at the golden globes and the future of the oscars .\nthe uk 's supreme court has ruled the government 's policy of charging for employment discrimination cases is unlawful .\na 17-year-old boy has been arrested in connection with a serious crime in county londonderry .\nin the summer of 2015 , carl fearon was on the verge of quitting athletics .\na bbc reporter was the victim of `` internal corruption '' at the corporation , an employment tribunal has heard .\nthe owner of a whisky distillery in dumfries and galloway has announced plans to invest # 1m in the facility .\nrepublican presidential hopefuls marco rubio and ted cruz have attacked front-runner donald trump in a fiery debate in florida .\nsinger charlotte church and her partner jonny powell have announced the death of their unborn baby .\ncounty longford , in the republic of ireland 's midlands , was once dubbed ireland 's silicon valley .\nhealth secretary shona robison has appointed an independent expert to examine the findings of a review into mesh implants .\na six-year-old girl who underwent a heart transplant after her father had one has returned to school for the first time .\njess ward scored a hat-trick as wales women beat kazakhstan to record their first win in their euro 2017 qualifier .\nbritish astronaut tim peake 's mission to the international space station -lrb- iss -rrb- is about to begin .\na us drone strike has killed at least 13 militants in north-western pakistan near the afghan border , officials say .\nsix teaching unions in england and wales have called on the government to fund pay rises for teachers .\nmark mcghee would be `` amazed '' if gordon strachan does not continue as scotland manager .\nstriker andy carroll will not be included in england manager roy hodgson 's euro 2016 squad .\nuniversities in england will be responsible for meeting the needs of disabled students from next year , the government has announced .\nthe accountants responsible for the best picture mix-up at the oscars have been given protection at their los angeles homes .\neight people have gone on trial in the eastern german city of dresden accused of belonging to a far-right terrorist group .\nlondon underground ticket offices are to close at two stations as part of plans to save # 50m .\nthe hotel industry in northern ireland has said it needs a strategy to attract visitors to the island of ireland .\nmost people in the east midlands do not know who their local councillor is , research suggests .\nthe head of the public inquiry into the grenfell tower fire has written to theresa may setting out the scope of his investigation .\nlabour leadership contender jeremy corbyn has said he could bring back clause iv of the party 's constitution .\nthe nobel peace prize winner malala yousafzai has urged the nigerian schoolgirls abducted a year ago to `` celebrate your freedom '' with their families .\na man who raped a woman after posing as a taxi driver has been named as one of the uk 's most-wanted fugitives .\nthe world 's efforts to keep global temperatures from rising more than 1.5 c will almost certainly fail , say scientists .\nnottingham 's long-awaited tram network has opened to the public .\nthe labour party has backed the government 's fiscal charter as the two parties clashed over spending plans ahead of the general election .\na woman has told a court how she was sexually abused by a man accused of being part of a child sex ring in rotherham .\nessex captain alastair cook made a half-century on a rain-hit first day against worcestershire at new road .\nmashkel is a small town on the edge of pakistan 's balochistan province , close to the iranian border .\nus president barack obama has nominated a former deputy attorney general in the bush administration to be the next director of the fbi .\na high court injunction granted to the republic of ireland 's richest man is to be discharged .\nkenya 's vivian cheruiyot beatlmaz almaz of ethiopia to win the women 's 5,000 m at the rio olympics .\ndavid cameron and the opposition leaders have clashed over the government 's record on tax .\nst peter 's of wexford will meet st brendan 's of killarney in the hogan cup final after beating st mary 's of derry 2-13 to 1-9 in the semi-final .\nfirefighters have tackled more than 300 acres of wild fires across scotland in the past week .\na man who admitted downloading more than 100,000 indecent images of children has been given a probation sentence .\na judge in the republic of ireland has said he did not order a td -lrb- member of the irish parliament -rrb- to stop a media organisation reporting comments she made about the billionaire businessman denis o'brien .\na third of councils in england and wales are planning to increase council tax next year , a survey suggests .\nthe uk 's wet weather this year has led to the lowest number of insects ever recorded in the country , experts say .\na father and son charged with the murder of a man in county fermanagh have appeared in court in dublin .\ncamanachd beat kilmallie 4-3 to reach the semi-finals of the camanachd cup while newtonmore and lochaber drew 2-2 .\npolice searching for a missing airman have released cctv images of three teenagers they want to trace .\nafghan forces have freed more than 50 prisoners held by the taliban in a raid in southern afghanistan , nato says .\na man who used his mobile phone to film women under their skirts has been jailed for 18 months .\nformer first minister peter robinson has said he has `` never had any personal financial interest '' in the rhi scheme .\nryan swankie scored twice as forfar athletic came from behind to beat cowdenbeath 4-3 in scottish league two .\na man has been cleared of raping a university student who later took her own life .\ngreat britain 's jessica ennis-hill remains on course for olympic qualification after the second day of the hypo-meeting in gotzis , austria .\nthousands have marched across the us to demand that president donald trump release his tax returns .\nthe use of caesarean sections in the uk is higher than in any other eu country , a study suggests .\na look back at some of the top entertainment stories over the past six months .\na liverpool fan who tried to resuscitate a boy at hillsborough has told the inquests he was asked by police to change his statement .\nwest sussex fire and rescue service has finished its work at the scene of the shoreham air crash .\nthe royal navy 's flagship hms ocean will be withdrawn from service in 2012 , defence secretary liam fox has said .\nhundreds of people have taken part in a protest outside liverpool town hall against cuts to council services .\nreading midfielder andrija rakels has joined polish side lech poznan on a season-long loan .\na man is in a critical condition in hospital after a hit-and-run crash in west belfast .\na campaign has been launched to restore a fountain in memory of a group of world war two soldiers .\na new railway station could be built in reading to ease congestion around the town 's stadium .\ntyrrell hatton 's second place at the scottish open at dundonald links on thursday was the best result of his career on the european tour .\ntwo women have been taken to hospital after trying to rescue cats from a house fire in dorchester .\nthe university of manchester has launched its first degree course in urdu .\na campaign has been launched to save a 19th century mill tower which was destroyed by fire .\nwigan warriors prop ben flower has been banned for two matches after being sent off against hull fc on friday for an elbow to the head of kevin brown .\nrenault has told formula 1 bosses not to count on the company as an engine supplier next year .\narsenal manager arsene wenger has been banned for four games after admitting a football association charge of improper conduct .\nayr united climbed off the bottom of the scottish championship with victory over dunfermline athletic .\nsina adesina , president of the african development bank -lrb- afdb -rrb- , has been named as this year 's winner of the world food prize . president of the world food prize foundation , former us ambassador kenneth quinn , said the judging panel hopes awarding dr adesia this year 's prize would help provide `` further\na man suffered life-changing injuries when he leaned on a faulty balcony while on holiday , a court has heard .\nformer ireland rugby player dan wallace has been cleared of harassing his estranged wife .\na body has been found off the coast of peterhead in the search for missing inverness teenager alex mitchell .\ncharli xcx has revealed she 's writing songs for two other artists .\nchimamanda ngozi adichie 's third novel , americanah , has won the 2013 national critics book prize for fiction .\nchelsea have won the premier league title for the second time in three seasons .\nprue leith is to step down as a judge on bbc one 's the great british menu after 11 years .\na settlement offer has been made in a long-running legal battle over plans for a new mosque in dudley .\nreal madrid have condemned `` unjustifiable and unacceptable '' comments made by a former french government minister about rafael nadal .\nvigilantes who target paedophiles online are putting real children at risk , kent police has said .\ngermany 's constitutional court has upheld the conviction of a former member of a secretive nazi-inspired commune in chile for crimes against humanity .\nin our series of letters from england players , heather knight reflects on her year as captain of the women 's team .\nat least 15 people have died after a pedestrian bridge collapsed in the indian state of goa .\nbarnsley 's hopes of reaching the championship play-offs suffered a blow as they were held to a goalless draw by preston at oakwell .\nthis year 's english gcse exam was not fit for purpose , according to the exams regulator ofqual , a report claims .\nthe public prosecution service -lrb- pps -rrb- has decided not to prosecute a man suspected of involvement in the kingsmills massacre .\nnorthern ireland 's olympic silver medallist wendy houvenaghel has retired from track cycling .\nnigeria 's rower chierika ukogu has been mistaken by rapper snoop dogg for winning an olympic medal .\ndavid evans has been appointed as the new chief executive of s4c .\nthe trial of a dublin teenager who has been held in an egyptian prison for more than two years has been adjourned again .\nsepp blatter 's 17-year reign as fifa president comes to an end on friday when he is replaced by a new leader at the organisation 's annual congress in zurich .\nandre and jordan ayew scored as ghana beat dr congo 2-1 to reach the africa cup of nations semi-finals .\nmps in the house of commons have voted that they have `` no confidence '' in the football association .\nplans for a new entertainment complex in cornwall have been approved by cornwall council .\namnesty international -lrb- ai -rrb- has warned that the 2022 world cup in qatar could be built on forced labour and exploitation .\nfour people have appeared in court charged with disposing of teenager becky watts 's body parts .\na south wales council has defended its decision to cancel the christmas lights in its town centres .\nthe international monetary fund -lrb- imf -rrb- has warned of a `` more generalised slowdown '' in the global economy .\na scottish country singer 's research into his family tree has led to the discovery of the grave of his great grandfather .\nanti-hunting campaigners have called for tougher laws after a hunt was cleared of killing a fox .\nswedish fashion retailer hennes & mauritz -lrb- h&m -rrb- is to open its first high street store in london later this week .\nas part of the 75th anniversary of the evacuation of dunkirk , the bbc has been speaking to survivors of the operation .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo looks at how free is africa 's artistic freedom ?\nthe met office has issued its first high wind warning of the season for most of scotland .\ngary neville suffered his first la liga defeat as valencia boss as atletico madrid came from behind to win 3-1 at the mestalla .\na copy of the 1916 proclamation of independence , signed by seven of the leaders of the easter rising , has been sold at auction in dublin for 12,000 -lrb- # 8,900 -rrb- .\ncharlton came from two goals down to beat 10-man bolton in league one .\na rare 17th century oil painting of jesus christ has been saved from auction after a campaign to save it raised more than # 1m .\nelton john told a steward he thought she was `` hitler '' during a row over crowd control at his concert .\ntributes have been paid to gwynedd murder victim david jones by family and friends .\nfamilies of the 10 people killed in the clutha helicopter crash in glasgow have said they feel `` let down '' by the investigation .\nformer world number one luke donald has been named as the new ambassador of the british masters at the grove in hertfordshire .\na holyrood committee has backed plans to legalise same-sex marriage in scotland .\niraq 's parliament has approved a package of reforms aimed at overhauling the country 's political system .\ngreat britain 's women beat olympic champions argentina 3-2 to make it two wins from two at rio 2016 .\nfrench president-elect francois hollande 's victory in sunday 's election has thrown a fresh spotlight on europe 's economic crisis .\npaul stirling and sam robson both hit centuries as middlesex dominated day one against yorkshire at lord 's .\nroma have been ordered to close a section of their stadio olimpico ground for one game next season after fans sang racist songs about mario balotelli .\nwhen joba rani 's crops were destroyed by the recent floods in her village in south-eastern bangladesh , she was unable to repay her microcredit loan .\na police officer who shot and killed a black teenager in texas has been sacked .\nbig buck 's produced a late surge to win the king george vi chase at kempton .\nhollywood star angelina jolie has received an award at the sarajevo film festival for her directorial debut in the land of blood and honey .\nthe bbc should invest more in the midlands , an mp has told mps .\nthe organisers of the wickerman festival have announced a new stage for this year 's event in the highlands .\nmore than half of uk workers have attended work when ill , a survey has suggested .\nsix men have been charged in connection with a series of sexual offences in rotherham .\nukip is `` very confident '' it can win more seats in next year 's welsh assembly election , the party 's leader in wales has said .\na spokeswoman for russia 's foreign ministry has suggested jews in new york helped donald trump win the us presidential election .\nthe family of a man who died in a head-on crash has called for tougher penalties for drivers who kill .\nrafael nadal came from a set down to beat german teenager alexander zverev and reach the fourth round of the australian open .\na gwynedd woman who was injured in the manchester bombing `` probably saved her life '' by using her mobile phone , her husband has said .\nrangers beat celtic 5-4 on penalties to win the scottish league cup .\nthe path to the professional ranks is a familiar one for olympic boxers .\nhundreds of people have been killed in an earthquake in nepal , in south-west asia .\nkumar sangakkara hit a career-best 168 as surrey dominated day one against somerset at the oval .\nfrance striker karim benzia has decided to play for algeria .\nformer aston villa boss david o'leary has been awarded # 1m in compensation by fifa after being sacked by al ahli .\nparents and students who attack teachers in argentina could face tougher penalties under new proposals .\ncornwall head coach graham dawe is concerned about the future of the national two south final at twickenham stadium .\nbristol city under-23s jake bidwell and kodi smit-mcphee have joined guernsey fc on a month 's loan .\ntributes have been paid around the world to mp jo cox , who has been killed in her constituency in england .\nliam boyce scored a hat-trick as ross county beat 10-man inverness caledonian thistle .\ntwo brothers who tortured two young boys have had their anonymity extended .\nat least 70 people have been killed after a passenger train derailed in the northern indian state of uttar pradesh , officials say .\nthe met office has issued a yellow `` be aware '' weather warning for northern ireland .\ngreek shares have fallen sharply after talks between greece and its creditors broke down on sunday .\nbrighton assistant manager colin calderwood has joined aston villa as first-team coach on a two-and-a-half-year deal .\na 72-year-old man has gone on trial accused of sexually abusing four girls at a cardiff mosque .\nthe next government will need to cut spending by more than a third to balance the books , according to the institute for fiscal studies -lrb- ifs -rrb- .\ninfection is the biggest cause of cancer worldwide , according to a global study .\na row has broken out over plans to demolish a modernist building on durham university 's campus .\ntesla has said it will increase production five-fold over the next two years as demand for its cars rises .\na man has been arrested after a woman was sexually assaulted in cardiff .\na council failed to properly plan and manage a landslip which forced residents from their homes , a report has found .\na man has appeared in court charged with the attempted murder of two men last week .\nprince 's team reached out to a specialist in addiction treatment a day before the singer died , a lawyer says .\nmilitants have killed at least 20 people in an attack on a restaurant popular with foreigners in burkina faso 's capital , ouagadougou .\na man has died after being shot by police in hull , the independent police complaints commission -lrb- ipcc -rrb- has said .\nhuawei technologies has filed legal papers in the us accusing samsung of using its technologies without permission .\nnewsnight 's political editor , james clayton , has been following the migrant crisis in northern france .\na 15-year-old boy has been stabbed to death during a fight in north london .\ntheo walcott 's late equaliser rescued a point for arsenal against manchester united at old trafford .\naberdeen have signed stevie may from preston north end on a four-year deal .\na merthyr tydfil chemical plant is to close with the loss of up to 100 jobs .\nsweden goalkeeper hedvig lindahl has signed a new contract with women 's super league one side chelsea ladies .\nit 's one of the most famous dance moves in the world .\na hospital has warned pokemon go fans not to visit its accident and emergency department to play the mobile game .\nharry potter star tom bradley is to play former doctor who star arthur hartnell in a special episode of the bbc one show later this year .\na search is under way for a kayaker who went missing after his boat capsized on a surrey river .\na man has admitted attempting to rob a shop after cctv footage emerged of the attack .\ncould you imagine if your local school stopped offering a-levels ? knowsley already has among the lowest university entry rates in the country - and now young people are being told that none of their schools is even going to offer a single a-level .\nricky burns lost his wbo world super-lightweight title to julius indongo at the hydro in glasgow .\na man has been charged with the murder of a student whose body was found in a burnt-out car .\na couple have been found guilty of murdering a six-year-old girl in east london .\na russian warplane has been shot down by turkey on the syrian border .\nthe us is considering a ban on laptops and tablets in cabin baggage on some flights from europe to the us .\nethan ebanks-landell 's stoppage-time goal gave 10-man sheffield united victory over 10-man bury .\nfear and death are not the last words , the archbishop of canterbury has said in his easter message , following the brussels attacks .\nplans for a new mcdonald 's restaurant in pembrokeshire have been approved .\nthe international monetary fund -lrb- imf -rrb- and the world bank are the world 's two main financial institutions .\narsenal manager arsene wenger says gareth southgate has a `` good opportunity '' as england interim boss .\nthe mother of a teenage girl who killed herself has said she is `` appalled '' a report into her daughter 's death will not be made public .\nstoke city have signed cameroon international winger eric choupo-moting from german side borussia monchengladbach on a four-year deal for an undisclosed fee .\nfifa president sepp blatter has called for `` zero tolerance '' after new measures to combat racism in football were approved .\nsubstitute jodie taylor scored a late winner as england beat the netherlands to extend their unbeaten run to eight matches .\nbayern munich began their champions league campaign with a thumping 5-0 win over cska moscow .\na christian-run bakery at the centre of a case over a cake bearing a pro-gay marriage slogan could be forced to print cartoons of the prophet muhammad , a court has heard .\nan 86-year-old woman fought off a would-be robber with a bacon sandwich in a greater manchester supermarket .\nstar wars actress carrie fisher is in intensive care after suffering a heart attack .\nnick clegg has accused the conservatives of `` cutting much deeper than is necessary '' to balance the books .\na singaporean couple 's wedding photo shoot featuring a coffin has gone viral on social media .\na viable pipe bomb has been found during a security alert in county tyrone .\none of the uk 's most high-security jails has been rated `` inadequate '' by inspectors .\na ceremony has been held in sydney to mark the first anniversary of the cafe siege .\na new case of bird flu has been found at a turkey farm in boston , the department for environment , food and rural affairs -lrb- defra -rrb- has said .\nsri lanka 's prime minister ranil wickremesinghe has called for the country 's mangrove forests to be `` re protected '' .\ngoogle has announced plans to release a new version of its android operating system -lrb- os -rrb- in june .\na football referee has died after being punched by a player during a game in the us state of michigan .\ntwo county londonderry men have been given suspended jail sentences for dumping tyres on a beach .\npeople on benefits in scotland are `` living in constant anxiety '' about changes to their entitlements , according to a new report .\nwatford striker isaac success has been ruled out of nigeria 's 2018 world cup qualifier against cameroon on wednesday because of injury .\na conservative mp has called for a ban on the use of fireworks in back gardens .\nedinburgh will host the 2017 european champions cup final at murrayfield .\nalliance trust savings has agreed to buy brewin dolphin 's stockbroking business .\nthe metro system in brussels is due to reopen for the first time since friday 's paris attacks .\nthe trial of the man accused of masterminding the philippines ' worst political massacre has begun in quezon city .\nthe search for the bodies of three coastguard crew who died in a helicopter crash off the county mayo coast in the republic of ireland is continuing .\na us college student has been charged with forcing a fellow student with a peanut allergy to eat a piece of peanut butter .\na hospital trust has been rated `` inadequate '' by the health watchdog after an inspection .\ntens of thousands of people have marched in stafford to protest against the future of the town 's hospital .\na pembrokeshire town 's paddling pool is set to open despite council cuts .\nthe international monetary fund -lrb- imf -rrb- has urged china to allow the value of its currency , the yuan , to rise .\nhartlepool united 's on-loan striker andrew nelson has been ruled out for the rest of the season with a knee injury .\nbristol head coach andy robinson has been suspended by the premiership club after their poor start to the season .\na driver who tied a sofa up in the boot of his car has been given a warning by police .\na man accused of stabbing a great-grandfather to death in a road rage attack had been diagnosed with asperger 's syndrome , a court has heard .\neach day we feature a photograph sent in from across england - the gallery will grow during the week !\nformer chelsea and ivory coast striker didier drogba has signed for united soccer league side phoenix rising .\nsinn féin leader gerry adams has said there is a `` greater opportunity '' to achieve a united ireland .\nrepublic of ireland manager martin o'neill praised his side 's performance in their 1-1 friendly draw with the netherlands in dublin .\nnational league side ebbsfleet united have signed wycombe wanderers left-back josh weston .\ndozens of passengers who were stranded on a train for more than four hours have escaped by jumping off .\nregular walking for an hour a day can boost the size of a specific part of the brain , a study suggests .\ndiageo , the world 's biggest spirits maker , has reported a fall in sales of scotch whisky in the last financial year .\ntwo teenagers have been detained for carjacking a vicar as she left a church service .\nus president-elect donald trump has questioned why barack obama did not take action against russia over its alleged meddling in the us election .\nciara mitchell and michael kirk-smith won titles on day one of the northern ireland athletics championships at santry .\nrare european eels have been found for the first time in a norfolk river since a fish pass was introduced in 2007 .\nnico rosberg is on course to win his first formula 1 world championship this weekend at interlagos .\na 23-year-old man shot dead by police was armed with a knife , the police watchdog has confirmed .\nnorthern ireland footballer paddy mccourt has revealed that he pulled out of euro 2016 after his wife was diagnosed with a brain tumour .\nuk defence secretary sir michael fallon has called on nato countries to increase their defence spending .\nthe national assembly for wales should be renamed the welsh parliament , ams will be told next week .\nthe town of brilon in north rhine-westphalia is a place where the future of germany 's chancellor angela merkel hangs in the balance .\na five-star hotel in aberdeen has been bought out of administration for # 17.7 m .\nplans for a new tram line between derby and nottingham have been backed by councils in the east midlands .\nlabour is `` running around stamping its feet '' , shadow business secretary chuka umunna has told the bbc .\nthe chief executive of japanese advertising giant dentsu has said he will step down following the death of a worker who took her own life because of overwork .\nit 's been a busy few days in the office for me .\na drugs expert is warning people not to take rogue ecstasy pills , after four people died in the uk in the past week .\ntrain drivers at arriva trains wales are to stage a second strike in less than a month .\nandre gray scored twice as championship leaders burnley came from behind to beat bolton wanderers .\ncoleraine 's paul cassells and david scrimgeour won gold in the lightweight pair final at the european rowing championships in racice .\na woman who went missing 12 years ago was murdered by her ex-husband and her remains were `` chopped up '' , a court has heard .\nformer footballer andy woodward 's bravery in speaking out about being sexually abused as a child will help others , cardiff city manager neil warnock says .\nthe vatican has failed to respond to france 's nomination for its first openly gay ambassador to the holy see .\nsome gp practices in england could be forced to close , the bbc has learned .\nwales manager chris coleman says his side are in a `` fantastic position '' ahead of their final euro 2016 group b game against russia .\nguy martin has pulled out of next month 's ulster grand prix at dundrod .\nburnley have signed republic of ireland international striker jon walters from premier league rivals stoke city for an undisclosed fee .\nfive players have been shortlisted for the first bbc women 's footballer of the year award .\nthe queen has marked her 90th birthday with a message on her official twitter account .\nit 's black friday - the uk 's biggest shopping day of the year .\na driver who killed two men in a crash while being chased by police has been jailed for eight years .\nscientists in japan say they have developed a new way to detect signs of alzheimer 's disease during brain scans .\nvigils have been held across the uk to mark the first anniversary of the murder of anni dewani on honeymoon in south africa .\na gp who punched a patient has been suspended from the profession .\nthe parents of a baby girl who suffered brain damage due to a delay in her birth have been awarded # 5.3 m in damages .\nlewis hamilton dominated the italian grand prix to move three points clear at the top of the championship table .\ncouncils should be legally obliged to provide public toilets across wales , a man with a debilitating disease has said .\na police officer who was stabbed in the head while responding to a domestic incident in north belfast has been awarded the queen 's medal for bravery .\nsix police officers are being investigated after a man lost three of his fingers while in custody .\na revised business case for a joint public services training college in northern ireland has been published .\nplans to downgrade maternity services at an oxfordshire hospital have been criticised by an mp .\nformer italian prime minister silvio berlusconi has compared us president-elect donald trump to him .\nthe irish foreign minister has said he believes northern ireland 's political parties are willing to engage constructively in the talks to restore power-sharing .\nthe granddaughter of peggy o'hara has defended the paramilitary theme of her grandmother 's funeral .\nscientists have identified a fourth layer of european ancestry , dating back to the last ice age .\na suspected world war two device has been found on a beach in gwynedd , police have said .\ntributes have been paid to a `` mystery santa '' who has died at the age of 89 in cardiff .\nthe central intelligence agency -lrb- cia -rrb- has been accused of involvement in several coups in africa over the years .\nit 's a boyhood dream .\nhow do you ease congestion on the m4 between cardiff and newport ?\nchris gayle and kieron pollard led west indies to a crushing victory over australia in the semi-final of the world twenty20 .\ndementia patients at an edinburgh hospital are being delayed in being discharged due to staff shortages , a report has found .\nospreys moved up to second in the pro12 table with victory over newport gwent dragons in a scrappy welsh derby at rodney parade .\na court in india has sentenced eight policemen to life imprisonment for killing 19 sikh men in a fake encounter in 1993 .\nthe american professional wrestler dusty rhodes has died at the age of 74 .\na dog has been rescued from a cliff in devon .\nhibernian or inverness caledonian thistle will face dundee united or rangers in the semi-finals of the scottish league cup .\nhead teachers are to be offered free seminars to help them deal with the issue of extremism in schools .\nthe organisers of the 2021 world athletics championships in eugene have defended their decision to award the event to the city .\na former countdown contestant attacked a shop worker after she criticised his book , a court has heard .\nup to 20,000 syrians have crossed into turkey in the past few days from rebel-held areas near the city of aleppo , the united nations says .\nthe winner of this year 's man booker prize will be announced later , with japanese author haruki yanagihara favourite to take the # 50,000 prize .\nisraeli police are investigating a video which appears to show a policeman beating a palestinian lorry driver .\nthe mother of a boy who was mauled by a dog has been ordered to pay his family # 60,000 in compensation .\nthe office for nuclear regulation has come under fire for allowing a nuclear reactor to run beyond its safety margin .\nunions have said it is `` absurd '' ceredigion council is planning to close its only residential home for the elderly .\npope francis has announced that all priests in the roman catholic church will be able to forgive abortion .\ntwo teachers in england received payouts of more than # 300,000 each after being injured in the classroom , figures show .\na county londonderry music teacher has been named as one of bbc music day 's unsung hero recipients .\ndog walkers in hampshire have been fined for walking more than four dogs .\nthe undercover police scandal has rumbled on for more than a decade , with allegations of corruption , cover-ups and miscarriages of justice .\ncarry-on luggage bins are to be fitted to some boeing 737 aircraft , the planemaker has said .\nthe architect behind the new dundee museum has said he is `` very happy '' with the progress made so far .\nmore than 100 bank branches have closed in scotland in the last year , according to bbc scotland research .\nraba kahraba scored a late winner as egypt beat morocco 1-0 to reach the africa cup of nations semi-finals .\nluiz felipe scolari has stepped down as brazil coach following the country 's heavy world cup defeat by germany .\ngymnasts are practising their handstands and cartwheels . `` and i still dream of being able to run but i can barely walk , so it 's a dream i 'm not going to realisation again . '' throughout 2015 , gordon 's physical condition deteriorates .\nexeter chiefs came from behind to beat sale sharks and move level on points with premiership leaders wasps .\nfour companies have been shortlisted to run trains in wales for the first time , the welsh government has said .\nlabour leader jeremy corbyn 's decision to step down as an mp has come as a surprise to many .\na retired metropolitan police detective has been cleared of sexually assaulting a prisoner .\nplans have been unveiled for a bridge across the river thames in london .\ngrowth in indonesia , the world 's third largest economy , slowed to 5.3 % last year , its weakest annual performance since 1998 .\na # 20m university campus has opened in north yorkshire .\npolice searching for missing toddler ben needham on the greek island of kos have begun digging at a second site .\ninternational students spend more than # 1bn a year in scotland 's universities and colleges , according to a report by accountants pwc .\nsale sharks have signed former wales scrum-half mike phillips from french top 14 side racing 92 .\na 102-year-old german scientist has been awarded her doctorate - 80 years after the nazis stole it from her .\nthe sports memorabilia firm topps has told customers that their payment card details may have been stolen in a cyber-attack .\na second man has been arrested on suspicion of raping a 16-year-old girl in a car at birmingham new street station .\nfirefighters in england and wales have gone on strike in a row over pensions .\nineos has said it is on track to restart the second manufacturing unit at its grangemouth petrochemical plant in october .\nnovak djokovic suffered a surprise 6-7 -lrb- 4-7 -rrb- 7-6 -lrb- 7-4 -rrb- 7-6 -lrb- 7-4 -rrb- defeat by ivo karlovic in the quarter-finals of the qatar open .\nthe chief executive of airbus , fabrice bregier , has said the company has no plans to change its investment plans in the uk .\nlabour can beat the tories by itself at the next general election , cardiff central mp jo stevens has said .\nnhs trusts in england are to be rated on the number of staff who speak out when things go wrong .\nviolence and destruction .\nmaria sharapova made a winning return to the tour at the stuttgart open on tuesday .\nqueen of the south manager gary naysmith is delighted to have signed motherwell winger dom thomas and celtic midfielder joe thomson on loan until the end of the season .\ntoymaker lego has ended its promotional deal with the daily mail after pressure from anti-racism campaigners .\ngillingham have sacked head coach darrell pennock and replaced him with graham taylor on a two-year contract .\nan explosion has caused part of syria 's ancient citadel in the northern city of aleppo to collapse , activists say .\nvenezuela 's acting president nicolas maduro has said he will take over the office of the late president hugo chavez .\nthe funeral of a man killed in the tunisia terror attack is to be held later .\nprince philip has become the longest-serving consort in british history .\ncraig mckinstry 's football career has been a remarkable ride . `` in the last month or so when i went into freetown for supplies , i started to see more of the ebola response teams , with the full yellow bio-hazard suits . ''\nbritain 's andy murray beat canada 's vasek pospisil 6-4 7-5 to reach the quarter-finals of the shanghai masters .\nwigan athletic have re-signed striker nick powell from manchester united on a two-year contract .\nthe guernsey states spent more than # 1.1 m on advertising and public relations in the past year , according to new figures .\na court in barcelona has ruled that argentina footballer lionel messi will stand trial for tax fraud .\ntanzania beat kenya 2-1 to win the women 's africa cup of nations in south africa on tuesday .\nsame-sex couples in australia are expected to spend hundreds of millions of dollars on their wedding .\nbritain 's mark cavendish is third after the first day of the olympic men 's sprint event in rio .\nit 's been a day of mixed fortunes for ed miliband at the labour conference in liverpool .\neight women from melbourne have travelled to syria to join islamic state -lrb- is -rrb- militants , australian police say .\nmarkets in asia were mostly higher on thursday as investors remained cautious ahead of key economic data from the us and japan .\na supermarket in greater manchester is to introduce a `` quiet hour '' for customers with autism .\nformer newcastle united manager steve mcclaren says he `` compromised too much '' during his time at st james ' park and hopes new boss rafael benitez has been given greater control .\nan investigation is under way after a number of dogs fell ill after being walked in a field .\na 73-year-old man has died after being hit by a car in flintshire .\nwhen the uk voted to leave the european union on 23 june , the value of the pound fell sharply .\nimagine a world in which all the water in the world 's oceans is desalinated .\ngawker media has been ordered to pay hulk hogan an extra $ 15m -lrb- # 10m -rrb- for publishing a sex tape of the former us professional wrestler .\nphysicists have measured the distorted shape of an electron for the first time .\ne3 is one of the biggest gaming shows in the world and this year it 's focusing on virtual reality .\none of the world 's largest shipwrecks is being excavated for the first time .\na man has admitted stealing the handbag of a woman who died after falling from a motorway bridge .\nhundreds of people have taken part in a walk in memory of teenager paige doherty , who was murdered last month .\nus actor edward herrmann , best known for his role as richard in the hit tv series gilmore girls , has died aged 83 .\nthe family of a `` devoted mum '' found dead at her home have said they are `` devastated '' .\nformer world heavyweight champion mike tyson has warned professional boxers they will be beaten by amateurs at the rio olympics .\npolice in washington dc have arrested a man suspected of killing a wealthy family and their housekeeper last week .\nchampionship strugglers cheltenham continued their winless start to the season with a 2-1 defeat at home to sheffield wednesday .\ned miliband has said a labour government would `` put the interests of britain and british business first '' , as he set out his case for remaining in the european union .\nmore than 1,000 homes in greater manchester are still without power following the weekend 's floods .\nsouth african paralympic athlete oscar pistorius has been charged with the murder of his girlfriend at his home in pretoria .\ngerman carmaker mercedes-benz has said it will offer free software fixes to 80,000 diesel cars to reduce emissions .\ndrugs with an estimated street value of 1m -lrb- # 700,000 -rrb- have been seized during raids in county armagh .\na bid to re-tender for a hospital 's fertility service has been rejected .\nthe closure of two military sites in hampshire will have a `` detrimental impact '' on the area , a council has said .\nthe european commission has announced an aid package to help struggling farmers across the eu .\ncornish pirates director of rugby gavin cattle says his side will have to improve after their crushing european challenge cup win over stade francais in france .\nthe confederation of african football -lrb- caf -rrb- is investigating an incident in which a club official appeared to strike the head of an opposing player .\nbirmingham city reached the women 's fa cup semi-finals for the first time in their history with victory over chelsea ladies .\ntwo explosions have hit two buses in kenya 's capital , nairobi , killing at least one person and wounding at least 30 others .\nhundreds of homes have been refused permission to be built in east yorkshire by the government .\niran 's reformists and moderates have won the most seats in the country 's parliamentary elections .\nwales lock jake ball says he is ready to put his `` stamp on the shirt '' after his first six nations start in 18 months .\nalloa athletic boss simon goodwin says he has found it easier to manage since taking himself out of the team .\ndenmark beat austria on penalties to reach the final of the women 's euro 2017 .\nnew zealand 's prime minister has said at least 82 people have been killed by a powerful 6.3-magnitude earthquake in the city of christchurch .\nislamic state -lrb- is -rrb- militants have used chemical weapons against kurdish peshmerga forces in northern iraq , kurdish officials say .\nthe davis cup final will go ahead as planned , the belgian tennis federation -lrb- ftf -rrb- says .\na man has been found guilty of running the uk 's `` most serious breach '' of medicine controls .\nlewis hamilton says he has drawn inspiration from muhammad ali as he tries to close the gap on mercedes team-mate nico rosberg at the british grand prix .\nat least 77 people have been killed in twin attacks in norway - a bomb in the capital oslo , and a shooting spree on an island attended by the ruling labour party 's youth wing .\ntributes have been paid to a young woman who died in a car crash .\nthirty years ago this week , the herald of free enterprise set sail from zeebrugge in belgium for dover .\nyoutube star connor casey has come out as gay in a video posted on his channel .\npaul o'grady has been offered a free night in southend after reportedly making disparaging remarks about the town on his new tv dating show .\ndan biggar 's decision to sign a welsh rugby union -lrb- wru -rrb- and ospreys dual contract is `` fabulous '' , says former wales captain martyn williams .\nmalaysian oil giant shell has apologised after images of men kissing a cardboard cutout of a woman in one of its adverts went viral on social media .\nfrench police have been involved in two major operations in the past 24 hours .\ntonight 's vote in the house of commons on the investigatory powers bill is likely to be a vote of confidence in the government 's plans .\nisrael has removed controversial metal detectors it installed at a holy site in jerusalem last week .\na european court has overturned fines imposed on 13 airlines by the european commission for price-fixing .\nthe uk will vote on whether or not to stay in or leave the european union , a group of 28 countries in europe .\nlifeguards are to be on duty at camber sands over the weekend following the deaths of five men in the sea there .\nrail operator arriva trains wales is to add extra trains into cardiff .\nwest brom boss tony pulis says striker saido berahino is as good as tottenham 's harry kane or jamie vardy .\na syrian journalist working for an anti-islamic state -lrb- is -rrb- group has been shot dead , his organisation says .\na man who tried to travel to syria to fight with islamic state has been jailed for more than five years .\nleague two side mansfield town have signed colchester united striker sam baldock on a one-month loan .\nthe uk 's longest-serving prime minister , david cameron , is stepping down .\nuk scientists have created dna - and rna-like molecules that mimic the functions of the two molecules .\na team of quadruple amputees have become the first all-amputee crew to row the atlantic .\ncompanies in the southern indian city of chennai -lrb- madras -rrb- and the city of bangalore have declared a holiday on friday to coincide with the release of a new film starring tamil superstar rajinikanth .\nsusie wolff will become williams 's full-time test driver next year .\nbristol rovers manager darrell clarke says he has the full backing of the club 's new owners .\nalex revell and luke varney scored second-half goals as mk dons came from behind to beat ipswich town in the championship play-off final .\nreality tv star caitlyn jenner and hollywood star angelina jolie have been named in the bbc 's woman of the year 2016 list .\ndame sarah storey won her 15th world para-cycling time-trial title on friday .\nrex tillerson is a climate change denier .\na sports journalist is in a critical condition in hospital after being attacked outside a tube station .\na man has been arrested on suspicion of murder after a woman 's body was found at a house .\nbrian o'driscoll and jonathan sexton will start for ireland in sunday 's test against new zealand in dublin .\narchaeologists have discovered walling from 17th century defences at dumfries and galloway castle .\na hindu priest has caused outrage in india after saying allowing women to enter a temple would increase rape .\njen welter has become the first woman to be hired as a coach by a professional american football team after being appointed by the arizona cardinals .\ntalks aimed at ending a dispute over pay and conditions on north sea oil platforms have ended without agreement .\nthe world 's largest floating music festival has taken place in china .\nwigan defender ben watson is expected to be out for six months after suffering a broken leg in saturday 's defeat by liverpool .\nchelsea 's title hopes suffered a blow as southampton came from two goals down to draw at stamford bridge and increase the pressure on interim boss rafael benitez .\nthe chief executive of wales ' patient watchdog was suspended in february 2016 , bbc wales has learned .\nengland pulled off one of the greatest comebacks in test cricket history to beat south africa inside three days in the first test .\na set of previously unseen photographs of the dambusters air raids on germany during world war two have been sold at auction .\na world war two torpedo found on the deck of hms queen elizabeth in portsmouth harbour has been detonated .\npolice are investigating after a newborn baby girl was found abandoned in the street in tallaght , county dublin .\none of india 's best-known sculptors , gulam chand , has died at the age of 88 .\nsri lanka batsman kumar sangakkara has announced his retirement from test cricket .\nplans for a new main stand at tynecastle have been approved by the scottish government .\na man who shone a laser pen at a police helicopter has been jailed for 14 months .\nthe chief executive of malaysian airlines , christoph mueller , is stepping down after less than a year in the post .\na former venezuelan football official has pleaded guilty in a us court in connection with the fifa corruption scandal .\nnigeria 's failure to qualify for the 2017 africa cup of nations is a reflection of the state of the game in the country .\nthe scots accent has been changing for at least 100 years , according to a new study .\nwhat is the best time to buy us dollars if the pound falls further ?\nus president donald trump has made a series of reversals on foreign policy .\nthe number of bengal tigers in the wild in the sunderbans forest in bangladesh and india has fallen to its lowest recorded level .\na five-year-old celtic fan has apologised to the club after missing his birthday party at the club 's home stadium .\na taxi driver has been asked to come forward by police investigating an attempted kidnap in derby .\nsheffield united missed the chance to move into the league one play-off places as they beat shrewsbury town .\nin our series of letters from african journalists , sharmila tagore looks at the rise of chess boxing in india .\na five-year-old boy with severe autism is unable to go to school because he can not get a place at a special school .\neastenders star vicky mcclure has revealed she was thrown off a tram for `` fare evasion '' after it was named after her .\nthe scottish football association 's statement announcing that gordon strachan will remain in charge of the national team says nothing about the manager 's future or the state of the national team 's world cup campaign .\nscottish artist robert simpson has won the john moores painting prize for the first time .\npoles living in the uk are marking all saints day by cleaning up and lighting candles at the graves of their ancestors .\ndavid cameron has said a russian plan to place syria 's chemical weapons under international control will be put to the un security council .\nislamic state -lrb- is -rrb- militants have attacked government-held areas of the eastern syrian city of deir al-zour , reportedly seizing a hospital .\nthe european court of justice -lrb- ecj -rrb- has ruled that eu nationals living in the uk should be allowed to stay after the uk leaves the eu .\na `` damning indictment '' of police scotland 's call-handling processes has been published by the chief inspector of constabulary .\nthe mother of a man who died after being hit by a car has paid tribute to her `` night-night mum '' .\nderbyshire reached 161-4 at the close on day one of the day-night championship match against glamorgan .\nthe uk economy grew by 0.6 % in the second quarter of the year , official figures have shown .\nthe head of the rugby coaches association -lrb- rca -rrb- says he is `` worried '' by the number of high-profile coaches being sacked .\nthe welsh rugby union -lrb- wru -rrb- has defended the number of welsh rugby players banned for doping .\na memorial has been unveiled in east sussex to honour a world war one hero who died in action in france .\nspain 's banks need 59bn euros -lrb- # 40bn -rrb- of state aid , the country 's finance minister has said .\nmarcus rashford scored in extra time as manchester united beat anderlecht to reach the semi-finals of the europa league .\nmore than 100 motorists have been caught using a mobile phone while driving in the space of five days .\nwelsh secretary alun cairns has appeared before the welsh affairs select committee .\ngarry ringrose 's six nations call-up to the ireland squad has been likened to that of brian o'driscoll .\nthe northern ireland government has been told it will not be able to fulfil a promise to provide an extra # 20m for legacy investigations .\nscotland 's skills system is failing to meet the needs of the country 's economy , according to a report .\nselma director ava duvernay has welcomed an apology from the makers of forthcoming movie gods of egypt over its casting .\nhere is prime minister david cameron 's full statement after his party won a majority in the general election .\nthe welsh government 's support for a universal basic income -lrb- ubi -rrb- is `` worrying '' , a business expert has said .\ntammy beaumont 's unbeaten 67 helped surrey stars to victory over yorkshire diamonds in the women 's super league .\nthe shepton mallet cider mill is to close with the loss of more than 100 jobs .\nat least one person has been killed and several others injured in a collision between a train and a lorry near the belgian city of liege .\nrobert lewandowski scored twice as poland beat romania in a world cup qualifier that was briefly halted after the striker was hit in the head by a firework . robert lewandowski -lrb- poland -rrb- converts the penalty with a right footed shot to the bottom left corner .\na red cross volunteer has been awarded a knighthood for his role in the shoreham air disaster .\nsri lanka 's former defence secretary gotabhaya rajapaksa has been charged with corruption .\nplans to expand swansea city 's liberty stadium are still on the table , according to the council leader .\ngraffiti artist banksy has been nominated for a south bank sky arts award .\nif david warner stays on the ashes tour , it will be a huge boost for england .\nmotherwell have confirmed the signing of former leicester city defender nigel pearson on a short-term deal .\na woman who hit a shoplifter over the head with a packet of bacon has been praised by police .\nthe creator of us sitcom the simpsons has said the fictional town of springfield is actually in the us state of oregon .\na west midlands police officer has been jailed for three years for sexually assaulting two women .\nso-called islamic state -lrb- is -rrb- is on the verge of defeat in its iraqi stronghold of mosul , its leadership is `` melting away '' and its laboratories have been destroyed .\nthe head of the liberian football association -lrb- lfa -rrb- is threatening legal action against fifa 's chief electoral officer over his nationality .\na legal bid to unseat orkney and shetland mp alistair carmichael has been thrown out of court .\nthe university of aberdeen has unveiled the uk 's fastest supercomputer .\nmanchester city came from two goals down to beat bayern munich and finish top of champions league group d.\nthe deputy first minister has revealed that his mother found out about his membership of the ira when she was in her 80s .\na blanket ban on so-called legal highs is to be introduced in england and wales , the government has announced .\njohn o'shea scored a late winner as chesterfield came from behind to beat port vale in league one .\nus secretary of state john kerry has visited somalia 's capital , mogadishu .\nindia has refused to allow a documentary on the meat industry to be shown at a film festival in mumbai .\nsam warburton says wales must take `` a few risks '' in saturday 's first test against new zealand in auckland .\na northern ireland university has cancelled a symposium on the charlie hebdo attack .\nthe archbishop of dublin , diarmuid martin , has called on the catholic church in ireland to apologise to families whose children died at mother-and-baby homes .\njohnny depp 's former managers have accused the actor of spending more than $ 100m -lrb- # 77.4 m -rrb- on personal items over the last five years .\nbritain 's liam heath won gold in the men 's single kayak 200m at the first world cup of the season .\na cyclist accused of killing a woman in a hit-and-run crash claimed she `` stopped dead '' in his path , a court has heard .\ntwo security guards have been left badly shaken after an armed robbery at a cash machine outside a royal bank of scotland branch in glasgow .\nlabour has won the cardiff north seat from the conservatives in the general election .\ni 've just returned from a two-week trip to south-east asia .\nretired firefighters in wales are to receive more than # 5m in compensation after a pensions row .\na bushfire in western australia has destroyed at least one home and is heading towards another .\nplans for a visitor centre at the site of the battle of naseby have been given a boost .\nthe olympic games are over , but the romance between britain 's cycling stars is not .\na brazilian footballer who survived monday 's plane crash in colombia will return to football , doctors say .\nthe coroner for cornwall has written to the health secretary calling for an urgent review of the way mental health patients are cared for .\na woman was `` brutally murdered '' by her ex-boyfriend and his girlfriend , a court has heard .\na statue of a chainmaker has been unveiled in a black country park .\nhundreds of people have attended a public consultation on plans to improve the a40 in oxfordshire .\ntwo people have been arrested on suspicion of attempted murder after a police officer was hit by a car during a `` disturbance '' in essex .\na group of commonwealth-born britons have written an open letter to david cameron urging him to leave the eu .\na phd student at glasgow university is using cutting-edge technology to help treat people with facial paralysis .\nthe northern ireland executive has announced a series of new powers for local councils .\njohn hardie 's eyes light up when he mentions the name lockhart 's gaff . never ever . '' the fact that lockhart 's gaff is part of a theme park called fear factory - new zealand 's equivalent of the edinburgh dungeons - is neither here or there to hardie .\nuk retail sales rose in november as shoppers took advantage of black friday discounts , official figures show .\nkey events in the controversial # 1.1 bn sale of nama 's northern ireland loan portfolio .\ned sheeran has donated his clothes to three charity shops .\nan eight-year-old girl who went missing in the indian capital two weeks ago has been found alive .\ntwo window cleaners have been rescued from the top of new york 's tallest building after they became stuck on a suspended platform .\nthe uk is sending a `` perverse '' message on climate change , the un 's climate chief has said .\naberdeen have appointed arbroath boss paul sheerin as their new manager on a three-year contract .\ngaston ramirez scored his first premier league goal of the season as middlesbrough beat bournemouth at the riverside .\nformer minnesota vikings captain jared allen has retired from football .\npolice have appealed for information after a missing edinburgh man was spotted in london .\nyoung people in ivory coast are among the fastest growing parts of the economy .\na convicted killer who absconded from a south yorkshire prison has been arrested by police .\nmayor of london boris johnson has survived his first zip wire experience - by hanging upside down .\nthe tanzania football federation -lrb- tff -rrb- has submitted an application to fifa to become a member of world football 's governing body .\nhow do you reduce air pollution ?\nsean o'brien 's last-gasp drop-goal gave salford victory over hull kr in the million pound game .\nchildren 's books like charlie and the chocolate factory and the bfg have become huge hits in recent years .\na sculpture by the late dame zaha hadid has gone on display at chatsworth house as part of an exhibition of new work by 20 artists .\na man has been seriously injured after falling from a balcony in brighton .\nplaywright james graham has revealed he is working on a tv drama about the eu referendum .\na project to repair badly damaged footpaths in the lake district has been chosen to receive a grant from the estate of guidebook author william wainwright .\ninverness caledonian thistle manager richie foran says saturday 's match against ross county is the biggest of his career .\nlancashire director of cricket ashley giles says his side have been given a `` wake-up call '' by their poor form .\nleicester city 's premier league title win last season was hailed as the greatest sporting success in the city 's history .\nalmost half of athletes at the 2011 world athletics championships said they had taken performance-enhancing drugs , according to research published by the world anti-doping agency -lrb- wada -rrb- .\nbritain 's andy murray and dan evans both won in straight sets to reach the fourth round of the australian open .\nthe family of a teenager stabbed to death after he was hit by a car in manchester have paid tribute to a `` caring and caring son '' .\nall pictures are copyrighted .\nrebels in eastern ukraine have ordered all un aid agencies to leave the rebel-held city of luhansk , the un humanitarian chief has said .\nmillions of people have until sunday night to renew their tax credits or pay a tax bill .\nthe university of oxford is to commission new portraits of female and ethnic minority students , staff and alumni to be hung on its walls .\nfootball association of ireland director general eugene duffy has published a discussion paper which calls for the abolition of the inter-county u21 football championship .\nbrexit secretary david davis has said there can be `` no veto '' over welsh interests during negotiations to leave the eu .\njoseph ` oey ' clark , from liverpool , travelled by car with a group of friends , who all survived .\nus president-elect donald trump has spoken directly to the president of taiwan for the first time .\nbus drivers in dorset are to stage a 24-hour strike in a row over pay .\nthe us department of defence has recalled nearly all of its 800,000 civilian employees who stopped work at the beginning of the government shutdown .\narsenal manager arsene wenger says local players like aaron ramsey and alex oxlade-chamberlain should take charge if he leaves the club this season .\nthe cleethorpes pier has been bought by a businessman who hopes to turn it into a community venue .\ntoshiba 's us nuclear unit westinghouse has filed for bankruptcy protection .\nnewcastle united have signed former france defender anthony reveillere on a deal until the end of the season .\ngps in england are spending an average of eight minutes with patients , the british medical association -lrb- bma -rrb- has said .\na 16-year-old boy from rhondda cynon taff is recovering in hospital after he fell from a bridge and broke his spine .\narchaeologists working on a new museum at a medieval castle have uncovered a `` significant '' collection .\nsir nick faldo says jordan spieth 's dramatic collapse in the final round of the masters will '' scar him for a while '' .\nsyrian government forces have begun allowing the evacuation of a rebel-held district of the city of homs .\nat least 23 people have been killed in a bomb blast in north-eastern nigeria during celebrations by vigilantes fighting boko haram , officials say .\nhundreds of people have taken part in a protest against plans to close 44 children 's centres in oxfordshire .\nmore than 1,000 people have been forced to leave their homes as a huge wildfire rages in northern california .\nliberal democrat peer lord avebury has died at the age of 82 .\nadam lyth 's maiden first-class century put yorkshire in a strong position against surrey at the oval .\npeople living near a prison have been asked to come forward if they see packages being thrown over the wall .\nthe funeral of a mother , her daughter and her partner who were stabbed to death in oxfordshire last month is being held .\nchina has said it will not recognise an international tribunal 's ruling that found its claims in the south china sea are unlawful .\nuganda coach milutin ` micho ' sredojevic has criticised the country 's football association -lrb- fufa -rrb- for failing to pay his salary .\nwolves moved into the league one play-off places with victory over cambridge united at molineux .\nsussex 's luke wells believes he is a better player now than he was three years ago and is targeting 1,200 first-class runs .\nwhen boris nemtsov was shot dead in moscow in february , he had been working on a report accusing the russian government of war in ukraine .\nus secretary of state john kerry has said china 's militarisation of territory in the south china sea is a `` serious concern '' .\ntwo 13-year-old boys from south tyneside have been arrested on suspicion of possessing indecent images of children .\ninspectors have found 26 areas for improvement at dumfries and galloway royal infirmary 's dementia unit .\nthe forth bridge has been given unesco world heritage status .\ngame of thrones actress gwendoline christie is to join the cast of the bbc 's top of the lake : china girl .\nshares in lonmin have jumped after it said it would raise $ 1.5 bn -lrb- # 968m -rrb- in a rights issue to help fund its operations .\na man has denied the manslaughter of a man who was found dead in windermere .\nscientists have used the sticky mucus of a carnivorous slug to create a new type of medical glue .\nsouth african authorities are searching for a lion that escaped from a game park on tuesday .\ncuba 's leader has criticised us president donald trump 's new policy towards the island .\nuk scientists say they are a step closer to developing a new treatment for pig infections .\nbarack obama 's presidential library will be built in his home city of chicago , us media report .\ntwo british men have been jailed for selling drugs on the dark web marketplace silk road .\na new bomber command memorial centre has been hit by a series of break-ins .\nlabour leader jeremy corbyn has said women who suffer during their periods should be given extra days off work .\nfeatherstone rovers have appointed craig duffy as their new head coach .\na mass has been held in glasgow to remember the victims of the italian earthquake .\nlabour has gained chester from the conservatives .\nthe england and wales cricket board -lrb- ecb -rrb- has announced major changes to the county cricket schedule for the summer of 2018 .\ndrivers in scotland are being charged `` inflated fees '' for private parking , according to the court of session -lrb- cas -rrb- .\nreading for pleasure can boost mental and physical health , a report says .\nthe new president of the royal society has called on the government to guarantee the status of eu scientists in the uk after brexit .\na man has been charged with causing death by dangerous driving after a seven-year-old girl died in a crash .\ngermany 's andre greipel won the opening stage of the tour of britain as mark cavendish crashed near the finish .\nthe education secretary 's speech to the national association of head teachers was billed as a chance for her to reassure head teachers about the government 's plans for education in england .\nlabour remains the official opposition in the house of commons , the speaker has ruled .\nthe mother of a five-year-old boy who has gone missing with his father has released cctv images of him in a bid to find him .\na man accused of murdering his ex-girlfriend sent a text message to a friend saying `` hi , how are you ? '' , a court has heard .\na bubble tea chain that offered free training to job seekers has said it will pay staff the minimum wage .\nthe former head of the international monetary fund , rodrigo rato , and two former bankia bank executives have gone on trial in spain on fraud charges .\nsamsung has added ad-blockers to its android mobile browser .\nfive cats have died in the space of a week after eating antifreeze , the rspca has said .\nformer world champion non stanford says she would be `` very surprised '' if helen jenkins is not selected for great britain 's triathlon team for the rio olympics .\na danish prince has been rescued from the surf on australia 's gold coast .\na farmer has been jailed for causing the death of a six-year-old boy by driving his tractor while drunk .\ntelusa veainu scored two tries as leicester earned a bonus-point win over benetton treviso in the european champions cup .\nsouthend united manager phil brown has appealed against the red card he received in his side 's 1-0 defeat by gillingham .\ncardiff city have signed teenage winger kadeem harris from wycombe wanderers for an undisclosed fee .\nengland were comprehensively beaten in the second twenty20 international as south africa won by seven wickets .\nwork on a denbighshire leisure centre which closed last year is due to begin .\na court in poland has sentenced a former university professor to 20 years in prison for plotting a bomb attack on the parliament .\nthe world snooker players ' association has voted to keep the shoot out as a ranking event .\na chronology of key events :\ntwo teenagers have been arrested on suspicion of animal cruelty after a donkey was stabbed .\nthree migrants have died of suspected carbon monoxide poisoning at a camp on the greek island of lesbos , aid groups have said .\nformer rangers captain barry ferguson says he does not think he is ready to become a manager .\nmexico 's congress has approved tough new sentences for kidnappings .\na woman was `` horrifically '' killed by a man who had `` unbelievable strength '' , an inquest has heard .\nsilverstone says it will end its contract to host the british grand prix after the 2019 season .\nsunderland striker sebastian scocco has joined argentine side newell 's old boys on loan until the end of the season .\nkilmarnock moved up to fourth in the scottish premiership with victory over hearts at rugby park .\nseveral us radio stations have been hacked to broadcast an `` obscene '' podcast .\na 25-year-old man has pleaded guilty to the murder of a teacher at a hotel in december .\nrock stars have paid tribute to status quo guitarist rick parfitt , who has died at the age of 69 .\nmanchester united manager louis van gaal has been sacked .\na man has died in a hang-gliding crash in east sussex .\nbbc radio 1 's official chart show is to move to a friday night time slot , cbbc has announced .\na woman has been raped in west belfast .\nmore than 100 doctors and public health experts have signed an open letter criticising the government 's handling of the nhs in england .\nforests in the amazon are rapidly dying out as a result of land management fires , a study has suggested .\na collection of ochre paint kits found in a cave in south africa is rewriting the history of human thought .\nthe number of people making daily commutes of more than two hours has more than doubled in the past five years .\nquiet , solo thinking is unpleasant enough that people would rather have something unpleasant to do than nothing at all , according to a study .\nrichard clarke neville , the co-founder of the australian magazine oz , has died at the age of 83 , his wife julie clarke neville has said .\nan exhibition of work by people with learning disabilities has opened at the national eisteddfod .\nnhs lothian has said a hospital cleaner who contacted a patient on facebook did not have access to her private medical records .\na hall earmarked for closure after a campaign to save it has re-opened to the public .\na blood test could help detect ovarian cancer in its early stages , a study in the us suggests .\nnational league side braintree town have signed former tranmere rovers defender paul mullin on a two-year deal .\ngermany 's olympic champion michael jung won the badminton horse trials on la biosthetique to complete a grand slam .\nthe father of a formula 1 driver who died has criticised lewis hamilton 's criticism of the ` halo ' head protection system .\ncouncils in wales could be forced to broadcast their meetings online under new plans .\nit 's been a difficult few weeks for the senior civil servants in whitehall .\nscotland 's deputy first minister john swinney has put forward a new proposal on the fiscal framework for new scottish powers .\nfast food giant mcdonald 's is being accused of abusing its dominant position in the european franchise market .\none of the uk 's leading classical musicians , sir neville marriner , has died at the age of 93 .\nsports columnist peter corrigan has died at the age of 74 .\ndog owners in oxford are being asked for their views on plans to crack down on irresponsible dogs .\noxford united have extended the loan spell of everton defender liam kenny until the end of the season .\na three-year-old boy has died on a farm in maguiresbridge , county fermanagh .\ntwo police officers have been shot dead in the us state of iowa and a man has been arrested on suspicion of murder .\nthe `` yo '' messaging app , which has been downloaded more than four million times , has suffered a security flaw .\nlondon 's former immigration dormitories have been opened up to the public for the first time since world war two .\nscottish songwriter gerry rafferty has died at the age of 71 .\nliverpool 's supporters ' group will vote on whether to back safe standing at anfield .\nedrington group has announced that crawford gillies is to replace john murray as chairman of the scotch whisky distiller .\nthe vale of rheidol tourist railway in ceredigion is one of the oldest tourist railways in the uk .\nthe russian journalist alexander tsilikin has been found stabbed to death at his home in st petersburg .\nsitting for long periods of time may shorten the telomeres - the ends of chromosomes - in women 's cells , a study suggests .\nan explosion in a cafe in southern spain has killed at least one person and injured at least 20 others .\na former tv studios in manchester has been turned into a music studio .\nthe winchburgh railway tunnel is to close for six weeks as part of major upgrade work .\nthe chief executive of an nhs trust criticised by the health watchdog has resigned .\ndeutsche bank has made a pretty bleak assessment of the economic prospects for the uk .\na british man has been found dead in myanmar .\nat least nine people have been killed in shelling at a school in the rebel-held east ukrainian city of donetsk .\nengland 's school admissions adjudicator has criticised the way some schools in the country allocate places .\na man has been jailed for life for murdering his sister and setting fire to their home .\nderry city secured their place in the premier division play-offs as they came from behind to beat bohemians at maginn park .\na man who has been on the run for 18 years has been ordered to be extradited to albania to stand trial .\nleague two side leyton orient have signed chesterfield midfielder yann kermorgant for an undisclosed fee .\nthe wearable tech industry is booming .\na record number of people are expected to take to the roads over the easter weekend .\nkimi raikkonen headed a ferrari one-two in the final practice session at the belgian grand prix . mercedes executive director -lrb- technical -rrb- paddy lowe told bbc sport that the team were likely to give hamilton only the least possible running in qualifying - probably meaning only one run in the first session - because of his penalties .\nrichard keogh 's first-half header was enough for derby county to beat grimsby town in the opening game of the new season .\na man who raped a 15-year-old girl in a park has been jailed for 13 years .\ndundee stars head coach marc lefebvre says he 's proud of his players for making it to the elite league play-offs .\ntens of thousands of people have taken part in the pride london parade in central london .\nwest ham united have taken over the running of the women 's super league one club .\na children 's video website has been nominated for a bafta children 's award for the first time .\na man has gone on trial accused of attempting to murder 11 people by setting fire to a house in the highlands .\nplans have been unveiled for a glass lift ride on the humber bridge .\nthe queen 's speech has set out the conservative government 's legislative programme for the next five years .\nnasa has developed a new type of plastic that could be used in space .\nwales have qualified for the euro 2016 finals in france for the first time since 1958 .\nmarussia driver jules bianchi is showing signs of improvement after suffering severe head injuries in a crash at the 2014 japanese grand prix .\nit 's not often you get the chance to play against one of england 's greatest ever captains .\nprince harry has shared a photo of himself with some of the children he met during a visit to africa .\nsome police stations in bedfordshire could be closed and officers moved to public buildings , the county 's police and crime commissioner -lrb- pcc -rrb- has said .\nan investigation into allegations of bullying and harassment at a fire authority will be carried out , the home secretary has announced .\nmansfield town have signed morecambe defender carl edwards on a two-year deal for an undisclosed fee .\npolice in the western indian city of mumbai -lrb- bombay -rrb- have arrested a man who was seen walking with the severed head of his wife .\noldham athletic manager karl robinson is hopeful the club 's transfer embargo will be lifted next week .\nsaracens can `` write a new chapter '' in the club 's history after winning the premiership and european champions cup , says brad barritt .\na fossilised skeleton of a meat-eating dinosaur has been sold at auction in the us .\npolice in the us city of dallas have searched the headquarters of their department but found no evidence of a bomb .\na group of former military commanders has written to david cameron warning that cuts to the armed forces have left britain `` dangerously exposed '' .\nmarussia formula 1 test driver maria de villota has lost her right eye in a crash .\nhans ulrich obrist has been named the world 's most influential contemporary art figure .\npeople charged with crimes in england and wales will no longer be able to choose a legal aid lawyer , the head of the bar has said .\npolice in the southern indian city of bangalore have rescued a `` two-headed '' red sand boa constrictor from a black market .\nsydney 's opera house and harbour bridge have switched off their lights as part of the earth hour campaign .\nbelgium 's serge pauwels won the tour de yorkshire for the second year in a row with victory on sunday 's third stage .\n`` i 'm not done yet . ''\na `` heavy gambler '' murdered his friend and dismembered his body in a suitcase , a court has heard .\ndna tests have failed to identify a man whose remains were found on a motorway embankment .\na man has been charged with attempted murder after a police officer was stabbed during a traffic stop in blackpool .\ndavid cameron has urged voters not to `` take a risk '' by voting tactically in the general election , as ed miliband continued to insist he would not form a government with the snp .\natletico madrid boss diego simeone has signed a new five-and-a-half-year contract .\na campaign for a directly-elected mayor for south east wales has failed to hit its target , a councillor has claimed .\nthe chinese government 's crackdown on corruption is harming foreign companies , according to the former editor of the financial times in china , ian mcgregor .\njames anderson has become england 's all-time leading wicket-taker in one-day internationals with his 200th dismissal against australia .\nkyle bartley says leeds united 's recent improvement has been down to manager pep guardiola 's changes to his team .\na man has admitted killing an 84-year-old man who was attacked in his home .\n-lrb- close -rrb- : london 's leading shares closed higher , with shares in burberry leading the way .\nformer first minister jack mcconnell has revealed he `` fell down a drain '' in malawi .\nengland captain sean o'loughlin says he is not surprised new coach wayne bennett is an australian .\na murder investigation has begun after the body of a 41-year-old man was found at a house in dundee .\njazz carlin says she has been working with a sports psychologist after becoming the first welsh woman to win two olympic medals .\nstoke city manager mark hughes has dismissed reports linking striker peter crouch with a move to west brom .\ndefence secretary michael fallon has officially opened a new military rehabilitation centre at st george 's hospital in tooting .\nengland suffered another batting collapse as they lost to india a by eight wickets in the second one-day international in mumbai .\nchina 's tianjiu long won olympic gold in the men 's -105 kg weightlifting .\nformer wales and british and irish lions flanker john faull has died at the age of 88 .\na couple from falkirk have become the uk 's biggest lottery winners after scooping # 14.6 m in the euromillions jackpot .\nnational league strugglers guiseley have signed defender joel bywater on loan from league two side doncaster rovers until the end of the season .\nprisoners at dumfries prison are provided with a small cell .\nengland 's chris woakes , ben duckett and toby roland-jones have been named among wisden 's 10 cricketers of the year .\nlabour leader jeremy corbyn has appointed jo glass as shadow education secretary after the resignation of lucy powell .\nfive former argentine military officials have gone on trial in buenos aires for human rights offences .\nthe sudden death of jayaram jayalalitha , the chief minister of the southern indian state of tamil nadu , has left a void in the political landscape of the state .\na consultation on plans to build up to 300,000 new homes in greater manchester has been delayed .\na cash-strapped nhs group has proposed suspending non-urgent hospital services to save money .\na prison officer injured in a dissident republican bomb attack has died in hospital .\nthe royal opera house was evacuated during a performance after a fire alarm went off .\npeople in bristol have been complaining about the smell of vinegar coming from their homes .\nthe deadline has been set for people to apply for a medal to mark the 75th anniversary of the hms lancastria disaster .\none of adolf hitler 's last surviving bodyguards has died in berlin at the age of 94 .\nthe number of cautions issued by the rspca in wales has risen , according to the charity 's annual report .\nthe number of scots seeking work rose by 15,000 between may and june , but the number of people in work fell .\nmanchester united 's zlatan ibrahimovic says team-mate paul pogba `` likes the pressure '' of being the subject of social media criticism .\nan indian woman who says she was forced into marriage in pakistan has returned home .\na philippine court has found a us marine guilty of killing a transgender woman in 2014 .\nthe judge leading the inquiry into undercover policing has ruled that former undercover officers can ask for anonymity .\nthe fifa corruption scandal has hit the world 's biggest football sponsors hard .\nnew guidelines on abortion in northern ireland call for a mental health assessment to be carried out on women seeking terminations .\na woman has been shot dead in what police believe was a `` targeted '' attack .\ngreat britain have named their squad for the world rowing cup in florida later this month .\nchristie kerr 's appointment as scotland women 's head coach is a `` great appointment '' , according to motherwell striker kate grant .\nin the summer of 1929 , mahatma gandhi was at his ashram in the western indian state of gujarat .\na baby died after medics failed to spot signs of distress during his mother 's labour , an inquest has heard .\na british man has set a new world record for bouncing on a pogo stick .\nvictims of sexual abuse in the south west are being turned away because of a `` significant gap '' in services , a charity has said .\nthe best way to get a piece of paper into a wastebasket is to throw it slowly , a study suggests .\nan outbreak of e. coli in france is thought to have been linked to sprout seeds sold in the uk .\ntanzania 's president jakaya kikwete has sacked a minister accused of taking $ 1m -lrb- # 690,000 -rrb- from a government escrow account .\nwales coach warren gatland has denied his players have been banned from drinking alcohol during the world cup .\na public consultation into the location of a nuclear waste dump in scotland has opened .\na common diabetes drug can extend the lifespan of mice , a study suggests .\ntennis star andy murray has been recognised in the new year honours list .\nan investigation has been launched into the police response to a 72-year-old man who was later found dead at a sheltered housing complex in the highlands .\nit 's that time of year again when business leaders look forward to the new year .\nferguslie park in renfrewshire is the most deprived area in scotland , according to official figures .\nliverpool midfielder joe allen 's spare time is usually spent looking after birds .\nrussia has enacted a controversial new law that tightens restrictions on bloggers and social media sites .\na fugitive from poland has been jailed for seriously injuring his five-month-old son .\narmed police evacuated a coach on the m6 toll road after reports of a suspicious substance on the vehicle .\nthe nhs in england could be bolstered by more nurses , pharmacists and other health staff , a think tank has warned .\na bill cosby stand-up special on netflix has been postponed amid growing allegations of sexual assault against the us comedian .\nthe county down engineering firm norbrook has appointed paul nagle as its new chief executive .\njockey george melling has been moved out of intensive care after suffering a bleed on the brain following a fall at the cheltenham festival .\nengland 's opening euro 2016 match against russia on friday will be important because it will be the first time we have played a team from a weaker group .\nthe verdict is expected to be delivered next week in the trial of the prominent republican thomas ` slab ' murphy .\na teenager has been jailed for eight years for killing a 15-year-old boy at an aberdeen school .\nthree men have been jailed for child sex offences in hertfordshire .\nthe owners of silverstone racetrack have abandoned plans to sell the venue .\na lack of citizenship document can make your life tough - you can not get a driving licence , open a bank account , pursue higher education or carry out legal transactions , says the un resident humanitarian co-ordinator .\nthe ey item club has cut its growth forecast for the uk economy in the wake of the eu referendum .\nvoting has begun in the general election in merseyside .\nstar wars : the force awakens has been named best film at the empire awards .\nthe 10th edition of the indian premier league gets under way on friday , with the opening match between mumbai indians and kings xi punjab at the wankhede stadium in mumbai . gujurat lions v kings xi punjab -lrb- 10:30 bst -rrb- rising pune supergiants v mumbai indians . royal challengers bangalore v\ndeputy prime minister nick clegg was on bbc radio 4 's today programme on wednesday talking about the prison population in england and wales .\nromania 's prime minister sorin grindeanu has lost a vote of no confidence in the parliament .\nbarcelona have confirmed they have paid 13m euros -lrb- # 10.7 m -rrb- in tax on the signing of brazilian forward neymar .\na `` vicious '' raccoon is being cared for by an animal rescue centre after scaling the roof of a house .\nthe bbc understands that un investigators are considering publishing the names of war criminals in syria .\nformer england captain ian botham is the chairman of the england and wales cricket board 's cricket committee .\nbristol rovers midfielder ryan broom has signed a new one-year contract with the league two club .\nsri lanka has launched an investigation into allegations of match-fixing in a one-day international against england last october .\nlizzy yarnold 's olympic gold medal in the women 's skeleton is the latest in a long line of success for britain in the sport .\nwales rugby player liam williams has apologised after a photo of him dressed as a black footballer was posted on social media .\na decision on a # 500m housing development in guildford has been delayed .\nbrazilian airline latam has said it will suspend flights to venezuela because of the country 's economic crisis .\nisrael says it `` deeply regrets '' the harm caused to palestinian civilians during last year 's war in the gaza strip .\nthe latest group of syrian refugees have arrived in londonderry .\nthe governor of the us state of indiana has hit back at critics of a new religious freedom law .\neleven people have been arrested over a landslide in southern china last month .\namnesty international has accused the eu of `` sugar-coating '' a plan to send migrants back to turkey .\nthe bodies of 12 syrian migrants have washed up on a turkish beach .\nthe transport minister , chris hazzard , has announced plans to extend the hours of bus lanes in belfast .\nthe owner of argos has reported a slight improvement in sales , ahead of a deadline for bids for the retailer .\nbbc northern ireland 's spotlight programme has won the scoop of the year award at the royal television society awards .\nseveral teachers at a west belfast school have stood silently at the doors of classrooms in protest .\nliverpool manager jurgen klopp said he was responsible for his side 's performance as they lost 3-1 to sevilla in the europa league final in basel .\npeople can now check on the quality of care at more than 20,000 care homes in england online .\njustin bieber has been involved in a hit-and-run incident , police have confirmed .\nthe launch of fourth generation -lrb- 4g -rrb- mobile services in the uk could be delayed until next year .\na ukip parliamentary candidate has apologised after appearing to question the cost of hiv treatment in the nhs .\nmanchester united 's hopes of reaching the europa league quarter-finals suffered a major blow as they lost 2-0 at olympiakos in the first leg of their last-16 tie .\na man arrested in connection with the murder of a schoolgirl nearly 50 years ago has been released without charge .\nsaracens head coach mark mccall says he would be `` devastated '' if one of his players had punched scarlets ' james davies - but wayne pivac has defended the welshman .\na bypass could be built south of stonehenge as part of a # 1.4 bn upgrade of the a303 .\nbritain 's bryony english has won a silver medal in the women 's trampolining .\nif you 're not a member of the northern ireland assembly , you 're probably not reading any of the papers today .\nbbc sport will bring you live coverage of south shields v bridlington town in the first round of the fa cup .\na red kite has died after being shot in north yorkshire , the seventh bird of prey to die in the past two months .\nedinburgh council has said it is `` 100 % committed '' to building a cycle path across the city .\npolice forces in england and wales are rationing their response to 999 calls , inspectors have warned .\niranian president mahmoud ahmadinejad has called on the syrian government and its opponents to negotiate .\na police officer who was called to a disturbance in a glasgow pub took to the stage to sing happy birthday to you .\nbritain 's alex thomson has extended his lead in the vendee globe round-the-world yacht race to almost 1,000 miles .\na long-awaited bypass for a carmarthenshire town is expected to be open by 2020 , the welsh government has said .\nbelgian cyclist robbert van den driessche has been banned for six months after being found guilty of `` technological fraud '' .\nthe un has accused russia of violating turkish airspace twice in the past three days , including on saturday , when a russian su-24 jet strayed into turkish airspace .\nliverpool have signed midfielder jordan henderson from sunderland .\nthe length of time people are held at brook house immigration removal centre in surrey has increased , a report has found .\nmikheil saakashvili is one of georgia 's most controversial leaders .\nleeds rhinos head coach brian mcdermott says saturday 's super league grand final win was a fitting send-off for the club 's departing captains .\na man 's death would have been `` in all probability '' avoided if he had not taken a so-called `` legal high '' , a sheriff has concluded .\njewish community centres across the us have received threats of a bomb attack .\na man who put his `` green monster '' pushchair up for sale on ebay has sold it for # 120,000 .\nworcestershire director of cricket steve rhodes says the decision to play on flat pitches at new road this season has paid off .\nthe mayor of the iranian capital , tehran , has announced plans to turn the notorious evin prison into a park .\nthe american civil liberties union -lrb- aclu -rrb- is suing the us military over its policy of excluding female servicewomen from combat roles .\nroyal mail has reported a fall in half-year profits as cost-cutting plans are stepped up .\nat least six policemen have been killed in an attack by militants in southern afghanistan 's helmand province .\na woman has been seriously injured after being dragged along the street by the neck in a suspected hate crime in northern germany .\njockey ryan moore has been ruled out for the rest of the season with a shoulder injury .\nbradford 's unbeaten start to the season came to an end as they lost 1-0 at oxford .\nthe official anthem of england 's 1966 world cup team has been released for the first time in 34 years .\nan inquest has heard police believe a body found in a park on christmas day may be that of a vietnamese man .\nimmigrants should be forced to learn welsh if they want to live and work in wales , mps have said .\napple and facebook have become the latest silicon valley firms to offer female staff the option to freeze their eggs .\na woman who painted red and white stripes on her west london house is taking legal action against the council over plans to demolish it .\nthe secretary of state , theresa villiers , has agreed to grant the northern ireland executive extra borrowing powers to fund a redundancy scheme for civil servants .\na french tv channel has claimed that a fuel additive used in petrol stations may have contributed to the high rupture rate of breast implants .\nit 's been a year of political turmoil in australia , with the country 's prime minister facing a leadership challenge .\ncannabis plants with an estimated street value of # 1m have been found in two disused buildings in dundee .\nthere has been a sharp fall in the number of days psychiatric patients are kept in hospital in england .\nchris gunter says wales have `` underachieved '' but is confident they can reach euro 2016 .\na roman catholic priest is to stand trial accused of a string of historical child abuse offences at a school in inverness in the 1970s .\nan 11-year-old boy 's robot is to be part of this year 's xponorth design festival .\na teenager has been jailed for life for stabbing a man to death in south london .\nscott waites says winning the bdo world championship is a `` dream come true '' after recovering from shoulder surgery .\nleicester riders are aiming to add the british basketball league play-off trophy to the premier league title they won on monday .\na number of popular household products are getting smaller , according to research by the consumer group which ?\nseven police officers are to be questioned over an incident in which a prisoner lost part of his fingers .\npassengers are being encouraged to stand on both sides of an escalator at one of london 's busiest tube stations .\npolice are investigating the death of a man in west belfast on saturday morning .\nthere is a familiar sight at the market in south sudan 's capital , juba .\nis kolkata -lrb- calcutta -rrb- the snow capital of india ?\ndozens of people had to be evacuated from their homes in west lothian after a suspicious fire .\ndemolition work on the site of the collapsed didcot a power station in oxfordshire is expected to be completed in may .\none of the world 's biggest bitcoin trading platforms , bitfinex , has been hacked .\nhundreds of girls have been sexually abused in rotherham , campaigners have told the bbc .\nconditions at a prison where two inmates escaped last year are `` inhumane '' , a watchdog has said .\nit is a far cry from the glitz and glamour of the premier league for dj campbell .\nryan zinke , donald trump 's new interior secretary , has been sworn in on horseback .\nteachers in wales are to be encouraged to update their skills as part of a major overhaul of the profession .\nat least 140 soldiers have been killed in an attack on an airbase in eastern libya , a rival militia says .\npepper , the humanoid robot , is to be deployed in two belgian hospitals .\nengland women 's head coach mark sampson has named his squad for next month 's friendlies in spain .\nthe premier league table is starting to take shape after the international break .\nthe government 's renewable heat incentive -lrb- rhi -rrb- scheme is designed to encourage the development of renewable energy sources .\nmanchester united goalkeeper victor valdes has had his loan spell at belgian side standard liege terminated .\npolice investigating a hit-and-run crash involving tour de france champion chris froome say they can not find any witnesses .\na citron car dealership has been damaged in a fire .\n`` you 're going to have a good day , '' said a marshal to colin montgomerie as he prepared to tee off at royal troon .\n.\ntesco has reported its first rise in uk sales for more than two years .\na sudden increase in the number of leatherback turtles has been reported off the coast of wales .\nall photographs courtesy of joint arctic command .\na kuwaiti man held at the us military prison at guantanamo bay for more than a decade has been freed .\nmichael donnelly has reached the quarter-finals of the men 's light-flyweight boxing with a win over cuba 's yader alhassan at the olympic games .\nfrench prosecutors say they are confident they can reach the site where the germanwings flight 4u 9525 crashed on tuesday , killing all 150 people on board .\na group representing imams in england says it is working to improve standards at madrassas after a teacher was found guilty of beating children .\na section of the m1 was closed to traffic after a plane was forced to make an emergency landing .\nthe us federal reserve has raised its benchmark interest rate for the first time in nine years .\na hacker has taken over norwich international airport 's information website .\nthe scottish government has been ordered to reconsider plans for four offshore wind farms .\nthe airline industry is set to benefit from a # 5m loan from the welsh government .\nmore than half of people in england who asked for help with social care did not get it , figures show .\ntwo original cels from walt disney 's classic film snow white have been sold at auction for more than # 6,000 .\nthe london symphony orchestra is to pay tribute to composer john williams at this year 's bbc proms .\ngreat britain 's marcus ellis and chris langridge won gold in the men 's doubles by beating china 's chen xu and du yue .\ndavid haye says he will `` take whatever punishment '' the british boxing board of control -lrb- bbbofc -rrb- imposes for his post-fight comments to tony bellew .\nas the final whistle sounded at the stade de lyon , the welsh anthem was played over the public address system .\ncape verde and zambia played out a goalless draw in a rain-affected group d match at the 2017 africa cup of nations in gabon to qualify for the last eight .\ngreek prime minister alexis tsipras has said he ordered his finance minister to draw up a plan in the event of a national emergency .\na record number of women have been elected to iran 's parliament .\nformula 1 boss bernie ecclestone says the bahrain grand prix will go ahead this weekend despite ongoing anti-government protests .\nnewcastle united have signed netherlands defender daryl janmaat from feyenoord on a four-year deal for an undisclosed fee .\njames ward produced a stunning comeback to beat john isner and give great britain a 2-0 lead over the united states in their davis cup quarter-final .\na man who shook and threw a six-week-old baby in his care has been jailed for four-and-a-half years .\nthe conservatives are the only party in a position to win an overall majority in the general election , a senior tory has told the bbc .\na woman who posed as a dying cancer patient to dupe a friend into thinking she was dead has had her jail term cut .\nthree more schools in edinburgh have been temporarily closed due to safety concerns .\ncardiff devils are the best team in the elite league and can win the treble this season , according to netminder matt bowns .\nirish airline aer lingus is to end its summer flights between dublin and london stansted .\nscotland 's deputy first minister john swinney has told msps the funding deal being offered to councils does not merit an 18 % increase in council tax .\na woman has been airlifted to hospital after crashing her motorbike on a beach in bridgend county .\na controlled explosion is due to be carried out on an unexploded world war two bomb found in a quarry .\ntwo men who stole more than 100 sheep have been jailed .\nan 18-year-old man has been arrested after a woman was raped at a railway station in hampshire .\nbrewing giant sabmiller has rejected a fresh takeover offer from rival anheuser-busch inbev .\nworkers at drinks giant diageo have voted in favour of strike action in a row over pensions .\nthe premier league has extended its us television rights deal with nbc for a further three seasons .\npeople born in the early 1980s are the first post-war group to have lower wealth than their predecessors , a think tank has said .\na man has been found guilty of dragging a 77-year-old man under his car during a burglary .\nthe chief executive of the financial conduct authority -lrb- fca -rrb- , mark thompson , has said he would want to review the tax rules for footballers .\na doctor who took a # 10,000 loan from her patient 's bank account has been struck off the medical register .\nearth wind & fire may have been one of the most popular disco bands of all time , but they were more than that .\na 41-year-old man has been jailed for three-and-a-half years for registering more than 2,000 false births .\nthe green party has launched its general election campaign in brighton pavilion .\na new washing machine factory in county durham is creating 100 jobs .\npolice in pakistan say they have arrested more than 100 people over the mob killing of a christian couple accused of blasphemy against islam .\nukip leader nigel farage has predicted a `` breakthrough '' in may 's welsh and northern ireland elections .\naccrington stanley manager john coleman says the league two 's decision to allow carlisle united to play away from home is unfair .\nthousands of people have taken part in the annual belfast pride parade in the city centre .\nthe labour mp for colchester , will quince , has been arguing in the house of commons for more funding for regional theatres .\ncardiff 's principality stadium will host its first european cup final when juventus take on real madrid in the champions league final next month .\nsheffield wednesday midfielder george wildsmith has signed a new four-year contract with the championship club .\nshares in europe and the us have fallen sharply after the cyprus bailout deal was agreed .\nthe number of drunken passengers arrested at uk airports has more than doubled in a year , figures obtained by bbc panorama suggest .\ni am speaking to a group of sri lankan women who have been detained at the sri lankan embassy in riyadh , saudi arabia .\na former police and crime commissioner -lrb- pcc -rrb- has settled her claim for unfair dismissal .\nelections for the new mayor of tower hamlets in east london will be held on 5 may .\nengland 's tommy fleetwood is one shot behind leader brian harman after three rounds of the us open .\na taxi driver 's pictures of festival-goers in his cab are to go on display in edinburgh .\na 47-year-old woman has been found guilty of stabbing a man to death at a flat in edinburgh .\nmexico 's president enrique pena nieto has sacked the country 's top consumer protection official after a row over a restaurant table .\nthe us has accused the un 's human rights council of being biased against israel and venezuela .\nthe chief constable of humberside police has written to head teachers asking them to allow police officers to take holidays with their children .\nlorry drivers have been caught using their mobile phones at the wheel during a police operation .\nlabour mp sir kevin barron has said he may have breached the house of commons code of conduct .\nturkey 's parliament has approved a bill that gives the police sweeping new powers to deal with protests .\na man and a woman in their 20s have been arrested on suspicion of syria-related terrorism offences .\nconstruction work on a bridge has unearthed a time capsule dating back more than 120 years .\nthe bodies of all five people on board a helicopter which crashed in snowdonia have been found .\na rare koi fish that escaped from a flood-hit water park has been found .\n-lrb- close -rrb- : wall street markets closed higher on wednesday , boosted by a rise in oil prices .\nwatford football club is to erect a statue to its former manager graham taylor .\nthe head of ofsted has criticised the government 's plans to force all pupils to study five traditional academic subjects at gcse .\nteam sky principal dave brailsford says he is `` not proud '' of the way the team has dealt with recent controversy .\na teenager has been found guilty of trying to recruit a vulnerable man to carry out a terror attack in memory of fusilier lee rigby .\nlabour could be `` pushed into the arms of ukip '' if it campaigns for the uk to remain in the eu , a senior mp is to warn .\nthe death toll from wednesday 's 6.3 magnitude earthquake in indonesia 's aceh province has risen to at least 30 .\nformer england manager graham taylor will be remembered for more than his achievements on the pitch .\nindia 's economic growth in the last decade has been a source of debate .\nan exhibition celebrating the 150th anniversary of jane austen 's novel pride and prejudice has opened .\nshares in the world 's biggest cruise operator , carnival , have risen after it reported better-than-expected profits .\nstaff shortages were found at aberdeen royal infirmary during an inspection , according to a report .\nstade francais qualified for the european challenge cup quarter-finals despite losing to harlequins .\nmexican prosecutors have asked a judge to issue arrest warrants for some of the staff at a nursery where dozens of children died in 2009 .\na third sinkhole has appeared in manchester city centre in less than three months .\nnetflix has announced that it is now available in every country on the planet .\ntwo labour mps have resigned from jeremy corbyn 's front bench following his reshuffle .\ngloucester cathedral is to add girl choristers for the first time .\nsurrey police has been told it must improve its investigations into more complex crime .\nmae cynllun peilot yng nghwm cynon a chastell-nedd yn canolbwyntio ar gleifion mae eu meddygon teulu yn dangos unrhyw arwyddion neu symptomau brys\na man accused of plotting an islamic state-inspired terror attack sent a photo of a police officer to friends , a court heard .\nkenya 's president has accused the judiciary of trying to interfere in the running of the election .\nukip donor arron banks has repeated his offer to become the party 's chairman , saying ukip is `` at a crossroads '' .\na lifeboat has been launched after a fishing boat got into difficulty off the anglesey coast .\nfive men have appeared in court accused of misusing a police helicopter .\nthe next vice chancellor of oxford university has called for universities to do more to counter violent extremism .\njose mourinho says his chelsea side `` made manchester united disappear '' as they beat them for the first time in five league matches .\nshadow foreign secretary emily thornberry has been criticised for tweeting an image of a house with england flags .\nferguson shipbuilders has been bought out of administration by clyde blowers capital , run by businessman john mccoll .\nthe french president has visited the site of a former nazi concentration camp , where tens of thousands of french jews were killed .\nnavinder sarao , the uk financial trader accused of contributing to the 2010 wall street `` flash crash '' , has appeared in court in london .\na cyclist has died during a charity ride in north wales .\na gene defect has been linked to male infertility for the first time , according to a report .\ncuts to adult social care budgets are forcing councils to cut back on care for the elderly and disabled , a survey suggests .\nricky gervais ' new show the ricky gervais show will be looking at the future and how robots are changing our lives .\nscientists have solved the mystery of the `` stress field '' behind some of the world 's most famous rock formations .\neight people have been arrested after a bank in flintshire was vandalised by a group of youths .\nfrench politicians have criticised the appointment of former european commission president jose manuel barroso as an adviser to us bank goldman sachs .\nmore than 100 photographs have gone on show in bristol as part of a 24-hour photography competition .\ntributes have been paid to a former glamorgan cricket player who died suddenly on sunday .\na man who knocked down two children in leeds has been found guilty of causing serious injury by dangerous driving .\nvolkswagen says it sold more than 500,000 cars with the software at the centre of the emissions scandal in europe .\nsouthampton manager claude puel says the club want to keep defender virgil van dijk .\njohnston press , the publisher of the scotsman , has reported a rise in annual pre-tax profits despite a fall in revenues .\nhundreds of buses have been put in place to deal with disruption on the reading to london paddington rail line over easter .\na brother of hillsborough victim philip steele was `` pushed towards the goal '' in the crush , the inquests heard .\nthree children have been taken to hospital after a water slide collapsed at a carnival in dorset .\na man has been sentenced to 16 years in prison in the us state of california for killing 18 cats .\nireland 's women 's hockey team won their first ever world league 2 title with a 3-0 victory over south africa in the final in johannesburg .\nformula 1 boss christian horner says he is `` amazed '' silverstone has triggered a break clause in its contract to host the british grand prix .\nunion flag protests are damaging northern ireland 's image around the world , the secretary of state theresa villiers has said .\njames mcclean , darren randolph and colin doyle have been named in the republic of ireland squad for the world cup qualifier against mexico in los angeles on 2 may .\n-lrb- close -rrb- : wall street markets were mixed on monday , as falling oil prices weighed on energy stocks .\na man has been assaulted during a robbery at a house in antrim .\na man has been found dead in a street in greater manchester , police have said .\nplans to scrap grants for student nurses in england have been criticised by the royal college of nursing .\njason dufner extended his lead at the pga championship to three shots with a hole-in-one on the final hole at oak hill .\nwhen i first heard the news of john henry 's death , i had no idea what to make of it .\na convicted drug dealer and his wife have been jailed for hiding more than # 300,000 in their garden .\ngermany 's michael jung will take a 10-point lead into sunday 's showjumping final at the badminton horse trials in england .\nthe first group of uk students to study in the us this autumn have been welcomed to washington dc by the us ambassador .\nsix teams have been shortlisted to design the restoration of a 19th century stately home destroyed by fire .\npolice in iran have arrested seven people after a video of them dancing to pharrell williams ' song happy went viral .\nthe international cycling union -lrb- uci -rrb- has opened an investigation into an alleged racist incident at the tour of britain .\nthree people have been taken to hospital after a double decker bus and a lorry collided on the a34 .\na building at the university of aberdeen is to be closed for up to a year because of asbestos .\npolice in the brazilian city of sao paulo have cleared a square of drug addicts .\nperuvian president ollanta humala has said his government has begun to lay the groundwork for a `` great transformation '' , a year after he was elected .\n-lrb- close -rrb- : the dow jones industrial average fell back below 20,000 points for the first time this year .\nthe irish foreign minister has said the irish government is doing all it can to secure the release of an irishman on trial in egypt .\nthe ospreys finished fifth in the pro12 with a convincing bonus-point win over connacht in swansea .\nstrand collective , a group of photographers based in brighton , have produced a series of portraits of members of the public dressed as members of the armed services .\nleeds rhinos secured a home super 8s semi-final with victory over st helens at headingley .\nconservative zac goldsmith has been chosen as the party 's candidate for the london mayoral election in may .\none person has died and another has been injured in a collision between a car and a military tank during a nato exercise in norway .\na second inquest into the death of cumbrian toddler poppi worthington has been postponed .\nrussian football fan leader alexei shprygin , who was arrested at a match in france , has been deported .\nspending by the bbc boosted the uk economy by nearly # 8bn between 2013 and 2015 , according to the corporation .\nrussian opposition leader alexei navalny has been found guilty of embezzlement and sentenced to five years in prison .\nthe ulster unionist party leader , jim murphy , has said his party will not be a `` one-trick pony '' in northern ireland .\nbelfast giants have had four players named in the great britain squad for the world championship -lrb- division 1b -rrb- in cortina .\na writing desk used by charles dickens in his final home has been given a # 1m grant to be displayed at a museum .\nthe dominican republic has deported thousands of undocumented migrants from haiti over the past year .\nmore than 5,000 soldiers could lose their jobs as part of plans to cut the army 's size .\nfifa president gianni infantino has opened a football training centre in south sudan on his first official visit to africa .\nbritish number one johanna konta says she has `` a lot to improve on '' after losing to aleksandra krunic in the first round of the us open in new york .\ndisney 's the lion king is among 25 new additions to the us library of congress 's national film registry .\nit is not every day you see a pot of potting soil in the middle of a field in slievenacloy , county down .\nthe scottish government has said it is `` sorry '' a # 10bn investment deal with a chinese consortium has collapsed .\nopium poppy cultivation in afghanistan has increased for the first time in three years , according to a un report .\nhull city midfielder sam clucas has signed a new four-year contract with the premier league club .\na girl with a rare form of leukaemia is recovering in a french hospital after a british man raised thousands of pounds for her treatment .\nscientists have recreated how monarch butterflies navigate their annual migration from north america to mexico .\nmps should be allowed to serve as ministers in the welsh assembly , the institute of chartered accountants in wales has said .\nthe european arrest warrant -lrb- eaw -rrb- is a key tool in the fight against organised crime and terrorism .\nthe latest attacks on an aid convoy in northern syria and a hospital in the rebel-held city of aleppo are the latest blow to the fragile ceasefire that came into force on friday .\ntwo men have been arrested after drugs with an estimated street value of more than 400,000 euros -lrb- # 384,000 -rrb- were seized in dublin .\npeople will be able to find out more about plans to build a travellers ' site in machynlleth .\nswiss voters go to the polls on sunday to decide on a proposal to limit immigration .\ncolchester united have signed striker luke guthrie from welling united .\nyau wai , a member of hong kong 's new pro-independence party youngspiration , has become a lightning rod for the territory 's pro-beijing establishment .\nhull fc continued their 100 % start to the super league season with victory at catalans dragons .\nfour black people accused of torturing a mentally disabled man in a video broadcast live on facebook have been denied bail .\nbritain 's lizzie armitstead retained the leader 's yellow jersey as netherlands ' marianne vos won stage four of the women 's tour .\nthe number of plastic carrier bags used in the uk has gone up , according to a new report .\ntwo men have been charged in connection with a series of sexual assaults in sunderland .\nchristian wade 's two tries helped wasps to a bonus-point premiership win at 10-man worcester .\nasian shares fell on friday after comments from us federal reserve chair janet yellen raised fears of a stock market bubble .\njurassic world , the latest instalment in the jurassic park series , has smashed box office records on its opening weekend in both the us and china .\na british officer accused of sexually assaulting a woman in uganda was `` fairly animal '' , a court martial has heard .\na man who killed his friend with a single punch at a scooter rally has been jailed for three years .\nwork is set to begin on three key sites in dundee 's waterfront project .\na letter written by john lennon to his aunt has been put up for auction .\na widow has been left `` devastated '' after thieves broke into her house while she was at her husband 's funeral .\nplans to protect a coastal railway line damaged by storms have been unveiled by network rail .\na company awarded a # 39m deal to buy timber in 2014 has missed a deadline to build a new saw line , the environment secretary has said .\nseven churches in shropshire and herefordshire have been awarded grants of more than # 300,000 to help fund restoration work .\nthe supreme court is to rule on the legality of term-time holidays in england after a father won a legal battle over his daughter 's unauthorised trip to disneyland .\ndavid cameron 's decision to reveal details of his family 's tax affairs is a brave one .\nbraille paving in hull has been branded `` meaningless '' by a teacher .\nhoney bees exposed to common pesticides appear to have an epileptic-like state , research suggests .\na brewery is not breaking the law by banning bikers from its pubs , a solicitor has said .\nthe police and crime commissioner for devon and cornwall has announced he will not stand for re-election in 2015 .\na new code of practice for police stop-and-searches in scotland has come into effect .\nsevere weather was the cause of a military plane crash in myanmar last month that killed 122 people , investigators say .\nparts of northern germany have been hit by severe flooding caused by storm axel .\nas the 25th anniversary of the hillsborough disaster approaches , bbc news takes a look back at the day of the fa cup semi-final , when 96 football fans died .\nan actor with motor neurone disease has called for a change in the law to allow him to die .\nthe former chief executive of a council-funded youth provision company `` freezed and squeezed '' staff , the bbc has learned .\ngirls aloud 's kimberley walsh and les miserables star alfie boe will sing one vision for team gb at the 2012 olympics .\nmore than 100 sheep have been stolen from a farm in dumfries and galloway .\na fourth man has been arrested in connection with a shooting in rugby .\nthe shooting at a mosque in quebec city on sunday night left six people dead and five others injured .\nnigeria 's army has detained more than 100 children as part of its fight against boko haram militants , the un says .\nthe influence of a prime minister outside the eu would be `` zero '' , the european commission president has said .\nmansfield town striker paul green says he turned into an `` unhappy player '' after being released by the club .\nthe number of motorcyclists killed in london has risen by more than a third in the past five years , transport for london -lrb- tfl -rrb- has said .\na portuguese footballer has been banned for five years for attacking a referee during a match .\nboreham wood have re-signed bristol rovers striker jordan lucas on loan until the end of the season .\ntens of thousands of anti-government protesters have taken to the streets of thailand 's capital , bangkok , ahead of 2 february elections .\nthe information commissioner 's office has warned of a rise in the number of unsolicited calls and texts offering to invest people 's pension money .\nleicester city have signed former stoke city striker craig gordon from national league north side stafford rangers on loan .\ndonald trump 's `` lock her up '' rhetoric , a parade of sexual assault allegations against his rival hillary clinton , and the final us presidential debate .\nin a remote corner of north-eastern turkey , a small , private retreat is a world away from the glitz and glamour of the capital , ankara .\na collection of photographs of shetland 's hebridean firth has been captured by a professional photographer .\na woman from wiltshire has been appointed as the uk 's first hedgehog officer .\nsam northeast 's unbeaten 174 gave kent the upper hand against essex on day three at canterbury .\nthe number of nursing and midwifery vacancies in scotland has risen by more than a quarter in a year .\na gang of men armed with axes and hammers tried to raid a jewellery shop in central london , police have said .\na street was `` like an airstrike '' after a gas explosion killed a man , an inquest heard .\nfirefighters in chile are struggling to contain a series of forest fires that have killed at least two people .\njohanna konta says she has `` a lot of work to do '' after reaching the wimbledon semi-finals .\nsunderland manager dick advocaat has left the club after only eight games in charge .\nthe authorities in guatemala are considering whether to evacuate thousands of people living near a volcano .\nlocal communities in the uk are to be offered the chance to buy a stake in renewable energy projects .\na man who posted `` grotesque '' comments about a boy who was murdered by his mother on facebook has been jailed for eight months .\nbritain 's andy murray and james ward will both be playing in the third round at wimbledon on saturday .\none of scotland 's largest suppliers of animal feed has reported a rise in annual profits .\na new primary school has opened in esher , surrey , to meet demand for places in the town .\nthe national crime agency -lrb- nca -rrb- has agreed to lead an investigation into the sale of nama 's northern ireland property loans .\nirish government ministers have met ams to discuss the impact of brexit on trade between wales and the republic .\nmeet george the dog who loves to shop !\nmike young is best known as the creator of one of wales ' best-loved children 's characters - superted .\nprince harry has been captured on camera catching a crocodile during a secret mission in australia .\nrussian opposition leader alexei navalny has been found guilty of embezzlement and sentenced to five years in jail .\na man has been arrested in south london on suspicion of syria-related terrorism offences .\nan expert from japan is due to visit the isle of skye to help prepare for the reintroduction of otters to hokkaido .\nthe nato-led force in afghanistan , isaf , has reached an agreement with the afghan government to withdraw special forces from wardak province .\nromelu lukaku scored twice as everton came from behind to beat west brom at the hawthorns in the premier league .\nnew zealand prime minister john key has announced he will step down at the next election .\nan raf hawk jet was scrambled after the pilot was injured during a training flight .\na harry potter fan has baked a cake to celebrate the 50th anniversary of the publication of the first book in the series .\ngangsters are more likely to be educated if they are involved in complex white-collar crimes , research suggests .\nraith rovers were held to a draw at home by dunfermline athletic in the scottish league one .\nchelsea 's return to the top of the premier league table is a huge boost for manager antonio conte .\nal-qaeda in the arabian peninsula -lrb- aqap -rrb- 's offshoot in yemen , ansar al-sharia , has said it is holding more than 100 soldiers it kidnapped last month .\na judge in brazil has ruled that construction work can go ahead on the controversial belo monte hydro-electric dam in the amazon .\nthe number of house sales in london fell to its lowest level in nine months in june , according to official figures .\na seven-year-old canadian boy is being hailed a hero after saving his family from a house fire .\nben duckett and ian bell-drummond 's record-breaking partnership for the england lions is a sign of the future , says former national team boss andy flower .\na father and daughter from county londonderry have made history by becoming the first father and daughter cricket umpires in the uk .\nben murdoch-masila scored two tries as salford came from behind to beat super league leaders castleford .\nmore than 100 pothole-busting machines have been deployed to roads in northumberland .\nworld champion helen glover hopes her new partnership with polly swann will click after the opening world cup regatta in amsterdam on saturday .\nwork has started on the first phase of a # 3m master plan to regenerate fishguard in pembrokeshire .\nsecurity at the houses of parliament is under scrutiny following wednesday 's terror attack .\nstephen mcmanus scored a hat-trick as greenock morton beat alloa athletic to move up to fourth in the championship .\nromania won their first olympic gold medal in the men 's team epee with victory over china in rio .\nwork to improve a hairpin bend and steep hill on the a9 at berriedale braes will start in 2018 , the scottish government has confirmed .\na man who went on the run after being recalled to prison has been arrested .\nnigeria coach stephen keshi has been sacked by the nigeria football federation -lrb- nff -rrb- .\na russian conductor has led an orchestra in a concert in the ruins of the syrian city of palmyra , which was overrun by islamic state -lrb- is -rrb- militants .\nrepublican presidential candidate donald trump is the world 's riskiest candidate , the economist intelligence unit -lrb- eiu -rrb- says .\nplans for flats on the site of a former lesbian , gay , bisexual and transgender -lrb- lgbt -rrb- pub are set to go ahead .\nthe flight data recorder from a russian jet shot down by turkey last month can not be retrieved using normal methods , the russian military has said .\nwidnes vikings have defended their decision to play their super league match against warrington on an artificial pitch on sunday .\na second consultation on the future of welsh medium schools in haverfordwest has been approved by pembrokeshire council .\ncounter-terrorism police have searched a house in carmarthenshire as part of the investigation into wednesday 's attack at westminster .\nblackberry has reported a return to profit for the three months to early march , just days after the launch of its new z10 handset .\npolice scotland 's most senior officer has defended the use of armed officers , telling msps they were `` entirely appropriate '' .\na pilot scheme to use parent volunteers to enforce parking rules outside a school has been scrapped .\nscotland will have a record 13 athletes at the world championships in london next month .\nit 's one of the biggest changes to the dairy industry in a generation .\na christmas attraction featuring father christmas at a west midlands hotel has been cancelled .\nrepublican presidential candidate donald trump has accused rival ted cruz of `` stealing '' the iowa caucuses .\nthe case of liam fees , who was murdered by his mother , stephanie fees , has led to a review of the actions of social services in fife .\nchristians in bethlehem are celebrating the birth of jesus .\na second teenager has been arrested after a man was stabbed at a busy south-east london shopping centre on boxing day .\npro- and anti-government hackers in eastern ukraine are engaged in a war of attrition against each other .\nthe welsh government is considering making hospitals in wales screen patients with symptoms for sepsis .\nactors have taken part in a re-enactment to mark the 200th anniversary of the battle of waterloo .\nat least 40 people have been killed in a boko haram ambush in north-eastern nigeria , sources have told the bbc .\ncladding on more than 200 high-rise buildings has failed fire safety tests , the prime minister has said .\nthe new 12-sided # 1 coin has gone into circulation in the uk .\nwhen zinedine zidane was appointed real madrid manager in the summer of 2015 , he inherited a team in crisis .\na man who had his firearms licence revoked after posting offensive facebook messages about islam has had it reinstated .\neurope 's top human rights official has said the uk government is breaking its legal obligations over the troubles .\ngreece 's pro-bailout new democracy party has won the country 's general election , but without an outright majority .\nstoke city defender glen johnson has signed a one-year contract extension with the premier league club .\na neighbour of a bbc scotland journalist who claims he was attacked with acid has told a court he tried to wash his face off .\nscotland lock jonny gray has signed a new three-year contract with glasgow warriors .\na man has been stabbed to death outside a pub in north london .\na woman has died after being hit by a train at a level crossing in suffolk .\nnotts county ladies have signed netherlands defender mandy van den berg from liverpool ladies on a two-year deal .\nryan johnston 's goal helped kilcoo beat scotstown 0-13 to 0-8 in the ulster club football semi-final at parnell park .\nthe wedgwood museum 's collection has been saved from sale after a public campaign raised more than # 2.6 m .\nsouth sudan 's president has sacked all but one of his cabinet in a surprise move .\nit 's the dup alliance battle which is box office - something underlined by the large audience which packed out the strand cinema in east belfast on thursday .\nthe fbi has said it is `` very concerned '' about plans by apple and google to weaken security on mobile devices .\ntranmere rovers players jack kirby , tom gumbs , jack duggan , adam ridehalgh , ryan buxton and james gumbs have all signed new contracts with the league one club .\nwelsh boxer dale evans won the wbo international lightweight title with a unanimous points decision over britain 's liam ormond in cardiff .\na man from dumbarton has been jailed for two years after admitting a series of tax evasion offences .\namara kargbo is a student who 's been trying to find a place to live in norwich .\na cardiff-based technology firm has won contracts worth more than # 2m over the next three years .\na 41-year-old man has died in galloway .\nthe so-called islamic state -lrb- is -rrb- is using corruption as a '' rallying cry '' , according to a new report .\na village pub which was saved from closure by a community buyout has been named pub of the year 2014 .\nchina has pledged to work with the us to defuse tensions over north korea 's nuclear programme .\nchina is the world 's second-largest economy , but it is also one of the most important .\nthe government is raising the rate at which it charges banks for the so-called bank levy .\nross county have signed lithuania midfielder vykintas sernas on a deal until the end of the season .\nvenezuela 's national assembly has been plunged into darkness during a debate on energy policy .\nan elderly woman has died after being hit by a bin lorry in edinburgh .\nthe rolling stones are `` definitely '' planning a 50th anniversary world tour , guitarist keith richards has said .\nchildren in england are among the least free in the world , according to a survey .\non wednesday , indian prime minister narendra modi took the stage at facebook 's headquarters for a townhall meeting with the social network 's founder mark zuckerberg .\nanthony watson has been named in england 's 31-man training squad for the six nations opener against italy on 6 march .\na drone that can control itself using the brain has been unveiled .\narsenal midfielder granit xhaka has been interviewed by police after allegedly being racially abused at heathrow airport on monday night .\nspencer matthews has been crowned champion of the jump .\nwales head coach warren gatland said his side were not good enough to beat south africa in their world cup quarter-final in new zealand .\nbbc news ni takes a look at some of the key stories from the past 24 hours .\nclermont auvergne full-back nick abendanon says he has changed his mind about playing international rugby for england because of a rugby football union rule .\npartick thistle 's winless run extended to eight games as ross county earned a point at firhill .\nscientists have grown a rat kidney in the oven , in the first step towards growing usable organs for transplant .\nhearts head coach ian cathro says reports linking jamie walker with a move to rangers are `` just waste of time '' .\ngreat britain 's greg rutherford set a new personal best to win the long jump at the great city games in manchester .\nthe rhetoric has been fierce ahead of next week 's two all-out strikes by junior doctors in england .\nit 's been a busy few days for some of the new welsh mps who have been sworn in at westminster .\ngregor townsend says saturday 's final pro12 game of the season is `` important '' in finalising his scotland squad .\nthe release date for grand theft auto v has been pushed back .\nmps have launched an inquiry into the government 's plans to partially scrap so-called purdah rules for the eu referendum .\nan investigation into allegations of historical child abuse in north wales has widened to include 18 children 's homes .\na double-decker bus became stuck on a farmer 's muck heap .\nthe chief constable of the garda -lrb- irish police -rrb- has said the force needs at least 300 new officers a year .\na cat who has been stealing from his owner 's house for the last two years has started bringing home toy food .\ndavid cameron 's flagship free school in birmingham has been rated `` inadequate '' by ofsted .\nnew cardiff city midfielder junior hoilett says it was a `` no-brainer '' to join neil warnock 's side .\nmanager nigel clough says burton albion are still interested in signing former derby county defender richie barker .\nsouth africa has cancelled its plan to withdraw from the international criminal court -lrb- icc -rrb- .\na second former pupil has contacted police scotland claiming he was sexually abused as a child at gordonstoun school in dumfries and galloway .\ntwo people have been rescued from a fire at a flat in stoke-on-trent .\na fact-finding mission for the global chemical weapons watchdog has concluded that sarin nerve gas was used in an attack in northern syria last month that killed more than 80 people .\na list of 12 trees from across the uk has been shortlisted for the european tree of the year competition .\nchile has accused venezuela of violating the rights of a journalist who has been detained for more than a week .\nmore than 100 jobs are to go at a frozen pizza factory in lisnaskea , county fermanagh .\nmicrosoft is to release a special edition of its halo video games for the xbox one .\nholders germany were knocked out of the women 's euro 2017 quarter-finals as denmark came from behind to win 2-1 in rotterdam .\nderby county eased to victory at ipswich town to move up to fourth in the championship table .\na woman who was found dead in a texas jail cell earlier this month told a guard she had tried to kill herself before , a sheriff says .\nbubba watson has been named as one of united states captain davis love iii 's vice-captains for the ryder cup .\nyoung people with type 1 diabetes in wales are being put at risk by a lack of care , researchers have warned .\na sinkhole has opened up near a world cup stadium in the brazilian city of sao paulo .\nhungary is one of the most densely-populated countries in central europe .\na '' dominating bully '' has been jailed for life for smuggling guns and ammunition into the uk .\na scottish woman who was jailed in peru for drug smuggling has returned to the uk .\nnigeria 's military says it has begun a major offensive against militants in the north-eastern states of yobe , borno and adamawa .\nchelsea captain john terry will miss the club 's final two games of the season after being sent off in sunday 's 1-0 win over west brom .\npresident donald trump 's attempt to withhold funding from `` sanctuary cities '' has been blocked by a us court .\na solarbox has been installed in a red telephone box in north london to help people charge their mobile phones .\ntorquay united manager kevin nicholson has told his players to be `` head down '' for saturday 's national league game at tranmere rovers .\nolympic taekwondo champion jade jones should follow in the footsteps of ronda rousey , says welsh mixed martial artist brett johns .\na # 100m shopping centre in newport has opened its doors to the public .\nthe new horizons spacecraft has begun its final preparations for its flyby of pluto .\nworld number one jason day won the arnold palmer invitational by three shots at bay hill .\na suspected drug smuggler who allegedly fired a gun at us border agents has been arrested in canada .\nindia 's economy grew at an annual rate of 6.6 % in the three months to december , according to official data .\na football fan from county antrim has denied singing racist songs during the fa cup semi-final against arsenal .\nipswich town defender steven taylor says he was surprised to be asked to clean his boots on his first day at the club .\nthe scottish cities of aberdeen and edinburgh are among the uk 's most affected by brexit , according to a new study .\nangry scenes have broken out in remote villages in nepal where aid has yet to reach survivors of saturday 's earthquake .\nhundreds of flats in brighton are to be demolished to make way for new affordable housing .\na man has been arrested after police in derbyshire seized cannabis plants with an estimated street value of more than # 300,000 .\nengland 's one-wicket win over sri lanka in their world twenty20 quarter-final was a classic of a contest .\nnigeria 's president goodluck jonathan has accused a group campaigning for the release of schoolgirls held captive by boko haram of `` psychological terrorism '' .\na man who murdered a glasgow shopkeeper in a religiously-motivated attack has been jailed for life .\nbee-keepers are being asked to record the different noises their honey bees make .\nleeds rhinos bounced back from their defeat at magic weekend with a comfortable win over warrington wolves .\ntwo baby otters have been born at a zoo in the us .\na canadian man has been charged with attempted murder after three bombs were sent to lawyers in winnipeg .\nmexico 's finance minister luis videgaray has resigned , days after us presidential candidate donald trump 's visit .\nthe draw for the fourth round of the efl cup and scottish league cup has been made .\na letter written by dh lawrence author cs lewis to his then-girlfriend charlotte ellis has sold at auction for # 1,800 .\nthe queen has spoken publicly for the first time about the state visit of chinese president xi jinping to the uk in 2015 .\nthe jet that crashed at the shoreham airshow had expired ejector seats , investigators have said .\nthe holder of a winning lottery ticket is being urged to come forward .\nthe assembly referendum could not be won , welsh conservative leader andrew rt davies has said .\nfrance footballer karim benzema has been placed under formal investigation over an alleged sex tape blackmail plot .\nthe daughter of a mother and son who were stabbed to death has spoken of the `` devastating '' attack .\nprivate wealth in asia is set to overtake north america this year , according to a report by the world wealth report .\nin our series of letters from african journalists , journalist and novelist mathew nyaungwa reflects on his life as a diamond miner .\nliverpool manager brendan rodgers says he expects raheem sterling to see out his contract at the club .\nthe undercover policing inquiry will expose both `` creditable and discreditable conduct '' , the judge leading the probe has said .\nlewis hamilton said he had `` one of the worst performances of my life '' after finishing sixth in the hungarian grand prix .\nkyle coetzer believes scotland 's two-match one-day series against afghanistan this week is `` hugely important '' for their development .\nebbsfleet twice came from behind to earn a 2-2 draw at guiseley in the national league .\nscotland 's education secretary has launched an online tool to help teachers and school leaders identify effective interventions for pupils .\nleague two side carlisle united have signed winger pedro on a deal until the end of the season .\n-lrb- close -rrb- : shares in morrisons have fallen after reports that its planned takeover of wholesaler booker could be in doubt .\na `` flashover explosion '' is believed to have caused the deaths of two men at a factory in aberdeen , police have said .\nnigerian amos adamu , a former member of fifa 's executive committee , is being investigated by world football 's governing body .\nactivity in the uk 's manufacturing sector fell to a three-year low in april , according to a closely watched survey .\nthousands of people have lined the banks of the river tyne for the return of the durham-newcastle university boat race .\ncolumnist katie hopkins has apologised to a family whose trip to the us was cancelled after she falsely claimed they had links to terrorism .\nus president donald trump has signed an executive order that bans people from seven muslim-majority countries from entering the country for 90 days .\na vicar has said the church of england is `` institutionally homophobic '' and `` harmful '' to the lgbt community .\nblackburn rescued a point against bristol city to keep their championship survival hopes alive .\na high-ranking russian official has been arrested on suspicion of destroying and selling off a state road .\nburton albion moved off the bottom of the championship table with victory over birmingham city at the pirelli stadium .\ninvestors are continuing to sell bonds in the wake of donald trump 's surprise us election victory last week .\na flower shop in berkshire says it has been inundated with calls from scammers pretending to be from talktalk .\nleicester city have signed riyad mahrez from french ligue 1 side le havre on a four-year deal .\ntributes have been paid to the victims of the manchester arena attack .\nthe cliches about ` the best seat in the house ' and ` the best job in the world ' are often overused .\na dundee company has admitted health and safety breaches following the death of a worker who was overcome by toxic fumes .\nmanuel pellegrini 's final game in charge of manchester city ended in a draw at swansea city as they missed out on a champions league spot .\nbritain 's chris froome trails leader alberto contador by six seconds in the criterium du dauphine , with australia 's richie porte third .\nit 's that time of year again - that time of year when you 're trying to improve your health and fitness .\nthe demolition of a former steelworks factory in londonderry has been completed .\na man has been jailed for a minimum of 20 years for murdering his five-year-old granddaughter .\na woman from new zealand has said she has been unable to attend her grandfather 's funeral because she is still waiting for a visa update from the uk border agency .\neducation in northern nigeria is under pressure from boko haram islamist militants , but there is a growing belief that reforms are long overdue and a wider education is essential .\nnorwich city defender chris andrew 's 12-match ban for violent conduct has been reduced to seven games after an appeal against his red card against burnley .\na therapy that retrains the body 's immune system to fight hiv has been shown to work in early trials .\nrussian athletes ran away from competitions and tried to bribe anti-doping officials to avoid tests , a report says .\nthe words `` the most lucrative sporting event in history '' do not scream `` must-see television '' .\npolice have released a cctv image of a man they want to speak to in connection with the torture of a man and a woman at their kent home .\nwales could become one of the world 's leading centres for co-operative housing , according to a new report .\na man has been taken to hospital following a fire at a flat in aberdeen .\npolice in canada are investigating claims that pilots in a police helicopter were overheard talking about sex .\na celebrity who wants to prevent the naming of him in the media has won the right to take his case to the uk 's supreme court .\nlancashire beat hampshire by an innings and 88 runs at old trafford to go top of division one .\npolice are investigating a serious sexual assault on a woman in dundee city centre .\na long-running dispute over pay and conditions on the luas tram system in dublin has been settled .\nunited states forward alex morgan is to join women 's super league one side lyon on a two-year deal from next season .\npolice are treating the death of a man at a house in aberdeen as `` suspicious '' .\nbolivian president evo morales has lost a referendum to allow him to run for a fourth term in office .\nstephen hawking has joined forces with youtube to encourage young people to get involved in science and maths .\na deputy head teacher at a school at the centre of the trojan horse affair has been cleared of misconduct .\nat one end of the luxury goods spectrum , there are people making goods a little better , and more expensively .\n-lrb- close -rrb- : the ftse 100 closed lower , with shares in oil giant royal dutch shell falling more than 5 % after the company reported weaker-than-expected revenues .\nspfl chief executive neil doncaster says hearts ' return to the scottish premiership will be a boost for the top tier .\neverton are set to appoint southampton boss ronald koeman as their new manager on a three-year deal .\nthe police watchdog has launched an investigation after the death of a woman in fife .\nmae ' r heddlu ' r gogledd wedi cael eu gweld ers dydd mawrth 17 ionawr yng nghymru .\nthe dangerous dogs act should be scrapped in the wake of the death of a toddler attacked by a dog , a conservative mp has said .\na treasure trove of 700-year-old coins found in county down has been declared treasure by an inquest jury in banbridge .\ndefender bruno alves says he would have joined rangers even if they had not been knocked out of europe .\ndavid oyelowo has called benedict cumberbatch 's use of the word `` coloured '' `` ridiculous '' .\nnorthern ireland 's andrew sharvin shot a six-under-par 66 in the first round of the australian open in adelaide .\nscotland will benefit from hosting the eurohockey championship , according to blue sticks forward craig forsyth .\nsepp blatter 's former chief of staff has claimed fifa officials were bribed to vote for russia and qatar to host the 2018 and 2022 world cups .\nwhen victoria williams was told she had a baby with down 's syndrome , she was devastated .\nurgent action is needed to improve the safety of lifejackets following the sinking of a crab boat in which three men died , investigators have said .\na fake bbc news story has been circulating on whatsapp in kenya , the bbc has said .\ngreat britain 's women ended their hockey world league semi-final campaign with a 4-3 win over new zealand .\ndundee united have signed david murdoch following his release by ross county .\na man has been jailed for life for the murder of his scottish girlfriend in lapland .\nafghan president ashraf ghani has appointed a new police chief following the resignation of gen mohammad zahir .\na 16-year-old boy has died after being hit by a car in south yorkshire .\na driver has been jailed for killing a teenager and injuring three others in a hit-and-run crash .\nwales captain joe ledley says the players will support the football association of wales ' decision on armistice day .\nplaid cymru has said it will work with the snp and the greens if there is a hung parliament after the general election .\nformer togo coach stephen keshi was remembered at a memorial match in his homeland on saturday .\nformer england all-rounder katherine brunt 's late dismissal proved crucial as perth scorchers lost to sydney thunder in the semi-finals of the women 's big bash league .\npolice in pakistan have arrested a landowner accused of tying a boy to a donkey and dragging him to his death in punjab province .\na rig is due to arrive at the beatrice field in the north sea as part of the planned decommissioning of the field .\nthe golden state warriors will face the cleveland cavaliers in the nba finals after coming from behind to beat the san antonio spurs .\na man has been jailed for life for the murder of a rival gang member in south london .\ntwo people have been arrested on suspicion of murder after a man was stabbed to death .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo looks back at some of the stories that made headlines in 2016 .\nthe leader of one of the uk 's largest muslim groups has paid tribute to the victims of the westminster attack .\na primary school head teacher has been suspended for taking a school term-time leave .\nformer scotland boss alex mcleish has been confirmed as the new coach of egyptian club zamalek .\nthe number of women being treated for breast cancer in northern ireland is set to increase by 65 % in the next 20 years , according to new figures .\ncarlos brathwaite hit the winning runs as the west indies beat england by five wickets in the world twenty20 final in mumbai .\nglamorgan head coach matthew mott says this season will be his last in charge of the county .\nmarit purve-jorendal was born in the western indian city of pune .\nthe northern ireland executive has allocated an extra # 100m to the health and social care budgets .\na three-person panel has been appointed to investigate events at belfast 's de la salle college .\nan artificial intelligence system has been trained to spot the signs of skin cancer , a study suggests .\nmae llywodraeth y du wedi dweud bod wedi ailhysbysebu ' r drwydded ar gyfer teledu lleol yn abertawe am nad oedd ymgeisydd yn y broses drwy\nthe chief executive of the nhs in england has urged junior doctors to call off planned strikes on tuesday .\na cyclist died after hitting a pothole on a monmouthshire road , an inquest has heard .\na 23-year-old motorcyclist who died following a crash with three cars in edinburgh has been named as damian piotrowski .\ngreat britain 's lois toulson won gold in the women 's individual 3m springboard at the european diving championships .\nthree cats in carmarthenshire have died from suspected poisoning .\nplans for a floating tram system in cardiff bay have been unveiled by cardiff bay corporation -lrb- cbc -rrb- .\nphilippine presidential candidate rodrigo duterte has been criticised for a video in which he jokes about the rape and murder of a catholic missionary .\nthe open university -lrb- ou -rrb- is planning to use data analytics to identify students who may struggle with their studies .\nconcerns have been raised about the safety of the sellafield nuclear reprocessing plant close to the isle of man .\na mental health trust in lancashire has been rated `` inadequate '' .\n-lrb- close -rrb- : wall street markets closed higher on friday , with the s&p 500 moving into positive territory for the year .\nmae ' r tn bellach o dan reolaeth ond nid yw 'n bosib i ' r criwiau ddweud yn iawn os yw ' r tn wedi rhwystro diffoddwyr rhag mynd\nkenya 's jemima sumgong won olympic gold in the women 's marathon as bahrain 's tirunesh kirwa took silver .\nderby county captain richard keogh has signed a new three-year contract with the championship club .\nthe parents of a scottish woman who was murdered in mauritius have written to her friends in the country to say they are unable to travel to her funeral .\ndavid cameron has been urged to produce a white paper setting out how scotland could get more powers .\nsediment collected from the deep-sea could shed light on the impact of climate change on the indian monsoon .\nst johnstone eased to victory over 10-man inverness caledonian thistle at mcdiarmid park .\nrolf harris 's conviction for a string of sex offences against young girls has led to a backlash in his home town of perth .\neurope 's philae comet probe has woken up and contacted earth , the european space agency -lrb- esa -rrb- has said .\nrussian officials are carrying out a series of unannounced inspections of non-governmental organisations -lrb- ngos -rrb- .\na new marketing body is to be set up for northern ireland 's agri-food industry .\niraqi forces say they have retaken the international airport in western mosul from so-called islamic state -lrb- is -rrb- militants .\na man and woman have appeared in court charged with murder following the death of a woman .\na rare albino deer has been born at a zoo in the us .\natletico madrid coach diego simeone was once described as `` the most boring coach in the world '' .\ntelefonica and hutchison whampoa have said they will take legal action against the telecoms regulator over plans to auction 4g spectrum .\na man has been arrested on suspicion of terrorism offences .\nnew scottish labour leader kezia dugdale has said she takes responsibility for the party 's general election defeat .\na flintshire man has been nominated for a bravery award .\nnine scottish swimmers have been named in the great britain team for the rio olympics .\nmanchester city midfielder fernandinho is fit to face liverpool after missing the defeat by monaco in the champions league .\ntwo men have been jailed for fly-tipping in birmingham .\nprince harry has said the death of his mother , diana , princess of wales , left him `` fighting the system '' .\na woman who was seriously injured in a motorway crash which killed her friend has set up a charity to help other victims .\na pizza shop has been ordered off an nhs trust 's list of approved suppliers after the word `` stigma '' appeared on a delivery order for mental health patients .\nbritish actress keira knightley is to make her broadway debut next year in a new adaptation of therese raquin .\nthe police chief in the us city of baltimore has been sacked amid a surge in violence .\nbernie sanders and hillary clinton are locked in a tight race for the democratic nomination , but they are starting to go head-to-head .\ngreat britain 's sevens team were held to a draw by japan in their second match at the rio olympics .\na canadian mother-of-three has won c$ 1m -lrb- # 650,000 -rrb- on a lottery ticket she bought at a toronto convenience store .\nthe european commission is investigating northern ireland 's decision not to introduce a charge on household water bills .\nthe conjuring 2 has topped the north american box office in its second week of release .\nmario balotelli has paid tribute to manchester city after completing his # 16m move to ac milan .\na flood-hit church has switched on its floodlights for the first time in more than two years .\ngoogle 's street view service has been given a space makeover to include images of the international space station -lrb- iss -rrb- .\njudges in england and wales could be given the power to jail rapists for up to 19 years , under new guidelines for sexual offences .\nwayne routledge scored twice as swansea city beat charlotte independence 0-4 in their first pre-season friendly in america .\ngreece captain giorgos karagounis has announced he will retire from international football after the world cup in brazil .\nus scientists say they have developed a 3d-printed cartilage that could be used to repair damaged body parts .\nit 's been a week of high drama for republican presidential candidate ben carson .\na priest has made a complaint against five senior church of england bishops over claims he was sexually abused as a teenager .\nthe eu is facing its biggest migration crisis since world war two .\ntribesmen in iraq have clashed with islamic state -lrb- is -rrb- militants in the city of fallujah , west of baghdad .\ncommuters are facing a second day of disruption on the southern rail network .\nmanchester city council 's chief executive and two senior officers have been suspended following an investigation into child protection procedures .\nnicola sturgeon has said she is `` angry '' at the uk government 's `` walk-on-by '' attitude to the migrant crisis .\ntwo us senators who have backed gun rights have called for `` rational gun control '' in the wake of the school shooting in newtown .\nthe new scottish premiership season begins on saturday , with celtic taking on qarabag in the first leg of their champions league qualifier .\nthe mood in the conservative party is one of caution .\njosh taylor says he learned how to deal with cuts after stopping jean-charles joubert to win the european super-lightweight title in glasgow .\npolice in the austrian town of braunau am inn have arrested a man who looks like the nazi leader adolf hitler , austrian media report .\na piano once owned by king george iii has been bought for the royal pavilion in brighton .\nif you 're looking for a reason to holiday this summer , look no further than europe 's ancient capitals .\na man has been cleared of sexually abusing seven boys in nottingham .\nplans to expand dyson 's wiltshire headquarters have been approved by wiltshire council .\nat the headquarters of israel 's governing likud party in tel aviv , the mood was one of relief .\na cyclist has died in a suspected hit-and-run in east london .\na florida mosque has lost its bid to become the state 's first islamic polling station .\nmore than 700 emails and passwords belonging to us government employees have been found on the internet .\negyptian security forces have raided the offices of pro-democracy and human rights groups .\nmembers of the nasuwt teachers ' union in northern ireland are to stage a one-day strike in a dispute over pay .\na councillor has called for the stranded drilling rig transocean winner to be scrapped in the western isles to help the local economy .\nireland head coach joe schmidt says he was `` proud '' of his side 's fightback against argentina .\nderby county have agreed a deal to re-sign burton albion midfielder george taft on a season-long loan .\nit all started with a question on the bbc radio manchester airwaves .\nwork is under way to repair a railway station which was badly damaged in a fire in 2015 .\nalmost 66.6 % of pupils in wales achieved a grade a * to c at gcse in this year 's exam .\nlondon mayor boris johnson 's announcement that he will campaign for the uk to leave the eu has been widely welcomed in western european media .\na deadline set for the gambia 's president yahya jammeh to step down has passed .\n`` it 's a bit of a struggle , '' says daisy the sheep .\nthe revenant has dominated this year 's golden globe awards , picking up three prizes . mexican actor gael garcia bernal was named best actor in a comedy or musical tv series for his role as brash conductor rodrigo in mozart in the jungle , and christian slater won the best supporting actor in a series for mr robot - shutting\ncameroon defender mathieu chedjou has joined istanbul basaksehir on a two-year deal .\nlabour is `` walking in the opposite direction '' to the conservatives , a former labour mp has said .\na body has been found during the search for a missing cyclist in cornwall .\nus scientists say they have developed a stem cell therapy that can attack brain tumours .\nnorthampton wing ben foden says he will have to `` push himself to the limit '' to keep up with harlequins team-mate mike brown in the six nations .\nleague one side mk dons have re-signed brighton & hove albion midfielder lewis dunk on loan until the end of the season .\nnottingham forest twice came from behind to earn a point against preston at city ground .\nsepp blatter and michel platini have been banned from all football-related activity for eight years .\na water main burst in south-west london caused flooding outside a railway station .\na man has died after a chainsaw accident outside a south london school .\na campaign to raise awareness of stalking has been launched by a charity following a rise in the number of reports to police .\nthe syrian government 's recent offensive against so-called islamic state -lrb- is -rrb- in the northern city of aleppo has raised the possibility that iran may be involved in the fighting .\npolice have clashed with leicester city fans in central madrid ahead of the club 's champions league game against atletico madrid .\na three-year-old dog has become one of the most travelled animals on easyjet .\nliverpool manager jurgen klopp praised his players for not wanting to play in the boxing day draw with sunderland .\nwhen lily james was offered the role of elizabeth bennet in a film version of jane austen 's pride and prejudice , she was `` a bit cynical '' .\nthe nhs in england is to set up a register of all patients who have had breast implants .\na man has been arrested on suspicion of murder after a man was stabbed to death .\na robber threatened a security guard with a firearm before stealing a money box outside a supermarket in north-east glasgow .\nthree people have been killed and 18 injured after a monster truck crashed into a crowd of spectators at a car show in the northern netherlands .\nprince charles has paid tribute to the `` forgotten '' soldiers of world war one .\neach day we feature a photograph sent in from across england - the gallery will grow during the week !\nthe family of a man murdered nine years ago have said they have no faith in the justice system .\nrory mcilroy 's response to the ryder cup draw at gleneagles was succinct and unequivocal .\na man has been jailed for possessing a fake gun near two west sussex primary schools .\nthe european commission is to recommend that the hinkley point c nuclear power station should go ahead .\ndagenham & redbridge have been relegated to the national league after losing to leyton orient .\ncristiano ronaldo missed a chance to win his 100th cap as portugal were beaten 2-0 by cape verde in a friendly in lisbon .\nthe turkish authorities have lifted a ban on female police officers wearing headscarves .\na dog had to be rescued by firefighters after becoming stuck in a chair .\na baby who nearly choked on his own vomit was saved by the nhs , his mother has said .\nscotland women 's failure to qualify for euro 2016 would be `` more heartbreak than humiliation '' , says striker jess evans .\na 25-year-old man has died after his motorbike was involved in a crash with a car in kilkeel in the highlands .\na man and his dog have been rescued after their car plunged into a lake in hertfordshire .\ndavid beckham has moved a step closer to bringing a major league soccer team to miami after buying land for a proposed stadium .\na new sixth form college is to open in flintshire .\nceltic have injury concerns ahead of their champions league qualifier against rosenborg .\nthe world 's most active people live in hong kong , according to the largest study of its kind .\nthe duchess of cambridge has taken part in a tennis workshop run by tennis star judy murray .\na woman was hit with a crowbar during an attempted robbery at a church in aberdeen .\nthe family of a british man missing in brussels fear he may have been caught up in a third explosion .\nthe chief executive of celtic energy has defended the company 's handling of two former opencast coal mines in south wales .\na road in the scottish borders is to be closed for six weeks as part of work on a flood protection scheme .\npop duo the klf - known for their high-profile stunts - announced in 1993 that they were quitting music .\nbayern munich moved seven points clear at the top of the bundesliga with victory at stuttgart .\nmaxine peake and matt lucas are to star in a new bbc adaptation of shakespeare 's the dream , written by russell t davies .\nmasked pro-russia activists have attacked government buildings in luhansk in eastern ukraine .\nformer peterborough united and cambridge united manager chris turner has died at the age of 69 .\nnew zealand survived a huge scare to beat south africa and reach the world cup final .\nplans to expand english football to five divisions have been backed by the premier league and the football association .\na man is to stand trial accused of slashing a doctor with a razor blade at a lanarkshire hospital .\npoland 's new government has backed calls for former prime minister donald tusk to be prosecuted over the 2010 plane crash which killed president lech kaczynski and 95 others .\nceltic manager brendan rodgers is looking forward to taking his side to hampden for saturday 's scottish cup semi-final against rangers .\nthe board of us clothing retailer american apparel has accused its former chief executive , dov charney , of sexual harassment and racial discrimination .\nin her first interview since taking over as tate director , sarah balshaw tells the bbc 's victoria derbyshire programme that she wants the tate to be `` more than just a museum '' .\nthe number of recorded homicide cases in scotland has fallen to its lowest level in more than 40 years , according to the scottish government .\nlos angeles police have defended their decision to close schools in the city because of an online threat of a columbine-style attack .\nrussia has said it will continue its air strikes in syria despite the us threatening to end military co-operation .\nanimal rights activists in china have handed in a petition calling for an end to a dog meat festival .\nscunthorpe united left-back andy bishop has signed a new one-year contract .\na care home has been told it must improve the care provided to residents or face losing its registration .\nrepairs to a burst water main in the republic of ireland will take two weeks to complete , irish water has said .\na paramedic who squeezed his colleague 's breast with a pen has been banned from the profession .\n`` we 've come a long way , but we 've still got a long way to go . ''\npremiership and european champions cup coaches fear the legal action taken by former sale sharks player marcus willis could have a detrimental effect on player safety .\ndumfries and galloway council 's investment in major festivals and events has helped to boost the local economy , a report has found .\ntwo russian warships have tracked a dutch submarine in the mediterranean , the russian defence ministry says .\nit 's one year since a massive earthquake hit nepal , in south east asia .\na newly crowned miss america has sparked controversy by saying healthcare is a `` privilege '' and jobs are needed to afford it .\nengland captain alastair cook says australia are still favourites to win the ashes despite his side 's victory in the first test in cardiff .\nmanchester city are in talks to sign west brom captain jonny evans .\nmae cwest yn aberystwyth wedi dweud bod ei marwolaeth yn un damweiniol ar l cyfnod y nadolig ddydd sadwrn .\nus car giant general motors -lrb- gm -rrb- has said it will stop making cars in india .\nfrance 's alexander levy will take a six-shot lead into the final round of the bmw international in bad griesbach .\na lawyer for the family of murdered sinn féin official denis donaldson has called claims that he was killed by the provisional ira `` absolute nonsense '' .\na body has been found in the search for a man who went missing off the coast of cornwall .\na man in his 50s is in a critical condition in hospital after being hit by a car in shoreham .\nthe scottish government is to set up a # 20m fund to help people who have lost their jobs due to the downturn in the oil and gas industry .\nceltic 's brendan rodgers , aberdeen 's derek mcinnes and partick thistle 's alan archibald are in the running for the pfa scotland manager of the year award .\nmexican authorities say they have arrested four more suspects in connection with the escape of drugs lord joaquin `` el chapo '' guzman .\nus republican presidential candidate donald trump has cancelled a rally in chicago after violence broke out between protesters and supporters .\na court in japan has ruled that a nuclear power plant can restart , despite local opposition .\nthe uk 's three intelligence agencies have stepped up efforts to recruit more women .\nsouth africa 's government has proposed a national minimum wage of 12,000 rand -lrb- $ 1,050 ; # 770 -rrb- .\na bullet has been found in the body of a man who was shot by the army in 1971 .\nformer nottingham forest midfielder michael mcgovern believes oliver burke has the potential to become a `` very , very good player '' .\nrussell brand has been criticised for tweeting the phone number and email of a bbc journalist .\nrome city authorities have started cutting padlocks attached to a famous bridge in the italian capital to stop them from rusting .\na man has died following a four-vehicle crash in the highlands .\ntens of thousands of homes and businesses in lancashire were left without power after a substation went offline .\nkenya 's president uhuru kenyatta has promised to lift a ban on firms operating in the country linked to somalia 's government .\ntwo people have been arrested after an 84-year-old man was killed in a hit-and-run crash in kent .\nospreys continued their 100 % start to the pro12 season with a convincing bonus-point win over treviso .\nbarcelona boss luis enrique was left frustrated after his side were held to a draw by real madrid at the nou camp in la liga on sunday .\nloans could be offered to crofters to help them get on to the housing ladder , rural economy minister aileen mcleod has said .\nlondon 's natural history museum is trying to raise money to rebuild one of its most famous robots .\na cardiff teenager is taking legal action after an italian political party used her photo in a leaflet against same-sex marriage and gender identity .\nthe uk government should give its `` full backing '' to the swansea bay tidal lagoon project , an mp has said .\neight puppies have been stolen from a house in west lothian .\nsale sharks have signed scotland forward josh strauss from glasgow warriors .\nthe battle for the iraqi city of falluja against so-called islamic state -lrb- is -rrb- is `` far from over '' , a us military spokesman has warned .\nceltic defender mikael lustig says outgoing manager ronny deila is not to blame for the club 's failure to reach the champions league .\nformer celebrity publicist max clifford refused to comment on an allegation that he indecently assaulted a woman in his office , a court has heard .\nthe european union has warned the uk not to seek special trade deals with other member states after brexit .\nturkey 's prime minister recep tayyip erdogan has blocked access to the social media site twitter .\na tsunami has hit parts of central chile , hours after a powerful earthquake struck the country .\nhouse of commons speaker john bercow has announced the appointment of martin natzler as the new commons clerk .\na new documentary from keanu reeves and chris kenneally looks at the future of film .\nmuhammad ali would have beaten wladimir klitschko if he was alive today , says former heavyweight champion tony shavers .\ngateshead striker adam johnson has signed a new contract with the national league club .\nthe shortlists for two new rail franchises in the north of england have been announced by the government .\nukraine 's president viktor yanukovych has held talks with russian president vladimir putin in the black sea resort of sochi .\na 16-year-old boy was abducted and assaulted in a suspected honour-based attack in blackburn .\na war of words between the leader of chechnya and russia 's opposition has gone viral on social media .\na chronology of key events :\nthe bbc 's global iplayer app is to close on 26 june , the corporation has confirmed .\nthe firm behind plans to frack for shale gas in lancashire has pledged to spend at least # 10m in the county .\nsadiq khan has become the first muslim mayor of london .\nfleetwood town have signed swindon town striker lloyd burns on loan until the end of the season .\na major shopping centre in county tyrone has been flooded .\na us court has ruled that a sample used in madonna 's song vogue does not amount to copyright theft .\na woman has been taken to hospital after her car left the road and crashed into a tunnel in cardiff .\na man has been banned from owning animals after he was caught on camera eating a fish .\na trade mission led by scottish enterprise is visiting myanmar in a bid to boost links with the country 's oil and gas industry .\ntyson fury 's career as a world heavyweight champion has been a car crash .\nan italian appeals court has overturned the manslaughter convictions of a group of earthquake experts .\na row has broken out between west sussex county council 's chief executive and councillors over plans to recharge a beach with sand .\nworld number one andy murray beat spain 's albert ramos-vinolas for the second time in a week to reach the barcelona open semi-finals .\ndrama school fees should be cut to encourage more people from poorer backgrounds to take up a career in the arts , a report has suggested .\na man accused of murdering his wife at a care home in cambridgeshire has died .\nus consumer confidence has fallen to its lowest level in more than three years .\nscotland 's leading musicians , authors and campaigners have been recognised in the new year honours list .\na chinese woman has challenged women to choose between shaving or not shaving their armpits .\ndevolution of air passenger duty -lrb- apd -rrb- has been ruled out by the uk government .\nrory mcilroy finished joint second as japan 's hideki matsuyama won the final world golf championship of the year in shanghai .\nan air france passenger plane has been diverted to glasgow prestwick airport after reports of a smell of burning on board .\nthe first minister has said he does not know what the nhs in wales will look like by 2020 if the conservatives win the general election .\ntwo men who died in a light aircraft crash in powys have been named .\na man has denied falsely claiming to be a victim of the grenfell tower fire .\nit 's well known that one in five new fathers suffers from postnatal depression .\na new academy is being set up to help children and young people with mental health problems .\nthe first acts have been announced for this year 's wickerman festival in the highlands .\none of three alpacas seriously injured in a dog attack in the new forest has died .\nfrance 's far-right presidential candidate marine le pen has met russian president vladimir putin during a visit to moscow .\nireland have qualified for the women 's world cup super six after finishing third in their group at the world twenty20 tournament .\nindia 's national airline has banned an mp from the right-wing shiv sena party after he slapped a staff member .\nfrench astronaut thomas pesquet has captured a stunning view of the earth from space .\nformer northern ireland midfielder dean shiels has signed for north american soccer league -lrb- nasl -rrb- club fc edmonton .\na boys ' boarding school in hertfordshire is considering introducing a gender neutral uniform .\nindia 's government has proposed a law that would ban the collection of '' geospatial information '' , including satellite imagery .\na water main burst , forcing the closure of a school and affecting hundreds of homes .\nbritish heptathlon champion kelly sotherton is `` open '' to the possibility of resetting world records .\nat least three people have been killed and seven injured in a shooting at a wood-processing factory in western switzerland .\nnational theatre director rufus norris has said he is considering introducing quotas to improve diversity within the organisation .\nformer darts world champion eric bristow has been dropped by sky sports after comments he made about football sex abuse victims .\nthe new leader of birmingham city council has been elected by the authority 's councillors .\nczech cyclist roman kreuziger has been cleared of doping by the czech olympic committee .\nolympic champion ben ainslie says he wants to win the america 's cup again .\ntributes have been paid to a man who died after getting into difficulty trying to rescue his dog off the kent coast .\nmeet carissa , she 's the world 's number one chess player .\nthe number of people with visual impairment will more than double in the next 30 years , say researchers .\nit 's a sunny day in melton mowbray .\nmark barnett has been appointed as derbyshire 's new director of cricket .\npolice investigating the death of a man who was hit by a car in north lanarkshire have traced the driver .\nthe cost of making and receiving phone calls abroad has been cut by up to 75 % .\nmanchester united manager jose mourinho says some of his players `` do n't think the aim is to win '' .\nlabour 's jon ashworth has been re-elected as police and crime commissioner -lrb- pcc -rrb- in cleveland .\nthe season came to a close on sunday as real madrid won their 10th la liga title in 11 years .\nformer world number one victoria azarenka has pulled out of next week 's us open in new york because of `` family matters '' .\naston villa and leicester city have been charged by the football association for failing to control their players during saturday 's game at villa park .\nlance armstrong should not be allowed to race again , says three-time tour de france winner greg lemond .\nqantas chief executive alan joyce has said he will campaign for same-sex marriage ahead of an australian referendum next month .\nospreys have signed south africa tight head prop brian mujati until the end of the season .\na tree is to be planted in carmarthenshire to mark the 300th anniversary of capability brown 's work at the park he designed .\nspain 's sergio garcia extended his lead at the dubai desert classic to two shots after the second round was abandoned because of strong winds .\na yacht with four people on board has been towed to carrickfergus after it ran aground off the county antrim coast .\nfacebook 's chief executive says he is sympathetic to apple and the fbi in their battle over access to a phone used by one of the san bernardino attackers .\nthe gambia has announced it is pulling out of the commonwealth .\na chinese company has pleaded guilty in a us court to illegally exporting a coating used in nuclear reactors to pakistan .\naston villa have signed czech republic striker jan kozak from fc infonet for an undisclosed fee .\ncomedian anna maxwell martin is taking on a new challenge - a couch to 5k run .\na former teacher who sexually assaulted a 15-year-old girl has been given a suspended sentence .\nthe number of fans attending scottish league and cup matches in 2016-17 was the highest since the 2008-09 campaign .\na man whose car was stolen in the middle of the night says he has been told by police the investigation is closed .\nnorth korea has unveiled a new type of hangover-free alcohol , the pyongyang times has reported .\ndoctors must do more to talk about dying and end-of-life care , says dr helen stokes-lampard , chairwoman of the royal college of gps .\na huge new bridge has been built in hong kong .\na vigil has been held in cardiff bay to remember the 129 people killed in the paris terror attacks .\nrob andrew 's late try gave ulster victory over 14-man newport gwent dragons in the pro12 .\nrussia coach fabio capello 's future with the national team is in doubt .\nthe verdict in the retrial of three al jazeera journalists in egypt has been delayed for a second time .\na special screening of oscar-winning film slumdog millionaire is to be held in kingussie later .\nworkers at the post office are to stage a 24-hour strike in a dispute over branch closures and pensions .\npro-russian rebels in eastern ukraine say they are withdrawing heavy weapons from the front line as part of a ceasefire deal .\nthe main political parties in wales have published their manifestos for the general election .\nportugal 's eurovision victory has been hailed as a triumph for the country 's national identity .\ngerman politicians have been embroiled in a scandal of their own since edward snowden 's revelations about us spying in the united states .\ntwo police community support officers -lrb- pcsos -rrb- have been jailed for misconduct in a public office .\na group of former supermarket bosses has warned that the price of groceries could rise if the uk votes to leave the eu .\nbritish rower david pitcher has set his sights on becoming the fastest person to row the atlantic .\na petition calling for a referendum on directly elected mayors for bath and north east somerset has been handed in to the local authority .\nhundreds of people have taken part in a march to protest against the closure of kids company .\nfour welsh health boards are facing a combined deficit of more than # 100m , according to the welsh government .\njustice secretary kenny macaskill has announced that mobile phone jamming equipment is to be installed in scottish prisons .\njohn o'flynn 's injury-time leveller earned 10-man crusaders a draw against coleraine .\nthe remains of 10 british soldiers who died during world war one have been identified .\na couple from worcestershire have died while on holiday in morocco .\nprimary school pupils in england are to be tested in maths for the first time .\nlaura andrews says she has been `` overwhelmed '' by the reaction to her 10,000 m victory at the british championships in london .\ndavid cameron has been caught on camera apparently munching on a pringles sandwich on a flight .\nmansfield moved up to fourth in league two with victory at morecambe .\nnew zealand equalled australia 's record of 12 consecutive world cup wins with an emphatic victory over france in the semi-final in cardiff .\nthe cosmetics company avon is to close its operations in france , with the loss of about 100 jobs .\nhow much do you save when you do your banking online ?\nadolf hitler 's manifesto mein kampf is to be published for the first time in 70 years .\ngeorgia head coach milton haig has called for the six nations to be expanded .\nrussia 's foreign minister has accused the us of failing to do enough to support moderate syrian rebels .\na man has been jailed for helping to dispose of the body of a man murdered by his partner .\nscotland 's laura muir has been named in the great britain team for next week 's european indoor championships .\nbritish actors should do more to keep up their `` work ethic '' , according to us-based actress jada jumbo .\nexeter chiefs trio dave horstmann , dave atkins and julian salvi have all signed new contracts with the premiership club .\na powerful earthquake has struck south-western japan , a day after a deadly quake hit the region .\ngwynedd council is considering changing the name of a gwynedd beach on maps .\ncarbon emissions from burning fossil fuels are much faster than previously thought , a study suggests . zeebe and colleagues calculate that it took at least 4,000 years for the petm warming to take hold , with carbon going into the atmosphere at a rate of between 0.6 to 1.1 billion tonnes of carbon per annum .\nthe `` fasting-mimicking '' diet can regenerate the pancreas , say us researchers .\nborrowers are applying for loans to fund major purchases , such as a new home , a bank has said .\nbelfast harbour has announced plans for a third office development in the city centre .\na man accused of murdering his children 's author wife told a nurse he had considered jumping off a cliff , a court has heard .\na former finance director has admitted defrauding a hampshire hospital charity out of more than # 300,000 .\nbog snorkelling is among the activities taking place at this year 's national family games in carmarthenshire .\nsinger justin bieber has been sentenced to 30 days in jail for throwing eggs at a neighbour 's home last year .\nmore than a third of drivers have had their vehicles damaged by potholes in the past two years , the aa has said .\na pedestrian who died after he was hit by a car has been named .\na group of voters have launched a legal challenge to the election of a mayor in east london .\nit 's the 150th anniversary of the game of football - the premier league .\nfootage has emerged of the moment a van carrying boxer floyd mayweather was set on fire outside a hotel .\nthe daughter of an elderly man who died after a nurse fed him the wrong medication has said she feels `` angry '' at a hospital which remains in special measures .\ndogs and other animals should be allowed on hospital wards in england and wales , says the royal college of nursing .\nmotherwell 's match against aberdeen on saturday has been given the go-ahead after a sickness bug affected most of the first team squad .\nthe rspca has warned people not to own raccoon dogs .\nthe rugby players ' association -lrb- rpa -rrb- has criticised plans to extend the premiership season to 10 months .\nbank of england governor mark carney has defended the bank 's response to the uk 's vote to leave the european union .\nnorwich city midfielder james maddison has signed a new two-year contract with the championship club .\nforest reserves could displace millions of people , according to a study .\nireland secured a place in the quarter-finals of the eurohockey championships with a 4-2 win over germany in berlin .\nthe us space industry is developing a new rocket that will be significantly cheaper to operate .\nshrewsbury town have signed reading left-back callum jules on a season-long loan .\ndismaland is to be sent to a migrant camp in france after organisers changed their minds about sending it there .\na holidaymaker died from an anaphylactic shock after eating a sorbet in a greek hotel , an inquest has heard .\na potential takeover of alliance trust by a private equity firm has collapsed .\nceltic 's pursuit of a third straight scottish premiership title took another step forward during the january transfer window with the arrival of two turkish-born forwards .\na woman from paris is taking the french authorities to court over her health problems caused by air pollution .\njordan rhodes scored two stoppage-time goals as championship leaders middlesbrough came from behind to beat bolton wanderers .\njenson button says sunday 's hungarian grand prix will be his final formula 1 race .\nshareholders in samsung c&t , one of south korea 's biggest construction firms , have voted in favour of a controversial takeover .\ntwo chief executives of dyfed-powys police and carmarthenshire council have been given unlawful pension payments , the auditor general has said .\ncollie dogs may be able to help prevent the spread of e. coli , a new study suggests .\ntwo brothers have been jailed for the `` merciless '' murder of a drug dealer during a botched robbery .\na plaque honouring merseyside workers who died in the spanish civil war has been unveiled in north london .\nadidas will end its sponsorship of athletics ' world governing body , the iaaf , at the end of the year .\ncrewe alexandra head coach steve davis has praised the club 's crop of under-21 players after six of them signed new contracts .\nharlow , in essex , is celebrating its 70th birthday .\nit has been a season of ups and downs for andy murray .\ncouncils in wales should not be allowed to increase council tax to pay for social care , a minister has said .\nan app that uses artificial intelligence to identify people has been launched in the us .\nthe world 's largest stealth fighter is on display at the paris air show .\nenvironment minister mark h durkan 's decision to approve a controversial belfast planning framework was unlawful , the high court has ruled .\nformer england captain michael vaughan described england 's innings-and-209-run victory over pakistan in the second test as `` an absolute hammering '' .\ncoventry city fans who threw smoke bombs during saturday 's defeat by northampton have been condemned by the club 's supporters trust .\nsale are out of the european champions cup after suffering a heavy defeat at clermont auvergne .\nthe world 's largest container ship has arrived in suffolk .\ntop gear 's dunsfold park airfield has lost a high court bid to have a planning certificate issued for unrestricted flying .\nserial killer levi bellfield has denied making a confession to the murder of 13-year-old milly dowler .\nthe girlfriend of a man who took 18 people hostage in a sydney cafe has been sentenced to life in prison for murdering her ex-wife .\nthe head of wales ' football governing body has called on the welsh government to increase its funding for sport .\nneil lennon says scott brown 's decision to come out of international retirement was `` premature '' .\nrepublican presidential candidate donald trump has said he is `` afraid '' the us election will be rigged .\nfrench actor gerard depardieu has said he has received russian citizenship .\na 23-year-old man has been arrested in connection with the death of a man in west lothian .\npeople are being asked to report sightings of rabbits and hares across the uk .\na new safety barrier is to be installed at the spot where a county tyrone teenager was knocked down and killed by a van in belfast last october .\ngovernment plans to use money raised from a sugar tax on soft drinks to fund healthy-pupils projects are `` perverse '' , councils say .\npolice seized 1.1 million cannabis plants in the last year , figures show .\neast midlands airport -lrb- ema -rrb- is to close its runway for six weekends from saturday as part of a # 3m refurbishment .\nceltic striker patrick roberts says he is `` proud '' of his decision not to play for wales at the world cup .\nfor more than a decade , a stately home in the south west of scotland has been at the centre of a long-running saga .\nafrican champions zambia have been drawn in the same group as iran and costa rica at the under-20 world cup in south korea .\nscotland head coach gordon strachan will name his first-team squad for the double-header against the czech republic and scotland under-21s on wednesday .\nvirgin money chief executive jayne-anne gadhia is to chair a review of student support funding in scotland .\na reality tv show has given a essex town a `` certain stereotype '' , a tourism body has warned .\nasif patel 's life was turned upside down when his brother-in-law carried out the 7 july bombings in london .\nthe scottish green party has won its first seat in the local elections .\na 25-year-old man has been stabbed in the leg in an attack in west belfast .\nthe new bishop of gloucester has been formally installed .\nfirst minister nicola sturgeon has visited a primary school in the scottish borders to highlight its efforts to close the attainment gap .\na sightseeing boat crash in which nine people were injured could not have been prevented , a report has said .\nscotland 's four-time olympic gold medallist katherine grainger has been awarded an honorary doctorate from glasgow university for her services to sport .\nyoutube is cracking down on people who buy fake views .\na 20-year-old british man has survived a fall from a 14th floor balcony in new zealand , police have said .\naustria has said it will limit the number of asylum seekers it accepts , as the eu struggles to cope with the migrant crisis .\nup to 1,000 new homes could be built in swansea as part of plans to boost the city 's population .\namerican charley hoffman holds a four-shot lead after the opening round of the masters at augusta .\nthe welsh green party has launched its manifesto for may 's local elections .\nrussia has accused turkish president recep tayyip erdogan and his family of involvement in the illegal oil trade with so-called islamic state -lrb- is -rrb- .\nlabour mps have defied their leadership and voted against the government 's new budget rules .\na 12-year-old boy has been arrested after a teacher and pupil were stabbed at a school .\na 25-year-old has won the men 's title at the world conker games for the first time .\na brazilian court has dismissed a fraud case against barcelona 's brazilian footballer neymar and his father , neymar da silva .\neu foreign ministers have agreed on a plan to send eu troops to the central african republic -lrb- car -rrb- to stabilise the country .\nan mep is to step down from his role in the european parliament to take up a top job in the business world .\ntwo raf typhoons were scrambled to intercept a civilian plane at prestwick airport in ayrshire .\nlibya 's un-brokered talks to form a national unity government have been described as a `` joke '' by rival mps .\n-lrb- close -rrb- : european shares rose on friday , recovering some of the ground lost in the previous day 's sell-off in china .\na former ira man has been given the go-ahead to challenge the psni 's request for tapes of interviews he gave to a us university .\nthe oil price has fallen below $ 30 a barrel for the first time in more than a decade .\nus president donald trump 's healthcare bill has been withdrawn hours before a vote in the house of representatives .\na former loyalist prisoner is to take legal action against a us university after it was ordered to hand over tapes he gave to researchers .\nmartha cooper and henry chalfant were among the first photographers to capture the graffiti art of the 1980s in new york 's train yards .\nchelsea manager antonio conte says the premier league title race is wide open .\nformer british number one laura robson will return to play at nottingham 's aegon open .\nengland full-back anthony watson has been charged by the rugby football union after being sent off in bath 's premiership defeat by saracens .\nwidnes vikings second-rower ryan mellor has signed a new two-year contract with the super league side .\nmore than 3,000 people have been evacuated from eastern aleppo , the red cross says , after a ceasefire deal collapsed .\ntwo men have been assaulted by a gang of masked men during a robbery in paisley .\nchampion jockey ap mccoy won the queen mother champion chase on don cossack on his final day at the cheltenham festival .\nthe bbc 's tendai msiyazviriyo reports from the ugandan capital , kampala , where president yoweri museveni is on a two-day state visit .\nroedd y farwnes eluned morgan , ac dros ganolbarth a gorllewin cymru , yn siarad wedi i nicola sturgeon gadarnhau y byddai 'n ceisio am ail refferendwm ar annibynia\nkidderminster harriers chairman peter brown says caretaker boss colin gordon should be given the job on a permanent basis .\na woman has been charged with the murder of a man in a flat in north belfast .\nthe suicide bomber who attacked a military parade in the turkish capital ankara last week has been identified as a 25-year-old turkish kurd , reports say .\na soldier accused of murdering his ex-girlfriend was obsessed with her , a court has heard .\na professor at the university of texas has resigned over a new law allowing students and staff to carry guns on campuses .\nmidfielder jim o'brien has joined ross county on a permanent deal .\nmoussa dembele insists he is happy at celtic despite reports linking him with a move to chelsea .\nukraine 's president viktor yanukovych and opposition leaders have signed a deal to end months of protests .\ned miliband has resigned as leader of the labour party .\na man has been charged with murder following the death of a man found injured in a car in oxford .\nfor many years gay and bisexual men in the uk have been banned from donating blood .\nswansea city head coach paul clement says alfie mawson has the potential to be a premier league star .\nthe elton john aids foundation has offered to pay for hiv testing in lambeth for two years .\ngeomagnetic storms are disturbances in the earth 's magnetic field caused by charged particles hitting the earth 's surface .\nvictims of asbestos-related cancer mesothelioma will be able to claim up to # 123,000 in compensation , the government has announced .\na woman has died after being hit by a truck in gwynedd .\nbritish number three kyle edmund reached the second round of the abierto mexicano telcel with a straight-set win over spain 's albert ramos-vinolas .\na brand new steam train is set to run for the first time in over a decade .\nsomalia 's government has released a video it says shows the moment a plane was bombed last month .\nthe families of two inmates who took their own lives at a buckinghamshire prison have asked the high court for a judicial review .\na crowdfund campaign to build a david bowie memorial in south london has failed to hit its target .\na yellow `` be aware '' warning of ice for parts of scotland has been issued .\nmore than a third of people in the east midlands say they are concerned about their christmas spending , a bbc survey suggests .\nglasgow school of art has opened a new building on the opposite side of renfrew street to its predecessor .\ntributes have been paid to a bristol labour councillor who died after a short illness .\neverton bowed out of the europa league with defeat by russian side krasnodar , thanks to a first-half goal from colombia striker martin laborde .\ntorquay united manager kevin nicholson says the club 's new owners have `` got a lot to prove '' .\nsome parts of the world are failing to provide enough laboratory testing for hiv , say world health organization -lrb- who -rrb- experts .\ncarlsberg shares have fallen sharply after the danish brewer said full-year profits would be lower than expected .\na complaint has been made to police after britain first members entered a mosque in cardiff .\nthe european union -lrb- eu -rrb- is withholding money owed to african soldiers fighting in somalia , the bbc has learned .\na man has died in a fire at a house in elgin .\nmartyn irvine has been voted bbc northern ireland 's sports personality of the year for 2013 .\na municipal councillor has been killed in the southern indian state of andhra pradesh .\nsyrian government forces have retaken control of the strategically important town of al-qaryatain from islamic state -lrb- is -rrb- militants , state media say .\narchaeologists working on the inverness west link have uncovered a number of bronze age artefacts .\nleigh centurions have signed salford red devils half-back rangi chase .\nengland 's laura massaro , sarah-jane perry and nick matthew are through to the british open women 's final .\nus president barack obama has asked for $ 1.5 bn -lrb- # 1bn -rrb- to help local police forces buy body cameras and other technology .\nlancashire director of cricket ashley giles says his side 's performance in their one-day cup defeat by sri lanka was `` not good enough '' .\nus republican presidential front-runner donald trump has come under fire for his campaign 's `` culture of violence '' .\ntens of thousands of people in the uk are being offered the chance to have their genetic code analysed .\ngorka izagirre won stage nine of the giro d'italia as luxembourg 's bob jungels retained the overall lead .\nmichael johnston has stepped down as majority shareholder of kilmarnock .\ncharlton athletic have launched an internal investigation after a former player claimed he was sexually abused by a scout at the club .\nthe knockout stages are here at euro 2016 and it is time for the big names to get their revenge .\na man has been arrested in connection with a serious assault in glasgow city centre in the early hours .\na man who stamped his partner to death has had his jail sentence increased .\npeople living in parts of the south west of scotland have been sharing their experiences of the rollout of superfast broadband .\nroyal dutch shell has said it will resume drilling for oil and gas in the arctic this summer .\naberdeen were knocked out of the europa league in the first qualifying round by swiss side fola esch .\na british teenager stranded in nepal after the earthquake received no help from the uk embassy , her mother has said .\narsenal are not interested in signing zlatan ibrahimovic , manager arsene wenger says .\na health board has admitted the quality of care on a mental health ward may have contributed to the deaths of patients .\nshrewsbury and fleetwood played out a goalless draw in the first round of the efl cup .\nengland under-20s reached the semi-finals of the fifa under-20 world cup with a 1-0 win over mexico in south korea .\ndavid sweat , one of two murderers who escaped from a new york prison , has been shot and captured .\nwales ' first national register of teachers and learning support staff has been launched by the professional standards council for wales .\nthe archbishop of wales has said he is still opposed to organ donation despite his retirement next month .\neverton have appointed leicester 's head of recruitment steve walsh as their new assistant manager on a three-year deal .\na turtle that washed up on a beach on the isle of man is being cared for by a fish company .\nhundreds of farmers and their supporters have taken part in a rally outside the scottish parliament .\na firearms officer has been disciplined for carrying a gun in a public place .\nleague one side blackburn rovers have signed aston villa midfielder ryan mason and chelsea defender josh houghton on season-long loan deals .\nbenedict cumberbatch , keira knightley and olivia colman are among a host of celebrities who have taken part in a new bbc initiative to raise awareness of mental health issues .\na 72-year-old man has died after getting into difficulty in the sea off cornwall .\n`` china 's debt fuelled expansion was never likely to be sustainable '' - that 's the view of one of the world 's leading economists , mervyn king .\na former nasa chief scientist has warned against making climate change data unavailable under donald trump .\nboris johnson 's foreign secretary tenure has been marked by a series of high-profile gaffes .\njosephine o'connor , one half of london duo oh wonder , had to keep her identity a secret after the band 's debut single , body gold , went straight to number one on the itunes music chart .\ndefending champion henrik stenson and sergio garcia share the lead on eight under par after two rounds of the bmw international .\nthe us senate has voted against ratifying a un treaty that protects the rights of the disabled .\ncolombian president juan manuel santos has been awarded the nobel peace prize .\na 15-year-old boy has been arrested on suspicion of drink driving after driving a tractor as a taxi in north yorkshire .\nolympic champion dani king says she is considering representing wales in the team pursuit at the 2018 commonwealth games .\nalex davies and matt jarvis shared an unbroken century stand to put derbyshire in a strong position against lancashire at the county ground .\nformer czech republic goalkeeper tomas fitzel believes a 16-team league in scotland would benefit the country 's youth .\nwales kicked off their 2018 world cup qualifying campaign with a comfortable victory over moldova in cardiff .\nnew celtic manager brendan rodgers says he is looking forward to getting to know his players before the start of pre-season training .\njohn sheridan 's first game in charge of newport county ended in a draw as lloyd john-lewis ' goal earned a point against exeter city .\na council has had to place kent children outside the county due to a surge in the number of asylum seekers .\nthe australian government has agreed to pay a$ 70m -lrb- # 50m ; $ 64m -rrb- to settle a class action case brought by asylum seekers held in papua new guinea -lrb- png -rrb- .\ncardiff city manager neil warnock says his side 's habit of conceding late goals will not continue next season .\nvolunteers are being urged to take part in a beach clean-up in the isle of man .\na 16-year-old boy has appeared in court charged with the murder of a man who died after an attack .\na man has died following a two-car crash on the a1 in county down .\nkent chief executive steve kennedy is to leave the county at the end of march .\nthe former head of england 's police and crime commissioner resigned to appear on bbc question time .\nlibya 's defence minister has refused to resign , the prime minister 's office has said .\npersonal data from 80,000 customers of mspy has been stolen and leaked on to the dark web .\nthe us has suspended its participation in talks with russia aimed at ending the conflict in syria .\nhundreds of people have attended the funeral of two brothers found dead in a car in the republic of ireland .\ndundee 's american owners hope to build a `` 21st century entertainment product '' at dens park .\na belarus para-athlete has been banned from the rio paralympics after displaying a russian flag in the maracana stadium .\nhundreds of people have attended a public meeting in flintshire to discuss the future of community hospital services .\na 73-year-old woman has appeared in court charged with dangerous driving after a crash in aberdeenshire .\nmiddlesbrough striker gaston ramirez has left the championship club .\nexeter chiefs scored a dramatic late try to deny european champions saracens a place in the premiership final at twickenham on saturday .\nowen sheers ' poem pink mist has been named wales ' book of the year at the national book awards in cardiff .\nbrighton moved to the top of the championship with victory at ipswich .\nlabour has retained the bridgend west seat in the 2016 general election .\na service to remember those who have died in conflict has been held in cardiff .\nalexis sanchez scored on his return from injury as arsenal edged past burnley to reach the fa cup quarter-finals .\nsyrian rebels say they have captured the pilot of a warplane which crashed in the north-western province of idlib on monday .\nbritain 's lani belcher won silver in the k1 200m at the canoe slalom world championships in milan .\nbritish astronaut tim peake is set to become the first british man in space on tuesday .\nmozambique has enjoyed stability and economic growth since the end of a 36-year civil war in 1992 .\ngermany is investigating hundreds of paternity cases involving men claiming to be the fathers of children born in the country .\na british soldier killed in afghanistan on saturday has been named by the ministry of defence .\nan appeal has been launched to raise money for a new railway crossing on the aviemore to skye line .\na curfew in the us city of baltimore will be lifted at midnight , the mayor has said .\none of london 's biggest letting agents is making more than # 11,000 per month by charging homeless people housing benefit to live in private accommodation .\nwelshman jamie donaldson shot a six-under-par 66 to take a one-shot lead after the second round of the nordea masters in sweden .\na canadian family has spoken of their frustration after being unable to get on a united airlines flight for their nine-year-old son .\nvideo games giant nintendo has reported a loss for its latest financial quarter .\nscottish borders council has announced plans to carry out a review of its school estate .\nlondon 's hospitals are struggling to recruit enough nurses , according to the royal college of nursing -lrb- rcn -rrb- .\nat least 10 people have been killed in ghana 's capital , accra , after a passenger plane collided with a bus .\ngarbine muguruza beat former champion francesca schiavone 6-2 3-6 6-3 to reach the second round of the french open .\nan author has said he was forced to cover up rude place names at a women 's institute -lrb- wi -rrb- fair .\nnational league side gateshead have signed rochdale strikeryal bell on a two-year contract .\nformer england and chelsea defender keith le saux says he does not believe there are any openly gay players in professional football .\ndogs could be banned from beaches in pembrokeshire under plans being considered by the county council .\nthe vatican 's former secretary of state is to donate 200,000 -lrb- # 144,000 ; $ 214,000 -rrb- to a children 's hospital after it emerged he had spent it on a flat in the vatican city .\nthe so-called islamic state -lrb- is -rrb- says its media chief , abu mohammed al-furqan , has been killed .\nscarlets have signed wales under-20 internationals tom hughes and josh evans for the 2017-18 season .\njessica ennis-hill 's coach toni minichiello says russia 's tatyana chernova should have been stripped of her world heptathlon title .\ndozens of gay men have been detained and tortured in chechnya in russia 's north caucasus , a gay rights group says .\nhundreds of people have attended breastfeeding protests in swansea and staffordshire in support of a mother who was stopped from feeding her baby in a supermarket .\ngerman carmaker daimler has reported a net profit of 1.9 bn euros -lrb- # 1.5 bn -rrb- for the second quarter of the year .\nsam warburton says he is `` more hungry '' than ever after being stripped of the wales captaincy to be replaced by alun wyn jones .\nmark milkins says he felt `` under a lot of pressure '' before his first-round win at the uk championship .\nrobert harsent has won the 2014 ts eliot prize for poetry .\nlord coe has been elected president of the international association of athletics federations .\nnicholas winton , who has died at the age of 99 , is widely credited with saving the lives of thousands of jewish children during the holocaust .\nformer formula 1 driver mark webber is on the verge of securing the world endurance championship title .\na nobel prize-winning scientist has apologised for remarks he made about female colleagues .\na rise in the number of motorists caught using a mobile phone while driving in wales has been criticised by road safety charities .\nstaff at queen 's university in belfast are less positive about the leadership and direction of the institution , according to a survey .\nthe chief minister of india 's capital , delhi , is continuing his sit-in protest against police brutality .\nthe youth olympic games get under way in norway on thursday .\na shopping centre in cumbria has been closed after a fire broke out in the basement .\na drug that mimics folic acid has shown promising results in women with advanced ovarian cancer .\njunior doctors in england are to vote on whether to take industrial action in a dispute with the government over a new contract .\npolice in greece say they are investigating comments made by members of the far-right golden dawn party about an attack on an mp last month .\npoliticians , campaigners and commentators have been reacting to a high court ruling that the current abortion law in northern ireland is incompatible with the european convention on human rights .\nthousands of letters , manuscripts and drawings from one of scotland 's most famous writers have gone on display in edinburgh .\ncornish pirates head coach alan paver says he had doubts about the future of sam chapman .\nbolton and birmingham played out a goalless draw at st andrew 's in the championship .\na polar bear which had been stranded in belgium for two years has arrived at chester zoo in the south .\na pensioner has been told she will have to pay more than # 18,000 for a phone line .\ncoventry has taken in more syrian refugees than any other local authority area , the home office has said .\nukip leader nigel farage has said wales `` gets a rotten deal '' from the european union .\ntwo police officers have been injured in a crash in conwy county .\na motorcyclist has died following a crash in south yorkshire .\nnewcastle returned to the top of the championship with victory over struggling aston villa at st james park .\na stained glass mosaic has been unveiled at lincoln cathedral to mark the 70th anniversary of a world war two food aid campaign .\nchris holroyd scored twice as macclesfield came from behind to beat national league leaders dover .\na 25-year-old man has been charged in connection with the shooting of three cats in surrey .\na former football coach has been arrested on suspicion of historical sex offences .\npreviews and team news for the weekend 's premier league and championship games .\nnorthern ireland will host the 2021 commonwealth youth games in bangor .\ntwo men have been taken to hospital after being stabbed in an attack in ballymena , county antrim .\nst mirren have signed striker cameron smith on loan from aberdeen until the end of the season .\nenvironment minister carln doherty has said she will take legal action against northern ireland 's environment minister over his decision to adopt a controversial new planning policy for the republic of ireland .\nwest ham striker andy carroll will miss the rest of the season with a knee injury .\nthe number of uk households renting property is set to double in the next 10 years , according to surveyors .\npop star dannii minogue has been awarded an honorary degree by a university in hampshire .\nbritish gymnast jack mackenzie has switched allegiance to south africa in a bid to qualify for the rio olympics .\na trial of a genetically modified -lrb- gm -rrb- rice crop in the philippines has been vandalised .\na plaid cymru am 's cardiff bay office has been burgled for the second time in less than a year .\na garden dedicated to the late rock star syd barrett is to be built in his home city of cambridge , his former art teacher has said .\na series of 4,500-year-old neolithic huts have been built by archaeologists at stonehenge .\na man has been found guilty of raping a pensioner in her own home in south-east london .\na 25-year-old man has died after being attacked outside a pub in grimsby .\nactor john mccowen , best known for playing q in sean connery 's james bond films , has died at the age of 89 .\nthe set of itv soap emmerdale is to be opened to the public for the first time .\ncardiff city 's decision to sack manager ole gunnar solskjaer after less than a year in charge is a shock to many .\na gin distillery has opened in the scottish borders - the first of its kind in the region in nearly 200 years .\nformula 1 bosses have failed to agree on a new qualifying system for the season-opening bahrain grand prix .\nthe venezuelan government has closed its border with colombia in a bid to combat the smuggling of cheap goods .\nscotland captain greig laidlaw says his side will need to be `` subtle and clever '' if they are to beat france in paris on saturday .\none of wales ' oldest university buildings could be turned into a `` cultural quarter '' as part of plans to regenerate aberystwyth town centre .\nmonty python star michael palin is to receive a fellowship at this year 's bafta tv awards .\nukip leader nigel farage has called on the government to extend the ban on eu citizens claiming in-work benefits to all migrants .\nlondon mayor boris johnson has said the night tube will be launched `` eventually '' .\nformer respect mp george galloway has been reported to police for allegedly discussing voting while polls were open in the bradford west by-election .\nengland face scotland at wembley in a 2018 world cup qualifier on friday .\nthe metropolitan police has apologised to the family of a man who was found dead in north london five years ago .\nliverpool 's mayor has set out plans to cut # 90m from the city council 's budget over the next three years .\na batch of gin has been recalled in canada after inspectors found the alcohol content was higher than advertised .\nin our series of letters from african journalists , ghanaian writer elizabeth ohene , a former government minister and member of the opposition , looks at why our government has accepted two men from guantanamo bay to live in ghana .\na children 's book prize named after roald dahl is to be relaunched .\nthe leaders of the eu 's 27 member states are gathering in brussels this weekend for their first summit since the uk 's general election .\na blogger who was ordered to pay back # 190,000 in legal costs to a council leader has had her case against him dropped .\nthe number of syrian refugees settled in wales has risen by more than a third in the past three months to 53 .\nthe bbc has lost its rights to show family guy in the uk .\nglasgow city thrashed inverness 14-0 in the first round of the scottish women 's premier league cup .\nnew york is to honour the us women 's football team with a victory parade after they won the world cup .\npower has been restored to all properties affected by a fault in the north west of northern ireland .\nipswich town beat derby county to earn their first championship win of the season .\npoland 's institute of national remembrance -lrb- irn -rrb- has released a database of nazi commanders and guards who worked at the auschwitz death camp .\nkingfisher , the owner of b&q , has agreed to sell a majority stake in its chinese diy business to wumei holdings .\nthe denver nuggets will play the indiana pacers at the o2 arena in london in january .\nswansea city defender neil taylor is likely to miss the rest of the season after breaking his ankle in the 2-2 draw with sunderland .\njason rebellion says that jousting is one of the most dangerous sports in the world .\njordan clark scored the winner as accrington beat bradford at valley parade .\nadele has broken down in tears after beating beyonce to win album of the year at the grammys .\na man who murdered a glasgow pensioner has been jailed for at least 13 years .\nhundreds of people have attended the funeral of a dj whose remains were found in the avon gorge .\na man has been fined for hitting a celtic fan in the face with a bottle during a scottish premiership game .\ntunisia has voted in a run-off for a new president , four years after a popular uprising ousted its authoritarian leader .\nvolkswagen 's chief executive has said he is `` optimistic '' that the company will find a solution to the diesel emissions scandal .\nfrench cyclist pierre demoitie died after being hit by a motorbike during a race on sunday .\nisrael 's prime minister has condemned the launch of a ballistic missile by iran , calling it a `` clear violation '' of a un security council resolution .\nleeds united 's hopes of reaching the championship play-offs suffered a blow as they lost at home to wolverhampton wanderers .\nat least six people have been killed and several others are feared dead in a series of explosions at a fireworks factory in portugal .\na canadian theme park has been charged with four counts of animal cruelty , including failing to provide adequate care for a peacock and guinea hens .\nbritain 's cal crutchlow won his first motogp race at the grand prix of the americas in austin .\ncardiff city head coach paul trollope says the club are willing to listen to offers for players .\ntwo of three london schoolgirls who travelled to syria have married men , their families say .\nolympic champion elinor barker says british cycling should be praised after winning a gold medal at the track world championships .\nreading have released hal robson-kanu , rio ferdinand and simon cox .\nmainland chinese shares continued to fall on friday , extending losses from the previous trading session .\nkrystian pearce was sent off as dagenham & redbridge slipped to the bottom of league two with defeat at mansfield .\nchildren in foster care in scotland are struggling to find a stable home , according to a new study .\nthe amazon rainforest is one of the world 's largest and most important remaining tracts of forest .\nmembers of the house of commons have paid tribute to the creator of dad 's army , robert perry , who has died .\nlionel messi scored his first goal of the season as barcelona came from behind to beat atletico madrid in la liga .\n-lrb- close -rrb- : the pound rose against the dollar after a closely-watched survey indicated the uk 's service sector rebounded in august .\nthe scottish government 's plan to ban the cultivation of genetically modified -lrb- gm -rrb- crops risks limiting research , scientists have warned .\nsudan 's state tv and south sudan 's state-run tv have both been showing footage from the battle for heglig , a disputed border area between sudan and south sudan .\nmichael gove has just told me that the eu referendum is a choice between freedom and security .\na 19-year-old computer scientist is developing software that can diagnose breast cancer .\nthe crown prosecution service -lrb- cps -rrb- has been criticised for its communication with victims of crime .\na us judge has lifted a ban on the sale of samsung 's galaxy tab 10.1 tablet computer in the country .\nplymouth argyle striker luke spencer has been ruled out for the rest of the season with a knee injury .\njamie vardy scored twice as leicester beat liverpool to go top of the premier league .\nturkey 's president , recep tayyip erdogan , has said he is ready to reinstate the death penalty if the turkish people demand it .\na teenager who died from leukaemia just days after proposing to his girlfriend has married his girlfriend in hospital .\njoe cardle scored twice as dunfermline athletic beat 10-man falkirk in the scottish championship .\na wightlink ferry has been evacuated after a fire broke out on board .\n-lrb- close -rrb- : stocks on wall street closed higher on friday , after a strong jobs report .\nthe family of a baby who was diagnosed with a rare form of meningitis have been speaking to the bbc .\nprison officers in england and wales are to be balloted on industrial action in a row over the privatisation of prisons .\nteachers have voted to oppose the requirement for schools to promote `` fundamental british values '' in the curriculum .\nlabour could split if jeremy corbyn wins the party leadership , shadow home secretary yvette cooper has warned .\nsir vince cable , the former liberal democrat leader , is a big fan of apprenticeships .\nformer england and preston striker tom finney has died at the age of 88 .\nit 's been a year since the ulster unionist leader , ian paisley , called for stormont 's parliamentary system to be reformed .\nneil gaiman 's novel the ocean at the end of the lane has been named book of the year .\nwhen the dust settled on the 2015 general election , the political impressionists were left to reflect on the obituaries they had read .\noscar-winning actress dame helen mirren has joined the cast of disney 's live action remake of beauty and the beast .\nsouth africa 's olympic taekwondo silver medallist dusit dandridge has overcome adversity to become one of the world 's top fighters .\njames botham has become the first grandson of sir ian botham to play for wales .\na new york judge has ruled against the us government 's attempt to force apple to unlock an iphone .\negyptian security forces have clashed with protesters in a cairo suburb after the killing of a street vendor .\npolice investigating the murder of a teenager in blackpool 10 years ago are to make an appeal at the town 's football ground .\na publican who stabbed a gay man in the neck with a steak knife has been jailed for four years .\npolice in the northern indian state of haryana are investigating a deadly riot at the country 's biggest carmaker maruti suzuki .\nlaura pergolizzi had a successful career as a singer-songwriter until recently , when she decided to give it all up .\nbbc presenter john barnes , who was mugged outside his home , has said he is `` not ready '' to meet his attacker .\nindia 's prime minister narendra modi has launched a campaign to boost manufacturing in the country .\na detective has urged a mother who went missing with her three-year-old son to contact the police `` one way or another '' .\nactress jennifer lawrence has spoken out about the pay gap between men and women in hollywood in an essay .\n-lrb- close -rrb- : wall street markets closed higher on wednesday , boosted by strong gains in banking shares .\na business owner has lost a high court bid to prevent his details being published in the renewable heat incentive -lrb- rhi -rrb- scandal .\nwhat is a turning point in a politician 's life ?\nthe scottish spca has been called out to a report of a snake in a park in aberdeen - only to find it was made of plastic .\nplans for a new country park on the site of a former coal mine in gedling have been approved .\na former soldier has been cautioned over an alleged payment to a military barracks , the crown prosecution service -lrb- cps -rrb- has said .\nthe search is continuing in venezuela for a military helicopter that crashed on wednesday , killing 11 people .\na man has attempted to break the world record for the largest savoury snack - by cooking an ostrich egg in meat .\neverton have signed manchester united winger adnan januzaj on a season-long loan deal .\nthe prime minister is to explore whether the uk can offer more practical counter-terrorism support to indonesia and malaysia .\n-lrb- close -rrb- : the nasdaq index fell more than 2 % , its biggest one-day fall in more than a year , as the dollar strengthened .\ntens of thousands of south africans are marching in the capital , pretoria , to demand the resignation of president jacob zuma .\njames anderson says england will have to `` pull their fingers out '' if they are to avoid defeat in the second test against pakistan .\ncardiff city manager neil warnock says kenneth zohore is one of the best players he has worked with .\ncarlisle united manager keith curle says he will not walk away from the club if they do not offer him a new contract .\njames pattinson took 5-58 as australia beat west indies by an innings and 80 runs in the first test in hobart .\nformer manchester united manager sir alex ferguson says michael carrick is the best central midfielder in england .\nmurderers of police officers should face whole life imprisonment , home secretary theresa may has said .\nfearne cotton has hosted her final bbc radio 1 breakfast show after 10 years on the station .\nbristol have re-signed bath full-back luke arscott on loan until the end of the season .\nthe police service of northern ireland -lrb- psni -rrb- is to launch 26 new neighbourhood policing teams across the country .\npeople dressing up as clowns could be arrested , welsh police have warned .\na complete doctor who story has been found in the bbc 's archive after being lost for 40 years .\na new public transport system in bristol has been thrown into doubt .\nweapons believed to be 3,000-year-old roman artefacts have been discovered on the isle of coll .\nwales goalkeeper danny ward says he would like to stay at huddersfield town next season .\na man has been arrested in connection with the disappearance of a baby in north london in 2003 .\npolice have appealed for information after five bird nests were found abandoned in a forest in the highlands .\na father who found a newborn baby girl at a bus stop in north wales has described his `` fatherly instinct '' .\nback-up singer faith hill has just released her first solo album - a collaboration with prince .\nkilmarnock manager lee clark says captain steve smith 's `` brave '' decision to play through an injury is an inspiration to his players .\n-lrb- close -rrb- : the ftse 100 closed higher , with mining shares leading the way .\nglasgow head coach gregor townsend was left `` a bit down '' after his final game in charge of the warriors ended in defeat by edinburgh at scotstoun .\njohnny sexton has been ruled out of ireland 's three-test tour of south africa with a knee injury .\nchina 's biggest search engines have joined forces with the government to crack down on online banking scams .\nprosecutors in the trial of three al-jazeera journalists in egypt have played a series of audio and video recordings .\npolice in the brazilian state of amazonas are searching for more than 100 prisoners who escaped from a jail on new year 's day .\nit was a tale of survival .\nmalaysian actress michelle yeoh has been named best actress at the hong kong film festival .\na body has been recovered from the river don in cumbria .\nthe nepalese government says it is planning to limit the number of people who can climb mount everest .\npatrick kluivert scored on his return to ajax as the amsterdam side beat pec zwolle in the dutch eredivisie .\na court in the western indian city of mumbai has said it will deliver its verdict in the 2002 mumbai hit-and-run case involving bollywood star salman khan on 26 june .\nnewcastle falcons have re-signed england fly-half toby flood from french top 14 side toulouse .\nthe scottish professional football league -lrb- spfl -rrb- has updated its rules on dealing with unacceptable conduct .\nthe dow jones industrial average closed above 22,000 points for the first time on monday , helped by a rise in oil prices .\nformer foreign secretary jack straw is to chair a new committee to examine the future of the clerk of the house of commons .\nthe number of weddings in gretna last year was slightly down on the previous year .\na terminally ill man with motor neurone disease has launched a legal challenge at the high court against the law on assisted dying .\nshrewsbury town have signed former walsall midfielder tom macgillivray on a one-year deal . .\nleaders paris st-germain suffered their first league defeat of the season as they were beaten at lyon .\nat least two people have been rescued from rubble in the nepalese capital , kathmandu , four days after an earthquake killed more than 5,000 people .\nthe quality of life for older people in residential care in wales is to be reviewed .\nlinfield 's champions league second round qualifier against celtic will take place on wednesday , 11 july .\nthe new mps have been giving their first statements in the house of commons .\na `` predator '' who travelled to the us to have sex with young boys has pleaded guilty to transporting child pornography .\na song and video of england 's world cup winning team has been released more than 30 years after it was shelved .\na 3ft-long -lrb- 0.9 m -rrb- shark has been found washed up on a beach in pembrokeshire .\ncambridge boosted their league two play-off hopes with a narrow win over exeter .\nbus drivers in cardiff have voted to accept a new pay offer .\na tv programme featuring derren brown 's `` self-asphyxiation '' stunt has been banned .\nthe un 's review conference on nuclear weapons has failed to reach a deal on a proposed arab-led initiative .\na british ukulele orchestra has failed in a legal bid to stop a rival group performing in the uk .\nslovakia gained independence from the czech republic in 1991 after the fall of the iron curtain .\npolice in northern ireland are investigating whether the bullet that killed a teenager in 1972 came from a british army weapon , the bbc has learned .\nthe partner of a man who died in a head-on crash has told a court she felt as if she was in a washing machine .\nmorton manager jim duffy has been banned for one game and hibernian boss neil lennon has been charged by the scottish football association .\na pedestrian who died after being hit by a lorry in aberdeen has been named by police .\nnorwich city have signed wigan defender josh wildschut for an undisclosed fee , but have failed in a bid to sign psv eindhoven left-back ryan dijks on loan .\nthe owners of a derelict denbighshire hospital have lost a legal action over a # 1.2 m bill for urgent works on the site .\na pilot and his wife walked to a pub after their light aircraft crashed in a field in east midlands .\ngemma arterton is in talks to star in a west end musical based on the oscar-winning film made in dagenham .\nscottish labour leader kezia dugdale has called on trade unionists to `` speak with one voice '' against austerity .\nguinea-bissau 's national football team have been cleared to play at the africa cup of nations after a players ' strike over unpaid bonuses .\nvenezuela 's vice-president , nicolas maduro , has made his first public appearance since president hugo chavez underwent cancer surgery in cuba .\npolice in cuba have detained more than a dozen opposition activists during a protest against human rights abuses .\nmartin canning believes new rangers boss pedro caixinha will want to `` put his own stamp '' on the team .\nclint dempsey will miss the start of the premier league season because of a back injury .\nmexican drug lord joaquin `` el chapo '' guzman has been extradited to the united states .\nsteven davies hit an unbeaten 109 as surrey beat yorkshire by 24 runs to reach the one-day cup final at lord 's .\na leading psychiatrist who investigated gulf war syndrome has been appointed a knighthood in the queen 's birthday honours .\nsyria has denied using chemical weapons and accused the us of supporting `` terrorist elements '' in the country .\nthe man accused of shooting dead five people at a florida airport has appeared in court for the first time .\nthe trump administration 's latest round of sanctions against iran sends a clear message to tehran that its growing influence in the middle east will not go unchallenged .\nthe pope has replaced the entire governing board of the vatican bank .\nthe number of homes being repossessed in england and wales fell in the second quarter of the year .\ngreat britain 's sarah butterfield won gold in the f51 shot put at the ipc athletics european championships in italy .\na rare signed copy of adolf hitler 's manifesto mein kampf is to be sold at auction on friday .\nretailers and manufacturers have been urged to tackle the `` overwhelming tide '' of unhealthy food being sold in scotland .\ntwo brothers raised money for their brother to join so-called islamic state , a court has heard .\neuropean union leaders have said they will press ahead with a plan to send migrants back to turkey .\nnational league side solihull moors have signed midfielder alex rodman on a deal until the end of the season from rushall olympic .\nengland women 's team would have won the olympic gold medal if they had gone to rio this summer , says coach mark sampson .\nthe history of the uk 's claim to the remote rock rockall in the north atlantic has been revealed in newly released nato documents .\ngerman airline lufthansa has been ordered by a court to cancel all flights on tuesday and wednesday as a pilots ' strike gets underway .\na russian fighter jet has flown close to a us reconnaissance plane over the black sea , us defence officials have said .\nthe head of india 's central bank has told the bbc he is concerned about the `` immense burden '' falling on central banks around the world .\nthe introduction of midwife-led maternity services at caithness general hospital in inverness has been delayed .\nleague one side shrewsbury town have signed arsenal midfielder george jebb on loan until january .\njames mckee and sean o'donoghue scored twice as ireland beat poland 4-1 at the world league 2 quarter-finals in belfast .\nhe is one of the world 's richest men , with a net worth of more than $ 10bn -lrb- # 6bn -rrb- .\na senior police officer who `` repeatedly lied '' about his qualifications will not face disciplinary action .\nmae heddlu llundain wedi dweud fod 74 o bobl yn cael eu trin mewn ysbytai , gydag 20 mewn cyflwr difrifol .\nthe scottish agri-food industry is worth more than # 2bn a year to the uk economy .\ncctv images have been released of a man who stole # 30,000 from a safe at a supermarket in greater manchester .\nthe uk needs to do more to support start-ups , according to neil woodford , one of the world 's best-known investors in technology .\na murder investigation has been launched after a man 's body was found in a surrey field .\nrichard cockerill has been sacked as leicester tigers director of rugby .\ndavid lloyd 's century helped glamorgan to a draw with sussex at hove .\nat least 16 people have died after a plane crashed into a river in the taiwanese capital , taipei , officials say .\nfour former foreign secretaries have urged david cameron to raise corruption in russia during his visit to moscow this weekend .\npolice have appealed for help to trace a pensioner who has gone missing from a swansea hospital .\nmost of us know a place name , whether it 's the name of a town , village or city , or the name of a country lane or road .\nit 's been a busy week in the world of social media .\nbookmaker ladbrokes has reported a fall in half-year profits as it continues to implement major changes .\na man found dead at a house where his ex-partner was seriously injured has been named .\ninspectors have said `` significant improvement '' is needed in the care provided for older people in the western isles .\nthe bbc is to scrap its chat show-style wimbledon coverage .\nthe number of prosecutions and convictions for road accidents in the uk has fallen dramatically in the past five years .\nphotographs of a railway station which closed 50 years ago have gone on display .\nthe son of nightclub tycoon david west has been jailed for eight years for killing his father .\nat a hospital in bambari , the capital of the central african republic -lrb- car -rrb- , the wounds of war were still fresh .\nchristian eriksen scored a late winner as tottenham beat manchester city to go top of the premier league .\nvoters in scotland appear to be broadly in favour of giving the scottish parliament more powers , according to a new poll . giving holyrood power to increase benefits and pensions achieved an average score of 7.3 out of 10 , a little higher than devolving full control of welfare benefits -lrb- 7.1 -rrb- , full control of income tax -lrb- 6.8\ngreek prime minister alexis tsipras is `` determined '' to complete a bailout deal with creditors , his spokesman has said , despite a vote of no confidence in parliament .\ncctv footage has emerged appearing to show kenyan soldiers looting during the attack on the westgate shopping centre .\nbookmakers have suspended betting on radiohead to sing the theme tune for the new james bond film spectre .\nthe father of a girl who escaped unhurt in a coach crash in belgium has said she is still `` emotionally not right '' .\na woman has suffered `` devastating '' injuries after being attacked by a dog in lincoln .\na county down doctor is encouraging people to climb a mountain every day for a month in a bid to improve their health .\na number of people have been arrested in burundi in connection with the killing of a general , the public prosecutor 's office says .\na driver who hit a lollipop lady in bedfordshire was blinded by the sun , a court has heard .\nresearchers at swansea university have developed a new way to find cancer cells using computers .\nfierce clashes have been reported in the libyan city of benghazi between forces loyal to an anti-islamist general and islamist militias .\na man who admitted starting a fire which destroyed a former seaside resort in devon has been given a suspended prison term .\nchina has criticised japan 's new security laws , saying they breach the country 's pacifist constitution .\narsenal and hull city will have to replay their fa cup fourth-round tie after a goalless draw at emirates stadium .\nthe national crime agency -lrb- nca -rrb- has defended its appointment of sue owens , the chief constable of surrey police .\na hotel in the scottish borders is looking to recruit a new events manager .\nvirtual reality may be the future of gaming - but it 's not quite the start .\nthe english football league has apologised for `` human error '' after the first round draw for the efl cup was marred by technical issues .\nthe m1 motorway in county armagh has reopened following a three-vehicle crash on saturday morning .\nandre ward says his rematch with sergey kovalev will be `` the biggest fight of my career '' .\nlewis hamilton says he is not worried about making up ground in the formula 1 title race despite a poor start in bahrain .\na motorcyclist has died after being involved in a collision with a tractor in lincolnshire .\nchildren who have had bad experiences in their early years are more likely to develop health problems later in life , a study suggests .\nargentine president cristina fernandez de kirchner has condemned the murder of a prominent transgender activist .\na man has denied being the owner of a dog that killed a man in west yorkshire .\na japanese woman has been ordered by a high court judge to return her three-year-old son to japan .\nmps have accused rupert murdoch of `` turning a blind eye '' to the phone hacking scandal .\nbodypositive is here to help .\na londoner has been charged with terrorism offences after allegedly joining islamic state in syria .\nchina has warned the us against making `` disastrous '' remarks about its island-building programme in the south china sea .\na sculpture by henry moore is to be returned to tower hamlets , five years after it was removed .\nandy murray will lead great britain into the final day of the davis cup against belgium on sunday .\nchelsea , manchester city and arsenal will discover their champions league last-32 opponents when the draw takes place on friday .\nleicester city fans who sang homophobic chants during a premier league match against brighton should be banned , a brighton supporters club has said .\nwatford striker odion ighalo scored his fourth premier league goal in three games as newcastle slipped to the bottom of the table .\nplaid cymru 's leanne wood has won the south wales police and crime commissioner -lrb- pcc -rrb- election .\n-lrb- close -rrb- : wall street markets were mixed on wednesday as investors digested the european central bank 's latest stimulus plan .\nbarcelona has agreed to pay a 5.5 m -lrb- # 4.2 m -rrb- fine to spanish tax authorities over the signing of brazilian footballer neymar in 2013 .\na six-month-old baby boy has died after being bitten by his family 's dog in gateshead .\nospreys head coach steve tandy says there are `` question marks '' over the officiating in his side 's pro12 defeat by munster .\na lion that escaped from a south african national park for the third time in a year is to be returned to the wild .\nbritain 's katie archibald won gold in the women 's scratch race at the track cycling world championships in hong kong on saturday .\nworcestershire 's county championship opener against kent has been abandoned without a ball bowled because of a frozen pitch .\ncouncils have revealed the weirdest calls they have received from the public .\na man is in a critical condition in hospital after being stabbed in salford , police have said .\nopposition mps in south korea have ended a world record-breaking filibuster in parliament , after spending a week speaking for 72 hours .\nthe wales bill has passed its final stage in the senedd after ams backed the legislation .\nexeter city have signed former crystal palace , coventry city , sheffield wednesday and colchester united striker sean morrison on a short-term deal .\nin the wake of thursday night 's deadly shooting on the champs-elysees in paris , us president donald trump took to twitter to predict that the attack would have a `` big effect '' on the french presidential election in may .\nfive scots have been named in the great britain athletics team for the rio olympics .\nnew zealand 's lydia ko has become the youngest player to win a major after victory at the ana inspiration in california .\ndaniel craig is the `` best actor '' to play james bond , former 007 sir roger moore has said .\ndavid weatherson scored twice as albion rovers beat queen 's park to reach the scottish league cup semi-finals .\nghanaian film-makers the busy twist turned to the country 's streets for inspiration for their latest music video .\nmanor marussia have appointed former mclaren team boss ron ryan as their new team principal , with alexander wurz as chief executive .\nuk broadband customers are paying hundreds of pounds more than they should for their service , a charity has warned in a report .\nbritain 's tom daley won silver in the men 's synchronised 10m platform at the diving world series in kazan , russia .\neight people have been charged in connection with a suspected human trafficking ring .\nballymena united have signed former glentoran striker darren boyce on a 30-month deal .\nthe 200th anniversary of one of the world 's oldest scotch whisky brands is being marked with a charity sale .\njp morgan is considering moving hundreds of jobs out of the uk as part of brexit contingency plans .\nbirmingham city have signed dundee striker andrew stewart on a three-year deal for an undisclosed fee .\nthe number of patents filed in the uk and the us for technologies based on the brain has more than trebled in the past five years .\nthe bbc scotland election debate will be broadcast live on bbc one scotland at 19:00 bst on thursday , 7 may .\nthe royal navy 's new aircraft carrier base in portsmouth is to be officially opened later .\na second migrant has been killed trying to cross the channel from france to the uk .\na man has been arrested in connection with disorder at last month 's old firm derby match in glasgow .\na baby has been born using dna from two women and one man in ukraine .\namerican football is one of the most popular sports in the uk , and this year 's super bowl was watched by more than 100 million people .\nit is one of the great underdog stories in sports history .\nthe welsh rugby union -lrb- wru -rrb- has signed a new 10-year sponsorship deal with under armour .\nadebayo akinfenwa was sent off in his wycombe wanderers debut in a pre-season friendly against le havre .\nworcestershire took control on day two against glamorgan at cardiff .\nmicrosoft co-founder paul allen has announced plans to launch unmanned rockets into space .\ncommentators in european newspapers are warning that the uk 's vote to leave the eu is the start of a wave of populism that could threaten democracy in the region .\nukip , the conservatives and the lib dems spent more than any other party on campaigning for the european parliament election , figures have shown .\nthe front page of thursday 's new york times is dedicated to a story about `` the world 's most powerful man '' .\na man has been charged in connection with the attempted murder of an 80-year-old woman in greater manchester .\na woman is in a critical condition in hospital after being hit by a van in midlothian .\na woman has appeared in court accused of hiding the remains of a newborn baby .\nthe families of two motorcyclists killed in a crash in dumfries and galloway have paid tribute to the `` legendary '' couple .\na 22-year-old man has escaped from custody by jumping from a window at a hospital in manchester .\na man has been arrested on suspicion of causing death by dangerous driving after a pedestrian was hit by a car in west yorkshire .\nunemployment in scotland has risen slightly , according to official figures .\na breast surgeon accused of carrying out unnecessary cancer operations has told a jury he was `` not a ticking bomb '' .\nleague one side mk dons have signed birmingham city striker james vaughan on loan .\nsam allardyce says he will be happy if england get a point from their world cup qualifier against slovakia on friday .\nleague one side charlton athletic have signed defender luke pearce from oldham athletic for an undisclosed fee .\na teenager has been arrested on suspicion of murder after a 17-year-old was stabbed to death in west london .\nus toy-maker hasbro is in talks to buy rival mattel , according to a report .\na weston-super-mare school placed in special measures by ofsted is to close .\nhearts have agreed deals to sign morocco defender madjid rherras and striker conor sammon .\nbelfast city council has suggested three potential sites for the bbc 's new headquarters .\na man has been charged with murder following the death of another man at a farm in bedfordshire .\na cambodian activist has won the 2016 goldman environmental prize for his work to protect the country 's forests .\ngoogle has released a major update to its android operating system to address security concerns .\nauthorities in india have appealed against the acquittal of two men accused of the 2008 murder of a british teenager .\nedinburgh city have signed australia midfielder chris herd and german striker frank nouble on two-year deals .\nfleetwood scored three late goals in extra time as they knocked out national league side southport in the first round of the efl cup .\nan mp is appealing for help to save the childhood home of renowned photographer elizabeth bell .\njeremy fernandez is not your average australian news presenter .\nthe founder of italian football giants ac milan is to be honoured in his home city .\nformer wales striker dean saunders has been offered a free parking space if his team win euro 2016 .\nthe republican presidential candidates have clashed over immigration , the economy and the media in a fiery debate in colorado .\nwigan warriors have re-signed full-back sam tomkins from saracens on a three-year deal .\nwhen halle berry won the best actress oscar for her role in 2001 's monster 's ball , she became the first black actress to take home the award .\ntwo large industrial estates in southampton have been bought by the port company .\nthe royal marines have taken part in a parade in yeovilton to mark the base 's 50th anniversary .\ndame judi dench has pledged her support to surrey wildlife trust .\nkris commons says he has `` no plans '' for his loan spell at hibernian after making his debut on saturday .\nthe death of a five-year-old boy in the scottish borders dominates the front pages .\n`` it 's the best result we 've had for a long time , '' says mclaren-honda chairman ron dennis , after sunday 's hungarian grand prix .\npart of the m8 motorway in dumfries and galloway has reopened after being closed following a fire in a tanker .\na furniture shop owner who ran a cannabis farm from his home has been jailed for three years .\na new school could be built in dumfries town centre .\nshakin ' stevens has been voted the best welsh musician of the 20th century by radio wales listeners .\nengland batsman alex hales has donated # 4.10 to a charity after a fan complained about slow over rates during the first test against south africa at lord 's .\ntwo men have been found guilty of encouraging support for so-called islamic state .\nhull city missed the chance to go top of the table as sone aluko 's late equaliser earned nottingham forest a point .\ngerman police have arrested a man they believe was behind an attack on the borussia dortmund team bus .\na new free bus service is being launched in warrington to get people to a swimming pool .\nvoters in moldova go to the polls on sunday to choose a new president .\narmen vardanian has been stripped of his 2012 olympic bronze medal after failing a drugs test .\nchina 's economy grew at an annual rate of 6.7 % in 2015 , the slowest pace since the global financial crisis .\ntoo many teenagers drift into further studies or their first job , the house of lords education committee says .\na new critical care air ambulance service is to be launched in north wales .\nlancashire all-rounder tom smith has been forced to retire at the age of 27 because of injury .\nkent have announced a pre-tax loss of just over # 100,000 for the financial year to the end of march 2014 .\nforty sperm whales have died on a beach in the belgian town of verviers .\nscotland second-row leone nakawara is one of four glasgow warriors players to be released early from their contracts .\nben woodburn became liverpool 's youngest goalscorer and broke michael owen 's club record as the reds beat leeds united to reach the efl cup semi-finals .\na # 2m lottery grant has been awarded to a nottinghamshire town to help fund a new museum dedicated to the civil war .\nbelgium has banned the wearing of full veils such as the niqab or the burka in public .\none of japan 's richest men , kosuke kita , has just bought one of the world 's most respected newspapers .\noxford 's bus company has criticised plans to pedestrianise one of the city centre 's busiest roads .\ngreat britain won gold in the men 's 4x200m freestyle relay at the world championships in russia .\ntheresa may has called north korea 's missile test `` outrageous '' and `` provocative '' .\nthe uk has some of the worst health results in the european union , a report suggests .\nwhistleblowers in the public and private sectors face `` appalling '' treatment , mps have warned .\njockey michelle payne has failed a drugs test .\nderek mcinnes says aberdeen ran out of legs in the scottish cup final defeat by celtic .\nthe national farmers ' union -lrb- nfu -rrb- has become the first major farming union to back staying in the eu in the referendum .\na court in iraq has sentenced 18 men to death over the killing of up to 1,700 soldiers by so-called islamic state -lrb- is -rrb- in 2014 .\na postbox in henley-on-thames has been painted gold as part of the royal mail 's olympic celebrations .\nindia is a country with a rich culinary heritage .\ngreece is one of the poorest countries in the world .\nplymouth argyle 's martin kelly has been charged with violent conduct by the football association following saturday 's 2-1 defeat by portsmouth .\na new children 's garden is to be officially opened at a cardiff hospital .\nthe nominations for this year 's grammy awards have been announced .\nnewport rfc shareholders will vote on a # 3.75 m takeover by the welsh rugby union and newport gwent dragons .\npeople living on the sheerwater housing estate in surrey have said they want a new plan for the regeneration of the area drawn up .\nall-ireland qualifiers get under way on saturday with cavan , monaghan and fermanagh all making changes for their games .\nbritish rowing is investigating bullying claims made against one of its coaches .\nthe independent newspaper 's blogs website has been hit by ransomware , security experts have warned .\na few days ago , burmese opposition leader aung san suu kyi spoke to a group of business leaders in yangon .\n`` it is imperative we identify and prosecute those responsible . ''\nthe snp received 30 % of the first preference vote in last week 's scottish council elections , according to official figures .\nswansea city have held talks with former athletic bilbao boss marcelo bielsa about becoming their new manager , reports bbc radio wales .\na controlled explosion has been carried out at swansea university after chemicals `` became unstable '' .\na man has been found guilty of the rape and murder of a teenage girl who was found dead in her bed more than 30 years ago .\nsaudi arabia 's crown prince mohammed bin salman has defended his country 's decision to launch a military alliance against terrorism .\nthe co-operative bank says it has agreed a plan to recapitalise the business .\nthree rural radio shows are to be moved from pembrokeshire to carmarthenshire , bbc wales has learned .\nthe room where the duke of wellington died at walmer castle has been recreated .\nreigning champions the democratic republic of congo and south africa were knocked out of the 2018 africa cup of nations qualifiers on sunday as hosts kenya and ivory coast qualified .\nthe government 's counter-terrorism strategy has become a `` toxic brand '' , a former met police chief has said .\nmusic streaming service spotify has added a range of new non-music content to its app .\na fire at a derelict pub in rhondda cynon taff is being treated as suspicious .\nulster university -lrb- uu -rrb- has warned that the vote to leave the european union could result in eu students withdrawing their applications to study in northern ireland .\na head teacher who admitted secretly filming pupils and staff at his school has also admitted filming adult victims .\nfulham 's andreas christensen has joined danish second-tier side fc midtjylland on a season-long loan .\nlewis hamilton says he needs to win this weekend 's russian grand prix to keep up with mercedes team-mate nico rosberg .\nformer hartlepool united and carlisle united midfielder paul sweeney says the north east was a major factor in his decision to join gateshead .\nthe new voice of bob the builder has been revealed .\na man accused of murdering his landlord and dumping his body in a quarry has told a court he was `` angry '' he had rejected his landlord 's sexual advances .\nchina 's liang wenbo eased into the semi-finals of the world grand prix in preston with a 4-0 win over thailand 's noppon lee .\ngeraint thomas has become the latest team sky rider to back team principal sir dave brailsford .\na 19-year-old man from norwich has been arrested in connection with the talktalk hacking attack .\ndemocratic presidential candidate hillary clinton has dismissed claims by rival bernie sanders that she is not liberal enough .\nbritain 's andy murray beat milos raonic in straight sets to reach the quarter-finals of the miami open .\na plaque is to be unveiled at the home of a world war two submarine commander who was awarded the victoria cross .\nplans to pardon gay and bisexual men convicted of now-abolished sexual offences in northern ireland are to be considered by the assembly .\ntwo people have died in a crash on the m4 in berkshire .\nan australian woman has admitted trying to smuggle her two children out of the country to live with her dead husband .\nderbyshire pair billy godleman and shiv thakor have signed new contracts with the club .\nroyal bank of scotland -lrb- rbs -rrb- has set aside a further # 3.1 bn to cover claims relating to mis-selling of insurance and mortgage products .\na teenager has been arrested after a brick was thrown through the window of a house in larne , county down .\na man has died after the car he was driving crashed into a sign on the a90 near beattock .\naustria says it will impose daily limits on the number of migrants allowed into the country .\nhaiti 's parliament has rejected the mandate of president jovenel privert , paving the way for new elections .\nscotrail is to create up to 100 new train driver jobs across scotland .\nan australian man who allowed his 13-year-old daughter to marry a stranger has been jailed for six years .\nprotesters have clashed with police during a demonstration over the death of a man in east london .\na former belfast law firm partner has been questioned by the uk 's national crime agency -lrb- nca -rrb- over the sale of nama 's northern ireland loans .\nmichael dunlop set the fastest time in both superbike practice sessions at the ulster grand prix on friday .\nkendrick lamar has surprised fans by releasing an eight-track mixtape , untitled unmastered .\na former rugby international has ended his attempt to climb mount everest .\nthe skipper of a north sea fishing boat has been fined # 20,000 after one of his crew members died when he fell out of a petrol pump .\nthe uk 's communications regulator , ofcom , says it is considering splitting off bt 's openreach division , which runs the country 's broadband network .\nboth russian and ukrainian state tv channels have been showing contrasting reports on the crisis in eastern ukraine .\nlady gaga has announced she will play four more concerts at wembley stadium next year .\nin sport , there are bequests .\npeople have been warned not to disturb an endangered bird of prey on the isle of man .\nraith rovers have signed livingston midfielder scott martin on a two-year deal .\n-lrb- close -rrb- : london 's main share index closed higher after scotland voted to stay in the uk .\nuniversities in england should introduce binding contracts for all students to contest the quality of their courses , universities minister jo johnson has said .\nthe administrators of bradford bulls have delayed a decision on the sale of the club until next week .\na bus driver has been suspended after a video appeared to show him punching a man in the street .\nsurvivors of recent migrant shipwrecks in the mediterranean are struggling to come to terms with the loss of loved ones .\nwayne rooney 's decision to commit his future to manchester united by signing a new five-and-a-half-year contract looks like a huge coup for the club .\nthe boss of british airways and iberia , willie walsh , has said northern ireland 's potential air route development fund will be an `` advantage '' .\nthe owner of a meat distribution company has gone on trial at the old bailey accused of involvement in the horsemeat scandal .\nthe bbc 's women of africa celebrates women who are making a difference in africa .\nthe head of fifa 's audit and compliance committee says he never applied to lead a reform taskforce .\nthe chief constable of south yorkshire police , david crompton , has been suspended following the hillsborough inquest verdict .\na strong earthquake has struck north-eastern italy , with tremors felt as far away as milan .\na man has died in hospital after suffering a `` medical emergency '' while in police custody .\nedinburgh 's royal yacht britannia has been rated the best tourist attraction in scotland for the 10th year in a row .\ntwo men have been charged in connection with the death of a teenage girl in a car crash .\na british jihadist killed in iraq was once a guantanamo bay detainee , the bbc has been told .\nthe uk 's highest court has ruled in favour of a man who was granted british citizenship at birth .\nisraeli prime minister benjamin netanyahu has ordered a review of all ties with the united nations .\nedinburgh has the second worst traffic jams in the uk , according to a new survey .\nthe psni has deployed a special team to northern ireland to help deal with the impact of the arrival of syrian refugees .\na man and a woman have been arrested on suspicion of murder after a man was found dead in a tunnel .\nspending on private ambulances in london has more than doubled in the past three years , figures show .\nmore than 1,000 drivers a day have been caught speeding on the m4 in south wales since new cameras went live .\nten arts projects will be announced later as part of the uk - india year of culture .\nhuddersfield giants prop sione ta'ai has signed a new two-year contract with the super league side .\na minute 's silence has been held in edinburgh to remember those who died in the nepal earthquake .\npakistan 's military has appointed a new head of its secretive inter-services intelligence -lrb- isi -rrb- .\nrepublic of ireland assistant manager roy keane says he is happy to stay on as martin o'neill 's assistant .\naberdeen-based subsea engineering firm proserv has won two major contracts in the north sea .\nthe body of a man has been found in a park in hyde park in london .\nsubstitute sean raggett scored a late winner as national league play-off hopefuls dover came from behind to beat welling united .\nleyton orient assistant manager kevin edwards has been appointed first-team coach at the league two club .\npolice in italy say they have arrested a man who posed as a pilot for more than a year .\npolice are investigating after a car was deliberately set on fire in east lothian .\nleyton orient manager russell slade says new owner francesco becchetti has made changes to the club 's structure .\nhuman rights activist nabeel rajab has been released from prison in bahrain .\na series of budget cuts have been approved by pembrokeshire county council .\nthe 50th anniversary of england 's world cup final victory over west germany has been marked with a ceremony in london .\nthere 's been a big rise in the number of international tourists visiting the uk .\na social worker has been struck off after she failed to make regular visits to offenders with mental health problems .\naustralian prime minister tony abbott has come under pressure to do more to help refugees .\ndavid mundell has been reappointed as scottish secretary in the new conservative cabinet .\nbritish number one johanna konta has made it through to the last four of the wimbledon championships .\na detailed survey of one of the world 's tallest stone obelisks is being carried out to help repair it .\nglaxosmithkline has agreed to buy bristol-myers squibb 's hiv drugs business for $ 625m -lrb- # 431m -rrb- .\nsouth korea says it has stopped paying wages to north korean workers at a joint industrial park in the north .\nefe ambrose scored twice as colchester united came from behind to beat bradford city .\na major study to try to prevent type-1 diabetes in children is due to start in scotland .\nseven people have been charged after a protest at heathrow airport .\nthe new series of geordie shore will see nathan massey and chloe jasmine come out as bisexual .\na cyclist who sexually assaulted a woman in bournemouth could be linked to two similar attacks , police have said .\ntata steel has agreed a deal to sell its loss-making scunthorpe steelworks .\na galapagos tortoise believed to be the oldest in the world has died at the age of 89 .\npolice have said a gun used in a gun attack on a police car in west belfast was a high-powered weapon .\nscientists in the uk say there could be as much as a third of the world 's water underneath africa 's soil .\nthe women 's fa cup final at wembley will attract a crowd of more than 34,000 , organisers have announced .\nfour people have appeared in court charged with the murder of a man who died after being attacked at a mill .\nthe liberal democrats have suffered another by-election defeat , this time in corby in northamptonshire .\nthe mother of a terminally ill five-year-old sunderland fan has said he will lose his fight against cancer .\nthe world premiere of the new movie minions has taken place in los angeles , usa .\nwalsall have signed defender paddy leahy from scottish premiership side falkirk on a two-year deal .\nengland lost 10 wickets in a remarkable final session to lose the second test against bangladesh in dhaka .\ndeputy prime minister nick clegg has launched the liberal democrats ' carer 's package in cardiff .\na mother killed her two young sons before taking her own life , an inquest has heard .\nscunthorpe 's league one play-off hopes suffered a blow with a 3-2 defeat at rochdale .\ncouncillors in glasgow have approved plans to build more than 1,000 new homes in the govanhill area of the city .\ntyson fury 's world heavyweight title rematch with wladimir klitschko will go ahead in manchester on 9 november .\na pilot has died in a light aircraft crash in stoke-on-trent , police have said .\nthe us has condemned north korea 's announcement that it has restarted operations at its main nuclear complex .\nhundreds of people have attended the funeral of robert and elaine graham who were killed in the tunisia terror attack .\nnorth korea is believed to have been behind the wannacry ransomware attack that hit the nhs in the uk in may , the bbc understands .\na new surf lagoon has been forced to close for the winter due to a `` serious failure '' , bosses have said .\nchina 's shenzhou-9 spacecraft has returned to earth with three astronauts on board , the country 's first crew to live in space .\nsix teenagers have been jailed for a spate of knifepoint robberies . police said three 15-year-olds , two 16-year-old and one 17-year-old struck 14 times in less than a month , threatening birmingham motorists with knives and a firearm .\nup to 50 jobs have been lost at a food manufacturing company in londonderry .\nchinese hackers are believed to have accessed the personal data of millions of us government workers , officials say .\na procession across the forth road bridge is to be held to mark the bridge 's 50th birthday .\nresidents in a hampshire town awoke to a `` horrible scraping noise '' caused by a wi-fi system at a football ground .\nmae ' r gwasanaethau wedi cael eu gwagio rhag ofn gan fod mwg trwchus o gwmpas yn yr ardal .\nthe creator of tv 's thunderbirds , gerry anderson , has revealed he has been diagnosed with alzheimer 's disease .\npeople should take vitamin d supplements if they have low levels in the blood , experts say .\nair strikes on rebel-held areas of the syrian city of aleppo have left `` life in the city paralysed '' , a rebel leader says .\nnewport gwent dragons flanker matthew pewtner has been forced to retire from rugby .\ngerman prosecutors say they have arrested a man suspected of spying for the us .\njohn mcguinness is one of the world 's fastest motorcyclists .\ngianfranco zola 's first game in charge of birmingham city ended in a draw at 10-man barnsley .\nthe high court ruling that parliament must vote on the triggering of brexit is `` unacceptable '' , a cabinet minister has said .\nukip leadership candidate raheem kassam has launched his campaign , saying the party needs a `` ceo '' .\nqueen 's university in belfast is to cut more than 1,000 student places over the next three years .\nleague one side bury have appointed kilmarnock boss lee clark as their new manager .\n`` vegetable oil has become the food of the future , '' says prof david benton .\nworcester warriors must get used to playing on a 4g pitch , says head coach carl hogg .\na man who had sex with a 12-year-old girl has been jailed .\na sex offender who was due to be released from prison has been deported back to romania .\nlinfield edged out glenavon 4-3 in a thrilling irish premiership game at windsor park .\nkarrueche tran has hinted that she 's split from chris brown after four years together .\nheavy rain has caused flooding across parts of warwickshire .\neritrea 's government says a un report accusing it of crimes against humanity is `` totally unfounded '' .\nfive men have been jailed for a `` brutal '' attack on a university lecturer in his home .\na vapouriser used in the harry potter film franchise has exploded on a train at a florida theme park , injuring a seven-year-old girl .\nthe us commander of nato forces in europe , gen philip breedlove , has warned that russia 's military build-up in ukraine is `` dangerous '' .\ncanadian hockey legend gordie howe has died at the age of 96 .\nengland produced one of the greatest victories in their history to beat world champions new zealand in the third test .\nreal madrid extended their lead at the top of la liga to seven points with a routine win over 10-man real sociedad .\nleicester 's winless start to the premier league season continued as they were beaten at bournemouth .\na man who was found dead in the menai strait had been visited by a police officer at a hospital , an inquest has heard .\nlyon 's champions league quarter-final first leg against besiktas was abandoned because of crowd trouble .\na car has crashed into the front of a pub in wiltshire .\na man has been arrested on suspicion of attempted murder after his partner was seriously injured at a house in gwynedd .\nif you like your politics spiced up with a dash of eccentricity , then this is the election for you .\nbristol city ended a run of three championship games without a win by beating ipswich town .\nin the middle of the driest desert in the world , a small community is using fog catchers to capture the tiny droplets of water in the clouds which form here .\ngoogle home is to go on sale in the uk next week .\nmae ' r democratiaid rhyddfrydol wedi addo yn ymgyrch yr etholiad cyffredinol eleni y bydden nhw 'n cynnal ail refferendwm ar ddiwedd y trafodaethau brexit .\na campaign to fund lawyers to pursue legal action against tony blair and other senior figures over the iraq war has raised more than # 1m .\nour duke won the jnwine.com champion chase at down royal for trainer jessica harrington .\nmps have backed the government 's bill paving the way for the uk to leave the european union .\na new species of thrush has been discovered in the himalayan forests of arunachal pradesh in india .\na fight involving up to 30 aston villa and leicester city fans during the premier league match at villa park has been cleared .\nus president donald trump has nominated neil gorsuch , a federal appeals court judge in denver , to the supreme court .\na woman has been found dead hours after she was arrested on suspicion of assaulting a man .\na 34-year-old man has been arrested on suspicion of murdering a man who was shot dead in west belfast on thursday .\ngiannelli imbula 's loan spell at stoke city is set to end at the end of the season , manager mark hughes has confirmed to bbc sport .\nformer world champion stephen hendry was knocked out in the first round of the northern ireland open as he was beaten 4-0 by england 's paul lines .\na man has been shot in the leg at a house in west belfast .\nthe jury in the trial of a man accused of raping a man in a glasgow park has been discharged .\na # 3m centre has been set up in rhondda cynon taff to try to cut the cost of treating wounds .\nrussell knox and paul casey share the clubhouse lead at the travelers championship after the second round at tpc river highlands .\nleonid slutsky has resigned as russia coach after his side were knocked out of euro 2016 .\nchancellor george osborne has dropped his target of a budget surplus by 2020 .\na whale has been spotted in belfast harbour .\nglasgow city council has said the right to peaceful assembly and freedom of expression must not be infringed by a sectarian song at an orange order parade .\nhundreds of rugby league fans have attended the funeral of rhys jones , who died during a match .\na man has been jailed for life for the `` vile '' murder of an 86-year-old woman at her home in norwich .\nravel morrison has completed his move from manchester united to west ham united for an undisclosed fee .\nfrench police have begun clearing a camp used by migrants in the port city of calais .\na romanian hacker has been sentenced to five years in prison in the us for hacking into the email accounts of high-profile politicians .\nthe death toll from spain 's deportations to nazi concentration camps during world war two has risen to more than 77,000 .\ned sheeran has taken to the track for the first time to test drive for top gear .\none of france 's best-known rock stars has returned to the stage , seven years after he was jailed for the murder of his lover .\nthe scottish football association says it is in talks with the scotland women 's players over terms and conditions .\nnewport county manager graham westley says he is still looking to strengthen his squad .\nthe cuban government has apologised after a state-owned company unveiled two colognes named after revolutionary leaders ernesto `` che '' guevara and hugo chavez .\nandre gray 's first-half penalty was enough for championship leaders burnley to beat lancashire rivals blackburn .\nthe idea of scrapping free lunches for infant pupils in england 's primary schools is a bold one .\nwork permits could be introduced to limit the number of eu migrants entering the uk , a report from a think tank suggests .\nthe confederation of african football -lrb- caf -rrb- has cleared morocco and tunisia to play in next year 's africa cup of nations .\namerican phil mickelson shot a two-under-par 70 to take a one-shot lead into the final round of the open championship at royal troon on saturday .\nleeds united have signed striker pontus antonsson from norwegian side kalmar on a three-year deal for an undisclosed fee .\nnorthamptonshire seamer michael buck took 5-35 as durham were bowled out for 138 on day one at chester-le-street .\npolice officers are to be issued with tasers at scotland 's railway stations .\nazhar ali hit 63 as pakistan were bowled out for 287 on a rain-affected first day of the second test against australia in melbourne .\nthe us economy grew at a slower pace than expected in the final three months of last year , according to the us department of commerce .\nthe number of women who have been diagnosed with asbestos-related cancer is on the rise , a charity has claimed .\nengland 's paul casey has withdrawn from the open championship at royal birkdale after a nightmare second round .\nus researchers have developed pressure-sensitive `` skins '' that could be used to make robots and aid surgery .\nmalaysia 's state investment fund , 1mdb , has been at the centre of a financial scandal in the country .\na prisoner who died after being found unconscious in his cell was left alone in his cell for too long , a report has found .\nthe authorities in the german city of hamburg have passed a law requiring owners of empty commercial properties to provide accommodation for asylum seekers .\nauthor harper lee has been cleared of any wrongdoing after an investigation into her decision to publish a new book .\nthe daily and sunday politics are on-air seven days a week for much of the year reporting the political news from westminster and beyond .\npatient safety will be `` compromised '' by problems with the nhs 111 phone line , a health watchdog has warned .\nformer texas governor rick perry has been left out of the main debate for republican presidential hopefuls .\na woman accused of encouraging her boyfriend to kill himself sent him text messages urging him to take his own life , a court has heard .\na 20-year-old man has been stabbed in the arms in a park in oxford .\na loyalist hall in county antrim has been vandalised .\nthe oculus rift has been launched in the uk .\nthe world chainsaw carving championships are to be held in the scottish highlands for the first time in 20 years .\nthe last woolly mammoths lived on a tiny island in the arctic ocean .\ncia director john brennan 's private email account has been hacked , according to us media .\npolice in the us state of utah say they have arrested a mother who left her five-year-old and two-year-old children in a car boot .\nbritish actress keira knightley has married klaxons singer james righton in a small ceremony in southern france .\ngreat britain 's greg rutherford has qualified for saturday 's long jump final at the world championships in beijing .\nbreaking bad is to be shown on uk tv for the first time .\na plaid cymru mp is to introduce a `` rape shield law '' to stop alleged rape victims being humiliated in court .\nthousands of christmas cards have been sent to a five-year-old boy with a rare form of cancer who has only weeks to live .\na man with paranoid schizophrenia who stabbed a healthcare assistant to death at a mental health unit has been jailed for life .\ntrainer marcus ackerman 's 18-month ban for match-fixing has been reinstated after his appeal against the penalty was dismissed .\nplans to cut some crosscountry train services between edinburgh and north east scotland have been scrapped .\ntributes have been paid to teenage football referee joel richards , who was killed in the tunisia terror attack .\nworld number one ding junhui was knocked out of the uk championship in the first round by qualifier ryan duffy .\nnearly 4,000 nhs staff in the uk earn more than # 150,000 a year , according to analysis by the daily mail and the daily telegraph .\nit 's been a tough week for scottish rugby .\nuniversity staff are to stage a 24-hour strike on thursday in a dispute over pay , three unions have announced .\nleigh centurions head coach paul rowley has resigned from the championship club .\na cyclist has been killed in a crash on the a90 in dumfries and galloway , police have said .\na new divorce form has been criticised for asking people to name the person they adultery with .\na sinn féin mla has agreed to issue an apology and pay damages to a former ulster defence regiment -lrb- udr -rrb- soldier over a tweet .\nlabour 's general election defeat was `` at least as bad as under michael foot 's leadership '' , former shadow welsh secretary david howells has said .\nandy murray 's father-in-law nigel sears has been suspended by the international tennis federation -lrb- itf -rrb- for six weeks .\nan `` incredible hole '' has been left in the family of a police officer who died after being hit by a car in swansea .\ntottenham manager mauricio pochettino says defender jan vertonghen will miss saturday 's premier league game against manchester city .\nthe world 's largest muslim-majority country , indonesia has more than 250 million people and is the world 's third largest economy .\nthe belfast giants moved level on points with elite league leaders cardiff devils after beating braehead clan 5-1 at the sse arena on monday .\na woman has been charged with attempted murder after a stabbing in north tyneside .\nformer birmingham city boss steve bruce would be a good fit for aston villa , says former blues midfielder robbie savage .\ndutch justice minister ivo opstelten and justice minister ard van teeven have resigned after a row over a payment to a convicted drug trafficker .\nthe home office has apologised for a `` regrettable typographical error '' in a press release announcing new rules requiring migrants to speak english .\ncarry on and eastenders actress barbara windsor has died after a short illness .\nwhat do you do if you 're sick with the flu ?\nthe case of sian blake and her two young sons is to be investigated by the independent police complaints commission -lrb- ipcc -rrb- .\nhearts have signed former manchester united left-back richard eckersley on a one-year contract .\na charity has called for more support for deaf people looking for work in wales .\na world war two bomblet has been found on a beach in fife .\nthe so-called islamic state -lrb- is -rrb- has launched a propaganda channel on telegram , the encrypted messaging app owned by russia 's durov brothers .\nit 's a common refrain among film-makers these days that they want to make `` straight '' versions of classic fairytales .\nus president barack obama will be the first sitting president to visit cuba in 60 years .\na 25-year-old man has been charged with attempted murder after a toddler was hit by a car in rhondda cynon taff .\na woman has been found guilty of sexually abusing five children in the 1990s .\na man who murdered schoolgirl paige doherty has had his life sentence reduced by the court of appeal in edinburgh .\naaron ramsey scored on his return from injury as arsenal beat norwich to secure fourth place in the premier league .\nthe boss of twitter has said he 's worried the social media site could be `` driving users away '' .\nthe welsh government has expressed concern over the bbc 's plans to cut 27 jobs .\nthe first memory that sticks in the mind of a cyclist who crashed at the rio olympics is of her wheel coming off her bike and into a ditch .\nthe met office has issued a yellow `` be aware '' warning for high winds across scotland .\neight pilot whales have died after stranding themselves on rocks on the aberdeenshire coast .\nmae cynllunio amlinellol wedi ei gymeradwyo i ddatblygu ardal i ' r gogledd a ' r de o ffordd ystumllwynarth .\na person has died following a fire at a retirement home in fife .\nnigeria 's former national security adviser , sam dasuki , has been arrested over an alleged $ 8bn -lrb- # 5.4 bn -rrb- arms deal .\ncoffee giant starbucks has reported a rise in profits for the fourth consecutive year .\nross county boss jim mcintyre is among four managers nominated for the scottish manager of the year award .\nbrian matthew was the voice of pop music on radio and television for more than six decades .\nforeign secretary philip hammond has said he welcomes indications that israeli forces may begin to withdraw from gaza within the `` next few days '' .\nengland batsman james vince says playing in the world twenty20 in india will be `` ideal '' for his international future .\nmohamed toure and his friends are enjoying life again in timbuktu .\na former head teacher of england 's top schools has called for china 's state schools to learn from england 's methods .\ncecil the lion 's head is being held by police in zimbabwe and could be put on display as a memorial , a conservationist has told the bbc .\nthe un security council has voted to send a police force to burundi to help deal with escalating violence .\nthe chief executive and chief financial officer of alliance trust are to step down as part of a major shake-up of the company .\nboris johnson has been accused of `` forced into a dead end '' by his decision to call off a visit to moscow .\nbraintree town manager danny cowley says his side are `` living in cloud cuckoo land '' after losing 2-0 at barrow .\nrussia has dismissed claims it meddled in the us election as a `` witch-hunt '' .\na secondary school in oxfordshire could close after inspectors found it was failing pupils .\nan 86-year-old woman has been seriously assaulted in her home by a man who forced his way in .\ndavid cameron is to host an anti-corruption summit in london .\ntwo treasure hunters who claim to have found a nazi train buried in poland say they will not back down in their search .\ntesco has agreed to sell its us grocery chain fresh & easy to private equity firm yucaipa .\nipswich town have signed defender emyr huws on a three-and-a-half-year deal and reading striker dominic samuel on loan until the end of the season .\nkatie ledecky won her second gold medal of the rio olympics as the united states won the women 's 4x200m freestyle relay .\na new group has been set up to tackle tuberculosis -lrb- tb -rrb- in cheshire .\ngreat britain won four more rowing gold medals on day six of the 2016 paralympic games in rio .\nrescue teams searching for a scottish botanist missing in vietnam have been hampered by heavy snow .\njessica ennis-hill 's coach toni minichiello says the british heptathlon champion `` clearly wo n't do another olympic games in 2020 . ''\nmore than 7,000 people have been affected by a cholera outbreak in haiti , the health ministry has warned .\nthe european council president 's response to the prime minister 's letter triggering article 50 is a reminder that the brexit process is far from over .\npreston north end manager simon grayson says he is hopeful that defender bailey wright will sign a new contract .\na church in west yorkshire has appointed a new vicar after a recruitment video written by children went viral .\na man beat his wife to death before dousing her body in white spirit and setting it on fire , a court has heard .\nthe company running the nhs 111 non-emergency telephone service in england has said it is pulling out of nine more areas .\nthe uk 's three brexit ministers are embarking on a series of overseas visits to discuss trade ahead of the uk 's departure from the eu .\nnigeria 's president muhammadu buhari has warned that the `` days of impunity '' in the country are over .\nthe election campaign has become a tightly controlled affair .\ninstitute football club 's drumahoe ground has been flooded for the second time in a week .\na baby who died of sepsis would have survived if he had been taken to hospital sooner , an inquest has heard .\npolice in hong kong are investigating a report of a mid-air theft on a flight from dubai .\none of the chibok schoolgirls kidnapped in nigeria has been found in the north-eastern town of sambisa forest .\npreston north end have signed former morecambe midfielder louis barkhuizen on a pre-contract .\ncritics have praised a new exhibition of henri matisse 's cut-out artworks at the tate modern .\na vintage steam train has arrived in kent for the first time in more than a century .\ntake a look at this amazing view of london from the top of the gherkin .\nthe uk 's industrial and construction output fell in february , official figures have shown .\nnigeria coach stephen keshi has appeared before the country 's football federation -lrb- nff -rrb- disciplinary committee to answer charges of misconduct .\nfans celebrating a touchdown during sunday 's super bowl in seattle registered seismic activity in the area , according to experts .\nhuman rights workers in the democratic republic of congo have begun digging up a field in the capital , kinshasa , where they say more than 200 bodies have been dumped .\na us federal judge has ruled that the us women 's national football team can not go on strike .\nst johnstone striker steven maclean has signed a new one-year contract with the perth club .\npolice have surrounded the offices of the nigeria football federation -lrb- nff -rrb- in abuja .\nscotland 's only labour mp has told a church service the party can no longer turn to the `` big beasts '' of scottish politics .\nhead teachers have criticised chancellor philip hammond for not using the autumn statement to address `` severe funding pressures '' in schools in england .\nmore than 1,500 taxi drivers with criminal convictions have been issued licences in scotland in the past five years .\nchris riddell has stepped down as children 's laureate after two years in the role .\na three-year-old girl who was injured when a man set fire to a train in switzerland has died in hospital , police say .\nplans to cut school bus subsidies in hampshire have been shelved by the county council .\nthe us supreme court has heard arguments in a case involving religious groups that object to a requirement to provide contraception in health plans .\na detroit-area woman has been charged with assault with a deadly weapon for shooting at the tyres of a getaway car .\nuk researchers have developed fingerprint-sized chips that could be used to verify the authenticity of electronic goods .\na school textbook in india has been criticised for describing non-vegetarians as `` dishonest and violent '' .\nengland all-rounder moeen ali says he will have to improve if he is to win back his place in the test side .\noil prices have fallen to their lowest level in more than three years .\na los angeles hospital has paid a $ 17,000 -lrb- # 11,000 -rrb- ransom to hackers who had ransomware on its computers .\nthis is england director shane meadows is to make a sequel to his channel 4 drama this is england ' 86 .\nthree primary school cleaners who went on strike in a row over pay have been sacked .\nturkey has summoned the russian ambassador to protest against what it says was a russian violation of its airspace .\nthe chief constable of avon and somerset police is to return to work .\nengland produced a stunning bowling and batting display to take a firm grip on the first test against australia at lord 's .\nbolton wanderers defender dorian dervite has signed a new two-year contract with the championship club .\nthe flandreau santee sioux tribe in the us state of south carolina has cancelled plans to grow and sell marijuana on tribal land .\nstriker britt assombalonga has signed a new four-year contract with nottingham forest .\nsurrey skittled nottinghamshire for 187 to secure a crushing innings-and-209-run victory .\nswansea city have held talks with paul clement and gary rowett about the vacant manager 's job .\nthe owner of a fashion store named after the islamic state militant group has said she is considering changing its name because of the controversy .\nthe death of a woman who was refused admission to a hospital 's intensive care unit could have been prevented , a coroner has said .\na human rights commission in mexico says the government 's investigation into the disappearance of 43 trainee teachers in september is flawed .\ntributes have been paid to the four people who died in a rollercoaster crash at a theme park in australia on wednesday .\nengland netball 's decision to offer central contracts for the first time is a `` step in the right direction '' , according to shooter laura housby .\nmore than 100 pilot whales have died after beaching themselves in the southern indian state of tamil nadu , officials say .\nthe world 's first floating offshore wind turbines have been moved into place off the north-east coast of scotland .\nif you are a remainer , stop before you crack open the champagne .\nan app which could help people escape natural disasters is being developed by a cardiff university student in the arctic circle .\nsam allardyce has left his role as crystal palace manager by mutual consent after only 67 days in charge .\na south african appeal court has reserved its decision on whether oscar pistorius should be sent back to jail for murder .\na man has been found guilty of conspiring to defraud insurance companies out of hundreds of thousands of pounds in a bus crash scam .\nit is one of the uk 's longest-running traffic problems , caused every year by strikes and migrants trying to cross the channel from calais .\ned sheeran has announced he is taking a year off from music .\nluke berry scored twice as cambridge united eased to victory over cheltenham town .\nscotland claimed their second win of the six nations with a hard-fought victory over ireland at murrayfield .\nhundreds of jobs could be lost at a helicopter manufacturer after its italian supplier said it plans to move production out of the uk .\namnesty international has called for an end to the use of special powers by india 's security forces in indian-administered kashmir .\nthe family of an 11-year-old boy who took his own life after being suspended from school say they have been told a police sergeant spoke to a school manager in january .\nthe venezuelan military says it has shot down two suspected drug planes over the weekend .\nfire crews have issued a safety warning after two hoverboards caught fire in london this month .\na us congressman from philadelphia , chaka fattah , has been found guilty of misusing hundreds of thousands of dollars in campaign funds .\na guantanamo bay detainee has been sentenced to life in prison in the us for his role in the 1998 embassy bombings in africa .\nthe us state of hawaii has filed a fresh legal challenge to president donald trump 's second travel ban .\ncafodd ei saethu gyda gwn taser gan yr heddlu a bu farw 'n ddiweddarach yng nghymru yn 2014 .\nif you 're a fan of celebrity fragrances , it 's probably a good idea to ask why they smell so good .\nireland 's shane lowry holds a one-shot lead after a third-round 69 at the us pga championship in pennsylvania .\nthe family of a british woman who was found dead at an istanbul airport last year believe she acted alone .\nwales captain joe ledley says the players want manager chris coleman to stay on .\nfleetwood ended a run of three straight league one defeats with a comfortable win at scunthorpe .\nfour men have appeared in court charged with terrorism offences linked to an alleged plot to set up an islamic caliphate in iraq .\na man police want to speak to in connection with a fatal stabbing in dumfries has been traced .\nthe mother of a teenager who died in a car crash in the highlands has paid tribute to her `` beautiful daughter '' .\nnicola sturgeon has said she will reveal the results of her party 's independence survey later .\nnico rosberg was fastest in second practice at the singapore grand prix as title rival lewis hamilton struggled with his mercedes .\nnew rules have come into force on the way broadband providers advertise their services .\nmore than 100 cars have been vandalised in an `` appalling '' spate of attacks in the north of edinburgh .\nif you were mis-sold payment protection insurance -lrb- ppi -rrb- by a high street bank then you may have received different compensation offers from different credit card providers .\nhull fc half-back marc sneyd has signed a new three-year contract with the super league club .\nnigeria defender kenneth omeruo has joined turkish side kasimpasa on a season-long loan from premier league side chelsea .\ngambia 's former president yahya jammeh has been accused of stealing more than $ 1bn -lrb- # 700m -rrb- from the country .\nauthor simon solomons has won the waterstones children 's book prize for his first novel .\ntens of thousands of people have taken part in protests in cities across the world against us president donald trump .\nthe british and irish lions squad for the tour of new zealand has been announced , with the following players included in the 31-man squad :\na # 250m fund to encourage councils in england to return to weekly bin collections has been launched .\na gang which dealt `` industrial quantities '' of heroin across south wales has been jailed .\na school named after the so-called islamic state -lrb- is -rrb- group has changed its name .\nmeet the man who wants to break the world record for the fastest electric trolley !\nunited states goalkeeper hope solo has been suspended for two matches after being involved in a disturbance with her husband .\nhull fc will face leeds rhinos in the semi-finals of the challenge cup .\nactor rufus hall is to pay tribute to david bowie at this year 's mercury music prize ceremony .\nthe south pacific nation of vanuatu has been hit by one of the most powerful cyclones ever recorded .\ngoogle has shut down its internet-providing drone project , titan aerospace .\na woman has died following a crash on the a75 near dalwhinnie in dumfries and galloway .\na public inquiry into plans for a new circuit of wales in blaenau gwent has ended .\ndeutsche bank has reported a sharp fall in profits for the first half of the year .\nnewport county suffered a surprise 2-0 defeat away at barry town in their final pre-season friendly .\n`` mum , i want to be a video game developer . ''\nrangers eased past 10-man queen of the south at palmerston to reach the scottish league cup quarter-finals .\nthe conservatives , the liberal democrats and labour say they will clamp down on tax avoidance and evasion .\na primary school teacher from neath port talbot has been removed from a school trip to the united states .\na report into the casement park football stadium project has recommended the use of an independent mediator to resolve issues .\nit is easy to get caught out on the internet .\nturkey 's prime minister has said his country will not launch a ground offensive against islamic state -lrb- is -rrb- militants in syria .\nthe town of tomatina in mexico is celebrating its 70th annual tomato festival .\nplans to turn a victorian bank building in cardiff city centre into flats have been approved .\nwhen west ham united play their final home game at the boleyn ground on saturday , it will be the end of an era .\noscar-winning actor jim broadbent is to star as the detective who led the investigation into the great train robbery .\nolly murs and caroline flack are to co-host the x factor when it returns to itv this year .\nderek mcinnes insists aberdeen can still secure second place in the premiership despite losing 3-0 to rangers .\nwales midfielder aaron ramsey says his team-mates are targeting a place in the last 16 of euro 2016 .\nbradford city have signed mk dons midfielder sam baldock for an undisclosed fee on a two-year deal .\na section of a cliff in bournemouth has collapsed following heavy rain and strong winds .\nthe bbc 's crimewatch programme has been following the work of the metropolitan police 's department of professional standards , which investigates allegations against officers and staff .\nwales air ambulance is to trial a new service which will see incubators fitted to its helicopters .\nthe world 's largest ice sculpture festival is taking place in the austrian capital , vienna , this weekend .\nleinster came from behind to beat glasgow in the pro12 opener at the rds .\npolice are investigating the death of a 72-year-old man in saltcoats .\nthe number of scottish businesses going into administration has continued to fall , according to figures from accountants kpmg .\ncardiff blues moved up to third in the pro12 with a bonus-point win over pau in france .\nthree members of staff at a special school have been arrested after a pupil was seriously injured in a swimming pool .\nnational league side braintree town have signed former wigan athletic midfielder joe morgan-smith on a deal until the end of the season .\nmore than 200 traders in edinburgh have been found to be breaking the rules on waste collection .\nthe head of india 's censor board has resigned over the clearance of a film by a controversial religious leader .\nleague two side leyton orient have appointed martin porter as their new chairman .\nindia is one of the world 's largest producers of dairy products , and its milk is used to make everything from biscuits to yoghurt .\na body has been found by police searching for a man who went missing in the river severn .\nthe royal bank of scotland -lrb- rbs -rrb- has been fined a record hk$ 110m -lrb- $ 13m ; # 9m -rrb- by hong kong regulators for failing to properly monitor its traders .\nhawaii 's kilauea volcano has been spewing lava into the air for the last few weeks .\nitaly 's matteo trentin won stage four of the vuelta a espana as britain 's chris froome retained the overall lead .\nee has been rated the best mobile network in the uk for the second year running in a study .\npatrick reed says he wants `` sweet revenge '' after winning the pga championship to secure a place on the united states ryder cup team at hazeltine .\nburma 's opposition leader aung san suu kyi is to be honoured at this year 's brighton festival .\na military plane has crashed in south-eastern colombia , killing all 21 people on board .\na man has been cleared of stealing a cat from its owner 's kent home .\nthe israeli government has warned its citizens against travelling to india because of a terror threat .\na man who was sexually abused as a child has said he hopes the scottish abuse inquiry will make progress .\nuk retail sales volumes fell for the second month in a row in may , according to official figures .\nfacebook has announced a range of new features for its messenger app .\nwhen i was in my early 20s , a friend offered to be my fake girlfriend .\nhave you ever wondered what it would be like to work for facebook and live next to the company 's headquarters ?\nharry potter and the cursed child screenwriter jack thorne is to write a tv adaptation of edgar dick 's electric dreams .\nbournemouth have signed midfielder andrew surman on a season-long loan from norwich city .\ncosta rica 's turrialba volcano has erupted for the first time in six years , spewing a column of ash as high as 2km -lrb- 1.2 miles -rrb- .\nhome secretary theresa may has told the house of commons the hillsborough disaster `` shocked this country '' .\nowen farrell inspired saracens to a bonus-point win over oyonnax in the champions cup .\npolice investigating the disappearance of leicestershire teenager kayleigh haywood have said they believe she has been murdered .\nexeter chiefs scrum-half kurtley chudley will miss the rest of the season with a chest injury .\na teenager accused of plotting to kill labour mp jo cox has told a court he `` probably did agree '' with the man who murdered her .\nthe northern ireland economy grew in the second quarter of the year , official figures have shown .\nnico rosberg set the fastest time in the morning session at the second formula 1 pre-season test in barcelona .\nequiniti has developed a cloud-based time and attendance system for the her majesty 's passport office in london .\nturkey has accused the us of trying to interfere in its military operations in northern syria .\nthe parents of a teenage girl who died in a boating accident have launched a safety campaign in her memory .\nthe bbc spotlight opinion poll on the potential outcome of a border poll for northern ireland has been published .\neach day we feature a photograph sent in from across england .\npolice in the southern indian city of bangalore have clashed with protesters demanding the arrest of a french envoy accused of raping his young daughter .\nscientists have discovered a hotspot at the top of jupiter 's atmosphere .\nthe fa cup is one of the most prestigious domestic cups in the world , and this year 's qualifying rounds are no exception .\nthe jury in the retrial of footballer ched evans on rape charges has retired to consider its verdict .\ntwo men have been jailed at belfast crown court for their part in a multi-million pound drugs operation .\nus cable giant charter has agreed to buy time warner cable -lrb- twc -rrb- in a deal valued at $ 78.7 bn -lrb- # 55.4 bn -rrb- .\ntributes have been paid to a prison officer who has died in hospital after being injured in a bomb attack last week .\nrussia and the us are guarantors of ukraine 's sovereignty , president vladimir putin 's chief of staff has said .\na bangladesh war crimes tribunal has sentenced an opposition leader to death for atrocities committed during the 1971 war of independence from pakistan .\nabercrombie & fitch has been criticised for tweeting a picture of a young woman dressed as a drag queen .\nfeatherstone rovers ' jack pick and st helens ' john bateman have been banned for two years after testing positive for banned anabolic steroids .\nvoting is now open for the bbc sports personality of the year award .\nimagine being unable to use the toilet because there is not a bench or hoist to help you to change .\nengland beat west indies by seven wickets in the fifth one-day international to win the series 3-2 .\na man has been charged with attempted murder after a man was hit by a train .\nthe bodies of three british journalists who were kidnapped in libya last year have been found .\na nigerian man has been sentenced to life in prison in the us for trying to blow up a flight from amsterdam to detroit in 2009 .\nthe founder of the greggs bakery chain sexually abused young boys , a court has heard .\npeople living with a rare disease in northern ireland have formed a new partnership .\na brothel madam at the centre of allegations against sir edward heath says she had `` no involvement '' with him .\neight men have been charged with causing the deaths of four people in a crash in west yorkshire .\na man from bristol has broken the world record for the heaviest pumpkin grown on a commercial farm .\na woman who died in a two-car crash in the scottish borders has been named .\na music teacher raped a student at a manchester school , a court has heard .\nprejudice-based bullying is `` on the increase '' in scotland , according to a report by msps .\nportsmouth boosted their league two play-off hopes with victory at afc wimbledon .\nabout 20 homes in wrexham have been flooded after heavy rain caused rivers to burst their banks .\nthe wimbledon championships are one of the biggest tennis tournaments in the world .\nburnley midfielder joey barton 's 18-month football association ban for breaking betting rules has been extended by a year .\nthe killers frontman brandon flowers talks about his new solo album , the desired effect .\nrail passengers are being advised to check their travel plans ahead of major improvements to the bristol to london line .\nbritain 's kyle edmund was beaten in three sets by fourth seed stan wawrinka in the quarter-finals of the japan open .\nthe us director of national intelligence has declined to say whether the trump administration asked him to stop the fbi 's russia investigation .\na legal challenge to a # 130m anglesey wind farm project has been dismissed by the high court .\ndublin retained their all-ireland football title as they edged out mayo by a point at croke park .\na committee set up to choose the winner of the mo ibrahim prize for african leadership has announced that no candidates have been shortlisted .\nisraeli prime minister benjamin netanyahu has condemned remarks by the country 's deputy chief of staff that appeared to equate anti-arab sentiment with nazi sympathisers .\na learner driver was stopped by police in south-west london for driving a maserati with no insurance .\nengineers have stepped in to help restore a key part of a world war two code-breaking machine .\nmore than 20 cadets at the us military academy at west point suffered injuries during an annual pillow fight .\nsecurity experts have raised concerns about a new way of signing on to a tablet or computer .\nthe family of a man who lost two teeth after being punched in the face at a bristol mental health hospital say they have been let down by the authorities .\npolice in the indian capital , delhi , have charged an uber taxi driver with the rape of a female passenger last week .\nghana 's government has scrapped a scheme that required nurses to agree to work abroad for five years .\nworld number one dustin johnson says he is in `` good shape '' after returning to action at the rbc heritage in north carolina .\na children 's television show has been blamed for the failure of two of its characters to turn on a city 's christmas lights .\nmark selby and marco fu are locked at 4-4 after the first session of their world championship semi-final at the crucible theatre .\na councillor has been told she faces legal action over her involvement in tree felling protests in sheffield .\naston villa 's takeover by chinese businessman dr tony xia has been completed .\na teenager who was stabbed to death in a north london park has been named by police as daniel appleton .\nin the wake of the arab spring , there has been much talk of the `` market for revolution '' .\nleague one side peterborough united have extended the loan spell of sheffield wednesday defender luke young until the end of the season .\nwarrenpoint town have said they are `` shocked '' by the irish premiership 's decision not to punish carrick rangers .\ntorquay united have signed goalkeeper rob lawless on a deal until the end of the season .\npolice officers at the download festival have been taking selfies with revellers .\nwhat is the strength of the uk 's banking system ?\nthe world is poised to phase out one of the fastest-growing greenhouse gases in the atmosphere .\nthe uk unemployment rate has fallen to its lowest level in more than a decade , official figures show .\npep guardiola can `` do a big revolution '' at manchester city , according to former barcelona midfielder xavi hernandez .\nnotts county have signed midfielder jack yates on a season-long loan from nottingham forest .\na man has been found guilty of stabbing a drug dealer to death in a revenge attack following the death of a friend in north lanarkshire .\nthe tiny himalayan kingdom of bhutan is one of the world 's last remaining absolute monarchy-led countries .\nthe brother of a man who died after being trampled by cows has called for more safety measures in public spaces .\naldershot town have appointed gary waddock as their new manager .\npeople do not understand `` hard and soft brexit '' , a leading leave campaigner has said .\nthe row between apple and the fbi over access to the iphone used by san bernardino gunman syed rizwan farook is the latest chapter in the history of encryption .\na woman who died after suffering a psychotic episode following the birth of her daughter was not unlawfully killed , a coroner has ruled .\nis there a plot to stage a coup against jeremy corbyn ?\niain henderson and tommy bowe could return for ulster against zebre in the pro12 on friday .\ntwo men have been injured after being assaulted by three men at a house in edinburgh .\na male bald eagle has returned to a perthshire nest for the first time in three years .\nstrictly come dancing winner aliona vilani has announced she 's retiring from the show .\nthe number of children being put forward for adoption in england has halved in the last year , figures show .\nchina beat japan to win the men 's team table tennis gold medal in rio .\nyou do n't have to be a billionaire to own a comedy club .\na deal that allowed european matches to be played on the same night as domestic fixtures has ended .\nfor decades , crocodile farmers in australia have been collecting eggs from crocodiles ' nests .\nthree women who had relationships with undercover police officers have been giving evidence to mps .\nbeth mead has signed a new contract with women 's super league one side sunderland ladies .\nmore than a third of journeys on one of the uk 's most vulnerable railway lines could be disrupted by flooding by 2040 , a study has warned .\nus president donald trump has been accused of cherry-picking data on the impact of the paris climate agreement during his announcement to withdraw the us from the deal .\nmanchester city women have accepted a football association charge for failing to provide accurate information to anti-doping authorities .\na former soldier has been found guilty of murdering a soldier in powys .\na driver has been caught doing 101mph -lrb- 163km/h -rrb- on the m1 motorway in east yorkshire .\nthousands of workers in nottingham have avoided paying a new parking charge .\nthe parents of a girl left in a coma after being hit by a bicycle have described her as `` like the tasmanian devil '' .\na man has been reunited with his suit after it was accidentally taken by a woman at a gallipoli remembrance ceremony .\nprotests have broken out in several towns in ethiopia 's oromia region , a day after a stampede at a religious festival killed at least 89 people .\nbristol city scored four first-half goals as they comfortably beat cardiff city .\njames milner scored a late penalty as liverpool came from behind to beat francesco guidolin 's swansea city side .\ntwo welsh police forces have been rated `` inadequate '' by the police watchdog .\nnine people have been arrested in connection with the collapse of a building in the indian city of mumbai -lrb- bombay -rrb- , which killed at least 80 people .\ntottenham striker harry kane is not for sale , manager mauricio pochettino has said .\nthe bbc 's reality check team answers your questions about the uk 's vote to leave the eu .\nbritain 's kyle edmund beat spain 's guillermo garcia-lopez in straight sets to reach the second round of the china open .\nedinburgh have announced plans to play home matches at myreside next season .\nwhen ukraine was hit by one of the world 's biggest cyber-attacks last month , some of the country 's biggest companies and hospitals were left without working computers .\nfrench actress jeanne lebeau , best known for her role in world war two film casablanca , has died at the age of 94 .\nceltic manager ronny deila admitted his team looked `` frightened and scared '' as they were knocked out of the champions league by malmo .\nalloa athletic have appointed jack ross as their new head coach following the departure of paul hartley .\nthe former head of the independent monitoring commission -lrb- imc -rrb- , lord alderdice , has said it would be unwise to re-establish the body .\nmacclesfield maintained their unbeaten start to the national league season with a narrow win at eastleigh .\nmore than # 3bn worth of child maintenance debts are not being recovered by the government , the bbc has learned .\nlebron james has become the first player in nba history to score 10,000 points in a season .\na china eastern airlines flight made an emergency landing on sunday night after a large hole appeared in an engine .\npatrick roberts is determined to make the most of his time at celtic and return to manchester city in the summer .\ntwo 13-year-old boys have been sentenced to 10 years in prison for the rape and murder of a 12-year-old girl in indonesia .\nus president barack obama has called on kenya to do more to tackle corruption , on the second day of his trip to africa .\nhundreds of people have attended a memorial for a teenage free-runner who died after falling from a rooftop in paris .\nkenyans are going to the polls to vote in a general election , five years after violence marred the last vote .\nindian restaurant owners in scotland have warned that new immigration rules are putting their businesses at risk .\n`` there are few angels in this crisis . ''\nscotland 's paul lawrie says he will have surgery on his foot this winter and will miss the rest of the year .\neuropean union leaders are meeting in brussels to try to agree a plan to relocate 120,000 migrants across the 28-nation bloc .\nitaly has criticised northern italian regions for refusing to take in any more migrants .\na pilot and a tanker driver have been injured after a light aircraft crashed into a bungalow in lincolnshire .\nthe psni has contacted more than 100 soldiers as part of its investigation into bloody sunday .\nsierra leone has begun a three-day curfew as part of efforts to combat the deadly ebola outbreak .\nthe families of the 96 victims of the hillsborough disaster have asked the home secretary for assurances there will be criminal trials .\na man has been airlifted to hospital after being hit by a car while walking with his daughter .\nblackpool football club chairman karl oyston has won # 30,000 libel action against a fan who claimed he held a gun to his head .\na nine-year-old migrant boy from syria has told newsround he wants to come to the uk .\nulster returned to winning ways in the pro12 with a bonus-point victory over treviso at kingspan stadium in belfast .\nwork to demolish a former school and a dairy in flintshire to make way for hundreds of new homes has begun .\nthe installation of two earth observation cameras on the international space station -lrb- iss -rrb- has been completed .\nthe republic of ireland 's national asset management agency -lrb- nama -rrb- is to sell off about # 15m worth of farm loans .\nshots have been fired near a police station in the german city of stuttgart .\npolice investigating the murders of two british tourists in thailand have said there is `` no evidence '' against any other suspects .\nleague one side mk dons have signed former nottingham forest midfielder danny wilson on a one-year deal . .\na woman has told a court she felt `` dirty and ashamed '' after being sexually abused by a `` monster '' as a child .\nwales and burnley striker sam vokes has signed a new three-and-a-half-year contract with the championship club .\na third welsh labour minister has come out in support of yvette cooper in the party 's leadership race .\nthe turkish government is blocking access to the tor network across the country , activists have said .\nhuman rights watch -lrb- hrw -rrb- says it has confirmed the authenticity of photographs that appear to show thousands of people who died in government detention in syria .\nfifa has opened disciplinary proceedings against the mexico football federation -lrb- fmf -rrb- over homophobic chanting by fans .\nlabour peer lord elis-thomas has accused plaid cymru of not being willing to `` seriously participate '' in the welsh government .\nengland batsman nick compton says he is `` intense '' on and off the field .\none man has died and another is in a critical condition in hospital after an attack in birmingham .\nthe chairman of the airports commission has defended his decision not to recommend expansion at gatwick airport .\na man shot dead at a pool party in surrey has been named by police as 24-year-old carlton hunter .\nstuart bingham says he would be willing to play in the world championship if his wife gives birth before the tournament .\none of nottingham 's most famous factories has been destroyed in a huge fire .\nengland 's women beat world champions new zealand 28-14 to complete a series whitewash in wellington .\na tv producer jailed for 17 years for trying to hire a hitman to kill his partner has lodged an appeal .\nmore than half a million drivers have been caught speeding through a village in the past year , campaigners have claimed .\na suspect in the barcelona terror attack has told a court in madrid that the group had been planning a much bigger attack the day before .\nus president donald trump has scrapped the trans-pacific partnership -lrb- tpp -rrb- trade deal on his first day in the white house .\na rare painting of a 16th century welsh aristocrat has been bought by the national trust .\nluton town have released five players , but have offered new deals to goalkeeper matt king , defender luke potts and midfielder george taft .\na 40ft -lrb- 12m -rrb- whale has been spotted in the firth of forth .\nbritain 's greg rutherford won the long jump at the great north city games .\nfootage of the queen performing a nazi salute has been released by the sun newspaper .\nwhen fiji rugby union star manasa matavesi came to the uk in the 1980s , he found himself working as a tin miner in cornwall .\noxford 's a40 is set to be made a pedestrian-only road again when a shopping centre reopens next year .\nsome of the biggest names in sport have been spotted with red circles on their skin , which they say are caused by an ancient chinese treatment .\nscotland 's hopes of reaching the 2018 world cup finals suffered a major blow as they were beaten 2-0 by england at hampden .\nglaxosmithkline -lrb- gsk -rrb- has been fined more than # 50m by the competition watchdog for fixing the price of a drug .\nlewis hamilton says he will `` give it everything '' in his bid to win a fourth world title , despite trailing mercedes team-mate nico rosberg .\nchris powell says he is `` fine '' as derby county caretaker manager following nigel pearson 's suspension by the championship club .\nthe cleveland indians beat the chicago cubs 1-0 to take a 2-1 lead in the best-of-seven world series .\nthe bitcoin virtual currency has seen its value fall by more than a third in the past year .\na pablo picasso portrait of a friend has become the most expensive painting ever sold at auction in new york .\nnigel farage has joined fox news as a commentator .\nformer scottish labour leaders have hit out at johann lamont 's resignation as party leader .\na police officer delivered a baby in the back of a car after being called to help with a cannabis raid .\nedf energy is expected to give the go-ahead next week for a new nuclear power station at hinkley point .\njaguar land rover -lrb- jlr -rrb- has announced that it will create 1,000 jobs at its plant in solihull , west midlands .\nfrankie dettori won the 2000 guineas on favourite air force blue as favourite massat claimed victory for trainer hugo palmer at newmarket .\na 25-year-old man has been arrested in the republic of ireland in connection with the rape of a woman in her home .\na footballer has offered to pay for repairs after a fan punched a hole in the ceiling during a game .\na 23-year-old man has been arrested at heathrow airport on suspicion of terrorism offences .\naustralia has expelled an israeli diplomat over the use of forged australian passports in the killing of a hamas commander in dubai .\nknitters in cambridge are being asked to make bunting to mark the tour de france coming to the city .\nmae grp wedi'i sefydlu yn arberth , sir ben kingsley wedi ymgymryd cyfrifoldeb o gefnogi cartrefu ffoaduriaid yn 2016 .\none of scotland 's biggest salmon producers has reported a loss for the three months to the end of september .\nnorthern ireland 's unemployment rate is likely to continue to rise over the next two years , according to a leading accountancy firm .\naustralian rower sarah tait , who won a silver medal at the london 2012 olympics , has died at the age of 31 .\nthe mother of a teenage girl who was raped and murdered by a convicted killer has said her family 's faith in the uk 's ability to protect citizens has been `` destroyed '' .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo considers the impact of the financial crisis on the economies of iceland , cyprus and greece .\na british primary school teacher has been arrested in spain on suspicion of possessing and sharing sexually explicit images of minors .\narbroath eased to victory over montrose in scottish league two .\ntens of thousands of jordanians have taken part in a protest in the capital , amman , against a new electoral law .\na woman accused of murdering her three-month-old baby has been granted bail to remain at a mental health unit in belfast .\nthe number of councils in wales could be cut to eight in the future , the local government minister has announced .\nthousands of primary school pupils are to take part in this year 's bbc proms .\ngopro is to launch a drone next year , the company 's chief executive has said .\nan engineering firm near inverness is to create up to 100 new jobs following a # 3m investment from the scottish government .\nall photographs by stella o'neill .\ndemocratic republic of congo singer olomide has been arrested in the capital , kinshasa , over an alleged assault on a female fan in kenya .\na hospital 's accident and emergency unit is to get a park and ride service in a bid to cut traffic gridlock .\nthe common cuckoo is one of the uk 's best-known and most familiar birds .\na scheme to install solar panels on 2,000 homes in huddersfield has been given the go-ahead .\nthe day before the big bang there was a big meeting of the city of london 's top brokers , says paul haynes .\nperu 's jailed ex-president alberto fujimori has announced he will start a social media account in prison .\nlord bannside , the former first minister of northern ireland , has been speaking to the bbc about the centenary of the ulster covenant .\nnight-vision goggles are being used to catch dog owners who fail to clear up after their pets .\nscotland 's two busiest airports have both reported record passenger numbers for january .\njohn higgins beat world number one stuart bingham 10-7 to win the inaugural china open .\ntechnology giant apple has raised $ 9bn -lrb- # 5.4 bn -rrb- by selling bonds to help it return cash to shareholders .\nthe court of arbitration for sport -lrb- cas -rrb- has upheld provisional bans for six russian cross-country skiers .\nnick gubbins hit his second championship century of the season as middlesex dominated day three against somerset at taunton .\ndoctor who and guardians of the galaxy star karen gillan is making her first feature film .\nbus passengers in london will no longer be able to pay for journeys with cash , transport for london -lrb- tfl -rrb- has announced .\nthe european space agency -lrb- esa -rrb- has launched galileo , its new satellite navigation system .\nvotes are being counted in the second round of colombia 's presidential election .\ncatfish and the bottlemen have gone straight to number one in the uk album chart with their latest record , the ride .\nthe taoiseach -lrb- irish prime minister -rrb- has said he expects us president barack obama to make a visit to ireland .\nthe rmt union has accused southern rail of `` targeted harassment '' on social media .\nthe conservatives have taken control of derbyshire county council .\nwidnes head coach denis betts says his side can turn their super league form around after a run of five straight defeats .\na us appeals court has upheld a ruling blocking president donald trump 's travel ban on people from seven mainly muslim countries .\npolice are hunting a man who spat at a security guard on a train .\na case of bird flu has been found at a farm in lancashire , the department for environment , food and rural affairs -lrb- defra -rrb- has confirmed .\nthe body of a politician was sent to a funeral home instead of the hospital where he died , an nhs report has found .\nrussian president vladimir putin has defended his country 's military presence in syria .\ngareth southgate has been appointed permanent england manager on a two-year contract .\nthe transatlantic trade and investment partnership -lrb- ttip -rrb- talks between the european union and the united states are under way .\na man has had to re-cut a 33,000-piece jigsaw puzzle after pieces went missing .\nsome species could be at risk from rising temperatures as a result of climate change , say scientists .\na minor league baseball team in the us state of utah has apologised for a calendar promotion called `` caucasian heritage night '' .\ntablets , smartphones and e-learning platforms are increasingly being used in africa 's classrooms .\nqueen 's park moved up to third place in scottish league two with victory .\nwales fans and politicians have paid tribute to the team 's performance at the euro 2016 tournament .\ncar manufacturer tvr is to build its new cars in ebbw vale , first minister carwyn jones has announced .\nthe first doses of an experimental ebola vaccine have arrived in liberia .\ngreat britain 's helen glover and heather stanning retained their women 's pair olympic title in rio .\nthe death toll from a fire at a nightclub in bucharest has risen to 32 , romanian officials say .\nhereford united have been expelled from the national league for failing to pay their debts .\na former royal navy diver has described the `` horrendous '' task of recovering the wreck of hms coventry from the south atlantic .\nthe family of a man who died in a car crash has launched a fundraising campaign to build a woodland centre in his memory .\nthe republic of ireland has failed to meet international human rights standards during the recession , a report has said .\nwigan athletic have sacked manager warren joyce with the club in the championship relegation zone .\na tesco 's supermarket has been damaged in an explosion .\nvolunteers are being sought to help with restoration work at a 19th century copper mine in cumbria .\nkirsty williams , leader of the welsh liberal democrats , will be the fifth leader to appear on the bbc 's ask the leader programme ahead of the assembly election on 8 may .\nengland 's world number one laura massaro beat compatriot sarah-jane waters to win the british women 's open title in manchester .\nroyal mail has released a new set of stamps to mark the 350th anniversary of the great fire of london .\na grizzly bear has killed a cyclist in montana 's glacier national park .\nmembers of the british beard club are gathering in dover to compete for the title of world 's beardliest man .\nthe governor of the bank of england , mark carney , has announced he will step down in 2018 and return to canada .\nplans to move the police and crime commissioner 's office from exeter to plymouth have been criticised by a senior officer .\nthe summer transfer window in england and scotland will close at 23:00 bst on 1 september .\na museum dedicated to the first world war has been awarded # 350,000 to mark the centenary of the conflict .\ngoogle chairman eric schmidt has said he is `` perplexed '' by the debate over corporate tax avoidance .\na new marine energy research centre at the university of ulster is to be set up with a # 20m eu grant .\na house in londonderry has been damaged in two separate arson attacks .\na man jailed for life after biting off part of a stranger 's ear in a knife attack has had his sentence quashed at the high court in london .\npolice are asking the public to help track down some of the world 's most wanted suspects in wildlife crime .\ndenny solomona scored a hat-trick as castleford ended their super league season with victory over widnes .\nethiopians have been reacting to the news that the country 's most successful athlete is retiring from the sport .\ntwo men have been arrested on suspicion of attempted murder after a man was found with gunshot wounds in lincolnshire .\na powys castle is opening its doors to the public to mark the centenary of one of the bloodiest battles in world war one .\nzambia coach geoffrey chambeshi says his team can beat germany in their last-16 match at the under-20 world cup .\ngordon strachan says scotland must beat slovenia to keep alive their hopes of qualifying for the 2018 world cup .\nbritish gymnast jack bevan has broken his leg while training in florida .\na cessation of hostilities has begun in the syrian city of aleppo , the us and russia say .\npolice in nigeria have arrested two men on suspicion of engaging in acts of homosexuality .\nthe life of artist damien hirst is to be published next year .\nplans to improve one of glasgow 's busiest roads have been approved .\na 25-year-old man who died after his car left the road and crashed into a tree in shetland has been named .\nscientists have identified a new species of ichthyosaur after a fossil was mistaken for a copy in a museum .\ned sheeran , katy perry and foo fighters are among the acts announced for this year 's glastonbury .\nprof stephen hawking is to give the bbc 's annual reith lecture , discussing the properties of black holes .\ngambling revenues in the chinese city of macau fell more than expected in the first nine months of the year , as a government crackdown on corruption hit the gaming industry .\nus president barack obama has dismissed israeli prime minister benjamin netanyahu 's recent comments that a palestinian state would never be created .\nuniversities must `` recapture a civic mission '' in the wake of the brexit vote , the education secretary has said .\nwomen 's super league one side arsenal ladies have changed their name to the ` women 's ' team .\nthe us government has given royal dutch shell conditional approval to drill for oil and gas in the chukchi sea .\nthe uk 's broadband minister , jeremy hunt , has defended his plans for high-speed internet .\nactress jenny mackichan has called for a `` real sea change '' in the portrayal of violence against women on tv .\nhigh street bakery greggs has reported a rise in sales for the third quarter in a row .\nengland should drop opener keaton jennings before the ashes , says south africa captain graeme smith .\ncampaigners opposed to a wind farm near theddlethorpe in lincolnshire have held a protest march ahead of a public inquiry .\ntens of thousands of terminally-ill patients in england , wales , northern ireland and scotland are missing out on vital care , a report suggests .\none of china 's first `` baby hatches '' has temporarily closed to new babies because of a surge in abandoned infants , state media report .\nthe pound has fallen 1 % against the dollar after the uk 's inflation rate fell to its lowest level in nearly four years .\nleinster ended their pro12 campaign with victory over edinburgh at murrayfield .\nseven more russian athletes have been banned from competing at the rio olympics by their sports ' governing bodies .\nalexis sanchez scored twice , including a controversial goal , as arsenal beat 10-man hull city in the premier league .\ntwo canadian teenagers have appeared in court charged with child pornography offences in connection with the death of a teenage girl .\ngianluigi buffon says the use of video assistant referees -lrb- var -rrb- in serie a is `` like water polo '' .\nlondon workers spend more time commuting to and from work than any other part of the uk , a study has found .\nthere is `` every likelihood '' ams will get a vote on the triggering of article 50 , the welsh government 's top lawyer has said .\nthe number of incidents of livestock worrying in scotland has risen by more than 50 % , according to police scotland .\nsupermarket asda has announced it will increase the price it pays to its milk supplier to help struggling farmers .\nsierra leone 's president ernest bai koroma has again refused to sign into law the safe abortion act .\ncharlton athletic have recalled striker yann kermorgant from his loan spell with french second-tier side angers .\niceland stunned the netherlands with a 2-0 win in their euro 2016 qualifier in reykjavik .\na drug dealer has been found guilty of murdering his partner 's two-year-old son in rhondda cynon taff .\nforest green rovers have signed defender mark roberts from cambridge united for an undisclosed fee .\nboris johnson has been filmed apparently breaking the law by giving his wife a backie on his bike .\nsunderland have terminated defender emmanuel eboue 's contract after he was banned from all football-related activity by fifa .\nsaracens hooker nick tompkins has signed a new three-year contract with the premiership club .\nwales is paying the price for not doing enough to promote renewable energy , a leading barrister has said .\ndetails of west ham 's annual rent for the olympic stadium have been made public .\nformer nba basketball player lamar odom has been found unconscious at a nevada brothel .\na hospital trust has been ordered to pay # 3.4 m to a girl left brain-damaged after her birth .\nin our series of letters from african journalists , film-maker and columnist ahmed rashid meets tony fadell , co-founder of nest , the internet-connected home start-up that google bought last year .\na telescope in the us has produced some of the most detailed maps yet of jupiter 's weather systems .\nguernsey fc could miss out on the chance to play in the fa cup for the first time if they choose not to enter the competition .\nthe us government has rejected an attempt by native americans to cross a lake in north dakota to protest against an oil pipeline .\nplaid cymru leader leanne wood has said the general election presents an opportunity for `` harmonious co-existence '' between wales and scotland .\nnato has formally ended its combat mission in afghanistan after 13 years of fighting against the taliban .\npolice searching for missing joanna yeates have released a cctv image of the landscape architect .\nthe number of lesbian , gay , bisexual and transgender -lrb- lgbt -rrb- characters on us television has hit a record high , a study has found .\nthe met office has issued an amber `` be aware '' warning of strong winds across scotland on friday and saturday .\nnon-league merstham will host oxford united in the first round of the fa cup .\nthe prince of wales ' duchy of cornwall was warned in january about the dangers of a beach where a man died last month .\nengland suffered a nine-wicket defeat by pakistan in the final twenty20 international at old trafford .\nmanchester united manager sir alex ferguson insists his side are not distracted by their pursuit of a record premier league points haul .\na young indian singer has staged a protest against the appointment of a woman as chief minister of the southern state of tamil nadu .\none of wales ' biggest brewers is planning to open a chain of coffee shops in south wales .\nvoters in england will have to show photo id before casting their vote , ministers have announced .\nthree men have been arrested on suspicion of attempted murder after three people were stabbed in an essex town .\nsale sharks pair tom and george tuilagi have signed new contracts with the premiership club .\na breed of honey bee native to the south west of england has been found to be more resistant to a deadly mite .\nfive primary school children have been injured after a tractor trailer they were in overturned on a farm trip .\nthe rock am ring music festival in western germany has been cancelled after more than 30 people were injured by a lightning strike on saturday .\ngerman chancellor angela merkel has warned against relying too much on us president donald trump and uk prime minister theresa may .\none of the hatton garden burglars gave police a stash of stolen goods hidden in a cemetery , a court heard .\nreading set up a championship play-off semi-final against fulham with victory at burton .\nthe time it takes to finish a pint of beer is not affected by the shape of the glass , a study suggests .\nsportswear retailer sports direct has warned that a fall in the value of the pound against the dollar will hit profits .\nreanne evans will face former champion ken doherty in the first round of qualifying for the world championship at the crucible theatre .\nat least 104 people have been killed in floods in the indonesian province of west java , officials say .\nforeign secretary boris johnson is to visit moscow in the coming weeks , the foreign office has said .\na substance found in lithium batteries has been found to slow the ageing process in animals .\nmobile phone operator ee has tested internet-beaming drones and helium balloons to improve mobile coverage in the uk .\neight people have been injured in a fire at a flat in glasgow .\niraqi forces battling so-called islamic state -lrb- is -rrb- for control of the city of mosul say fighting is continuing in the east of the city .\na suicide prevention app has been launched in the north east of scotland to help people struggling with mental health issues .\nit 's almost time for the hungarian grand prix this weekend .\na growing number of muslims in the us have offered to guard jewish sites in the wake of a spate of anti-semitic attacks .\na man has pleaded guilty to murdering his parents at their home in county donegal last year .\nconsumer goods giant unilever has reported a sharp fall in sales for the final three months of last year .\n`` his ambition was to buy the whole of arcadia . ''\nthe uk 's vote to leave the european union has led to calls for a referendum in other eu countries .\nexeter moved up to third in league two with victory over cambridge at st james park .\nsongwriter rod temperton , best known for penning michael jackson 's thriller , has died .\ndonald trump 's victory in the us presidential election has thrown the world of business into turmoil .\nthe funeral of a teenage ariana grande fan killed in the manchester attack has taken place .\nthe mtv europe music awards -lrb- ema -rrb- are taking place in glasgow on sunday night .\nconor murray has been cleared of any wrongdoing by the concussion management review group for an incident in munster 's defeat by glasgow warriors .\na lifeboat station in the channel islands has been temporarily closed due to a row over the removal of a volunteer coxswain .\nformer world number one victoria azarenka has returned to action for the first time since the birth of her first child .\naustralia beat india by 259 runs in the first test to take an 1-0 lead in the three-match series .\nplans for hundreds of new homes in rhondda cynon taff have been recommended for approval .\ndurham county council is to take legal action after a planning inspector refused to reopen an examination of its economic development plan .\nmark shankland scored twice as st mirren beat livingston in the scottish championship .\neugene , an artificial intelligence chatbot , has passed the turing test .\nplans for a garden bridge across the river thames in south london have been given the go-ahead after a deal was struck with lambeth council .\nmunster fly-half ian keatley kicked a last-minute drop-goal to snatch a draw at edinburgh .\nthe chairman of the independent inquiry into child sexual abuse -lrb- iicsa -rrb- , john mckelvie , has resigned .\nthe paralympic games in london has been hailed as a success for disabled athletes across the world .\nfulham manager slavisa jokanovic says striker chris martin will not be sent back to derby county on loan .\na spacex rocket that washed up on the coast of the isles of scilly was from a mission to the international space station .\nwomen who use private clinics to get a test for down 's disease are not being given enough information , a report says .\nhelga pomsel , who served as joseph goebbels ' secretary during world war two , has died at the age of 106 .\na glasgow man has broken the world record for the longest continuous bagpipe playing .\nmae ' r eisteddfod genedlaethol wedi cael ei gwneud yn barod am y one way system .\na us national park has suspended the search for a party of eight climbers missing on mount rainier .\nmae 'n ysgoloriaeth i fynd i chwarae pl-droed yn yr uda , y cymro cyntaf i dderbyn yr ysgoloriaeth , yn l ym mn ac yna a\nrussian hacker roman seleznev has been found guilty in the us of hacking into computer systems and stealing millions of credit card numbers .\nthree women have been left `` shocked and upset '' after money was stolen from their purses during a break-in at an aberdeen naval base .\na 10-year-old boy has been taken to hospital after being hit by a car on a denbighshire road .\nscientists say they have discovered a new mode of reproduction in a group of land-based reptiles .\na kent council has been accused of a `` major administrative cock-up '' over a multi-million pound insurance claim .\nmaesteg harlequins rugby player ryan watkins has become the second welsh player to be banned for doping .\nscotland 's children 's commissioner has called on the scottish government to do more to tackle food poverty .\npharmaceutical giant glaxosmithkline -lrb- gsk -rrb- says it will no longer seek full patent protection for its medicines in the world 's poorest countries .\nmalaysia has cancelled a concert by us singer erykah badu after a photo of her with tattoos deemed offensive to muslims appeared in a national newspaper .\nteachers at a school placed in special measures by ofsted are taking part in a second strike .\na new synthetic football pitch has been unveiled in cardiff ahead of the champions league final .\ndavid is still afraid to walk alone in the street in paris .\nthe european court of human rights has ruled that belgium 's ban on the wearing of islamic face veils in public is lawful .\nal-qaeda in the islamic maghreb -lrb- aqim -rrb- - formerly known as the salafist group for preaching and combat - is one of north africa 's most dangerous militant groups , with attacks in algeria , libya , tunisia and morocco .\npitch perfect 2 has beaten mad max : fury road to the top of the north american box office , taking $ 102m -lrb- # 69m -rrb- in its opening weekend .\nthe gambia 's president yahya jammeh has declared three days of national mourning after the death of cuban leader fidel castro .\na draft of labour 's general election manifesto has been leaked to the media .\ntributes have been paid to a british couple who died in a plane crash in new zealand .\nmanchester city manager roberto mancini says striker carlos tevez will have his `` moment '' at the club .\na tweet from harry styles thanking one direction fans for voting for him in the us election has become the most retweeted ever .\na 20-year-old man has been jailed for two years for sexual activity with a 14-year-old girl .\na motorcyclist has died in a crash in lancashire .\nso why is george osborne # 2bn better off than he thought in july ?\nskins is one of the most popular teen dramas on the bbc iplayer .\nnearly 700 kenyans who joined militant groups in somalia have returned to the country , according to a report by the international organization for migration -lrb- iom -rrb- .\nukraine 's postal service , ukrposhta , has been hit by a cyber attack .\nthe us was the world 's biggest investor in clean energy technologies in 2011 , according to a new report .\nwales full-back jamie roberts will play for cambridge against oxford on saturday .\nrangers ' jordan windass is targeting more goals after scoring his first for the club in a pre-season match .\nkilmarnock have signed midfielder dom thomas from motherwell for an undisclosed fee .\nthe number of students studying modern languages in northern ireland is falling , according to the university of ulster .\nali carter says he is lucky to be alive after his world championship first-round defeat by john higgins was marred by abdominal pain .\nbristol city council has been accused of wasting up to # 6m on a subsidy for a park-and-ride site .\nlabour leader jeremy corbyn has accused the head of the armed forces of `` interfering directly '' in the trident debate .\nport vale assistant manager paul smurthwaite says that championship clubs are interested in the club 's young goalkeeper jack smith .\nlondon underground -lrb- lu -rrb- drivers are to be balloted on strike action in a row over rosters for the night tube , the train drivers ' union aslef said .\nchina 's biggest state-owned steelmaker , baosteel , has agreed to merge with two smaller rivals .\nthe conservatives are determined to make significant gains in wales in june 's general election .\nthe number of nurses working in the nhs in england has increased since 2010 , according to government figures .\na german police officer has been shot dead in a gun battle with a far-right extremist .\ngovernment spending on social security has risen by # 21bn in real terms since 2010 , a think tank has said .\nj craig venter is one of the most famous scientists in the world .\na judge has criticised a council for failing to protect a boy who had been living with a convicted sex offender .\nliverpool have signed striker christian benteke from aston villa for # 32.5 m.\ncomedian sandi toksvig has backed the bbc 's ban on all-male panel shows , saying she would be a `` big fan '' of more female hosts .\nformer miami dolphins tight end rob konrad has been rescued from the atlantic ocean after his boat capsized .\na 16-year-old girl with mental health issues is to be moved from a police cell to a place of safety .\nthe independent police complaints commission -lrb- ipcc -rrb- has opened 84 investigations into police handling of child sexual abuse cases in england and wales since 2014 .\nmichail antonio 's second-half equaliser earned nottingham forest a point at second-placed watford .\nfive disabled people have lost their high court bid to challenge the government 's decision to close the independent living fund .\ncrimestoppers is offering a reward of up to # 20,000 for information about the murder of schoolgirl caroline mckeich .\nulster have appointed forwards coach darren clarke as their new head coach on a two-year contract .\nsouth africa is one of africa 's largest economies and one of the most developed .\na russian aircraft carrier and other warships have entered the english channel .\nsea otters are helping to boost seagrass populations in california 's monterey bay , a study suggests .\neastenders star danny dyer has been named best actor at this year 's radio times tric awards .\na ferry which was damaged when it hit a quayside during a storm has returned to service .\nthe new england patriots beat the seattle seahawks 28-24 in super bowl xlix in arizona .\neasyjet is to test flying robots on its planes as part of a new technology initiative .\nthe un has called on the iraqi government to ensure that civilians are not killed during the battle to retake the western part of mosul from so-called islamic state -lrb- is -rrb- .\nthe manor formula 1 team has gone into administration for the second time in two years , with the loss of more than 200 jobs .\nabdelbaset ali mohmed al-megrahi was found guilty of the 1988 bombing of pan am flight 103 over lockerbie in scotland .\nleague two side colchester united have signed huddersfield town 's oliver norwood on loan until the end of the season .\nmore than half of uk firms have been the victims of a cyber attack in the past year , according to a report .\nglamorgan all-rounder ben wright has left the club by mutual consent .\nscotland 's party leaders have been campaigning across the country ahead of the general election on 7 may .\na record number of seal pups are being born at a norfolk nature reserve .\naustralian police officer mick fett is one of the country 's biggest star wars fans , dressing up as darth vader and even serving as a police officer .\na row has broken out between a labour am and the chair of a committee investigating the welsh government 's spending .\nthe us is sending 275 military personnel to iraq , the white house has said .\na father and son died when their light aircraft crashed in a field in france , an inquest in plymouth has heard .\nukip leader nigel farage has said he is not a fan of neil hamilton 's return to frontline politics .\nwasps have signed england fly-half danny cipriani on a two-year deal from sale sharks .\nvincenzo nibali has been disqualified from the vuelta a espana after a crash involving his team car on stage two .\nherbert howe , one of liverpool 's most famous hairstylists , has died at the age of 69 .\nbristol city boss lee johnson said he was `` proud '' of his side despite being held to a 2-2 draw by newcastle .\nthe white house has refused to say much about president barack obama 's 70th birthday party .\nscientists say the world is failing to recognise the scale of the ocean 's problems .\ntwo dogs that were rescued after their owner was killed in a motorbike crash have found new homes .\nthe funeral has taken place of a soldier who died while running the london marathon .\nnew signings , new manager , new team - it 's been a summer of change at the top of the premier league .\nwales sevens have qualified for the quarter-finals of the london round of the world rugby series .\nsir dave brailsford says he does not believe british cycling 's culture is based around fear .\na nigerian actress has been banned from the hausa film industry after appearing in a video holding hands with a pop star .\nmore than 1,000 detergent bottles have washed up on beaches in cornwall .\nthe government has defended its plans for a new childcare benefit for working parents in england .\nukip leader nigel farage should take a break from the job , one of the party 's mps has said .\nbooker prize-nominated author amitav ghosh has been sharing his `` behind-the-scenes '' tour of india 's presidential residence on twitter .\nsouth african athlete oscar pistorius has described the moments after he shot dead his girlfriend reeva steenkamp at his home in pretoria .\nghana 's parliament has passed a law aimed at curbing corruption after the country 's presidential election .\nswansea city midfielder gylfi sigurdsson says the club 's `` old swansea '' is back .\na ban on the use of wild animals in circuses could lead to the closure of zoos , a committee has heard .\nincome inequality in latin america is the highest in the world , according to a un study .\na man wanted in connection with the murder of a cardiff teenager is on the run .\na us military court has begun hearing evidence against the five men accused of the 11 september attacks .\npolice investigating the death of a woman whose body was found in edinburgh last year have made a fresh appeal for information .\nformer wales scrum-half mike phillips says he is `` massively surprised '' french rivals racing 92 and stade francais are planning a merger .\nnorthern ireland 's performance in their 1-0 defeat by poland in their opening group c match at euro 2016 was not good enough .\nnorthern ireland 's paul pollock has run his best half marathon time of the year at the cardiff half marathon on saturday .\nthe prison officers ' association has called for an independent investigation into the death of a prisoner at elmley jail .\na woman who had to travel to england to terminate twins with fatal foetal abnormalities has won a legal challenge against the government .\neurope 's justin rose and henrik stenson have been named in the second foursomes pairing for saturday 's ryder cup at hazeltine .\nhundreds of plastic bags have been handed out in brighton to protest against the migrant crisis .\nscotland 's most senior judge is to carry out a review of hate crime laws .\nthe conservative party has said it has received more than 100 witness statements in the inquiry into bullying allegations .\nthere are so many charts out there that tell the story of the us economy .\ntwo sheep have been captured after escaping from their home in dumfries .\nthe ride-sharing service uber has criticised plans to tighten regulation of private hire vehicles in london .\nsnap , the parent company of messaging app snapchat , has unveiled a pair of smart glasses which record video .\nthe prime minister has accused labour of `` scaremongering '' over the future of a hospital ahead of the corby by-election .\ndetails of belgian prime minister charles michel 's chancellery have been found on the computer of one of the brussels airport bombers .\ntheresa may is to hold talks with the head of the company bidding to buy vauxhall later .\na children begged their mother to call the police after their father tied them up and threatened to kill himself , an inquest has heard .\npolice investigating the disappearance of a man in the republic of ireland 17 years ago have begun a search of a site in dublin .\nthe cost of building a new cycle and pedestrian bridge in west sussex has been cut by more than # 2m .\na teenager who planned to carry out a knife attack on soldiers has been jailed for 12 years at the old bailey .\nzimbabwe 's first lady grace mugabe has been granted diplomatic immunity by south africa after she was accused of assaulting a woman .\nbilly joe taylor says he would win a world title fight against ricky burns if he fights next week .\nit 's that time of year again when lots of people celebrate the arrival of the new year .\nfour people have been rescued after their dinghy came to a halt on a sandbank in the highlands .\nthree pieces of gold worth more than # 1,000 have been found during a treasure hunt in scunthorpe .\nhundreds of people have gathered in london 's serpentine gallery to see marina abramovic 's latest work .\na teacher at a catholic school has been suspended following allegations of sexual abuse .\ntwo new species of magnolia have been identified after being photographed in a uk nature reserve .\nbradford has been named curry capital of britain for the third year running .\nmore than 1,000 eu nationals have been sent polling cards in england and wales without their knowledge , campaigners have said .\na knife has been reported missing from a prison in northumberland .\ngarry thompson scored a last-minute winner as morecambe came from behind to beat cheltenham 2-1 at the globe arena .\npresident barack obama 's signature healthcare law has come into effect , extending health insurance to millions of americans .\nleinster have re-signed niall morris from leicester tigers on a two-year deal .\nkris boyd says it would be wrong for scottish clubs to play matches in the united states .\nthe restored replica of winston churchill 's coffin has been unveiled in county durham .\nharlequins director of rugby conor o'shea will leave the club at the end of the season .\nthe pharmaceutical company astrazeneca -lrb- az -rrb- has announced a $ 1bn -lrb- # 640m -rrb- research programme to speed up the discovery of new drugs for human diseases .\nsir elton john will not get married until australia legalises same-sex marriage .\nnewcastle united owner mike ashley says he will not sell the club until he `` wins something '' .\na staffordshire bull terrier has been stolen during a break-in at a business centre in stoke-on-trent .\nthe indian ocean island of reunion is one of france 's overseas departments .\na man has been jailed for 12 years for raping a woman when she was 16 years old .\na 23-year-old man has died after the forklift truck he was driving crashed into a tree in south lanarkshire .\na mother and father have denied murdering their three-month-old daughter who was found on a bus .\na 20-year-old woman has been raped in the meadows area of edinburgh .\na man who phoned in a bomb threat to bristol airport has been jailed for two years and eight months .\nindia 's captain virat kohli will lead his team into sunday 's world twenty20 final against pakistan with a huge sense of responsibility and expectation .\nsolar impulse , the aeroplane powered only by the sun , has set off from china for hawaii .\nthe government 's plans to devolve more powers to the east midlands have divided opinion in some parts of the county .\na man who raped two women while on probation for attempting to rape a sleeping woman has been jailed for life .\nfootage has been released of the moment a large fire broke out at a market in norfolk .\ni 'm ready for my first-round match against liam broady at wimbledon on monday , and i 'm looking forward to it .\na murder investigation has been launched after a man 's body was found in a street in manchester .\narsenal 's fa cup final win over aston villa was one of the best performances i have ever seen from arsene wenger 's side .\nland rover has announced plans to replace its iconic defender vehicle with a new model by 2015 .\na pembrokeshire coach firm has put itself up for sale .\na man is in a critical condition in hospital after being attacked by three men armed with a hammer and a knife .\nfrench prosecutors have opened a criminal investigation into the yemenia airliner that crashed into the indian ocean off the comoros islands in june 2008 .\nwhitehall officials do not understand how rail services are run , the transport minister has said .\na chocolatier has recreated the ships of the battle of trafalgar in chocolate .\nthe driver of osama bin laden , nasser al - bahri , has died of a heart attack , yemeni officials say .\nseveral more republicans have called on donald trump to drop out of the presidential race after his obscene remarks about women .\nscientists have measured the `` tidal signal '' of loch ness .\nthe first 2,000 people to get their hands on stainless steel beaker cups at this year 's glastonbury festival will get a # 5 deposit , but what do they actually do ?\na man who admitted causing the death of a woman in a crash in county tyrone has been jailed for two years .\nglobal energy demand is continuing to grow but at a slower rate than in recent years , according to a report from oil giant bp .\nsubstitute lee novak rescued a point for charlton with a late equaliser at fleetwood .\njamaica 's drug-testing programme is `` not good enough '' , according to the country 's former chief anti-doping officer .\nskye 's winless start to the season continued with a 1-1 draw at home to murchison in the senior premiership on saturday .\nbristol have signed leinster scrum-half luke harris-wright on a two-year deal .\na paedophile who bribed his victims with '' fifa game currency '' has been jailed for 12 years .\nformula 1 teams have begun the first pre-season test in spain with new cars .\ngross domestic product -lrb- gdp -rrb- is the total value of goods and services produced in an economy .\nhastings pier has opened to the public for the first time since a devastating fire .\nnico rosberg says he is determined to end mercedes team-mate lewis hamilton 's winning streak at this weekend 's spanish grand prix .\nleicester tigers director of rugby richard cockerill says centre manu tuilagi is unlikely to play again this season because of a groin injury .\nus pastor wayne anderson has been arrested in botswana after he appeared on a local radio show criticising homosexuality .\nthe duke of cambridge has thanked the people of anglesey for making him and his wife `` so welcome '' during their first year on the island .\na rare white humpback whale has been spotted off the coast of australia .\na man has admitted killing a father-of-two with a single punch during a street brawl in edinburgh .\nkim in-kyung beat spain 's carlota ciganda in a play-off to win the nw arkansas championship .\nthe melting of arctic sea ice has taken scientists by surprise , according to a new study .\nfirst minister carwyn jones has backed calls to resettle more unaccompanied child refugees in the uk .\npharmaceutical giant pfizer has agreed to buy a us company that makes a treatment for eczema in a deal worth about $ 14bn -lrb- # 10.7 bn -rrb- .\nthe un special envoy for syria has warned that the `` cessation of hostilities '' in the war-torn country could collapse `` any time '' .\nthe welsh government has welcomed a supreme court ruling on minimum wages .\nliam ridgewell 's portland timbers won the mls cup with a 2-1 victory over columbus crew in the final in ohio .\ngoals from patrick roberts and luke fletcher saw barnsley beat coventry city in league one .\nmiddlesex opener sam robson hit a career-best 238 to help his side take control against warwickshire on day two at lord 's .\nscottish judo star stephanie inglis has thanked well-wishers for their support and said she is `` going to be up and about before you know it '' .\nall images copyrighted .\na spectacular display of the aurora borealis has been captured by a scottish amateur .\nthe owners of kent 's manston airport are considering legal action after the government announced plans to buy it .\nthree men have been found guilty of the murder of a man who was stabbed 22 times in a drugs turf war .\nburma 's government has set up a commission to investigate sectarian violence in the western state of rakhine that has left at least 130 people dead .\nufc champion conor mcgregor 's plan to wear 8oz boxing gloves in his las vegas bout with floyd mayweather has been delayed .\nplans to build a dual carriageway close to stonehenge could `` undermine '' the ancient monument , an mp has warned .\nmilitary service does not increase the risk of suicide , according to a new study .\nwelshman andrew selby will make the first defence of his british and commonwealth super-bantamweight titles against joe norman in cardiff on 26 march .\n`` if you want to know what 's going on in the world , just look at the data . ''\ncornwall has voted to leave the european union .\nthe scottish government has published a new code of conduct for police officers dealing with stop and searches .\nat least 80 people have been arrested in egypt after protests against the transfer of two red sea islands to saudi arabia .\nthe independent inquiry into historical child sex abuse should not be scrapped , an mp has said .\na man has been found guilty of the manslaughter of his mother 's partner who died after a fight at a holiday park .\nindian ship captain radhika menon saved the lives of 21 fishermen .\ndemarai gray , islam slimani and ahmed musa all scored as leicester beat sheffield united in the efl cup .\nleague two side accrington stanley have signed midfielder bobby olejnik on a two-year deal following his release by crawley town .\na six-year-old boy has been reunited with his pet lion after it went missing at a stately home .\nan eight-year-old canadian boy who accidentally ripped a page from a comic book has written an apology note .\na 23-year-old woman has died in police custody in lancashire .\ndogs , cats , and even polecats have been taking to the streets to vote in the uk 's general election .\nnottinghamshire captain chris read says his side are `` full of confidence '' after reaching the one-day cup finals day .\na man who climbed on to the roof of an edinburgh church has been fined .\nsubstitute abdallah el said scored a late winner as egypt beat uganda 1-0 to reach the africa cup of nations quarter-finals .\ntheresa may has said she is `` looking forward '' to meeting us president donald trump in washington next week .\na copy of one of the world 's oldest cave drawings has been unveiled by the french president .\ndozens of yazidi women and children who were held captive by so-called islamic state -lrb- is -rrb- have been rescued , the un says .\nthe metropolitan police is to recruit 1,500 new armed officers over the next two years , its chief sir bernard hogan-howe has said .\nfunding for wales ' biggest science and technology centre is to be extended until 2021 .\nmanchester city have completed the signing of england right-back kyle walker from tottenham hotspur for # 50m .\na new prison in wrexham will not have a local name , the ministry of justice has confirmed .\nleague one side leyton orient have been sold to a consortium led by london businessman nigel travis .\na collection of 600-year-old pages from the koran is to go on display in leeds .\nmillwall held on to beat bradford and reach the league one play-off final at wembley .\nthe australian high court has rejected an appeal by us anti-abortion campaigner troy newman against his detention .\nthere has been a fall in the number of gcse entries in wales this year .\njockey william buick says he is `` lucky to be alive '' after suffering a back injury in a fall .\nmanchester city 's yaya toure says raheem sterling should have been penalised for diving in the 2-2 draw at tottenham .\nscottish political parties have called for `` cast iron assurances '' over the future of shipbuilding on the clyde .\nthe leader of the lebanese shia group hezbollah has confirmed for the first time that its fighters are fighting in syria .\na woman who has incurable breast cancer has called for a drug to be made available automatically on the nhs in scotland .\nleague one side accrington stanley have signed swansea city midfielder jack grimes on loan until the end of the season . .\nan american airlines plane has caught fire as it prepared to take off from chicago 's o'hare international airport .\nchina 's ding junhui came from behind to beat spain 's luca figueiredo 6-5 in the first round of the uk championship in york .\nnasa 's kepler telescope has discovered 216 planets outside our solar system .\na loggerhead turtle has been fitted with a camera to try and find out why so many have died near the great barrier reef in australia .\ndavid cameron will stand down at some point during the next parliament , former conservative leader iain duncan smith has told the bbc .\nscotland internationals tommy seymour and tim swinson have signed new contracts with glasgow warriors .\nthe defence secretary has unveiled plans for a new fleet of offshore patrol boats to protect the royal navy 's new aircraft carriers .\na robin hood is getting married to a maid marian - five years after they first met on stage in nottingham .\ntwo hospitals in shropshire could close under plans being considered by health bosses .\nbirmingham city boss harry redknapp says the club need to make more signings this week .\nhigh-earners will lose some or all of their child benefit from monday , the government has announced .\na painting by claude monet , nympheas , has sold for # 31.7 m at auction in london .\npolice chiefs in north wales and dyfed-powys have warned of further budget cuts .\nthe remains of a world war two spitfire have been recovered from a field in oxfordshire .\nwigan warriors kept alive their hopes of a top-four finish in super league with a convincing win over salford red devils .\neach day we feature a photograph sent in from across england - the gallery will grow during the week !\nwycombe goalkeeper jamal blackman saved a late penalty as the chairboys held blackpool to a goalless draw .\nthe use of force by prison staff at one of england 's most high-security jails has increased , a report has found .\nnetherlands ' marianne vos won stage two of the women 's tour as compatriot amy pieters took the overall lead .\nthere 's no such thing as a sure thing in politics .\npolice are investigating allegations of historical sexual abuse at the kids company charity in west london .\na section of the m42 that was closed after a fatal collision involving a car and a lorry has reopened .\na man accused of ordering an acid attack on his ex-girlfriend has told a court he did not want to carry out the attack .\nfrance has condemned turkey 's bombardment of kurdish fighters in northern syria , calling it a `` flagrant violation '' of its sovereignty .\na prominent chinese journalist jailed for five years for leaking state secrets has had her sentence reduced .\nengland fly-half george ford will replace owen farrell at inside-centre for saturday 's second test against australia in brisbane .\nunited and american airlines have joined delta in banning the shipment of hunting trophies after the killing of cecil the lion in zimbabwe .\nengland head coach steve mcnamara says he is `` in no rush '' to sign a new contract following saturday 's four nations win over new zealand .\na body has been found by police searching for a man who has been missing from his home in rhondda cynon taff .\nrangers manager pedro caixinha says his players are enjoying their start to the season .\na close ally of brazil 's president dilma rousseff has been charged with corruption .\nthe uk and france are to announce a deal to tackle the migrant crisis in calais .\nthe cost of running a new combined authority in cambridgeshire and peterborough has risen to # 1.7 m .\nofficials at yellowstone national park in the us state of wyoming have issued a warning after a group of tourists tried to feed a bison calf .\nat least five people have been killed in an attack on a nightclub in the malian capital , bamako .\ndaniel o'shaughnessy 's stunning 25-yard strike rescued a point for cheltenham at mansfield .\nsir bradley wiggins became the first british man for 22 years to win gold in the time trial at the road world championships .\nwhen the world 's most important central bank decides to raise interest rates , you know it 's going to have an impact .\nfirst minister carwyn jones has said she would not be interested in becoming ukip wales mep .\nleicester tigers director of rugby richard cockerill is confident manu tuilagi will stay with the club .\na bradford couple believe they are the uk 's longest married couple .\nparts of central italy have been hit by a cold snap that has brought snow and freezing temperatures .\nthree human feet have been found in a park in the past six months , police have said .\nthe australian government says it has turned back a boat carrying 46 vietnamese asylum seekers .\na woman has been killed and another injured in a chainsaw and axe attack at a shopping centre in belarus .\nit 's been an extraordinary day in british politics .\nmae cynrychioli cwmnau gofal yng nghymru wedi dweud bod yn cael eu talu gan y cynghorau lleol .\ncardiff devils forward joey haddad has signed a new one-year contract with the elite league club .\ngoogle 's parent company alphabet has reported a 16.2 % rise in first quarter revenue , helped by a jump in advertising revenue .\ndonald trump 's executive order barring people from seven muslim-majority countries from entering the us has been suspended by a federal judge in seattle .\na disabled man has called for more help for wheelchair users after he was hit by a train door in cornwall at the weekend .\nthe water lilies in claude monet 's agap triptych could have been poisoned by local farmers who objected to the artist 's plans for a water garden .\na british aid worker who was killed in pakistan was `` unlawfully killed '' , an inquest has concluded .\nwales lost 2-0 to portugal in the semi-final of euro 2016 in lyon .\nthe northern ireland chamber of commerce has released the results of a survey on the eu referendum .\nukraine 's government has come under fire for appointing a young woman to one of the most powerful jobs in the country .\nmore than 100 paintings , drawings and sculptures have gone on display in north shields .\nthousands of palestinians have clashed with israeli troops after prayers at a holy site in jerusalem .\none of the uk 's most successful retailers , sir philip green , has been appointed by the government to advise on how to cut public spending .\none of britain 's most famous locomotives , the flying scotsman , is set to return to the rails .\nthe deadly attacks in san bernardino , california , have thrust national security to the forefront of the 2016 republican presidential campaign .\nthe mother of a schoolgirl who fled to france with her teacher has spoken for the first time about the ordeal .\nthe general election campaign is under way in wales .\nscottish labour leader kezia dugdale will promise to restore tax credits if her party wins next year 's holyrood election .\nthe number of people in work in the uk reached a record high in the three months to june , the office for national statistics has said .\nmartin guptill and kane williamson hit unbeaten half-centuries as new zealand beat pakistan by 39 runs in the second twenty20 international .\na light aircraft has crashed in a field in north yorkshire .\nan investment offered on the bbc 's dragons ' den show in a scottish tech start-up has fallen through .\nthe colombian government and the farc rebel group have agreed to resume peace talks next week , after the release of a general kidnapped by the group .\nlabour 's ruling national executive committee -lrb- nec -rrb- has failed to agree on changes to the party 's leadership election rules .\ngareth mcauley says northern ireland 's 2-0 win over ukraine at euro 2016 proved they can compete with the best .\nan international development agency has spent more than # 900m on travel in the last five years , the national audit office has found .\nplaid cymru has launched its manifesto for the assembly election .\na british man has been arrested in turkey on terror charges , his lawyer has told the bbc .\nlawyers for south african athlete oscar pistorius are to challenge a judge 's decision to allow prosecutors to appeal against his murder acquittal .\nthe winner of the world 's heaviest tomato competition will be determined by a dna test .\ntaliban leader mullah akhtar mansour has been involved in a gun battle in the pakistani city of quetta , taliban sources have told the bbc .\nfrench police are hunting a gang of gunmen who hijacked a saudi prince 's convoy with 250,000 euros -lrb- # 230,000 ; $ 290,000 -rrb- in cash and documents .\nsean ervine hit an unbeaten 91 as hampshire reached 281-4 on the first day against somerset at taunton .\npeople did not recognise the impact of eu funding on wales , the welsh conservative leader has said .\nthe philippine army says it has retaken `` complete control '' of the city of marawi , a week after it was overrun by islamic militants .\nthe mother of missing madeleine mccann has begun a 300-mile cycle ride from edinburgh to london .\nmanchester united defender jonny evans and newcastle striker papiss cisse could face bans for spitting .\nsixteen-year-olds have been speaking to newsbeat about why they voted in the scottish independence referendum .\na palestinian woman who was badly burned in a firebomb attack on her home in the west bank has died in hospital in israel .\nthe comet at the centre of europe 's rosetta mission to the sun may have formed billions of years ago .\nguernsey fc have been handed a home tie in the first round of the fa cup for the first time .\nwhen paris st-germain -lrb- psg -rrb- agreed to sign barcelona 's neymar for a world record fee of # 198m , eyebrows were raised .\nthe funeral of entertainer keith harris has taken place in blackpool .\npaul brian murray , a 16-year-old from stoke-on-trent , travelled by car with his dad , tony murray , who also died .\nmany clouds will attempt to become the first horse since red rum in the 1970s to win back-to-back runnings in saturday 's grand national .\na six-year-old girl with a rare form of leukaemia has been declared free of the disease after a pioneering treatment in the us .\nindian wells chief executive and tournament director ray moore has resigned after controversial comments about women 's tennis .\na march by ex-soldiers demanding an end to prosecutions for troubles-era killings is to go ahead in northern ireland .\na butcher in fife has come up with a new easter treat - a chocolate sausage .\na welsh labour minister has said he wants jeremy corbyn to be prime minister .\n`` i do n't want to talk about the dark web , '' says tor 's co-creator tor dingledine .\nthe rmt union has accused southern rail of making `` threats and bullying '' ahead of a fresh strike .\nan outbreak of measles in swansea and neath port talbot is the largest in wales since 2010 , public health wales has said .\nharlequins have signed fly-half ruaridh jackson from wasps .\nus president donald trump is to announce his decision on the war in afghanistan later .\nin the wake of the finsbury park attack , there has been a backlash on social media against the media for their coverage of the suspect .\nzlatan ibrahimovic says he will leave paris st-germain `` like a legend '' .\nin the wake of the migrant crisis in calais , some have called for the reintroduction of id cards in the uk .\na controversial end-of-life care pathway -lrb- lcp -rrb- should be phased out in england , a review is expected to say .\nthe sri lankan army has rejected claims it killed the 10-year-old son of tamil tiger leader velupillai prabhakaran , after the release of two photographs of him .\nisraeli archaeologists say they have recreated the floor of a jewish temple in the occupied west bank .\ncrotone became the first italian side to avoid relegation from the serie a after beating lazio 3-1 on the final day .\na driver was caught by police trying to find sam smith 's new song on his mobile phone during a traffic stop in bournemouth .\nr&b singer ray blk has been named the bbc 's sound of 2017 for 2017 .\nthe mother of a teenager who took his own life after being bullied on social media has launched a project to help other young people .\nireland were beaten by seven wickets in the first twenty20 international against afghanistan in india .\nthe libyan coast-guard has called off its search for survivors from two migrant boats which capsized on thursday .\npart of the m1 in northamptonshire has been closed after a lorry overturned .\nchina 's exports in february rose at their fastest pace in more than three years .\nthe hebcelt music festival has kicked off in the highlands .\n-lrb- close -rrb- : shares in hewlett-packard fell after the computer and printer giant reported weaker-than-expected profits .\nwho was king arthur ?\nvisitors could be charged for using the nhs in wales , the health secretary has said .\nthieves have targeted vans used by the diy sos team as they build a house for a terminally ill woman .\npeople have been using your questions to ask us what they want to know about the festive season .\nmiddlesbrough defender mustapha carayol says he is finally ready to commit his international future to the gambia .\nan appeal to help the family of a four-year-old girl who died after becoming trapped in a lift has raised more than # 8,000 .\nukip 's biggest donor says he has been suspended from the party pending a meeting of its ruling national executive committee -lrb- nec -rrb- .\ndame judi dench has revealed she has been diagnosed with a condition that causes her eyesight to decline .\na man has become the first person to paddle the length of a river in south asia without a guide .\nthe brother of a scottish aid worker murdered by islamic state militants has called on the uk to do more to help those affected by extremism .\nchristian pulisic scored twice as borussia dortmund came from two goals down to draw with ingolstadt in the bundesliga .\na gunman has opened fire outside a bar in the israeli city of tel aviv , killing one person and wounding at least 10 others , police say .\nmarko arnautovic scored twice as stoke city beat aston villa to boost their hopes of a top-half finish .\nthe childhood home of ringo starr has been sold for # 225,000 at auction in liverpool .\ncharlie brown , snoopy , woodstock and lucy - they 're back !\na new zealand company has launched its first rocket .\nmanchester city 's first game under new manager pep guardiola will be a pre-season friendly against manchester united .\nroyal mail has launched a consultation with unions over changes to its pension scheme .\ni do n't think theresa may 's speech was intended to be a referendum on her leadership . unless mrs may takes the advice of the leader of the scottish conservatives , ruth davidson , who suggests she talks to other political parties to try to secure a cross - party consensus on what she called `` an open brexit\nthe full line-up for this year 's bestival has been announced .\nmps have been heckled over the government 's record on pensions during a commons debate .\nsomerset beat gloucestershire by three wickets to win the one-day cup south group final at taunton .\nthe us president , barack obama , has signed the first global treaty to regulate the global arms trade .\na south wales company has been fined # 15,000 for mislabelling frozen meat .\nannan athletic , clyde and elgin city all won their opening scottish league two games .\nasian markets have fallen after the european central bank -lrb- ecb -rrb- disappointed investors with its latest stimulus measures .\nfast food restaurants near schools in kent are to be banned from opening after school .\n-lrb- close -rrb- : london 's benchmark share index closed above the 7,000 level for the first time in more than two years , as european stock markets rose on hopes of a deal between greece and its creditors .\nwest ham united defender diaf sakho will miss the rest of the season with a back injury .\na group of boiler owners using the renewable heat incentive -lrb- rhi -rrb- scheme have met to discuss their future .\nmanchester united produced a scintillating display to thrash an out-of-sorts arsenal at old trafford and heap further pressure on manager arsene wenger .\ncristiano ronaldo scored a hat-trick as real madrid thrashed espanyol to go second in la liga .\nclyde manager barry ferguson admits it is `` easy to walk away '' from the scottish league two strugglers .\nsouth african police have replaced detective hilton botha as the lead investigator in the oscar pistorius murder case .\nthe moroccan football federation -lrb- fmrff -rrb- has banned raja casablanca fans from attending home matches after violent clashes following a league game on sunday .\nthe government has been accused of `` swallowing a line '' in its business rate revaluation plans by a tory mp .\nlow-tech flood prevention schemes should be rolled out across the uk , say water experts .\nmore than 41,000 students in wales have outstanding student loans , with an average debt of nearly # 20,000 .\nevery summer , thousands of sheep and lambs flock to the mountains of southern france .\nit is 10 years since a man was shot dead in the lobby of a hotel in dublin .\ndundee have signed former real sociedad defender luis etxabeguren on a one-year contract .\nswansea city head coach paul clement says he is interested in speaking to chelsea captain john terry .\na pipe bomb found close to a primary school in north belfast has been made safe .\nalgeria midfielder sofiane mbolhi has joined turkish side antalyaspor for an undisclosed fee from french ligue 1 side angers .\nwakefield reached the challenge cup semi-finals for only the second time in their history with a convincing win at huddersfield giants .\ntens of thousands of homes in leeds have been left without water after a fault at a treatment works .\nthe us supreme court has said it will take up the issue of same-sex marriage for the first time since its ruling in 2013 that legalized gay marriage .\nare you the greatest boxer of all time ?\nclydesdale bank has set aside up to # 500m to compensate customers mis-sold payment protection insurance .\nworld number one andy murray gave great britain a 1-0 lead over japan in their davis cup world group tie .\none of the architects of the good friday agreement has criticised the government 's proposed new monitoring body for northern ireland .\nwhen islamist militant group boko haram abducted more than 200 schoolgirls from the town of chibok in north-eastern nigeria a year ago , the father of one of the girls , rev mark anyanwu , went to the area to try to help .\nrecord levels of air traffic are putting the uk 's air traffic control system `` close to the limit '' , officials say .\nthe welsh conservatives want to protect the nhs budget for the lifetime of the assembly , the party leader has said .\nstephen dobbie scored twice as queen of the south beat alloa athletic to reach the scottish challenge cup semi-finals .\nbp has announced plans to cut about 600 jobs in the north sea .\ngender fluidity is a growing issue around the world .\nfriends star matthew perry is reported to be taking part in a special tribute to the hit us sitcom next month .\na man has died and two girls have been taken to hospital after getting into difficulty in the sea off anglesey .\nthe pembrokeshire firm behind the failed zano drone project has published an update on how it spent more than # 2.3 m of donations .\ntrain services between edinburgh and the borders have resumed after being suspended due to engineering works .\njapan 's nuclear accident panel has concluded that the 2011 earthquake and tsunami that triggered the fukushima nuclear disaster was `` manmade '' .\nfugitives from the uk are being hunted by police in spain as part of a crackdown on organised crime .\na japanese boy who was lost in the mountains for six days has been found alive .\ncalifornia residents saved more than a quarter of a billion gallons of water in july , meeting the state 's mandatory drought restrictions .\ncalls have been made for all pets to be microchipped in wales to help owners find their animals .\nengland captain joe root says saturday 's world twenty20 match against sri lanka is a `` must-win '' game .\nprisoners with mental health problems are being put on a waiting list , a former therapist has claimed .\neast stirlingshire moved up to fourth in scottish league two with a comfortable victory over stenhousemuir .\na woman has died following a two-vehicle crash in ballymena , county antrim .\nmany people have heard of shakespeare 's sonnet , the tempest .\neurotunnel has said it is unable to sell tickets to non-reserved customers due to `` increased security measures '' in the channel tunnel .\na londonderry fish and chip shop has been badly damaged in a ram-raid .\nmining giant rio tinto has raised its minimum acceptance threshold for its takeover bid for mozambique 's riversdale mining .\nforfar athletic extended their lead at the top of scottish league two to seven points with a 3-0 win over berwick rangers .\nitv has confirmed it will continue to broadcast the x factor and britain 's got talent until at least 2019 .\nthe political crisis in northern ireland dominates the front pages on wednesday .\nit 's the unlikely story of a gay alliance formed during the 1984-5 miners ' strike in neath port talbot .\njapan 's prime minister shinzo abe has arrived in hawaii for a historic visit to the site of the 1941 japanese attack on pearl harbour .\nnewcastle united have signed crystal palace striker dwight gayle and bournemouth winger matt ritchie on three-year deals .\none of scotland 's most famous detectives was born in the highlands .\na buzzard has been rescued after getting its head stuck in a fence in powys .\nsnp leader nicola sturgeon has accused david cameron of being a `` slender and fragile '' prime minister after the government postponed a commons vote on hunting law .\nus president barack obama has urged donald trump to reach out to minority groups and women worried about the `` bitterness '' of the presidential campaign .\nlorry drivers in the uk are taking illegal drugs to cope with the boredom of long shifts , the bbc 's 5 live investigates has found .\na debate has broken out over the idea that light waves can be harnessed to boost data transmission .\na 72-year-old man has been arrested on suspicion of sexual offences as part of the yewtree investigation .\na british man once dubbed the world 's fattest has been granted a visa to travel to the us to have weight-loss operations .\nthe proportion of pupils in scotland going on to `` positive destinations '' after leaving school has risen , according to new figures .\ntwo conservative mps have been awarded # 100,000 in libel damages over an allegation made by a former ukip leader in doncaster .\nthe cotswolds could become part of thames valley police under council plans to merge local services , it has been claimed .\nben davies scored his first goal for tottenham as they beat aston villa to reach the fa cup fourth round at wembley .\nin the wake of the london bridge attacks in june 2005 , tony blair was in a state of shock .\na review of undercover policing in scotland is to be carried out , the scottish government has confirmed .\nthe isle of barra is celebrating its 80th anniversary as an airport .\nmotorists have been warned to take care on scotland 's roads as snow and ice continue to cause disruption .\nealing central and acton is one of the most marginal seats in england .\na man has been jailed for life for the murder of a father-of-two who was stabbed to death outside a nightclub .\na yellow `` be aware '' warning of heavy rain has been issued for south and west wales .\na suspected kidnapper in nigeria has filed a $ 1m -lrb- # 780,000 -rrb- law suit against police .\na new caledonian macbrayne ferry has been launched at ferguson marine in clydebank .\nlee chung-yong 's header rescued a point for sheffield wednesday against play-off hopefuls burnley .\nthe amount of overtime paid to consultants in scotland has more than doubled in the last two years , according to the bbc 's freedom of information request .\nnewport gwent dragons flanker gareth cudd has signed a new contract with the region .\na charity auction for a lunch date with apple chief executive tim cook has sold for $ 75,000 -lrb- # 54,000 -rrb- .\nindonesian police have asked australian police to investigate the possible links between a woman who died after drinking cyanide-tainted coffee and her friend .\na couple who have spent more than 20 years restoring a former gulf war jet have put it up for sale .\nflorida 's governor has declared a state of emergency in a river polluted with toxic blue-green algae .\nthe african union -lrb- au -rrb- has called on african countries to consider withdrawing from the international criminal court -lrb- icc -rrb- .\ngwen ifill , one of the first female moderators of a us vice-presidential debate , has died at the age of 61 .\neverton manager roberto martinez says his side 's fa cup semi-final hangover has affected their premier league form .\nlanky the pelican , new zealand 's only resident wild bird , has died at the age of 67 .\noldham has been named the most deprived town in england and wales , according to official figures .\nulster bank in northern ireland has reported a pre-tax profit of # 28m for the six months to the end of december .\nthere is no need for a one-size-fits-all approach to dieting , say researchers .\nup to 474 `` unclaimed infant remains '' have been found at a mother-and-baby home in the republic of ireland , the irish children 's minister has said .\nellan vannin have won the second conifa world cup in the czech republic .\nthe un 's international civil aviation organisation -lrb- icao -rrb- has downgraded thailand 's aviation safety rating .\nheroin with an estimated street value of # 5m was hidden in a speaker box , a court has heard .\na cat has been rescued after being trapped in the rubble of a building for more than a week in the earthquake in central italy .\na district which is home to the birthplace of the united states of america is going to the polls .\niran 's supreme leader , ayatollah ali khamenei , has said the nuclear deal struck with the west will not change iran 's policy towards the us .\nalaba scored twice as tp mazembe of the democratic republic of congo beat algerian side bejaia 3-1 in the second leg of the african confederation cup final on sunday .\nplans to divert water from a snowdonia waterfall have been refused by natural resources wales .\nthe family of former footballer jeff astle are to meet the football association 's chairman to discuss head injuries .\nthe us will sustain a durable international effort to tackle climate change , says the country 's top climate negotiator jonathan pershing .\ntorquay united have been sold to a hong kong-based investment group called gulf international holdings -lrb- gi -rrb- .\nmore than one in 10 students in independent schools in england received extra time for exams last year , figures show .\nthe eu says it will not renegotiate its controversial trade deal with canada , known as ceta .\nromelu lukaku says he is in talks with everton over a new contract .\nballymena united manager gerard mulgrew is wary of the threat posed by ards in tuesday night 's premiership game in bangor .\nnick clegg has accused the prime minister and labour of trying to `` put the genie back in the bottle '' in the row over tv election debates .\nbelgium 's king albert ii has been criticised by a leading separatist for his christmas day broadcast .\nwill grigg scored his first goal of the season to help wigan beat blackburn in the championship .\nimages courtesy of afp , epa , getty images and reuters .\na machine that can assess the quality of thai food has been unveiled in bangkok .\na man has been charged in connection with the cancellation of the v festival in brighton .\nthe new owners of a south of scotland engineering firm which went into administration last year have said they have doubled the number of staff .\na `` small number '' of vials of blood have been found at a hospital in cumbria , prompting an investigation .\ntens of thousands of people have gathered in edinburgh for the city 's hogmanay street party .\nleeds rhinos moved level on points with super league leaders st helens after beating salford red devils in difficult conditions .\nhouse prices in england have risen faster than in any other part of the uk , official figures show .\nplans to merge two of liverpool 's main hospitals have been described as a `` recipe for disaster '' .\nsenior managers at manchester city council are to get pay rises of up to 10 % .\ncutting the dosage of a drug used to treat a rare form of leukaemia has been hailed as a `` breakthrough '' .\na judicial review is to be held into a council 's decision to build a cycle track on a nature reserve .\nthe jury in the trial of a man accused of murdering a woman in the republic of ireland has retired to consider a verdict .\nfour water voles have been released into the wild at a nature reserve in monmouthshire .\ntwo ruc officers who gave evidence at an inquest into the death of an ira man in west belfast have been named .\na unisex toilet is to open in the chinese city of shanghai , in a bid to ease pressure on women to use male facilities .\ndan biggar will start ospreys ' european champions cup game against grenoble on saturday , with jonathan davies coming in at scrum-half .\nmanchester city have `` amazing options '' without suspended striker sergio aguero , says manchester united manager jose mourinho .\npeople who are deaf or have hearing loss are being discriminated against at work in wales , a charity has said .\na california judge has ruled in favour of the sale of the los angeles clippers to a former microsoft executive , rejecting a last-ditch appeal by clippers owner donald sterling .\nprince william is stepping down from his role as a helicopter pilot .\nthe channel tunnel is one of the world 's most important transport links and is used by many countries around the world .\na crowd-funding campaign to buy cyber-security vulnerabilities from a notorious hacking group has been abandoned .\njames anderson has hit back at geoffrey boycott 's criticism of england one-day captain eoin morgan .\nunion members at london metropolitan university have voted for strike action in a row over plans to cut 200 jobs .\nsix people have been killed in a balcony collapse in the united states .\npolice in papua new guinea are searching for dozens of prisoners who escaped from a prison in the capital , lae .\npolice in france have scaled back their search for a big cat on the loose in the paris region .\nscientists in australia have found a way to stop the devastating spread of cane toads .\npolice officers in northern ireland are pursuing compensation claims against the owners of stolen cars , the bbc has learnt .\ninjured former paramilitaries should be entitled to a special victims ' pension , according to the democratic unionist party .\na man and a woman have died after their car was hit by a high-speed train in northern france .\na woman has died after being hit by a car in greater manchester .\nthe route of the london 2012 olympic torch relay in the humber region has been announced .\nthe pga tour 's lack of anti-doping compliance could threaten golf 's future at the olympics .\nbritain 's `` social mobility crisis '' is getting worse , the government 's social mobility adviser has warned .\ncolchester 's winless run in league one extended to 17 games as they were held to a draw by 10-man chesterfield .\nfive men have been arrested after a girl and her cousin were killed when they were hit by a car in oldham .\nemergency services were called out after reports of a body in a river - only to discover it was a sculpture .\nmore than 6.4 million people died from tobacco-related causes in 2015 , a study has found .\na man has appeared in court charged with the murder of a man whose body was found in a park in headingley .\na previously unreleased recording of led zeppelin performing stairway to heaven has been released for the first time since 1971 .\nengland 's euro 2016 qualification campaign is almost over .\nthere 's a general election coming up on 8 june , when adults will vote to choose who will run the uk .\ntyler and cameron winklevoss , the twins at the centre of the facebook dispute with founder mark zuckerberg , are suing facebook again .\na new cycling sportive in honour of one of scotland 's greatest cyclists , robert millar , has been launched .\nthe number of drug users in wrexham has fallen dramatically in the last 10 years , according to the town 's police and crime commissioner -lrb- pcc -rrb- .\nthe hard shoulder of the m6 has reopened after being closed following a fatal three-vehicle crash .\narmed police officers are on patrol at the houses of parliament following wednesday 's terror attack .\nbradford city moved up to third in league one with victory at rochdale .\nthe death of marussia driver jules bianchi from head injuries sustained in a crash at the 2014 japanese grand prix is a huge loss to the sport .\n`` the metropolitan police service will continue to investigate allegations of historical child sexual abuse in line with the advice of the college of policing . ''\na cake based on hollywood actress jennifer lawrence has won gold at a competition in birmingham .\nnorthern ireland 's first and deputy first ministers are backing a legal challenge to the uk leaving the eu .\nactor roger moore has said he did not try to imitate sean connery when he took over the role of james bond .\nlaura trott won gold for the second day running at the british track championships in manchester .\nthe nhs in england has been told it must do more to cut the cost of agency staff .\nluke molesley 's late goal gave national league aldershot victory over league two portsmouth in the fa cup second round .\nbritish astronaut luca parmitano has returned to earth after a six-month mission on the international space station .\nelections for english councils will be held on 5 may 2013 .\nwilliam hague has become the first serving foreign secretary to visit iraq 's autonomous kurdistan region .\na `` jekyll and hyde '' man has been jailed for the manslaughter of two girlfriends he killed 10 years apart .\nat the conservative party conference tonight , theresa may came prepared to take the blame .\nbritain 's adam yates finished third as peter sagan won stage five of the tour de france in alpe d'huez .\nthree men have been arrested after police seized cannabis with a street value of more than # 300,000 on the isle of man .\napple has updated its iphone and ipad operating system to require two-step verification to access icloud accounts .\na memorial service has been held in somerset for one of the four men who went missing after their yacht capsized off the coast of massachusetts .\ngunmen have attacked a major hospital in the afghan capital , kabul , killing at least 20 people .\nformer manchester united and juventus striker carlos tevez has joined chinese super league side shanghai sipg .\nregulated rail fares in the uk will rise by regulated price index -lrb- rpi -rrb- inflation rate of 1 % from 1 january , the rail delivery group -lrb- rdg -rrb- has announced .\nconservative ben houchen has been elected as the first conservative mayor of the tees valley .\nthe whole presence of rolls-royce in derby could be `` put at risk '' , a unite union official has said .\nthe aftermath of the bomb attack at the erawan shrine in the centre of the thai capital , bangkok , has been dominated by the government 's response .\nif you want to see one of the biggest bands in the world perform in your town or city , you 're going to have to pay a lot of money .\nfrankie raymond 's late strike gave dagenham and redbridge a 1-0 win over york at victoria road .\nin his final year of high school , mohit kohli was told by his teacher he would never be able to build a robot .\na man killed his baby son by shaking or throwing him , a court has heard .\na former police community support officer -lrb- pcso -rrb- has been jailed for three years for spying on a violent drug dealer .\nthe national union of students -lrb- nus -rrb- in wales has called on the home secretary to stop the `` callous and inhumane deportation '' of a university student .\nthe scope of the us investigation into corruption at fifa is `` not limited '' , says us attorney general loretta lynch .\nmercedes technical director paddy lowe is to leave the team at the end of the season .\nmore than half of england 's beaches do not have lifeguards on duty during the summer , figures show .\nbritain 's naomi shuker won her second grand slam title with victory in the wheelchair mixed doubles final at the australian open in melbourne .\nflanker cj stander says ireland will not plan extra protection for scrum-half conor murray in saturday 's six nations game against scotland .\npremiership side bath have signed two 21-year-old hookers ahead of next season .\ntweaking the immune system with a drug could slow the spread of cancer , a study suggests .\nengland 's tommy fleetwood missed a birdie putt on the first play-off hole as bernd wiesberger won the shenzhen international .\neducation secretary michael gove and home secretary theresa may have clashed over the government 's handling of extremism .\nwork has begun on a project to restore machinery at a cornish mine that featured in the hit bbc drama poldark .\ndurham jets claimed their first t20 blast win of the season with a three-wicket victory over leicestershire .\nthe catholic priest , fr alec reid , who was pictured praying over the bodies of two british soldiers murdered by the ira , has died .\nscientists have figured out how to control the fluid dynamics of a 3d printer 's dribbling glass .\nanthony foley once told a story about a try .\nfour people have been taken to hospital after a car crashed through railings on a seaside promenade in north wales .\nnehemiah conteh was one of the first people to contract ebola in sierra leone while working with the world health organization .\na us women 's college has removed bill cosby 's endowed professorship after dozens of women accused the comedian of sexual assault .\nprime minister theresa may is the most powerful woman in the uk , according to a list compiled by the bbc .\nstar wars fans were treated to a new twist on the sci-fi saga on april fools ' day after the cern centre in switzerland claimed to have discovered the force .\none of china 's most famous folktales is getting a reboot in the west .\nfirefighters have been called out to homes in dorset where smoke has been seen coming from a controlled explosion device .\nfast bowler boyd rankin has announced his retirement from test cricket to return to ireland .\nyork city have signed hull city midfielder connor dixon on loan until the end of the season .\nthe artist behind sgt pepper and everybody razzle dazzle has been honoured by liverpool city council .\na 50-year-old woman from india 's dalit community has been beaten up by a group of upper-caste women in the western state of maharashtra .\nat london 2012 , great britain won 24 medals .\ndavid cameron `` deserves to find a role commensurate with his talents '' , a conservative mp has said , amid speculation he could become the next nato secretary-general .\nmore than 200 jobs could be axed at southampton city council under plans to save the authority millions of pounds .\nmembers of the rmt union at virgin trains east coast have voted in favour of strike action .\nwest ham manager slaven bilic says he will not panic despite his side being knocked out of the europa league .\npeterborough united manager grant mccann says his side 's league one play-off hopes are still alive , despite tuesday 's 3-1 home defeat by southend .\nplans have been lodged for more than 700 student accommodation units in belfast city centre .\na police patrol car has been damaged by a brick thrown through its windscreen in newtownabbey , county antrim .\nit is not every day that a university campus is filled with teenagers dressed in their easter finest .\nmercedes formula 1 boss toto wolff has already lost nico rosberg .\na drug that clears the build-up of amyloid in the brain may hold the key to treating alzheimer 's disease .\na 15-year-old girl has been seriously injured after being hit by a car in inverness .\nwhen vladimir putin met marine le pen , the leader of france 's far-right national front , at the kremlin , he made it clear he was not trying to influence the french presidential election .\ndisney 's live-action remake of beauty and the beast has been cleared for release in malaysia .\nospreys captain alun wyn jones says it is `` disappointing '' the welsh rugby union -lrb- wru -rrb- and region have not been able to agree a new deal .\ndetails of more than 400,000 members of a muslim dating website have been leaked online .\nscotland 's justice secretary michael matheson is to hold a summit to discuss the impact of the uk 's vote to leave the eu .\na fin whale has been found dead on a beach in norfolk .\nthe us senate has rejected a republican plan to repeal and replace former president barack obama 's health law .\nthe assembly 's finance committee is to meet for the first time since new rules came into effect .\nbody-camera footage shows a father in the car with his six-year-old son before police opened fire , killing him and his son , a lawyer has said .\nat least 30 people have died in a fire that broke out at a school in northern nigeria , officials say .\nformer crewe alexandra manager jim collins says he tried to sign manchester united striker marcus rashford last summer .\nfirefighters have been tackling a large gorse fire in devon that has injured six people .\nthe government is to triple or even quadruple the discounts available to social housing tenants who buy their own homes , the bbc understands .\nnorth korea has reportedly failed to fire a new mid-range ballistic missile .\nglasgow warriors will be `` working hard '' to keep their best players at scotstoun next season , according to forwards coach mike blair .\na private member 's bill to change the lyrics of canada 's national anthem has passed its first parliamentary hurdle .\nnorthern ireland is among the best performing education systems in europe , according to an international study .\nrangers defender rob kiernan will face a disciplinary hearing after allegedly punching st johnstone 's ryan anderson .\na letter has been sent to a council opposing plans to merge two secondary schools in gwynedd .\na sinkhole has opened up on a golf course in thailand in southeast asia .\nnorthern ireland 's kris meeke secured his third world rally championship win of the season at rally portugal after a late crash .\nthe bempton cliffs nature reserve in somerset has reopened after a # 6m redevelopment .\nchina has executed 11 men for terrorism-related crimes in the western region of xinjiang , state media say .\nengland opener jason roy says he was unaware he was five runs short of becoming the second highest scorer in one-day international history .\nfirst minister arlene foster has said there are `` huge opportunities '' for northern ireland outside the european union .\njeremy corbyn has said he expects labour to become a `` very strong campaigning base '' for the next general election .\nthe police federation -lrb- pfni -rrb- has called for the police ombudsman 's office to be given greater powers .\na speedway rider has died in a crash at a track in suffolk .\natletico madrid defender luis says his team-mates fear barcelona will reach the semi-finals of the champions league .\ndavid cameron has said the uk 's new deal with the eu will `` strengthen britain 's special status '' in the 28-nation bloc .\nmore than 100 people have attended a meeting to demand action over a large rubbish fire .\na court in afghanistan has sentenced a man to death for repeatedly raping his daughter .\nfemale muslim clerics in indonesia have issued a fatwa against child marriage .\nsaudi arabia has warned that a new law allowing families of 9/11 victims to sue the us could have a negative impact on international relations .\nformer dup minister jonathan bell has claimed that two dup advisers tried to prevent him from reducing the tariff on the renewable heat incentive -lrb- rhi -rrb- scheme .\nformer first minister alex salmond has delivered his final speech to the scottish parliament .\nformer bbc radio 1 dj chris denning has pleaded guilty to a string of sex offences dating back to the 1960s .\nhearts head coach robbie neilson was unhappy with a challenge on midfielder jack grimmer during his side 's win over estonian side flora tallinn .\nthe first of eight new royal navy frigates will be built in glasgow next summer , the defence secretary has announced .\na bar which served a cocktail containing liquid nitrogen , which led to a teenager having part of her stomach removed , has been fined # 20,000 .\nmorecambe manager jim bentley says his side must keep their feet on the ground after a good start to the league two season .\na 21-year-old man has been remanded in custody for allegedly shooting dead a student and wounding another at a residential school in southern india .\nstudent finance payments have been suspended at a cardiff college amid allegations of fraud .\na 20-year-old man charged with throwing a banana peel at comedian dave chappelle in santa fe , new mexico , has pleaded not guilty .\ndavid cameron is `` proud '' of the free school meals for infant children , downing street has said .\nst johnstone manager tommy wright says he will take the `` hardest punishment '' against danny swanson and callum foster following their clash in the 1-0 defeat by hamilton .\nthe man who led fifa 's investigation into the award of the 2018 and 2022 world cups has had his ban reduced from all football-related activity to two years .\nlewis hamilton and nico rosberg have been warned they face `` significant penalties '' if they continue to crash .\nthe number of young people in england buying their own home has halved in the past 20 years , according to council leaders .\npeople are being urged to record the locations and forms of medieval witches ' marks found across england .\nfive uk universities have been given accreditation by intelligence agency gchq to run master 's degree courses in cyber security .\nthe father of a six-year-old girl who drowned at a holiday park has told an inquest he did not ask if there was a lifeguard at the pool .\nnorth korea says it has made `` significant progress '' in developing nuclear weapons .\nwolves midfielder conor coady says he would `` go ballistic '' to score against his former club liverpool .\nthe cost of renting a beach hut on dorset 's jurassic coast is set to rise due to a lack of demand , according to a beach hut association .\n`` my son 's life could have been saved if the police watchdog had done its job properly . ''\nthree of the children of the late us radio dj casey kasem are suing his widow for elder abuse .\nthousands of people gathered outside the kennedy space center in florida on monday morning to watch the space shuttle atlantis blast off .\nsexual violence against detainees is widespread in egypt 's prisons , according to the us-based human rights watch .\ncornish pirates say scrapping the promotion play-offs could lead to the championship becoming a `` non-entity '' .\nthe 2016 european championship will take place in france .\nthe met office has warned of gale force winds across parts of wales on monday .\nthe assembly finance committee has said it has received a letter from the finance minister about the sale of nama 's northern ireland loans .\nfive men have been arrested on suspicion of murder after a 21-year-old was shot dead in birmingham .\nmark ronson 's uptown funk has topped the uk singles chart a week before its official release .\nthe bbc 's 10 o'clock news is to be extended to an hour-long edition .\nwikileaks has said it will release further details about the cia 's cyber-weapons programme once it has `` effectively disarmed '' .\nroedd achosi ei marwolaeth trwy yrru 'n beryglus yn llys y goron caerdydd wedi cyfaddef achosi anafiadau difrifol i joshua deguara ddydd gwener .\nthe liquidators of department store chain bhs are expected to decide on monday whether to sell the business as a going concern .\nvictims of sex crimes in england and wales would have a new right to challenge police decisions not to prosecute under labour plans .\nmillions of savers are being warned that they may not get compensation if their bank or building society collapses .\nthe belfast telegraph is set to move to a new premises in the city centre .\na secondary school has been forced to close for three days because of an outbreak of the norovirus bug .\nmichael doughty 's injury-time goal rescued a point for swindon in mark williams ' first game in charge of the swindon town .\ntributes have been paid to one of the world 's most famous celebrity memorabilia collectors .\nscientists believe they have identified the source of the ebola outbreak in guinea - a hollowed-out tree where seven-year-old emile konate played .\nthe unmarked graves of four young girls who were killed when a world war one shell exploded at their home in wrexham have been identified by historians .\nmalaysian police say they have found the body of a prosecutor in an oil drum in a river in the capital , kuala lumpur .\nchampionship side sheffield wednesday have signed leicester city striker gary taylor-fletcher on loan until the end of the season .\na long-delayed road linking taunton with bishops lydeard has opened to traffic .\nmore than 100 scots soldiers are preparing to deploy to afghanistan for the first time since the british combat mission ended .\nboys are performing better at a-levels than girls for the first time in 17 years , official results show .\npremier league and championship clubs spent more than # 1bn on agents and intermediaries in the 2016-17 season , figures show .\na former gp who falsified clinical trials is to have his name removed from the medical register .\na girl is in a critical condition in hospital after being shot in the head in a `` domestic-related incident '' in east yorkshire .\nfrance fly-half camille lopez kicked his side to victory over scotland in the six nations opener in paris .\na security contractor has been sacked by the us secret service for carrying a gun in a lift with president barack obama .\nmining giants bhp billiton and rio tinto have agreed a settlement over the deadly collapse of a dam in brazil last year .\nfrance 's nicolas mahut and pierre-hugues herbert are considering wearing a special shirt at the atp world tour finals in london in tribute to the victims of the paris attacks .\nthe bbc has learned that the us national security agency -lrb- nsa -rrb- has been collecting the phone records of verizon customers under a top-secret court order .\noscar-winning producer richard chartoff , who produced the rocky films , has died at the age of 83 .\nchinese artist ai weiwei has used lego bricks donated by the toy company to make a new work to defend `` freedom of political art '' .\nus first lady michelle obama is to appear on james corden 's carpool karaoke show .\na second man has been arrested in connection with the alleged abduction of british model chloe ayling .\nwarrington wolves beat widnes vikings to reach the challenge cup quarter-finals .\nleaving the european union would be a `` big mistake '' for the uk , david cameron has warned .\nphilippine president rodrigo duterte has said his country will maintain all of its military alliances .\npresident : hassan rouhani\nus secretary of state rex tillerson has said relations with russia are at a `` low point '' .\nfidel castro is one of the world 's most revered and controversial leaders .\nbenfica won the portuguese title for the eighth time in nine seasons with a comfortable win over guimares .\none of ukraine 's most prominent opposition figures , viktor kalashnikov , has been found dead at his home in the capital , kiev .\nnorthern ireland 's politicians have been warned the failure to pass the welfare reform bill could jeopardise the devolution of corporation tax .\na body has been found in the search for a hillwalker who went missing in the cairngorms .\nfrance 's far-right national front -lrb- fn -rrb- party and its leader marine le pen may have defrauded the european parliament out of more than 2m -lrb- # 1.4 m ; $ 2.2 m -rrb- .\na rare world war two spitfire has failed to sell at auction for the first time in 70 years .\nthe royal bank of scotland has revealed the design of its new polymer # 10 note .\na police helicopter has been targeted by a laser beam in the sky .\ncanada has resumed imports of beef from the european union -lrb- eu -rrb- after a four-year ban over the mad cow disease scare .\na flood-prone railway line in oxfordshire has reopened after being closed for more than a year .\ngiannelli imbula scored on his premier league debut as stoke eased past bournemouth .\na rail firm has been accused of going `` over the top '' after announcing live updates of engineering works on the great western main line .\na man has been arrested on suspicion of attempted murder after a 60-year-old woman was attacked at a house in lancashire .\nthe bbc has spoken to a number of teachers in paris about the impact of the charlie hebdo attack on their schools .\nthe fuselage of one of the raf 's last hercules aircraft has been taken on a 300-mile journey .\nireland coach joe schmidt expects new zealand to be `` fully loaded '' for saturday 's rematch in dublin .\ncross-channel ferry operator seafrance has been liquidated , putting hundreds of jobs at risk in the uk .\nthree men have been rescued after their fishing boat crashed into a wind turbine .\nnathan cleverly says his world title fight against juergen braehmer could be his last as a professional .\nbolton 's relegation from the championship was all but confirmed as they lost at brentford .\nsolihull moors claimed their first national league win of the season with victory at bromley .\ndave king , paul murray and barry gilligan have been elected to the board of rangers at an extraordinary general meeting -lrb- egm -rrb- in glasgow .\nbritain 's andy lapthorne won his first grand slam men 's doubles title with partner jordan thompson at the australian open .\nformer dundee united and rangers midfielder jon daly says he would consider returning to tannadice .\nthree rockets have been fired at the israeli city of eilat , police say .\nthe bolivian government has raised the minimum working age from 10 to 14 .\nal-qaeda 's leader in syria , jabhat al-nusra , has been killed in a us drone strike , according to syrian state television .\nt in the park organisers have unveiled a new layout for this year 's festival in perthshire .\na scottish peer has been caught on camera praising china 's investment in tibet , in what appears to be an official conference in lhasa .\nindia recovered from a mid-innings collapse to reach 221-4 on day one of the fourth test against south africa .\nhibernian manager neil lennon has been given a two-match touchline ban .\ncross-channel travel has been disrupted by a strike by ferry workers at the port of calais .\nthe labour party is in danger of `` failing to get the right answers '' , former prime minister tony blair has warned .\npresident : filipe nyusi\nengland and saracens fly-half owen farrell has signed a new three-year contract with the premiership champions .\nneil mccann has been appointed dundee manager on a three-year deal .\nsteven woolfe has been barred from the ballot in ukip 's leadership contest to succeed nigel farage .\nformer england striker tommy wright is in talks to buy a stake in non-league club billericay town , the club 's chairman says .\ncardiff city boss neil warnock says he would not have joined the bluebirds in the summer had he been appointed aston villa manager .\nthe opening hours of a hampshire country park are to be extended .\nengland were denied victory in the first test against pakistan as bad light ended the match in abu dhabi .\nmyanmar 's opposition leader aung san suu kyi has met shwe mann , the former head of the ruling party .\na clinic aimed at helping women who have been raped give birth is to open at the royal london hospital .\ncorey kluber struck out 12 as the cleveland indians beat the chicago cubs 7-2 in game one of the world series in ohio .\npolice have praised the behaviour of the public during the annual guid nychburris celebrations in dumfries .\na mother who was stabbed while walking with her two-year-old daughter has been moved out of intensive care .\nnew zealand captain brendon mccullum has re-signed for middlesex until the end of the 2018 season .\na spitfire that crashed in county monaghan during world war two has been unearthed by archaeologists .\nthe government 's welfare reforms will benefit disabled people , the work and pensions secretary has said .\ndoctors treating an american student who was released by north korea say his condition is `` unresponsive wakefulness '' and not caused by poisoning .\nshares in oil and gas explorer premier oil have soared after the company said its proposed acquisition of german utility e.on would now be completed .\nedf , the french energy group , has reported a 1.8 bn -lrb- # 1.4 bn -rrb- net loss for the first three months of the year .\nthe number of hate crimes reported to police in canada increased in 2015 .\ntheatre director peter bogdanov says he was `` shocked '' when he was accused of indecency for staging a play with nudity .\na man has been taken to hospital after being shot in the leg in cardiff .\nmore than # 1m has been spent on looking for a new cemetery in oxford , despite the city council having run out of suitable land .\nactor geoffrey hughes has died at the age of 74 , his family has said .\nbelfast 's paddy mccomb has upset the odds to beat russia 's artur akavov at the european championships in ukraine .\nauthorities in china have arrested 11 people for spreading `` seditious rumours '' about the tianjin blasts , the state news agency says .\ndavid cameron has said `` tougher rules '' are to be put in place to make sure people who come to the uk as husbands and wives learn english .\na salvage team has begun an initial inspection of the drilling rig transocean winner .\ndiscount retailer b&m has reported a slowdown in sales growth .\na new school campus in east ayrshire is to be named after the late novelist william mcilvanney .\nnigeria 's kenneth omeruo has been ruled out of the rio olympics with a knee injury .\nthe culture minister , carl n chuiln , has taken control of sport ni .\na four-year-old girl who was reported missing has been found safe and well .\ndna evidence has led to a man being convicted of sheep rustling in carmarthenshire , police said .\ncomedian bill cosby has resigned from the board of trustees at his former university , temple university .\nsatellite broadcaster sky has apologised after some of its broadband subscribers in parts of the uk suffered poor speeds .\n`` should scotland be an independent country ? ''\nipswich town have signed striker liam moore from tranmere rovers for an undisclosed fee and brought in former mk dons defender darren spence on loan .\nmanchester united 's ashley young says he hopes his form under manager louis van gaal can earn him a recall to the england squad .\nthe government is considering whether employees should be given a role on company remuneration committees , the bbc understands .\nengland completed a 3-0 series whitewash over new zealand with a 32-23 win at twickenham stoop .\na van gogh expert has questioned the authenticity of a painting hung in a reading cafe as part of an art festival .\nbritain 's kyle edmund takes on serbia 's janko tipsarevic in the opening match of their davis cup quarter-final in belgrade .\nat least 14 people have been killed in a shootout between rival drug gangs in northern mexico , officials say .\nthe defence lawyer for a former guatemalan army general , efrain rios montt , has been shot dead .\nrussia 's athletics federation has been told to `` dance on the table '' and `` sing a song '' if it wants to return to international competition .\njamie dickens will fight for the wba super-bantamweight title against guillermo rigondeaux at liverpool 's echo arena on 26 may .\nbritain 's andy murray says he is `` not nervous '' about getting married and is looking forward to the honeymoon .\nrail passengers are being warned to expect widespread disruption next week if a strike by network rail workers goes ahead .\nchelsea have agreed a club-record # 40m fee with paris st-germain for defender david luiz .\ned sheeran has surprised fans by playing two sets at this year 's reading and leeds festivals .\na metro rail service has begun in the southern indian city of chennai -lrb- madras -rrb- .\na wildlife charity has called for a ban on discarded fishing lines at lakes at a country park after a swan was injured .\ncomedian eddie izzard has completed 27 marathons in 27 consecutive hours to raise money for the nelson mandela foundation .\nthe world premiere of batman v superman : dawn of justice has been described as `` amazing '' by fans on social media .\nnicola sturgeon has described uk government plans for a temporary customs union with the eu as `` nonsensical and ridiculous '' .\nbelfast giants moved level on points with elite league leaders cardiff devils after beating the capitals 3-0 at the sse arena on wednesday .\na man died after he was shot with a taser by a police officer , an inquest has heard .\ngerman airline lufthansa is to charge passengers who book flights via online travel agencies a `` distribution cost '' .\nchildren taken into care by social services after their parents were arrested on suspicion of terrorism offences should be returned to their parents , a high court judge has ruled .\nthe editor of the french satirical magazine charlie hebdo , stephane charb , has written a book defending the magazine 's right to publish cartoons .\niran will not decommission its arak heavy-water nuclear reactor until a deal with china is finalised , the country 's nuclear chief has said .\nparents are taking legal action against a council over changes to school transport .\ntoo many older people living in care homes `` quickly become institutionalised '' , a report has said .\nwycombe wanderers won at 10-man dagenham & redbridge to move into the league two play-off places .\nactress robin wright has revealed that she was paid the same as her house of cards co-star kevin spacey .\natheist richard dawkins has praised the results of the 2011 census in wales for showing a decline in the number of people saying they have no religion .\nformer cia director david petraeus has said he would serve in donald trump 's administration , if asked .\ndundee moved up to sixth in the scottish championship with a comfortable win over ross county .\nthree british men arrested in the united arab emirates on suspicion of spying are to appear in court .\nindian author pranab mukherjee is the favourite to win this year 's man booker prize for fiction .\na north korean man arrested over the death of kim jong-nam has accused malaysia of seeking to smear him .\noxford united were held to a draw by struggling newport county in league two .\nnational league side macclesfield town have signed striker shaun marsh from dover athletic on a two-year deal .\nthe departure of the boss of tata steel europe has left `` an element of doubt '' about the future of the company , a union has said .\nmore than half of scotland 's councils have cut their spending on school patrol services in the last three years , according to a bbc investigation .\nemoji flags for wales , scotland and northern ireland are set to be available to use on computers , tablets and smartphones .\nformer england striker andy cole says he is still taking medication to help him with his recovery from a kidney transplant .\nian hutchinson has been airlifted to hospital after crashing in the final superbike race of the isle of man tt .\none of two men accused of illegally hunting a fox in the borders has told a court he was present when a fox was shot .\nshares of japanese carmaker toyota closed down 4.5 % on friday .\njeremy corbyn has said he wants to scrap the `` devastating '' cap on benefits .\ndavid warner 's century helped australia draw the third test against the west indies .\na man was removed from a train at slough station and questioned twice by police after wires were found in his backpack .\n`` i think it 's very good for me to work on walls . ''\na former police community support officer -lrb- pcso -rrb- has been jailed for having sex with vulnerable women he met while on duty .\nthe body of the first victim of the airasia plane crash has been handed over to her family for burial .\nhow do you become a professional cricketer ?\ntwo goals from sone aluko and tom cairney gave fulham victory at brentford .\nbradford eased into the third round of the fa cup with a comfortable win over non-league chesham .\na man has been charged with raping a young boy in whitehaven .\nleeds united owner massimo cellino has told the club 's players they must live in the city next season .\ndirect flights between dundee and london stansted will continue for another two years .\nnotts county ladies have defended their decision to join the men 's super league , saying it will benefit both sides .\njcb , one of the uk 's biggest digger manufacturers , has left the confederation of british industry -lrb- cbi -rrb- .\na police force has become the first in england and wales to officially classify misogyny as a hate crime .\nexeter chiefs head coach rob baxter says he was not surprised by the club 's lack of international call-ups .\nliam dawson says he is delighted to have been recalled to the england squad .\nmore than one in five couples in the uk are unhappy in their relationships , according to a study .\nfast-food chain pret a manger has said it will pay teenagers who take part in a week-long work experience .\nan raf serviceman whose medals were stolen from his car in lancashire has been `` overwhelmed '' by the support he has received on facebook .\na dog that was shot in the head with a bolt from a crossbow has made a `` miraculous '' recovery , the rspca said .\nworld number one jordan spieth will take a four-stroke lead into the final round of the masters after rory mcilroy 's hopes of a career grand slam suffered a blow .\na woman who died from blood poisoning was not given the `` best chance '' of survival , a coroner has concluded .\nin case you missed it : a round-up of interesting technology-related links shared over the weekend .\nthe european commission president , jean-claude juncker , has unveiled plans to redistribute 160,000 migrants across the eu .\nclimate change could lead to the loss of more than a third of the world 's animal and plant species by 2100 .\nlazio have been ordered to play their next two europa league games behind closed doors .\nchelsea have signed midfielder cesc fabregas from barcelona on a four-year deal .\nswansea city head coach paul clement says his side need to respond quickly to their 4-0 premier league defeat by bournemouth .\na student has been crowned the winner of a competition to find the uk 's best alternative model .\nwhen michael o'neill was appointed northern ireland manager three years ago , the football association of ireland -lrb- fai -rrb- decided not to offer him a job .\ndelays in discharging patients from hospital are continuing to rise , according to scottish government figures .\nthe most deprived areas of england have the lowest proportion of pupils taking a-levels in state schools , analysis of official figures suggests .\nthe government 's counter-terrorism strategy , prevent , should be reviewed following reports one of three london schoolgirls who travelled to syria is dead , an mp says .\nrussian sports minister vitaly mutko says it is `` high time '' for athletes to retire from athletics .\na new anti-extremism campaign has been launched in glasgow following the murder of shopkeeper asad shah .\nleague one side bristol rovers have signed midfielders ryan sweeney and dominic telford from stoke city on two-year deals .\nscotland defender russell martin admits saturday 's euro 2016 warm-up match against france in metz is likely to be his last appearance for the national team .\nit 's now two weeks until the referendum on the uk 's membership of the european union .\nandy murray will face british wildcard naomi broady in the first round of the wimbledon men 's singles .\nqueens park rangers say steven caulker suffered a cut to his head during a sunday lunch at the club 's training ground .\nfacebook has been ordered by a german data watchdog to stop sharing users ' data with its parent company , whatsapp .\nwomen 's super league one side glasgow city have signed sunderland midfielder jess staniforth and former arsenal defender erin sjoman .\ntwo polish police officers have been sent to a town where a polish man was murdered in what police believe was a racially-motivated attack .\nthe angolan government 's decision to abandon a controversial new law that would have made it a crime to criticise the state online has come as a huge blow to civil society and journalists .\nred bull 's daniel ricciardo said he did not make the call to pit for the second race in a row at the monaco grand prix .\nlewis hamilton cruised to victory in the mexican grand prix as he and mercedes team-mate nico rosberg took another step towards the formula 1 title .\nmichael gove has told danish fishermen that access to the uk 's fisheries after brexit will be limited .\na `` clown purge '' in australia appears to be a copycat of the `` killer clown '' craze in the us .\nsunderland midfielder emanuele giaccherini has joined italian side fiorentina on a season-long loan .\nkenya 's opposition leader raila odinga has called a general strike to protest against the disputed presidential election .\nthere 's been a big rise in dog poo on beaches in scotland .\nmps have voted to raise vat from 17.5 % to 20 % in april .\nformer european champions parma have been relegated from italian football 's second tier .\nafter more than two years of writing this blog , i have decided to leave the bbc to concentrate on freelance presenting .\neastleigh have signed portsmouth striker adam tubbs on a short-term deal .\nus drinks giant coca-cola has reported a drop in profits for the first three months of the year .\nedinburgh capitals head coach corey johnston admits his team still have work to do if they are to climb the elite league table .\na new female osprey has laid her first egg at a perthshire nature reserve .\nthe families of those killed in the birmingham pub bombings have been told they can not apply for legal aid .\npakistan says it has carried out air strikes on militant hideouts in the north-west , a day after karachi airport was attacked .\nvlogger tomska is one of the biggest names in the world of youtube .\nthe us tried to kill one of al-qaeda 's most prominent leaders in yemen last week , reports say .\na driver on the m11 in suffolk had a lucky escape after her car was stopped by a police patrol car .\nbritain 's jamie mcdonnell will defend his wba world bantamweight title against argentina 's juan carlos rosas on 26 november .\nfrance 's justice minister sylvie goulard has resigned .\na swan has been rescued after getting stuck on the roof of a shop in cardiff .\nengland 's elite players `` deserve '' to be paid millions of pounds , says rugby players ' association boss damian hopley .\nit is one of the most under-diagnosed conditions in the world .\nnewcastle falcons director of rugby dean richards says his side 's improvement this season has surprised him .\na cash machine has been stolen during a ram-raid on a supermarket in oxford .\na takeaway where a 15-year-old girl died after suffering a suspected allergic reaction to curry has been closed .\na woman and her young child have been kidnapped and raped by two men in a car .\nvote leave , the campaign for the uk to leave the european union , are offering a # 50m prize to anyone who correctly predicts the result of all 51 games in the euro 2016 football championships .\ncharlton athletic have launched an investigation after afc wimbledon manager karl robinson was heckled during saturday 's league one game .\nbarclays has agreed to pay $ 92m -lrb- # 55m -rrb- to the us state of new york to settle claims that it rigged the libor interest rate .\na young writer has won a competition run by children 's author jacqueline wilson , with her story about a chimpanzee !\ngary madine 's first-half goal helped bolton overcome league one rivals sheffield united and reach the efl cup third round .\na mental health trust has apologised to the family of a teenager who took her own life .\nthe european union has agreed to set up a single list of tax havens in the wake of the panama papers scandal .\nblackberry has launched a new android-powered phone in the us .\na 42-year-old man who died after being hit by a car in caerwent has been named by police .\nmesut ozil says he wants to stay at arsenal and will discuss his future once the club 's pre-season tour of australia and china is completed .\na piece of coal from the last deep coal mine in england has been presented to the mayor of doncaster .\n-lrb- close -rrb- : us stocks closed higher on wednesday , led by gains in health care and energy companies .\nthe national portrait gallery -lrb- npg -rrb- has launched a fundraising campaign to buy a rare 18th century portrait of an african slave trader .\nscientists in norway say they have identified the mysterious clouds in one of the world 's most famous paintings .\nirn bru maker ag barr is to restart glass bottling at one of its plants after announcing 100 job cuts .\na scottish man and an irish woman have died after their yacht ran aground off the coast of cape town in south africa .\nwomen applying for jobs in germany who wear a headscarf are more likely to be rejected than those who do not , a study has suggested .\nrafael nadal and roger federer will lead the charge on day two of the us open in new york on tuesday .\na man has been shot dead in a car in sheffield .\nsport ireland boss john treacy says funding for irish boxing is at risk because of a `` deeply divided '' board .\nscientists believe they have identified the source of china 's famous `` yellow river flood '' .\ntippi hedren has said alfred hitchcock sexually harassed her and threatened to ruin her career .\nsuper league side salford red devils have signed new zealand international forward tyrone mccarthy from nrl side cronulla sharks .\nmore than 3,000 nude photographs taken during hull 's city of culture celebrations are to go on show .\na third met police officer has been sacked over the `` plebgate '' row .\nitalian police have arrested dozens of people suspected of being members of a mafia clan accused of running a migrant centre .\nmore than 90 % of police officers in england and wales believe morale in the service is low , according to a survey .\nwho deserves a blue plaque ?\nthe uk will not `` act in isolation '' in the fight against terrorism , the home secretary has said .\nnigeria 's military has offered a reward for information leading to the capture of the leaders of the islamist militant group boko haram .\ntom latham and ben steel hit centuries as durham dominated day one against gloucestershire at cheltenham .\nthe augmented reality game pokemon go has been released in more than 100 countries around the world .\ngreek prime minister alexis tsipras has delayed the start of talks with eu creditors on a third bailout .\nthe world meteorological organisation -lrb- wmo -rrb- says the current el nino episode is the strongest on record .\nhuman remains have been found in east lothian by police investigating the disappearance of 59-year-old suzanne tiffney .\nsaul ` canelo ' alvarez says he will fight middleweight champion gennady golovkin after beating amir khan in las vegas .\na man in his 20s is in a critical condition in hospital following a serious sexual assault in west belfast .\nhundreds of people have protested against plans for a new power station in norwich .\nit 's been a year of extreme weather in the uk .\nfrance 's honorary consul in the turkish resort of bodrum has been caught selling boats to migrants .\na health and safety notice has been served after a fire broke out at a potash mine on the north sea coast .\nred bull have ruled out a deal with mercedes to supply engines for the 2015 formula 1 season .\nplans for a motor racing track in ebbw vale would have been `` well outside the natural agglomeration of these industries '' , a motor racing circuit owner has said .\nsix teenagers have been found dead at a birthday party in a wood-burning hut in southern germany , apparently from carbon monoxide poisoning .\ngreat britain 's tom daley missed out on olympic gold in the men 's 10m platform after a disappointing semi-final .\nsir john major has been accused of `` absolute dismissal of democracy '' for suggesting a second referendum on brexit could be held .\nthe copper box at london 's olympic park was a hive of activity during the 2012 games .\na rolls-royce once owned by 1950s hollywood actress diana dors has sold for $ 3m -lrb- # 1.9 m -rrb- at auction in london .\nfrance has held a memorial service for the 130 people killed in attacks in paris last friday .\nmasters champion sergio garcia shot a five-under-par 67 to be tied third after the first round of the bmw international in germany .\nwhen you look at a humpback whale 's foetus it 's easy to see why it 's one of the world 's most endangered species .\n-lrb- close -rrb- : shares in asia were mostly higher on friday , shrugging off a lacklustre lead from wall street .\nscotland 's beaches have been rated as some of the best in the world by the world health organization .\na medieval railway bridge has been opened to the public for the first time in almost a century .\ntim peake 's been back on board the international space station .\njake cassidy 's header rescued a point for hartlepool in their national league draw at macclesfield .\nthe boss of ride-sharing firm uber has said the firm is losing $ 1bn -lrb- # 692m -rrb- a year in china , according to reports .\nthe disappearance of malaysia airlines flight mh370 has led to a deal that will allow planes to be tracked by satellites .\ngreece 's new left-wing government has set out its reform agenda in its first major policy statement since taking power .\nan attempt to raise money for a video game on crowdfunding site kickstarter has been pulled after it was found to be a fraud .\nplans have been submitted to the university of reading to convert two grade ii listed buildings into flats .\na bid to create a solent devolution authority appears to be `` dead '' , council leaders have said .\nthe uk 's competition watchdog says pfizer and flynn pharma abused their dominant positions in the uk market for a drug used by parkinson 's patients .\nscientists are sending a robot down to the deepest part of the ocean to find out what 's there .\nquestions about how a convicted murderer came to be in the uk will be raised at an inquest into the death of schoolgirl alice gross , a coroner has ruled .\nan australian author has received an email informing her she has won a $ 1m -lrb- # 650,000 -rrb- literary award .\nleague two side colchester united have signed coventry city midfielder andy reid on a one-year deal .\nthe european court of justice has ruled that travelling time should be counted as work for mobile workers .\na major search operation for a kayaker reported to be missing off the coast of county down has been called off .\nthousands of christians have fled the iraqi town of qaraqosh after it was captured by islamist militants .\ngreat britain 's tom benson won gold in the men 's triathlon at the european games in baku , azerbaijan .\nrangers have signed northern ireland defender lee hodson from mk dons .\nthe welsh liberal democrats have pledged to create 100,000 new apprenticeships over the next five years .\nthe independent newspaper is to close its print editions at the end of march .\nmorgan freeman is to receive the american film institute 's lifetime achievement award .\na police officer who saved a man 's life after he fell from a town hall window has been honoured .\ntwo girls accused of stabbing a classmate to please the horror character slender man will be tried as adults , a us judge has ruled .\nstephen maguire said he was `` embarrassed '' by his failure to show up for his first-round match at the world snooker championship .\nafc wimbledon have signed millwall defender che adams abdou on a two-year deal .\nformer manchester united and netherlands manager louis van gaal has announced he is retiring from coaching .\na woman with a grade 4 brain tumour who postponed her wedding to raise money for charity has died .\na pair of 18th century porcelain cups and saucers have been stolen during a burglary .\nengland and wales have accused each other of scrummaging illegally in this year 's six nations championship .\nhigh street shoe retailer brantano has gone into administration .\nhe is one of belgium 's most famous footballers .\nthe full text of prime minister theresa may 's letter to european council president donald tusk announcing the uk 's intention to withdraw from the european union :\na glasgow oak planted by suffragettes in 1909 has been named scotland 's tree of the year .\na new cross-border railway should be built in the scottish borders , according to a report .\nnorthern ireland 's finance minister has said he will not be able to produce a budget before the end of july .\nthe number of children referred to a specialist service for help with gender issues has more than doubled in the past five years .\naustralian police have arrested a 19-year-old man and a 15-year-old girl in sydney on suspicion of terrorism offences .\ncyclists have been banned from riding in a nottinghamshire town centre ahead of the tour of britain race .\njapan 's emperor akihito is considering abdication , reports say .\nthailand has cancelled the launch of a human rights watch -lrb- hrw -rrb- report in bangkok , citing security concerns .\na school in kent has banned pupils from playing the game of tag , saying it is `` too dangerous '' .\nsunderland and england footballer adam johnson has denied child sex charges .\nwhen roger goodell steps down as nfl commissioner at the end of the year , it will be the end of an era for the sport .\nospreys fly-half dan biggar is fit to face the scarlets on boxing day after recovering from a hamstring injury .\nbolton midfielder fabrice muamba was `` dead '' when he collapsed during saturday 's match at tottenham , his surgeon dr jonathan tobin has told the bbc .\nthe ousted chairman of indian industrial giant tata sons has launched a scathing attack on the company and its board .\nthe father of a boy who went missing in alabama 14 years ago has been charged with abduction .\na palestinian has been shot dead after driving a car into two israeli soldiers in the occupied west bank , killing one and injuring the other .\ncontroversial plans to frack for shale gas in north yorkshire are expected to be approved by councillors on friday .\nyou might think that a computer in a cloud is a computer in a cloud .\nan exhibition of rare and endangered animals has opened at windsor castle .\nnewport gwent dragons have named their squad for the 2016-17 pro12 season .\n-lrb- close -rrb- : wall street markets closed higher on wednesday , boosted by positive data on the us service sector .\nnurses wanting to work in the south of england will be offered free accommodation in return for their application .\nthe village of wukan in guangdong province is on the verge of a civil war .\narcade fire have headlined the main stage at glastonbury , hours after lightning forced the festival to close early . arcade fire took to the stage shortly after 22:00 bst , their arrival heralded by a man dressed from head-to-toe in a mirrored suit .\nfrench muslims are opening their mosques to the public in a bid to counter the '' cliches '' about islam .\na man has appeared in court accused of kidnapping and assaulting a police officer .\none in every 100 babies born in england in 2015 was born addicted to drugs , figures obtained by the bbc show .\na man has been arrested on suspicion of murdering a woman who was found with head injuries in her east london home .\nbath 's trip to welford road to face leicester on saturday will be a huge occasion for both clubs , writes former bath and england centre matt guscott .\na petrochemical company has threatened legal action after the national trust refused to let it survey land for shale gas .\nthe nelson mandela foundation -lrb- nmf -rrb- has called on south africa 's president jacob zuma to step down .\nfifteen unregistered schools are still operating in england , the schools watchdog says .\na crane has been used to remove drugs from the roof of a prison .\nmadonna 's released the first video from her new album , mdna , on snapchat .\nwork has started on the first phase of a # 100m shopping development in oxford .\nfacebook has taken down a post on its platform in which the name and photograph of a 26-year-old man who was shot in west belfast have been published .\ntorquay were promoted to the national league after beating north ferriby at plainmoor .\nmoors murderer ian brady has lost his bid to be transferred to a scottish prison .\noscar-winning actor matthew mcconaughey has volunteered to drive students home from the university of texas at austin .\na 19-year-old woman has been raped after being picked up by a man in a car in edinburgh .\nin our series of letters from african journalists , film-maker and columnist joseph warungu looks at some of the human actions that will take place in africa in 2017 .\ncambridge 's winless start to the league two season continued with a 2-1 home defeat by morecambe .\nthe conservatives spent millions of pounds on `` highly personalised and nasty attack adverts '' against labour candidates at the general election , the party has claimed .\nwest ham have signed norway midfielder havard nordtveit from borussia monchengladbach for an undisclosed fee .\na lifeboat crew member has said he has been sacked by the rnli .\nthe chairman of sports direct , keith hellawell , has accused `` extreme political , union and media '' scrutiny of the firm of damaging its reputation .\nthe us justice department is ending a 10-year ban on recording interrogations of criminal suspects .\ntwo north wales hospitals have been rated `` inadequate '' by the care quality commission -lrb- cqc -rrb- .\nbrazil is one of the world 's fastest-growing economies , but its human rights record has been a cause for concern .\nit 's a crisp autumn day in a rust-belt town in the us state of ohio , and a giant marquee has been erected in the middle of the street .\nnew maps of dark matter have been published in the journal science .\nthe founder of the st pauls carnival , carmen beckford , has died at the age of 88 , her son has confirmed .\nnorthern ireland 's hospitals have been under intense pressure in recent years .\nthe royal british legion is launching a campaign to encourage people to think about younger veterans when they donate to its poppy appeal this year .\na road worker has died after being hit by a car in devon .\ncoastguards and lifeboat crews have been searching for a man reported to have fallen into the river tay at broughty ferry .\njustin gatlin ran the fastest 200m of the year at the diamond league meeting in eugene .\nthe city of london 's official representative to the european union has accused france of seeking to undermine the uk 's brexit negotiations .\nthe head of the pensions regulator has been asked by mps to explain why plans to overhaul the bhs pension scheme were not approved .\naberdeen 's appeal against jonny hayes ' red card in saturday 's win against celtic has been rejected .\na woman has been found guilty of raping a teenage girl in a garage more than a decade ago .\nveteran roma captain francesco totti has signed a new two-year contract with the serie a club .\na nursery worker has appeared in court accused of raping a boy .\nbirmingham city captain paul robinson has signed a new one-year contract with the championship club .\na convicted child killer has gone on trial accused of raping and sexually assaulting two teenage girls .\nat first glance , it looks like a homeless man sleeping rough in the rain .\nmillions of people around the world use whatsapp to share news and information .\nvenezuela 's opposition-held national assembly has voted to allow three suspended lawmakers to return to the legislature .\nwarwickshire off-spinner jeetan patel has signed a new one-year contract with the club .\nit would take 28 years to get the welsh rail network up to standard , economy secretary ken skates has claimed .\nhartlepool united have appointed barrow boss paul cox as their new manager on a three-year deal .\nscotland can build on their best-ever finish to a six nations championship , says hooker jonny gray .\nmanchester city midfielder patrick roberts could return to celtic before the transfer window closes .\nkevin pietersen continued his twenty20 comeback with a century as his dolphins side beat the knights in south africa 's t20 super league .\nthe uk economy is facing a `` period of relatively low growth '' over the next two years , a report has warned .\nthe four-day siege at kenya 's westgate shopping centre , in which 67 people were killed by al-shabab militants , has led to changes in security in the country .\nengland beat pakistan by an innings and 88 runs in the second test at trent bridge to take a 2-0 lead in the three-match series .\na van driver who crashed into a parked car in alloa has been jailed for six months .\ncoleraine 's jo-anne sugden became the youngest member of the northern ireland assembly at the age of 22 .\na year-long project to mark the 400th anniversary of william shakespeare 's death has been launched .\nisrael has removed all its security equipment from a holy site in jerusalem , palestinian officials say .\nwork is set to start on a new garden centre in merthyr tydfil .\nboris johnson is behaving `` irresponsibly , recklessly and i fear for his future '' in the eu referendum campaign , lord heseltine has said .\nuber has agreed to pay $ 20m -lrb- # 13m -rrb- to settle two us class-action lawsuits .\nfulham have signed striker anthony cyriac from belgian top-flight side anderlecht on loan until the end of the season .\nthe boxing day tsunami of 26 december 2004 killed more than 230,000 people in banda aceh , indonesia , and in the indian ocean off the coast of sri lanka .\namerican frank mccourt has completed his takeover of french ligue 1 side marseille .\none of scotland 's last remaining shipyards could employ 1,300 people within five years .\nbrighton ended bristol city 's five-game unbeaten run in the championship with a comfortable victory at ashton gate .\na woman has admitted stealing more than # 30,000 from a cancer charity in londonderry .\nbarcelona midfielder ivan rakitic has agreed a new five-and-a-half-year contract with the la liga champions .\nthere 's a bit of a row going on at the moment between labour and the conservatives .\na video purporting to show syrian rebels killing dozens of government soldiers has been posted online .\nmanchester city striker gabriel jesus suffered a fractured metatarsal in saturday 's 2-2 draw at bournemouth .\nlabour leader jeremy corbyn has said he `` regrets the loss of life '' in the iraq war but has not apologised .\npoliticians and commentators have been reacting to the results of the northern ireland assembly election .\nbees and birds that nest later in the year are more likely to die out , a study suggests .\nchelsea manager antonio conte is not concerned by the club 's lack of summer transfer spending .\none of the church of ireland 's most senior bishops has said he supports civil same-sex marriage .\ncameroon defender benoit assou-ekotto has signed for french ligue 1 side st etienne .\nthe bbc is experimenting with mind-controlled technology to help disabled people watch programmes .\nformer lancashire captain glen chapple has been named as peter moores 's successor as head coach of england a.\nforestry companies in wales are calling on the welsh government to increase the amount of woodland being planted .\na nine-year-old boy tried to find his mother in the crush at hillsborough , the inquests have heard .\nthe uk music industry saw record revenues rise in 2016 , according to the british phonographic industry -lrb- bpi -rrb- .\nformer rangers defender alan durrant will not return to the club 's youth set-up next season .\na motorcyclist who died following a crash on the a947 in aberdeenshire has been named by police .\nsearches on google , facebook and other social media sites can be intercepted without a targeted warrant , the uk government has said .\nthe mother of murdered toddler james bulger has urged the government not to release one of his killers .\na girls ' school has cancelled its prom because of `` unacceptable pressure '' on pupils to be slim and fashionable .\nhuddersfield town boosted their championship play-off hopes with a late win at burton albion .\nuniversity staff in wrexham and cardiff have been taking part in a strike in a dispute over pay .\nit 's one of the world 's most famous fictional agents .\npolice investigating the murder of an 82-year-old woman at her home in fife have appealed for information .\na man has been shot in both legs near a primary school in west belfast .\na man has been stabbed to death in sheffield .\na greylag goose has returned to a highlands nature reserve for another season of drama .\nnewcastle united have been promoted back to the premier league after beating barnsley to seal the championship title .\na dentist arrested on suspicion of his wife 's murder has said the last few days have been the `` worst of my life '' .\nwales scrum-half rhys webb has been ruled out of the world cup with a foot injury .\nfifteen firefighters in sicily have been arrested on suspicion of faking a 999 call in order to start forest fires .\nukip is set to announce the full list of candidates to succeed nigel farage as party leader on wednesday .\nitv has commissioned a sixth series of downton abbey .\nstefan owens scored two tries as widnes vikings held on to beat warrington wolves .\njapan and south korea have held their first high-level talks in more than a year .\nthe united nations is calling for international agreement on how to protect the ocean .\nlionel messi has donated a signed shirt to help a double amputee who was hit by a car .\na murder investigation has been launched after a man was found seriously injured in west lothian .\nleague two side gillingham 's bid to sign gala n'gala has been blocked by fifa rules .\na man in his 20s has died following a two-vehicle crash on the a1 in county down .\nnorthern ireland 's tourism industry needs a `` targeted marketing '' campaign to boost visitor numbers , a review has found .\na 90-year-old woman facing deportation from the uk has been given a temporary reprieve .\nformer zambia and ivory coast coach herve renard is set to make his debut as morocco coach in the 2017 africa cup of nations qualifying campaign .\nchina 's imports fell sharply in september from a year earlier as the world 's second largest economy continues to struggle .\nstourbridge manager keith hackett says beating league one side northampton in the fa cup is the club 's greatest achievement .\nwales head coach warren gatland could become an all blacks coach , says new zealand rugby chief executive darren brooke .\nolympic bronze medallist zoe smith will lead great britain 's women 's weightlifting team at the european championships in norway next week .\nformer world number one caroline wozniacki beat sloane stephens to reach the rogers cup final .\na new vein of blue john has been discovered at a cave in the derbyshire dales .\na great-grandfather who escaped from custody in belfast more than 40 years ago has been jailed for four years .\npregnant women should take extra care to avoid the risk of malaria , say doctors .\nchildren 's hospitals in the uk are used by millions of adults and children every year .\ngreat britain won five gold medals on the final day of the european para-athletics championships as james davies , sophie hermitage and david weir all set new records .\narsenal have extended their partnership with boreham wood until the summer of 2021 .\na left-wing party has accused labour of trying to `` intimidate '' its supporters to vote for jeremy corbyn in the party 's leadership contest .\ntom hiddleston has apologised for his speech at the golden globe awards .\nan irish man has been shot dead on holiday in spain .\na search is under way for the remains of a medieval village which was destroyed by storms in gower .\na flagship scheme to help young people find jobs has been temporarily closed .\na man has appeared in court charged with drugs offences following the death of a 15-year-old girl who took a `` legal high '' .\nhull captain harry maguire is available after missing the win over west brom with a calf injury .\nthe time has come for cannabis to be de-criminalised in northern ireland , a former psni chief inspector has said .\nthe rohingya are one of asia 's most persecuted ethnic groups .\nireland 's jason irivine won gold in the flyweight division at the european boxing championships with victory over russia 's evgeny gadzhimagomedov .\ngloucester city football club -lrb- gcfc -rrb- has unveiled plans for a new stadium .\nburundi 's ruling party has won all but one of the 100 parliamentary seats up for election in a vote marred by months of unrest .\nthe us economy added fewer jobs than expected in may , raising questions about the strength of the recovery .\nwigan warriors have been fined # 20,000 after their super league game against widnes was called off on 1 february .\nformer world champion steve davis was knocked out of the world championship qualifiers with a 10-3 defeat by china 's liang wenbo in sheffield .\na public inquiry into the so-called `` battle of orgreave '' during the miners ' strike in 1984 could be delayed .\nnigeria 's military says it has freed 200 hostages held by islamist militant group boko haram in the north-eastern borno state .\ndonald trump has accused his democratic rival hillary clinton of being `` abusive to women '' .\nsweden 's henrik stenson retained his pga tour title with a one-shot victory at the careerbuilder challenge in la quinta .\na doctor has been jailed for three years for stealing more than # 100,000 from a lincolnshire medical practice .\ncouncils should consider selling off expensive social housing to raise money and build more affordable homes , david cameron 's spokesman has said .\nspain 's jon rahm celebrates his first pga tour win at the farmers insurance open at torrey pines .\nfootball 's rule-makers have agreed that players will be banned from revealing any political , religious , personal or advertising slogans on their kit .\nfor many people , inheritance tax -lrb- iht -rrb- is a tax they do n't have to pay .\nliverpool midfielder philippe coutinho is a doubt after limping off in the defeat by crystal palace .\nhibernian ladies reached the last 16 of the scottish women 's premier league cup with a 2-0 win over alloa athletic at easter road .\nwales full-back leigh halfpenny has been ruled out of the world cup with a knee injury .\nbarrow manager paul cox has left the national league club by mutual consent .\ngreen day have apologised to fans after a concert in glasgow was cancelled due to heavy rain .\nmamelodi sundowns coach pitso mosimane says his team must fight for their african champions league crown despite losing 2-1 to kampala capital city authority -lrb- kcca -rrb- in the first leg of their last-32 tie .\ntwo distillers in china have been arrested after food and drug inspectors found viagra in their spirits .\nthe scottish government 's plans to introduce minimum pricing for alcohol have been the subject of a series of legal challenges .\npartick thistle have agreed a deal to re-sign midfielder chris erskine from dundee united , with barry bannigan moving the other way .\nthe us navy has banned alcohol for its personnel on the japanese island of okinawa , after a sailor was arrested on suspicion of drink-driving .\nsteven naismith scored his first goal of the season as everton began their europa league campaign with a comfortable win over german side wolfsburg .\nhsbc has appointed paul tucker , the chief executive of asian insurance giant aia , as its new chairman .\na worker was contaminated with radiation at the devonport naval yard , it has emerged .\nit 's that time of year again where we look back at what 's been going on in the world of music over the last 12 months .\na man who tried to smuggle heroin worth more than # 3,700 into prison has been jailed for two years .\na look back at some of the top entertainment stories over the past seven days .\npolice investigating the rape of a woman in glasgow have appealed for three men to come forward .\na loyalist bonfire in north belfast has been lit on the eve of the eleventh night celebrations .\ntwo high schools in the us state of virginia have been shut down after receiving death threats over a geography lesson .\nkeaton jennings hit a century but graham onions took four wickets as somerset dominated day one against durham at chester-le-street .\na public meeting is being held to discuss plans to regenerate bath .\nthe cost of going on holiday in the uk has risen by an average of 300 % over the past five years , according to the office for national statistics -lrb- ons -rrb- .\nthe islamic state -lrb- is -rrb- group says it was behind a suicide attack on a shia shrine south-west of the iraqi capital , baghdad , that has killed at least 20 people .\ndomino 's pizza has reported a 15 % rise in annual pre-tax profits , helped by a `` massive increase '' in online orders .\nthe sister of a county tyrone teenager who was murdered and dismembered has called on the prison service to tell her when the killer will be released .\nan iranian couple who were among a group of asylum seekers sent to cambodia have left the country .\naberdeen city council has approved a budget which will see council tax frozen for the third year in a row .\nbristol city manager lee johnson has confirmed the championship club have held talks with former watford defender joel ekstrand .\nleague two side luton town have signed birmingham city midfielder david goodwillie on a two-year deal .\na late-night levy for bars and clubs in liverpool has been rejected by councillors .\ngreat britain 's men 's basketball team will play greece at the copper box in london on saturday , 1 september .\nthe prime minister has defended her refusal to guarantee the rights of eu nationals living in the uk .\nmatt goss says strictly come dancing has been an `` absolute saviour '' for him after he revealed he was suffering from severe depression .\nus president barack obama has called on world leaders to increase the number of refugees they take in .\nwhat drove germanwings co-pilot andreas lubitz to deliberately crash his plane into the french alps , killing himself and 149 other people on board ?\njapanese prime minister shinzo abe has said he has `` great confidence '' in us president-elect donald trump .\numpire paul reiffel has been ruled out of the second test between india and south africa in mumbai after suffering a concussion .\na new genetic test for inherited heart conditions has been developed by scientists at imperial college london .\nan unannounced inspection of a care home in bristol has found `` widespread and serious failings '' .\na danish court has sentenced two journalists to 18 months in jail for selling private information about the royal family .\npolice in bangladesh have released the names of the six men who carried out the deadly attack on a cafe on friday .\nus manufacturing grew at its slowest pace in more than a year in june , according to a survey .\na 90-year-old man is in a critical condition in hospital after being hit by a car in leeds .\na planned strike by tata steel workers in the uk has been called off .\na man has died after being pulled from the sea off the aberdeenshire coast .\nuk scientists have been given the go-ahead to carry out gene editing in human embryos .\nus president donald trump is being sued by the district of columbia and the state of maryland over his business dealings .\nchelsea manager jose mourinho is set to sign a new contract with the premier league champions .\na british engineer has built a diesel-powered insect-like robot that can walk on its own .\nthree scottish soldiers were killed by a roadside bomb in afghanistan , an inquest has concluded .\na woman has been conned out of nearly # 50,000 after her email account was hacked by fraudsters .\nglasgow-based temporary power provider aggreko has agreed to buy us firm dryco , a specialist in moisture control and air conditioning services .\nthe belfast giants have re-signed seven players for the upcoming elite league season .\ndundee manager paul hartley says he wants to keep kane hemmings at dens park but accepts speculation about the striker 's future is inevitable .\nthe family of a 92-year-old woman from the highlands who has lived in australia for more than a year have said she could be deported back to the uk .\na white chicago police officer who shot a black teenager 16 times in 2014 has pleaded not guilty to murder .\ngary neville 's winless run as valencia manager stretched to eight la liga games as antonio sanabria 's penalty gave sporting gijon victory at mestalla .\ntwo teenagers have died in a crash between a car and a van in cumbria .\nchina 's reaction to the international tribunal 's ruling on the south china sea has been swift .\nthe life of marvel comics co-creator stan lee is to be turned into a film .\nsinn fin have said that brexit secretary david davis 's comments are a `` direct challenge '' to the irish government over the irish border .\nthree teenagers have appeared in court in the us state of oklahoma charged with the murder of an australian baseball player .\na woman has been told her passport has been cancelled after she added the middle name '' skywalker '' to her surname .\na task force set up to save scotland 's steel industry has met for the first time .\nboris johnson has been one of donald trump 's fiercest critics during the us presidential campaign .\nthe bbc has signed a new three-year deal with the iaaf to show the diamond league .\ntributes have been paid to irish actor frank lally , who has died at the age of 67 .\nindia 's supreme court has ruled in favour of vodafone in a long-running tax dispute .\nenglish referee kevin friend will miss the rest of the season after collapsing during saturday 's premier league match between bournemouth and southampton .\nhuman body parts have been found in several mass graves in kenya 's western laikipia county .\nindia 's prime minister narendra modi has said 500 and 1,000 rupee notes will be withdrawn from circulation from midnight .\neach day we feature a photograph sent in from across england - the gallery will grow during the week !\ndonald trump campaigned on a series of promises .\nsuper league side leigh centurions have appointed former st helens assistant coach keiron cunningham as their new head of football .\ntwo men have died in a crash on the a713 in south ayrshire .\nbath ran in six second-half tries as they eased to a bonus-point win at london irish .\nbradford bulls have been granted membership of the rugby football league by owner marwan khan 's group .\na world cup winner 's medal won by brazilian football legend pele has been sold at auction in new york for # 85,000 .\na sculpture of thousands of ceramic poppies in york has attracted more than 170,000 visitors since it was unveiled in september .\nformer footballer wayne rooney 's plan to build a house in the shape of a flower has been given the go-ahead .\nfour people have been killed in an attack on a police station in china 's restive western region of xinjiang , officials say .\ncharley hoffman is one shot behind leaders sergio garcia , rickie fowler and thomas pieters after the second round of the masters at augusta .\nguy martin says he has no plans to retire from road racing this year despite problems with his honda bike .\nchancellor philip hammond and pm theresa may have said they will `` still be neighbours '' after the general election , despite reports of a rift .\nhuman rights group amnesty international has accused world leaders of adopting a `` dehumanizing agenda '' for political expediency .\nthousands of miners in south africa are on strike over pay .\ndisney is one of the world 's biggest entertainment companies .\nstephen cook is set to make his test debut for south africa in the third test against england in port elizabeth starting on thursday .\nsalford red devils have signed full-back jamie hood on a two-year deal .\nbritain 's jade murray recovered from a poor start to reach the final of the women 's -57 kg category at the british championships .\ngunmen have opened fire and set fire to the offices of two pro-government newspapers in istanbul , turkish police say .\ndundee united have signed paul keatings from hibernian on a two-year deal .\naston villa striker andre ayew has been charged by the football association after allegedly confronting watford fans during sunday 's 2-2 draw .\nscarlets earned their first win of the season with a bonus-point victory over cardiff blues at the arms park .\nrussia has blamed turkish troops for the air strike that killed four of its pilots near the syrian town of al-bab on thursday .\nshares in weibo , china 's most popular micro-blogging site , have soared in their first day of trading in the us .\nsalford red devils have released stand-off rangi chase , adam hansen , chris paterson and academy player jordan fages .\nthe world 's biggest horse race , the grand national , takes place on saturday .\nthe chief constable of south yorkshire police has said he is `` profoundly sorry '' for the way the force failed the victims of the hillsborough disaster .\nthe pentagon says it is considering sending us army whistleblower pte chelsea manning to a civilian prison to receive treatment for her gender identity disorder .\na woman has died after being hit by a bus at a translink depot in belfast .\nat least 20 egyptian muslim pilgrims have been killed in a bus crash in saudi arabia , egypt 's state news agency says .\ndisney has confirmed it is making a sequel to its hit animation frozen .\nthe european space agency -lrb- esa -rrb- has decided to delay its plan to send a robot to mars until 2019 .\nbritish number one johanna konta beat varvara lepchenko to reach the quarter-finals of the bnp paribas open at indian wells .\nfive crew have been rescued from two fishing boats which ran aground on the river dart in devon .\nandy murray says he has not spoken to the lawn tennis association -lrb- lta -rrb- about the future of british tennis .\ngreat britain will face argentina in the davis cup semi-finals at queen 's club in london .\nthe chairman of the irish parliament 's finance committee has said it is `` disappointing '' that the irish finance minister has so far failed to ensure nama appears at its inquiry .\nlaura mvula 's day is about to get even more hectic .\nthe number of complaints and prosecutions for animal cruelty in wales has fallen , the rspca has said .\nuk house prices rose by 8.8 % in the year to march , according to official figures .\nmore than 1,000 schools in england are in debt , according to the government .\nboris johnson has said the decision on who will lead the campaign to leave the eu will be a `` unifying moment '' for eurosceptics .\nnorthampton town midfielder gabriel obertan has left the league two club by mutual consent because he is on international duty with the democratic republic of congo .\nrangers came from behind to beat aberdeen and move level on points with the pittodrie side at the top of the premiership .\njedi knight wannabes are being taught how to lightsaber fight in a new sport in gloucestershire .\na theatre producer who defrauded the public out of more than # 100,000 has been jailed for three years at cardiff crown court .\njules bianchi 's father is `` less optimistic '' about his son 's recovery nine months after the marussia driver suffered severe head injuries in a crash at the japanese grand prix .\na 91-year-old man has been reunited with his former bandmates after he started playing the piano again .\nowen smith has said he is entering the labour leadership contest because he wants to `` heal the party '' .\nthe partner of missing swansea man david warburton has been arrested in the republic of ireland .\na woman has been selling poppies for 75 years .\na fire has broken out on a ferry travelling from the spanish island of mallorca to the italian port of taranto .\nthree people have been injured , one seriously , after a car crashed into a wall in dundee .\ntranmere moved up to second place in the national league table with a thumping 4-1 win at dover .\na british man who admitted trying to shoot and kill us president-elect donald trump is `` terrified '' about his sentence , his mother has said .\njohn bercow 's office in the palace of westminster has been a hive of activity in recent days .\na us appeals court has ordered the immediate release of brendan dassey , whose case was featured in the netflix documentary making a murderer .\nrepublican presidential front-runner donald trump has called senator lindsey graham a `` lightweight '' .\nfour members of the great britain women 's hockey team that finished fourth at the 2012 olympics have been named in the squad for rio 2016 .\nkent bowled glamorgan out for 138 in the one-day cup at tunbridge wells .\na woman has been cleared of having sex with a 15-year-old boy .\nscotland 's finance secretary john swinney has warned of `` tough choices '' ahead in next year 's budget .\ndonald trump has been elected president of the united states .\nwelsh boxer joe cordina says he will turn professional in the `` near future '' .\na toddler died after suffering `` many and terrible injuries '' at the hands of her guardian , a court has heard .\nfour royal navy frigates could be sold as scrap , the bbc understands .\nwhen the us federal communications commission -lrb- fcc -rrb- voted last month to allow internet service providers to charge more for fast lanes , it was widely seen as a victory for net neutrality .\nlife expectancy for men and women in the uk has never been higher .\na prehistoric underwater forest has been discovered off the east coast of england .\na 25-year-old man has been charged after a car was deliberately driven into a pharmacy in west belfast .\nconvicted domestic abusers in england and wales are to be offered therapy in a bid to stop them reoffending .\neducation secretary john swinney has said `` significant improvements '' are needed in some local authorities in terms of teacher numbers .\nnorth korea is holding local elections on sunday , with the country 's leader , kim jong-un , seeking re-election .\na man has appeared in court charged with causing death by dangerous driving after a woman was hit by a bus .\nmichel temer has been sworn in as brazil 's interim president after the senate impeached and suspended his predecessor dilma rousseff on wednesday .\nplans for a `` smart '' motorway on the hard shoulder of the m4 in berkshire have been unveiled .\ncult 1980s film lethal weapon is to be turned into a tv series by fox .\nthe trial has begun in turkey of 21 people accused of negligence over a mine disaster that killed 301 people .\nthe leader of a council which gave a football club a # 10.25 m loan has said he takes `` some responsibility '' for it .\ntruro city manager lee hodges says his side `` underachieved by a country mile '' after being relegated from the national league south .\nbilkis bano , a muslim woman from the western indian state of gujarat , was gang-raped and her family murdered during the 2002 anti-muslim riots .\nformer england under-19 footballer zoe tynan has died at the age of 19 .\nukip leader nigel farage has accused david cameron of being `` wilfully dishonest '' over immigration .\na collection of prams , toys and memorabilia from a family-run business has sold for more than six times its estimate .\nthe national memorial arboretum is to be home to a permanent memorial to soldiers from the disbanded devonshire and dorset regiments .\na football fan has been found guilty of punching crystal palace 's kayla the eagle mascot during a match at selhurst park .\npolice in australia are investigating the murder of a prominent criminal lawyer .\nsomalia 's islamist al-shabab group has rejected president mohamed farmajo 's offer of amnesty .\nburton albion manager nigel clough says he is `` frightening '' at the prospect of leading the club back to the championship .\nthe notebooks of poet edward thomas have been awarded funding to help conserve them .\na # 15m fund has been set up to boost cultural and tech projects in the north of england .\nthe election result in wales is starting to sink in .\nparts of the uk have seen some of the worst flooding in years .\ngraeme mcdowell said it .\na virtual-reality display for cars has been unveiled at the consumer electronics show in las vegas .\nthe immune system of birds is able to fight off a deadly fungus , scientists have discovered .\ntwenty air ambulance charities across the uk are to receive a share of # 5m from the libor fine fund .\nthe director general of the bbc has warned that staff working for bbc persian in iran are being harassed and intimidated by the authorities .\nthe ulster-scots language was first used in the 16th century as a means to communicate with the english .\nliverpool maintained their 100 % start to the premier league season with victory over leicester at anfield .\na us judge has ordered genetic tests to be carried out on people claiming to be relatives of the late singer prince .\nindia has condemned the death sentence given to a former navy officer accused of spying by pakistan .\napple has reported flat sales of the iphone in the three months to 26 december .\nthree people have been rescued after a boat capsized in the river nith in dumfries and galloway .\nthe welsh government has pledged an extra # 4.2 m to repair flood defences damaged during the winter storms .\ndagenham & redbridge 's miserable start to the national league season continued with defeat at chester .\nthe credit rating agency , moody 's , has warned that it may cut its rating on the uk , because of the country 's vote to leave the european union .\nronnie o'sullivan beat barry hawkins 10-1 in the first round of the world championship at the crucible theatre .\nmillions of savers are being hit by falling interest rates .\nscotland centre mark fife is among eight edinburgh players to be released by the pro12 side .\na photographer has been fined for moving a ferrari out of the mews in central london .\nthe case for raising uk interest rates is `` some way from being made '' , bank of england chief economist andy haldane has said .\nteenagers in northern ireland are less anxious about exams and more satisfied with their lives than those elsewhere in the uk .\na man has been jailed for five years for assaulting a post office worker during an armed robbery in south lanarkshire .\nradical preacher anjem choudary has been jailed for six years for encouraging support for so-called islamic state .\nthe company behind swansea 's proposed tidal lagoon has accused natural resources wales -lrb- nrw -rrb- of giving `` unrealistic and grossly misleading impact figures '' on fish stocks .\nthe bodies of three people have been recovered from the rubble of three new york city buildings that were destroyed in a gas explosion on thursday , officials say .\npublic hearings into historical child sex abuse allegations against the late lord janner have been postponed until march 2017 .\non sunday , voters in hong kong will go to the polls in the first elections since the `` umbrella movement '' last year .\nfrance 's interior minister bernard cazeneuve is to sue a policewoman in nice who says he ordered her to cover up the presence of national police on the seafront at the time of the attack .\ngillingham manager peter taylor says he would understand if chairman paul scally sacked him .\nprime minister david cameron has laid a wreath at a dawn service in central london to commemorate anzac day .\nbayern munich boss pep guardiola says his side can improve after reaching the champions league semi-finals .\npeople in surrey have thrown away more than 77,000 pieces of plastic in the past year , the county council has revealed .\nisrael has postponed a vote on approving hundreds of new homes in jewish settlements in occupied east jerusalem , officials say .\nall crew on northern isles freight vessels will be paid at least the minimum wage , it has been confirmed .\nthe police have been given the go-ahead to obtain tapes of a former loyalist paramilitary .\ncivil servants have been called in to help deal with the impact of planned strikes at uk borders , the bbc has learned .\nthe government 's proposed lowering of the drink-drive limit should be approved by the house of lords , say health experts .\nhundreds of jobs are to go at tata steel 's newport plant , the company has confirmed .\na man 's body has been found in woodland by police searching for a missing man .\nbarrow manager paul cox says striker paul cook has rejected offers from clubs in the national league .\ncornish pirates full-back tom pope , fly-half laurence may and utility back james moyle have all signed new contracts with the club .\nmps have rejected an attempt to change the marriage -lrb- same sex couples -rrb- bill .\nthe government in indian-administered kashmir has banned lavish weddings in the state .\nthe psni has seized drugs with a street value of more than # 300,000 during a six-week operation in belfast .\nscientists say they have identified chemicals in sweetgrass that repel mosquitoes .\na world war one stained glass window at a south wales church is in danger of collapsing .\nliverpool defender alberto moreno is a summer transfer target for spanish giants real madrid .\ncafodd bachgen arall ei anafu yn y digwyddiad yn l yr angen ysgol caerdydd .\na group of school principals in belfast have been given the go-ahead to write to politicians to fight proposed cuts to education in northern ireland .\ntwo people have been arrested after a four-year-old girl was seriously injured by a dog .\nmarcus trescothick 's 22nd first-class double century was not enough to prevent somerset being bowled out by nottinghamshire on day three .\nghana 's government has cancelled a contract for the re-branding of more than 100 buses worth more than # 2m -lrb- # 1.7 m -rrb- .\nas the centenary of world war one is marked , bbc news looks at the life of private john parr , the first british soldier to die fighting germany .\njosh strauss says scotland 's players want to give vern cotter a send-off with a win over ireland in the six nations .\npresident : alassane ouattara\ntwo astronauts have carried out their first spacewalk outside the international space station on monday .\ncrawley town have signed dutch striker lex verheydt from eredivisie side maastricht for an undisclosed fee .\na scottish-made bagpipes have been played by a nasa astronaut on board the international space station .\nrangers missed the chance to go top of the championship as they were held to a draw by st johnstone .\nsomalia 's public works minister has been shot dead by security forces who mistook his car for a militant vehicle , officials say .\nan australian inquest into the death of a toddler who was left in a hot car has heard his mother suffered a `` forgotten baby syndrome '' .\nthe former head of the cia , david petraeus , has told the bbc that islamic state -lrb- is -rrb- is a `` conventional enemy '' .\nrussian newspaper novaya gazeta has defended its report that chechen authorities have detained more than 100 men on suspicion of being homosexual .\nthe metropolitan museum of art is being sued for allegedly violating a law requiring it to charge visitors the full $ 25 -lrb- # 16 -rrb- admission price .\na post office worker has suffered a serious head injury during an armed robbery in galashiels .\nbritish number two heather watson has parted company with her coach alberto veronelli .\ntaylor swift is one of the biggest artists on spotify .\nstrictly come dancing 's ola jordan and sally bercow , wife of the speaker of the house of commons , have joined the line-up for bbc one 's winter olympics .\nsudan 's president omar al-bashir has reshuffled his cabinet , replacing most of his previous team .\nmanchester city manager pep guardiola says midfielder samir nasri is `` a little bit overweight '' .\nblackburn rovers defender hope akpan has been banned for three games for violent conduct .\nmembers of australia 's olympic swimming team have admitted taking the prescription drug stilnox during a bonding exercise before the games .\nengland 's luke donald is one shot off the lead after two rounds of the arnold palmer invitational at bay hill .\nthe funding for lending scheme -lrb- fls -rrb- was set up by the bank of england and the government in march 2009 .\nmore than 1,000 people have objected to plans for up to 500 homes in a leicestershire village .\nthe leader of south africa 's main opposition party , the democratic alliance -lrb- da -rrb- , has announced she is to stand down .\na rail tunnel between edinburgh and glasgow is to close for six months for major engineering work .\nislamic state -lrb- is -rrb- militants have clashed with kurdish fighters defending the northern syrian town of kobane .\na former health board boss who moved to england to get treatment for cancer has called for more investment in the nhs .\nleicester striker jamie vardy has been named on the fifa world xi list for the first time .\na cocker spaniel who visits a supermarket every day for treats has been urged to stop by his owner .\nnorthern ireland assistant manager kenny macphee is proud his side have qualified for euro 2016 but is disappointed his native scotland will miss out .\na kent hospital trust has been placed into special measures after inspectors found staff shortages .\nevery year , keepers at chester zoo take part in a massive count of all the animals .\na councillor has accused an mp of hypocrisy after he opened a sweet shop selling coca-cola in leicester .\npolice have released cctv images of a man they want to speak to in connection with a burglary at a house .\nisrael 's former president and prime minister shimon peres has died at the age of 93 .\negypt 's islam el shehaby refused to shake the hand of israel 's ronny sasson in their men 's -63 kg judo quarter-final at the olympics .\nwest brom striker saido berahino has been banned from driving for 12 months after admitting a drink-drive offence .\nthe partner of scottish boxer michael towell has said he `` fought right to the end '' after suffering severe brain damage in a fight .\nthere is `` no threat whatsoever '' to law-abiding eu citizens working in the uk , the leader of the welsh conservatives has said .\ntwo disabled people have taken the government to court over delays in paying their benefits .\nan action plan to encourage people to walk and cycle has been published by the welsh government .\nthe cassini spacecraft has been sending back amazing data about saturn .\nformer five-time world player of the year marta has joined orlando city in the women 's super league .\nhamilton academical eased to victory over inverness caledonian thistle to move off the bottom of the premiership table .\nthe number of cruise ship visitors to northern ireland has soared in recent years .\njoe hockey has been appointed as australia 's new ambassador to the united states .\na us airman has been awarded france 's highest honour , the legion d'honneur , for his role in preventing a terror attack on a train in august 2014 .\na county tyrone pensioner who was shot in the head in africa more than 30 years ago has said she wants to help free a man who has been wrongly imprisoned .\na technical glitch on the nasdaq stock exchange saw shares of some of the world 's biggest technology companies fall by more than 5 % .\na new water tariff has been launched to help some of the poorest customers in wales pay their bills .\nnick clegg has unveiled plans for a free bus pass for young people in england , as part of the liberal democrats ' election manifesto .\nmadonna 's fans have been complaining about bbc radio 1 not playing her new single , but it 's not about her .\nfour men have been arrested by the north east counter terrorism unit as part of an investigation into suspected terrorism offences in italy .\nlloyds banking group has announced plans to close 100 branches across the uk .\nmore than 100 people have taken part in a cheese race up a hill in dorset .\na road closed for more than a year after a landslide on the isle of wight will be resurfaced , the council has said .\nan artificial intelligence program is taking on a group of human poker players in a tournament in the us .\nthe relationship between the united states and the united kingdom is one of the uk 's great strengths .\nmatch report to follow\nanthony scaramucci has resigned as white house communications director after just 10 days in the job .\nengland 's preparations for euro 2016 suffered a setback as they were beaten by the netherlands at wembley .\na charity set up in memory of a teenager who was stabbed to death 16 years ago is to close .\ntwo men have been arrested on suspicion of terrorism offences at dover docks .\na man has been arrested in east london by detectives investigating the london bridge terror attack .\npeter whittingham has been offered a new cardiff city contract .\na health board has urged people to stay away from a&e departments in carmarthenshire .\nbritish trench coat maker aquascutum has been put up for sale for about # 50m .\njonny evans scored a stoppage-time winner as west brom beat 10-man stoke city in the premier league .\nall mammals are sensitive to flashes of light emitted by power lines , scientists have discovered .\njapan 's hitachi has announced plans to build two new nuclear reactors in the uk , creating thousands of jobs .\nsinn féin 's gerry mccann has called on northern ireland 's attorney general john larkin to resign .\nten thousand people die each year from animal tuberculosis , according to a report .\ntwo men have been charged with historical child sex offences at a boarding school .\nlabour msp margo macdonald has launched her new bid to legalise assisted suicide in scotland .\nplans for a # 500m shopping and leisure complex have been given the go-ahead by planners .\nhuman remains found in a new mexico river have been confirmed as those of a treasure hunter who disappeared earlier this year .\nfour victorian seaside piers have been put up for sale , with guide prices of more than # 12.6 m .\na record number of candidates are standing in next month 's northern ireland assembly election .\nfrance 's defence minister has said the country 's military mission in mali will continue `` for as long as it takes '' .\ntwo men have been found liable for the omagh bomb attack after a retrial at the high court in dublin .\npolice are investigating after a woman was raped in a park in the castlemilk area of glasgow .\na 16-year-old boy has been charged with causing death by dangerous driving after a pedestrian was hit by a car in stockport .\nsouth africa 's governing african national congress -lrb- anc -rrb- has condemned as `` unacceptable and shocking '' a cartoon depicting president jacob zuma as a man with a penis .\na world war one aerodrome in essex has been given listed status .\nian cameron , the father of prime minister david cameron , has died at the age of 84 .\nthousands of kenyan doctors and nurses have gone on strike in public hospitals across the country .\nprof stephen hawking has warned that the human race faces a `` high risk of disaster '' in the next thousand or ten thousand years .\nactress joan collins has taken to twitter to clarify that she is not the queen 's new dame .\na lorry driver has been taken to hospital after crashing into a church in swansea .\na 90-year-old man who got lost on his mobility scooter has been rescued by police .\njohn mcenroe says australian nick kyrgios `` does n't understand what it takes '' to be a grand slam winner after his wimbledon exit .\na man who raped a woman in cardiff city centre has failed in a bid to have his sentence reduced .\nuganda 's president yoweri museveni has said he will not sign into law a bill criminalising homosexuality .\npupils in england will be tested on their times tables in the spring of 2019 , education secretary nick gibb has confirmed .\na gardener in south yorkshire says he has been `` jumping for joy '' after discovering a tree in his back garden has produced a single fruit .\ndavid miller and jacques rudolph 's half-centuries helped glamorgan beat gloucestershire by nine runs in the t20 blast .\nethiopia is one of the world 's poorest countries .\na police force has been accused of `` sexual stereotyping '' after winning a beach sandcastle competition .\ngreat britain 's men missed out on a place in the 4x100m relay final after a false start in their heat in rio .\nthe hs2 project should be abandoned altogether , a labour mp has said .\ncornelius gurlitt , the collector at the centre of germany 's biggest art scandal , has died at the age of 88 .\nglasgow-based engineering firm id systems is set to create up to 50 new jobs after securing funding from uk steel enterprise -lrb- ukse -rrb- .\nthe international monetary fund -lrb- imf -rrb- has warned that the next government may have to raise taxes or cut spending to balance the books .\na three-year-old boy has undergone a successful liver transplant a day after his birthday .\nwakefield trinity wildcats have signed warrington wolves full-back stefan ratchford on loan until the end of the season .\nchina 's inflation rate eased to a five-year low in september as food prices continued to fall .\nhull city have completed the signing of uruguay striker abel hernandez from palermo for a club-record fee , and brought in newcastle winger hatem ben arfa on a season-long loan .\nchris rock has filed for divorce from his wife .\nat least 11 people have been killed in south africa 's western cape province as a powerful storm battered the region .\na council has been accused of `` betraying '' residents after cladding on a tower block failed fire safety tests .\nbinge-watch has been named as the word of the year by the collins english dictionary .\ndaniel radcliffe has said he is `` by far one of the least educated people '' on shakespeare .\nrangers manager mark warburton was left `` frustrated beyond belief '' by the referee 's decision to award a free-kick that led to hibernian 's late equaliser at easter road .\na security researcher has found flaws in the tracking system run by globalstar .\nthe national air traffic service -lrb- nats -rrb- says it has successfully tracked aircraft using tv signals instead of radar .\nus president-elect donald trump has promised a `` america first '' trade policy .\nflights have been diverted at gatwick airport after a drone was spotted on the runway .\nsouth africa 's competition commission says it has found evidence of widespread rigging of the foreign exchange market .\nconservative leader andrew rt davies has criticised ams for using `` aggressive '' language during debates on brexit .\nportsmouth have signed defender drew talbot on a two-year deal following his release by league two rivals chesterfield .\na dead patient was left in a corridor for hours and a patient was left sitting on a bedpan for more than an hour at a hospital 's emergency department , inspectors have found .\nbritain 's chris froome finished third on tuesday 's second stage of the criterium du dauphine .\nbritain 's chris froome has apologised for the way team sky has been portrayed in the media over the ` mystery package ' controversy .\nworld number one dustin johnson has pulled out of the masters before his opening round at augusta because of a back injury .\nwork is under way on a major offshore wind farm in the cromarty firth .\nin the autumn statement , the government announced changes which will increase the vat paid by labour-intensive businesses .\na new home for rugby 's hall of fame has been officially opened .\ntwo police officers who filmed themselves near the shoreham air crash site have been found guilty of misconduct .\na busker has been found guilty of pretending to be collecting money for the hillsborough justice campaign .\na world war one medal found in a field in monmouthshire has been reunited with the soldier 's family .\nworcestershire batsman daryl mitchell has been elected as the new chairman of the professional cricketers ' association .\nlyon goalkeeper anthony lopes has been injured after two firecrackers were thrown at him during a ligue 1 match at metz .\nadele 's new single , hello , has become the fastest-selling single of the year so far .\na vertical pier is to be built in a teesside seaside town .\na man who carried out the paris attacks on 13 november has been buried in a secret ceremony , french media report .\ncroatian jews have boycotted a ceremony to mark the 70th anniversary of the opening of a nazi death camp .\nscotland 's most senior law officer , frank mulholland , has announced he is to step down .\ncouncillors in north lanarkshire are set to vote on the future of a multi-million pound contract to repair council buildings .\nthe number of criminal trials starting within 16 weeks in scotland 's sheriff courts has increased , according to a report .\na woman has admitted murdering three men whose bodies were found in ditches in cambridgeshire .\na fife man has described the `` devastating '' damage to his cars caused by flash flooding in pittencrieff park .\none of the lights in the palace of westminster is to be turned off for the first time in 130 years .\nderbyshire have signed nottinghamshire batsman dan christian for the 2017 t20 blast .\na council chief executive arrested as part of an investigation into corruption at lancashire county council has been released without charge .\n`` gibraltar is the most beautiful place on earth , '' says 10-year-old luis , as he studies a map of the british overseas territory at the gibraltar museum .\nipswich town have signed defender ben webster from portsmouth for a club-record fee and secured a deal for southampton midfielder josh clarke .\nthe number of training places for student doctors in england is to be doubled , the government says .\nforensic experts in the mexican state of morelos have begun exhuming more than 200 bodies from a mass grave .\ngraham onions took five wickets as durham dominated day one against nottinghamshire at trent bridge .\ndavid nalbandian is no stranger to controversy on the tennis court - but this time he 's had to apologise for his swearing .\nla la land , starring ryan gosling and emma stone , has won the people 's choice award at the toronto film festival .\nharry pincher was one of britain 's best-known investigative journalists .\nrichard carpenter , lead singer of the carpenters , is suing his record label for failing to pay him royalties from digital downloads of the band 's music .\npolice investigating the murder of a man in county antrim have revisited three locations where a car was stolen and burnt-out .\ndan holman scored a hat-trick as national league leaders cheltenham town thrashed woking .\nindia 's top literary body , the sahitya akademi , has condemned recent attacks on writers .\none of the operators of the silk road website has been arrested in thailand .\noldham boosted their league one survival hopes with a 2-0 win over peterborough at boundary park .\ntwo search and rescue groups in northern ireland have been awarded more than # 31,000 in grants .\nben foster was sitting in his car in glasgow 's west end when a rangers fan walked up to him .\neducation secretary nicky morgan has asked the schools watchdog to prepare cases for prosecution against unregistered schools .\nthe new chief constable of hampshire and the isle of wight has been named as catherine pinkney .\nluke walsh 's late drop-goal gave catalans dragons victory over hull fc in super league .\na man armed with a knife has robbed a van driver at knifepoint in edinburgh .\ngoogle has launched a service that tracks how people buy products offline .\nleague two side oxford united have no new injury or suspension worries ahead of their fa cup fourth-round tie against newcastle united .\njuventus defender leonardo bonucci has signed a new four-year contract with the serie a club .\na bookshop has launched an appeal to raise # 60,000 to repair structural problems .\nformer manchester united winger nani says valencia 's players are still learning each other 's tendencies .\ni have been speaking to the uk 's trade secretary about the government 's approach to brexit .\na new visitor centre is to be built at yorkshire sculpture park -lrb- ysp -rrb- .\na terminally ill man has gone to court in a bid to change the law on assisted suicide in england and wales .\na 6.8 magnitude earthquake has struck off the pacific island nation of vanuatu .\nan explosion in the centre of the syrian capital damascus has killed at least 25 people , the state news agency sana has reported .\na dog has been found abandoned `` like rubbish '' on a road in kent , the rspca said .\na call centre firm is creating 300 new jobs in cardiff .\nan australian mother has been arrested in lebanon after allegedly trying to abduct her children in a custody dispute .\nthe labour party has a problem with anti-semitism .\na global database of more than 390 species of city trees has been created .\na woman has been charged with the murder of a man who died after collapsing at a house in west london .\non this week 's disability works , we are looking at how technology is changing the lives of people with disabilities .\nit is not every day that you get a job in the snack food business after trying a new product .\nthe uk is considering whether to launch air strikes against so-called islamic state -lrb- is -rrb- targets in syria .\nchelsea ladies will take a slender advantage into the second leg of their champions league play-off tie against glasgow city .\ndouble olympic gold medallist rebecca adlington has officially opened a # 3.8 m leisure centre in bury st edmunds .\nan australian court has ordered internet service providers -lrb- isps -rrb- to hand over details of customers who illegally downloaded a hollywood film .\nsprinter sacre , who won the champion chase at cheltenham three times in a row , has been put down .\na pay deal has been agreed between the government and the prison officers ' association -lrb- poa -rrb- .\ndundee university is recruiting people to take part in a study into the health effects of e-cigarettes and tobacco cigarettes .\nwith the eu referendum fast approaching , bbc news takes a look at the key questions surrounding the poll .\nsainsbury 's has reported a drop in like-for-like sales for the second quarter in a row , as it continues to face tough competition .\nthe number of child sexual exploitation -lrb- cse -rrb- cases being investigated by west yorkshire police has more than doubled in a year .\nthe glasgow school of art 's -lrb- gsa -rrb- fire appeal has received a further # 1m pledge from two foundations .\nthe co-operative group has warned that full-year profits will `` reduce year on year '' .\nphilippine president rodrigo duterte has ordered the body of former dictator ferdinand marcos to be moved to the heroes ' cemetery in manila .\na 16-year-old boy has died after being hit by a car in north yorkshire .\na man who was found injured at a travellers ' site in dorset has died in hospital .\nanna christian has been named in the great britain team for the european road championships in sweden .\nthe police response to the 2011 riots was `` flawed '' and could have been avoided , a group of mps have said .\nmicrosoft has revealed more details about the hardware inside its next-generation xbox scorpio console .\nfemale workers in australia are more likely to ask for a pay rise than their male counterparts , a study has suggested .\nthe queen has promised a `` strong and lasting devolution settlement '' for wales in her queen 's speech .\nthe us national basketball association -lrb- nba -rrb- is to launch an e-sports league for its video game nba 2k .\na `` predatory '' paedophile has been jailed for 12 years for raping and sexually assaulting young girls .\nbarnsley have signed wrexham winger kayden jackson on a two-year deal .\nsangin is a strategically important district in the southern afghan province of helmand , which has been under the control of the taliban for several years .\nparts of scotland have been battered by strong winds and heavy rain .\nthe united nations has ended its campaign with wonder woman after a backlash over the character 's image .\nmobile phone provider three has apologised after some of its customers received `` incorrect '' text messages .\na 25-year-old man has been charged in connection with the collapse of a pedestrian bridge on the m20 .\nhundreds of hens have been put up for rehoming in north wales after being released from supermarkets .\nnhs staff in england will no longer be able to refer patients for gay conversion therapy , newsbeat can reveal .\na burst water main flooded a busy street in central london and forced the evacuation of a cinema .\nliam fox 's injury-time winner extended plymouth 's unbeaten run to nine games as they came from behind to beat mansfield .\na report into the collapse of a railway bridge during flooding has warned of the risk of a repeat event .\nspain will compete in rugby sevens at the olympics for the first time after beating hosts brazil in the final of the rio sevens qualifiers .\na man accused of stabbing his former partner to death told police she had a knife in her hand during the struggle , a court has heard .\na # 2m appeal has been launched for a new marine centre in north berwick .\nthe death of uzbekistan 's president islam karimov is a major blow to the country 's stability .\na pregnant woman accused of trying to smuggle 12 migrants into the uk in a van has told a court she had `` no idea '' the people were in the vehicle .\namnesty international has said it is `` deeply concerned '' by reports that saudi arabia is preparing to execute dozens of people .\na dissident republican group calling itself the ira has claimed responsibility for the murder of prison officer david black .\nthe government has said it will reconsider the case of a woman facing deportation from the uk because her british husband earns less than her .\na row over the use of the word ` derry ' in government correspondence in the 1980s has been revealed in official papers .\nbritish astronaut tim peake and russian cosmonaut mikhail kornienko have been using virtual reality on the international space station .\na russian space capsule that was due to deliver supplies to the international space station -lrb- iss -rrb- has fallen out of control .\nwhen her three-year-old son was admitted to hospital with a fever , a woman from a small town in central vietnam tried to speed up his treatment .\na family-run olive tree shop has been destroyed in an arson attack .\nsuper league leaders castleford came from behind to beat st helens at the jungle .\nthe mountaineering association of scotland -lrb- mba -rrb- has urged people to help pick up litter at scotland 's mountain bothies .\nan mp has apologised for suggesting that type 1 and type 2 diabetes are `` not preventable '' .\na 14-year-old pakistani girl who has campaigned for girls ' education has been shot in the head by gunmen in the swat valley .\na lorry has crashed into the side of a house after hitting a level crossing barrier .\n-lrb- close -rrb- : wall street ended the day higher on friday after the latest us jobs report was better than expected .\nscotland head coach vern cotter says his side are `` getting better '' ahead of the world cup .\na memorial to the jersey soldiers who died in world war one has been unveiled in france .\none of the chibok schoolgirls kidnapped by boko haram militants in nigeria has been found alive .\nus car maker hyundai has said it will extend car loans and lease payments to federal employees affected by the us government shutdown .\nruby sen is a big fan of online shopping .\na man who suffered a cardiac arrest outside his home has survived after being shocked 17 times by the ambulance service .\nthe chairmen of five influential commons and lords select committees have written to david cameron to urge him to remove international students from the net migration target .\na 15-year-old boy has been charged after a man was stabbed in aberdeen city centre .\nprime minister theresa may will meet us president donald trump at the white house on 27 january .\ntaoiseach -lrb- irish prime minister -rrb- brian cowen has apologised for his performance in a live television interview on tuesday morning .\nthe family of a soldier found dead at a surrey army barracks 20 years ago have won the right to a new inquest .\nbbc radio 1 dj huw james is to be awarded an honorary degree by the university of east anglia -lrb- uea -rrb- .\nwork has started on a new bowling pavilion in county durham .\na paging system failed to alert a fire engine to a blaze in suffolk .\nformer liverpool and scotland striker barry st john says he has been diagnosed with alzheimer 's disease .\nbradford were held to a draw at home by shrewsbury in league one .\na review into the future of welsh language broadcaster s4c could be delayed by a year , the welsh government has said .\na mystery singer has surprised shoppers at a bristol shopping centre by serenading them with a duet .\na former rwandan minister has been sentenced to 20 years in prison for inciting genocide during the country 's 1994 war .\na washington post reporter has gone on trial in iran on charges including espionage .\nengland 's paul casey , tommy fleetwood and rory mcilroy all missed the halfway cut at the us open after carding rounds of 76 .\nnew sale sharks director of rugby dai cotton says the club needs to `` rebuild '' their stadium .\nfour women with cervical cancer in northern ireland are taking part in a uk-wide clinical trial which is trying to find a new treatment .\nrobert carlyle 's directorial debut is to open this year 's edinburgh international film festival -lrb- eiff -rrb- .\nthe mother of a four-year-old boy who died after his car was set on fire has appeared in court charged with murder .\non international women 's day , bbc rewind looks at the pay gap in the uk .\nblackpool were held to a draw by colchester at bloomfield road in league two .\nthe home of the northern ireland japan society in west belfast has a distinctly japanese feel to it .\niraqi archaeologists have created a 3d model of artefacts that were destroyed by islamic state -lrb- is -rrb- militants in the city of mosul .\ntributes have been paid to a `` warm-hearted and fun '' veterinary nurse who died in a car crash while studying for her degree .\nsubsidies to the renewable energy industry are set to be cut , the bbc has learnt .\nin the aftermath of friday 's attack on the shaga mosque in kano , nigeria 's second city , there is anger and shock .\nblackburn rovers have appointed former player david dunn as first-team coach on a two-year deal .\nthe number of young people going to a&e with mental health problems has more than doubled in the last four years .\nisrael has been accused by the us of undermining peace efforts by building a new settlement in the occupied west bank .\n-lrb- open -rrb- : the ftse 100 opened lower , with shares in barclays falling after the bank was sued in the us .\na couple have appeared in court charged with the murder of a baby boy .\na man has died in a house fire in kilmacormick , county donegal .\n-lrb- close -rrb- : london 's leading shares fell on tuesday , with energy and advertising companies among the biggest fallers .\nwakefield trinity have signed newcastle knights hooker tyler atkins on a two-year deal .\nmyanmar 's military says it has found no evidence to back up claims it carried out `` crimes against humanity '' against the rohingya muslim minority in rakhine state .\ntwo men have been found guilty of murdering a man who was shot outside a pub in greater manchester .\nnorthern ireland 's plan to introduce a rate of 12.5 % corporation tax has been thrown into doubt by the stormont crisis .\nthe white house says president barack obama has apologised to medecins sans frontieres -lrb- msf -rrb- for the bombing of its hospital in afghanistan last month that killed 42 people .\nleinster moved up to second place in the pro12 table with a hard-fought win over connacht at the rds .\nbroadcaster stephen robinson has described highways england 's plans for a stonehenge tunnel as `` old-fashioned '' .\nitv 's crime drama broadchurch is to end after its third and final series , it has been confirmed .\natletico madrid moved to within a point of la liga leaders barcelona with a comfortable win at athletic bilbao .\nwrexham have signed plymouth argyle midfielder james harvey on a two-year deal .\ntoyota has announced plans to invest # 300m in its uk car plant .\nas hungary heads to the polls on sunday , the bbc 's jonathan head has been following the election campaign in budapest .\na man has been taken to hospital after his yacht was blown up in an explosion off the argyll coast .\nthe department of employment and learning -lrb- del -rrb- is to cut more than 400 further education staff in northern ireland .\nshutter speed , ridden by frankie dettori , won the musidora stakes at doncaster to boost her chances of the oaks .\nsunderland defender jan kirchhoff has been ruled out for six to eight weeks with a knee injury .\nthe childhood home of explorer gertrude bell and a hospital designed by william clement oliver are among the 10 most endangered victorian buildings in england and wales .\nthe us soldier accused of killing 16 civilians in afghanistan may have suffered from post-traumatic stress disorder -lrb- ptsd -rrb- , his lawyer has told the bbc .\nsuper league half-back stefan tickle is in a stable condition in hospital after being assaulted in a nightclub .\na man has been arrested on suspicion of murder after a man was found dead in a street on christmas day .\nromelu lukaku and eden hazard scored as belgium came from behind to beat norway in their final warm-up game before euro 2016 .\nboris johnson is one of the uk 's most high-profile politicians .\nformer news of the world editor andy coulson and ex-sun editor rebekah brooks have pleaded not guilty to phone-hacking charges .\na man has died after his car left the road and hit a tree in surrey .\nthe number of people claiming unemployment benefits in spain fell in june , official figures have shown .\nthe northern ireland health and social care board is to receive an extra # 3m to deal with the rising demand for autism services .\nwork is to start on a new # 20m swimming pool in derby , the city council has said .\nhearts striker bjorn johnsen has joined dutch side den haag on a season-long loan .\nthe world health organization -lrb- who -rrb- has declared the zika virus outbreak in brazil a global public health emergency .\nthree brothers who sexually abused girls and women in rotherham were `` furious '' when one of their victims found out , a court has heard .\nthe brother of one of the bloody sunday victims has said he is disgusted by an arson attack on the new bloody sunday museum in londonderry .\nisrael has appointed the country 's first arab police commissioner .\na court in egypt has suspended the assembly tasked with writing a new constitution .\nholyrood 's finance committee has warned of a `` significant challenge '' in agreeing the scottish government 's budget .\nfive british servicemen have been killed in a helicopter crash in southern afghanistan .\nthe uk 's referendum vote to leave the european union has divided opinion in the three baltic states .\na man has been seriously injured in a `` hate crime '' stabbing at a railway station in south london .\nantonio conte has been named as the new coach of italy on a two-year contract .\ntributes have been paid to a former isle of man footballer who died in liverpool .\nfour people have been arrested in the uk as part of an international investigation into the use of malware to spy on people .\nghana 's opposition leader nana akufo-addo has won the country 's presidential election .\nthe number of men diagnosed with dementia may be falling , a study in the lancet suggests .\nphotographs of some of britain 's most famous musicians have gone on display to mark the 40th anniversary of the rock against racism campaign .\ndom dwyer grew up in norwich , the son of a norwich city fan and a norwich united supporter .\nandrew lloyd webber has defended the high ticket prices in the west end , saying theatre is `` incredibly reasonable '' .\nessex fast bowler steve harmer says he will never take back-to-back five-wicket hauls again after his match-winning performance against middlesex on friday .\nmore than 200 people have been killed in a gun and bomb attack on a restaurant in the tunisian capital , tunis .\nthe system for protecting the rights of vulnerable people in england and wales is failing , the law commission has said .\nthe number of district nurses in wales has fallen by more than a third in the past six years , new figures have revealed .\nwork has begun on a # 1.1 m restoration project at a victorian cemetery in wrexham .\nnapping during the day may increase the risk of type-2 diabetes , researchers in japan say .\nthe duke and duchess of cambridge have been welcomed to ottawa by canada 's governor general .\na man has handed himself in to police after an armed siege at a barclays bank in birmingham .\nthe nhs is paying too much for some cancer medicines , according to an analysis at the british cancer society conference .\nwarwickshire seamer tom thornton has signed a new three-year contract with the bears .\ntwo major airlines have said they will stop flying to nigeria because of a shortage of foreign currency .\nformer managers at betting shop coral have told the bbc they were encouraged to encourage people to gamble on its high-stakes machines .\na man who tried to smuggle cs gas canisters , knives and knuckledusters through edinburgh airport has been jailed for eight months .\nswansea city defender angel rangel says manchester city boss pep guardiola is `` a maestro '' ahead of saturday 's premier league meeting .\nsheffield wednesday defender chris smalling -lrb- hamstring -rrb- is set to return after missing the win over ipswich .\na body has been found in the river tay in fife .\ncardiff city striker anthony pilkington believes the bluebirds can challenge for promotion this season .\nthe scottish government is being urged to scrap right to buy for social housing tenants .\nthere are lines in politics that you just do not cross .\nthe french government is seeking 356m -lrb- # 270m -rrb- in back taxes from online travel firm booking.com .\nthe latest data dump from the ashley madison hack appears to include emails belonging to the company 's founder and chief executive .\nthe new south wales state parliament has passed a motion calling us republican presidential candidate donald trump a `` revolting slug '' .\nan actor who plays darth vader in a new star wars film has been honoured at the uk premiere in london .\nif you 're not at work catching up when you think the boss is n't looking , you 're quite likely to be on the sofa in front of the television . if you 're not at work catching up when you think the boss is n't looking , you 're quite likely to be on\ndavid cameron 's eu reform deal could lead to a `` surge '' in migrants coming to the uk , senior conservatives have warned .\nscientists have used a gene editing system to treat mice with cancer .\nit looks like the new ghostbusters movie will only be the beginning .\nfive taiwanese soldiers have been killed after their tank fell into a river during a training exercise .\negypt 's new president , abdul fattah al-sisi , has vowed to tackle terrorism and bring stability to the country .\nclaudia winkleman is to step down as host of bbc one 's film 2016 after one series .\na convicted killer and his accomplice have admitted attacking a man with an axe and a knife at a christmas party .\nformer home secretary david blunkett has said yorkshire should have its own `` white rose parliament '' .\na canadian man says he 's lucky to be alive after being struck by lightning during his son-in-law 's wedding .\nkirsty bankier won her 10th scottish national badminton title in her final appearance at glasgow 's emirates arena .\noxfordshire 's private sector could suffer if the public sector makes `` massive cuts '' , a business leader has warned .\na brazilian rancher has been found guilty of ordering the murder of an american rainforest activist .\nmae eisteddfod genedlaethol wedi cael eu llifio o goed ar ynys mn yn nhrawsfynydd ddydd merched y wawr , yn l goron .\ntens of thousands of foreign domestic workers in hong kong have staged a protest over safety concerns .\nevents are being held across the republic of ireland to mark the centenary of the 1916 easter rising .\nintel 's profits for the third quarter of the year have fallen by more than 10 % as demand for its chips for data - servers slowed down .\nthe future of the scottish football association 's performance schools programme is in the hands of new boss steve mcclair .\nceltic have been fined 10,000 euros -lrb- # 8,200 -rrb- by uefa for crowd disturbances during their europa league match against fenerbahce .\nsaracens lock george kruis has been ruled out for the rest of england 's autumn series with a shoulder injury .\nwigan warriors have re-signed england full-back sam tomkins on a three-year deal from the national rugby league .\na seven-year-old girl drowned in a hotel swimming pool in blackpool , an inquest has heard .\nrepublican presidential candidate mitt romney is expected to announce his vice-presidential running mate in the coming days , us media reports say .\npolice in the italian island of sardinia have arrested a man suspected of opening fire on a group of nudists on a beach .\nan outbreak of dengue fever in burkina faso has killed at least 11 people , officials say .\nderbyshire have appointed former england all-rounder james taylor and ex-northants batsman david sales as batting coaches .\na new chief executive has been appointed to the public services ombudsman for wales .\nan mp has called for a meeting with the italian government after the family of a british woman found stabbed to death in italy said they are still waiting for answers .\nthe power has been restored to most parts of bangladesh after a major blackout on saturday .\nmsps have passed a bill paving the way for railway policing to be transferred to police scotland .\na man will not face charges over an incident in which a teenage girl was sexually assaulted at an aberdeen military base .\nyum brands , owner of kfc , has reported better-than-expected profits , helped by growth in china .\nmexico 's interior minister , miguel angel galindo , has been sacked over the deaths of dozens of suspected criminals in a police raid .\ngreater manchester 's metrolink tram network has been tested for the first time .\ngrimsby town have signed former york city goalkeeper adam straker on a deal until the end of the season .\nnew york 's guggenheim museum has unveiled a toilet made entirely out of gold .\nthe chief executive of titanic belfast has said the attraction needs to be better served outside the city centre .\nauthorities in the us state of arizona have broken up a major drug-smuggling network linked to mexican cartels .\nleaving the european union would have a `` relatively small '' impact on the uk economy , according to a report from credit ratings agency moody 's .\nchelsea have signed goalkeeper eduardo from sporting lisbon for an undisclosed fee .\nscientists in the us are using a mobile game to study how people with dementia navigate .\n-lrb- open -rrb- : the ftse 100 opened lower but shares in dixons carphone rose after it said profits would be higher than previously forecast .\nmore than 2,000 children in england were sexually exploited last year , suggests a report .\nindonesians have taken to social media to show their support for the capital , jakarta , following a series of bomb attacks that left at least seven people dead .\na pony has been found abandoned in a field in a remote part of lincolnshire , the rspca has said .\nnorthern ireland 's health minister has told the annual conference of the royal college of nursing in belfast that the current system is not fit for purpose .\nthe us has carried out its first air strikes against islamic state -lrb- is -rrb- militants in syria .\nwhen the war in syria first broke out in 2011 , paul barrett was working as a journalist in beirut .\nactor brian blessed has revealed that he helped deliver a baby in a park 50 years ago .\nthe first gulf war may have been a relatively low-key affair , but it was a watershed moment in the history of the middle east .\npolice have referred themselves to the police watchdog over the search for a missing woman .\nthe future of education in wales will be discussed in cardiff on thursday .\nnasa 's juno probe has returned its first close-up views of jupiter 's north pole .\na man has appeared in court charged with attempted murder after a woman was killed in a hit-and-run crash .\nnico rosberg dominated the hungarian grand prix as mercedes team-mate lewis hamilton finished second .\nsdlp mp seamus mallon has said he is backing colum eastwood in the party 's leadership contest .\ndownton abbey star michelle dockery is to star alongside dominic west in a donmar warehouse revival of les liaisons dangereuses . `` it is a thrill to announce a season of work that features , in plays by living writers , women of the calibre and power of zawe ashton , sinead cusack , michelle\na woman accused of conspiring with her boyfriend and another man to kill her ex-husband in california has posted a $ 10m -lrb- # 6m -rrb- bail .\nthe father of a protester killed in venezuela has called on president nicols maduro to clear his son 's name .\naustralia 's james faulkner became the sixth player to take a one-day international hat-trick as sri lanka lost the second match of their series .\nthe john lewis department store at edinburgh 's st james centre has reopened to the public .\nnatwest and rbs have warned business customers that they could be charged interest on their accounts if the bank of england 's interest rate falls below negative .\nthe british parking association is investigating claims parking control staff have changed the time on photos of cars parked in car parks .\njack marriott continued his superb start to the season with two goals as peterborough beat rotherham 2-1 .\nyorkshire will begin their defence of the county championship with a trip to division one rivals nottinghamshire .\nchildren 's author helen bailey may have been drowned , a court has heard .\na man has been charged with the murder of a bulgarian woman who has been missing for more than a week .\nscotland 's karen gillan has been cast in the new jumanji movie .\nthe rise of the anti-establishment politicians in the us and europe has been accompanied by a growing distrust of the political establishment .\ngoogle has unveiled its new headquarters in london 's king 's cross , creating thousands of jobs in the uk .\ntalks on the uk 's exit from the european union will not begin until november , the former president of the european council has said .\nliverpool 's remarkable comeback against borussia dortmund to reach the semi-finals of the europa league will go down in history as one of the great european nights .\njack parkin and ben frear scored first-half goals as forest green rovers beat national league leaders halifax town .\nfidel castro 's cuban revolution was one of the great political successes of the 20th century .\nthe father of a two-year-old girl held in iran is to join campaigners calling for her release .\na man has told a court he `` felt guilty '' when he had sex with a bbc radio presenter and her husband .\njamie roberts says being wales captain for the british and irish lions tour gives him `` extra incentive '' .\ngerman police say they have arrested a man they believe knew anis amri , the tunisian who drove a lorry into a christmas market in berlin .\na man has been charged in connection with firearms offences following raids by police in edinburgh .\nall images are copyrighted .\nnorthern ireland is the biggest producer of poultry in the world .\nstoke city have signed midfielder steve sidwell from fulham for an undisclosed fee .\ntwo chemistry labs and a restaurant at cardiff university have been closed after a fire at its main building .\nturkey has detained the editor-in-chief and 10 other staff of opposition newspaper cumhuriyet over its coverage of the failed july coup .\noil prices have fallen to their lowest level in more than six years after the international energy agency -lrb- iea -rrb- said demand would slow next year .\npolice in the italian city of milan have arrested four youths suspected of carrying out a series of armed robberies in the style of the 1970s film a clockwork orange .\nthe family of a terminally ill man who took his own life at the dignitas clinic in switzerland have said he was `` at peace '' .\nharvard university is to change the job titles of some of its staff , in response to student protests over the use of the word `` master '' .\nback in the day i went to a school debate and asked the audience what they thought about yorkshire being independent .\ntwo new welsh dragons have been unveiled at caernarfon castle in gwynedd .\nnico rosberg headed mercedes team-mate lewis hamilton in a chaotic first practice session at the chinese grand prix .\npolice in the us state of south carolina have used tear gas and rubber bullets to disperse protesters in the city of columbia .\nall street furniture being used in cambridge to hang tour de france bunting has been checked `` appropriately '' , the city council has said .\nthe parents of anni dewani , who was shot dead on her honeymoon in south africa four years ago , say they still do not know what happened to their `` beautiful daughter '' .\ndanish shipping giant maersk says the crew of a container ship seized by the iranian navy on tuesday are safe .\nthe hs2 high speed rail network is planning a `` huge number '' of weekend closures , a campaign group says .\na researcher in south africa has discovered a new way to fight breast cancer .\nmonaco 's princess charlene has given birth to twins - a boy named jacques and a girl named gabriella .\nwilfried bony scored twice as ivory coast beat algeria to reach the africa cup of nations semi-finals .\na soyuz spacecraft carrying astronaut tim peake has landed safely in kazakhstan .\na target to raise wales ' international test scores has been scrapped by education minister huw lewis .\nas the january transfer window draws to a close , bbc sport takes a look at some of the key issues clubs and agents need to be aware of .\nit 's one of the most ambitious video games ever planned .\nformer stars david tennant and billie piper are to appear in a special 50th anniversary episode of doctor who .\nus president donald trump has denied making any recordings of his conversations with former fbi director james comey .\ncraft brewer and bar operator brewdog has raised nearly $ 10m -lrb- # 6m -rrb- in its first investment round in the us .\nresidents of a new garden city in oxfordshire have said they are unhappy with the broadband service .\nderby county manager nigel pearson says jacob butterfield and martin olsson will miss saturday 's championship opener at brighton .\nthree men have been found guilty of blowing up cash machines in aberdeenshire and stealing more than # 220,000 .\ntwo directors of a newport turkey processing company have been jailed for food hygiene offences .\ntwo newly-elected scottish conservative msps have said they want the uk to leave the european union .\nscottish department store chain watt 's has announced plans to create up to 500 new jobs over the next year .\nthere have been a record number of students placed through clearing at universities in england and wales so far this year , figures show .\nthe killing of taliban leader mullah akhtar mansour in a us drone strike has been described as a `` victory for peace '' .\nnew car sales in scotland rose last month but lagged behind the rest of the uk , according to new figures .\nsteven naismith is looking forward to a `` new chapter '' in his career under new norwich city manager daniel farke .\ngrimsby town came from two goals down to beat aldershot town 4-3 in the national league .\nthe families of two prisoners who killed themselves at a buckinghamshire jail have lost a high court challenge against the government .\nsheffield wednesday moved into the championship play-off places with victory over 10-man huddersfield town .\nsophie davies says her week has been `` unbelievable '' after securing a place at the world championships in london .\nsix writers have been shortlisted for this year 's dylan thomas prize for young authors .\nmexico 's health ministry has launched an investigation into allegations of medical fraud in the eastern veracruz state .\nthe parents of a soldier who died on an sas selection march have said they are `` extremely disappointed '' the uk government has refused to remove immunity from prosecution over training deaths .\na petition calling for revenge porn victims to be given the right to keep their identities secret has been signed by more than 100,000 people .\nshrewsbury town midfielder anthony ogogo has signed a new one-year deal with the league one club .\ntwo care workers have been given a 12-month community order for neglecting an elderly woman in a birmingham nursing home .\nthe football association -lrb- fa -rrb- has said it will ignore fifa 's ban on england and scotland players wearing poppies on armbands during their match on 11 november in moscow .\nchampionship side cornish pirates have signed loose-head prop adam taylor on a two-year deal .\nthe h1n1 flu vaccine pandemrix appears to increase the risk of narcolepsy , experts say .\na man has admitted beating a man with a baseball bat during a break-in at his home in south lanarkshire .\nthe cheviot hills , the heather-filled dales and the rolling hills of the yorkshire dales national park .\nphotographs by hugh kinsella cunningham .\nmauritius prime minister anerood jugnauth has announced he is stepping down , handing power to his son , prime minister pravind jugnauth .\nan indian soldier who was buried under an avalanche on the siachen glacier in indian-administered kashmir last week is in a coma , the army has said .\na paralysed former event-rider is taking part in the london marathon to prove she can walk again .\na man 's remains have been found on a motorway slip road , police have said .\nliverpool 's cavern club is celebrating its 50th anniversary on saturday .\nthe prime minister has said he will consider arguments about the legacy of the troubles in northern ireland .\nfarming relies on water .\nthe wife of the founder of the sealand oil platform off the suffolk coast has died at the age of 93 .\nformer energy secretary chris huhne has been given a parliamentary pass despite being jailed for perverting the course of justice .\na house has been destroyed in a fire in dumfries and galloway .\nformer snp leader alex salmond has said his party 's case for scottish independence was `` flawed '' during the 2014 referendum .\nbirmingham city midfielder james morrison says manager gary rowett was right to criticise his side after their draw with middlesbrough .\ndonald trump 's response to reports that he revealed highly classified information to russia 's ambassador to the us has been to defend his actions .\nmaxime biamou scored twice as sutton united eased to victory over gateshead at gander green lane .\na landmark free trade deal between the european union and canada has collapsed after belgium 's wallonia region rejected it .\nthe family of a man who died in a head-on crash involving a 79-year-old driver have called for changes to road safety .\nteenage off-spinner alan tongue starred with bat and ball as worcestershire recovered from 14-3 to close on 291-7 against glamorgan at new road .\ndelegates at the tuc 's congress have voted to co-ordinate national and local industrial action against the government 's spending cuts .\na new species of reptile has been discovered in fossilised footprints dating back 250 million years .\npolice are treating the deaths of a man and a woman at a flat in paisley as `` unexplained '' .\na group of muslim leaders have visited the nazi death camps at auschwitz-birkenau in poland .\nglamorgan captain jacques rudolph says the players need to `` stand up '' after two straight defeats in division two of the county championship .\nprosecutors in sicily are investigating claims that a gynaecologist failed to save the life of a pregnant woman who later died of a miscarriage .\nfleetwood mac will headline the isle of wight festival in june 2015 .\npolice in denmark say a headless torso found off the coast of copenhagen is a female .\nfrench president francois hollande has reappointed jean-marc ayrault , 60 , as foreign minister .\nus president barack obama and china 's president xi jinping have signed a deal on cyber security .\ncafodd y 10 uchaf gan y cyhoeddwyr yn dilyn adfywiad mewn sawl lleoliad , a chyfleoedd awyr agored sy 'n gwneud y gorau o ' r tirlun yng\nglamorgan director of cricket hugh morris wants to strengthen his fast bowling options ahead of the new season .\nfrance 's centre-right presidential candidates have clashed over their economic plans in a tv debate .\ntwo climbers had to be winched to safety after getting into difficulty on snowdon 's m4 summit .\nengland 's alastair cook hit the second-longest test innings in history as his side reached 631-7 on day three of the first test against pakistan .\neast sussex 's fire service could be brought under the control of sussex 's police and crime commissioner -lrb- pcc -rrb- .\narsenal and sunderland played out a goalless draw in the women 's super league spring series , while champions chelsea thrashed yeovil town 6-0 .\ntorquay united have re-signed defender joe cole on a two-year deal after releasing midfielder kemar dugdale .\nthe church of england 's second woman bishop has been consecrated at a service at york minster .\nolympic bronze medallist sarah graddon has retired from diving .\ntwo people have been arrested following an incident at a house in wrexham on saturday .\nthe british astronomical society has announced the shortlist of images for its annual photographic competition .\nmae e-bost yn dweud wrthai na fyddai safiad jj ar fater perthynas un rhyw yn cael llawer o groeso yn yr esgob abertawe .\na court ruling in australia has halted one of the world 's biggest coal mines .\nformer monty python star michael jones has been honoured with the lifetime achievement award at the welsh baftas .\nthe shortlists for the 2017 african footballer of the year awards have been announced by the confederation of african football -lrb- caf -rrb- .\nfa chairman greg dyke has announced he will not stand for re-election in 2016 .\ntwo nato soldiers have been killed in an insider attack in southern afghanistan , the alliance says .\nthe brains of babies are to be mapped for the first time , as part of a major new study .\nall five of the candidates for the london mayoral election are against a third runway at heathrow .\nthe uk has been chosen to build europe 's solar orbiter -lrb- solo -rrb- .\nonly a quarter of nurseries and childminders are planning to offer the government 's promised 30 hours of free childcare , a survey suggests .\nbritain 's chris and gabby adcock have reached the final of the malaysia open with victory in kuala lumpur .\nthe paralympic games are the biggest sporting event for disabled people in the world , with more than 10,000 athletes from more than 200 countries competing in rio .\nasian shares traded lower on tuesday as commodity prices fell and greece 's political deadlock continued .\na man has admitted killing an 11-year-old girl in a hit-and-run crash in glasgow .\nan islamic court in the northern nigerian state of bauchi has sentenced four men to 20 lashes each for homosexual offences .\nleague one side wigan athletic have signed bournemouth midfielder jamie macdonald on a season-long loan deal .\nbournemouth boss eddie howe says he is `` absolutely committed '' to the club despite being linked with the england manager 's job .\ncommunity energy projects in wales are being hit by huge increases in business rates .\nif the conservatives are to win the next general election , they will need more north east mps .\nformula 1 's decision to introduce radical changes to cars and engines from 2017 has come as a huge boost to the sport .\nthe mother of a three-year-old boy who had part of his foot bitten off by a barbecue on a beach has said she feels '' helpless '' .\nan archive of photographs of high-rise housing projects across the uk is to be created .\na 23-year-old man has been attacked by a gang in west belfast .\na senior labour mp has written to home secretary theresa may urging her to ban two us speakers from entering the uk .\nworcestershire 's hopes of avoiding relegation suffered a blow as they lost six wickets on day three against kent .\na man has been arrested after a man died in a crash on the m25 in hampshire .\nsinger phil collins has donated his vast collection of artefacts from the battle of the alamo to texas .\nuniversities in england will be told to improve the quality of their courses , education secretary alan johnson is to announce .\npeople in north wales are being urged to take steps to protect themselves from cyber attacks .\nthe un 's human rights chief has called on turkey to investigate the shooting of unarmed civilians in the city of cizre last month .\na florida teenager has been charged with posing as a doctor and stealing thousands of dollars from patients , police say .\nit has been a difficult year for alastair cook .\nworkers at bernard matthews in suffolk have been told their pensions will be honoured , the unite union has said .\nas a lawyer and a media professional , lalita kewlani is used to being in the spotlight .\npolice scotland has said it remains committed to closing control rooms in aberdeen and inverness .\nmae theresa may wedi pleidleisio gyda ' r llywodraeth yn san steffan yn cael ei chynnal yn y senedd .\na 4m boa constrictor is on the loose after escaping from its enclosure at a home in orlando , florida .\na sharp fall in the value of the pound is set to `` crush '' uk consumer spending this year , according to a new forecast .\nchampionship side nottingham forest have signed cardiff city striker federico macheda on loan .\nthe us firm caterpillar is expected to announce hundreds of job losses in northern ireland later this week .\nhundreds of people have protested against plans to sell off allotments in leatherhead and build 500 homes on the site .\ncardiff city defender sean morrison says the bluebirds need to `` learn lessons '' from their late-season collapses .\na charity that helps people with eating disorders is calling for tougher restrictions on the sale of laxatives to teenagers .\njoe clarke 's century put worcestershire in a strong position on day one against derbyshire at new road .\nthe world 's population is expected to double to nine billion people by 2050 , according to the un .\nsomerset director of cricket chris rogers says his side `` gave everything '' in their three-wicket defeat by middlesex .\na former all-ireland winning footballer has appeared in court charged with stealing more than # 500,000 .\ntwo teenagers have been arrested after a 17-year-old boy was stabbed in the stomach in a supermarket car park .\nengland 's scott gregory has been using youtube to help him prepare for his masters debut .\nmore than half of lesbian , gay , bisexual and transgender -lrb- lgbt -rrb- young people in scotland feel safe in the legal system , according to a survey .\n-lrb- close -rrb- : shares in airlines were among the biggest fallers on the ftse 100 on monday .\nthe uk has voted to leave the european union in a historic referendum that has divided the country .\na plumbing and heating company has been fined # 60,000 after gas faults were found in hundreds of homes in dorset and berkshire .\nthe taliban 's capture of sangin district in afghanistan 's southern helmand province is a major blow to the afghan government and its international allies .\nthe national trust -lrb- nt -rrb- has announced plans to restore parts of clandon park house , which was destroyed in a fire last year .\na motorcyclist has died after a crash at the isle of man grand prix .\na man who bombarded his ex-partner with abusive messages has been jailed for five years .\nhave you ever wondered what happens when you pee into a petri dish ?\na prison officer has been attacked with a razor blade in county antrim .\nleague one side accrington stanley came from behind to beat preston in extra time in the efl cup first round .\nthe case for an interest rate rise has `` strengthened '' , the chair of the us federal reserve has said .\nwolfsburg striker nicklas bendtner has been fined by his club after posting a picture of himself on social media while drunk .\ndinamo bucharest are to donate the coppa italia trophy to the family of goalkeeper patrick ekeng if they win the final .\nthe duchess of cambridge has taken the baton from a symphony orchestra in germany on the final day of the royal tour .\na teenager has admitted killing a man in county durham .\nvirtual reality -lrb- vr -rrb- has become a popular tool for gamers to experience the world around them .\na `` zombie caterpillar '' has been found hanging from a tree in a lancashire nature reserve .\ntroubled japanese conglomerate toshiba has said it is in talks with banks over loans .\nmubende is one of uganda 's newest gold mines .\na millionaire was murdered by his ukrainian wife , an inquest has heard .\nvirat kohli 's century led india to a 95-run victory over pakistan in the opening match of the world cup in australia .\nthousands of people have attended armed forces day celebrations across the uk .\nearly humans broke up the bones of mastodons 130,000 years ago , a study in the journal science suggests .\nbritain 's mark cavendish missed out on a medal in the olympic road race as kazakhstan 's alexander vinokourov won gold .\nthe queen has granted a pardon to the british codebreaker alan turing .\nstriker radamel falcao has been left out of chelsea 's champions league squad .\nat least 40 people have been killed and more than 100 injured in a series of bomb attacks in iraq .\nbirmingham city women have signed germany international ramona linden from eintracht frankfurt on a two-year deal .\nbritish eventer emily gilruth is `` progressing steadily '' in hospital after a fall at the badminton horse trials on friday .\nbarnsley head coach lee johnson says he has `` full responsibility '' for the club 's poor run of form .\nindian prime minister manmohan singh and his bangladeshi counterpart sheikh hasina have failed to reach a deal on key issues .\nvote leave and labour in are both launching intensive door-to-door campaigns in merthyr tydfil and caerphilly in the run-up to the eu referendum .\nbritain 's beth tweddle has won a bronze medal in her final olympics .\nengland hooker dylan hartley says he is not thinking about the british and irish lions tour of new zealand .\nliverpool manager brendan rodgers says he will not sell raheem sterling if the club 's owners do not want to sell the winger .\nthree-time olympic champion sanya richards-ross says she has received support from other female athletes after revealing she had an abortion .\nanother dramatic day in the english football league , another late winner in the championship and a first goal for isaiah osbourne in the league one .\na saudi-led coalition air strike in northern yemen has killed at least 12 civilians , officials say .\nthe uk could stay in the european union after brexit , a former cabinet secretary has said .\nwigan warriors back-row forward lewis tierney has signed a new three-year contract with the super league club .\nthe mother of a 15-year-old girl who died after being swept out to sea at a beach in newcastle has warned young people not to take water for granted .\nzambia 's zesco united held egyptian giants al ahly to a 2-2 draw in the group stage of the african champions league on wednesday .\na paraglider has been airlifted to hospital with a serious leg injury after crashing in county down .\nthe first all-electric taxi to be built in the uk is to be unveiled at a new factory .\nleft-of-centre parties have won mayoral elections in madrid , barcelona and valencia , bringing to an end more than two decades of popular party rule in spain .\nlabour 's plan to scrap university tuition fees in england is a radical change of policy .\na hospital has denied a doctor 's claim that it charged staff # 22.95 for a gold-plated blind .\na national advertising campaign has been launched in the search for a man who police believe may have been murdered .\ncoventry city came from behind to beat 10-man millwall in league one .\nshaker aamer 's return to the uk marks the end of one of the most divisive chapters in the uk 's relationship with the united states .\nthe gcse exam system in england is to be overhauled in the biggest shake-up since the introduction of o-levels in the 1990s , the exams watchdog , ofqual , says .\nchancellor george osborne will deliver his third spending review on wednesday , setting out the government 's plans for the next four years .\nthe australian government says it plans to strip citizenship from dual nationals who engage in terrorism .\nballyliffin has been confirmed as the venue for next year 's irish open .\na woman has said she is `` furious '' after being described as a `` home educated oddball '' in a job advert .\nhundreds of people have attended the funeral of a durham police officer who appeared on a tv crime series .\nthe us says it is to resume security aid to bahrain , which had been suspended over human rights concerns .\nsouth africa head coach russell domingo will not be in charge of the side against england in march .\njose mourinho 's return to chelsea ended in a heavy defeat as his manchester united side were outclassed at stamford bridge .\naberdeen defender graeme shinnie has signed a new three-year contract .\nengland 's win over scotland was their best performance of the six nations so far .\nthe women 's world cup kicks off in germany on friday , and organisers have enlisted the help of paul the octopus .\nformer world champion guy martin set the pace in friday 's opening practice session at the isle of man grand prix .\nbrexit , cats and sudden deaths all feature in monday 's papers .\na man has appeared in court charged with murdering his wife , whose body was found in a flat .\nhibernian extended their lead at the top of the championship with victory over 10-man dundee united .\nthe craft spirits industry in the uk is `` going through a period of explosive creativity '' , according to a new report .\nthe seventh and final round of the world rugby sevens series takes place in paris this weekend .\nbritain 's non cave has won the ironman world championship in hawaii .\ndundee scored two second-half goals after a controversial `` ghost goal '' that gave motherwell a point .\na man has been charged in connection with a racially aggravated assault on a woman outside a supermarket .\npop star tove lo admits she 's been `` geeking out '' in the studio .\nuganda 's prime minister 's website has been hacked in a row over anti-gay legislation .\nfloyd mayweather and conor mcgregor have traded insults ahead of their las vegas super-fight on 26 august .\nthousands of kenyan children have taken part in a bid to break the world record for the largest reading aloud .\nbundesliga side schalke have appointed former albania boss domenico tedesco as their new head coach .\na charity is appealing for the public 's help to identify children photographed in poverty in the 1960s and 70s .\na man died after suffering a fatal allergic reaction to a bee sting , an inquest has heard .\na new cancer research centre at the university of manchester is set to receive # 21m from the government .\ntens of thousands of coptic christians have held a vigil in the egyptian capital , cairo , to mourn the death of pope shenouda iii .\ncrime gangs are increasingly using encrypted mobile phones to communicate , senior police officers have warned .\nengland 's danny willett and thorbjorn olesen share the lead on seven under par after the second round of the dubai desert classic .\nthe queen 's 90th birthday street party will be held in trafalgar square , kensington palace has confirmed .\na 32-year-old man has been arrested over a fire at a florida mosque attended by the orlando nightclub gunman .\nswansea city football club 's longest-serving director has died at the age of 89 .\nthe us zoo where a gorilla was shot dead after a young boy fell into its enclosure has removed the animal from its social media accounts .\nfrench police have carried out a security operation at paris 's gare de lyon station .\na cat has died after being poisoned with antifreeze in glasgow , the scottish spca has said .\nsepp blatter should resign as president of world football 's governing body fifa , david cameron has said .\nwork is under way on a new national memorial centre for the battle of britain .\nthe operator of japan 's crippled fukushima nuclear plant has outlined a timetable to bring it under control .\na public meeting has been held in manchester to discuss a counter-terrorism exercise in which a muslim was used as a suicide bomber .\nlana del rey is in london 's broadcasting house .\nbelfast giants beat elite league leaders nottingham panthers 4-3 at the sse arena on friday night .\nblackburn rovers were relegated from the championship despite beating 10-man brentford .\nthe scale of religious persecution is `` beyond all belief '' , the prince of wales has said .\nthe uk and norway have signed a deal that will see electricity generated in norway travel to the uk 's power network .\na '' catalogue of missed opportunities '' led to the deaths of 20 babies and young children at a cumbrian hospital , an independent report has found .\nthe location of king arthur 's camelot has long been a mystery .\npop star lady gaga will headline the super bowl half-time show in houston , texas , on sunday .\na man accused of attacking a newly-wed couple at their wedding reception has told a court he was trying to defuse the situation .\njuan martin del potro beat third seed stan wawrinka in four sets to reach the third round at wimbledon .\njustice secretary michael gove has accused the eu of making `` concessions '' to turkey under president recep tayyip erdogan .\nexam timetabling can be a tricky business .\nboys aged 11 and 12 in wales should be vaccinated against a sexually transmitted cancer , campaigners have said .\nnapoli striker gonzalo higuain will only leave the club if tottenham meet his release clause , a source close to the argentina international has said .\ndebris from a nearby wood could be the cause of recent sightings of the loch ness monster , according to conservationists .\nvoting has begun in the general election in cheshire .\nthe 150th anniversary of big ben is to be celebrated as london 's year of the heritage .\na collection of more than 1,000 vintage diving helmets has sold at auction for more than # 120,000 .\nthe bank of england 's monetary policy committee -lrb- mpc -rrb- has voted 8-1 to keep interest rates on hold at 0.5 % .\nbradford city have released defender stephen darby following their league one play-off final defeat by millwall .\ncanada 's new government has dropped an appeal against a court ruling that a law banning full-face veils such as the niqab was unconstitutional .\nlondon-based steel recycling firm liberty house is set to make a formal bid for tata steel 's uk operations .\na sri lankan court has sentenced a former defence secretary to life in prison for the murder of an opposition mp .\ngloucester hooker mark atkinson has signed a new contract with the premiership club .\nchinese tech giant baidu has unveiled a digital assistant that can be controlled by voice .\na former indian navy officer sentenced to death by a military court in pakistan has asked for mercy .\na muslim man who came out as gay has said he has received death threats since his wedding last week .\ndenmark has made big changes to its cancer care system in a bid to improve survival rates .\npart of a road in stafford is to be closed as part of a # 21m project to replace ageing water pipes .\nsteve sidwell says he wants to stay at brighton to help the club stay in the premier league .\nsocial news site reddit has removed its warrant canary - a statement that it has not received secret surveillance requests .\nconservationists are opposing plans for a new golf course in the scottish highlands .\nit 's 50 years since the publication of one of the most controversial books ever written about australia .\nmyanmar 's government has signed a ceasefire deal with about 30 rebel groups .\nthe pound 's fall against the dollar since the brexit vote has been a lifesaver for american fashion writer alexander deleon when he visits the uk .\nnational league side forest green rovers have signed former chelsea and newport county goalkeeper scott pidgeley on a short-term deal .\nthe uk 's energy regulator has said it is `` disappointing '' that millions of customers are still paying too much for their energy . pressure is mounting on the uk 's big six energy suppliers to cut their prices in line with falling costs after the latest analysis showed wholesale gas and electricity prices in the uk\nfertiliser needs to be added to around a quarter of the earth 's ice-free land to meet the growing demand for meat and milk .\nrussell slade will step down as cardiff city manager at the end of the season .\nchina 's imports of iranian oil surged in may , according to official figures .\nthe abduction of more than 200 girls from a school in north-eastern nigeria has sparked anger and protests across the country .\ngreat britain 's mixed team of lauren french and jack evans won silver in the team event at the european fencing championships in baku .\nan 87-year-old man has had his world war two medals stolen while he was out .\nwales men 's hockey head coach paul clements says promotion to the top tier of european hockey will help his side .\nscotland 's fishing industry has backed the uk 's decision to leave the european union .\nrussia is to reduce its military presence in syria , the country 's defence minister has said .\na new campaign has been launched to tackle underage drinking in the highlands .\nglasgow-based power generator aggreko has reported a sharp fall in annual profits .\nit 's 30 years since the release of the bbc micro computer .\nformer african champions js kabylie of algeria suffered a shock 3-0 home defeat by liberia 's national team in the first leg of their african confederation cup last-32 tie on sunday .\ntwo youths have been injured in a bonfire night fire in stirling .\nfast bowler tom taylor has signed a new contract with derbyshire until the end of the 2019 season .\ncouncil tax bills in england and wales could rise by an average of nearly # 200 over the next five years , the local government association -lrb- lga -rrb- has warned .\naccident rates in 20mph zones in greater manchester have not fallen as quickly as initially hoped , a report has found .\na sinn féin mp has called on the uk secretary of state to explain why he did not take his seat when the irish national anthem was played at the mckenna cup final .\nthe letter announcing the departure of nicholas serota as the director of tate modern is short and elegant .\nthe results are in for the uk general and london assembly elections .\nthe rugby world cup in newcastle has generated an estimated # 43m for the region 's economy , organisers have said .\njose mourinho 's treatment of former chelsea doctor eva carneiro was `` a failure of personal judgement and public behaviour '' , says football association chairman greg dyke .\na man who built a mock-tudor castle without planning permission has had to demolish it .\na pre-inquest hearing into the death of the manchester suicide bomber has been opened and adjourned .\nactor david johnson , best known for his roles in shakespeare 's julius caesar and some girls do , has died at the age of 85 .\nthree wards at raigmore hospital in inverness have reopened to visitors after being closed due to a norovirus outbreak .\na woman who defrauded her employer out of thousands of pounds has admitted breaching a community payback order .\nprime minister theresa may has said she wants to call an early general election .\npolice in colombia say they have dismantled an office that was trying to sabotage peace talks with farc rebels in cuba .\na care worker who stole more than # 100,000 from a disabled man to fund a `` lavish lifestyle '' has been jailed .\na group of women ams has called for companies to be banned from bidding for government contracts .\nindia 's prime minister narendra modi has thanked people for accepting his surprise decision to withdraw 500 -lrb- $ 7 -rrb- and 1,000 rupee notes .\nan investigation has been launched into a hospital trust 's finances .\nmore than 60 people have appeared in court in myanmar on charges linked to violent protests against education policy .\njewellery worth about # 20,000 has been stolen from a jewellers .\nkenya 's election commission has delayed announcing results from more than half the constituencies , amid a row over the counting of millions of spoiled ballots .\nmeet george , he 's one of britain 's best-known gardeners .\nin our series of letters from african journalists , ghanaian writer elizabeth ohene-agyemang looks at the state of ghana 's roads and bridges .\na man is in a serious condition in hospital after a two-vehicle crash in south lanarkshire .\nthe murder of belfast solicitor pat finucane was `` state-sponsored '' , an official review has found .\nthree men have been arrested on suspicion of the murder of a man who was shot dead outside a meat market .\na sculpture honouring musician michael ronson has been unveiled in his home city of hull .\ndavid cameron has apologised to a london imam for `` any misunderstanding '' over claims he supports islamic state -lrb- is -rrb- .\ngardening in urban areas can help boost the number of bees and other pollinating insects , say researchers .\ncrewe alexandra have re-signed striker ryan lowe on loan from league one rivals bury until the end of the season .\na herd of zebras has been captured after roaming the streets of the south african city of port elizabeth .\npolice are `` extremely concerned '' for the safety of a 12-year-old girl from greater manchester who has gone missing .\na couple have been reunited with a gold medal and jewellery stolen 10 years ago after they were found by police in the thames estuary .\nbbc northern ireland has won three awards at the irish television festival .\ntwo men have appeared in court charged with the murder of a woman who was shot in the head in oxfordshire .\na priest who told children `` father christmas is not real '' has apologised .\nwhen i first arrived in moscow more than 20 years ago , the only way i could keep up with what was going on in the russian government was to go to the kremlin and look at the newspapers .\nsouthport have sacked manager steve burr and his assistant paul watson .\nsale sharks hooker vadim cobilas will leave the premiership club at the end of the season to join french top 14 side bordeaux .\nin the hours after the murder of qandeel baloch , a social media star who was shot dead in a so-called honour killing in pakistan , one of her followers posted a defiant message .\nthe organisers of a celtic music festival have launched an augmented reality experience for fans .\nkasabian 's new video has been criticised for using the word `` psycho '' to describe patients in a psychiatric hospital .\ntesco has bought the giraffe restaurant chain for an undisclosed sum .\na man has been jailed for eight years for raping and assaulting a woman over a 25-year period .\narchaeologists have uncovered evidence of people living in scotland 3,000 years earlier than previously thought .\nbrett d'oliveira and daryl mitchell hit centuries as worcestershire took control against derbyshire at derby .\na man and two boys have escaped injury in a suspected arson attack at a house in cookstown , county antrim .\na woman has described how a man knocked on her door in west belfast and told her he had been shot in the leg .\nbritain is to reopen its embassy in iran for the first time in more than 30 years .\npalau is a chain of coral islands in the western pacific ocean .\nthe city of bloomington in the us state of indiana has renamed columbus day and good friday as `` indigenous people 's days '' .\nnorthern ireland 's agriculture minister has said she is hopeful that northern ireland pork can be exported to china .\nformer eastenders actress janet johnston is to appear in the fifth series of downton abbey .\ngermany 's central bank , the bundesbank , has urged the government to raise the retirement age to 69 .\njared payne is a doubt for ireland 's six nations game against england at twickenham on saturday .\nnorwich city assistant manager richard money says he would like to return to management .\nthe environment minister did not breach ministerial code by approving a controversial planning framework , the high court has been told .\nnorth wales police and dyfed-powys police have been told they need to improve by inspectors .\nfour ex-soldiers have been jailed for plotting to smuggle guns and drugs into the uk .\ngourmet burger kitchen , one of the uk 's fastest growing burger chains , has been sold .\nsony is to stop making its dedicated e-reader , the prs-t3 .\nnorthern ireland 's most senior judge has said the british government has a legal obligation to fund inquests into the deaths of the troubles .\nthe controversial kudankalum nuclear power station in the southern indian state of tamil nadu has started generating electricity .\nthe 2015 formula 1 season gets under way in australia this weekend .\nthe public inquiry into the activities of stakeknife , an ira informer , is due to begin in belfast on wednesday .\npreston north end have signed aston villa midfielder jordan robinson and fulham defender ryan pringle on two-year deals .\nyoung people from poorer backgrounds are more likely to be involved in violent crime , according to a study .\nsky has launched a mobile phone service that piggybacks on o2 's network .\nnorthern ireland trauma doctor dr john hinds has died after a motorbike accident in the republic of ireland .\nthe scottish parliament 's finance committee has backed the scottish government 's council tax reform plans .\nthe introduction of a 5p charge for single-use plastic bags in england has been blamed for the loss of dozens of jobs .\naberdeen city council has voted against the controversial city garden project .\na 50-year-old man has been arrested by police investigating phone hacking at the news of the world newspaper .\na 20m-long facsimile of magna carta has been unveiled at lincoln castle to mark the 800th anniversary of the sealing of the charter .\nrafael nadal has confirmed he will play at the aegon championships at queen 's club in june .\nnigeria says it has shut down a radio station supporting the creation of a breakaway state of biafra , 50 years after the region declared independence .\nalton towers has defended its response to the rollercoaster crash which left 16 people injured .\nthe queen has a '' norfolk accent '' , her cousin has said .\nmark connolly 's second-half header was enough to give crawley a 1-0 win over blackpool at broadfield stadium .\nthe met office has issued a weather warning for heavy rain across south wales on monday .\nbritish swimming performance director bill scott has resigned following an independent review into the team 's performance at the london 2012 games .\ngreat britain will host the 2019 world taekwondo championships at the manchester arena .\na charity has warned of a `` crisis of low pay and poor conditions '' in scotland 's workplaces .\nimagine going to school and being greeted by one of the world 's biggest children 's authors .\ncardiff 's half marathon will go ahead this year , the city council has said .\nbritish airways cabin crew have voted to go on strike on 7 and 8 january in a dispute over pay , the unite union has said .\na boy who suffers from a sleep disorder triggered by a flu vaccine has been awarded # 50,000 .\nit is not every day that an olympic champion takes part in a race while heavily pregnant .\nbrentford defender tom dallison has signed a new three-year contract with the championship club .\nformer children 's laureate anne blackman is to have her book noughts and crosses turned into a bbc one drama .\nan album of signatures from raf dambusters pilots has sold at auction for # 2,200 .\nactress michele morgan , who won the cannes palme d'or in 1946 , has died at the age of 94 .\nthe scottish police authority -lrb- spa -rrb- is to consider whether to close its control room in aberdeen .\nmicrosoft has announced a new version of minecraft for schools .\nthe prime minister and the chancellor have both said they would not cut the top rate of income tax to 40p .\nthe us presidential nomination process has become a bit more open-ended this year .\nbritish number one johanna konta will play in the nottingham open in june .\nindian prime minister narendra modi is in silicon valley for the first time since taking office in may 2014 .\nmanchester united manager jose mourinho has told striker anthony martial to `` listen to me and not his agent '' .\nrestrictions on chester and wrexham fans travelling to saturday 's national league derby match in wrexham have been lifted .\nstoke captain ryan shawcross could be out for up to four weeks with a hamstring injury .\na former friend of the parents of murdered toddler liam fee has said she is `` shocked '' by the pair 's crimes .\nengland won their first women 's six nations grand slam in four years with a bonus-point victory over ireland in dublin .\nthe yorkshire ripper could be moved to a prison where he could be treated for schizophrenia .\nit is 150 years since the first americans set sail for cuba on a wooden ship called the el faro .\na fife-based interior fittings firm is to open an office in hong kong in a bid to tap into growing business opportunities in britain .\nthe shortlists for the 2013 bbc sports personality of the year will be revealed on tuesday .\nportsmouth supporters ' trust -lrb- pst -rrb- chairman peter brown has urged fans not to give up on the club 's future .\na large mako shark has been caught off the coast of pembrokeshire by a group of anglers .\nthe un refugee agency -lrb- unhcr -rrb- has accused cameroon of forcibly returning thousands of refugees fleeing boko haram to nigeria .\non tuesday , the judge in the caster semenya sex abuse case asked me to take a week off .\nzimbabwean police have used tear gas and water cannon to disperse protesters in the capital , harare .\na detective was cleared of gross misconduct after making a racist allegation about a monkey toy , the bbc has learned .\nthe monaco grand prix is one of formula 1 's most prestigious races , but how do you get there ?\niran 's participation in friday 's talks in vienna aimed at finding a political solution to the conflict in syria has been welcomed by the country 's hardliners .\naustralia 's economy grew 0.9 % in the first quarter of the year , better than expected , helped by exports and higher household spending .\nexploratory drilling for oil and gas has been given the go-ahead by natural resources wales .\nfirefighters have rescued 17 people from a six-storey block of flats in glasgow after a fire broke out .\njailed south african athlete oscar pistorius has suffered a setback in his bid to be released early from prison .\nthe family of the american journalist marie colvin has filed a lawsuit against the syrian government .\na rare sea turtle which washed up on a gwynedd beach has been moved to a new home .\nchina 's environment minister has called for a radical shift in the country 's economic model .\ntax experts from the so-called big four accountancy firms have rejected claims that they are helping companies to avoid tax .\nworcestershire 's new overseas signing , south africa fast bowler kyle abbott , will arrive at new road on monday , says daryl mason .\nnorthern ireland 's former enterprise minister has called for an investigation into the controversial pfi scheme for government buildings .\nthe welsh audit office -lrb- wao -rrb- has called on the welsh government to bring in an electronic prescribing system for medicines in hospitals .\nthe rspca should be separated from its political and commercial roles , an mp has said .\ngreat britain 's performance at the london 2012 olympic games is in the books .\nsouth sudan booked their place in the next round of the 2017 african nations championship -lrb- chan -rrb- qualifiers with a 2-0 win away to dr congo on sunday .\nat least six people have died and thousands have been left without power after severe storms battered parts of australia 's new south wales -lrb- nsw -rrb- state .\ncardiff blues have signed matthew morgan on a two-year deal from bristol .\nthe fossilised remains of a teenage girl found in a sinkhole in mexico have been identified by scientists .\ntanzania 's deputy health minister has been accused of homophobia after tweeting that homosexuals would be arrested .\nthere are two big takeaways from bp 's third quarter results .\nalex hales hit the fastest ever twenty20 century as nottinghamshire beat durham in the t20 blast .\nnatural gas and oil prices have risen sharply after russia cut supplies to ukraine .\nvideo replays have been used for the first time in a professional football match in the us .\nengland 's second one-day international against sri lanka at bristol was abandoned without a ball bowled because of rain .\na california woman found three weeks after being abducted had a message branded on her skin , a sheriff says .\nthe bbc has been given exclusive access to the headquarters of an armed group in the us state of oregon .\nthe duke and duchess of cambridge will attend a service to mark the 20th anniversary of the death of princess diana , kensington palace has confirmed .\nbritish number three aljaz bedene beat croatia 's borna coric in three sets to reach the second round of the marseille open .\nhong kong officials have unveiled plans for a new high-speed rail terminal which they say will be `` one-stop '' for travellers between china and hong kong .\nalgeria made a winning start to their 2018 world cup qualifying campaign as they beat qatar 1-0 in a friendly in the algerian capital algiers on thursday .\nsenegal drew 1-1 with ecuador in their final group f match at the under-20 world cup in south korea .\nwelsh secretary alun cairns told me he was `` emotional '' at david cameron 's final cabinet meeting .\nthe army 's first female chief of staff has taken up her post at the royal military academy at sandhurst .\n-lrb- close -rrb- : stocks on wall street closed lower after the latest us jobs figures came in below expectations .\nleeds rhinos say their flood-hit training ground will be closed for six months .\nrussian president vladimir putin has criticised the decision to ban russian athletes from next month 's paralympic games in rio .\nlondon 's transport system has been put through its paces again ahead of the olympic games .\nworld number one novak djokovic beat kei nishikori in straight sets to win the abierto mexicano telcel in acapulco .\nleague two side accrington stanley have signed bury striker alex rodman on a season-long loan deal .\nmanager pedro caixinha says rangers `` did everything they could to win the game '' in their goalless draw with hearts .\na 65-year-old woman has died after a lorry crashed into the ground floor of a flat in largs .\nexeter made it seven successive league wins with a comfortable victory over 10-man crewe at st james park .\na fan in aberdeen has placed a # 125,000 bet on andy murray winning the australian open .\nthe family of a woman murdered by her ex-partner have lost their supreme court appeal against a ruling they can not sue the police .\nthe vatican has begun the process of selecting a new pope .\ntaking a drug normally used to treat osteoporosis could prolong the life of joint implants , research suggests .\na 17-year-old boy has died after being stabbed in a street in bath .\nmore money is needed to improve transport links in the north of england , a cross-party group of politicians has said .\nzlatan ibrahimovic says he will retire from international football after sweden 's world cup play-off defeat by portugal in stockholm .\nferrari 's fernando alonso held off the challenge of red bull 's sebastian vettel and mclaren 's jenson button to win the hungarian grand prix .\neast midlands airport is celebrating its 50th anniversary .\nfifty years ago today the beatles played their first gig at the cavern club in liverpool .\nthe prince of wales and the duchess of cornwall are to visit australia and new zealand next month .\ni 'm confused .\nsussex have re-appointed former captain murray goodwin as assistant head coach .\nformer england footballer paul gascoigne and comedian steve coogan have settled their phone-hacking cases at the high court for undisclosed damages .\nwales men 's hockey team have been relegated to the eurohockey b division after losing to scotland in the final of the european championships .\nswansea city 's players paid for all the tickets for the club 's supporters to attend the final two games of the premier league season .\na friend of the author of to kill a mockingbird has told the bbc why she did n't write another novel .\ndna belonging to one of two men accused of an acid attack on a journalist was found on a jacket at the scene , a court has heard .\nregulators in the us have said crypto-currency ventures must register with them .\nguy martin has been added to the honda racing team for this year 's lightweight tt at the isle of man .\ngps in england are being offered `` bonuses '' to reduce the number of patients seen in their practices .\nhealth care watchdogs in wales are calling for a shake-up in the way they are perceived by the public .\nthe scottish parliament by-election triggered by the resignation of a borders mp is to be held on 7 may .\nearly treatment with hiv drugs dramatically reduces the risk of aids , a major study suggests .\npart of the railway line between sheffield and doncaster has been reopened after a fire at a toy factory .\n`` i started throwing the hammer when i was 14 years old because i loved ballet . ''\na man has appeared in court charged with the attempted murder of a police officer in northern ireland six years ago .\ncampaigners are calling for a women 's clinic for survivors of female genital mutilation -lrb- fgm -rrb- to be established in wales .\ndixons carphone , the uk 's biggest mobile phone retailer , has reported a 15 % rise in annual profits , despite the uk voting to leave the european union .\nthe asteroid strike that wiped out the dinosaurs and ushered in the age of life on earth has been explained in unprecedented detail by scientists .\n-lrb- close -rrb- : wall street markets closed little changed on thursday as investors assessed the latest batch of corporate results .\nbbc sport football expert mark lawrenson is predicting the outcome of every game at the 2014 fifa world cup in brazil .\ntottenham manager mauricio pochettino says his side need to improve their mentality after they were knocked out of the champions league .\na woman has described the `` horrendous '' experience of being `` lovebombed '' by a man she met on a dating website .\na plan to improve the careers of staff working with young children in wales has been unveiled .\na law firm is investigating after a poster offering legal help to survivors of the grenfell tower fire was displayed in london .\na man who called in a hoax bomb threat to a scottish hospital has been jailed .\nthe future of jogscotland has been thrown into doubt after the scottish government pulled its funding .\nrussia may be considering a ban on wine and other alcoholic drinks from the european union .\na far-right activist who wants a ban on the burka has been allowed to stand in ukip 's leadership election .\nvictims of asbestos-related cancer will be able to claim compensation under a new government scheme .\nwales coach robin mcbryde says judgement day could have a big impact on the british and irish lions selection .\nthe teenage star of us sitcom two and a half men has said he is quitting the show .\ndonegal take on galway in saturday 's all-ireland football qualifier game at ballybofey .\nmexican president enrique pena nieto 's institutional revolutionary party -lrb- pri -rrb- looks set to retain power in sunday 's parliamentary elections .\na 16-year-old boy has died after being hit by a lorry in south-west london .\nfewer americans with a high-school degree or less say they are `` living comfortably '' in the us , according to a federal reserve survey .\na man has been charged with possession of a bladed article .\nthe man who killed 77 people in norway last year has written to the authorities complaining about his conditions in prison , reports say .\nthousands of customers ' details may have been stolen in a cyber-attack on the carphone warehouse website .\nthe jury in the trial of two brothers accused of murdering a cardiff supermarket worker has retired to consider its verdict .\na # 5 coin is to be minted by the royal mint to mark the first birthday of prince george .\na key part of a world war two machine used to crack secret messages has been found in a shed in essex .\nfour london councils have spent more than # 600,000 on legal action against heathrow 's third runway .\ncharlton athletic have released midfielder reza ghoochannejhad and defender thiago motta .\na man has been jailed for the manslaughter of a man who was stabbed to death in essex .\na plaque has been unveiled in memory of a teacher who was murdered in her classroom .\nzlatan ibrahimovic would help manchester united cover the cost of missing out on the champions league , according to a football finance expert .\nfour people have been arrested in france in connection with the murder of three people at a jewish museum in belgium .\ngrandparents would be allowed to claim up to four weeks of unpaid parental leave under labour plans .\nmatt halkett 's late header gave livingston victory over champions rangers .\nmanchester city 's unbeaten start to the season came to an end as they were held to a draw by burnley at etihad stadium .\na belgian man has been charged with terror offences linked to last week 's paris attacks .\nchelsea are interested in re-signing winger victor moses , according to stoke boss mark hughes .\ngoogle 's chairman eric schmidt has warned against the spread of mini-drones as weapons of war .\na man is in a critical condition in hospital after a two-car crash in aberdeenshire .\n-lrb- closed -rrb- : wall street markets closed higher on monday , with bank shares leading the way .\nthe 9-4 favourite big buck 's won the dante stakes at york .\nireland and the netherlands were forced to settle for a draw on day four of the intercontinental cup game at malahide .\nmasked men who blew up a cash machine in north lanarkshire are being sought by police .\njamie murray and bruno soares missed out on a place in the final of the atp world tour finals doubles but remain on course for the world number one ranking .\npetra vondrousova beat anett kontaveit in straight sets to win her first wta title at the prague open .\na man has died in a two-car crash in stockport .\nlabour 's leadership candidates have been accused of excluding supporters of other parties from taking part in next week 's election .\nisrael 's prime minister has vowed a `` very fierce '' response after the death of a 19-year-old man in clashes with palestinians .\nnice 's mario balotelli was racially abused by bastia fans during friday 's ligue 1 match , according to team-mate alassane plea .\n-lrb- open -rrb- : london 's leading shares opened lower on friday , despite the bank of england 's surprise interest rate decision .\na woman who stabbed a pensioner to death in his own home has been jailed for life .\nshelling has hit the rebel-held city of donetsk in eastern ukraine , as a russian aid convoy headed towards the border .\na four-month-old baby boy was mauled to death by a family dog while being held in his mother 's arms , an inquest heard .\na man who posted `` vile , aggressive sexual fantasies '' about two women he photographed and posted online has been given a 12-month community order .\nchinese e-commerce giant alibaba plans to list its shares on the new york stock exchange .\nthe cities of rishikesh and haridwar in india have been used as a laboratory to study the spread of antibiotic resistance .\nthe palestinian leader , mahmoud abbas , has urged us president-elect donald trump to reconsider his plan to move the us embassy in israel to jerusalem .\nlancashire 's police and crime commissioner has warned the county could lose up to 600 officers in the next four years .\njon walters is expected to be fit for the republic of ireland 's euro 2016 warm-up matches against sweden and belgium on tuesday .\npremiership clubs have been asked by french champions toulon to consider playing in the super rugby competition .\na 23-year-old man has been arrested in connection with the death of a man in midlothian . .\nsouth africa 's anti-doping laboratory has been suspended by the world anti-doping agency -lrb- wada -rrb- .\nworkers at a county antrim glass factory are facing redundancy , the union unite has said .\nhundreds of people have taken part in tenby 's annual boxing day swim .\narthur the dog came to newsround 's studio as a stray .\npolice in scotland are investigating an allegation of historical child sex abuse against labour peer lord janner .\nthe us government has proposed new guidelines on the use of built-in electronic devices in cars .\nan american woman has been gang raped in the northern indian state of himachal pradesh , police say .\niraq 's president has called on protesters to `` abide by the law '' , after deadly clashes in the capital baghdad .\nmae tm yn y scarlets wedi iddo arwyddo i ddileu ' r gwaharddiad yn l ym mis chwefror .\nmicrosoft , google and facebook are teaming up to build the world 's biggest subsea cable .\nthe sydney sixers will play perth scorchers in the final of the big bash after beating brisbane heat in a super over .\nchinese shares traded higher on monday , extending friday 's gains after trade data showed exports fell in march .\na pedestrian is in a critical condition in hospital after being hit by a bus in gwynedd .\nn-dubz have revealed they were surprised to get four nominations for this year 's mobo awards .\nharrison ford has said he is `` very happy '' with the script for his next indiana jones film .\nnewcastle united manager rafael benitez and sunderland counterpart sam allardyce say they will `` go right to the wire '' to avoid premier league relegation .\npakistan 's intelligence agency -lrb- isi -rrb- has said it is `` embarrassed '' by the us raid that killed al-qaeda leader osama bin laden .\nthe owners of blackpool football club are taking legal action against a fans ' forum .\nimmigration minister michael harrington has refused to say how many syrian refugees have come to the uk .\nengland one-day captain eoin morgan and paul stirling both hit centuries as middlesex beat kent by eight wickets in the one-day cup in abu dhabi .\na carmarthenshire man spilt a bottle of milk on the floor after being told to return it at a supermarket .\nthe us military has condemned the afghan government 's decision to release 37 `` dangerous '' prisoners .\nliam main 's second-half goal gave oldham victory over southend to boost their league one survival hopes .\na woman 's body has been found at a house following the arrest of a man on suspicion of murder .\nnational league side braintree town have signed defender nathan davis on a two-year deal following his release by league two scunthorpe united .\ntwo men have appeared in court charged in connection with the theft of # 20,000 worth of biscuits .\nfour teenagers have been arrested in connection with the murder of a man in west belfast on saturday .\na man has been taken to hospital after being hit by a car on the a96 in aberdeen .\nfrench side nice have signed netherlands midfielder wesley sneijder .\nmadagascar 's parliament has voted to impeach president hery rajaonarimampianina .\na man has admitted causing the death of a cyclist in nottingham .\nsome of the anti-fascist protesters who took part in a counter-demonstration were `` determined to cause damage '' , police have said .\nthe government will need to introduce 15 brexit-related bills before the uk leaves the eu , according to the institute for fiscal studies -lrb- ifg -rrb- .\ntottenham came from a goal down to beat swansea city and move level on points with premier league leaders leicester .\nengland 's opening women 's rugby world cup match against new zealand will be shown live on bbc one on 20 november .\nit was a busy day for london underground workers on wednesday .\nrussia , iran and turkey have agreed on a plan to set up safe zones in syria in a bid to end the six-year conflict .\nplayboy magazine has announced that it will no longer publish photos of naked women as part of a redesign of its magazine .\nus tycoon donald trump has threatened legal action after the scottish government approved the aberdeen offshore wind deployment centre -lrb- eowdc -rrb- .\nthe opening of a new road bridge across the river tay in dundee has been delayed until june .\nif you have been sexually abused by jimmy savile or any other public figure , or if you know someone who has been , you can report it to the police .\nthe cassini probe has made its final pass of saturn 's icy moon titan .\na new football league for amputees in scotland is hoping to spread the sport around the country .\na man who was caught with heroin with a street value of # 263,000 was trying to pay off a debt , a court has heard .\ntwo swansea university archaeologists have been part of a new study into the history of the amazon rainforest .\nswansea city 's under-21 side have won the welsh cup for the second season in a row .\nengland have named three uncapped players in their squad for the 2017 six nations .\nthe serious fraud office has been ordered by the high court to pay the legal costs of a case against six men accused of a multi-million pound fraud .\nhibernian head coach neil lennon praised his side 's character after they came from behind to beat 10-man rangers at ibrox .\nderby county have signed midfielder curtis davies from hull city for an undisclosed fee .\nengland 's confidence ahead of their world cup match against italy has increased , according to a new study .\nhave you ever wondered what it would be like to live in a tyrannosaurus rex ?\nbrazilian police investigating alleged illegal ticket sales at the rio olympics say they want to speak to international olympic committee -lrb- ioc -rrb- president thomas bach .\nplanning permission has been granted for the construction of a 10-turbine wind farm in the western isles .\nvideo game retailer steam has struck a deal with hollywood studio lionsgate .\nblackpool have signed aston villa goalkeeper ryan allsop on a two-year deal and bournemouth striker jordan cooke on a season-long loan .\na chain of restaurants and patisseries in aberdeen has closed with the loss of 70 jobs . `` unfortunately , the business has had to close , with the loss of 70 jobs , because there is not enough money available to continue trading '' .\nthe way schools in england are funded is to be overhauled , education secretary nicky morgan has said .\ntheresa may has been accused of `` letting austerity damage her ability to keep us safe '' by labour over cuts to police numbers .\na russian long jumper has been cleared to compete at the rio olympics .\nsouth korea 's byeong-hun an shot a six-under-par 66 to win the pga championship at wentworth .\na man has admitted killing his estranged wife at their home in glasgow .\none of wales ' most famous private gardens has been devastated by flooding .\nthe first interbreeding between modern humans and neanderthals took place 45,000 years ago , a study suggests .\nplans for a # 3m revamp of a denbighshire school have been approved .\nisrael 's general election campaigns are never dull .\na corn snake has been rescued from a van in caerphilly .\nchampionship side fulham have signed borussia monchengladbach midfielder konstantinos petsos on loan until the end of the season .\na man who was found `` sleepwalking '' in manchester city centre has been praised by police .\nformer greek prime minister lucas papademos has been injured in an explosion in his car in central athens .\nbritish cyclist becky williamson says she is `` here to live another day '' after a crash at the european track championships left her paralysed .\nparis st-germain have signed spanish forward jese rodriguez from real madrid on a five-year deal for an undisclosed fee .\nformer greek finance minister george papaconstantinou has been found guilty of doctoring a document to hide a list of greeks with swiss bank accounts .\nnicky ajose 's injury-time penalty rescued a point for charlton in a draw at gillingham .\na therapy that retrains the immune system to tolerate peanuts has been shown to be safe and effective in a large trial in children .\npeople who live outside wales should not be allowed to stand as assembly election candidates , it has been claimed .\njames corden 's us talk show the late late show is to make its uk debut in london this summer .\nrestrictions placed on bus companies in bristol nearly 30 years ago are to be reviewed by the competition watchdog .\njoe root has been named as alastair cook 's successor as england test captain .\njames horan has been elected as the new president of the gaa .\nthe chief executive of nissan has said that the company 's sponsorship of the olympic games in rio will help boost sales .\nthe government has admitted it is in breach of european union law over air pollution , a high court judge has heard .\na former police community support officer -lrb- pcso -rrb- has been jailed for three years for stealing thousands of pounds from passengers at gatwick airport .\nguinea is celebrating the first anniversary of being declared free of the ebola virus .\ntinie tempah 's home is a recording studio .\ntransport for london -lrb- tfl -rrb- has spent more than # 2m on 413 extra staff for the night tube .\nthe number of people killed by flash floods in japan has risen to 17 , the government says .\ntiger woods says he is `` concerned '' about the number of tournaments he will play over the next five months .\nwales midfielder andy crofts says his loan move to gillingham was a `` tough decision '' .\na couple have spoken of their `` heartbreaking '' ordeal after their daughter was taken into care .\ndelegates from around the world are in zurich this week for the annual meeting of fifa , the organisation that runs world football .\na 61-year-old pembrokeshire man has been jailed for more than 20 years for sexually abusing a child .\na man has been arrested on suspicion of murder after a man was found stabbed to death in birmingham .\naction man , one of the most popular toys of the 1960s and 70s , is celebrating its 50th anniversary .\nfrench ligue 1 side lille have re-signed winger naim sliti from paris fc for an undisclosed fee .\nthe completion of roadworks on the a55 in wrexham and chester has been delayed again .\nnorthern ireland deputy first minister martin mcguinness has withdrawn from a trade mission to south korea .\nscotland 's brexit minister mike russell and uk secretary of state for exiting the european union david davis have agreed to work together .\na car has crashed into a building in glasgow city centre after being pursued by police .\nat the singapore management university -lrb- smu -rrb- in the city-state , a group of students are sitting down for their first lecture of the year .\na collection of props from the hit sci-fi series dr who is to be sold at auction .\ncanada 's adam hadwin won his first pga tour title with a one-shot victory at the careerbuilder challenge in california .\nipswich eased to a comfortable win over qpr at portman road .\nthe decision by the high court to give mps a vote on when the uk can start the process of leaving the eu is `` questioning the legitimacy '' of the case , a labour mp has said .\neastenders is back on our tv screens this week and one of the main characters is homeless .\nrussia 's justice ministry has branded one of the country 's main opposition pollsters a foreign agent .\nthe gearbox of a helicopter which crashed off norway killing 14 people may have suffered a `` catastrophic failure '' , investigators have said .\n`` we are going to win the scottish cup , '' said jimmy nicholl , the manager of raith rovers .\ngreat britain ca n't win the davis cup as a one-man team , and everyone has to play their part .\nthe hackers who stole $ 81m -lrb- # 57m -rrb- from bangladesh 's central bank used cheap routers to access its network , investigators say .\ntheresa may has said the uk will be `` free to change the basis of britain 's economic model '' after leaving the european union .\nthe united states soccer federation has announced reforms to its rules on head injuries in youth football in the country .\na 25-year-old man has been jailed for assaulting two men in county londonderry .\nus president barack obama has met philippine president rodrigo duterte at a regional summit in laos .\nfrench police have shot dead two people in a car near the tour de france finish line in paris , reports say .\nwork is under way to increase the capacity of scotland 's largest container terminal .\nif you 've ever wondered what it 's like to be a wwe superstar , then you 've come to the right place .\nthe value of sterling has continued to fall as worries over the uk 's eu referendum continue to rattle markets .\nwigan warriors head coach shaun wane says super league should be given a `` pat on the back '' after his side beat cronulla sharks to win the world club challenge .\na british man who survived a scooter crash in thailand which killed his pregnant girlfriend is to be charged .\ntwo men have been injured in a `` vicious '' attack in east lothian .\nworld war one training trenches and tunnels have been uncovered in wiltshire .\na court in india has adjourned the trial of bollywood star salman khan over a hit-and-run case in which a man was killed .\na fire at a 16th century hall in greater manchester is being treated as suspicious .\na music festival has been cancelled because of severe weather warnings across wales .\nleinster moved six points clear at the top of the pro12 with victory over cardiff blues at the rds .\na former private surgeon has had his 12-year jail sentence increased to 20 years for wounding patients with intent .\na small island in western japan is being overrun by cats .\nfossils of dinosaur embryos have shed light on the very earliest stages of life , scientists say .\nmalaysia 's richest woman , khong swee swee , has been feeding the hungry for more than 20 years .\ntwo days of strike action by glasgow college lecturers in a pay dispute are to go ahead next week .\na city financier has been banned from working in any regulated financial industry for life after he avoided paying more than # 42,000 in train fares .\nfour climbers have been rescued after getting into difficulty on ben nevis in strong winds .\nus president barack obama has ordered an inquiry into an air strike on a hospital in afghanistan which killed at least 19 people .\nthe sister of a junior doctor whose body was found in the sea has called for a change in the way junior doctors are paid .\nthe sister of murdered teenager arlene arkinson has told an inquest she felt police mishandled the investigation into her sister 's disappearance .\na five-wicket haul from tim viljoen helped northamptonshire skittle derbyshire for 187 on day one of the one-day cup .\nfirefighters involved in the alton towers rollercoaster crash say it was the `` most technical '' rescue they had ever carried out .\ngoogle 's net income for the first three months of the year rose 10 % to $ 5.3 bn -lrb- # 3.4 bn -rrb- .\nposting grossly offensive messages on social media could lead to prosecutions in england and wales , prosecutors say .\nthe soldier who shot dead two british soldiers at a checkpoint in afghanistan was suffering from post-traumatic stress disorder , it has emerged .\na new nigerian musical has opened in the west end .\nchampionship side crawley town have signed wolves midfielder adlene guedioura on loan until the end of the season .\nmura masa has come fifth in the bbc 's sound of 2016 list , which highlights the best new talent for the coming year .\nthe deputy first minister is to update msps on the `` next steps '' in the named person act .\nladies ' day at aintree is one of the biggest days of the year for women in liverpool .\njos buttler hit the fastest one-day international century as england beat pakistan by 54 runs in abu dhabi to win the five-match series .\nthe remains of a 17th century manor house have been found after it was destroyed in a fire .\n-lrb- close -rrb- : shares in online betting firm paddy power fell more than 7 % after it reported a drop in fourth quarter revenues .\nthe winners of the 2011 nobel prize for peace have been announced at a ceremony in oslo , norway .\ncomedian billy dodd has been named the best-selling british artist of the 1960s .\nleeds rhinos full-back ryan galloway has been ruled out for the rest of the super league season with a ruptured achilles .\na woman who embezzled more than # 27,000 from the rangers supporters ' association boys club has been given a community payback order .\nthe number of councils in wales should not be cut unless they are prepared to dismantle them , the new labour am for caerphilly has said .\na search is under way for a 64-year-old man who has been missing from his home in irvine , north ayrshire , since saturday .\nthe new curriculum for secondary schools in scotland has come into force .\none of the country 's `` poshest '' outdoor toilets has been restored .\npaul roache has been elected as the new general secretary of the gmb union .\nsurrey captain gareth batty has signed a one-year contract extension to keep him at the oval until the end of the 2018 season .\nflooding has closed the conwy valley rail line for several days . wales route managing director , paul mcmahon said : `` we 're working really hard to keep services running , but unfortunately the conwy valley line will be closed for several days with flood waters having reached platform level at north llanwrst .\nlondon 's mayor has written to the prime minister calling for a second runway at gatwick airport .\nportsmouth began their league two campaign with a draw against 10-man carlisle at fratton park .\nsix german women have been arrested in spain after a flashmob in a seaside town turned into a stampede .\nhungary 's prime minister has warned that the country will not accept any more migrants , as clashes broke out at a railway station near budapest .\ndover maintained their national league play-off push with a comfortable 3-1 win over chester at the crabble athletic ground .\nfour people have been rescued after a speedboat capsized off brixham in devon .\nmore than 100 soldiers have been killed in a taliban attack on an army base in afghanistan , officials say .\ndavid cameron should drop his pledge to cut net migration to 100,000 if he wins the eu referendum , labour 's shadow home secretary has said .\na conference on male domestic abuse has been held in doncaster to raise awareness of the problem .\ndavid cameron has ruled out forcing his cabinet ministers to vote for britain to leave the eu .\nsouth africa 's president jacob zuma is under growing pressure over his decision to sack finance minister pravin gordhan last week .\ndo you get cold calls from companies asking for personal information ?\na pilots ' union is appealing against a decision to allow the crown office and police scotland to view data from a helicopter crash .\nalviro petersen hit his second championship century of the season as lancashire dominated day one against middlesex at lord 's .\na woman has been airlifted to hospital after falling 20ft -lrb- 6m -rrb- down a cliff in dorset .\nthree fishermen have been rescued off the county donegal coast after getting into difficulty at sea .\nan artificial intelligence system has mastered the art of playing video games .\nmillions of children across the uk are learning a new language this year .\nfrench centre-right presidential candidate francois fillon is to make a rare public appearance on monday .\nwith just over a month to go until the general election , there are still a number of bills to deal with in the house of commons .\nmatt tubbs and roarie deacon scored late goals as national league sutton united came from behind to beat league two cheltenham town in the fa cup second round .\npolls have opened across england and wales for local council and mayoral elections .\nmore than 1,000 motorists were breathalysed by police in north wales during a christmas drink-drive crackdown .\non the face of it england 's six nations win over italy at twickenham was a classic of the modern era : a scintillating display of attacking rugby , backed up by a disciplined defensive effort .\npapers are worried about rising tensions between india and china over the border .\npolice investigating an attempted abduction near an raf base have said a sighting in essex is not one of the suspects .\nbath are in talks to sign wales lock luke charteris from french club racing 92 .\nmichael clarke 's century on day two of the first test against england was dedicated to his team-mate phillip hughes , who died last month .\npolice in china have detained a fifth suspect in thursday 's bomb and car attack in the western city of urumqi that killed 29 people , state media say .\nbirmingham city 's che adams has had his red card against leeds united rescinded .\na county antrim man who stabbed his partner to death in front of their seven-year-old daughter has been jailed for a minimum of 16 years .\namerican jason bohn is recovering in hospital after suffering a heart attack at the honda classic in florida .\ndecriminalising tv licence fee evasion would be a `` huge risk '' for the government , the culture secretary has claimed .\nas london prepares to welcome in the festive season , the bbc has been taking a look back at some of the city 's most memorable christmas traditions .\nthe northern ireland executive office has defended its decision to appoint a press secretary without consulting stormont politicians .\ngerman police have stepped up security ahead of a friendly match between germany and the netherlands in berlin .\na look back at some of the top entertainment stories over the past seven days .\nsir christopher lee is to release his first album of original heavy metal music , metal knight .\narm holdings , the uk chipmaker , has agreed to be bought by japan 's softbank for # 22.2 bn .\nrussian police have carried out a series of raids against suspected members of the aum shinrikyo cult .\na high court judge has been asked to review the metropolitan police 's handling of historical child sex abuse allegations .\nglamorgan 's aneurin donald and dai lloyd both scored maiden first-class centuries as the welsh county made 332 against loughborough university .\na russian airliner that crashed in egypt last month , killing all 224 people on board , was brought down by a bomb , egyptian investigators say .\nbrentwood and ongar mp sir eric pickles has announced he will not stand in the general election .\njonjo shelvey marked his newcastle debut with an assist as steve mcclaren 's side beat west ham to move out of the premier league relegation zone .\na heavily pregnant woman was threatened with a gun by a gang who broke into her home in salford .\nludwig the labrador is a very special dog .\nhow a company deals with the aftermath of a tragedy can have a profound effect on the long term health and safety of the firm .\npatients should be given a two-week cooling-off period before undergoing cosmetic surgery , according to new uk guidance .\nthe confederation of african football -lrb- caf -rrb- has announced that it has signed a new sponsorship deal for its competitions .\nan academy school in merseyside is to close its sixth form .\ntwo of england 's best-known rugby players grew up just a few miles from each other .\nwith more than 20 years ' experience in the oil and gas industry , ehud barak has seen it all .\na general strike has been called in the hills of the eastern indian state of west bengal by a separatist party .\nlewis hamilton said he was `` out of the race from the get-go '' in sunday 's hungarian grand prix .\nuganda 's main opposition leader kizza besigye has rejected president yoweri museveni 's re-election , calling the vote a `` sham '' .\nthousands of people are being evacuated from besieged rebel-held areas of the syrian city of aleppo under a ceasefire deal with russia .\nforest green rovers twice came from behind to salvage a point against national league play-off chasing torquay .\nchelsea midfielder n'golo kante has been named premier league player of the year .\nthe conservatives have increased their majority on northampton borough council .\nconor mcgregor says he does not expect floyd mayweather to survive the second round in their las vegas super-fight on 26 august .\nus talk show host rosie o'donnell has had a heart attack .\nwigan warriors came from behind to beat castleford tigers in super league .\nthe uk 's vote to leave the eu has triggered a political earthquake that 's shaking the european union .\nus president donald trump has dismissed claims by russian president vladimir putin that the us is the `` world 's most dangerous country '' .\npeople on the island of guam have been reacting to north korea 's threat to `` sink '' the us territory with a missile .\njack southwell 's first-half goal was enough to secure victory for wycombe over stevenage at adams park .\na man has been airlifted to hospital after a fall in snowdonia .\nthe european space agency -lrb- esa -rrb- has successfully completed the first flight of its ixv re-entry vehicle .\nthe glasgow school of art -lrb- gsa -rrb- has been awarded a # 500,000 grant to help restore its fire-damaged mackintosh building .\na shortage of nurses is forcing a hospital to turn to overseas help to recruit staff .\na man who hid his girlfriend 's body `` like a piece of rubbish '' has been jailed .\nsouthampton midfielder jack stephens says the team will `` bounce back '' from their poor run of form .\ndutch investigators say they have found parts of a missile system in eastern ukraine where malaysia airlines flight mh17 was shot down last year .\npolice have been granted more time to question five men arrested on suspicion of terrorism offences .\nleague two side grimsby town have signed mansfield town striker jamie proctor .\nactresses maxine chancellor and joanna richardson are to star in a three-part itv adaptation of the classic novel tilling .\nformer rangers midfielder barry ferguson believes andy halliday outshone scott brown in saturday 's scottish cup semi-final at hampden .\npartick thistle manager alan archibald has been approached by swindon town .\nlewis hamilton has become only the third driver in formula 1 history to win 50 races .\ngiant balls of ice have been spotted off the coast of siberia .\nhundreds of people have attended the funeral of a dambusters airman who died without a family or friends .\ntwo men have been arrested on suspicion of child sexual exploitation .\na court battle between the widow and children of comedian robin williams has been adjourned until june .\nrussia 's economy shrank by 1.2 % in november compared with the previous month , official figures show .\nmoeen ali led england 's fightback on day four of the second test against west indies .\nthe fa cup semi-final between chelsea and tottenham at wembley will be shown live on bbc two .\nbritain 's shauna coxsey retained her bouldering world title with victory at the second event of the season in china .\na court in china has started streaming trials online in a bid to speed up legal proceedings .\ntwo men armed with a knife are being sought by police after an armed robbery at a post office in inverness .\nin a recent interview , kenneth starr , the man who led the inquiry that led to bill clinton 's impeachment , praised the former president as `` a man who has turned his life around '' .\nscotland 's laura muir says she is `` gutted '' she will miss the 2018 commonwealth games .\na polish deli owner in cambridgeshire says she has received hate mail after the uk voted to leave the european union .\nst johnstone were beaten by fk trakai in the first leg of their europa league first qualifying round tie .\na ceasefire has come into effect in the city of aleppo in syria .\nwales prop tomas francis says he is relieved to be selected for the six nations match against italy .\ndouble olympic heptathlon champion jessica ennis - hill is taking part in a series of open days to promote healthy living .\nbritish number one johanna konta has reached the semi-finals of the monterrey open in mexico .\na service is being held in cardiff to mark the 100th anniversary of a world war one ambulance unit .\ngreen day have returned to the top of the uk album chart with their latest record , revolution radio .\nsea-ice cover in the arctic is likely to continue to shrink this summer , according to uk scientists .\na british man is missing after being swept out to sea in bulgaria .\nnewly-promoted national league side ebbsfleet united have signed striker matt mills following his release by fellow-national league side whitehawk .\nmore student teacher places will be made available at aberdeen and highlands and islands universities next year , the scottish government has announced .\na teacher who downloaded more than 100,000 indecent images of children has been struck off .\nireland overcame the loss of captain paul o'connell and fly-half johnny sexton to beat france in cardiff and finish top of pool d.\nfast bowler harry gurney says he is `` excited '' to stay at nottinghamshire despite their relegation from division one .\na minimum unit price for alcohol should be introduced in england to reduce alcohol-related harm , public health england says .\ntottenham midfielder andros townsend has been banned for two years by the football association after admitting a charge of improper conduct .\nus department stores macy 's , kohl 's and nordstrom have reported falling sales as consumers shop online .\nstuart hogg 's absence from the british and irish lions matchday 23 against the crusaders was a blow .\na man who forced a woman to engage in sexual activity and filmed it has been jailed for three years .\nargentina is to take legal action against five oil companies operating near the falkland islands .\nulster beat connacht 3-17 to 1-9 in the dr mckenna cup final at carrick-on-shannon on saturday .\nliam livingstone hit an unbeaten half-century to help lancashire build a healthy lead over nottinghamshire at old trafford .\ntens of thousands of people have marched in mexico city to protest against plans to legalise same-sex marriage .\naston villa have signed winger scott sinclair from manchester city on a three-year deal for an undisclosed fee .\nrugby borough council has confirmed that it has held talks with coventry city rugby club about a new stadium .\nscotland 's opening world cup qualifier against germany was supposed to be a dress rehearsal for the group d leaders .\nnewcastle and gateshead have been chosen to host the great exhibition of the north .\nplans to raise council tax in liverpool will not go ahead , the city 's mayor has said .\na court in niger has begun hearing a case against the country 's former president , hama amadou .\ntimo werner scored twice as rb leipzig moved level on points with bundesliga leaders bayern munich with a comfortable win over mainz .\nroger federer beat richard gasquet in straight sets to seal switzerland 's first davis cup title with a 3-2 victory over france .\ntwo-time tour de france winner alberto contador says he will challenge chris froome and nairo quintana for the criterium du dauphine .\nthe tory leadership contest between michael gove and boris johnson has been likened to the drama of hamlet .\nwildlife officials in india have fined cricketer ravindra jadeja after he posted photos of himself with an endangered asiatic lion .\nbolivian president evo morales has nationalised the country 's largest electricity company , transportadora de electricidad -lrb- tde -rrb- .\nthe rmt has accused the operator of scotland 's railways of `` siphoning off '' profits to shareholders .\na durham-based light festival is to be staged in london in january .\na man has been arrested in a series of shootings that left nine people dead in the us state of arizona .\nwalsall have signed goalkeeper adam legzdins from league two rivals carlisle united on a two-year deal .\nus president donald trump has signed an executive order aimed at protecting religious liberty .\nan ex-soldier who was questioned by the iraq historic abuse team -lrb- ihat -rrb- has said the allegations were of the `` highest order '' .\na woman who claims she was forced to marry her father in saudi arabia has been ordered to return to the uk .\nfood banks are increasingly being used by scots struggling to make ends meet , according to a report .\nbritain 's hannah lucas won the rs : x women 's gold medal at the sailing world cup in sydney , australia .\na conman has been ordered to pay back more than # 600 he swindled out of england world cup fans .\nbrian graham scored a late winner as ross county beat linlithgow rose to reach the last eight of the scottish cup .\ngoals from emanuele giaccherini and graziano pelle gave italy victory over belgium in their euro 2016 opener in nice .\nmanchester united 's northern ireland midfielder paddy mcnair has been named in the milk cup draw for this summer 's tournament in san francisco .\nthe liberal democrats have lost three seats in the highlands in the general election .\nlandlords of southern cross care homes are expected to agree to write off some of the money the company owes them , the bbc has learned .\nukip wales leader nathan gill says he 's been the target of criticism from within the party .\nmacclesfield eased to victory at wrexham in the national league .\nit 's been a long time coming , but angela merkel 's persistence on the issue of migration has finally paid off .\nthe number of critically ill patients discharged from hospitals in wales has increased , according to a report by the welsh government .\neleven regeneration projects in south wales have been awarded a share of # 38m in funding .\nten-man carlisle united were held to a goalless draw by cambridge united at brunton park .\nnorthampton 's josh brookes has been banned for two weeks for striking an opponent during saturday 's defeat by newcastle .\neight-year-old ruweyda does n't talk to her friends at school very much .\na victorian fort in pembrokeshire is to reopen to the public .\na gang of people have admitted selling hundreds of sick and abandoned puppies online .\nmadonna is known for using her social media accounts to promote her music .\na zebra that had escaped from a farm in japan has drowned in a lake after being shot with a dart .\nscientists are implanting tiny tracking devices into thousands of slugs in uk fields .\nthieves used a dumper truck to smash through the front doors of a bank and steal a cash machine .\na man who fraudulently claimed almost # 40,000 in benefits has been jailed for six months .\nthe hashemite kingdom of jordan is one of the most important states in the middle east .\nresearchers in the uk and switzerland have built ten generations of `` intelligent '' robots .\na row has broken out over the cost of renting a community hall in gwynedd from a diocese .\nhouseholds in a flintshire town are to be banned from throwing their rubbish outside wheelie bins .\nthe driver of a tractor-trailer found with at least 100 people inside has been arrested .\nthe democratic republic of congo reached the africa cup of nations quarter-finals for the first time with victory over burkina faso .\nbritain 's chris froome is set to win a third tour de france title on sunday after surviving a punishing stage 20 time trial in the alps .\na texas police officer has been charged with perjury over the arrest of a black woman who later took her own life .\nconor thomas scored a dramatic stoppage-time winner as swindon beat millwall 1-0 at the county ground .\nsports presenter kirsty gallacher has been charged with drink-driving .\nthe number of personal insolvencies in scotland has risen for the second quarter in a row , according to official figures .\nit 's the most important election for a generation .\nformer world number one annika sorenstam believes england 's charley hull has the potential to be a top-10 golfer in the world .\na police force has been criticised for failing to properly investigate allegations that children were sexually abused in rotherham .\nmidwives across northern ireland are taking part in a 24-hour strike on wednesday and thursday .\ndeaf gerbils have been able to hear sounds for the first time in their lives after being given stem cells .\na `` racist '' buy-to-let landlord is being investigated by the uk 's equalities watchdog .\na girl who had her home burgled has written an open letter to the culprits .\ncarmarthenshire council has said it wants to make carmarthen 's guildhall `` self sufficient '' .\nchild marriage is the `` hardest place '' in the world to be a girl , according to a report by save the children .\nmembers of the public are being invited to visit mosques across the uk as part of a `` visit my mosque '' day .\nthe general election campaign is well under way .\nconsumer confidence has fallen to its lowest level in more than 20 years following the uk 's decision to leave the european union .\nthree hospitals in bristol and somerset have been placed on `` black alert '' as they struggle to cope with demand .\nlee clark 's appointment as the new kilmarnock manager has been welcomed by one of his former team-mates .\na campaign is under way to keep a statue of a falklands war marine in hampshire .\nbelfast 's paddy barnes suffered a shock stoppage defeat by avtandil slavchev in his professional debut on saturday night .\ntwo more academies in telford have been placed in special measures by education watchdog ofsted .\na man has been found guilty of the manslaughter of a woman who was crushed by falling window frames .\none of china 's oldest scientists is celebrating his 106th birthday .\nmillwall striker lee barnard has signed a new two-year contract with the league one side .\nthe islamic state -lrb- is -rrb- militant group now has as many as 25,000 fighters , the cia has said .\nwales manager chris coleman was pleased with his side 's battling 1-1 draw with northern ireland in cardiff .\nfacebook has bought more than 1,000 patents from microsoft as it continues to defend itself in lawsuits .\ntoo many underperforming academy schools in yorkshire are still not improving , inspectors have said .\na man who made headlines after driving a ferrari faster than the speed limit around the chinese capital beijing has been arrested , state media say .\nformer super-middleweight world champion carl froch says he could come out of retirement to fight again .\nnorthern ireland 's andrew english won the 800m at the european team championships in vaasa on saturday .\nit is a city in flux and one which is now , back in the grip of general election campaigning , following the three-day pause in the wake of the terror attack .\na senior islamic state -lrb- is -rrb- weapons expert has reportedly been captured by us-led coalition forces in iraq .\nchampionship side preston north end have re-signed west bromwich albion goalkeeper anders lindegaard on a season-long loan .\nroma went level on points with serie a leaders juventus after an own goal from stefano izzo gave them a 1-0 win at genoa .\ntiger woods says he is `` still playing golf at the highest level '' despite injury .\nthe ministry of defence -lrb- mod -rrb- has asked a high court judge to dismiss a case brought by a royal marine who was left paralysed in a training accident in lanzarote .\ntheresa may 's plans to reform stop and search in england and wales have stalled , bbc newsnight has learned .\nbristol city midfielder adlene guedioura is back in training .\na british-iranian woman jailed for five years in iran has lost an appeal against her sentence .\ntyson fury beat dereck chisora to win the british and commonwealth heavyweight titles at wembley .\na man has been airlifted to hospital after being found clinging to a buoy in the sea off bangor .\nwidnes vikings held off a castleford tigers fightback to earn their first super league win in three matches .\na woman has died following a three-car crash in powys .\ndavid cameron 's government has cut funding for out-of-hours gp appointments in england by 60 % , labour says .\ntwo men have been arrested in connection with the murder of a 30-year-old man who was stabbed in his home in liverpool .\nfarmers in wales are being urged to join forces to secure the future of the dairy industry .\nthe family of a south wales man who has been missing in peru for two weeks are to fly to the country to try and find him .\nthe father and first husband of murdered british woman qandeel shahid have appeared in court in pakistan .\ntwo crematorium workers have been sacked after wrongly scattering the ashes of a grieving family .\nwork is under way on a new arts centre in the scottish borders .\na group of people have been rescued after their boat ran aground in lough neagh .\nred bull 's poor start to the season was laid bare in sunday 's australian grand prix .\nwhen it comes to taiwan 's relationship with china , the wang family from the southern city of kaohsiung are firmly in the pro-china camp .\nthere have been a record number of prisoners released by mistake in england and wales , figures show .\na 25-year-old man has been stabbed in the leg in a street in fife .\nengland manager sam allardyce says it is a `` great shame '' great britain will not compete in the women 's football competition at the 2016 olympics .\na conman who stole more than # 100,000 from his employer has been ordered to pay back more than # 115,000 .\na 2,000-year-old bronze sculpture is to be returned to india by a singapore museum .\nthe rio 2016 olympic games anti-doping programme was `` very , very poor '' , a report has found .\nfrench president francois hollande has paid tribute to the police officers who died in the paris attacks last week .\nformer israeli prime minister ehud olmert has been sentenced to 27 months in jail for bribery .\nthe family of a bristol man found dead on the french riviera have said they feel `` kept in the dark '' after an inquest heard his organs were missing .\nfour people have been arrested in belgium on suspicion of planning attacks in the capital , brussels , prosecutors say .\nbristol head coach andy robinson says he is `` disappointed '' by the manner in which steve borthwick left the club .\nsinger nick cave 's teenage son fell to his death from a cliff in brighton , an inquest has heard .\nthe us space agency 's kepler telescope has confirmed the first earth-like planet outside our solar system .\nplans to improve a busy north west cardiff road are being considered by the city council .\na ferry which hit a pier in the isle of man will return to service later .\nthousands of unaccompanied child refugees who have made it to europe will be allowed to live in the uk , david cameron has said .\nit all started with a family trip to the mountains in western japan .\nthe funeral of police service of northern ireland -lrb- psni -rrb- officer ronan kerr has taken place in omagh , county tyrone .\nchampion jump jockey ap mccoy ended his 20-year career with a third-place finish in his final race at chepstow .\na turkish court has sentenced two people smugglers to two-and-a-half years in prison for the death of alan kurdi .\nformer world number one luke donald says he considered quitting golf last year .\nrangers manager mark warburton has backed brendan rodgers to become celtic boss .\na man has been found dead in his car in birmingham .\njeremy corbyn has urged theresa may to split the grenfell tower public inquiry into two parts .\npolice in england and wales are failing to provide appropriate adults for vulnerable people in custody , a report has found .\na boy who died after being hit by a car was `` always willing to help everyone '' and his organs will be used for transplant , his mother has said .\nin football , a new manager 's first job is to change the old .\nthe number of eu workers in the uk has risen by almost a fifth in the past year , official figures show .\nworld number one andy murray survived a scare from italian fabio fognini to reach the fourth round at wimbledon .\nglamorgan and essex are vying for a place in the quarter-finals of the one-day cup when they meet in cardiff on tuesday .\nsouth africa need 322 more runs to beat india on the final day of the third test in mohali and seal a 3-0 series win .\nhuman remains believed to be up to 1,000 years old have been uncovered during an archaeological dig in peterborough .\nlaura robson had just returned from a week-long holiday in italy .\nthe head of cycling 's world governing body brian cookson says he is `` not trying to dodge any of my responsibility '' for british cycling 's failings .\na few days ago i visited abdul popal 's sprawling compound in the afghan city of mazar-e-sharif to see one of his giant diggers .\nthe music world has been paying tribute to prince , who has died at the age of 25 .\npolice have named a man they want to speak to in connection with a murder at a house in cambridgeshire .\na 10-year-old boy is in a life-threatening condition after being hit by a car .\na care home rated `` inadequate '' by the care quality commission -lrb- cqc -rrb- is not the only one in cornwall to be criticised .\none of the world 's largest wild cheetahs has been shot dead in botswana .\nthe cultivation of coca , the raw ingredient for cocaine , has increased sharply in colombia .\na cat has been reunited with his owner more than a year after he disappeared .\ncolin kazim-richards scored the only goal as blackburn knocked arsenal out of the fa cup .\ntwo wards have been closed at a cardiff hospital due to an outbreak of the winter vomiting bug norovirus .\ntwo kilcoo gaa players have been suspended following an investigation into allegations of racism .\nthe use of head-down restraints on deportees on flights from the uk is `` shocking '' , mps have said .\nmore than 100 schools have been closed across parts of northern england as snow and ice hit the region .\nwest ham eased into the third round of the efl cup with victory at cheltenham town .\nwest ham have signed striker emmanuel emenike from fenerbahce on a three-and-a-half-year deal for an undisclosed fee .\ntwo people have been taken to hospital after a fire broke out at a block of flats in glasgow .\nscientists have used a new gene editing technique to trace the origins of hundreds of thousands of cells in fish .\na flood-hit rail line between hampshire and surrey is to reopen next week .\nnew valencia head coach pako ayestaran says he would not have taken the job if gary neville had not agreed to leave .\nan australian woman has been arrested in colombia after allegedly trying to smuggle cocaine with a street value of about a$ 500,000 -lrb- # 330,000 ; $ 420,000 -rrb- .\n`` when i was a child you were not considered an entrepreneur , '' says ashley terry .\nnews stories can make you feel sad , scared or worried .\njose fernandez , the miami marlins pitcher who has died in a boating accident at the age of 24 , had a remarkable story .\na judicial review into plans to run high voltage cables between two wind farms in denbighshire has begun .\nthe turkish government has dismissed 543 more soldiers in the wake of last week 's failed coup .\nscott carson produced a string of fine saves to earn hartlepool a goalless draw at league two play-off chasing portsmouth .\nscotland has the second lowest proportion of small businesses without basic digital skills in the uk , according to a report .\ndriving examiners and coastguard workers are taking part in a series of strikes in a dispute over jobs and services .\na look back at some of the top entertainment stories over the past seven days .\nthe daughter of the late labour peer lord janner has said the inquiry into allegations of historical child sex abuse against him is `` bonkers '' .\n`` i 'm a british tennis player , '' she said .\nfacebook has been accused of '' trampleing '' on privacy laws in belgium .\npolice investigating the deaths of two women at a flat in glasgow have said they are not treating the deaths as suspicious .\nthe uk economy grew by 0.4 % in the second quarter of the year , according to the office for national statistics -lrb- ons -rrb- .\nsports direct boss mike ashley has accused mps of being `` deliberately antagonistic '' after they threatened to charge him with contempt of parliament .\na collection of film stills from richard attenborough 's career is expected to fetch up to # 80,000 at auction .\nthe apprentice boys parade has taken place in londonderry .\nrussell knox hopes fellow scot sandy lyle can offer some advice as he prepares to play in his first masters this week .\neuropean leaders are meeting in brussels to try to come up with a plan to tackle the migrant crisis .\ntraffic management measures are to be introduced on some of scotland 's busiest roads as part of the # 1bn m8 upgrade project .\nlabour 's jeremy corbyn has been accused of being `` out of touch '' after he said the killing of osama bin laden was an `` assassination '' .\nastronomers have discovered the most distant object in the solar system .\npolice in the us and italy say they have arrested more than 30 people in a series of raids on organised crime groups .\na charity for people with facial burns has criticised adverts for a conference call firm .\na former homeless soldier has been recognised in the queen 's birthday honours list for his work with the homeless .\nswansea city have been relegated from the premier league after hull city 's 4-0 defeat at crystal palace on sunday .\nthe abu dhabi united group has invested # 200m in a plan to build hundreds of new homes in manchester .\naustralia thrashed defending champions new zealand to win the four nations title at anfield .\nan 85-year-old woman has died after the car she was travelling in crashed into a tree in wirral .\na booklet explaining how to register to vote in the eu referendum has been sent to every home in the uk .\nsophie raworth , who presents watchdog daily and test house , is to join the new line-up of presenters on bbc two 's investigative programme watchdog .\na man has been found guilty of manslaughter after stabbing a great-grandfather to death in a road rage incident .\nbritain 's chris froome won his third criterium du dauphine title with victory on sunday .\nturkey 's president has compared germany to nazi germany in a row over the detention of a german-turkish journalist .\na man who was wrongly convicted of an ira robbery has said his health is deteriorating because of the `` soul-destroying '' legal battle to get compensation .\naudley harrison has compared anthony joshua to george foreman and frank bruno .\nmembers of an irish citizens ' assembly have voted overwhelmingly in favour of legalising abortion on a number of grounds .\nturkey has launched new air strikes on so-called islamic state -lrb- is -rrb- positions near the syrian town of jarablus , state media say .\nscottish businesses are optimistic about the year ahead , according to a survey .\nwladimir klitschko has `` a chink in his armour '' going into his heavyweight title fight with anthony joshua , says former world champion lennox lewis .\nthe planting of trees that soak up carbon dioxide could help curb climate change , according to scientists in germany .\nlewis hamilton headed title rival sebastian vettel and team-mate nico rosberg in final practice at the italian grand prix .\na letter written by the queen describing her relationship with the duke of edinburgh has sold for more than # 14,000 at auction .\nwales continues to have the highest take-up of high-speed internet in the uk , according to a report by regulator ofcom .\na new # 170m link road between cardiff bay and the east of the city is set to open .\nfears have been raised that a flagship museum in leicestershire could be at risk after the county council pulled out of lottery funding .\nbernard tomic has said he will retire from tennis after losing in the second round of wimbledon to alexander zverev .\nsir jeffery amherst is one of britain 's most well-known colonial generals .\nto take part in bbc news school report , schools need to set up their own web page .\nthe scottish liberal democrats will be holding their spring conference in perth later .\nthe sale and consumption of dartmoor hill ponies should be banned to save the breed from extinction , a group has said .\nmore than 1,800 palestinians , including hundreds of children , have been killed in the conflict between israel and hamas since the start of july , according to the un .\na huge billboard in county down asking people to pray for a boy who has been diagnosed with cancer has gone viral .\nthieves have stolen a number of prescription drugs , including the anti-anxiety medication benzodiazepines , from a pharmacy in belfast .\nplans to build a new nature centre in sherwood forest have been described as `` priceless '' .\na woman has told a court how she fought off a man who raped her in an edinburgh park .\nsome of the world 's richest countries are not giving enough to help those affected by the conflict in syria , aid charity oxfam has said .\nthe french football federation has filed an appeal against the six-year ban handed down to uefa president michel platini by fifa 's ethics committee .\nleague two side southend united have signed former charlton athletic striker sam baldock on a two-year deal .\ngreat britain 's hannah cheshire failed to qualify for the slopestyle final at the snowboard world cup in america .\nthe colombian government and the farc rebel group have announced plans to set up a mechanism to monitor a ceasefire .\nthe queen 's speech has set out the conservative government 's `` radical '' vision for the uk .\na health trust has pleaded guilty to safety breaches after a patient fell from a roof at a mental health unit .\nhousehold waste collections have resumed in parts of somerset after a long-running dispute over pay .\nluke shaw has been named in manchester united 's 23-man squad for their pre-season tour to the united states .\nthe budget was a `` big game-changer '' .\na labour mp has said he was `` isolated and ostracised '' by jeremy corbyn after speaking out about him .\nnorthern ireland 's economy is benefiting from a weaker pound , according to the ulster bank .\na northern ireland ukip councillor has been expelled from the party .\ntheresa may has met survivors of the grenfell tower fire at a church in west london .\na man who died after being attacked in a car park outside a denbighshire store has been named .\ncardiff 's museum of wales will reopen to the public in 2020 .\nthe us has stepped up security for sunday 's super bowl , with thousands of police and security officers being deployed across the san francisco bay area .\njohn terry says he is yet to decide on his next move .\na mental health patient who killed a pensioner in a `` violent , unprovoked attack '' has been jailed for six years .\njack marriott 's first-half goal gave luton town victory at leyton orient .\nthe baltimore orioles baseball team shut down their stadium for a game against the boston red sox on monday , amid continuing protests over the death of a black man in police custody .\na man has been charged with using drones to smuggle drugs , steroids and mobile phones into a prison .\na driving instructor has been jailed for causing the death of a 75-year-old woman in a crash .\na series of major infrastructure projects are being discussed in east renfrewshire as part of the city deal scheme .\namerican football star troy polamalu has announced his retirement from the sport at the age of 33 .\na man described as `` like fred flintstone '' has been crowned europe 's strongest man .\na new alice in wonderland mobile phone app has been launched in llandudno .\nit 's been a busy few days for the world 's most famous couple .\na former soldier who was awarded the victoria cross for his actions during the iraq war , says he is struggling with post-traumatic stress disorder -lrb- ptsd -rrb- .\nthe archbishop of canterbury , dr rowan williams , has warned against `` asset stripping '' of christianity , in his easter sunday sermon .\nthe us theme park seaworld in san diego , california , has been banned from breeding new killer whales .\nteam sky 's sergio henao has been provisionally suspended by cycling 's governing body amid `` new concerns '' about his biological data .\nrangers midfielder joey barton has been told to return to full-time training .\narriva trains wales has said some services have been busier than usual due to maintenance work on its trains .\nwales under-20s ended their junior world championship campaign with a narrow victory over 10-man italy in the final in new zealand .\nmiguel tilli and his wife magda were on holiday in the portuguese capital , lisbon , in the summer of 2012 .\nnine football fans have been arrested after a pitch invasion and flares were thrown during a match .\nwimbledon will be played on the middle sunday for the first time since 2004 because of persistent rain on friday .\na community group wants more time to bid to buy a former school site in ceredigion .\na six-year-old boy has been taken to hospital after being hit by a car in north lanarkshire .\none of the four instruments on the james webb space telescope -lrb- jwst -rrb- has passed its final test .\nif you 're a journalist working in brussels , you 'll know the ins and outs of the city like the back of your hand .\nactress zsa zsa gabor once said : `` i 've been married nine times . ''\na former rabobank trader has pleaded guilty in the us to trying to rig a key interest rate .\nscientists in edinburgh say they have taken a step towards developing a new treatment for liver failure .\nnational league strugglers colwyn bay have parted company with manager paul lynch by mutual consent after saturday 's 3-0 defeat by chester .\nnorthern ireland boxers michael conlan , paddy donnelly and jason fowler have been reprimanded by the international olympic committee -lrb- ioc -rrb- for breaching betting rules at the rio games .\nplans for a # 100m hotel development in dorset have been approved .\nin latin america the military was the dominant force behind dictatorships from the early 1970s until the end of the cold war .\na college lecturer has admitted stabbing his wife to death in a '' stabbing frenzy '' at their home .\nthe death toll from a landslide in colombia 's north-western province of antioquia has risen to 26 .\nmore than 50 firefighters have been tackling a blaze at an oil recycling plant in kent .\nlabour leader jeremy corbyn has appointed newport west mp christina rees as his new shadow welsh secretary .\nmae ' r digwyddiad yn ymwneud ffrwydro o fewn tanc challenger , yn l bbc cymru .\ndonations of food , water and supplies have been pouring into a church in greater manchester after a fire at a dogs ' home killed 40 pets .\nthe obama administration 's top national security adviser has strongly denied allegations that she sought to influence us president donald trump .\na cardiff man has shared a picture of his colostomy bag on social media to raise awareness of the condition .\nsouth sudan is in the grip of a civil war that the un has described as `` genocide '' .\nindia 's biggest online retailer , flipkart , has raised $ 1bn -lrb- # 640m -rrb- in funding from existing investors .\nhungary will not backtrack on controversial laws , foreign minister peter szijjarto has said .\ngalloway may have been the heart of the lost dark age kingdom of rheged , according to archaeologists . `` the new archaeological evidence suggests that galloway may have been the heart of the lost dark age kingdom of rheged , a kingdom that was in the late sixth century pre-eminent amongst the kingdoms of the north . ''\na man who admitted killing a polish worker who fell from the roof of a warehouse has been jailed for three years .\na nest of egyptian geese has been discovered inside a cardboard box on a nature reserve .\nscarlets hooker ken owens says their winning run could be down to a `` glitch '' following their defeat by ospreys .\na security firm says it has found a program that `` vaccinated '' tens of thousands of smart devices .\nit 's 70 years since the first atomic bomb was dropped on hiroshima , japan .\nscientists have reconstructed the nervous system of an extinct arthropod .\nthe 2016 olympics in rio de janeiro , brazil will be the biggest sporting event in the world for the next four years .\nnew york 's met opera house has cancelled a live-streamed performance of an opera about the hijacking of a cruise ship after receiving complaints it was anti-semitic .\nport vale manager bruno ribeiro has left the club by mutual consent after just four months in charge .\none of the most promising materials for building quantum computers has come a step closer .\nmclaren formula 1 boss eric boullier says he is realistic about his team 's prospects this season .\na new film featuring sir roger moore has been premiered in cardiff .\nthe results of the scottish council elections are dominating the front pages of scotland 's newspapers .\nsinger enrique iglesias is expected to make a `` full recovery '' after cutting his hand on a drone .\nuk diesel prices have fallen below petrol for the first time in more than a decade .\nplans for a bridge across the river thames in central london have been scrapped , a review has found .\nmore than 200 crocodiles have escaped from a farm in south africa 's flood-hit limpopo province , local media report .\nformer nottingham forest manager billy davies says he would love to return to the championship club .\na group of welsh language campaigners have staged a protest outside the welsh government 's headquarters in conwy county .\nadebayo akinfenwa rescued a point for wycombe with a late equaliser at morecambe .\nhollywood star angelina jolie 's decision to have a double mastectomy has led to a surge in referrals for genetic testing , say researchers .\nthe national grid has rejected sse 's plans to upgrade the aberdeen to inverness power line .\na new football stadium in cornwall could be built if the conservatives win the general election , the prime minister has said .\n-lrb- close -rrb- : stocks on wall street closed lower on tuesday as the dollar strengthened against other major currencies .\nan `` aggressive islamist ethos '' would have been imposed on schools in birmingham , a leaked government report says .\nwelsh artist gwynedd williams has returned to the subject of her paintings after a year away .\ngreat britain 's jonnie lewis won gold in the men 's high jump as australia 's greg cutts failed for a third time to win the title .\nthousands of people have taken part in demonstrations across the republic of ireland against rising water bills and austerity measures .\nnapoli striker gonzalo higuain has been banned for four games after being sent off in sunday 's defeat at udinese .\ncrewe alexandra have signed midfielder shaun nolan on a one-year deal . .\nmore than one million people have signed a petition against a proposed trade deal between the european union and the us .\npeterborough united have signed striker jamie lloyd from non-league side welling united for an undisclosed fee .\nessex 's batsmen struggled on day one against derbyshire at chelmsford .\na man killed in a hit-and-run in caterham has been named .\na lecture block at swansea university is to undergo a # 1m revamp .\nliberal democrat leader tim farron has said he supports equality for gay , lesbian , bisexual and transgender people .\nmillwall came from two goals down to snatch a 3-2 win at 10-man bury in league one .\nan australian man wanted by police for failing to appear in court has posted a photo of himself on facebook in response to an arrest warrant .\nmore than a million older and disabled people in england are not getting the care they need , a report says .\na woman from north belfast has been awarded # 20,000 after she was discriminated against at work .\nbarcelona missed the chance to go top of la liga as neymar 's penalty was not enough to prevent defeat at sevilla .\ntwo brothers who owe more than # 20m to their creditors have offered to repay their debts in full .\nthe justice secretary has joined the campaign to leave the eu , saying the uk would be `` freer , fairer and better off outside the eu '' .\na gay man in the us state of mississippi is suing a funeral home after staff refused to handle his uncle 's funeral because he was married to a man .\njellyfish blooms have been reported off the north wales coast .\na reunion is being held to mark the 20th anniversary of the closure of a suffolk airport .\na group of firefighters have broken the world record for the largest naan bread .\nthe italian captain of the costa concordia cruise ship , which capsized in 2012 , killing 32 people , is appealing against his conviction .\nthree men have been given bravery awards for tackling a burglar .\nplans for a new creative hub in carmarthenshire could be rejected by the welsh government .\na man in his 20s is in a critical condition in hospital after being stabbed in the chest in the waterside area of londonderry .\ngeneric drug maker mylan has said it will launch a cheaper version of its epipen in the wake of criticism over steep price rises .\none of italy 's best-known playwrights , dario fo , has died at the age of 89 .\na primary school which was forced to close because of `` staff shortages '' is to reopen .\nat least four afghan soldiers have been killed in a suicide bomb attack on an army bus in the capital kabul , officials say .\nplans to build a # 12m hydro-electric scheme on a river in north wales have been dropped .\na chef has been given a suspended prison sentence for killing a feral cat in a hotel kitchen .\nken morley has apologised for his behaviour on celebrity big brother .\nlukas jutkiewicz 's first-half equaliser earned gianfranco zola 's birmingham city a replay against championship rivals newcastle united in the fa cup .\nmore than a billion contactless payments were made in the uk last year , according to the industry .\na mother accused of killing her two-year-old son by leaving him in a bath has told a court she was `` stupid '' not to go upstairs .\na ukip parliamentary candidate in north-west london has resigned after posting offensive facebook comments about us president barack obama .\nglamorgan have been drawn in the south group of the 2017 t20 blast competition .\nthe government 's new digital bill includes plans to fine mobile phone networks up to # 2m a day if they fail to meet service targets .\na former paramedic has been struck off for posting `` derogatory '' comments about a stafford hospital nurse on facebook .\nvillagers have bought a 200-year-old somerset pub after fearing it would be sold off .\na czech backpacker who was lost in new zealand 's alps for more than a month says her partner died trying to save her .\na west lothian teenager who inspired thousands on social media has died after a battle with cancer .\nall photographs courtesy dronestagram .\nit 's 70 years since the end of world war two and the battle of the somme .\nan anti-bullying dossier was handed to the tory chairman in 2010 , a conservative activist has said .\nlenovo is investigating claims that some of its laptops were pre-installed with software designed to help users shop online .\nleague one side rochdale have signed manchester united midfielder jordan houghton on a season-long loan deal .\namerican footballer jessica chastain , who scored the winning goal in the 1999 women 's world cup , has announced she will donate her brain to research .\na legal challenge to the uk 's decision to leave the eu has failed at the high court in belfast .\nthe voluntary london living wage has been increased to # 9.40 an hour .\nbradford twice came from behind to earn a draw with oldham at valley parade .\na police force has said it made 39 arrests during a domestic abuse campaign ahead of england 's euro 2016 matches in france .\nplans to give english mps a veto over laws that only apply to england will be debated in the house of commons next month .\nfour hillwalkers have been airlifted to safety after getting stuck on a cliff ledge on skye .\nshares in sky have soared after 21st century fox said it was in talks to buy the 61 % of the broadcaster it does not already own .\na fire on the set of eastenders will not affect the soap 's 30th anniversary celebrations this week , the show has confirmed .\none of ireland 's best-known broadcasters , frank murch , has died after a long illness .\na run-off will be held in ecuador 's presidential election after no candidate won an outright majority in the first round .\ndavid cameron has called on turkey to do more to tackle the threat posed by foreign fighters travelling to syria and iraq .\nsouth korean team skt gaming has won the prestigious league of legends -lrb- lol -rrb- world championship final .\nrussian opposition leader alexei navalny has been found guilty of embezzlement and sentenced to five years in jail .\nthirty-two people have gone on trial in saudi arabia accused of spying for iran .\na bike hire scheme has been relaunched in oxfordshire .\neast midlands ambulance service -lrb- emas -rrb- has been rated `` inadequate '' by inspectors .\nwork to dismantle part of a pier which collapsed in aberystwyth has been approved by ceredigion council .\nmore than 100 emergency services personnel have been involved in a major flood training exercise in west yorkshire .\nsome schools have been `` gaming '' the gcse qualification system , the welsh government 's chief inspector of schools has said .\nchildren should be banned from playing rugby because of the risk of serious injuries , a leading sports doctor says .\nan exhibition of works by caravaggio has opened at the scottish national gallery in edinburgh .\na team of girls from iran who were told they would n't be allowed into the us because of visa problems have won a medal at a robotics competition .\nthe church of england 's decision to allow women bishops has been described as `` a cosmic shift '' by one of its leading campaigners .\ntwo british students have gone on trial in poland accused of stealing artefacts from the auschwitz death camp .\npetra kvitova reached the semi-finals of the aegon classic in birmingham with a 6-1 7-6 -lrb- 7-4 -rrb- win over american coco vandeweghe .\n-lrb- close -rrb- : wall street markets closed slightly higher on wednesday .\nnew zealand striker alan draper scored a hat-trick as the new saints beat forfar athletic to reach the scottish league cup third round .\nthree grizzly bears at a safari park in south africa have been captured on camera playing with a toy .\nchannel 4 is to turn off its youth channel e4 on election day in a bid to encourage viewers to vote .\nukip wales leader nathan gill has been urged not to `` double-job '' as an am and mep by the party 's assembly group leader .\nteachers do not have a secure enough grasp of important scientific principles and concepts in some primary science lessons , according to the education watchdog estyn .\nbmw has reported a sharp rise in first-quarter profits , boosted by the value of its stake in mapping firm here .\na rare gold pendant made from an early copy of a byzantine coin has been declared treasure .\nlichfield have been left out of the new women 's super rugby competition by the rugby football union -lrb- rfu -rrb- .\nliesl carr , the actress who played liesl von trapp in the sound of music , has died at the age of 83 .\njean-claude juncker , president of the european commission , has said he is `` politically responsible '' for the tax arrangements of his country , luxembourg .\nthe scottish government is to investigate east dunbartonshire council 's plans to close a catholic school .\na body has been found after a house fire in brighton .\nwrestling is coming to china .\nscotland 's first minister nicola sturgeon has given her backing to plaid cymru leader leanne wood .\npink floyd guitarist charlie gilmour did not know what the cenotaph looked like when he took part in last year 's student fees protests , judges have heard .\na sex offender has won an interim injunction preventing facebook from publishing his photograph and comments on a paedophile prevention page .\nan `` unfortunate '' spelling error has been spotted on a nottingham express transport sign at a railway station .\nthe author of a cold war novel about a russian spy in the us has said he is `` amazed '' by the attention it has received .\na german lorry driver has been jailed for six months for causing the death of a motorcyclist in conwy county .\nmore than 100 british world war ii veterans have received medals from the russian embassy in london .\nschools in south australia , australia , have been given the chance to redesign their local national parks .\na botswana athlete has criticised the world championships for allowing usain bolt 's successor to run in the final .\na dog is to be blamed for a sinkhole which opened up on a golf course on the isle of skye last week .\nblackpool have signed former york city midfielder shaun brisley on a one-year deal . .\nbournemouth manager eddie howe has signed a new five-year contract with the premier league club .\nwatch wales v slovakia live on bbc one wales on saturday , 5 june at 19:30 bst .\nrussia have said they will be fined by uefa after their fans clashed with england supporters in marseille on saturday .\nnorthern ireland 's office market is showing signs of recovery , according to property experts .\nmiddlesbrough missed the chance to go top of the championship as they were held to a goalless draw at ipswich .\nplans to set up a patent court in scotland have been backed by the uk government .\ntoyota is reported to be investing in the development of a flying car .\nnorth korea has sentenced an american man to 15 years of hard labour for `` hostile acts '' .\npro rugby wales chief executive gareth davies is disappointed george north will not return to wales .\nitaly 's edoardo molinari beat ireland 's paul dunne in a play-off to win the bmw pga championship at wentworth .\noscar-winning film 12 years a slave is to be screened more frequently in the us and canada following its success at the ceremony .\ntommy bowe made his return from injury in ulster a 's pro12 win over connacht on thursday night .\na # 3m project to assess the impact of climate change on wales ' islands has been launched .\nscotland lock jim hamilton has retired from international rugby after being left out of vern cotter 's world cup squad .\nwhen you watch a football match , you want to know what 's going on .\na non-league footballer has admitted having a corkscrew but denied threatening to cut the throat of a rival fan .\na cat has been stabbed to death in what the rspca described as a `` senseless attack '' .\nteachers in england earn 22 % less than their counterparts in other countries , according to the organisation for economic co-operation and development -lrb- oecd -rrb- .\nfeatherstone reached the last eight of the challenge cup with a hard-fought victory over halifax .\nthe first large clinical trial looking at the link between obesity and breast cancer is to be launched in the us .\nwest ham fans have voted in favour of a women 's match being played at the club 's upton park home .\na man has been arrested on suspicion of causing death by dangerous driving after a teenager was killed in a crash involving two motorbikes .\nscientists in the us have developed an algorithm to help robots avoid falling .\na report into an incident involving cardiff university 's school of medicine has highlighted `` specific and overarching issues '' .\ngoogle 's self-driving car is just one example of how artificial intelligence has come a long way in 60 years .\nproperty prices in some of china 's biggest cities have risen by more than 50 % in the past five years .\nthe football supporters ' federation -lrb- fsf -rrb- is calling for clubs to manage the resale of tickets after a bbc investigation found fans are being sold unwanted seats for up to # 1,000 .\nturkish police say they have seized more than 1,000 poor-quality life jackets used by migrants trying to cross the mediterranean to europe .\nmaria sharapova 's answer to a question about david beckham has gone viral on social media .\nmalcolm turnbull has been sworn in as australia 's new prime minister , replacing tony abbott .\nswitzerland striker admir mehmedi says argentina 's lionel messi is not the only player capable of causing an upset in sunday 's world cup match .\nnorthern ireland striker conor washington says he does not yet realise how lucky he has been in his career .\nargentina 's presidential election will go to a run-off after no candidate won an outright majority in the first round .\ndawid malan hit an unbeaten 63 on his twenty20 international debut as england beat south africa by 39 runs in the final match in cardiff to win the series 2-1 .\na fatal accident inquiry into the death of a boy at a glasgow cemetery has heard that up to 900 headstones there were deemed to be unsafe .\nan irish reality tv star 's spray tan has caused a social media storm after he appeared on a tv dance show .\nthe us-led coalition has stepped up air strikes against so-called islamic state -lrb- is -rrb- in the iraqi city of falluja , a us military spokesman says .\na woman with a rare genetic condition that has left her unable to walk is to marry her fiance .\na father jailed for helping his son rob and murder a pensioner has had his sentence increased .\ninverness caledonian thistle moved off the bottom of the premiership with a deserved win over hamilton academical .\nlabour leader jeremy corbyn has said he would allow his mps a free vote on uk air strikes in syria .\nedinburgh-based compressed air technology firm vert rotors has raised # 1.6 m in new investment .\na michigan man who spent 22 years in prison for a murder he says he did not commit will not face a retrial .\nus president barack obama has paid a visit to the former home of jamaican singer bob marley .\na search is under way for a british backpacker who went missing while climbing vietnam 's highest mountain .\ndivision two strugglers northants and sussex were forced to settle for a draw at wantage road .\nthe body of a man has been found at the bottom of a water main .\nthe leader of bahrain 's main shia opposition group , al-wefaq , has called on the sunni-ruled kingdom 's crown prince to take part in talks with the opposition .\na swansea chemistry teacher who sent `` creepy '' messages to teenage girls has been banned from the profession .\nthe uk is a member of the world trade organization -lrb- wto -rrb- and the european union 's customs union .\nharry potter spin-off fantastic beasts and where to find them has topped the uk and ireland box office in its opening weekend .\ntheresa may has described herself as `` a bloody difficult woman '' after a meeting with european commission president jean-claude juncker .\nmore than 100 allegations of historical child sex abuse in football are being investigated by 17 police forces in england and wales .\na prominent dissident republican has been granted permission to travel to the republic of ireland on bail .\nan afghan woman immortalised on the cover of national geographic magazine has been arrested in pakistan .\nhibernian have re-signed goalkeeper ofir marciano on a three-year deal .\na man who attacked worshippers at a dundee mosque has been jailed for three months .\nwarwickshire director of cricket dougie brown has left the club .\nscotrail has cancelled more than half of its sunday services after talks with the train drivers ' union aslef broke up .\nmicrosoft founder bill gates has donated more than $ 5.3 bn -lrb- # 3.6 bn -rrb- in shares to charity .\nscottish labour leader owen smith has urged the european union not to `` let scotland down '' after the uk voted to leave .\nfive people have been taken to hospital after a double decker bus and a car crashed in edinburgh .\na woman has said she felt `` assaulted , butchered and robbed '' of her life savings after a dentist left her with a `` bulldog bite '' .\nthe welsh government has been accused of wasting tens of thousands of pounds on posters promoting the cardiff metro .\nthe scottish government has rejected claims by the scottish conservatives that education budgets have been cut .\ntaylor swift 's been sharing photos of her fans online , but it turns out it 's not her .\nswansea 's canal was once one of the most important waterways in the world .\ndoncaster rovers manager dean saunders says striker el-hadji diouf has denied being in a nightclub the night before a league one game .\nthe value of second hand volkswagen -lrb- vw -rrb- cars has fallen slightly since the emissions scandal was revealed a year ago , research suggests .\nron dennis is under pressure to decide whether he will step down as mclaren 's chairman and chief executive .\nscientists using satellite imagery have discovered thousands of ancient egyptian pyramids under the soil .\nit 's that time of year again - the january transfer window .\na feasibility study is to be carried out into extending the borders railway to carlisle .\ncolombia 's attorney general nestor ordonez has announced an investigation into the country 's police chief , gen rodolfo palomino .\na four-year-old muslim girl has been banned from wearing a headscarf at her school .\nthe uk 's largest building society , nationwide , has reported a fall in mortgage lending .\nit 's that time of year again when many of us will be tucking into a chocolate easter egg .\nthe great british bake off returns to our tv screens this week , with the bakers hoping to impress us with their baking skills .\na planned 24-hour bus strike in london has been called off .\nglamorgan have signed england under-19 international harry podmore from middlesex .\nan independent review into the conduct of uk general and local elections has found `` no evidence '' of electoral fraud or malpractice .\nkenny miller 's injury-time equaliser earned burton albion a draw at wolves .\na second dog kept in a cage at a police kennels has been released as part of a bbc investigation .\ngareth bale believes wales can beat israel on sunday and qualify for the euro 2016 finals .\ntata steel in shotton , flintshire , could be shut down with the loss of up to 100 jobs .\na section of sydney 's hyde park has been evacuated after a man barricaded himself inside a car , police say .\nthree dundee students have created a credit card-reading bag which tells you when to put the card back .\nthe towpaths and bridges of scotland 's canals have been captured on camera by google street view .\na man who was caught with drugs with a street value of almost # 100,000 in a wheelie bin has been jailed .\nin a speech to the republican national committee , bobby jindal has called on his party to `` stop the name-calling '' .\nthousands of young people in the uk are `` teetering on the brink '' of serious mental illness , according to a new report .\na teenager has admitted hacking the parenting website mumsnet .\ngloucester reached the european challenge cup quarter-finals with a bonus-point win over cardiff blues .\na former denbighshire hospital site has been put up for sale for # 1 .\na moratorium on fracking in wales remains in place , the welsh government has said .\nthe rail company at the centre of the southern rail dispute paid out more than # 2m in compensation to passengers last year , figures show .\nbundesliga leaders rb leipzig came from behind to beat 10-man hoffenheim .\nvoters in scotland go to the polls on 18 september to decide whether they want to stay in the uk or leave .\nas russia 's economy continues to shrink , millions of people are struggling to pay off loans and mortgages .\nchelsea suffered a shock first-leg defeat in their champions league last-16 tie at porto .\nthe uk government is planning to introduce a series of curbs on benefits for migrants from romania and bulgaria , the bbc understands .\nthe former governor of nigeria 's delta state , james ibori , has been awarded # 1 in damages by the high court for being unlawfully detained .\ntwo men have appeared in court in sydney accused of supplying the gun used to kill a police worker .\neldin jakupovic starred as hull city held manchester united to a goalless draw at old trafford .\nsouth africa 's finance minister , pravin gordhan , has said the country is `` in crisis '' .\nwakefield held on to beat catalans dragons in a thrilling super league encounter .\na woman has been stabbed during an armed robbery at a shop in larne , county antrim .\ntyler denton scored the only goal of the game as leeds united beat luton town at kenilworth road .\nthe statue of liberty in new york city has been evacuated after reports of a bomb threat .\nmyanmar 's security forces may have committed crimes against humanity against rohingya muslims , the un says .\nalan curtis has been part of swansea city 's backroom staff for more than half a century .\ntottenham hotspur has agreed a settlement with the family of a teenage footballer who suffered a cardiac arrest while playing .\na man who led police on a high-speed chase through west sussex has been jailed for 15 months .\nmartin mcguinness has been invited to visit two world war one battlefields in belgium and france later this year .\nthe family of a teacher who was stabbed to death in her classroom have called for an independent inquiry into the attack .\na serving royal marine from northern ireland has appeared in court charged with terrorism offences .\nus house speaker john boehner has announced he will resign at the end of the month .\nplans to store water from a disused quarry in snowdonia to generate electricity have been approved by denbighshire planners .\na `` legendary '' plaid cymru leader was the most recognised of wales ' four meps , a survey has suggested .\nit 's the calm before the storm .\nangelina jolie is to direct and produce a film based on the true story of kenyan conservationist william leakey .\nlabour have won a record number of seats in the uk general election , while the conservatives have lost ground in wales .\nkilmarnock have made their third summer signing by bringing in alloa athletic left-back callum waters .\nleague two side wycombe wanderers have re-signed southampton midfielder jack gape on a deal until the end of the season .\na solicitor has admitted conspiring to supply cocaine with three other men .\nit 's been billed as the `` northern powerhouse '' - the government 's plan to boost economic growth in the north of england .\na former executive of brazil 's state-run oil company , petrobras , has named more than 100 politicians he says were involved in a kickback scheme .\nfelix sturm retained his wba middleweight title with a thrilling points victory over matt macklin in berlin .\na student has described the `` inhumane '' moment gunmen opened fire at the bataclan concert hall in paris on friday .\na court in new york has dismissed a drink-driving charge against a woman who said she has a digestive disorder that makes her drink alcohol .\nstriker alex danson has been named in the england squad for the two-test series against world champions the netherlands this week .\nmanager aitor karanka says middlesbrough are not in a rush to sign new players ahead of the new premier league season .\naston villa have triggered the release clause in midfielder idrissa gueye 's contract .\na review of the us secret service following a security breach at the white house last year has found that the agency is `` over-stretched '' .\nchinese conglomerate fosun international has made a takeover bid for portugal 's espirito santo health -lrb- ess -rrb- .\na new photographic exhibition in liverpool has captured some of the city 's most memorable childhoods .\nsri lanka beat australia by 169 runs in colombo to claim their first test win over the world champions in 17 years .\na judge in argentina has ordered the seizure of assets of five oil companies operating in the waters around the falkland islands .\nsixteen-year-old cristian is growing cannabis in his parents ' garden in uruguay 's capital , montevideo .\nrussian president vladimir putin has awarded the country 's highest military honour , the order of courage , to four women medics killed in syria .\na fundraising page set up by former emmerdale actress anne bracknell , who is terminally ill with lung cancer , has raised more than # 300,000 .\ncanadian prime minister stephen harper has said his government will consider restrictions on foreign home ownership .\na four-year-old girl has died after being hit by a stone thrown by an elephant at a zoo in morocco .\nfloods in the indian state of gujarat have killed more than 600 people in the past week .\na man accused of beating his pregnant ex-girlfriend to death has told a court he lied to her about going to ghana for an abortion .\nbusinesses on the isle of wight have called on the council to compensate them for the loss of trade due to problems with the new cowes chain ferry .\nformer respect mp george galloway has said he was attacked by five people on a platform at aberdeen university .\nuncapped liam livingstone has been named in the england squad for the twenty20 series against pakistan a .\nwhen the syrian government launched a chemical weapons attack on a rebel-held suburb of damascus on tuesday , us president donald trump took to twitter to criticise his predecessor .\njohnny sexton and sean o'brien are expected to be fit for ireland 's six nations opener against scotland on saturday .\nthe frontrunner in the french presidential election has told the bbc he will reform the eu if he is elected .\na 21-year-old man has appeared in court after a car being pursued by police ploughed into a family , killing an 11-year-old boy and his aunt .\nas one of the first women to be hired by a major tech company , maryam howe is no stranger to success .\ntaylor swift has been accused by a photographer of `` exploiting '' him over images from her concerts .\na european research project has called for more support for overweight and obese mothers-to-be .\nchina has blocked access to a controversial documentary on air pollution .\nrecruitment firm hays has said it has seen `` increased uncertainty '' in the uk market following the eu referendum .\nan isle of man beach clean-up group has been awarded a # 50,000 government grant .\nstargazers in parts of the world have been treated to a rare glimpse of a lunar eclipse .\nmanchester united manager jose mourinho is close to signing villarreal defender eric bailly .\na car has crashed into a shop in county tyrone .\na bbc team has been caught up in an explosion on italy 's mount etna , the country 's highest volcano .\ntwitter is about to make some big changes to its app .\na man died after being impaled on a metal post while in a hospital hoist , a court has heard .\na british man accused of murdering a us soldier in iraq left his fingerprints on a bomb that killed him , a court has heard .\na world war two order giving german forces 24 hours to surrender has been sold at auction for # 3,600 .\nleague two side portsmouth have made their second signing of the week with bruno linganzi joining on a short-term deal .\nnorth korea has fired a ballistic missile from a submarine off its east coast , state media have said .\nthe nigerian military says it has rescued most of the schoolgirls abducted from a school in the north-eastern town of chibok on tuesday .\na rare penguin egg has hatched at chester zoo .\npolice have released cctv images of a man they want to trace in connection with a serious assault on a bus in glasgow .\nthe internet has been abuzz over the discovery of a massive atari 2600 video game archive in new mexico , usa .\ntwo men have been jailed for trying to cover up the death of a man who was hit by a car and killed .\na woman is in a critical condition in hospital after being hit by a car in edinburgh .\nthe us says it will not drop charges against india 's deputy consul general , devyani khobragade .\npolice investigating the disappearance of toddler ben needham on the greek island of kos more than 20 years ago have launched a fresh appeal .\nadama traore has been named in guinea 's squad for next month 's africa cup of nations qualifier against dr congo .\nfootball matches have been cancelled after travellers set up camp on a council-owned site .\nwork has begun to repair a road where a huge sinkhole opened up a year ago .\nscottish labour 's income tax plans could raise # 1.2 bn over the next five years , according to a new report .\nscotland wing tim visser insists head coach vern cotter has made the right selection for the match against south africa .\nthe dutch city of amsterdam has become the latest city to adopt cardiff 's approach to tackling alcohol-related violence .\nscientists at glasgow university have come up with a new way to tackle the problem of sea lice in salmon .\n`` i always wanted to be a chocolate maker , '' says martin thirlwell .\nengland fast bowler steven finn has been recalled for the third test against pakistan at edgbaston starting on thursday .\nthe area of glaciers in the french alps has shrunk by more than a quarter since the 1970s , according to a new survey .\nformer england football captain rio ferdinand 's wife has died after a short battle with cancer .\nmobile network three has abolished roaming charges for customers travelling abroad .\nworkers at the former thomas austin department store in londonderry have spoken of their shock at the closure of the business .\nthe government has announced plans to privatise the green investment bank -lrb- gib -rrb- .\nkilmarnock manager lee clark hopes his side can avoid relegation from the scottish premiership .\nthe conservatives have chosen their candidate for south wales east at the assembly election .\nwales captain sam warburton says the six nations match against england will be `` massive '' for both teams .\nsebastian vettel headed team-mate kimi raikkonen in first practice at the spanish grand prix .\nvenom from funnel web spiders could be used to treat stroke , research suggests .\na petition calling for an end to the ban on women menstruating in hindu temples has been signed by more than 100,000 people in india .\na county armagh solicitor has been jailed for two years for defrauding a bank out of # 250,000 .\nhibernian manager neil lennon and motherwell counterpart stephen robinson say they are happy with their pre-season preparations ahead of the league cup .\nthe sdlp has urged a community group in north belfast to reconsider its plans to hold a protest .\nairbus has said it will cut production of its a380 superjumbo by a third over the next two years .\nfive russian hackers have been charged by the us department of justice -lrb- doj -rrb- over the yahoo data breach .\nnigeria 's former defence minister , bello haliru mohammed , has been charged with money laundering .\nan attempt to cross the pacific ocean using a solar-powered plane has been called off .\na teacher who is to leave her job at a catholic school in north belfast has said she has been subjected to a campaign of sectarian intimidation .\ninverness caledonian thistle manager john hughes praised his goalkeeper for keeping his side in the game in their 1-1 draw with dundee at dens park .\nwales assistant coach neil jenkins says criticism of his side 's style of play in the six nations is `` baffled '' .\ntwo arts directors on the isle of mull have been made redundant .\nup to 27 platforms have been shut down after an oil leak at a platform in the north sea .\na judge has ruled that airline jet2 must pay compensation to a passenger who was delayed for more than three hours .\nmore than 100,000 cigarettes and 40lbs -lrb- 15.5 kg -rrb- of tobacco have been seized in grimsby .\na pharmaceutical firm is to create up to 100 jobs at a former sanofi factory in newcastle .\na 65-year-old man is in a serious condition in hospital after being hit by a car in north ayrshire .\nthe welsh rugby union has withdrawn its offer of a central dual contract to scarlets centre scott williams .\nthe international team investigating the alleged use of chemical weapons in syria is expected to issue a report within a week or two .\nthe wales women 's football team has left for euro 2016 .\nnewport county have made their seventh new signing of the summer by bringing in midfielders jack compton and luke rigg .\njeremy corbyn 's opponents in the labour leadership contest say they have seen a surge in the number of new members joining the party .\npartick thistle football club has said it is investigating allegations of historical child abuse made against a former employee .\nan nhs trust has apologised after admitting it sent out the wrong patient information leaflets to 850 patients .\nthe education system in wales has not done enough to support able and talented pupils , watchdog estyn has warned .\nformer world champion john fordham says he wants to return to lakeside to play in the professional darts corporation event .\nradiohead have released their version of the theme tune for the latest james bond film spectre .\npolice are investigating a complaint that a mural at an edinburgh primary school is racist .\nthe number of children with disabilities in scotland has more than doubled in the last decade .\nhospitals across the uk are preparing to celebrate christmas day with their staff .\nformer australian tennis player nick lindahl has been banned for seven years for match-fixing .\nwelsh snowboarder katie potter says she is aiming to qualify for the 2018 winter olympics .\nthe government 's counter-extremism strategy is being redrawn .\nessex director of cricket nick silverwood says winning the county championship would be `` the holy grail '' .\na police officer has described the `` absolute carnage '' of a crush at a nightclub where two students died .\nsuper league side wakefield wildcats have appointed former hull kr coach chris chester as their new head coach .\ngerman cosmetics firm nivea has apologised after a social media advert was branded racist .\nengland won the tbilisi sevens for the first time with a 33-7 victory over new zealand in the final .\na drone `` narrowly missed '' a plane as it approached an airport , police have said .\none child in northern ireland contacts the childline helpline every day who is feeling suicidal , the charity has said .\nthe pound fell sharply against the dollar in the run-up to the eu referendum .\nnewport county boosted their league two survival hopes with victory over play-off chasing mansfield town .\ntommy wright insists he is `` happy '' at st johnstone despite being linked with other jobs .\nthree people have been rescued from a beach in weston-super-mare after becoming stranded overnight .\nsouthampton reached the fourth round of the efl cup with a comfortable win over crystal palace .\nworcester warriors hooker tom bower has signed a new contract with the premiership club .\nthe national audit office has warned that local authorities are struggling to find suitable housing and school places for syrian refugees resettled in the uk .\nthe belfast giants beat cardiff devils 4-1 at the sse arena on sunday night to go second in the elite league .\ntransport scotland has held talks with partners about extending the borders railway to carlisle .\nthe lib dems leader tim farron has told the bbc he does not believe gay sex is a sin .\nkent 's hopes of winning the division two title suffered a blow as they were bowled out for 287 on day two against northants .\nscotland 's scott jamieson and sweden 's alexander bjork share the lead at the tshwane open in south africa .\nbrain tumour patient ashya king 's chances of survival have halved in the year since his parents took him abroad for treatment , doctors say .\nthree men have been jailed for running a cannabis factory in bridgend county .\npresumptive democratic presidential nominee hillary clinton was expected to focus on foreign policy in a speech in california on friday .\naustria 's new prime minister has said he is willing to work with the far-right freedom party .\na man who was seriously injured in a powerboat crash on the hamble river is `` stable and improving '' , his employer has said .\nluton town 's return to the football league after a 22-year absence is `` the beginning of a resurgence '' , says chief executive david sweet .\nbritain 's renewed engagement with libya is part of a wider european effort to help the country 's new un-backed government put down roots in unpromising terrain .\nkrystian pearce 's header rescued a point for mansfield against york .\nthe canadian government has launched a public inquiry into missing and murdered indigenous women .\nan inquest has opened into the death of singer lil ' chris , who was found hanged at his home .\nmanchester united manager jose mourinho and chelsea boss antonio conte were involved in a heated argument during their game at old trafford on saturday .\ntalks are being held in northern ireland to try to resolve the political crisis in the region .\nengland 's jonathan trott hit his first county championship century of the season as warwickshire took control against somerset on day three .\nrichard hammond says he is `` back in action soon '' after being injured in a crash while filming for the grand tour in south africa .\ncardiff blues and wales fly-half gareth anscombe says he has been `` made out of glass '' .\na man has been airlifted to safety after falling while walking on snowdonia 's highest peak .\npoet philip larkin is to be honoured in poets ' corner at westminster abbey .\nengland 's women secured their place at euro 2017 with a comfortable win in belgium .\ndefending champion ronnie o'sullivan has pulled out of the uk championship in york .\nthe number of calls to an armed forces mental health helpline has risen by more than 50 % in a year , a charity has said .\nthe uk 's highest court is to rule on whether a man who claims he was tortured in libya can sue the uk government for damages .\nclimate change and rising water levels in tibet are causing havoc in neighbouring nepal , the bbc has learned .\njohn cleese 's new stand-up show has received mixed reviews from critics , with one describing it as `` a lecture tour more than comedy tour '' .\ncouncillors in a powys town have objected to plans to turn a pub into a shop .\na former national football league -lrb- nfl -rrb- player has been found dead in his nebraska prison cell , days after being convicted of murder .\nfrance 's esteban ocon will join force india for the 2017 season .\nthe families of five men who died when a wall collapsed at a recycling plant have said they are still waiting for answers a year on .\nit was the world 's worst nuclear accident in 1986 , when a reactor at the chernobyl plant exploded .\none of the uk 's largest shopping centres has been sold for # 140m .\na volkswagen executive has pleaded guilty to conspiring to defraud the us over its diesel emissions scandal .\nlove locks placed on a bridge in a seaside town have been removed because they are starting to rust .\ntata steel has been fined more than # 1m for safety breaches at its scunthorpe plant .\nbadger conservation groups have been invited to apply for funding to vaccinate up to 20,000 badgers in england .\nindia 's maoist rebels began their insurgency more than 40 years ago .\nthe queen is `` feeling better '' after missing the new year 's day church service at sandringham , buckingham palace has said .\na woman threatened bbc presenter jeremy vine with a `` firing sign '' during a road rage row , a court has heard .\njonathan rea extended his lead in the world superbike championship after finishing second behind chaz davies in race two at misano .\nislamic state -lrb- is -rrb- militants are advancing on the ancient city of palmyra in central syria , activists say .\na man has admitted trying to import 50 stun guns disguised as batons into scotland .\nscientists have catalogued more than 200 new minerals that have been created by humans over the last thousand years .\nthe number of jobs at a dvla centre in swansea could be cut when the tax disc is scrapped , the roads minister has said .\nengland women 's off-spinner danielle hazell has been ruled out of the rest of the world twenty20 with a hamstring injury .\nhenry pyrgos says he is relishing the chance to captain scotland at the world cup .\nnational league side woking have signed millwall striker jordan preston on a two-year contract .\nnursery staff mistook a four-year-old boy 's drawing of a cucumber for a bomb , it has emerged .\ncrawley town have signed former west bromwich albion defender james hurst .\nfour councillors were spotted falling asleep during a debate on child protection .\nan american pit bull rescue centre has offered to fly a dog facing death row in the uk to the us for adoption .\nthe uk 's inflation rate rose in january for the first time in four months , according to official figures .\nan oil platform in the north sea has been evacuated after a fire on board .\na man accused of murdering his nine-year-old grandson was a `` callous killer '' , a forensic psychiatrist has told a court .\nformer beatle sir paul mccartney has topped the sunday times rich list with his wife nancy shevell , estimated to be worth # 730m .\nlandowners and farmers have been given guidance on how to manage dog walking on their land .\nhouse prices in northern ireland continued to rise in the third quarter of the year , according to official figures .\nthe inquest into the deaths of 11 men killed in the shoreham air disaster has been delayed until next year .\nemre can 's stunning overhead kick in liverpool 's 1-0 win at watford on saturday has been nominated for the premier league 's goal of the season award .\na group of football fans caused a fire alarm to be set off at a london underground station ahead of the fa cup final .\nthe international monetary fund -lrb- imf -rrb- has warned that the global economy is at a `` delicate juncture '' and faces a number of risks .\nwork is due to start on the final phase of flood protection improvements in a denbighshire seaside town .\nthe parents of a man suspected of joining so-called islamic state have appeared in court charged with terrorism offences .\nfour men have been charged in connection with a robbery at a petrol station in lancashire .\nchina has reacted angrily after us president-elect donald trump questioned the `` one china '' policy .\na man has appeared in court charged with murder following a fire in fraserburgh in 2015 .\nfour people have gone on trial accused of murdering a `` vulnerable '' homeless man .\nthe european environment agency -lrb- eea -rrb- says climate change is already having an impact on europe .\nat zimbabwe 's heroes ' day commemorations in the capital , harare , a group of young men stand in front of a giant screen .\nole gunnar solskjaer was once described by sir alex ferguson as having `` an inner toughness '' .\naustralia batsman david warner has been banned for the first ashes test for punching england 's joe root in a pub .\nplans for a film and television studios in dundee have been given the go-ahead by councillors .\ntunisia is holding its first parliamentary election since the ousting of president zine al-abidine ben ali in a popular uprising in 2011 .\naustralian prime minister tony abbott has said a state funeral for former cricket captain and legendary commentator richie benaud will not be held .\nospreys have re-signed wales international flanker rob mccusker on a short-term deal .\non 1 april , the national living wage came into force for workers at seachill , one of the uk 's biggest fish processors .\nkyren wilson says playing the best match of his career was the `` perfect antidote '' to the disappointment of losing in the quarter-finals of the german open .\nthe former speaker of brazil 's lower house of congress , eduardo cunha , has been arrested as part of a major corruption probe .\naston villa have signed striker jonathan kodjia from championship rivals bristol city for an undisclosed fee .\nexeter chiefs have signed south africa flanker nic white on a two-and-a-half-year deal , while jersey captain sam freeman has joined on loan until the end of the season .\ndisney 's moana has topped the us box office over the thanksgiving weekend .\nmartin o'donnell has said he can not explain his `` ridiculous '' level of anxiety before the strictly come dancing dance-off .\ngateshead claimed their first national league win of the season with victory over wrexham .\na bbc radio station set up in zimbabwe in 2008 has shut down .\nst helens came from behind to beat catalans dragons and move into the super league play-offs .\nmoors murderer ian brady 's ex-girlfriend will not face charges over claims she helped him bury a victim , prosecutors have said .\nliverpool 's new # 35m architecture centre has opened to the public .\nhave you ever wondered if you can find treasure in the strangest places ?\na paralysed woman has completed the great north run in a robotic suit .\na film shot in the welsh valleys has won an international screenwriting award .\nmillions of women around the world are using smartphone apps to track their menstrual cycles .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo considers the role of the united nations in africa .\nthe name zica has caused a bit of a stir in india .\nnottinghamshire bowler jake ball is in `` fantastic form '' following his winter with england lions , says captain chris read .\nthe scottish liberal democrats have set out their demands for a budget deal with the snp .\na hen party had to be rescued after their boat got stuck in mud on a river .\nhuman remains found in east lothian have been confirmed as those of missing louise tiffney .\naaron mooy 's second-half strike was enough to give championship leaders huddersfield town victory at leeds united .\nformer bbc sport presenter darren fletcher is one of five new executives appointed by league two club notts county .\nthe chief executive of the uk 's biggest housebuilder , redrow , has said the government 's housing white paper is `` disappointing '' .\nthe us has charged seven iranians with hacking into the computer systems of the us military , energy companies and the government .\ngalatasaray have signed morocco international winger younes belhanda from dynamo kiev on a three-year deal for an undisclosed fee .\nmargaret thatcher , who has died at the age of 87 , led a conservative government that introduced many of the policies that have shaped our lives in recent years .\na boy with severe disabilities has been awarded # 3.8 m in compensation after he suffered a brain haemorrhage .\nthe smiths discussed reuniting , according to one of the band 's former guitarists .\nbbc sport 's football expert mark lawrenson is pitting his wits against a different guest each week this season .\nthe original batmobile used in the 1960s tv series batman has sold at auction in new york for $ 1.8 m -lrb- # 1.1 m -rrb- .\na mother facing deportation from the uk to nigeria with her two daughters has been given an overnight reprieve , a family friend has said .\nandy murray will continue to be a `` dominant force '' at the top of tennis , says tim henman .\nchina 's ma long beat world number one zhang jike 4-1 to win gold in the men 's singles table tennis .\nkenya 's marathon world champion rita jeptoo has been banned for two years for doping .\nleague one side mk dons have signed everton left-back callum browning on a season-long loan .\nnorth korea has strongly condemned the us missile strike on a syrian airbase , state media report .\na former guantanamo bay detainee has been arrested over the murder of a prosecutor in the ugandan capital kampala , police say .\ndulux paint owner akzo nobel has again rejected a takeover bid from us rival ppg industries .\na 16-year-old boy has died after being stabbed in a street in leeds .\nthis season has been one of the best in the premier league 's history .\nthe one laptop per child -lrb- olpc -rrb- organisation has received a $ 1m -lrb- # 650,000 -rrb- grant to fund development of a tablet version of the laptop .\na former drug-smuggling pilot has been jailed for trying to kill a squatter with an axe .\nvalve has announced changes to the way games are published on its steam service .\na woman has been found dead after a fire at a house in the highlands .\nderby county have been sold to two foreign investors , chairman fawaz al hasawi has confirmed .\nwarrenpoint town return to action on monday night when they host ballinamallard united at seaview .\npolice in indonesia 's aceh province have arrested two women for being gay .\nbomb disposal experts have carried out a controlled explosion on two unexploded world war two bombs found on a beach in the highlands .\na former soldier has been arrested over the deaths of three people on bloody sunday in londonderry .\nthe bbc is to launch a new `` ideas service '' featuring content from museums , galleries and universities .\nchris eubank jr says he is ready to give nick blackwell his british middleweight title belt .\nan 87-year-old man has been reunited with his vintage car after it appeared in the opening credits of the 1976 likely lads film .\ncrusaders have signed defender mark mcchrystal on a one-year deal following his release by championship side doncaster rovers .\nthe european space agency -lrb- esa -rrb- has launched its second earth-monitoring satellite .\ncardiff city and bristol city played out a goalless draw in a scrappy welsh derby .\na british tourist has died while snorkelling on an australian reef , the third such death in three days .\na senior member of nicolas sarkozy 's 2012 presidential campaign has said the french centre-right ump party made a `` terrible spiral '' in its spending .\nharlequins centre nathan hughes is one of 10 uncapped players named in england 's pre-season training camp .\npolice investigating the murder of a man who was found stabbed to death on heath land have made a new appeal for information .\nplans to improve the a27 in west sussex are a `` sham '' , council leaders have said .\nteam sky defied a ban on injecting riders with banned substances , the press association has learned .\na former rugby league star and his wife have set up a charity to help find a cure for their terminally ill son .\nsouth korea 's education minister says he is `` deeply sorry '' after a mistake was found in this year 's university entrance exam .\na dog has died after falling into the river tay in perthshire .\na former a&e nurse who filmed himself raping patients and attacking others has been jailed for 16 years .\nlewis hamilton dominated the first qualifying session of the new formula 1 season at the australian grand prix .\nsaudi arabia 's top cleric , sheikh abdul aziz al-obeikan , has been sacked .\nedf energy has become the latest big six energy supplier to announce a price rise .\nthe number of students enrolled at northern ireland 's further education colleges has fallen by more than 20 % over the past three years .\na 198m-high -lrb- 656ft -rrb- glass chimney could be the centrepiece of a new waterfront development in southampton .\nfines of up to 100 % of the value of tax avoided would be imposed on aggressive tax avoiders if labour wins the general election , the party has said .\na man who killed his partner with a single punch at a railway station has been jailed for almost six years .\nhsiao chien-ting is a buddhist convert . the 63-year-old retiree used to practice her religion by praying at temples , but now she volunteers seven days a week at a recycling centre to raise funds for taiwan 's buddhist association tzu chi .\nchampionship side ipswich town have signed wales under-19 midfielder tom james from cardiff city on a three-year deal .\ntheresa may 's new conservative manifesto is much more eurosceptic than her predecessor 's .\na 17-year-old driver involved in a crash which killed four people had just passed his driving test , an inquest has heard .\na british soldier killed by an explosion in southern afghanistan has been named by the ministry of defence .\nbill abernethy and bill shine have been named as co-presidents of fox news following the departure of roger ailes .\nbaroness campbell has been appointed as the football association 's new chief executive for women 's football .\nthousands of people have lined the streets to watch the great north run in york .\nfor decades doctors have been reluctant to talk about the issue of private practice in the nhs .\nfaster access to the best cancer drugs will improve care for patients in england , nhs england has said .\nfugitive us intelligence leaker edward snowden will not leave the moscow airport , his lawyer says .\na house in the highlands has been burgled and a number of medals stolen .\nfleetwood town have signed midfielder ryan kettings on a one-year deal .\na french left-wing politician has launched a petition calling for a ban on meat in school meals .\n-lrb- close -rrb- : london 's ftse 100 share index closed down 0.27 % , with mining shares among the biggest fallers .\nspain 's left-wing podemos -lrb- we can -rrb- party and the centre-left socialist -lrb- psoe -rrb- have launched their campaigns for next month 's general election .\nindia will play in next month 's champions trophy .\naustralia beat india by 87 runs in the fourth one-day international in canberra to complete a 4-0 series whitewash .\ninjured ospreys and wales scrum-half rhys webb has signed a new two-year contract .\nthe world 's pharmaceutical industry relies heavily on reliable data about the safety and efficacy of new medicines .\nthe duke and duchess of cambridge have announced the birth of their first child .\nwhat does this mean for the uk economy ?\nchildren 's cognitive development is influenced by their fathers ' interactions with them , a study has suggested .\nthe football association says it has found `` no evidence '' of bullying or harassment by england manager mark sampson following a complaint by eni aluko .\npublic parks in england are under threat from budget cuts and neglect , mps have warned .\nthe scottish government is to fund a project to cut the cost of offshore wind energy .\nukip has rejected calls to remove the party 's leader in the welsh assembly .\nit is 100 years since the start of world war one , and a new woodland is being created in county londonderry to mark the occasion .\ncrystal palace secured their first premier league win of the season as they came from behind to beat everton .\nformer aston villa defender steve cowans is to retire from football at the end of the season .\na man who tried to save mp jo cox has been awarded the george cross in the queen 's birthday honours list .\nit 's been a busy week for scotland 's politicians .\nleague one side southend united have signed defender craig davies on a two-year deal .\nthe rspca has received more than 1,300 calls about dog fighting in the uk in the past five years .\nexeter chiefs moved to the top of the premiership with a bonus-point win over wasps at adams park .\na petition calling for a national road safety campaign for horses and riders is to be considered by the welsh assembly .\ntheresa may has raised the issue of eu citizens living in the uk with irish pm enda kenny .\nthe number of gcse and a-level exam papers challenged by schools and colleges in england and wales has risen sharply .\nthe ukrainian city of zaporizhya has started a campaign to remove communist-era street names from the streets .\na london hospital is to set up a national database to help doctors treat identical twins who share a placenta .\nwhat is it like to live in london 's west end ?\nat least six people have been killed in an explosion outside a hotel in the somali capital , mogadishu , officials say .\nnational league side braintree town have signed gateshead full-back luke atkinson on loan until january .\nisrael 's prime minister benjamin netanyahu has ordered cuts to the cost of a custom-made `` rest chamber '' on a flight to the uk .\na five-year-old boy was investigated by police for `` sexting '' .\ntechnology giant hewlett-packard has announced plans to cut 30,000 jobs over the next three years .\nlewis hamilton says he will `` pray and hope '' mercedes do not impose team orders on him and team-mate nico rosberg .\nmercedes dominated first practice at the bahrain grand prix .\nsurgeons in sweden have carried out the world 's first tissue-engineered windpipe transplant .\na pair of polar bears have been introduced to the public for the first time in scotland .\nrussell slade says taking cardiff city to the championship play-off final would be bigger than taking them to wembley in his 1,000 th game as manager .\ncaroline garcia and kristina mladenovic have won the women 's doubles title at the us open for the fourth time .\nchampionship side oldham roughyeds stunned holders hull kr to reach the sixth round of the challenge cup .\nsomerset bowled hampshire out for 187 on day one of the day-night county championship game at the ageas bowl in southampton .\na woman who died in a house fire in rhondda cynon taff was overcome by carbon monoxide fumes , an inquest has heard .\nnato has condemned russia 's reported deployment of bastion cruise missiles to its western exclave of kaliningrad .\naustralian prime minister malcolm turnbull has said there will be another referendum on whether the country should become a republic .\nliverpool manager brendan rodgers praised his team 's `` character and resilience '' after their 2-1 win over west brom .\nthe international community will `` pay a high price '' if it fails to help syrian refugees , says jordan 's ambassador to the uk .\nsinn féin leader gerry adams will not face charges over the murder of jean mcconville , the public prosecution service -lrb- pps -rrb- has said .\nthe number of homeless people in england has reached its highest level since records began .\nwork is under way to clear up thousands of tonnes of debris washed up on beaches in norfolk and suffolk after the boxing day floods .\ntwo people have been charged over the death of a three-year-old boy who was found in a lake .\nmillwall boosted their league one play-off hopes with victory at shrewsbury .\na retirement home for police dogs in china has gone viral on chinese social media .\nsam allardyce has been appointed sunderland manager on a three-year contract .\ncardiff city 's winless run extended to six games after they were held to a draw at brentford .\na murder investigation has been launched after a man was stabbed to death in manchester .\nleicester tigers assistant coach geordan murphy says the anglo-welsh cup can be the catalyst for a top-four finish in the premiership .\ninsurer royal sun alliance is to close its birmingham office with the loss of 190 jobs .\nscotland 's air traffic control centre has said it is preparing for the highest number of summer flights ever seen .\nthe dark knight rises has received a five star review from the uk press .\nalexander litvinenko was a former russian spy who was poisoned with radioactive polonium in london on 23 november 2006 .\ntwo people have been taken to hospital after an ambulance and two cars crashed in lincolnshire .\nchechnya 's strongman ramzan kadyrov has posted a video on social media threatening to kill russian opposition leader mikhail kasyanov .\na woman with multiple sclerosis was refused a taxi ride to a concert because she was in a wheelchair .\na judicial review has begun into the government 's refusal to include allegations of child abuse at kincora boys ' home in north belfast in the goddard inquiry .\ncharlton athletic have re-appointed jose riga as their head coach .\nno charges will be brought against a church of england vicar accused of sexually abusing a teenage girl .\ninsurer old mutual has announced plans to split itself into four separate companies .\nthe football association has been charged by uefa over incidents during and after england 's under-21 european championship play-off win over serbia .\nnew liverpool manager jurgen klopp says he will have to `` change from doubter to believer '' in the reds .\na number of online gambling companies have been told to change their practices by the uk 's competition watchdog .\nhistoric scotland has commissioned research into the location of one of scotland 's bloodiest battles .\ncardiff airport should be renamed the john f kennedy international airport , according to a petition .\nan australian mining company has been found guilty of destroying a sacred site in the northern territory .\nas part of the bbc 's get inspired series , journalist and writer annalisa quinn reflects on her battle with anorexia nervosa as a teenager .\npolice have released images of two people they want to trace in connection with an assault on a teenager in aberdeen .\nmental health services for new mothers and their babies have been given a # 3m boost by the welsh government .\nplans for more than 100 homes on the site of a former care home at the centre of a housing scandal are to go before councillors .\nthe conservatives have accused culture secretary john whittingdale of trying to `` interfere '' with the bbc 's day-to-day scheduling .\ncomedian jack vine has written an open letter to a teenage boy who was filmed being attacked by a group of bullies in east london .\na new zealand couple have become the first in the world to be married in a `` pirate-themed '' church wedding .\njordan williams scored twice as barrow beat non-league taunton town to reach the second round of the fa cup .\n`` do n't underestimate the power of the united states . ''\na child has been reported to the children 's panel after a knife was found at a school in dumfries .\naustralian police are investigating allegations of match-fixing in the national rugby league -lrb- nrl -rrb- .\nengland will have six teams in the new women 's cricket super league from 2016 .\nthe ride-sharing company uber has apologised after a female employee accused one of its managers of sexual harassment .\nhampshire were relegated from the county championship after a five-wicket defeat by durham at chester-le-street .\nsome of the quirkier snippets from the news in oxfordshire that we did not know last week :\nwelsh boxer nicola brace will make her professional debut at the manchester arena on saturday , 26 march .\nlancashire and england wicketkeeper jos buttler has signed a new three-year contract with the club .\nceltic made light work of partick thistle at firhill to move closer to completing a domestic treble .\nworld champion mark selby says he is not yet at his best as he prepares for the quarter-finals of the world championship .\npierre st aubyn has won the # 25,000 wodehouse prize for his satirical novel about literary awards .\na labour councillor has denied possessing indecent images of children .\nwe want to hear from you about the earthquake that hit nepal last year .\nthe irish premiership disciplinary committee has upheld the red card shown to glentoran 's nacho novo in saturday 's 2-1 win over dungannon swifts .\nengland under-21 coach dan ashworth has defended the decision not to call up a number of first-team players for the european championships .\nit may look like any other house built in monmouthshire in the stone age .\nprince harry has visited a remote indigenous community in guyana as part of his tour of the region .\na police dog who was shot in the head with a pellet gun has made a full recovery .\nphilippine president-elect rodrigo duterte has called journalists `` rotten sons of a bitch '' .\nthe belfast giants have signed defenceman dustin johner for the upcoming elite league season .\na fitness centre in wrexham which closed last year is set to reopen .\nfirefighters have been tackling a large fire at a derelict former hospital in edinburgh .\nas chris evans announced he was stepping down as a presenter on top gear , twitter users took to social media to comment about the number of recent high-profile resignations in politics and sport .\nthe uk is the worst place in the world to breastfeed , according to research from brazil , the us and germany .\nworld number one novak djokovic and defending champion serena williams both won in straight sets to reach the french open semi-finals .\nluke procter 's maiden first-class century put lancashire in a commanding position against hampshire at old trafford .\na man accused of plotting to rape a six-month-old baby has told a court he did not think it would happen .\nmartyn rooney says he would `` love '' to be presented with his olympic bronze medal at the diamond league anniversary games in london .\nan ohio woman has been charged with raping and robbing a taxi driver .\nfirefighters are tackling a large wildfire in the ballyjamesduff area of county down .\naustralia have named batsman steve smith as michael clarke 's successor as test captain .\nlondon mayor boris johnson has said he will not resign if the conservatives back a third runway at heathrow .\nformer swansea city boss garry monk has been appointed head coach of major league soccer 's los angeles galaxy .\na father has raised thousands of pounds for legal fees after winning a court case over his children 's school absences .\nskegness 's mascot , the jolly fisherman , should be replaced with a fish , an animal rights group has said .\na fund has been set up to help syrian refugees who have been resettled in aberdeenshire .\nsaudi arabia 's king salman has carried out further changes to the country 's security apparatus .\na french-vietnamese academic has been jailed for three years in vietnam for `` subversion '' .\nplans for a travellers ' site near a lincolnshire resort have been rejected .\ndj calvin harris is to headline this year 's isle of wight festival .\nspending on public service television -lrb- psb -rrb- has fallen sharply over the past five years , according to a new ofcom review .\nunpaid work by offenders in england and wales is `` not good enough '' , a report has said .\nengland 's moeen ali hit an unbeaten 87 as the hosts continued to dominate south africa on day three of the fourth test at old trafford .\nan investigation into fire safety standards at a new # 200m hospital has found `` potential issues '' .\nbritish number one johanna konta was knocked out of the miami open in the second round , losing 6-4 6-4 to petra cetkovska .\na statue of comedian frank sidebottom has been unveiled in his home village of timperley in staffordshire .\nstriker darren bent says derby county 's form will stand them in good stead for the championship play-offs .\nryan farquhar has been moved out of intensive care at the royal victoria hospital in belfast following a crash at the north west 200 .\nthe death of a seven-year-old boy could have been prevented if an optometrist had done her job properly , a court has heard .\nenvironmental organisations in northern ireland have been told their funding is being withdrawn .\nmore than half of council homes sold through the government 's right to buy scheme in england have not been replaced , the charity shelter has said .\nthe uk 's brexit secretary has said it is `` hard to see how a separate immigration policy would work '' in scotland .\nmickey demetriou 's free-kick was enough to give newport county victory over yeovil .\nleague one side mk dons have signed aston villa defender jordan suliman on a season-long loan deal .\nwomen 's super league one side durham ladies have signed sunderland goalkeeper gemma laws .\ncastleford came from behind to beat wakefield and secure a place in the super 8s .\na man has died in a two-car crash on the isle of wight .\na palestinian court has postponed parliamentary elections due to be held next month .\nthe parents of a couple who died of cancer within days of each other have spoken of their `` horrifying '' ordeals .\ntributes have been paid to a 25-year-old man who died in a car crash .\nceltic moved a point clear at the top of the scottish premiership with a comfortable win over inverness caledonian thistle .\negypt have left out real madrid 's gareth bale from their preliminary squad for the africa cup of nations in gabon .\nofficials in new york are calling for an investigation after `` inky water '' appeared at the base of niagara falls .\nspain 's dani pedrosa won the japanese grand prix as italy 's valentino rossi extended his championship lead .\ngloucester city manager lee hughes has warned the club could fold unless more fans return to support them .\npassengers on an isle of wight chain ferry will no longer be able to board or disembark at the same time .\npolice in the chinese city of tianjin have confirmed that four chemicals were involved in the explosions that killed at least 114 people on wednesday .\na collection of 37 paintings by former prime minister sir winston churchill has been accepted for public display .\nbottles of whisky salvaged from a sunken cargo ship have been sold at auction for # 12,000 .\nportugal 's cabinet has approved a law allowing descendants of jews expelled from the country more than 500 years ago to get passports .\nseven fire engines could be scrapped as part of # 1.3 m cuts to the fire service in suffolk .\nleague one side bury have signed former bolton wanderers goalkeeper paul rachubka on a one-year deal .\nthe school teachers ' review body -lrb- strb -rrb- has warned of a need for `` significantly higher '' teacher salaries in the next parliament .\na witness in the surjit singh chhokar murder trial has been ordered to apologise to the accused 's qc after he called him a liar during a cross - examination .\nwales hooker ken owens says six nations relegation is not inevitable .\nplans to expand oxford city centre 's car park have gone on display .\na body found in woods in north lanarkshire is believed to be that of a missing teenager .\na woman who spent more than two decades on death row in arizona for her son 's murder has lost a bid for a new trial .\nsir vince cable has said he is `` encouraged '' by the uk government 's response to the tata steel crisis .\nenvironmentalists and politicians have called for more to be done to encourage the use of renewable heat systems in scotland .\nmore than a third of web users have been caught out by malicious browser add-ons , research suggests .\na motocross rider has pulled off an incredible stunt by flipping his bike over a wall .\nthe number of gps working in wales has risen by 5 % in the past year , according to new figures .\na former mayor who resigned over a taxi driver who had been convicted of rape should not stand for re-election , a council leader has said .\nmanchester united defender marcos rojo is `` emotional but very clean '' , says manager jose mourinho .\nwes foderingham says the racist abuse directed at celtic 's scott sinclair by a rangers fan was `` disappointing '' .\nconcerns have been raised about the decline of seahorses in portsmouth harbour .\na reconstruction of the face of a man thought to have died more than 2,500 years ago is to go on show .\nit 's election season in east africa .\njamie heaslip will start for ireland in saturday 's six nations match against wales in cardiff .\na council has scrapped plans to replace paid staff with volunteers at libraries in west yorkshire .\nan 11th century church in north yorkshire has been damaged by bats .\nbayer leverkusen head coach roger schmidt has been given a two-game touchline ban and fined for verbally abusing a referee .\nthe 2015 nobel prize in medicine has been awarded to three scientists for their discoveries about parasitic illnesses .\na former hungarian police officer has been jailed for eight years for sexually assaulting a young girl .\nisraeli police say they have shot dead an israeli arab suspected of killing three people in tel aviv on sunday night .\na public-private consortium is set to win a # 1.2 bn contract to provide cancer care in staffordshire .\na group of volunteers are working hard to save bats in northern ireland .\nthe beltane fire festival has been held in the scottish borders .\nfour people have been charged over the killing of an israeli arab who was beaten to death by a mob in october .\nfour men have admitted their part in the hatton garden jewellery raid .\na bristol-based surf forecasting firm has been bought by us-based action sports company surfstitch .\nmatch reports from saturday 's scottish premiership and championship games .\nplans to tackle non-violent extremism have been announced by the government .\njockeys are against plans to stage all-weather racing on good friday next year , the president of the flat jockeys ' association has said .\nthe daughter of the first baby to be born on an air ambulance flight has become a cabin crew attendant for loganair .\ncornish pirates forwards alex cheesman and morgs morgan have signed new contracts .\nreal madrid goalkeeper iker casillas has been left out of new spain coach julen lopetegui 's first squad .\na double-decker bus has caught fire in bishopsgate , central london .\nthree people have been arrested after a man was found seriously injured in brighton .\nthe fossilised remains of a new species of dinosaur have been found in the sahara desert in southern africa .\nthe irish government has announced that it will stop issuing certificates of irish heritage on 24 august .\nmyanmar 's finance minister-designate kyaw win has admitted using a fake degree to get a job .\nvideo-sharing service snapchat says it has recorded 10 billion views a day .\nvalentine 's day is just around the corner , so here 's a tip for the european union : do n't try to woo someone with flowers .\nvenezuelan security forces have lifted a curfew in the western city of san cristobal .\npolice have launched a murder inquiry after the death of a 23-year-old man in glasgow .\nscotland 's top law officer has said it would not be in the interests of scotland or the uk to turn their backs on eu criminal justice co-operation .\nolympic heptathlon champion jessica ennis-hill has been made a dame at buckingham palace .\na seven-year-old boy from northamptonshire has applied to be the next england football manager .\nisraeli prime minister benjamin netanyahu has accused the european union of trying to `` suck israel dry '' .\na shopkeeper in the indian city of mumbai -lrb- bombay -rrb- who was filmed being attacked by a man with a knife has told the bbc that he has received threats .\nalan solomona is `` good enough '' to play for england , says former england winger ugo monye .\na man has died after his private ambulance was involved in a crash with a bus in north yorkshire .\nsouleymane cisse says he has become a `` star '' after winning olympic gold in rio .\na 16-year-old boy has admitted causing the deaths of two friends by dangerous driving in a car crash .\na firefighter has been sacked for failing to attend a house fire in which an elderly woman died .\nscunthorpe united have signed midfielder jack osbourne on a deal until the end of the season .\na lorry carrying wind turbine parts has ended up in a ditch on a country road in southern scotland .\nthe former leader of glasgow city council , michael matheson , is to leave the local authority to take up a post as a visiting professor at strathclyde university .\naberdeen have signed right-back ryan mclaughlin from liverpool on a season-long loan .\nbelfast boxer katie taylor is in talks with promoter eddie hearn to fight at the sse arena in belfast next week .\na mexican family 's decision to invite only family and friends to their daughter 's 15th birthday party has gone viral .\ndemocratic unionist party -lrb- dup -rrb- mla edwin poots has said he does not like doing business with sinn féin .\njames dasaolu won the 100m at the british championships to secure his place at this summer 's rio olympics .\npaul smith suffered his third successive defeat as he lost a unanimous points decision to germany 's gervonta zeuge to retain his wba light-middleweight title .\nthe police have renewed an appeal for information a year after the murder of a man in his own home .\nsinn fin has offered the justice ministry to the alliance party , deputy first minister martin mcguinness has said .\nthe nhs is on track to overspend its budget by more than # 2bn this year , official figures show .\na victorian reception house used by poor families to pay for their loved ones ' funerals has been given protected status .\na man has died and a seven-year-old girl has been injured in a car crash .\nthe first pictures from a new constellation of earth observation satellites have been released .\nyn ffodus , roedd camera cymru fyw yna i ddal y broses hir ac weithiau araf !\nformula 1 bosses say they hope to have a design for the ` halo ' cockpit head protection system in place by 1 july .\ndan evans is through to the second round of qualifying for the australian open after coming from a set down to beat germany 's joachim gerard .\npoundland , the uk 's biggest discount retailer , has made three big acquisitions in the past year .\nthe us has condemned russia 's reported shipment of surface-to-air missiles to syria .\na man has been arrested in connection with a hit-and-run crash in hamilton in which a police officer was injured .\nthe university of groningen in the netherlands is one of the most famous universities in the world .\nlebanese security forces have foiled an attempt to smuggle millions of illegal pills into the country , the state-run national news agency -lrb- nna -rrb- reports .\nduring world war two , black men from the caribbean volunteered to serve in the british merchant navy .\ngreat britain 's success at the sochi winter olympics will lead to more funding for winter sports , says uk sport .\ndutchman dylan groenewegen took the overall lead on the opening stage of the tour de yorkshire .\na single sex school in hampshire is to close at the end of the school year .\nengland fast bowler chris tremlett has announced his retirement from international cricket .\na woman who led a campaign to raise money for the families of four people who died in a fire at a wood treatment plant has been awarded a mbe .\nnew rules aimed at preventing a repeat of the financial crisis have been unveiled .\nmexican video game company slang has launched its new wrestling video game at the e3 video games show in los angeles .\nnational league side tranmere rovers have signed welling united defender ben jefford on loan until the end of the season .\ntwo climbers have made their first ascents of stac lee and stac an armin , the highest sea stacks in the st kilda archipelago .\nedward enninful has been named as the new editor-in-chief of british vogue .\nsri lanka batsman kumar sangakkara has retired from test cricket .\naustralia 's prime minister tony abbott has defended his country 's policy on migrants , a day after a us newspaper criticised it .\ndowning street hopes to work with the burmese government to find and restore six spitfires that went missing during world war two .\nus secretary of state hillary clinton has urged egypt 's new president to avoid confrontation with the military .\nsurrey completed a crushing innings-and-209-run win over warwickshire inside three days at the oval to go top of the county championship .\na classic car has been missing from a hertfordshire garage for 20 years .\nnicolas sarkozy 's former chief of staff has gone on the attack against the former french president .\nulster bank has said it is working to fix a computer glitch which has affected some customers ' payments .\nresearchers at the large hadron collider -lrb- lhcb -rrb- have announced that they have failed to detect superparticles .\nhousebuilder barratt has announced plans to build more than 1,000 new homes in scotland over the next three years .\nuganda 's defence chief has said all its soldiers should be out of south sudan by the end of the year .\ntwo midwives accused of misconduct over the death of a baby did not know a mother was ill , a hearing has been told .\nbrian reid has left his position as manager of scottish league two side stranraer by mutual consent .\nan explosion has hit a building in the turkish city of diyarbakir .\nas a sports journalist i 've been to many major sporting events and i 've been told many times not to go .\nscotland were outclassed by south africa in their second match of the world cup .\nla liga side deportivo la coruna have sacked head coach luis sanchez .\niceland 's government has presented a bill to ban discrimination on the grounds of gender .\ninspectors have found `` serious concerns '' about the quality of care at two care homes in scotland .\na man has been arrested on suspicion of having an imitation gun in south london , police have said .\na scottish construction worker who has been missing in india has been found .\na burglar who has been banned from entering alleyways in manchester has been jailed .\ntorquay united manager kevin nicholson says he will not receive any money from eunan o'kane 's move to bournemouth .\nrangers beat celtic in a penalty shootout to reach the scottish cup final .\ngreat britain 's louis bevan says he is still hopeful of competing at the 2016 rio olympics despite breaking his leg .\neight men have been arrested in a series of raids across the north of england .\nengland all-rounder ben stokes says he has grown as a player as he prepares to lead his side in the first one-day international against west indies in antigua on wednesday .\nex-england football captain stuart pearce is set to make his debut for a team dubbed the `` worst in england '' .\nnew year 's eve celebrations in the chinese capital , beijing , have been marred by hazardous levels of pollution .\nospreys wing keelan giles has been called into wales ' six nations squad to replace the injured hallam amos .\nindia beat sri lanka by an innings and 80 runs in the second test in colombo to take a 2-0 lead in the three-match series .\na pensioner secretly filmed women and children in a falkirk shopping centre with a hidden camera , a court has heard .\na teenager who was held at knifepoint and raped by two teenagers has urged others to come forward if they are sexually assaulted .\nthe scottish government is to be asked to confirm whether police scotland broke the rules by spying on journalists .\nonly seven of the ftse 100 's 100 chief executives are women .\nplans to drill for shale gas in nottinghamshire have been submitted to the county council .\ndavid hockney 's assistant died after drinking acid in the artist 's bedroom , an inquest has heard .\nthe family of a missing french student have appealed for information after a man matching his description was seen running and walking in the area of duddingston .\nplans to build a new power station at a paper mill in norfolk have been submitted to the government .\nmore than 160,000 parking tickets have been paid off using a chatbot .\nthe number of children living in poverty in wales has more than doubled in a decade , according to a charity .\nmark ronson and bruno mars have added five more writers to their hit single uptown funk , following the blurred lines court case .\njeremy hunt is calling for a cross-party review of england 's education system .\nguernsey 's harbour master has said the number of cruise liner visits to the island last year was the worst since 1987 .\nisobel and cecilia joyce starred as ireland beat zimbabwe by eight wickets in the icc women 's world twenty20 qualifier .\nthere has been a slight dip in the proportion of a * to c grades in some subjects .\nmo farah used to train at windsor great park , it has been claimed .\nmore than 100 children rescued from the `` jungle '' migrant camp in calais are due to arrive in the uk this weekend .\nmae rhieni yn yr ardal wedi codi pryderon am effaith posib y newidiadau , gyda sawl un yn cwestiynu beth fydd dyfodol addysg cyfrwng cymraeg o few\nrussell brand is taking legal action against the sun newspaper .\npeterborough united have sacked manager graham westley following saturday 's 1-0 league one defeat by scunthorpe .\npeterborough united manager grant mccann says he is `` devastated '' for new signing alex macdonald after he broke his leg in a training session .\na grade ii-listed building in stoke-on-trent is to be turned into a campus for staffordshire university .\nnottingham forest head coach mark warburton says he wants a squad of 21-22 players next season .\nbritain 's ruta meilutyte broke the 100m breaststroke world record in the semi-finals at the world swimming championships .\nboeing has reported lower-than-expected sales and profits for the three months to the end of december .\na plane has been forced to make an emergency landing at edinburgh airport after a technical fault with its engine .\nmore than a third of secondary schools in england are under-performing , according to government figures .\nas the church in wales prepares to elect its first female bishop , some of the first women to be ordained in the church in wales share their experiences .\nhowler monkeys have `` huge variation '' in the size of their vocal tract , according to researchers .\naustralian prime minister tony abbott has said politicians should not use public money for personal gain .\nthe widow of a man who died in a crash on a dual carriageway has started a petition calling for changes to safety .\na fire which broke out at a recycling centre in east yorkshire has been brought under control .\ngreece 's prime minister has called for `` dialogue '' with russia as the eu prepares to renew sanctions .\nworld number one lydia ko carded a one-under-par 69 to move into contention at the us women 's open in seattle .\ntributes have been paid to the six people who died after a bin lorry crashed into pedestrians in glasgow city centre on monday .\nthe maker of irn bru , ag barr , is to cut the sugar content of its famous fizzy drink by more than a third .\nkerry ball is to host this year 's olivier awards .\ngatwick airport has reported a 10 % rise in passenger numbers to 3.9 million in the first half of the year .\na man who stabbed a vulnerable man to death before stealing his belongings has been jailed .\na charity has launched a campaign to restore a door from a former supermarket in cheltenham which was painted with a portrait of its founder .\nleague two side luton town have signed southend united striker ollie pigott on loan until the end of the season .\nbuckingham palace has again denied allegations that a woman was forced to have sex with prince andrew when she was underage .\nwelsh taekwondo fighter lauren williams says winning a gold medal at the european championships has boosted her confidence .\nchinese artist ai weiwei has accused lego of being an `` act of censorship '' after the company refused to sell him bricks .\na serious case review is to be carried out into the collapse of a major investigation into alleged abuse and neglect at care homes , first minister carwyn jones has announced .\ndarren stevens hit an unbeaten century to put kent on top against essex .\ngardeners ' world presenter monty don has criticised the quality of garden plants sold in supermarkets .\ntwenty-six italian track and field athletes have been charged with doping offences .\nthe first trailer for the new james bond film spectre has been released .\ntablets , smart phones , computers - they are everywhere .\nrangers football club has raised more than # 22m through a share issue to fans .\nplans to build a giant dragon sculpture in wrexham could be given a five-year extension .\na football club has become the latest in the uk to switch to a vegan food policy .\na 41-year-old man has been arrested in connection with the murder of a woman whose body parts were found in undergrowth in dublin .\nhibernian eased into the fourth round of the scottish cup with a thumping win over bonnyrigg rose .\nextra police powers could be used during saturday 's champions league final .\nthousands of football fans had to wait up to two hours to get into an fa cup match .\nburton albion have released seven players , including goalkeeper jon mclaughlin .\na father drowned trying to rescue a friend who had got into difficulty in the sea at a beach where seven people died , an inquest has heard .\nthere is `` anxiety '' among staff at the office for national statistics -lrb- ons -rrb- ahead of the publication of a review , a union has warned .\na # 31m surfing and water park in snowdonia has been given a # 1.6 m boost from the welsh government .\na woman has been charged over the death of a 90-year-old man in a car park .\nbomb disposal experts have been called to a beach on anglesey after a world war two flare was found .\nglasgow warriors scrum-half conor murray is confident his side can secure a place in the pro12 play-offs for a fourth successive season .\ncameroon were knocked out of the fifa under-20 world cup as they lost 3-1 to germany in their quarter-final in russia .\nengland 's justin rose carded a one-under-par 69 to share the lead with american rickie fowler after three rounds of the wells fargo championship .\nengland captain dylan hartley says there is `` still a lot to work on '' after his side completed a series whitewash in australia .\na us court has declared a mistrial after a man rushed at a witness in a gang trial in salt lake city , utah .\na hospital trust in cumbria has been put into special measures .\nmore than half of councils in england face a secondary school places shortage within the next five years , analysis suggests .\ndefence secretary sir michael fallon has said the red arrows fleet will be reviewed `` in the next year or two '' .\nup to 70 jobs are under threat at an audio equipment factory in north lanarkshire .\npeople who read tabloid newspapers as children make less progress in vocabulary as adults , a study suggests .\na belfast fuel company and its director have pleaded guilty to health and safety breaches following the death of a worker in march 2013 .\nthe queen has dined out at a historic pub in east lothian .\nthe price of carbon permits has fallen below 5 euros -lrb- # 4 -rrb- a tonne for the first time in three years .\nthe oil price has risen above $ 50 a barrel for the first time since november .\na pilot who died after his light aircraft crashed at dundonald airfield in county down on saturday has been named locally as david mcknight .\nthe decision on the redevelopment of guernsey 's schools has been delayed until the end of the year .\na peregrine falcon has been found dead in conwy county .\namerican michael phelps set a new world record to win the 200m individual medley at the american swimming championships .\nthousands of people have signed a petition against a decision to stop prescribing specialist infant formula to babies in south london .\nvenezuela is in the grip of one of the world 's worst economic crises .\nchelsea manager antonio conte says tottenham 's lack of transfer activity this summer is a `` tragedy '' for the premier league champions .\nnorthern ireland sprinters eamonn smyth , eamonn reid and emma foster qualified for the semi-finals of the 100m at the commonwealth games in glasgow .\nthree women have been threatened at gunpoint during a robbery at their home in west belfast .\nwork on a new seaside park has begun ahead of its official opening .\nan australian man who survived six days lost in the outback says he ate ants to stay alive .\nplans by judy murray and colin montgomerie for a # 31m sports and housing development in stirlingshire have been rejected .\namerican jordan spieth will take a three-shot lead into the final round of the dean & deluca invitational in texas .\none direction 's new single drag me down has gone straight to the top of the uk singles chart .\nthe bank of england has announced that the plastic fiver will go into circulation in october 2015 .\ndavid cameron has said it is time for the united kingdom to `` come together '' following the scottish referendum vote against independence .\nnational league side forest green rovers have re-signed defender paul mullin on a one-year deal .\nshay logan says aberdeen manager derek mcinnes ' assurances about his future was a major factor in him signing a new deal .\nscientists say they have made a `` leap forward '' in the hunt for a universal flu vaccine .\nthe number of syphilis cases in london has risen by more than a third in five years .\nzanzibar 's elections have been cancelled because of `` gross irregularities '' , the island 's electoral commission chairman has said .\nit 's been a week to remember for england cricket .\nfamilies of four malaysian men killed by british troops in borneo during world war two have lost their appeal against a decision not to hold an inquiry .\nthe owner of a 17,000-tonne oil rig that ran aground on the western isles last year has paid the maritime and coastguard agency -lrb- mca -rrb- # 180,000 .\na scottish town has been voted the best in the country in a design awards competition .\nanti-social behaviour on the night tube is likely to increase , transport for london -lrb- tfl -rrb- has warned .\npoland 's media scene is dominated by tv , radio and newspapers .\nthe uk will extend free trade deals with the world 's poorest countries after brexit , the government has said .\nsouth korea 's president has promised to raise the sewol ferry `` at the earliest possible date '' , on the first anniversary of the disaster .\ndozens of jobs are to be axed at a welsh government careers agency in a row over funding , unison says .\nwe 're not talking about the cringe-worthy boardroom moments .\nmessaging services have been ordered by the iranian government to share details of their users with authorities .\na man accused of shooting dead an indian man and wounding two others in the us state of kansas has appeared in court .\nthe los angeles county jail system has `` serious systemic deficiencies '' , the us justice department has said in a report .\ncyber monday is expected to be the uk 's biggest online shopping day of the year , as shoppers take advantage of black friday discounts .\nstrong winds and heavy rain are expected to hit parts of wales on tuesday .\na rescue boat made in south wales for the rnli has been sent to the greek island of lesbos to help lifeguards deal with the migrant crisis .\nwork has begun to restore a 16th century castle on the isle of wight .\nthe head of one of the world 's biggest banks has said he is prepared to move more jobs out of london into the eu .\ntony bellew has ruled himself out of a world heavyweight title fight with britain 's anthony joshua .\nthe organisers of the derry fleadh have said they hope to bring the festival back to the city in 2016 .\nhearts have agreed a deal to sign derby county striker conor sammon .\nthe second series of bbc one drama atlantis has just started , and it 's a completely different show from the first .\nalfred russel wallace was one of the most famous scientists in the world .\ndavid de gea 's proposed move from manchester united to real madrid collapsed at the last minute .\nmanchester city football club 's training ground in the etihad stadium is a noisy place at the moment .\nwhen i think of manchester city i think of the etihad stadium .\nukraine 's jamala has won this year 's eurovision song contest , beating russia and australia .\nchris baird 's late goal gave st mirren victory over ayr united in the scottish league cup .\nlabour leadership candidate andy burnham has said his campaign has ended with an `` outside but realistic chance '' of winning the contest .\none of the world 's largest roman mosaics will go to a new museum , the mayor of leicester has said .\nneil patrick harris ' hosting of the oscars has been described as `` one of the worst jobs in show business '' .\na female polar bear at a wildlife park in the highlands is thought to be pregnant .\nsinger lily allen has spoken of the `` torture '' she suffered at the hands of a stalker who stalked her for seven years .\na council 's plan to sell an ancient egyptian statue is being challenged in the high court .\nthe new saints reached the scottish cup quarter-finals with a comfortable win over livingston .\nwakefield wildcats forward kevin simon has signed a new two-and-a-half-year deal with the super league club .\ncatalans dragons hooker chris aiton will miss the start of the super league season after suffering a knee injury .\nformer labour leader ed miliband has called on all young people to register to vote .\nus retail giant walmart has agreed a deal with chinese e-commerce giant jd.com to expand its business in the country .\na pakistani province has passed a law recognising the marriages of hindus , the first such legislation in the country .\ntransport giant stagecoach has announced orders for more than 500 new buses and coaches .\ndavid cameron 's plans for a four-year ban on eu migrants claiming benefits in the uk are to be put to the conservative council in the new year , the bbc understands .\nformer bhs owner sir philip green is to meet the pensions regulator this week in a bid to resolve the bhs pension scheme , the bbc understands .\nthere is not much buzz about the planned merger of two of the world 's biggest eyewear firms , essilor and luxottica .\nparalympic athlete abdullah hayayei has died after being hit by a metal pole during a training session .\nnew york city 's city council has passed a bill to limit the number of costumed street performers in times square .\njapan 's messaging app line has filed to list its shares on the new york stock exchange -lrb- nyse -rrb- .\nat least eight people have died after being found in a trailer at a walmart store in san antonio , texas .\ndavid cameron has denied reports of a rift in relations between the uk and china .\nwaiting times in accident and emergency units in england have improved for the first time in more than a year .\nbritain 's chris froome extended his lead in the tour de france as he comfortably retained the yellow jersey after stage 16 won by diego pantano .\nthousands of airport workers in chile have gone on strike for 48 hours in a dispute over pensions .\nthe security firm g4s has reported a pre-tax profit of # 59m for the six months to the end of december , up from # 54m a year earlier .\ngermany 's christoph walz won olympic gold in the men 's kayak single 1,000 m in rio .\nthousands of elderly people are facing long delays in receiving care services , a charity has claimed .\nthe author gaia williams has won the prestigious winton prize for her book about the impact of human activity on the earth .\nthe cleveland indians and the chicago cubs meet in the best-of-seven world series finale on wednesday night .\nthe newry-based financial technology firm , first derivatives , made a pre-tax profit of # 13m in the six months to the end of september .\nindia 's parliament has passed a bill to increase the maximum sentence for juvenile offenders to 16 years in prison .\nan anglo-saxon pendant unearthed by a metal detectorist in norfolk has been declared treasure .\nliverpool have rejected a second bid from manchester city for winger raheem sterling .\nwales coach warren gatland says shane williams is a `` once-in-a-generation player '' .\njohn whittingdale has been appointed as the new culture secretary .\nmeet the arctic mission - a team of scientists , explorers , and politicians who want to get to the north pole .\nengland number eight billy vunipola could return to action in the six nations opener against italy on 6 march .\na man has been charged with wasting police time in connection with an alleged robbery in strabane , county tyrone .\nbritish gymnastics has launched an investigation after a video emerged appearing to show olympic silver medallist louis smith appearing to mock islam .\nluis suarez 's four-month ban for biting an opponent at the world cup has been upheld by the court of arbitration for sport -lrb- cas -rrb- .\ntwo men have appeared in court in zimbabwe over the killing of a lion .\na chinese woman 's claim that her husband had divorced her because of her `` fat face '' has gone viral on social media .\ngerman police have arrested a syrian man suspected of being a jihadist fighter .\nwomen 's super league one side yeovil town ladies have re-signed striker sarah heatherson for the 2017 wsl 1 season .\na teenager stabbed to death in east london has been named .\nulster and ireland centre stuart mccloskey has signed a new three-year contract with the province .\na hospital has apologised after an 86-year-old woman waited eight hours on a trolley for an emergency appointment .\ntributes have been paid to two men who died after getting into difficulty while swimming at a beauty spot in snowdonia .\n`` please do n't vote to leave the eu . ''\nvoters in iraq go to the polls on 5 january to elect a new parliament .\nphotographs of paralympic champion richard whitehead 's training ahead of the rio games are to go on display .\nreading defender jobi mcanuff says he would like to extend his stay at the club .\nwales ' new finance secretary is due to set out the welsh government 's spending plans for the next five years on tuesday .\nsports direct 's mike ashley has been threatened with a complaint of contempt of parliament if he fails to appear before mps .\nformer northern ireland secretary , lord alderdice , has warned theresa may not to view the issue of the irish border as if she is still home secretary .\nthe government has announced plans to allow farmers to manage their own flood defences .\nthousands of surfers have been heading out to sea after storm barney hit the uk 's north west coast .\nlifeguards are to be on duty at a beach where seven men drowned last summer .\ndivers off the coast of israel have unearthed a haul of gold coins believed to have been collected by the ancient caliphate of fatimid .\nengland head coach eddie jones will name his initial 33-man squad for the autumn internationals on friday .\nfree sanitary products should be made available to women and children on low incomes in the uk , the green party has said .\nsurgeons in swansea are using 3d printing to grow new body parts .\na group of children dressed as elves have been attacked by a gang of teenagers .\na man has been charged in the united states with trying to join al-qaeda in pakistan .\nsouth africa 's president jacob zuma has said university fees will be frozen next year in a bid to end weeks of violent protests .\nhelicopter rescue teams at inverness airport have carried out more than 500 missions in their first year of operation .\na bouncy castle thought to be the largest in the world has been built for a music festival .\nreve de sivola won the tied cottage chase at punchestown for a second successive year .\nvolkswagen has delayed the release of its annual results as it continues to deal with the emissions scandal .\nsouth africa is one of the world 's most popular holiday destinations .\nporto stunned holders bayern munich in the first leg of their champions league quarter-final tie .\na man has been jailed for life for murdering a 43-year-old man in brighton .\nmk dons chairman stephen milne has said the club 's new stadium is still on the agenda .\ndown produced a superb display to earn their first win of the football league division two campaign against meath .\nthe irish travellers community has an irish ancestry , according to a new study .\nbolton wanderers goalkeeper mark howard has been ruled out for up to six weeks with a knee injury picked up against peterborough united .\na man has admitted making threats to shoot police officers in flintshire .\nactress and singer liza minnelli has cancelled two public appearances in the uk .\nfootage has emerged of the moment turkish journalist can dundar was attacked by a gunman outside his home in ankara .\nlibya have been stripped of the right to host the 2017 africa cup of nations because of the ongoing civil war in the country .\nnew zealand captain corey anderson has been ruled out for the rest of the season with a knee injury .\nit was a damp , grey day in addis ababa when barack obama stepped up to the podium at the african union -lrb- au -rrb- general assembly .\na met police detective who admitted possessing and distributing indecent images of children has been jailed for three years .\nbeavers illegally released in the highlands must be removed , the scottish government has said .\ncastleford tigers became super league champions for the first time in their history with victory over local rivals wakefield trinity at magic weekend .\npolice in the french capital , paris , have dismantled a roma -lrb- gypsies -rrb- camp near the gare de lyon .\nchanning tatum is to star in a remake of 1994 oscar-winning film rear window .\nthe humble chicken has come a long way in africa .\nbritish driver justin wilson has died from head injuries sustained in a crash during sunday 's indycar race .\ncommonwealth super-lightweight champion josh taylor is a `` phenomenal force '' , according to trainer shane mcguigan .\nmitchell johnson says he wants to banish the `` scars '' from his ashes heroics with australia .\nmore than 40 million people attended cultural events during the cultural olympiad , according to a new report on the programme .\nricky burns was a man on a mission .\nthe contract to build trains for the hs2 high-speed rail line has been launched .\nwales bounced back from their opening six nations defeat by england with victory over scotland at murrayfield .\nfifa presidential candidate gianni infantino wants the world cup to be played in two consecutive years .\nformer england batsman michael carberry scored a century on his return to competitive cricket for hampshire on monday .\nthe chief executive of chinese search giant baidu has been caught on camera driving a self-driving vehicle in beijing .\nteachers have called for schools to discuss female genital mutilation -lrb- fgm -rrb- with parents .\nresearchers in taiwan have discovered how jumping spiders fine-tune their movements .\na blue plaque is being unveiled at the home of a woman wrongly accused of plotting to murder the prime minister .\nchina 's first space station is expected to fall back to earth over the weekend , state media have said .\nthe number of young people trespassing on railway lines in wales has risen sharply in the past year .\na man has been found guilty of killing his ex-girlfriend in a `` sustained and frenzied attack '' .\nchris ashton scored two tries as saracens moved up to second in the premiership with a bonus-point victory over bath .\nan `` urgent '' campaign is needed to boost tourism in cumbria after the recent floods , a tourism boss has said .\nthe mysterious bright spots on the surface of the dwarf planet ceres have been revealed to be made of ice .\nvirtual doctors use mobile technology to help people in remote parts of the world get better care .\nthe world 's two biggest brewers , ab inbev and sabmiller , have agreed the terms of a deal .\nthe family of an airman who went missing a week ago have said they are struggling with the `` uncertainty '' .\npolice have confirmed that a body has been found following a house fire in the scottish borders .\na three-weekly collection of black bags could be considered by pembrokeshire council .\nrebel groups in syria say they have begun a new offensive against government forces .\nhow much would it take to pay off a student loan ?\njuan matavesi 's late try earned ospreys a draw against racing 92 in the european champions cup .\npatrick cummins scored twice as st johnstone eased to victory over hamilton academical .\ntui , one of the uk 's biggest holiday firms , has said the attack on a beach in tunisia in june was the `` most tragic event '' it had ever had to deal with .\na speed camera in cardiff has handed out more than 13,000 fines in the first six months of operation .\na referendum on eu membership should not be held on the same day as the welsh and scottish assembly elections , labour has claimed .\nthree men have been jailed for defrauding businesses out of more than # 1m in a cold caller scam .\ncraig gordon insists he was happy with his display in celtic 's dramatic champions league draw with manchester city at old trafford .\nscientists at oxford university have developed a smart glasses that can help people with sight problems .\nuk manufacturing firms are gloomier about the future than at any time since the financial crisis , a survey has found .\npresident-elect donald trump has said he will withdraw the us from the trans-pacific partnership -lrb- tpp -rrb- trade deal .\natletico madrid won the spanish league title for the first time as they came from behind to draw at barcelona .\nbank of scotland 's new plastic # 5 note has gone into circulation in glasgow .\nireland 's economy grew by 1.5 % in the first three months of the year and by 7.7 % compared with a year earlier , official figures have shown .\nartificial intelligence is being used to speed up the discovery of new medicines .\na group of mps has called on the government to legalise medical cannabis after publishing the results of a seven-month inquiry into medicinal use of the drug .\nthe iraqi city of mosul will fall to so-called islamic state -lrb- is -rrb- `` soon '' , michael fallon has said .\nleicester tigers wing tom benjamin is likely to miss the rest of the season with a knee injury .\nthe introduction of a criminal courts charge has `` grave misgivings '' about its operation , a committee of mps has said .\naston villa manager eric black has confirmed defender andreas weimann has left the relegated club .\nthe last time india hosted a major football tournament was in 1950 , when the country took part in the world cup finals in neighbouring pakistan .\na man has appeared in court charged with attempted murder after a serious assault in denny .\nthe board of the berlin philharmonic has failed to appoint a new music director .\na man in his 20s has died after being stabbed in dublin city centre .\nbeyonce is leading this year 's grammy awards with nine nominations .\nadolf hitler 's paintings have been sold at an auction in germany for more than # 1.2 m -lrb- 1.8 m euros -rrb- .\na man has been airlifted to hospital after getting into difficulty in the water at an open day at a lifeboat station in anglesey .\nsatellite images of the iraqi city of mosul show how islamic state -lrb- is -rrb- militants have destroyed the city 's main airport .\ndepression and anxiety are big problems for millions of people around the world .\nteaching staff at swansea university 's school of management claim they have been subjected to bullying and harassment by the deans of the school .\na canadian ice cream company says it will step in to help save a school in a small town in western ontario .\nbury boosted their league one survival hopes with victory over coventry at gigg lane .\ncardiff storm beat manchester storm to secure their place in the elite league play-offs .\npedro says he is `` feeling fine '' after suffering a head injury in chelsea 's pre-season friendly against shanghai sipg on saturday .\nmae llywodraeth prydain wedi cael ei adeiladu ac yna asesu ei effaith i ' r cynllun yn abertawe .\na girl who was born with part of her leg behind her pelvis has undergone pioneering surgery in australia .\nbelize is one of the most sparsely populated countries in the western hemisphere .\nceltic captain scott brown says the club 's players `` let themselves down '' as they close in on the scottish premiership title .\nin the 1980s , baseball became one of japan 's most popular sports after the los angeles dodgers won the world series in 1987 .\na hospital in greater manchester has been taken out of special measures .\nfenerbahce 's robin van persie says his left eye is `` undamaged '' after he was struck by a ball during a pre-season friendly on wednesday .\nif you want to know how much star wars memorabilia is worth , craig stevens is the man for you .\na man has been charged with the murder of a woman in south london .\na health trust has been placed in special measures for the second time in six months .\nemma croker will make her first start for england women in saturday 's six nations match against ireland .\nportsmouth have signed defender jonathan obika on a two-and-a-half-year deal .\nbritish troops will be sent to somalia and south sudan to help tackle terrorism and promote peace , david cameron has said .\npassengers had to be evacuated from oxford circus tube station after a fire broke out on a train .\na suspected unexploded bomb has been found in a car in sheffield .\nbritish athletics says it is `` puzzled '' by claims by paralympic champion david weir that he has retired from track racing .\na video of a young gorilla `` dancing '' to the beat of a drum has gone viral .\nphysical education should be made a core subject in schools in wales , a report says .\nan austrian scientist has set a new world record for the largest model of a crystal made from sticks .\nthe new leader of the afghan taliban , mullah akhtar mansour , has called for unity in an audio message .\nrangers have appointed manchester city 's mark allen as their new director of football .\nthe latest series of celebrity big brother drew an average of 2.3 million viewers on thursday night , according to overnight ratings .\nwork is set to start on a new cycle park in wrexham .\nthe number of road deaths in england and wales rose by 49 in the year to september , according to official figures .\nthe former home of author john fowles is to reopen to the public .\nmanchester city manager roberto mancini says carlos tevez could return to the first-team squad if he recovers from a groin injury .\nthe vice-chancellor of the university of aberdeen has called on the scottish government to withdraw controversial amendments to a higher education bill .\nlego , the world 's biggest maker of plastic bricks , found itself at the centre of a row earlier this month after it refused to sell to chinese artist ai weiwei .\nfive teenagers have been handed custodial sentences for violent disorder in torfaen .\na squirrel has been caught `` sozzled and drunk '' after breaking into a pub .\nit 's the start of a new career for two of this year 's great british bake off contestants .\nchampionship side bolton wanderers have re-signed midfielder darren pratley on a one-year deal .\nfossils of ancient pine trees have been discovered .\nmore than 80 homes have been left without power after a fire at a flat in edinburgh .\na tiny piece of viking treasure discovered by a dog has been valued by experts on the bbc 's antiques roadshow .\na man has died after being hit by a car in maidstone .\ntommy seymour scored a hat-trick of tries as glasgow warriors came from behind to beat leinster at scotstoun in the pro12 .\nlabour may as well `` shut up shop '' and fight the conservatives `` from the sidelines '' , the party 's welsh leader has told its spring conference in cardiff .\nformer australia forward willie mason has left catalans dragons by mutual consent .\nennio morricone has said he was `` very , very flattered '' to be asked to write the score for quentin tarantino 's next film .\nsouth sudan 's rebel leader riek machar has said he will return to the country , despite recent fighting .\nplans to create a single county council in oxfordshire have been criticised as a `` disaster '' .\na 12-year-old boy who was left paralysed after being hit by a car on the isle of wight has walked for the first time .\na human chain has been lit up at coventry cathedral to mark the 70th anniversary of the bombing of the city centre .\nmps have invited british cycling and team sky to give evidence to them about a `` mystery package '' delivered to sir bradley wiggins .\nit 's hard not to be moved by the news of the malaysia airlines plane that crashed in the southern indian ocean .\nthe metropolitan police has been ordered to pay # 20,000 in damages to two men who were falsely arrested .\na british backpacker who was stabbed to death at an australian hostel has died in hospital .\nthe son and father of northampton town chairman david cardoza received millions of pounds from a company that went into administration , it has emerged .\npope john paul ii has approved a second miracle attributed to mother teresa , paving the way for the roman catholic nun to be made a saint .\nthe british prime minister is getting ready to welcome another world leader to the uk .\nthe calbuco volcano in south-eastern chile has erupted for the second time in a week , prompting the evacuation of more than 2,000 people .\na surfer has died after being attacked by a shark in western australia .\nthe city of ulsan in south korea is a strange place .\nthe square in front of the cathedral in the centre of munich is a hive of activity .\nvodafone has said it is `` unlikely '' to move its headquarters out of the uk following the vote to leave the european union .\nthe south west of england is to receive the biggest share of a government fund aimed at tackling affordable housing issues .\nthousands of pounds worth of christmas meat has been stolen from a butcher 's shop during a break-in at the weekend .\ntwo police dog units are to merge as part of cost-cutting measures .\nthe rise of eurosceptic and far-right parties across europe has shaken up the political establishment and raised questions about the future of the european union .\ncatalans dragons have signed former australia and new zealand prop willie mason on a two-year deal .\nsir bradley wiggins `` stands by '' his claim in a 2012 book that he had never had an intravenous injection .\nconor mcgregor is one of the most recognisable faces in the ultimate fighting championship -lrb- ufc -rrb- .\nthe number of children 's social workers in england has risen but the number of vacant posts has increased by more than a third , figures show .\nthirty shellfish beds in cornwall will remain closed until further notice , the food standards agency -lrb- fsa -rrb- has said .\nthe family of a young black man who died after a police chase have urged protesters not to `` take it to the streets '' .\ngeorge north says the british and irish lions must `` kick on '' from their opening two matches in new zealand .\nthe battle for homs is over . `` because we see them as being a vital part of the political process , critical to preserve to prevent syria becoming a choice between assad or isil , so they are a very important part of the dynamic . '' the west 's hopes for an alternative syria seem based on crossed\nan anti-bullying charity has called on a gym to remove a poster which it claims `` aids bullying '' .\npolice in italy have arrested more than 100 people as part of an investigation into match-fixing in football .\na 200-year-old working windmill in hampshire has been restored .\nthe liberal democrats , green party and ukip have all claimed the nhs is being privatised .\ncristiano ronaldo 's late header gave portugal victory over sweden in the first leg of their world cup play-off tie at the bernabeu .\nus president-elect donald trump has dismissed as `` ridiculous '' reports that the cia believes russia meddled in the us election .\nthousands of knights and dames have taken part in a procession in rome to mark the 900th anniversary of the founding of the knights of malta .\nwhat is the best team of all time ?\nthe father of missing airman corrie mckeague has said it is `` heartbreaking '' to think his son could be buried at a landfill site .\nhighland council has said it is committed to providing technology rich environments in schools .\na new sherlock holmes maze has opened at a theme park in the us .\ncctv footage of the police raid on the lindt cafe during the sydney siege has been shown to a coroner 's court .\na mexican man has been charged with the murder of a us border patrol agent who was killed in 2010 .\nthe school day could be shortened and teaching jobs could be cut in a bid to save # 3m , according to a letter sent to parents .\nmore than 2,000 people have signed an online petition to save three degree courses at a private oxford college .\nbetty churcher , one of australia 's leading art gallery directors , has died at the age of 84 .\nthe prime minister has revealed she 'll be tuning in to tv on christmas day .\na 25-year-old man has died in a crash involving a car and a lorry on the a90 in south lanarkshire .\nmore than half of australia 's children are living in poverty , according to a new report .\nhundreds of jobs could go at a norwegian oil services firm in aberdeen and london .\na council has announced plans to increase council tax by 15 % , blaming government funding cuts .\nmanchester city manager pep guardiola says his side were `` not good enough '' to win the premier league this season .\nnational league side york city have signed former forest green rovers defender emmanuel kamdjo on a two-year deal .\nthe duchess of cornwall will visit cardiff bay later this month to mark the regiment 's centenary .\nvocational colleges are taking a new approach to teaching gcses .\nformer england winger david ginola has launched his bid to challenge sepp blatter for the fifa presidency .\nwelsh labour needs to `` own '' its failure to win power in may 's general election , a former minister has said .\nthe campaign manager for republican front-runner donald trump has been cleared of assaulting a female reporter in florida .\nplans for a technology park and teaching block at the university of sussex have been submitted .\na girl has been attacked by a dog while out walking with her family .\nliverpool manager jurgen klopp says the club will `` find a solution '' for wales midfielder joe allen .\na man who ran onto the pitch during a league one game has been given a suspended prison sentence .\na drug dealer accused of shooting a rival with a crossbow has told a court he was acting in self-defence .\nthe father of a woman who died after being gang-raped on a bus in india 's capital , delhi , has reportedly said he wants her name to be made public .\n-lrb- close -rrb- : london 's leading shares closed lower , with mining stocks among the biggest losers .\na new peruvian satellite , persat-1 , has sent back its first image .\nspeedway club leicester tigers have been saved from administration .\nthe uk has voted to leave the european union , in a historic referendum that has shocked the world .\nsudan have been disqualified from qualifying for the 2017 africa cup of nations after five players were found to be ineligible .\na woman has died in hospital five days after being set on fire at her home in manchester .\nhospitals in wales may have to cancel some operations because of pressures , the chief executive of the royal college of surgeons has warned .\na man accused of knocking down a lollipop lady outside a bedfordshire school has told a court he was `` truly sorry '' .\nactivity in the uk 's manufacturing sector picked up slightly in may , a survey has indicated .\na man has been found not guilty by reason of insanity of attempting to murder a muslim man on a london tube .\nthe average cost of watching a premier league match this season has risen by just # 1 to # 27 , according to the bbc 's price of football calculator .\ntwo rare white lions have been born at a zoo in south africa .\ntwo men have been airlifted to hospital after falling ill on board a tanker off the coast of cornwall .\nleicester city manager claudio ranieri has called on his players to `` fight until the end '' after their shock fa cup defeat .\nthe green party will back a second referendum on the final brexit deal , co-leader caroline lucas has said .\nfor more than a decade , ryan smith was one of scotland 's most prolific drug dealers .\nthe `` explosion in interest '' in the uk housing market has `` stalled '' , according to a survey .\njapanese carmaker mazda has unveiled what it says is the world 's most fuel-efficient petrol engine at the tokyo motor show .\nfurther remains have been found by police investigating the discovery of a skull on a motorway slip road in shropshire .\nat least 55 greyhound carcasses have been found in a shallow grave in the australian state of queensland .\ngolfers live longer than non-golfers , according to a new study by the university of oxford .\nnorthampton town have been granted a winding-up petition by hm revenue and customs .\na review of the impact of the closure of police scotland 's control room in dumfries has found it was a `` significant change '' .\nmore than a dozen teachers in wales have been banned from the profession in the past three years for sending explicit messages to pupils .\nhouse prices in the east of england have risen faster than in london , official figures show .\nthe father of one of three reservists who died on an sas selection march has told an inquest his son 's training process `` failed '' .\non the eve of the 50th anniversary of the end of the vietnam war , a convoy of north vietnamese tanks rolled through the streets of hanoi .\nmark stoneman 's century was not enough to prevent durham losing to warwickshire at edgbaston .\na new student accommodation block at aberystwyth university will not be ready in time for the start of the academic year .\ndover kept their national league play-off hopes alive with victory over guiseley at the crabble athletic ground .\nkizza besigye is the main challenger to uganda 's president yoweri museveni .\nthe chairman of the trust which saved cardigan castle from closure has resigned .\npolice are investigating the death of a man whose body was found at a flat in aberdeen .\nrussia 's prime minister dmitry medvedev has told the munich security conference that nato is trying to recreate the cold war .\npolice investigating the rape of a teenage girl have released e-fit images of two men they want to speak to .\nbonfires have been lit across northern ireland ahead of the twelfth of july celebrations .\nmorrisons has raised the price of marmite by 10p a jar because of rising costs .\nthe confederation of african football 's -lrb- caf -rrb- secretary general , mustapha el amrani , has resigned just days after the ousting of long-serving president issa hayatou .\nthe five teachers ' unions in northern ireland have rejected a new pay offer from the department of education .\nan inquiry into the education of prisoners in england and wales has been announced by the justice secretary .\nthe pirate bay -lrb- tpb -rrb- has been hit by a distributed denial of service -lrb- ddos -rrb- attack .\nthe words roald dahl used in his best-selling children 's books , including charlie and the chocolate factory and matilda , have been immortalised in the oxford roald dahl dictionary .\nconservationists may be able to use newly established populations of critically endangered species to meet demand in the wildlife trade , a study suggests .\nthe nhs in scotland is facing a `` perfect storm '' of staff shortages , according to a nursing union .\na custody sergeant accused of killing a man who died after being restrained did not know how it would turn out , a court has heard .\nandy murray 's former coach ivan lendl says he has been approached by a number of players about reuniting with the world number one .\nraymond aubrac , one of france 's most famous world war two resistance fighters , has died at the age of 99 .\na 52-year-old woman who died when a lorry crashed into a block of flats in north ayrshire has been named by police .\ndouble olympic champion nicola adams has welcomed the decision by the world boxing council -lrb- wbc -rrb- to ban three-minute rounds in women 's boxing .\nmexico stunned hosts brazil to win the men 's olympic football gold medal at wembley .\nchina has been suspended from international weightlifting for a year after three of its athletes tested positive for banned steroid turinabol .\nben affleck says he was `` honoured '' to be asked to star alongside matt damon in the film manchester by the sea .\nglamorgan made it two wins out of two in the one-day cup with a 72-run victory over gloucestershire at st helen 's .\ncoldplay have marked the end of the london 2012 festival with a `` bandstand marathon '' in trafalgar square .\ncrewe alexandra have signed former bolton wanderers goalkeeper jussi jaaskelainen on a one-year contract . .\na teenage boy has appeared in court charged with the murder of 16-year-old bailey gwynne at an aberdeen school .\ngoogle has announced that it is shutting down its glass project .\nthe uk 's manufacturing sector has fallen into recession , according to the office for national statistics .\nthe police service of northern ireland -lrb- psni -rrb- has asked the uk 's highest court to overturn a ruling that it failed in its legal duty to stop loyalist flag protests .\nat least five people have been injured in a shooting at a chris brown concert in california .\nthe decline of one of the world 's rarest species of gibbon in china has been explained by old government documents .\nparents are overfeeding their babies and young children , increasing the risk of them becoming overweight , research suggests .\nmarcus rashford and marouane fellaini scored second-half goals as manchester united continued their 100 % start to the premier league season with victory over leicester city at old trafford .\na third of working families in england would be unable to cover their housing costs for more than a month , a survey by shelter suggests .\nchampionship side hull city have signed chelsea left-back michael hector on a season-long loan .\nengland captain wayne rooney should not retire from international football after euro 2016 , says ex - midfielder frank lampard .\nhampshire moved to within two points of glamorgan at the top of the t20 blast south group with a four-wicket win over the welsh side .\na pilot who died when his folland gnat jet crashed during an aerial display at carfest has been named .\nlabour leader jeremy corbyn has appointed the woman who led an inquiry into anti-semitism in the party to the house of lords .\nthe church of england and the church of scotland have signed a pact to strengthen co-operation between the two churches .\nscientists have discovered a new class of plastic that can be recycled .\nclashes have broken out in the indian-administered city of jammu after a hindu temple was vandalised by a muslim man .\nleaving the european union could make the uk less attractive to international students , suggests a survey .\na county antrim mla has won a high court action brought against him by a 14-year-old girl .\na bbc persian presenter has said she was barred from flying to the united states because she is dual iranian-british .\ncancelling a competition to develop carbon capture and storage technology hit investor confidence , the public spending watchdog has found .\nworking-age households are `` at risk '' of being less wealthy at each age than those born a decade earlier , a report has said .\nolympic champion laura trott won the women 's individual pursuit at the british track cycling championships in manchester .\na man has been jailed for 12 years after a police officer was hit by a stolen car during a chase .\noscar pérez , a member of venezuela 's elite forensic police force , has claimed responsibility for an attack on the country 's supreme court .\nmark wood and steven finn have been left out of england 's squads for march 's one-day series against pakistan in dubai and abu dhabi .\na campaign has been launched to save the apartment of dylan thomas in the chelsea hotel in new york .\nthe remains of a man who died of `` serious head trauma '' have been found in a conwy county forest , police have said .\npolice are investigating reports of racist abuse directed at the polish community following britain 's vote to leave the eu .\nthree car bombs have killed at least 19 people in the southern yemeni city of aden , officials say .\na muslim advocacy group 's office in washington dc has been evacuated after an envelope containing a white powder was sent to staff .\nnaked man stephen gough has been given a public order to cover up .\nplans have been approved for a multi-million pound rebuild of a shopping centre .\npolice in western germany are searching for a teenager suspected of killing his 13-year-old brother after the boy 's body was found on the internet .\nlabour has retained the cardiff south and penarth seat in a by-election .\non a damp and drizzly afternoon , a small group of blind and partially sighted players gather around a cricket ball at a local stadium .\na man in a wheelchair has blown himself up at shanghai 's pudong airport , chinese officials say .\ncardiff devils assistant coach todd kelman has dismissed sheffield steelers ' claims that sunday 's challenge cup final will be a `` media circus '' .\nbp has withdrawn `` fewer than a dozen '' non-essential staff from its office in libya .\na man has died after falling from a first-floor flat .\nthe rail , maritime and transport -lrb- rmt -rrb- union has said it will vote on a four-year pay deal for london underground 's night tube service .\na tennis player and a pianist who battled obsessive compulsive disorder have been honoured at the first black history month awards .\nbbc radio 5 live and 5 live sports extra .\njersey reds centre matt stevens says the club need to be `` pushed forward '' in championship rugby union .\na rapist who was released from prison a year ago has been jailed again .\nsunderland manager sam allardyce says he wants to avoid a repeat of his side 's poor start to the season .\na methodist minister tried to hypnotise boys before sexually abusing them , a court has heard .\nmore than 1,000 homes have been left without power in the republic of ireland as storm clodagh swept across the country .\na 16-year-old boy has been arrested on suspicion of terrorism offences in connection with the disappearance of two teenagers from west yorkshire .\nat a un camp for displaced people in south sudan , 16-year-old kai deng is trying to come to terms with his new life .\na police force 's decision to stop detaining mentally ill people in custody has contributed to a rise in a&e admissions , a doctor has said .\na man has died in a house fire in greater manchester , the fire service said .\napple has been ordered to pay more than half a billion dollars to a us university for patent infringement .\na health board has been accused by msps of a `` culture of complacency '' over its finances .\nthe liberal democrats ' mission is `` clearer than ever '' , nick clegg has told mps .\nbritain 's mo farah set a new half marathon world record at the great north run in newcastle on saturday .\na woman has admitted ordering her dog to attack a woman in aberdeen .\ncafodd y penderfyniad i ganiatu menywod i fod yn esgob tyddewi yng nghadeirlan llandaf yn 2013 , yn l un oed .\nbritish number four aljaz bedene says he wants to represent slovenia at the 2020 olympics in tokyo .\nhibernian 's ryan stevenson believes the club can challenge at the top end of the scottish premiership .\nformer labour deputy leader harriet harman says that if the uk votes to leave the european union , women 's rights would be in jeopardy .\ncurzon cinemas is to be honoured at next year 's bafta film awards for its `` outstanding contribution to cinema '' .\nwest ham have agreed a deal to sign mexico striker javier hernandez from bayer leverkusen .\nthe snp is to chair two parliamentary committees in the new parliament .\nbrazil 's impeached president dilma rousseff has left the presidential residence in the capital , brasilia .\na man has been shot in the leg during a paramilitary-style attack at a park in londonderry .\nukip am mark reckless is set to leave the party to join the welsh conservatives .\na soldier who died on an sas selection exercise collapsed 100 yards from the finish line , an inquest has heard .\na lack of agreement on how to deal with northern ireland 's past is a `` bitter pill for victims to swallow '' , the police have said .\nthe headquarters of indebted indian tycoon vijay mallya has been put up for sale .\nyorkshire diamonds have appointed former essex coach paul grayson as their new head coach .\nmy collection of matchbox labels is one of the largest of its kind in the world .\nprince buaben has become the sixth new signing of the summer for hearts .\nthe uk 's tax authority wants to target online sellers who fail to pay tax .\nat least 20 civilians have been killed in an attack by taliban fighters in southern afghanistan , officials say .\nthe irish high court is hearing a case brought by a privacy campaigner who claims facebook transfers eu citizens ' personal data to the us .\nan iranian court has sentenced a us-iranian man to 10 years in prison for spying for the us and britain .\na greylag goose at the loch of the lowes nature reserve has laid her first egg of the year .\ncraig mcallister 's late equaliser earned 10-man eastleigh a draw against aldershot at hayes lane .\nthe council for the curriculum , examinations and assessment -lrb- ccea -rrb- is investigating allegations of malpractice in an a2 business studies exam .\nthe family of a boy who died in a hit-and-run crash on the greek island of zakynthos have said they are `` mortified '' by a suspended prison sentence handed down to the rider .\nprince charles urged tony blair to introduce a cull of badgers in england , newly-released letters show .\nthe death of a man whose body was found in a london subway is being treated as suspicious .\na man will stand trial accused of displaying a banner which included a `` threatening and offensive remark '' at a celtic v rangers match .\nit is 70 years since manchester was bombed by luftwaffe planes during world war two .\na woman who admitted murdering her mother has been detained indefinitely in a psychiatric hospital .\nthe terms of a deal between apple and online publishers for inclusion in its forthcoming app for iphone and ipad have been criticised .\narchaeologists hope to find the resting place of king henry i in reading .\nprisons in england and wales are in a state of `` crisis '' , the chief inspector of prisons has warned .\na man who broke through the roof of his girlfriend 's flat has been jailed for six months .\nlondon 's royal brompton hospital has seen a record number of patients over the festive period .\nthe stars of star trek beyond have spoken out in support of the film 's inclusion of a gay character .\nmichael gove has said he `` entirely accepts '' that theresa may `` no longer had a place for me in the cabinet '' .\ntwo road workers have been airlifted to hospital after being hit by a van in devon .\nnasa wants to send humans to mars .\nsouth african-born huw jones has been called up to the scotland squad for the summer tour to japan .\nthe police ombudsman 's office is to re-open investigations into historical complaints against the psni .\nthe uk is to make a formal protest to ecuador over the cost of policing julian assange .\nalastair cook and tom westley hit centuries as essex dominated day one against hampshire at the ageas bowl .\nthe trial has begun in china of uighur academic ilham tohti on charges of separatism in the western xinjiang region .\nsir chris hoy will be the flag bearer for team gb at friday 's opening ceremony of the london 2012 olympic games .\na storm called abigail has been named by the met office , and it 's set to hit the uk .\na tropical storm has formed off the coast of portugal .\nportsmouth defender luke whatmough has signed a new two-year contract with the league two club .\nif you are a small business owner , you may have been affected by the recent security breach at online shopping site amazon .\ntwo 16-year-old boys have been arrested on suspicion of murder after a teenager was stabbed to death in east london .\nbritain 's kell brook will be out for six months after suffering a fractured eye socket in his world welterweight title defeat by gennady golovkin .\na man who spent 35 years in prison for a murder in derbyshire may have been wrongly convicted , a former detective has claimed .\nscientists say they have developed a blood test that can tell how well you are ageing .\na village in northern india has held a contest to find the country 's `` most beautiful '' female .\nan msp has called on the scottish government to help safeguard the future of one of glasgow 's most prominent cultural venues .\nformer aberdeen captain and manager willie miller believes the dons have to prove themselves at hampden if they are to beat hibernian in saturday 's scottish cup semi-final .\nthe scottish government is to press ahead with plans to force health boards to have enough nurses and midwives on duty .\nformer england head coach stuart lancaster is interested in the vacant head coach 's job at european champions toulon .\ngreat britain 's british lionhearts lost the world series of boxing -lrb- wsb -rrb- final 5-0 to cuba 's cuban lionhearts .\nthe first person to take advantage of new rules allowing people aged 55 and over to cash in their pension pots has told the bbc he will do it .\na strike by southern rail workers has entered a second day .\nthree syrian men who helped capture a suspected so-called islamic state -lrb- is -rrb- militant in germany are being hailed as heroes .\nthe parents of a motorcyclist who was killed by a drink driver have called for the offence to be upgraded to manslaughter .\na square of prehistoric standing stones has been discovered inside a stonehenge monument .\ntwo dogs have died in a fire in north belfast which the fire service has said was started accidentally .\nthe ceramic poppies from the tower of london installation are to go on display at three sites in england this year .\na us judge has ordered that haitian politician guy philippe be held without bail on charges of drug trafficking and money laundering .\nhsbc is considering moving 1,000 jobs out of london as a result of the uk 's vote to leave the european union , the bbc understands .\nsatellites are to be used to deliver broadband to remote parts of scotland .\nplans to build more than 15,000 new homes in york have been unveiled .\nchilla , a 16-year-old student at kharisma bangsa school in jakarta , says she 's worried about the future . kharisma bangsa school is one of hundreds across the world that turkey wants to shut down because they have links to a us-based cleric , fethullah gul\nnorthampton town 's jon toney says he has experienced homesickness during his loan spell at premier league side newcastle united .\nthe bbc 's election team is bringing you #ineverknew , a daily guide to the key stories , newspaper headlines and quotes from the campaign .\nthe opening of a new # 31m school campus in the highlands is likely to be delayed .\nthe average price of petrol and diesel at the uk 's filling stations rose by more than 5p per litre in july .\nromania captain ilie nastase has been sent off for `` unsportsmanlike conduct '' during his side 's fed cup tie against great britain .\nvolunteers are being sought for an iron age village in pembrokeshire .\na cross-dresser from county down who was born male has had gender reassignment surgery in northern ireland for the first time .\nchinese search giant baidu has announced that it is releasing its self-driving car technology for free .\na statue of champion jockey ap mccoy has been unveiled at the cheltenham festival .\nshakespeare 's globe in london has opened an indoor jacobean theatre , inspired by academic analysis .\nmps have rejected an amendment to the queen 's speech which would have made it illegal for doctors to perform sex-selective abortions .\nthe world bank has released a study on the decline in the number of women in the workforce in india .\nplans to reintroduce wild lynx to parts of the uk have been published .\nauthor jk rowling has said she is `` heartbroken '' by the abuse she has received from twitter users who have called her a traitor .\nmount etna , one of the world 's most active volcanoes , has erupted for the first time in more than a decade .\nthe government has been defeated on sunday trading plans in the house of commons .\ntwo more people have been killed in western venezuela during protests against president nicolas maduro , officials say .\nif there was one thing you could do at a fair , it would be to get into the ring .\nroyal mail has warned that increased competition is threatening the future of its letter delivery service .\na woman who conned a charity set up by a cumbrian teenager who died of cancer has been given a suspended jail sentence .\nthree russian opposition activists have gone on hunger strike after they were barred from standing in a regional election next month .\nit has been a year since 43 students from a teachers ' college went missing in southern mexico .\nformer crewe alexandra footballer andy woodward says he is still waiting to be interviewed by police investigating historical child sex abuse in the sport .\na warning to boil drinking water in a cambridgeshire town has been lifted .\nthere are few things more frustrating than booking a hotel room .\npolice in the us state of texas have arrested three people on suspicion of human trafficking .\na man is in an induced coma in hospital after being found seriously injured on a road .\na 4,000-year-old bronze age site near stonehenge has been identified by carbon dating , archaeologists have said .\nmarine maréchal-le pen , niece of french far-right leader marine le pen , is to quit politics , french media report .\nat least 30 people have been killed in an oil pipeline explosion in central mexico .\nemma watson has told newsround there is no country in the world where all women can expect the same rights as men .\nnicola adams will fight for the first time under a new four-round format when she faces mexico 's ana salazar in manchester on saturday .\nplans for a new post-16 education centre in torfaen have moved a step closer .\nross county defender andrew davies has signed a new two-year contract with the premiership club .\nthe organisers of a memorial to world war two bomber command veterans are trying to trace more than 100 of the men .\na former soldier who fired the rubber bullet that killed a boy in belfast has `` significant reservations '' about attending an inquest , a court has heard .\npolice searching for a missing gwynedd woman have made a fresh appeal for information .\na bus company has gone into administration with the loss of 40 jobs .\nthe government should press ahead with a minimum price for alcohol in england , a house of lords committee has said .\nthe use of unqualified teachers in schools is `` jeopardising the educational progress of children '' , says a teachers ' union .\nteenagers are better at learning from their experiences than adults , a study suggests .\na man has been arrested on suspicion of syria-related terrorism offences after returning to the uk from syria .\nplans to double the size of a wind farm in greater manchester have been approved by councillors .\ntemporary school buildings have arrived at a school in west sussex which was destroyed by fire .\nmanchester city 's attempt to sign carlos tevez from corinthians has fallen through .\na scottish conservative msp has been accused of showing `` complete contempt '' after missing a holyrood meeting while refereeing a champions league game .\nscientists in the us say they have found a way to make sure each food type contributes to weight loss .\nwatching an aquarium full of fish can improve people 's wellbeing , a study has suggested .\nparents in the us will soon be able to tell their teenagers to slow down .\na florida man has been found guilty of murdering his wife and posting a picture of her body on facebook .\nrock star david bowie has died at the age of 69 .\nthe football association 's diversity and inclusion chief heather rabbatts is to step down from the governing body 's board .\nin our series of letters from african journalists , joseph warungu looks at the current political unrest in kenya .\nprime minister theresa may has been accused of `` arbitrary '' restrictions on the media during a visit to a cornwall factory .\na new chief executive for the health board which runs the university hospital of wales has been announced .\nengland 's under-20 football team have won the world cup .\nthe english football association has been charged by uefa over crowd trouble during england 's euro 2016 qualifier in lithuania .\nitv production staff and journalists have voted in favour of strike action in a pay dispute .\nthe government 's controversial changes to disability benefits will be legally binding , ministers have said .\nleicester tigers have signed winger ellis genge from bristol on a two-year deal .\na call of duty video game opening with a fictional terrorist attack in singapore has drawn criticism on social media .\nthe body of a man has been recovered from the river nith in dumfries .\njoao moutinho 's injury-time header rescued a point for portugal and denied the usa a place in the last 16 of the world cup .\npremier league matches will be shown live on sky sports for the first time this season .\nthe department of regional development -lrb- drd -rrb- has been found to be in breach of its duty over a # 500m dual carriageway contract in county antrim .\nthe number of teacher vacancies in scotland 's north east , highlands and the northern isles has risen sharply in recent years .\nshrewsbury and telford college has announced plans to cut about 76 jobs .\nthe louvre and the musee d'orsay in paris have reopened after being closed following friday 's terror attacks .\nleading republicans say president donald trump 's proposed cuts to foreign aid would be a `` disaster '' .\neight britons have been detained in turkey on their way to syria , turkish media say .\nbattersea power station has been put up for sale for the first time .\nleeds united have signed borussia monchengladbach midfielder matej klich on a two-year deal for an undisclosed fee .\nthe leader of plaid cymru has rejected the idea of cutting the top rate of income tax in wales .\ncornish reds head coach steve churcher has praised his side 's front row after their win over chinnor .\na company has been fined # 7,500 after a worker was run over by a forklift truck at a warehouse in lincolnshire .\nthe female-led ghostbusters remake has received a warm reception from critics , despite a backlash from fans of the 1984 original .\none of the most striking features of flamingos is their ability to stand one-legged .\nthe government spent # 1bn more than it was budgeted on setting up and running academies in england in the two years after the general election .\nlabour 's shadow foreign secretary has said the party is `` trying to get a compromise '' on the brexit bill as mps return to debate it .\nwidnes vikings head coach denis betts says his side are still doing `` some good things '' despite slipping to their first super league defeat of the season .\njonnie peacock , kadeena cox , hannah cockroft and richard whitehead have been named in great britain 's team for the world para-athletics championships in london .\na county antrim manufacturing company has announced plans to create 80 new jobs .\nglasgow warriors have extended the contracts of hooker zander rae and prop mohit bhatti .\nleague one side mk dons have signed crystal palace defender george taft on a season-long loan deal .\nwest brom boss tony pulis will make his 1,000 th premier league appearance when he takes charge of the baggies at stoke city on saturday .\na man whose remains were found in a lay-by may not have been murdered , police have said .\nthe united nations has called on the us to suspend a controversial quota on the amount of biofuel it produces .\nlabour leader jeremy corbyn has poked fun at theresa may 's `` cunning plan '' for brexit by comparing it to baldrick 's .\nexeter city have announced record profits for the last financial year .\na drink driver has been ordered to carry out 60 hours of unpaid work .\npolice investigating the murder of a businessman shot dead at his home in dorset are searching a river for the gun used in the attack .\na man charged with the attempted murder of two boys in hampshire has died in prison .\ncheltenham town have signed midfielder jean-louis atangana on a two-year deal .\nthe conservatives want to cap the amount that energy suppliers can charge their customers for the cheapest standard variable tariffs .\nuk interest rates have been held at 0.5 % for another month by the bank of england 's rate-setters .\nthousands of bank staff across the uk are to be trained in how to spot the warning signs of fraud .\ngerman chancellor angela merkel has welcomed the uk 's offer to eu citizens living in the uk as a `` good start '' .\ntwo grade ii-listed swimming pools and a 19th century stately home have been added to a list of the world 's most endangered buildings .\nnewcastle falcons director of rugby dean richards says his side are much better than their start to the premiership season suggests .\npolice have released cctv images of two women they want to speak to in connection with a serious assault in a nightclub .\ncalls have been made for a report into the death of a newport man to be published .\n-lrb- close -rrb- : the ftse 100 ended lower , with mining shares leading the way .\ntwo children and a man have been taken to hospital after the car they were travelling in crashed through an island above the road .\na man has appeared in court charged in connection with the murder of karl haugh in kilkee , county fermanagh .\na venezuelan baseball coach has called for the sport to be suspended because of the country 's economic crisis .\nlabour leader jeremy corbyn has said he will not be resigning , despite criticism from his own party .\nhundreds of people have attended the funeral of a boxer who died after being hit in the head during a fight .\nthe death of a teacher from carbon monoxide poisoning in china was an accident , a coroner has concluded .\na football club is trying to trace a bride-to-be who posed for a photo with their team after their coach broke down on the way to a game .\nwelshman elfyn evans finished second behind world champion sebastien ogier in the opening round of the world rally championship -lrb- wrc -rrb- in corsica .\nthe new owners of a cardiff car park have said they want to improve the area .\nemergency services in shetland have been restored after telephone and radio services were cut .\nformer snp leader alex salmond has said a second independence referendum is likely to be held in the autumn of 2018 .\nross county have signed midfielder liam chow on a two-year deal .\na drink-driver has been jailed for killing a police community support officer -lrb- pcso -rrb- in a hit-and-run crash in monmouthshire .\na senior police officer has called for cctv cameras to be installed at the glasgow necropolis .\nthe uk 's fourth largest airline , monarch , has said it expects to make more than # 40m this year .\n-lrb- noon -rrb- : shares in marks and spencer led the ftse 100 lower after it warned of a hit to profits .\na high court judge has banned tax officials from accessing newcastle united 's computers .\ncrusaders will go to glenavon with a seven-point lead over linfield at the top of the irish premiership table .\nmichael dunlop set the fastest lap of the week so far at the isle of man tt in thursday 's penultimate practice session .\nqueens park rangers striker jamie mackie has signed a new one-year contract with the club .\nformer wales captain jonathan davies says shortening the six nations to six weeks could damage players ' health .\nserial , the hit us crime podcast , is to be turned into a tv series .\na 26-year-old man has been charged in connection with an assault in paisley .\nuniversity staff in england and wales are staging a 24-hour strike in a dispute over pay .\na golf tournament hosted by us republican presidential candidate donald trump is to be moved to mexico city .\ngreat britain skeleton slider john swift has retired from the sport .\nengland international rachel nobbs has signed a new contract with women 's super league one side arsenal ladies .\nlong-serving bbc radio scotland presenter robbie macaulay has announced he is to retire .\nleigh griffiths says celtic will be `` fired up '' for another tilt at the scottish premiership title next season .\nflooding in the us state of louisiana has killed at least three people and displaced thousands .\nkaka has been added to brazil 's squad for the copa america in the united states .\npop star jessie j has topped the uk album chart with her latest album .\na vigil has been held for a man shot dead by police on a motorway in west yorkshire .\nthe first female chief pilot in australia has been named as tammie sutton .\nturkish police have fired tear gas and water cannon at protesters in istanbul and the western city of izmir .\na former nhs chief executive has admitted defrauding the health service out of more than # 11,000 .\na man has been arrested in connection with two sexual assaults in edinburgh city centre .\nit 's been a busy week in northern ireland 's newspapers .\na council boss who won a libel case against a blogger has said he will not keep any damages he won .\nas the search continues for survivors of saturday 's earthquake in nepal , medical teams are arriving in the capital , kathmandu .\none of the uk 's biggest payday lenders has agreed to pay # 10.25 m in compensation to 140,000 customers .\nbritain 's emma pooley has come out of retirement to target a gold medal at the 2016 olympics in rio .\nsam smith has won the 2015 barclaycard mercury prize for his album in the lonely hour .\nscotland and hull city defender andrew robertson could be out for up to a month with a calf injury .\naustralian oil and gas firm woodside has reported a record half-year profit , boosted by higher prices for its liquefied natural gas -lrb- lng -rrb- .\nthailand 's senate has rejected an amnesty bill that would have pardoned former prime minister thaksin shinawatra .\na new home is to be found for newport 's medieval ship after councillors backed a plan to store it in a warehouse .\nbritain 's olympic silver medallist jack burnell won the 100m butterfly at the dubai open .\nmo farah missed out on a second gold medal at the world championships as he finished second in the 5,000 m.\nbritain 's kyle edmund and johanna konta will lead the british charge at the us open in new york on monday .\nchina 's industrial output grew at its slowest pace in three years in april .\n-lrb- close -rrb- : shares in london have risen after the us federal reserve decided to keep interest rates unchanged .\na free school breakfast scheme in blackpool should be extended , researchers have recommended .\nthe leader of india 's maoist rebel movement has told the bbc that the rebels will not allow anyone to attack trains .\na 25-year-old man has appeared in court charged with breaching the terms of an anti-terrorism order .\njeremy corbyn has been campaigning in scotland ahead of the labour leadership contest .\nscottish power is to launch a new way for customers to buy gas and electricity .\nthe co-op insurance has been told it must provide separate quotes for no claims bonus protection for motorists .\nireland coach phil simmons has been offered the job of head coach of the west indies .\nthe afghan president has promised to investigate the rape of a woman by a gang of men , after the victim 's husband went public with the case .\nsammy wilson has ruled himself out of the race to be the next democratic unionist party leader .\npeter simpson has been elected as the new leader of carmarthenshire council .\nnigel farage has said the `` moment may be right '' for the uk to vote to leave the eu .\nhighland council 's planners have refused permission for up to 40 homes in carrbridge in lochaber .\ntranmere rovers have signed chesterfield midfielder armand gnanduillet on loan until the end of the season .\nthe women 's world twenty20 will be held in england in 2016 , the england and wales cricket board -lrb- ecb -rrb- has confirmed .\npop star britney spears has opened her las vegas residency , circus , at the planet hollywood resort and casino .\nthe rail regulator says network rail needs to do a better job of keeping track of how much work it 's doing on the railways , and when .\ntwo bangladeshi oil workers who were kidnapped last month in libya have been freed , officials in dhaka say .\nlouis van gaal 's pre-match press conference had been billed as a chance for him to prove his credentials as a premier league manager .\npremiership champions saracens have signed hooker dave porecki ahead of the new season .\njo pavey won great britain 's second gold of the world championships in the women 's 10,000 m at the london stadium .\ntheresa may should take responsibility for being `` too soft on extremists '' , plaid cymru 's leader has said .\nsamsung 's decision to halt production of its galaxy note 7 phone is a huge blow for the brand .\nformula 4 racer billy bowden has been back behind the wheel for the first time since he was seriously injured in a crash .\nboyhood has won three prizes at the new york film critics circle awards .\nthe roar of the steelworks still fills the air .\ntwo people have been arrested after a sheep sculpture in wrexham was stolen .\ntaking public transport to and from work could save welsh businesses up to # 5m a year , a report has claimed .\nleague two cambridge united produced an fa cup shock as they held holders manchester united to a goalless draw in the fourth round .\na bird has been photographed `` photobombing '' a train in north wales .\nwalsall 's erhun oztumer scored twice as the saddlers beat swindon at the county ground .\nthe uk 's construction sector may have avoided recession , according to the office for national statistics -lrb- ons -rrb- .\na new species of wasp has been discovered in laos in south-east asia .\na ceredigion college built in the gothic revival style in the 19th century has been given a # 10m boost .\na woman has been arrested after two iphones were stolen during a u2 concert .\na specialist unit to tackle online hate crimes in london has been launched by the mayor of london .\na teacher has been charged over a bomb threat made to a school by a pupil .\nmiranda hart has made her west end debut as miss hannigan in the hit musical annie .\npolice have appealed for information after a number of petrol bombs were thrown at a police car in county down .\nfive men have been charged with drugs offences following a police raid in oxford .\nactor george clooney 's plans to install cctv cameras at his oxfordshire home have been opposed by a parish council .\nthe bbc should make a spin-off series of the apprentice , lord sugar has told the bbc .\nformer tour de france and commonwealth games champion david millar has joined team sky as an anti-doping advisor .\nthe owners of a private mental health hospital where staff were secretly filmed abusing patients `` failed to provide care '' , a report has found .\na golden shell has been found in the final of five gold artefacts hidden across scunthorpe .\na suspected stolen car driver has been rescued by police officers after crashing into a reservoir .\nnorthern ireland 's graeme mcdowell carded a second-round 73 at the qatar masters to fall nine shots off the lead .\nfrench comedian dieudonne m'bala m'bala has been placed under formal investigation for inciting racial hatred after referring to one of the paris gunmen as '' charlie coulibaly '' .\nportadown have been handed a three-point deduction after david garrett was found to be ineligible for last month 's win over ards .\nbritain 's andy murray beat australian nick kyrgios in straight sets to reach the semi-finals of the australian open .\nthe bbc has announced plans to launch 11 new languages as part of a # 289m expansion of its world service .\nscientists have developed a patch that can repair damage caused by a heart attack .\na boy has been arrested on suspicion of sexually assaulting two nine-year-old girls in a playground .\na memorial to police officers killed on duty is to be built in staffordshire .\na man has appeared in court charged in connection with a fire off the aberdeenshire coast .\nchris and gabby adcock say winning a medal at the world badminton championships in glasgow will be `` one of the wish-list to tick off '' .\ntom rogic 's late goal gave celtic victory over aberdeen in the scottish cup final at hampden .\njuventus kept alive their hopes of winning the serie a title and champions league treble with a comfortable win over crotone .\nalbania qualified for the euro 2016 finals with a comfortable win over armenia .\ntens of thousands of people have gathered in leicester to mark the festival of diwali .\namazon 's prime video streaming service has launched in the uk , offering more than 100 television channels for a monthly fee .\na 200-year-old flag believed to have been flown by admiral lord nelson during the battle of trafalgar is to be sold at auction .\nscientists believe they have found a way to protect students from food poisoning - by making them a mead .\nirish police are investigating after human remains were found in a garden in county meath .\nhundreds of volunteers have been searching a forest for a woman who disappeared after leaving a swindon nightclub .\njonathan rea clinched the world superbike title with a third-place finish in saturday 's final race at misano .\nit 's not every day you get the chance to introduce a law to the statute book .\na row has broken out over access to a world war one cemetery in northern france .\nengland lost their last seven wickets for 43 runs on the final day as south africa wrapped up an innings-and-209-run victory in the fourth test .\nthe mother of a chicago teenage girl who was allegedly sexually assaulted and broadcast live on facebook says her daughter has been `` terrified '' ever since .\nformer us president barack obama is to give a speech in scotland later this year .\nkilmarnock defender andrea pascali was sent off in the first half as 10-man celtic eased to victory at parkhead .\nthere was a sense of euphoria around the olympic park after the closing ceremony on sunday night .\nthe son of jean mcconville , who was murdered by the ira , has said sinn féin president gerry adams told him to release the names of republicans who carried out the killing .\nwales wing george north says he wants to score tries in every game for his country .\na mother died after a piece of placenta was left behind during a caesarean birth , an inquest has heard .\na man accused of trying to buy deadly ricin on the dark net was inspired by the tv series breaking bad , a court has heard .\nwarwickshire captain varun chopra 's unbeaten century helped secure a draw against hampshire at edgbaston .\nsouth africa beat ireland by 87 runs in the second one-day international in port elizabeth to take a 2-0 lead in the series .\nis it a good idea to cut your hair while you are playing ?\nfriends and relatives of adam lanza , the 20-year-old who killed 20 children and six adults at a school in the us state of connecticut , say he was a shy and nervous young man .\na man had to be rescued from a garden fence in coventry after a railing fell through his leg .\nthe nhs in england is to cap the cost of new drugs to # 20m a year .\na man has been arrested after driving a bulldozer into a house in australia 's new south wales state .\nformula 1 bosses have agreed to scrap the controversial double points rule for the 2015 season .\ndouble olympic champion laura kenny has given birth to her first child .\nplans for a new bridge across the river thames to ease traffic congestion in reading and oxfordshire have moved a step closer .\nthe hoover washing machine pension scheme could be taken over by the pension protection fund -lrb- ppf -rrb- , the bbc understands .\na giant `` corpse flower '' has bloomed in scotland for the first time in 12 years .\nthe siblings of oscar pistorius have spoken of their `` heartache '' ahead of his sentencing for killing his girlfriend .\na cross-party delegation from northern ireland is to travel to colombia later to discuss the peace process between the colombian government and the farc rebels .\na college spent thousands of pounds on manchester united season tickets under a former principal , the bbc can reveal .\na missing woman and her two-year-old daughter are being sought by police in cardiff .\ncommuters have complained of long delays at the new junction of elephant and castle and newington causeway .\nfor decades , solihull has been known as `` the land rover town '' .\ndefender chris gunter says wales will cope without gareth bale in their euro 2016 qualifier against serbia .\nsenga , ridden by stephane pasquier , won the king george vi and queen elizabeth stakes at ascot .\nthree demonstration zones for marine renewable energy have been granted off the coast of wales .\nnine former ilex workers in londonderry are taking legal action against the northern ireland executive .\nbooks of condolence have been opened in the republic of ireland for sir terry wogan , according to bbc presenter chris evans .\nthe new leader of the uk independence party had her restaurant raided by the border agency after staff were found to be in the uk illegally .\nleicester city manager claudio ranieri has told his players not to leave the premier league champions this summer .\ndrivers on the london underground -lrb- lu -rrb- have voted to accept a new pay deal , clearing the way for a night tube service .\nnewport county chief executive stuart davies has dismissed criticism from exiles boss graham westley over the state of the rodney parade pitch .\negypt 's electoral commission has reversed its decision to disqualify former prime minister ahmed shafiq from the presidential race .\na new search and rescue helicopter service has been launched in south wales .\nafghanistan and pakistan have agreed to set up a hotline between their armies .\ntwo men have been seriously injured in a crash between a car and a bus in the highlands .\na former ambulance worker has been jailed for two counts of sexual assault on a teenage girl .\na labour mp has resigned as a backbench aide after being criticised for a facebook post suggesting israel should be relocated .\nderbyshire director of cricket gary wilson says his side will return next season despite being knocked out of the t20 blast quarter-finals by hampshire .\nfor the first time in europe , the finnish government is giving the country 's unemployed a basic income .\nfifty scots will compete for great britain at the 2016 olympic games in rio de janeiro .\ntens of thousands of people have gathered outside cairo 's al-fath mosque for friday prayers , calling for the fall of president hosni mubarak 's government .\nthe duke of kent has been discharged from hospital after being treated for a bladder infection .\nliverpool manager jurgen klopp says steven gerrard has a `` bright future '' as a manager .\nall photographs by david jenkinson\na teenager has died following an incident at a factory in derbyshire .\nlabour 's sadiq khan has been elected as the new mayor of london .\na new species of fish-scale gecko has been discovered in madagascar .\nactor johnny depp and his wife amber heard have filed for divorce in los angeles .\nwales should be given more power to help the north of england , the chief executive of greater manchester has said .\nshares in mainland china led losses in asia after a closely watched survey indicated further contraction in the country 's factory sector .\neverton have revealed plans to build a new stadium on the site of goodison park and anfield .\npartick thistle manager alan archibald says top coaches are coming to scotland to do their coaching badges .\npolice are searching for a man who has gone missing with his two children .\nan 18-year-old man has appeared in court charged with preparing terrorist acts .\na double-decker bus has come to a stop against a metal barrier after leaving the road in the scottish borders .\nthe archbishop of canterbury justin welby has said he would support assisted dying for the terminally ill .\narsenal ladies reached the continental cup final with a comfortable win over birmingham city ladies .\nat least 16 people have been injured in a collision between two amtrak trains in oakland , california , us media report .\nthe united nations has warned that us president donald trump 's proposed cuts to its peacekeeping budget would `` make it impossible '' for the organisation to continue its work .\nchristopher biggins has been evicted from the celebrity big brother house after making `` great offence '' to housemates and the viewing public .\nactor tony valentine , best known for his roles in colditz and raffles , has died at the age of 86 .\nleonardo bonatini scored the only goal as wolves beat middlesbrough on the opening day of the championship season .\nmalaysian police say a grenade attack that killed two people last month was carried out by members of the so-called islamic state -lrb- is -rrb- .\nthe death of a cyclist at a busy junction in east london is being investigated by transport for london -lrb- tfl -rrb- and the police .\nthe us supreme court has backed president barack obama 's signature healthcare law in a landmark ruling .\nanti-war campaigners have set up camp in newport ahead of the nato summit .\nronnie o'sullivan said he had been `` eating like a pig '' before winning his sixth masters title .\na new study has shown a `` massive '' drop in the number of cervical cancers caused by a vaccine .\nmae credu yn cael ei rhoi mewn categori lliw sy 'n mynd o wyrdd , i felyn , oren a choch ysgolion .\nit 's been an amazing season and i 'm really happy to have been a part of it .\nthousands of fans have attended a concert in the afghan capital , kabul , by popular singer fariba sayeed , despite death threats against her .\natletico madrid forward antoine griezmann will miss saturday 's derby against real madrid because of a foot injury .\nformer world number one tiger woods says he is receiving `` professional help '' to manage his medications and a sleep disorder .\na fox cub has been rescued after being found wrapped in a towel at a veterinary surgery in aberdeen .\nthe chief executive of a cheshire council has been suspended pending an investigation into allegations against him .\nnewport gwent dragons came from 14 points down to beat cardiff blues in the anglo-welsh cup .\na man has begun a sit-in protest at a mcdonald 's drive-thru after being told he could not use his horse-drawn carriage .\na court in israel has ruled that an australian woman accused of child sex abuse should undergo psychiatric treatment .\nthe former environment secretary lord rooker has called for the reintroducing of forests to the uplands to help prevent flooding .\nmore than 100 police officers have been involved in the search for a man who has been missing for more than a month .\na lottery ticket bought in the uk has won a # 24.6 m euromillions jackpot , organisers have said .\nan indian official 's warning that men who stare at women for more than 14 seconds could be arrested has gone viral on social media .\nisrael 's defence minister has accused turkey of allowing the islamic state -lrb- is -rrb- group to smuggle oil across the border .\nasian shares headed lower on wednesday after weak us economic growth figures raised fears about the strength of the world 's largest economy .\nindia 's decision to scrap 500 and 1,000 rupee notes is a `` one-time flushing out '' of the cash economy , according to one of the country 's leading economists .\nthe us has urged pakistan to take action against militants after an attack on an indian air force base .\nscottish 5,000 m record holder kerry mccolgan says laura muir has what it takes to win medals at the world championships .\na man has been arrested in connection with the death of a man who was found injured in a house in waterford city .\nthe government is considering taking over some of the schools in birmingham at the centre of the trojan horse allegations , the bbc understands .\nfive people have been found guilty of conspiring to pervert the course of justice after a council by-election .\nsearches have been carried out for a 24-year-old man who has been missing from his home in inverness for a week .\nthe convener of the crofting commission has said he is staying in the post despite calls for him to step down over a row with crofters .\nthe leader of spain 's socialists has failed in a parliamentary confidence vote to form a government .\nscientists at the university of glasgow say they have developed a new way of predicting the length of a bird 's life .\ntwo women have died after two cars crashed in the scottish borders .\nthousands of people who have bought nintendo 's new switch console have reported having dead pixels on the screen .\nall photographs courtesy of abdullah ali .\nthree welsh police forces have been rated `` inadequate '' in a review of how they protect the vulnerable .\nmining giant anglo american has said it will cut 15 % of its workforce as part of a restructuring plan .\na man has appeared in court charged with the murder of a woman whose body was found at a house in nottinghamshire .\nnato and russia have held their first high-level talks in more than a year , but failed to reach agreement on the conflict in ukraine .\nblink 182 's tom delonge has denied quitting the band .\nscotland 's seonaid mcintosh has won her second gold medal at the european shooting championships in italy .\nireland lost the second of their three one-day internationals against afghanistan by 39 runs on thursday .\ntaoiseach -lrb- irish prime minister -rrb- enda kenny is due to meet prime minister david cameron in london later to discuss the uk 's eu membership .\nmore than 70 council staff are to work from a new site after their offices were destroyed in a suspected arson attack .\ngary lineker says he `` shed a tear '' at leicester city 's decision to sack manager claudio ranieri a year after winning the premier league .\nthe former chief executive of aig , hank greenberg , is to stand trial on fraud charges .\nscientists from the university of york have discovered how cancer cells spread .\nthe russian orthodox church has rejected a claim by a prosecutor that a bust of the last tsar was covered in myrrh .\ndavid cameron has said he `` strongly supports '' the expansion of grammar schools .\na # 30m contribution from falkirk council 's pension scheme could help fund the building of hundreds of new social housing .\na baby who died shortly after a ventilator was removed from his body could have been saved if blood tests had been carried out , a coroner has ruled .\ntwenty years ago dolly the sheep was created .\nformer strictly come dancing host sir bruce forsyth will return to the show to co-host this year 's children in need .\nlabour and plaid cymru will launch their general election manifestos in wales on thursday .\nthe former president of camera maker olympus , satoshi kikukawa , has pleaded guilty to concealing losses of more than 200bn yen -lrb- $ 1.8 bn ; # 1.2 bn -rrb- .\nthe closure of the forensic science service -lrb- fss -rrb- will not damage the prospects for forensic science in the uk , a parliamentary inquiry has heard .\na world war two veteran from carmarthenshire has been awarded france 's highest military honour after a delay of more than 70 years .\na japanese dj 's song about mixing a pen with an apple and a pineapple has gone viral , racking up more than 44m views on facebook in less than a day .\ngrowth in the uk 's service sector slowed sharply in february , a closely watched survey has suggested .\naustralia captain michael clarke says he has the `` greatest admiration '' for england 's alastair cook following his side 's victory in the third test in india .\ntickets for bbc sports personality of the year 2015 in belfast have sold out in 24 hours .\nleon goretzka scored twice as germany beat mexico to reach the confederations cup final .\nbritish cycling technical director shane sutton says he is `` totally confident '' becky james will be fit for the rio olympics .\naustria striker martin harnik has been ruled out of friday 's world cup qualifier against ukraine because of a hamstring injury .\nthe new nhs trust that runs stafford hospital has been rated as `` inadequate '' .\nthe british teenager behind yahoo 's award-winning news-summarisation app has revealed plans to launch a wearable version of the product .\nthe ulster farmers union -lrb- ufu -rrb- has welcomed asda 's decision to increase the price it pays for milk .\ndavid cameron has pledged to double the amount of free childcare available to working parents in england .\na drink-driver who was found `` lying in the road '' with his trousers down has been given an unpaid work order .\ntennis star andy murray and his wife kim sears are expecting their first child .\nnewport gwent dragons head coach kingsley jones hopes oliver griffiths will earn a call-up to the wales squad .\na new research report has rejected the idea of introducing an affordable housing contribution scheme in northern ireland .\nthe uk job market slowed down in may , with companies taking time to assess the impact of the general election , according to a report .\nnational league side welling united have signed birmingham city midfielder jack cooper on loan until the end of the season .\na group of football fans have failed in a bid to force a public inquiry into west ham 's lease of the olympic stadium .\nfloyd mayweather and conor mcgregor clashed at a press conference to promote their las vegas super-fight later this month .\nhuddersfield town manager david wagner has signed a new three-year contract with the premier league club .\nbritish astronaut samantha cristofer is on a six-month mission on the international space station -lrb- iss -rrb- .\nharry shearer , the voice of simpsons characters ned flanders and seymour skinner , is to leave the show .\nas a young teenager , claude godin 's life changed forever when his father 's business was destroyed by a fire .\na rugby player died after suffering a head injury during a match , an inquest heard .\nformer arkansas governor mike huckabee has launched a second bid for the republican presidential nomination .\nthousands of workers at sports direct have taken part in a protest against zero-hour contracts .\na 23-year-old woman has died after a two-car crash in belfast city centre on friday .\nteenage midfielder millie walsh scored the only goal as manchester city beat brondby in the first leg of their women 's champions league quarter-final .\nscotland head coach vern cotter praised his side 's character after they came from behind to beat japan 16-16 in tokyo .\nboris johnson has told bbc radio 4 's today programme he will not be standing for the conservative leadership again .\nthe number of suspected child sexual offences recorded by police in england and wales has risen by 38 % , the nspcc says .\nthirteen people have been jailed after a multi-million pound drugs gang was dismantled in south wales .\na leading opposition figure in congo-brazzaville has called for a boycott of a referendum on constitutional changes .\nthe former finance minister , jonathan bell , has resigned from the northern ireland executive .\nmanchester united have agreed a deal to sign netherlands winger memphis depay from psv eindhoven .\nbristol city have signed midfielder josh brownhill from preston north end on a three-year deal .\nthe number of individual savings accounts -lrb- isas -rrb- opened in the uk has fallen to its lowest level in a decade .\ndanny swanson has joined hibernian from st johnstone on a two-year contract .\naberdeen have become the latest scottish club to shed long-term bank debt .\ndanny hylton 's second-half header rescued a point for luton in a draw with exeter at kenilworth road .\niraqi government forces and shia militias have broken the siege of the town of amerli near mosul , officials say .\nbomb attacks have taken place in the belgian capital , brussels .\nthe number of dogs seized under the dangerous dogs act in wales has fallen by almost a third in a year .\nnorthern ireland 's four main political parties are due to meet the prime minister in london on friday .\nengland will struggle to score runs against india 's spinners , says former all-rounder graeme swann .\nthe uk 's benchmark share index closed lower , as investors remained cautious ahead of thursday 's general election .\nengland manager gareth southgate is still hopeful that wilfried zaha will be allowed to play for ivory coast .\na third severed human foot has been found in bristol .\na council has said it would be `` absolute madness '' to move a boulder believed to be thousands of years old after it was hit by a car .\nall photographs by gareth iwan jones .\ncornish pirates head coach ian davies says his side 's ill-discipline cost them in their 21-9 defeat by bristol in the national one play-off semi-final .\nthe forth road bridge should reopen to traffic early in the new year , scotland 's transport minister has said .\nfirefighters in england and wales will stage a 24-hour strike on wednesday in a row over pensions .\nthe 20th anniversary of the first women priests being ordained in wales is to be marked with a series of services at seven cathedrals .\na fund-raising campaign to save one of the world 's largest radio telescope arrays has reached its target .\nsaudi arabia is the world 's largest exporter of crude oil and is the most powerful country in the middle east .\na suicide bomber has killed at least 16 people in the somali capital , mogadishu , officials say .\ndumfries and galloway council is to be given a progress report on the development of a national weather centre in the town .\nindian prime minister narendra modi 's remarks on bangladesh 's prime minister sheikh hasina 's `` zero tolerance '' for terrorism have sparked a debate on social media .\nthe brother of a british holidaymaker whose body was found on a thai island has said his family is `` devastated '' .\nportadown face a crucial game against ballinamallard united on saturday in their battle to avoid relegation from the irish premiership .\npeople in parts of north wales are being warned to prepare for flooding due to heavy rain .\na busy part of leeds city centre could be closed off to traffic as part of plans to make the city more pedestrian-friendly .\nthey are the stars of a new south korean apocalypse thriller terrorising audiences and breaking box office records at home and set to open in cinemas across asia this week .\nthe bells of st mary 's church in york have been rung for the first time in more than 250 years .\nscotland 's alan forsyth is relishing the chance to play against the world 's best hockey players at the hockey world league in london this weekend .\na member of so-called islamic state -lrb- is -rrb- has been killed in a us-led coalition air strike in syria , a pentagon spokesman says .\nus teacher libby atwell has won a $ 1m -lrb- # 660,000 -rrb- prize for the world 's best teacher .\nspacex chief executive elon musk has said the cause of a rocket explosion at cape canaveral in florida is still under investigation .\na 50-year-old woman has been arrested in connection with the murder of a man at a care home in county antrim last year .\nsister nirmala , the nun who took over the running of mother teresa 's charity in the indian city of kolkata -lrb- calcutta -rrb- , has died at the age of 97 .\na new road sign for a co-op supermarket has been painted over after it read `` wrong '' , the bbc understands .\nlabour is pledging to increase the weekly allowance paid to carers by # 10 .\ntony bellew and david haye clashed at the final news conference before saturday 's heavyweight bout at the echo arena .\nthieves have stolen a defibrillator from a village hall .\nmexican sergio perez will remain with force india for the 2017 formula 1 season .\na scottish university has apologised for a poster that suggested hollywood star jennifer lawrence was the victim of a hacking attack .\niranian president hassan rouhani is due to hold talks with french prime minister manuel valls in paris .\ncongolese rebel leader jean-pierre bemba has been found guilty of war crimes and crimes against humanity by the international criminal court -lrb- icc -rrb- .\nthe father of a seven-year-old boy who went missing for seven days in japan has apologised to his son and said he forgives him .\nbarbra streisand has said she is `` thrilled '' apple 's siri virtual assistant will soon be able to pronounce her name .\nsmoke-free legislation in scotland has prevented at least 600kg of toxic particles being inhaled by adults over the past 10 years , according to a new study .\nhundreds of people have attended the funeral in germany of a german woman killed fighting so-called islamic state -lrb- is -rrb- in syria .\na man has been arrested on suspicion of murder after human bones were found during a search for a missing man .\nscientists at dundee university have developed a new blood cancer test .\ndavid tennant has said his new west end play has `` fresh material '' that `` ca n't really resist '' .\nthe average uk household would lose # 850 a year in income if the uk leaves the eu , a think tank has said .\ngeneral motors has announced it will invest c$ 500m -lrb- # 357m -rrb- in its plant in ontario , canada to build the new chevrolet traverse .\nus rapper kanye west has said he wants to work with swedish furniture giant ikea .\na motorcyclist who died following a crash on the isle of man earlier this month has been named by police as peter baker .\njake mullaney 's century put nottinghamshire in a strong position on day one against surrey at trent bridge .\na child is in a critical condition after being hit by a car in vale of glamorgan .\na pilates class has been held on the isle of man to mark the 100th anniversary of the work of a world war two internees .\nchina 's biggest telecoms equipment maker has agreed to pay nearly $ 1bn -lrb- # 780m -rrb- to the us for violating export laws .\npope francis has condemned the persecution of christians as he celebrated good friday services at rome 's colosseum .\npolice have named a man they want to speak to in connection with a football match being abandoned after reports a player appeared to have a knife .\ntwo former prison officers have set up a business to help ex-offenders find work .\nchildren who read for pleasure are more likely to do well in maths , vocabulary and spelling , a study suggests .\n-lrb- close -rrb- : wall street markets closed higher on friday , boosted by strong us jobs figures .\nrepublican presidential candidate donald trump has backtracked on his claim that he saw video of a $ 400m -lrb- # 300m -rrb- payment to iran .\na canadian hostage has been beheaded by islamist militants in the philippines , officials say .\na man who complained about being banned from facebook under his real name , phuc bich , has changed his name to phuc phuc phuc phuc .\ned miliband has told a rally in glasgow that a labour government would not do a deal with the snp .\na new nuclear reactor could be built at the decommissioned trawsfynydd power station in gwynedd , unions have said .\na police force 's poster asking parents not to tell children they will go to jail if they are bad has been shared thousands of times online .\nscots athlete kimberley inglis has woken from a coma after being seriously injured in a motorbike crash in vietnam .\na man has been arrested on suspicion of murder after a woman was found unconscious in a street in leeds .\nan indian couple who falsely claimed to have climbed mount everest have been arrested , police say .\nthe contract for the # 18bn hinkley point nuclear power plant has been signed .\nmost players will admit to feeling the pressure of playing in the derby county derby .\nthere has been a `` serious democratic deficit '' in local elections in england , campaigners have said .\na `` gross systemic failure '' at the isle of man 's royal victoria hospital led to the death of a patient , a coroner has ruled .\na woman has been charged after a fight broke out during a performance of lord of the dance .\nformer police helicopter pilot david pogmore has been jailed for 18 months for filming people having sex in their own back garden .\naustralia is to send more troops to afghanistan as part of the us-led coalition fighting the taliban .\nbritain 's ellie page won olympic silver in the women 's trampoline final in rio .\nthe family of a man whose organs were kept by a police force for 23 years have spoken of their `` horrendous '' experience .\na man has said he feared for the safety of his children after a gang of masked men broke into his londonderry home .\nnorth ferriby 's winless start to the national league season continued with a 2-1 home defeat by bromley .\nnational league side forest green rovers have signed 19-year-old defender ben davies from non-league side eastleigh on a one-year deal .\nkatie o'connell is a typical teenager .\neuropean champions cup organisers are to investigate munster 's handling of conor murray in saturday 's win over glasgow .\nmotherwell 's winless run was extended to four games as they were thrashed by dundee at firhill .\ntwo hen chicks have hatched next to the belly of a giant welsh boar at a pembrokeshire petting zoo .\nchina 's state-run newspapers have gone on a propaganda offensive in the wake of an international tribunal 's ruling that the south china sea is chinese territory .\nin the tunisian resort town of sousse , where 38 people were killed by a gunman on friday , life has returned to normal .\nthe us army has given permission for work to begin on the final section of the controversial dakota access oil pipeline .\nwest brom manager tony pulis says burnley boss sean dyche is in his top three premier league managers .\ndowning street has denied that a spokesman for culture secretary maria miller threatened a newspaper editor over a story about her expenses .\nthe roll-out of a new telephone system for nhs 24 has been delayed again .\nsmacking is harmful to children and should be banned in scotland and the uk , a report has said .\na british woman jailed in malaysia for stripping off on a sacred mountain has left the island of sabah .\nthe legacy of the 1916 sykes-picot agreement , which laid out the borders of what is now the middle east , is under intense threat , 100 years on .\na bangladeshi man who spent 15 years in prison in pakistan has returned home .\nthe parents of a woman who was murdered by a soldier have told of the moment police knocked on their door .\ntwo police forces have been criticised over their involvement in a fatal crash involving an 87-year-old driver .\nplans for a new church in wales school campus in bala , gwynedd , could be scrapped .\na man has been arrested in connection with the death of an 80-year-old woman who was hit by a car in county down .\na voluntary donation scheme in snowdonia has raised thousands of pounds for local projects .\na woman has given birth to her first child after doctors re-implanted ovarian tissue which had been removed during cancer treatment .\nleicester city players want craig shakespeare to remain as manager for the long term .\na fund set up in memory of mp jo cox has raised more than # 1m in four days .\nisraeli prime minister benjamin netanyahu has opened a new permanent jewish exhibition at the auschwitz death camp .\ntwo police scotland officers have been injured in an incident at the force headquarters in edinburgh .\nrepublican presidential front-runner donald trump has said he would stop mexico from sending money back to the us if he is elected .\ntraders in perth have launched a late-night campaign to revive the city centre .\nindonesia 's governing democratic party of indonesia -lrb- pdi-p -rrb- appears to have won the most seats in parliamentary elections .\nfifa vice-president jeffrey webb has ruled himself out of the running to succeed sepp blatter as president of world football 's world governing body .\na woman accused of being part of a neo-nazi cell in germany has appeared in court for the first time .\nfive people have been arrested in south africa in connection with the murder of a popular rapper .\nwill grigg 's late goal rescued a point for colchester united against wigan athletic .\nkurtley beale scored two tries as wasps moved up to third in the premiership with victory at bath .\nmillwall missed the chance to go top of league one after being held to a goalless draw at colchester .\na man has been remanded in custody after he claimed his dog chewed on his electronic monitoring tag .\nfive-time olympic downhill champion lindsey vonn has won her first world cup race of the season .\njeremy corbyn and david cameron have agreed that prime minister 's questions should become `` a genuine exercise in asking questions and answering questions '' .\nformer yorkshire and england seamer norman appleyard has died at the age of 84 .\nthe opening of the new bridge over the firth of forth has been delayed until may 2017 , the scottish government has confirmed .\nformer inverness caledonian thistle manager barry christie has called for a change in scottish football 's youth policy .\nmy name is john and i grew up in the uist area of lewis in the 1980s and 90s .\nwhite teenagers in england are the least likely ethnic group to apply to university , according to the admissions service ucas .\na former investment banker accused of murdering a met police officer has told a court he had `` no intention of causing him harm '' .\nsinger-songwriter david sarstedt , best known for where do you go to -lrb- my lovely -rrb- , has died at the age of 74 .\nformer italian prime minister silvio berlusconi has been offered the chance to perform voluntary work as he begins a four-year jail sentence for tax fraud .\na fundraising event is to be held in memory of two teenagers who were injured in the alton towers rollercoaster crash .\nyorkshire recovered from a disastrous batting display to bowl out durham for just 156 on day one at scarborough .\na south african man has been arrested on suspicion of murdering his wife 's lover in a `` love triangle '' , police have said .\nin the wake of his historic election victory , argentine president-elect mauricio macri took the rare step of holding his first press conference .\nthe number of prescriptions for the acne drug roaccutane in england has risen by more than a third in three years .\na group campaigning for the uk to leave the eu has called for a cap on the number of migrants allowed in .\nmore than a quarter of babies born with a cleft palate are not diagnosed quickly enough , according to new figures .\nthe england and wales cricket board -lrb- ecb -rrb- says it will take `` appropriate steps '' if advised by the government to cancel next month 's tour of bangladesh .\nthe family of a woman who took her own life have criticised an nhs trust 's report into her death .\nbritain 's chris froome retained the overall lead of the tour de france as michael matthews won stage 11 .\na 40ft -lrb- 12m -rrb- high artwork depicting the moon has been installed in the great hall at the university of bristol .\nscientists say they have developed a cement mix that is more effective at blocking the passage of nuclear waste .\ntwo rival gangs in honduras have announced a truce in a bid to end years of violence .\nthe duke of wellington has taken part in the royal goat parade in north wales .\na takeaway delivery driver has been hit with a golf club during an attack in west lothian .\nspending on private ambulances in england has more than doubled in the past five years , figures obtained by the bbc show .\nmalaysia 's prime minister najib razak has said he will co-operate with a us investigation into a state investment fund , 1mdb .\na power cut that left more than a quarter of a million people in the ukrainian capital , kiev , without electricity in december is believed to have been caused by a hack .\n`` who 's that ? '' asks 20-year-old adam stokoe .\nthe funeral of former newcastle united midfielder cheick tiote has been held in china , with papiss cisse describing him as a `` brother '' .\na bid to become the uk 's first spaceport is being launched in kintyre .\ngrand national winner rule the world has been retired .\nthe chancellor has announced an extra # 2bn for social care services in england , in his budget .\nthe owners of blackpool football club have been granted a default hearing in their libel action against a fan .\nthe role of the uk 's armed forces is one of the most important foreign policy issues of our time .\nuzbekistan 's shakhobidin dusmatov won olympic gold in the men 's light-flyweight boxing , beating colombia 's ivan martinez in the final .\nengland manager roy hodgson says he has `` no doubts '' about his team 's patriotism , despite criticism from wales forward gareth bale .\nceredigion could host the national eisteddfod in 2018 .\nmore than half of new mothers in wales do not breastfeed their babies for the first six months , a survey has found .\na deal on the fiscal framework for scotland 's new devolved tax powers is `` not imminent '' , a uk government minister has said .\nthe bbc 's decision not to renew jeremy clarkson 's contract as host of top gear has been met with a mixture of disappointment and support on social media .\na terror tip-off led to the ban on laptops in cabin baggage on some us-bound flights , us media say .\ncanada has revoked the citizenship of a 93-year-old man who was a member of a nazi death squad during world war two .\nfour internet of things devices have been found to be insecure , according to security researchers .\ncuba 's president raul castro has approved a series of economic and political reforms .\nafter days of intense fighting , iraqi forces have retaken control of the city of mosul .\npolice officers in carmarthenshire are to be given body-worn cameras .\nformer bbc director general mark thompson has defended a # 1m pay-off given to his deputy .\nfunding for two of the schools allegedly targeted by the so-called trojan horse scandal could be cut .\nitaly has declared three days of national mourning for the victims of wednesday 's earthquake in the central region of abruzzo .\na man has been charged with the murder of a mother-of-two found dead at a house in essex .\ngeorge cole was best known for his roles in films such as the belles of st trinian 's and henry v.\nprime minister theresa may has been accused by the liberal democrats of `` taking this country in a dangerous and damaging direction '' after she said the nhs would not be able to afford brexit .\ngerman chancellor angela merkel has said allegations of us spying on germany are `` grave '' .\na number of foreign tourists have been targeted by men posing as police officers in edinburgh .\nthe mother of a five-year-old girl with leukaemia has urged people to give blood to help save lives .\nsix north sea workers have been exposed to `` low levels '' of radioactive material while working on an oil platform .\ntyphoon hagupit has brought heavy rain and winds of up to 255km/h -lrb- 158mph -rrb- to the central philippines .\nvoters `` lost faith '' in established political figures as opinion-leaders during the eu referendum campaign , a report has said .\nmacedonia 's president gjorge ivanov has dismissed the country 's chief prosecutor .\nconservative peer lord strathclyde is to stand down as leader of the house of lords .\nthe search for a man missing in the brecon beacons has ended for the night .\na student who hid in a wardrobe during the al-shabab attack on a college in the kenyan capital nairobi has described her ordeal .\nwest indies batsman chris gayle has been criticised by the big bash league for telling an australian tv reporter to `` do n't blush '' during an interview .\nthe president of the european commission has defended plans for an emergency brake on in-work benefits for eu migrants coming to the uk .\ngreg eden scored four tries as castleford moved seven points clear at the top of super league with victory over leigh .\nengland under-20 international sammie mead says she wants to follow in the footsteps of some of the country 's top women 's footballers .\nshares of two hong kong-listed companies have fallen sharply in the wake of a sell-off in chinese shares .\nthe price of a drug used by aids patients in the us has been cut after a public outcry .\ntwo off-duty police officers have been praised by the psni for helping to stop a robbery in county londonderry .\nthe uk has five universities in the top 40 of the world 's top 200 higher education institutions . the top 20 still reflects the dominance of wealthy us university powerhouses , taking 15 of the top 20 places , with institutions such harvard , mit and stanford in the leading pack behind the california institute oftechnology .\ncrystal palace have made an approach for liverpool striker christian benteke , reports bbc radio solent .\nthe duke of cambridge has completed his final shift as a search and rescue pilot at raf valley on anglesey .\njapanese shares were flat on monday after the country 's economy grew faster than initially thought in the first quarter .\nboris johnson told bbc radio 4 's today programme on wednesday : `` the european union will only allow you to pack bananas in bunches of two or three . ''\nasian shares traded mostly lower on friday as investors continued to fret over global growth prospects .\nthe family of a woman who died following a crash in aberdeenshire have paid tribute to a `` kind , caring , adorable and loving mum '' .\nbritain 's jamie yafai retained his wba world bantamweight title with a unanimous points win over shinsuke muranaka .\ntributes have been paid to three west midlands men killed in the tunisia terror attack .\nwales head coach warren gatland is unlikely to succeed stuart lancaster as england head coach , says former england captain gareth thomas .\nfinding dory has held on to the top spot at the uk and ireland box office for a second week , with zoolander 2 coming in second .\naljaz bedene will meet world number one novak djokovic in the third round of the french open on thursday .\nrelatives of kurdish fighters killed in syria are struggling to come to terms with their loss in the border town of suruc .\nthe government 's plan for a seven-day nhs in england should be scrapped , a leading health expert has said .\nwe caught up with nikki grahame to find out how she stays safe online .\nqueen 's park continued their impressive start to the league one season with a comfortable win over inverness united .\nyorkshire are interested in hosting a day-night county championship match .\naustralia says it is a step closer to resuming live cattle exports to china .\na paralysed man who was evicted from a hospital after refusing to leave has moved into a council flat .\nwhen serena williams beat garbine muguruza in the final of the australian open on sunday , she became the first woman to win all four grand slam tournaments in the same year .\na teenager has died after falling from a statue in devon .\nballymena man jonathan calderwood has been named french groundman of the year for the second year running .\nprime minister david cameron 's wife samantha has spoken for the first time about the death of their son .\ntwo earthquakes in china 's gansu province have killed at least 70 people and injured more than 1,000 , officials say .\nhundreds of thousands of vauxhall zafira cars may be at risk of catching fire .\nwest brom midfielder gareth mcauley is available after missing the defeat at everton with a calf injury .\nthe first homes have been built on the site of a new army barracks in staffordshire .\na girl with autism has been `` stunned '' by a radio presenter 's response to a letter she had written about big ben 's chimes .\na saudi source has told the bbc that a multi-million dollar donation to malaysia 's prime minister najib razak was made to help his coalition win the 2013 election .\nthe royal navy 's third astute-class submarine has been officially launched at a shipyard in cumbria .\ndoctors treating the glasgow bin lorry driver should have spotted a `` major discrepancy '' in his accounts of a previous blackout , a fatal accident inquiry has been told .\nsaracens have signed hooker calum clark from premiership rivals newcastle falcons .\nthe uk championship gets under way in york on thursday .\nnottinghamshire 's 19-year-old batsman billy root hit a career-best 127 to help his side beat warwickshire in the one-day cup at edgbaston .\ngillingham slipped out of the league one play-off places as they were beaten at home by shrewsbury town .\nlindsey vonn won a record-equalling 36th world cup race with victory in sunday 's super-g in russia .\na ferry has run aground in shetland .\nwinds of up to 90mph were recorded in parts of north wales on friday as storm barbara hit the country .\nscottish labour mp melanie black has been named in a list of the most influential people in music by nme magazine .\nnicola sturgeon has been named as one of the world 's 50 most powerful women .\na 40-year-old man has been arrested in crawley on suspicion of syria-linked terrorism offences .\na `` paedophile '' who was caught by a vigilante group when he tried to meet an 11-year-old girl has been jailed for four years .\nat first it was a quiet moment in the life of a war .\nthe world 's largest ice sculpture festival is taking place in the chinese city of harbin .\nadebayo akinfenwa 's late strike gave wycombe victory over exeter in league two .\nwales ' sam warburton , dan lydiate , samson lee and hallam amos have signed new national dual contracts .\nluke williams scored twice as doncaster eased into the second round of the fa cup at the expense of league two northampton town .\ngraeme mcdowell shot a one-under-par 71 in the final round of the nordea masters in malmo , sweden .\none-in-seven patients in wales are waiting for surgery , a surgeons ' organisation has warned .\nprof junko arai has been working on artificial intelligence -lrb- ai -rrb- for more than 20 years .\na massive storm has hit the us city of chicago , in america .\nthe search for the missing malaysia airlines plane has been called off , australian officials say .\nbarcelona have signed brazil midfielder paulinho from chinese club guangzhou evergrande on a five-year deal for an undisclosed fee .\nrussia 's lower house of parliament has voted to decriminalise smacking children .\nthe russian parliament is considering two bills that would allow moscow to take over territory that is not part of ukraine .\nthe late bbc broadcaster gerry anderson has been inducted into the phonographic performance ireland -lrb- ppi -rrb- hall of fame .\nan artist has used a boat to capture some of scotland 's most spectacular landscapes .\nthe trnsmt music festival is to open later , with radiohead headlining on friday .\nheroin addicts in wrexham could be allowed to inject safely under plans being considered by the police .\nas theresa may prepares to leave no 10 next year , there is a good chance that the uk economy will be in trouble .\npaul scholes has returned to manchester united on a short-term deal until the end of the season .\nthe sdlp and ulster unionist mlas have called for an inquiry into the care of separated children in northern ireland .\na man who stalked and murdered his ex-girlfriend has been found guilty of her murder .\nrail passengers in cardiff are being warned to expect long delays ahead of the champions league final .\na woman has died in a house fire in aberdeen .\nan 11-year-old boy has become the youngest winner of the scripps national spelling bee in its history .\na new comedy about depression is to be shot in powys .\nvenezuela 's president nicols maduro has called the us `` imperialists '' after it imposed sanctions on five senior officials ahead of a controversial vote .\nenid blyton 's famous famous five are to return in a new series for adults .\na virtual reality tour of two of nottingham 's most famous caves has been launched .\nbritish businessman shrien dewani has arrived back in the uk after being cleared of arranging the murder of his wife on their south african honeymoon .\nit is a year since the uk voted to leave the european union .\nthe us federal reserve 's statement announcing its decision to keep interest rates on hold was a bit of a surprise .\nthe six nations rugby union championship will be broadcast on the bbc for a further four years from 2017 .\nat least 19 people have been killed in a fire at a plastics factory in bangladesh .\nthe chair of the inquiry into child sexual abuse in scotland has set a deadline for survivors to give evidence .\nthe ulster unionist leader has said he is `` confident '' in his party 's position ahead of the assembly election , despite comments he made on monday that he would prefer a nationalist government to a dup one .\na look at some of the key stories in germany this week , including the terror attack on a berlin christmas market and the stabbing of passengers on a german train .\na londonderry man has been told to `` go easy on the paella and cerveza '' by a judge after texting his solicitor to request a postponement of his sentencing .\na jersey care home resident was sexually abused by a former senator , an inquiry has heard .\nthe french inventor of the etch a sketch toy has died at the age of 86 .\nthe enterprise minister , jonathan bell , has said he will meet union representatives to discuss the closure of the michelin tyre factory in county antrim .\nthe wife of burundi 's main opposition leader agathon rwasa has been shot in the head in the capital bujumbura .\nbritish rock band duran duran are suing a fan club company in the us for unpaid fees .\nben affleck has won the top prize at the directors guild of america -lrb- dga -rrb- awards for his cold war thriller argo .\nmotherwell have appointed scotland assistant manager mark mcghee as their new manager on a two-and-a-half-year deal .\na second man has been charged with murder following the death of a man who was assaulted in sunderland .\nraith rovers have made their third summer signing by bringing in midfielder ryan johnston from scottish league one side dunfermline athletic .\nartists including one direction , little mix and iron maiden have signed an open letter to the government calling for a crackdown on ticket touts .\nstrong winds have caused disruption to flights and ferry services on the isle of man .\na man has died after his car was involved in a crash with a lorry on the m1 in county fermanagh .\nthree talktalk contract workers have been arrested in india on suspicion of data theft .\nthe results of iraq 's parliamentary elections in march 2010 have yet to be declared , and no party has won an outright majority .\npolice in cologne have stepped up security for this year 's carnival , a month after a string of sex attacks in the city . police will be present at a new `` security point '' for women near cologne cathedral - the area where most of the assaults took place during new year celebrations .\nnorwegian magnus carlsen has won the world chess championship , beating his russian rival garry karjakin .\nseveral latin american countries have condemned a decision by venezuela 's supreme court to strip the opposition-controlled national assembly of its powers .\nthe electoral watchdog has called for urgent action to tackle the `` significant proportion '' of duplicate applications to vote in the general election .\nthe european commission has blocked the takeover of o2 by hutchison whampoa .\nthe british overseas territory of gibraltar is considering whether to leave the european union .\nportugal 's bond and share markets have fallen as investors fear the centre-right government could be toppled in a parliamentary vote .\na student from a remote village in india 's uttar pradesh state has topped the secondary school exams .\nburkina faso coach paulo duarte says he is confident his squad will be fit for the africa cup of nations in gabon .\nit was the year james hunt beat niki lauda to the formula 1 world title , but the british grand prix was not shown on television .\nplans to build a new school on a former landfill site in sheffield have been approved .\na second police horse has been named after the western isles .\na new contraceptive device is being given to women in burkina faso , in west africa , for the first time .\nderby county striker chris martin says he is feeling `` a lot lighter '' after scoring his first goal for the club .\nherdwick sheep sculptures in the lake district have been a hit with visitors .\nfor two years , the residents of vila uniao , a poor neighbourhood in rio de janeiro , have been fighting to save their homes .\njayaram jayalalitha was one of india 's most colourful and controversial politicians .\ndairy crest has agreed to sell its uk dairies business as it looks to focus on its cheese and spreads business .\na man has been jailed for life for murdering his landlord and hiding his body in a microwave oven .\nlandslides and flooding have hit parts of scotland as heavy rain continues to fall .\nbritish troops have arrived in somalia as part of a un peacekeeping mission .\nthe revelation that the wife of a former mla has a horse-powered boiler under the renewable heat incentive -lrb- rhi -rrb- scheme has sparked a debate on social media .\ncolombia 's yarisley ibarguen won olympic gold in the women 's long jump .\nmps could face legal action if they repeat comments made in parliament in the press , the attorney general has said .\n-lrb- close -rrb- : the uk 's benchmark ftse 100 index has fallen below the 6,000 level for the first time in more than four years , as global stock markets continue to be hit by fears over china 's slowing economy .\nit 's not every day you get to meet the leader of the world 's most secretive country .\non this day 30 years ago , wales stunned the football world by beating germany 2-0 in a friendly in wrexham .\n`` it 's the most quotable film ever made . ''\nchris and gabby adcock have won the men 's doubles title at the english badminton championships .\nburkina faso has asked france to declassify documents relating to the assassination of its former president thomas sankara , his family lawyer says .\na us government panel has cleared china 's chemchina 's proposed takeover of swiss agribusiness giant syngenta .\nthe irish football association -lrb- ifa -rrb- has said a special portal will be set up for northern ireland fans who have missed out on euro 2016 tickets .\na man has been jailed for life for trying to behead a british dentist in a racially motivated attack at a poundland .\na 21-year-old man has been jailed for causing the death of a six-year-old girl by dangerous driving .\nthe daughter of fast and furious actor paul walker is suing porsche over his death in a car crash in los angeles .\nformer england batsman ian bell has stepped down as warwickshire captain .\na girl activist shot in the head by the taliban is to open a new library in birmingham .\ntwo men have been jailed for life for the murder of a chinese takeaway restaurant owner in county antrim .\npolice are investigating claims a student planned a mass shooting at a school in lancashire .\nmore than 1,000 people have taken part in a giant water slide in northern ireland .\npartick thistle secured their place in the premiership play-offs with victory over motherwell .\n-lrb- close -rrb- : london 's leading shares closed down by more than 1 % , with the ftse 100 index falling by 1.4 % to 6,936 .\na pair of bee-eater birds have successfully bred in a county durham quarry .\n"
  },
  {
    "path": "output/test.xsum.reference",
    "content": "on the first day in his new job , choe peng sum was given a fairly simple brief : `` just go make us a lot of money . ''\nthe women 's euro 2017 qualifier between northern ireland and the czech republic in lurgan on friday was postponed after a serious accident on the m1 .\ntheresa may is coming under pressure to say whether she knew about a reported misfire of the uk 's nuclear weapons system before a crucial commons vote .\nus tennis star venus williams has been involved in a car accident that led to the death of a 78-year-old man .\nghana has been told by an international tribunal not to begin any new offshore drilling for oil in disputed waters with the ivory coast .\na car park in east belfast has been closed to the public by young men building bonfires .\nthe bbc has denied claims award-winning series planet earth ii faked a nail-biting scene showing a baby iguana being chased by racer snakes .\ntwo hillsborough campaigners have been appointed cbe in the new year honours .\na gas extraction method which triggered two earth tremors near blackpool last year should not cause earthquakes or contaminate water but rules governing it will need tightening , experts say .\nyoung uk rapper nadia rose has taken fifth place on the bbc 's sound of 2017 list , which showcases emerging artists for the coming 12 months .\nsir tom jones is to return as one of the judges on talent show the voice uk when it moves to itv next year .\ntottenham are close to a deal to play home games at wembley in the 2017-18 season , says football association chairman greg dyke .\ngreat britain failed to qualify for the men 's under-21 world handball championship after losing all three qualifying games at kent 's medway park .\njeremy corbyn has promised labour will work with business leaders if they `` live up to their side of the deal '' .\nchina has deployed surface-to-air missiles on a disputed island in the south china sea , taiwan says .\nhead teachers have warned that intimidation is still continuing after the investigations into the so-called trojan horse scandal .\nthe five sisters in livingston are an imposing reminder of west lothian 's industrial past - huge mounds of discards from the old shale mines that once dominated the economy - and community life - here .\nitalian serie a side atalanta have re-signed midfielder marten de roon from middlesbrough for an undisclosed fee , 14 months after selling him to boro .\ngoal hero rabin omar made headlines when his club from the fourth tier of scottish football dumped a premiership side out of the scottish cup .\nexeter city player-coach danny butterfield says his playing career is coming to an end .\nthe lawn tennis association -lrb- lta -rrb- is leading a # 250m investment to improve grassroots facilities .\na us freelance photographer who has been held in syria for almost four years has been released , the state department said .\nthe collapsed retailer bhs is to re-launch as an online shop , selling some of the most popular items previously available on its website .\nplans to cut free parking on roads around the royal berkshire hospital have been opposed by a petition of more than 2,300 signatures .\na woman who set a `` honey trap '' for a professional gambler who was kicked to death for his winnings has been jailed for 16 years .\nelection night has turned out to be a night of contrasting fortunes for the conservative and unionist party .\nseveral people have been injured in a three-car collision on the a9 near dingwall in the highlands .\nthe public prosecution service has said it will not oppose an appeal by one of the so-called colombia three against a weapons conviction .\na security alert in the centre of larne , county antrim , has ended and been declared a hoax .\naustralia will no longer appoint knights and dames under its honours system , pm malcolm turnbull has said .\nholders sevilla came from behind to earn a draw against shakhtar donetsk in the first leg of their europa league semi-final in lviv .\nthe crisis in the steel industry could signal potential problems across other core welsh industries , plaid cymru has warned .\na pro-refugee campaigner racially abused counter demonstrators at a rally to welcome syrian refugees to scotland , a court has heard .\na new picture of the queen to appear on coins has been unveiled .\ngame rangers are searching for a lion which escaped from a wildlife park in south africa 's western cape province .\nthe little children trailing round behind us rush forward in their excitement , herding me into their makeshift schoolroom .\nthe duchess of cornwall has used some of the currency accepted by businesses in south london - known as brixton pounds - on a visit to a local market with the prince of wales .\nnearly 20 million people in china could be exposed to water contaminated with arsenic , a study suggests .\nengland stretched their perfect record under eddie jones to 10 matches as they demolished a weary south africa at a rain-soaked twickenham .\nreigning champions saracens will host leicester , with exeter at home to harlequins in an all-premiership semi-final line-up in the anglo-welsh cup .\na rare spat among singapore 's first family has left citizens agog and fuelled debate on how the city-state 's founding father lee kuan yew should be remembered .\nthe victim of a pensioner jailed for 13 years for horrific sex attacks has told of the abuse that ruined her life .\nstar wars and harry potter star warwick davis , who played an ewok in return of the jedi , has taken to twitter to help recover his stolen caravan .\nindian police have dropped sedition charges against 15 muslim men arrested for allegedly shouting `` anti-india and pro-pakistan '' slogans during the champions trophy cricket final .\nthe french government is to take steps to break up a far-right group allegedly linked to the death of a left-wing activist .\ngloucester reached their second european challenge cup final in three seasons as they held on to win an absorbing semi-final at la rochelle .\nthree youths have been arrested over the stabbing of four teenagers in clydebank .\nthe body of a 30-year-old man has been found at a flat in falkirk .\nthe remains of dozens of people who were buried more than 200 years ago are being slowly exposed on an island in kent .\nleague two club cheltenham town have signed hibernian striker brian graham on a free transfer .\nwhen introducing microsoft 's newest xbox console in 2016 , phil spencer did n't mince his words .\nadam voges and dawid malan both hit tons as middlesex dominated hampshire on day one at merchant taylors ' school .\na four-month consultation which could help decide the location of the uk 's first spaceport ends on monday with one site in gwynedd being considered .\npolice have appealed for motorists to check their dashcams as they continue their search for the mother of a newborn girl found in a bus shelter .\nworld war one -lrb- ww1 -rrb- soldiers spent less than half their time on the front line , according to researchers .\nit was ten years ago that ruth and her husband nigel packed up their life in london and bought the blue palm cafe in marbella .\nrussian 's intervention in syria is `` hugely significant '' says the uk 's former senior military adviser in the middle east lt gen sir simon mayall .\nmercedes ' lewis hamilton says he expects a close season-long battle with ferrari in which the advantage fluctuates between the two teams .\nthe family of a soldier found dead at deepcut barracks has urged a coroner to let her body be exhumed so a `` full inquiry '' can be held into her death .\na former special constable who groomed and engaged in sexual activity with a child has been jailed for five years .\npresident donald trump has questioned the neutrality of robert mueller , who is investigating russian interference in last year 's us election .\na council report has shown the total estimated costs of a flood protection scheme for hawick could top # 41m .\ntwo of britain 's biggest youtube stars tell newsbeat they 're worried about new guidance for adverts in their videos .\na scuba diver facing extradition to malta has spoken of his elation after charges against him over the deaths of his girlfriend and friend were dropped .\nan unmanned supply rocket bound for the international space station has exploded shortly after its launch from the us state of virginia .\nsri lanka is to investigate the role of the media in the death of a buddhist monk on saturday , the day after he set fire to himself .\nthe two candidates competing to be the next managing director of the international monetary fund -lrb- imf -rrb- could not be more different in their appearance .\na west yorkshire teenager is believed to have become britain 's youngest ever suicide bomber after reportedly blowing himself up in iraq .\nartists hired by the makers of the us show homeland to write graffiti on one of its sets in berlin say they wrote messages criticising the show 's alleged stereotypes of arabs and muslims .\na businessman who plied teenage girls with vodka before sexually abusing them has been sentenced to 13 years .\nthe funeral of coronation street creator and writer tony warren has taken place at manchester cathedral .\ncardiff city manager neil warnock has outlined his cut-price transfer plan , saying he does not think it would take big money to launch a promotion bid in 2017-18 .\nplans have been announced for the `` oldest carnival in europe '' to celebrate its 50th anniversary .\nwith just 20 days to go until americans go to the polls , millennials suggest they 'd rather die than vote for the two main parties , while canadians try to keep their neighbours ' spirits up .\nit 's a sobering thought for all us carriers of the y chromosome , but prostate cancer kills almost as many men every year as breast cancer does women .\ntalktalk customers are being targeted by an industrial-scale fraud network in india , according to whistleblowers who say they were among hundreds of staff hired to scam customers of the british telecoms giant .\nmodern family star sofia vergara has retained her title as the highest paid actress on us television , according to the latest forbes magazine rich list .\ntata steel has announced its preferred bidder for the # 100m sale of its speciality steels division based in south yorkshire .\ngloucester fly-half james hook will rejoin ospreys at the end of the season , six years after he left the welsh region .\nthe day 12-year-old faizan fayaz dar died , he woke up in the morning in his hilltop home in budgam in indian-administered kashmir , had a cup of salted tea , recited the koran and pottered around in the kitchen where his mother prepared breakfast for the family .\nderry ran out of steam in extra time in the qualifier against mayo as last year 's beaten all-ireland finalists survived a nervy castlebar test .\nlast ditch talks to reach a deal on the junior doctors contract in england are being extended into next week .\nan air canada flight with 140 people on board came within 30m -lrb- 98ft -rrb- of other aircraft at san francisco 's airport as it prepared to land , a report says .\nsouthend united will give striker nile ranger a chance to relaunch his career when he is released from prison .\nfive-time world champion ronnie o'sullivan says he no longer has any interest in being snooker 's `` top man '' but has not retired .\npublic transport in london is the world 's most expensive , a report says .\na father of one from ellesmere port , james hennessy travelled by coach with friends , including fellow victim james philip delaney .\nwhitehaven have appointed former st helens prop carl forster as player-coach at the age of 24 , the youngest in the professional game .\nwhat is believed to be the first email scam using gaelic has been targeted at residents of the western isles .\nleague one leaders scunthorpe united will travel to oxford united in the last 16 of the efl trophy .\na northern ireland supporter has died at the stade de lyon as he watched the team beat ukraine at the euro 2016 tournament in france .\nnew voices are coming to radio 1 as the station continues its search for the next generation of on-air talent .\na ban on `` legal highs '' in the republic of ireland has been extraordinarily effective in wiping out the industry , police have said .\ninjury-hit wolves have suffered a new blow with the loss of michal zyro for potentially more than a year with multiple knee ligament damage .\na hampshire pier and ferry service facing an uncertain future is a `` national treasure '' which should be saved , television historian dan snow has said .\nengland play the first of three one-day internationals against bangladesh on friday , following a build-up dominated by security concerns .\nwe were given a glimpse of the apple watch last year when tim cook made it his `` one more thing '' at an iphone launch event .\nat the may day rally , the politician accused the government of `` helping the richest 1 % , to reassure credit ratings agencies and international finance '' .\npost offices and shops are expected to be very busy on tuesday , as people going back to work after the holidays try to return unwanted presents .\nthe financial reporting council -lrb- frc -rrb- , which regulates how firms govern themselves , is too `` timid '' and needs more powers , says former city minister lord myners .\nnovelist robert harris has called on the bbc to give books more coverage `` at a time when they 're really fighting like crazy for a bit of space '' .\na bill giving limited access to abortion has been referred to an advisory body by ireland 's president .\nless than 24 hours after the horrific van attack , the people of barcelona set out to reclaim their beloved city .\nthe gap between male and female life expectancy is closing and men could catch up by 2030 , according to an adviser for the office for national statistics .\na 17-year-old boy arrested following a crash which killed two teenagers in caerphilly county has been released without charge .\nwales slipped to an agonising seventh straight test defeat and their eighth in a row against australia as the wallabies stole victory in a dramatic finale in cardiff .\nseven people have been killed after a volcano in western indonesia erupted , blasting clouds of volcanic ash 3km -lrb- 2 miles -rrb- into the sky .\nnewsnight presenter jeremy paxman has shaved off his infamous beard for the new year .\nengland 's tyrrell hatton and matthew fitzpatrick are both three shots off the lead going into the final round of the arnold palmer invitational .\nmali international midfielder yves bissouma has signed a new contract to stay with french club lille until 2021 .\nmore teachers are facing abuse on social media , warns a teachers ' union .\nmore than 70 people have been killed as incessant rains continue to batter the southern indian city of chennai , media reports say .\nhow much do you remember about the news in wales over the past 12 months ?\nfive syria-linked jihadist groups - including the the islamic state of iraq and the levant -lrb- isis -rrb- - have been banned in the uk by mps .\nwales full-back liam williams will miss scarlets ' pro12 trip to zebre with an ankle injury as the region refuse to admit defeat over his prospective move to saracens .\nbath forward matt garvey is to have surgery after sustaining a neck injury .\nrory mcilroy hopes to play in the wgc-hsbc champions event in shanghai despite suffering with food poisoning .\nex-footballers gary neville and ryan giggs 's # 200m plans to redevelop part of central manchester have been revised .\nas iraqi special forces enter the city of mosul for the first time since the start of the campaign to retake it from so-called islamic state , a bbc team embedded with the troops is tweeting from the front line as the battle unfolds .\nprincipality stadium chief executive martyn phillips would relish the chance to host an anthony joshua bout at the 74,500 capacity cardiff venue .\neleven people have been arrested in shetland following illegal immigrant raids by the home office .\namazon , the global online retailer , is changing the way it records sales in a move that could see it paying more tax .\nitaly will replace chelsea-bound national coach antonio conte with giampiero ventura after euro 2016 .\nthe pilot of a turkish f-16 fighter jet has been found dead after the aircraft crashed near turkey 's border with syria , reports say .\nfrom the terrace of his winery near the baroque town of caltagirone in south-eastern sicily , cesare nicodemo surveys his fields of ripening vines - a glass of his finest spumante in hand .\na grandfather from gwynedd died after being hit by a boat 's propeller off the maltese coast , an inquest has heard .\nflappy bird is flapping its wings no more .\nit is usual for spacex to do a `` hot fire '' test a few days before a launch .\nscientists in the united states are trying to grow human organs inside pigs .\nhe 's been compared to gareth bale , fast-tracked into the national squad , and was linked with a transfer to some of the top clubs in europe before becoming the most expensive ever scottish player - all after only 13 starts for his club .\nst mirren player-coach jim goodwin has been charged by the scottish fa with violent conduct and offered a two-match suspension .\nit 's not often russell brand plays second fiddle as a guest on a tv show .\nmillions of muslims all around the world will be celebrating eid al-fitr this week to mark the end of ramadan .\na table tennis coach has admitted engaging in sexual activity with a teenage girl he met at a tournament .\nmore than half a million families are discovering which primary schools their children will attend , amid a growing places squeeze in parts of england .\nat least four migrants have died after a speedboat labelled `` libyan coast guard '' attacked a dinghy , according to a migrant rescue organisation .\nfour thieves who forced their way into a fife flat and held two men at gunpoint while they stole money and valuables have admitted the raid .\na dilapidated grade-ii listed theatre , which has stood empty for over 20 years , is to be sold at auction .\nten-man chesterfield edged out barnsley to boost their own survival chances and dent their hosts ' play-off ambitions .\nnorth korea has conducted a new intercontinental ballistic missile test , south korea and the pentagon say .\ninterest rates should remain low to avoid long-term economic stagnation , the chief economist at the bank of england has said .\na state department official `` pressured '' the fbi to change the classification of a hillary clinton email in a `` quid pro quo '' , according to fbi documents .\nfacebook accounts belonging to convicted child sex offenders have been uncovered by a bbc investigation .\npfa scotland 's chief executive fraser wishart argues the effectiveness of scottish football 's gambling rules should be examined .\nimax , the canadian maker of widescreen cinema theatres , is planning an initial public offering -lrb- ipo -rrb- of its china unit in hong kong .\ndemocratic republic of congo president joseph kabila has appointed bruno tshibala as the new prime minister of the power-sharing government .\nwest yorkshire 's chief constable has had his suspension lifted .\nchampions leicester city 's struggles in the premier league continued as they were held to a draw by southampton .\nfacebook has announced it will make highly detailed maps of places where it believes people are living available to the public later this year .\na police dog has been put down after biting a member of the public .\nglorious sunshine and temperatures of up to 35 degrees in parts of the uk , but what is causing it ?\ngermany 's economy stepped up its pace of growth in 2016 , thanks to higher household and government spending .\na clown has turned himself in to the police after alarm was raised among frightened parents in county antrim .\nunvaccinated children would be banned from childcare centres and preschools under an australian government plan .\na dedicated police operation set up to examine the activities of serial killer peter tobin is to be wound down .\nten years ago i was running from san francisco 's moscone centre to a nearby hotel to edit a piece for the ten o'clock news when my phone rang .\nresidents and commuters took to social media after the chimney at didcot power station apparently vanished , leading to fears it had accidently collapsed .\ntwo renegade officers who attacked a venezuelan army base last weekend have been captured , the country 's defence minister has said .\nrory best will captain the british and irish lions for his side 's next game against the hurricanes in wellington on tuesday .\nfacebook has chosen to keep the billionaire who helped fund a sex tape legal case against gawker media on its board of directors .\na far-right german politician has been rescued by refugees after he crashed his car in a tree , german media report .\nenglish councils should be allowed to put up taxes to fund the nhs , norman lamb has told the lib dem conference .\nan american basketball player has been banned from south korea 's domestic league for life after prosecutors said she forged her birth documents .\nthe psni have found a `` viable '' pipe bomb in dungiven , county londonderry .\nan inquest into an ira massacre of 10 protestant workers has been delayed because there is no coroner to hear it .\njim broadbent has returned to the stage for the first time in a decade to play scrooge in a new west end version of charles dickens ' a christmas carol .\na 90-year-old man has begun a life sentence for shooting dead three dutch civilians when he was a member of a nazi ss hit squad during world war ii .\nspring is here and that means flowers , sunshine and lots of little lambs !\nauthor sarah hilary has won one of the uk 's top crime-writing awards for her debut novel , someone else 's skin .\na woman who nearly drowned during a school swimming lesson when she was 10 years old has won a compensation battle at the high court .\nus republican candidate donald trump has defended his call for a wall on the mexican border , during his visit to meet president enrique pena nieto .\na stabbing victim walked a third of a mile -lrb- 480m -rrb- to the scene of a fire to find help , police have said .\nhartlepool dropped into the league two relegation places as they slumped to a flat home defeat by barnet .\na top jockey has been banned from driving for 22 months after claiming he was sleep walking while drink driving .\ntwo men have died in separate crashes in the republic of ireland .\nhashim amla resigned as south africa captain immediately after his side drew the second test against england .\nbrendan rodgers says celtic new boy olivier ntcham proved he has the ability to play at the very top level in saturday 's friendly defeat to lyon .\nbbc sport 's football expert mark lawrenson has pitted his wits against a different guest in every round of this season 's fa cup .\nwhen pope benedict xvi suddenly announced exactly one year ago that he was resigning for health reasons , he sent shock waves around the world .\ndonald trump has faced criticism after declaring that african americans are in the worst shape `` ever , ever , ever '' , in a town named after a slaveholder .\na woman , whose death has been linked to the discovery of a body in a bin in the same street , has been named as tabussum winning .\nbirmingham city 's isabelle linden scored her first goal in english football to deny reading their first women 's super league one win .\na 12,000-seater music venue on the temple meads enterprise zone in bristol is possible by 2016 , the council says .\ngylfi sigurdsson has praised his swansea city team-mates for their come-from-behind win against aston villa .\nthe mayor of london has appointed a security expert to assess how well the capital would cope with a major terror attack .\nit has been a month since wales voted to leave the european union .\nproposals to make workers clock off when they go for a cigarette break have been backed by a norfolk council .\nplans to revamp the tennis court at the duke and duchess of cambridge 's country mansion have been submitted .\npartick thistle captain abdul osman says the players are praying manager alan archibald stays at the club for another season .\nmotogp championship leader marc marquez moved 52 points clear in the title race with victory at the aragon grand prix .\na man has been jailed for four years for attacking a woman in her 20s in the street in canterbury .\nnearly 600 people believed to be bangladeshis and rohingya muslims from myanmar have been rescued from boats drifting in indonesian waters .\nandy murray and novak djokovic will meet in sunday 's french open final - with both men seeking their first title in paris .\nan international olympic committee -lrb- ioc -rrb- board member has apologised for comparing calls to ban russia from the 2018 winter olympics to the holocaust .\nlabour has launched an probe into complaints about members connected to a row over the move to change a primary school to welsh-medium education .\nbelgian officials say a man who wounded two policewomen with a machete was a 33-year-old algerian with a criminal record but no known terror links .\nwith slightly hunched shoulders and an unassuming manner , 59-year-old tsai ing-wen does n't look like a threat to beijing .\nwe have just witnessed a phenomenal lions series .\nscarlets had their 100 % pro12 record ended by leinster at the rds in dublin .\na blind shropshire man has been told he should clear up his dog 's mess .\na community hospital in somerset is to be replaced and rebuilt with a # 16m grant from the government .\nviewsnight is bbc newsnight 's new place for ideas and opinion .\nhundreds of eggs belonging to a protected species of bird have been stolen from an important nesting site , with fears they could be sold to the restaurant industry .\na school in sydney has banned clapping in favour of `` silent cheering '' , `` excited faces '' and `` punching the air '' .\na body of muslim clerics in mauritania has called for the death sentence to be carried out against a blogger convicted of apostasy in 2014 .\na police officer has been disciplined over a mistake which led to armed police being sent to the wrong address during a search of a family home in county down .\na giant cake has been made in the shape of a land rover by an award-winning amateur baker from the west midlands .\nthe british olympic association has ratified lutalo muhammad 's nomination for london 2012 ahead of aaron cook .\na powys high school has offered to take over a town library to secure its future .\na record-breaking number of migrating birds have been recorded on the hebridean island of tiree this year .\nall pictures copyrighted .\npope francis will go to africa for the first time this week , visiting a refugee camp , a slum and a mosque .\nthe number of cancer cases in wales has risen by almost 10 % over a 10-year period .\nsierra leone has officially been declared free of ebola by the world health organization -lrb- who -rrb- .\nus private equity giant kkr has launched a renewed $ 3.4 bn australian dollar -lrb- â # 1.88 bn ; $ 3.17 bn -rrb- takeover bid for australian winemaker treasury wines estates .\nthousands of people are without power in the republic of ireland as the effects of storm barney take hold .\nthe jury in the trial of well known irish traditional musician , francis mcpeake , has been discharged over a legal issue .\nbanksy has denied accusations he is `` trolling '' members of the public - after thousands have struggled to buy tickets for his new show .\npolice walked off with a number of elaborate cakes after a clash between `` travellers and staff '' at a party .\nteenage jockey david mullins said he has `` never had a feeling like it '' after winning the grand national on rule the world at aintree .\ntorquay united have signed barrow defender myles anderson on a permanent deal , and irish forward ruairi keating on non-contract terms .\nstoke city 's mark waddington and swansea city 's oliver davies have had their loan spells with kilmarnock cut short and returned to their clubs .\nwakefield trinity wildcats chairman michael carter says the club could be forced to leave their belle vue home after serving notice to the administrators of the ground 's lease .\nan nhs mental health services provider has been upgraded from `` inadequate '' to `` good '' following a recent inspection .\na south korean soldier who shot dead five of his colleagues and injured seven others has been sentenced to death by a military court .\none of the biggest questions to come out of the historic decision that the uk should leave the european union is about the future of scotland .\nan electrician whose # 200 worth of tools were mistakenly sold for # 1 in a charity shop has had them returned .\nnewly-released legal documents have revealed a building in chicago was raided after hundreds of nude photos of female stars were leaked last year .\nleeds united 's chairman sacked an employee because she and the head coach he planned to lose came as `` a pair '' , an industrial tribunal heard .\nas the hoopla of the presidential campaign comes to new york , featuring the political all-stars seeking to become the world 's most powerful leader , another race is also under way in the city - a contest of the largely obscure .\npakistan will play in the world twenty20 after the government approved their participation in india .\nbournemouth striker callum wilson said it was `` great to feel like a football player again '' as he returned to action following a long-term injury .\na baby dolphin has died after it was surrounded by tourists looking to take photographs on a beach in southern spain .\nthe original contract signed by the beatles and manager brian epstein has sold at sotheby 's for # 365,000 .\nrbs group performed comparatively poorly in the latest european stress tests , which assess how the banks might perform in adverse economic conditions .\nnational league club chester have re-signed port vale midfielder ryan lloyd on loan until 1 january .\nthe security services could remotely take over children 's toys and use them to spy on suspects , mps have been told .\npolice are investigating the death of a fruit seller in china , state media say , amid reports he was beaten by `` chengguan '' urban security personnel .\nthe families of patients who suffered `` institutional abuse '' at a mental health ward in denbighshire will have a chance to meet the health minister .\nleague one side fleetwood town have signed defender joe davis from leicester city for an undisclosed fee .\nleonardo ulloa 's injury-time penalty rescued a point for leicester in a controversial encounter with west ham as the foxes went eight points clear at the top of the premier league .\nat least 800,000 pharmacies in india are on a one-day strike , demanding an end to online drug sales which they say is affecting their business .\ncarrick rangers have signed former crusaders midfield eamon mcallister .\na 14-year-old boy has been arrested on suspicion of attempted murder after a teacher was stabbed at a bradford school .\nlee westwood takes his place in the field at the open at royal troon having enjoyed a box seat at both of the first two majors in 2016 .\nedinburgh teenager georgia adderley won the scottish women 's squash title for the first time at the senior national championships on sunday .\nmichael van gerwen has won the uk open title for the first time in his career , beating peter wright 11-5 in the final in minehead .\nplans to turn an area of ancient woodland mentioned in the domesday book into a quarry have angered conservationists in staffordshire .\nkilmarnock manager lee clark has warned the club needs to change personnel and mentality to avoid further brushes with relegation from the top flight .\na decision on the future of demolition-threatened perth city hall will not be made until february 2016 .\nfootball hooliganism is nothing new in germany , but when violence broke out before a bundesliga match between two of the top clubs , this was something different .\nover the last couple of weeks , the world has woken up to the horrific trade in human beings being conducted in the seas of south east asia .\nmexico 's air force has been flying tons of grain into oaxaca state in the south of the country to deal with dwindling food supplies caused by roadblocks set up by protesting teachers .\na forensics expert has swung a cricket bat at a toilet door erected in the courtroom at oscar pistorius ' murder trial in south africa to demonstrate key pieces of evidence .\ncash machine users doubled their money when an atm started giving out free cash in north lanarkshire .\nit is the home of the entertainment universe , but for every top filmmaker in los angeles there are many who fail to be successful .\nmixu paatelainen praised his dundee united players ' resolve as they beat st johnstone 1-0 , despite being reduced to 10 men for the last 30 minutes .\nthe party of nigeria 's incoming president has won a landslide in elections for powerful state governors , ending the former ruling party 's dominance .\nholyrood 's consent is not needed before brexit negotiations formally get under way , the supreme court has heard .\nmaintenance work on a wrexham aqueduct means the towpath will be closed for six hours a day .\nlandlords in england will be expected to evict tenants who lose the right to live in the uk under new measures to clamp down on illegal immigration .\nconservationists say they found 160 plastic bottles for every mile of uk coastline cleaned last year .\ncurrent spying campaigns run by the cia could be disrupted , say experts , after more data on the agency 's hacking techniques was released by wikileaks .\nedinburgh 's cultural festivals are officially kicking off , with thousands of events taking place .\nsunday times restaurant critic aa gill has died , aged 62 , three weeks after revealing he had cancer .\nformer england and tottenham striker jimmy greaves is in intensive care after suffering a severe stroke .\nthe 2017 tour de france will begin in the german city of dusseldorf , it has been announced .\nthe founder of kids company has defended the charity 's `` exceptional '' value , after a report revealed it received at least # 46m of public money .\njohn swinney should have published his draft budget in mid-september , for msps to deliberate on it over winter , with a big rubber stamp in plenty time for the start of the financial year .\nukip ex-deputy chairwoman suzanne evans says she has given up hope of becoming the party 's next leader - but insists she will not `` give up '' on ukip .\nwrexham have appointed former midfielder dean keates as their new manager on an 18-month contract .\nnew forensic leads are being investigated in connection with the death of a schoolgirl 21 years ago .\ni tipped chelsea to win the title in august and there was not one moment during the whole season that i did not think they would end up as champions .\nthe story of an iranian goalkeeper suspended for , reportedly , wearing trousers with a motif similar to the cartoon character spongebob squarepants raised eyebrows around the world - but the case highlights some of the tensions at play in the country .\noldham athletic 's league one fixture against peterborough united has been postponed because of a frozen pitch .\nalmost a fifth of homeless applications now come from the private rented sector , according to shelter scotland .\na man was tied up and left in a bedroom of a house in newtownards , county down , following an aggravated burglary .\nthe most concerted diplomatic push so far to end syria 's punishing war has concentrated minds on all sides of a bitter divide .\nrory mcilroy moved to within a shot of joint leaders victor dubuisson and jaco van zyl after the third round of the turkish airlines open .\na man has been rescued from a tree after getting stuck while trying to recapture his parrot .\ndelegates from 24 countries and the european union have agreed that the ross sea in antarctica will become the world 's largest marine protected area -lrb- mpa -rrb- .\nthe government 's watchdog has issued a warning to students about the dangers of taking `` smart drugs '' .\nmae llywodraeth y du , am y tro cyntaf , wedi amlinellu ' r hyn fydd yn digwydd i bwerau ' r undeb ewropeaidd yn dilyn brexit , mewn meysydd datganoledig fel amaethyddiaeth .\nmanchester city midfielder kevin de bruyne says he will be out for about 10 weeks after injuring his right knee during wednesday 's league cup semi-final victory over everton .\nding junhui thrashed mark williams 13-3 inside two sessions to become the first man into this year 's world championship semi-finals .\nrescuers in southern italy are trying to find eight people missing after an apartment block collapsed in naples .\nleading formula 1 drivers have questioned the safety of the new baku street circuit that will host sunday 's european grand prix .\na conservative politician has won libel damages after it was reported he helped fund so-called islamic state -lrb- is -rrb- .\na monument will be built in memory of a student who died after falling into the river avon .\nas the counts got under way in the holyrood election the scottish papers were predicting an snp victory and there was little change as updated editions were published through the night .\ngritting lorries and snowploughs have been out and about on lincolnshire 's roads - in preparation for the start of the snow risk season .\nalex salmond has held informal talks at the european free trade association -lrb- efta -rrb- about the uk 's future relationship with europe .\nthe restoration of natural bends to a river in cumbria after 200 years has spawned benefits for breeding fish .\na finance company has announced plans to create more than 700 jobs in birmingham before the end of next year .\nsport funding in scotland is facing a 20 % reduction over a three-year period , a move described as `` heartbreaking '' by the national agency .\na cardiff council worker who stole # 35,000 from a children 's fund has been jailed for two and a half years .\na swan that was shot with an arrow in fife has made a full recovery and has been released .\ndirk coetzee , one of the most notorious figures of south africa 's apartheid era , has died at the age of 57 .\na woman has died after her car crashed outside a bus depot trapping 150 buses inside .\nmembers of the jury in the liam fee murder trial wept as they were shown a police video of the toddler 's body hours after he was found dead .\nthe mormon tabernacle choir and the radio city rockettes will perform at donald trump 's inauguration , it has been announced .\nin the grand scheme of things , they are pretty ugly shoes : brown , fake leather , with three buckle straps and a sole and heel the pollution in bangkok and three months of constant wear would turn from a tan colour to a steadfast black .\nan unannounced inspection of an under-pressure a&e unit at a north wales hospital led to concerns for patient safety , a watchdog says .\nhp has backtracked on a software update that blocked some ink cartridges made by third parties .\ntwo men have appeared in court and been charged with murder following the death of a man who suffered serious head injuries at a banqueting venue .\na footbridge is to be constructed to reunite a north yorkshire town divided after its main road bridge collapsed during flooding .\nscientists have begun the most detailed analysis ever carried out on a stegosaurus skeleton .\ndup economy minister simon hamilton has given details of a plan to cut costs associated with the botched renewable heat incentive -lrb- rhi -rrb- scheme .\ndemolition work on a spectator stand has begun at the home of northampton saints rugby club .\nbritain have two grand slam singles semi-finalists for the first time since 1977 after victories for johanna konta and andy murray at the australian open .\nan organic farmer has persuaded tesco to take down a photograph of him from its website .\na world war one recruitment poster written in welsh has sold at a conwy county auction for # 440 .\nfrance was informed of a planned terror attack on its team at the olympic games in rio de janeiro , the head of french military intelligence has said .\nhull fc have signed 20-year-old centre joe arundel from castleford tigers on a four-year contract from 2013 .\nthe authorities in augsburg , southern germany , plan to evacuate 54,000 people from the city centre on christmas day because of a world war two bomb .\nbadminton is one of five sports to lose all uk sport funding for the 2020 olympics in tokyo - after britain claimed a bronze in the sport in rio .\nleague two side luton moved into the second round of the league cup with victory over championship newcomers bristol city .\nthey may be carrying the uk 's hopes of success at eurovision but joe and jake will have strong support from the home town of one of the singers .\nmanchester city have been fined # 35,000 after admitting a breach of the football association 's anti-doping rules , the governing body has said .\nthree-time world champion giles scott won silver in the finn class on the final day of the trofeo princess sofia in palma de majorca .\nan investigation into what caused a spacecraft to crash , has said that a safety device activating at the wrong time , could have been the reason .\nit is a sight that would surely strike fear into even the most battle-hardened opponent .\nandy murray qualified for the semi-finals and stayed on track to retain the world number one ranking with victory over stan wawrinka at the atp world tour finals .\nthe so-called missing link of scotland 's busiest motorway has opened to traffic .\nfurther tests will be carried out on a man who died while suffering from measles after post-mortem examination results were inconclusive .\ncatalans dragons have parted company with head coach laurent frayssinous .\nhearts have signed former motherwell goalkeeper lee hollis on a short-term deal following injuries to neil alexander and scott gallagher .\nshamed cyclist lance armstrong believes the time is coming when he should be forgiven for doping and lying - and told the bbc he would probably do it again .\nthe head of one of the uk 's largest credit unions is to become chief executive of airdrie savings bank .\na million older people in england struggling with everyday tasks , such as washing and dressing , are being left to fend for themselves , campaigners say .\nyou might be surprised by this afternoon 's news that british bombing killed british nationals in syria in the last few weeks .\nformer england half-back rangi chase says he is `` back in love '' with rugby league after rejoining castleford following a fight with depression .\na kent council claims it is being `` forced into a corner '' as proposed cuts to government grants could leave a shortfall of more than # 500,000 .\nmore than 1,000 young spiders from a hybrid species have been released into the suffolk broads .\na man who briefly bought and owned the google.com web domain has been rewarded by the search giant .\nomar bogle scored twice before missing an injury-time penalty against 10-man barnet , as marcus bignot picked up his first point as grimsby town manager .\nus police have fired smoke bombs and tear gas to disperse a crowd defying a curfew in st louis , missouri , where a shooting has inflamed racial tensions .\nburton albion have signed lasse vigen christensen and cauley woodrow on loan from championship rivals fulham until the end of the season .\ntwo chinese conglomerates were the last standing in a bidding war to buy an extraordinarily large slice of australia and its pastoral history in november .\na tour boat skipper has recorded a new deepest point in loch ness on his vessel 's equipment .\na new index suggests that african countries are among the world 's worst places to be old in .\na new study covering 17 eu countries says that far more honeybees are dying in the uk and other parts of northern europe than in mediterranean countries .\na four-year-old boy has died following a fire at a house in neath port talbot .\na 21-year-old has been sentenced to 20 years in prison in the us after passing details on american military personnel to so-called islamic state -lrb- is -rrb- .\none of wales ' busiest lifeboat callout hotspots has had a monitoring camera installed to warn the public of dangerous sea conditions .\nthe sun newspaper on monday carries the headline `` kill by mouth : two die in nhs each day of thirst or starvation '' .\nbuilding up a savings buffer is one financial goal that should be considered as a new year approaches , an expert says .\nskiing on scotland 's snow slopes looks set to continue into the summer month of june as new figures reveal the best season in 14 years .\nplans have been announced to close a fire station in berkshire .\na new comedy festival for aberdeen is getting under way .\nthe death of a woman whose body was found in her home in county down is being treated as suspicious .\nshrewsbury town have signed west bromwich albion teenager tyler roberts on loan for the rest of the season .\ndavid cameron is holding talks with german chancellor angela merkel on britain 's eu reform aims , the situation in syria and the migrant crisis .\na murder investigation is under way after a 71-year-old woman died in a fire at a house in kilmarnock .\na former deputy head teacher has been jailed for more than 17 years for raping and touching young girls - including one aged nine .\nwales made the most of a flying start to beat the uk armed forces 43-5 in a special armistice day match at the arms park .\nwinger dean cox says he will have to remain patient as he searches for a new club after leaving league two side leyton orient by mutual consent .\ntalktalk has given more details of the cyber-attack on its website , saying nearly 157,000 of its customers ' personal details were accessed .\nbudding hospitality workers from the caribbean will have the chance to train at buckingham palace and windsor castle under a scholarship programme announced by prince harry .\nsome 800,000 people have turned out in barcelona and other towns in catalonia on a day of rallies by nationalists wishing to break with spain .\nleicester city caretaker boss craig shakespeare is `` out of order '' for wanting to replace claudio ranieri , says ex-arsenal defender martin keown .\none person has died and nine others remain missing after an apartment block collapsed on the spanish island of tenerife .\nit might sound a curiously mealy-mouthed thing to say about a team that have won their past 17 matches and sit atop the six nations table with consecutive grand slams a genuine possibility , but england 's rugby team might have a problem .\nthe serious fraud office has been urged to reconsider its decision not to investigate allegations of fifa corruption during the 2018 and 2022 world cup bidding process .\ntheresa may has promised to put workers on the boards of major firms and curb excess corporate pay , as she starts her campaign to be tory leader and pm .\na welsh liberal democrat election candidate has accused ukip of wanting `` border security guards '' at hospitals .\nthe us space agency -lrb- nasa -rrb- has launched a mission to retrieve a rock sample from a 500m-wide asteroid called bennu .\ninverness caledonian thistle guaranteed premiership safety by strolling to victory against partick thistle .\nlawyers representing families in the baby ashes scandal have said they are to take legal action against shropshire council .\na missing california mother of two has been found three weeks after she was abducted while out jogging .\nbarratt homes has confirmed it is pressing ahead with plans to build 400 new homes in the east of scotland .\nseven hong kong police officers have been jailed for two years each for beating a handcuffed protester .\na welsh rock star has taken his bone marrow donor drive to washington dc .\nthe hunt for a cure for type 1 diabetes has recently taken a `` tremendous step forward '' , scientists have said .\na cyclist who was killed when he was hit by a car police were pursuing has been described by his family `` as a respected and dedicated academic '' .\na former conservative welsh secretary has said he has `` huge concern '' about plans to give the assembly income tax varying powers without a referendum .\na new species of shrimp has been named after pink floyd thanks to a pact between prog rock-loving scientists .\nstudents and other people renting their homes have been victims of `` widespread abuse '' of fees charged by letting agents , a labour am has claimed .\nas voters cast their ballots in crimea , the mood in kiev was downbeat : anxiety , mixed with defiance .\nprisons are struggling to cope with the increasing number of elderly , sick and disabled people behind bars , a prison reform trust report says .\npolice have said 560 people have been charged or reported in connection with flag protests in northern ireland .\na man has appeared in court over an acid attack that left two people with `` life-changing '' injuries .\nvern cotter is `` disappointed '' he is leaving his job as scotland head coach but `` respects '' scottish rugby 's decision to appoint gregor townsend .\nproblems loading vehicles on to a new # 50m ferry meant the poole to guernsey service on saturday morning was delayed by 40 minutes .\ntwo turkish soldiers have been killed and 31 wounded in a suicide attack by kurdish pkk militants , the turkish military says .\nthe church of england is adopting a new climate change policy and will cut its investments in fossil fuel companies .\ncontinued expectations of an interest rate rise are prompting more homeowners to lock into a new mortgage deal , figures suggest .\nhibernian moved to within two points of rangers at the top of the championship with a comfortable victory over st mirren .\ntwo men have been spotted on the roof of swansea prison .\nnew argentina coach edgardo bauza wants to persuade lionel messi to reverse his retirement from international football .\ngerman chancellor angela merkel 's allies have urged her to change course on refugees after her governing cdu party was beaten in a regional election by an anti-immigrant party .\na man accused of forced labour charges told a cardiff crown court he treated the alleged victim , `` like a member of the family '' .\nnational league side lincoln held on to shock league one strugglers oldham and reach the third round of the fa cup for the first time since 2010 .\neddie redmayne is to play lili elbe , one of the first people to undergo sex reassignment surgery .\nrenters face the greatest risk from identity thieves owing to their domestic set-up and lifestyle .\nwarwickshire trio tom milnes , tom lewis and pete mckay are to leave the club at the end of the season when their contracts expire .\nforeign doctors in wales will not be told to `` go home '' , welsh labour leader carwyn jones has said , accusing the conservatives of `` gutter '' politics .\ngrimsby halted a run of three straight defeats with a victory over accrington thanks to goals from tom bolarinwa and ashley chambers .\nthe former football star george weah has won a landslide victory in liberia 's senate elections , in polls disrupted by the ebola outbreak .\nirish paralympic star jason smyth will battle on to achieve his goal of competing at an olympics despite missing out on the recent london games .\nhow do you tell a story to your grandchildren when you 've found yourself alone , oceans apart from your family ?\npolice in the western indian state of maharashtra have found 19 aborted female foetuses near a hospital .\na gaelic bard is to be remembered in needlework .\nit was a disastrous afternoon on sunday for north-west teams as all three lost in the second round of irish senior cup so the quarter-finals will be contested by four from the ncu and four from leinster .\npossibly the most shocking disclosure in the national audit office 's two reviews of how private sector companies deliver public services is how little financial information the nao can actually demand to scrutinise .\ntriple j have confirmed taylor swift was disqualified from this year 's hottest 100 .\nethnic minorities in hong kong are `` marginalised '' by the education system , says a university study .\nrafael nadal has become the first tennis player to win a record 10 french open titles .\nyeovil town manager paul sturrock says he will struggle to fill the substitute bench this weekend as an injury crisis threatens to derail their season .\ngoldman sachs is scrapping face-to-face interviews on university campuses in a bid to attract a wider range of talent .\nscientists have designed a new prototype battery that mimics the structure of the human intestines .\ndebutante dominika cibulkova will meet world number one angelique kerber in sunday 's final at the wta finals in singapore .\npolice have targeted 17 people in raids in several european countries connected to a suspected jihadist network .\nsamsung electronics is buying automotive electronics-maker harman international industries for $ 8bn -lrb- # 6.4 bn -rrb- , as it makes a big push into connected car technologies .\na cast of stars have paid tribute to actress and political activist jane fonda as she accepted the american film institute 's life achievement award .\nswindon town have re-signed midfielder ben gladwin on a 28-day emergency loan deal from queens park rangers .\na senior social worker who viewed adult pornography more than 1,000 times using a work computer has been struck off .\na prehistoric monument has been given a stargazing award in recognition of its views of the milky way .\nscots actress karen gillan is to appear in her biggest movie role yet in marvel 's sci-fi action adventure guardians of the galaxy .\nnasa 's curiosity rover has measured the red planet 's atmospheric composition .\nlord derby has won a key high court stage of his fight to build 400 homes on his land .\na bird that was on the road to extinction in its native habitat in the brecklands of norfolk and suffolk is thriving after 30 years of care .\na senior police officer has said there will be `` significant arrests '' of those involved in rioting in belfast .\ndilapidated beach huts in lincolnshire are to get a # 50,000 makeover in an attempt to attract more holidaymakers .\nan 83-year-old cyclist who was flung 20m -lrb- 65ft -rrb- from his bike and later died `` probably '' hit a pothole , an inquest jury found .\nlenovo and acer have both unveiled smartphones with much larger than normal batteries .\nwestminster party leaders should tone down campaigning that has `` polarised '' the country and `` legitimised hate '' , the equalities watchdog has said .\ncampaigners are holding a protest walk against plans to build pylons across the lake district national park .\neast belfast mp gavin robinson has warned that people are using fear tactics in the european union referendum campaign .\nat the south-western tip of california , straddling the dirty trickle that is the tijuana river , stands a wall - or rather a series of walls , fences and ditches .\ncriminals and terrorists are using the so-called dark net to buy weapons , a new study has suggested .\na man has been jailed for eight years for the brutal rape of a woman in 1985 , thanks to advances in dna and forensic investigations , police say .\nwales manager chris coleman says he is not surprised that counterpart roy hodgson has opted to take teenager marcus rashford to the euros .\nthe pirate bay website has been relaunched .\nmore than 5,000 residents of the us state of tennessee have been evacuated after a freight train carrying toxic chemicals derailed and caught fire .\non thursday 23 june the uk will vote in its first referendum in more than 40 years on whether or not it should remain as a member of the european union -lrb- eu -rrb- .\nandrew hore says the ospreys will consider finding a successor for director of coaching scott johnson , who leaves for scotland in june .\nalfred hitchcock 's vertigo has replaced orson welles 's citizen kane at the top of a poll that sets out to name one film `` the greatest of all time '' .\nwelsh bbc tv presenter alex jones has given birth to a baby boy .\na new mayor in south africa says he will give away a fleet of new luxury cars ordered by his predecessors .\nbranislav ivanovic says wales will want to avenge their previous two defeats against serbia when they meet in saturday 's world cup qualifier .\nwomen 's super league one side yeovil town ladies have re-signed goalkeeper beth howard after she graduated from university in the united states .\nan elderly man has been assaulted in his glasgow home during an attempted robbery .\nsingapore 's joseph schooling won his nation 's first ever olympic gold medal with victory in the 100m butterfly as michael phelps was one of three men to finish joint second .\npro12 champions connacht have signed irish qualified tight-head prop dominic robertson-mccoy from new zealand .\nseveral paris-roubaix riders were seconds from being hit by a train as they raced over a rail crossing while a tgv approached .\na 46-year-old woman who suffered fatal injuries after being struck by a car understood to have been driven by her husband has been named by police .\ntwo men from high wycombe jailed for a fatal stabbing have had their sentences increased by the court of appeal .\nthis weekend saw new yorker marin alsop become the first woman to lead the last night of the proms in its 118-year history .\na review of the freedom of information act will be `` open-minded '' , former home secretary jack straw has said .\nbritish conductor christopher hogwood has died aged 73 .\nbournemouth striker joshua king insists the cherries will not lose focus on the rest of the season after their priceless win over swansea city .\nwhen carolina cappa , a film researcher working in bolivia , was invited to go though the archives of an old cinema in la paz that was being demolished , she came upon a battered , unmarked tin .\nthousands are posting online tributes to muhammad ali who has died at the age of 74 .\nauthorities in nigeria 's lagos state have shut 70 churches and 20 mosques in an attempt to reduce high noise levels .\nin an audacious technological mission , india is building a near foolproof database of personal biometric identities for nearly a billion people , something that has never been attempted anywhere in the world . .\nall photographs â © charles fox .\nformer first minister alex salmond has been criticised for unveiling his new portrait in edinburgh on the day mps discussed military action in syria .\na woman who used poison to terminate her pregnancy has been jailed for two and a half years .\na draft report on the future of the welsh national parks has been criticised by conservationists .\njurgen klopp 's final match in charge of borussia dortmund ended in defeat by wolfsburg in the dfb pokal final .\nleading universities will offer fully accredited undergraduate courses online within five years , says the co-founder of a us online university network .\nhe may be only 11 , but he delivered a performance that brought the audience at the 2016 grammy awards to their feet in a standing ovation .\nnew works from directors terrence malick , wim wenders and tom ford will compete for the top prize at the venice international film festival .\nwork has begun at chernobyl in ukraine to move a giant shield over the site of the world 's worst nuclear accident .\nas so-called islamic state -lrb- is -rrb- militants are driven out of mosul , paul moss reports on the continuing plight of the yazidis , the iraqi religious group who the united nations says has suffered more destruction than any other at is hands .\nfive tonnes of waste from laundered fuel has been dumped at newtownhamilton in south armagh .\nthe family of a teenager left with severe head injuries after a roof fall has been ordered to pay # 150,000 after losing a compensation claim .\nan ex-cia station chief held in panama after being convicted in italy over the kidnap of a terror suspect is ' `` en route '' to the us , officials say .\niraq has buried the victims of a suicide attack in a football match in the city of iskandariya that killed at least 32 people .\nan activist from the united arab emirates has won the martin ennals award for human rights defenders .\na man 's body has been found following a fire at a house .\nit 's not just labour 's policies that have been exposed by the leaks of the manifesto - it 's the level of distrust at the very top of the labour party .\nlegoland has apologised to people who have spent hours stuck in its car park .\na system for detaining asylum seekers while their claims are speedily assessed has been temporarily suspended after it was ruled unlawful last month .\naction camera-maker gopro is cutting 200 jobs and shutting down some of its services .\ncharles rennie mackintosh was a 28-year-old junior draughtsman at a glasgow architecture firm when he drew up the designs for the building that many consider his masterpiece .\nharlequins have agreed a deal to sign montpellier fly-half demetri catrakilis ahead of the 2017-18 season .\nthe bbc is very experienced at broadcasting news to as many people as possible .\nplans have been submitted to highland council for the new inverness justice centre .\nthe number of people interested in buying a house in april fell to its lowest level for nearly eight years , according to surveyors across the uk .\nmyanmar 's national league for democracy -lrb- nld -rrb- has named its candidates to be president , confirming that its leader aung san suu kyi is not a contender .\nalexandra palace has been given # 18.8 m from the heritage lottery fund to restore a forgotten part of the building .\neli wallach , whose films included the magnificent seven and the good , the bad and the ugly , has died aged 98 .\ni 'm at the royal welsh show where david cameron has made his third visit to the showground in a year .\noldham athletic have offered free entry to all fans for their rearranged league one fixture against peterborough united on tuesday , 24 january .\nmore money was spent making films in the uk last year than in any other year since measurements began , figures from the british film institute have shown .\na concorde which made its final flight back to filton airfield near bristol is to be the star attraction at a new aerospace museum in south gloucestershire .\na rugby player killed on his way home from a match had been racing his car with another vehicle shortly before it crashed , an inquest has heard .\nthe uk economy grew 0.5 % between july and september , official figures have confirmed , unchanged from the initial estimate .\nmanchester united boss louis van gaal says keeper david de gea is not `` capable '' of playing in saturday 's season opener against tottenham .\na victim of the rochdale grooming gang says the convictions were still `` not fazing '' asian child sex abusers .\nfast bowlers ben cotton and tom taylor have signed new contracts with derbyshire until the end of 2018 .\nwomen 's football 's all-time international leading goalscorer , united states striker abby wambach , will retire at the end of a world cup victory tour in december .\nleague one club walsall have signed crewe alexandra defender jon guthrie on a two-year contract .\nit 's a rule of animation that every successful cartoon character should be recognisable by silhouette alone .\npeople will be banned from using e-cigarettes in enclosed places such as restaurants , pubs and at work in wales , under a new public health law .\nwalsall have signed cyprus striker andreas makris from anorthosis famagusta for a club-record fee .\na $ 150,000 -lrb- â # 97,000 -rrb- custom-made calvin klein dress , worn by actress lupita nyong ' o at this year 's oscars , has been stolen in hollywood .\nplaid cymru has pledged to create a `` well , well-educated , wealthier wales '' as the party launches its assembly election campaign .\nwill eastern europe squander its historic opportunity to provide the next united nations secretary-general , when ban ki-moon 's tenure expires at the end of this year ?\na cyclist has been killed after he was hit by a car as the driver tried to speed away from police .\na travel firm specialising in holidays to turkey and northern cyprus has ceased trading over `` political instability '' in its destinations .\nhundreds of pakistani christians have attended funerals for the victims of two taliban suicide bomb attacks in the city of lahore .\na man who raped and killed a 15-year-old schoolgirl in 1976 has been jailed for 15 years .\nangry soldiers have blocked off access to bouaké , the second largest city in the ivory coast , as a revolt over a pay dispute continues .\nnational league side bromley have signed former liverpool youngster michael ngoo .\ncompanies that fail to prevent tax evasion could face penalties as part of plans announced by danny alexander .\nan overdue school library book has finally been returned - 120 years late .\nbus services in wales could be dramatically cut as a result of the uk government 's spending review next month , it has been warned .\nan public inquiry is under way into plans for up to 500 new homes in an area of open land in kent .\nthe bbc has learned that the number of illegal immigrants caught trying to get from northern ireland 's ports to other parts of the uk has risen significantly .\nleague two side stevenage have signed their third striker of the summer by bringing in free agent jake hyde .\nthe revelation that melania and barron trump would not be joining donald in the white house in january has raised eyebrows in some quarters , and garnered praise in others .\na beatles sleeve which features the faces of music executives in place of the fab four has been named the world 's rarest album cover .\na 91-year-old cyclist killed on a dual carriageway was doing a time trial to set a new national record for his age .\nwarren gatland hopes the power of `` frustration '' can inspire wales to a third successive post-world cup grand slam .\napprenticeships in england need to be overhauled to stop many young people being awarded practical qualifications that have little worth , a report says .\nmore new mothers are opting to try breastfeeding their babies , latest uk figures reveal .\nofgem has asked for more information on why a subsea cable is needed to carry electricity generated on the western isles to the mainland .\nydych chi 'n ` nabod eich adar ?\nnational league strugglers york city have signed newport striker jon parkin on loan until january .\nsayeeda warsi has been a permanent feature at the top of the conservative party since david cameron became leader almost a decade ago .\nworld number two angelique kerber lost 7-5 6-1 to zheng saisai in the second round of the qatar open , her first singles tournament since winning the australian open .\nbooker-nominated author william boyd is taking on the mission to write a new james bond novel .\nrussia 's media watchdog , roskomnadzor , has blocked access to two of the world 's largest pornography websites .\nthe invasion of iraq `` substantially '' increased the terrorist threat to the uk , the former head of mi5 has said .\ntal afar , about 55km -lrb- 35 miles -rrb- to the west of mosul , was always going to be next on the `` to do '' list for iraqi forces .\nrepublic of ireland assistant manager roy keane says everton players must `` toughen up '' in an ongoing row with goodison boss ronald koeman .\nthree people were arrested amid violent scenes as groups demonstrating against immigration clashed with anti-racism protesters in dover .\nfirefighters have been tackling a blaze at a factory on the isle of scalpay in the western isles .\nfour men have been charged after police recovered an armour-piercing mortar during searches in lurgan .\nworld cup final referee nigel owens says he intends to keep officiating in international rugby for another four years .\npeter dutton , australia 's immigration minister , says he will not `` be defamed '' by media coverage of the country 's offshore detention centres .\na man has been charged with murder after a former non-league footballer was stabbed to death .\nlotus has been given a further two-week breathing space in insolvency proceedings brought by revenue and customs -lrb- hmrc -rrb- .\nchristian refugees fleeing syria are being bypassed by the uk government , the head of the roman catholic church in england and wales has said .\nan mp facing deselection after being criticised over his role in a loan to a football club will not stand for re-election .\na plan to increase the cost of speed awareness courses has been criticised as a `` self-funding merry-go-round '' .\nhon hai precision industry , a major assembler of apple products , has posted record quarterly profits helped by growing demand for iphones and ipads .\ntwice banned for doping , distrusted by fellow athletes , trained in the past by a notorious doping coach and now by another man once banned for drugs .\ngreece 's cash-strapped banks are to remain shut for a week , until after a key 5 july referendum on the country 's bailout conditions .\na building housing a pop-up restaurant in east london has been partially destroyed by fire , but `` fortunately no hipsters were injured '' , london fire brigade -lrb- lfb -rrb- has said .\neuropean aerospace giant airbus and its partner , oneweb , have begun the production of a satellite mega-constellation .\nnewport midfielder mark byrne was a transfer target for gillingham before a u-turn from manager justin edinburgh .\nthe body responsible for amateur boxing in wales is `` not fit for purpose '' and `` does not qualify for public funding '' , an independent audit report says .\na businessman who supplied ambulances to an nhs patient transfer service says he was left with `` thousands of pounds of debt '' because he was not paid .\na man has been arrested after two men died when a car and lorry crashed in stoke-on-trent .\nchelsea ladies won a nine-goal thriller at home to liverpool ladies to maintain their 100 % winning start to the women 's super league one season .\ntiger woods missed the cut at the farmers insurance open , as england 's justin rose maintained a one-shot lead .\nthe indian state of tamil nadu is to hire the country 's first transgender police officer after a court cleared hurdles that faced one applicant .\nwales manager chris coleman would find it very difficult to turn down a premier league job , says his former international team-mate iwan roberts .\nthe london stock exchange group -lrb- lse -rrb- has said its forthcoming merger with deutsche boerse could lead to as many as 1,250 job losses .\nthe english football association has given its backing to michel platini 's bid to become the next boss of fifa .\nsir ben ainslie 's oracle team usa sealed one of sport 's greatest comebacks when they overhauled an 8-1 deficit to beat team new zealand in the america 's cup decider in san francisco .\na student at a top us university whose six-month jail sentence for sexually assaulting an unconscious woman in 2015 was widely criticised for being too lenient has been released from prison .\nmarvin johnson 's stoppage-time winner against inverness caledonian thistle all but secured a top-six scottish premiership finish for motherwell .\nus president donald trump has said he believes barack obama is behind a wave of protests against republican lawmakers , and national security leaks .\nthe number of women becoming nuns has reached a 25-year high , the catholic church in england and wales says .\nst johnstone have made 18-year-old northern irish midfielder kyle mcclean their first signing of the summer .\nan inquest into the deaths of four servicemen in afghanistan has been told the armoured vehicle they were in rolled into a canal after colliding with an afghan national police car .\nmortality rates for two of scotland 's biggest killers , stroke and heart disease , have fallen in the past decade .\nthe refurbishment of the first of 13 aircraft operated by the scottish airline loganair has been completed .\nan 80-metre wind turbine has collapsed on a mountainside near fintona in county tyrone .\npolice failed to act on concerns raised about an illegal dog before it killed a baby girl , a report has found .\nformer treasury minister charles parkinson is returning to the states of guernsey after winning the st peter port north by-election .\ndiesel car owners could get some help from the government if cities adopt new charges to tackle pollution , the prime minister has suggested .\na fisherman in brazil 's amazon region has found a large piece of debris from a european space launch .\nchina has vowed to reduce the amount of steel it makes , business secretary sajid javid said .\na group of 46 indian nurses freed by isis militants after being trapped in iraq has arrived home in the southern city of kochi to be greeted by rapturous friends and relatives .\nnew england patriots quarterback tom brady says he is sorry the nfl `` had to endure '' the `` deflate-gate '' scandal , after his four-game ban was overturned .\nian poulter extended his lead to six shots after round two of the delayed turkish airlines open in belek .\na swansea man has been left scratching his head after receiving a postcard from spain 29 years after it was sent .\nthe high court has banned publication of photographs allegedly stolen from pippa middleton 's icloud account .\nrobert snodgrass inspired hull city to victory against southampton as mike phelan earned his first three points since being appointed permanent head coach .\nthe uk has seen the hottest july day on record , with temperatures hitting 36.7 c -lrb- 98f -rrb- .\nformer netherlands boss guus hiddink has been appointed interim chelsea manager until the end of the season following the sacking of jose mourinho .\ncrystal palace winger yannick bolasie has signed a new three-and-a-half-year contract at selhurst park .\na construction worker on the site of a new # 49m arts centre in gwynedd has described the project as `` chaotic '' .\nthe words strike and nhs are enough to send a shudder down the spine of any patient .\njordi cruyff has expressed thanks for the tributes to his father , dutch footballing great johan cruyff .\nindia 's railway ministry is receiving praise on social media after it acted on a tweet from a train and provided milk to a hungry baby .\npolice investigating the murder of father of five brian mcilhagga last week have arrested three men .\nthe scottish and welsh governments have threatened to block the key brexit bill which will convert all existing eu laws into uk law .\nnine executives at israeli travel agencies have been arrested on suspicion of fixing the price of high school students ' trips to former nazi death camps , including auschwitz .\na hospital radiographer , who downloaded more than a million indecent images and videos of children , has been jailed for two years and four months .\nelite firms are sidelining the uk 's bright working-class applicants in favour of privileged , `` polished '' candidates , a report says .\njoe root is the `` obvious candidate '' to be named as england test captain - but the role must not affect his batting , says pace bowler james anderson .\na lorry driver who ploughed into a queue of traffic without braking , killing a retired couple , has been jailed for four years and eight months .\nstanding on the washington mall at the turn of the new millennium , it was impossible not to be struck by america 's power and global pre-eminence .\nthree brothers from belfast have been jailed for drugs offences linked to a significant seizure of cocaine .\na woman in the us state of utah who admitted killing six of her own newborn babies has been sentenced to up to life in prison .\nfrom a giant billboard in the salvadorean capital , a man with a defiant attitude shows off a slogan on his shirt : `` no one can intimidate el salvador , '' it reads .\na man whose body parts were found at a bristol recycling plant has been identified as a swindon man by police .\nproposals for a new bridge to take the a9 across the river spey near kingussie in the highlands have been published .\na ban on top council-run schools sponsoring failing schools amounts to `` red tape '' and should be dropped , say council bosses .\nbrighton will be without dale stephens for their play-off campaign after the midfielder 's three-match ban was upheld by the football association .\nchristmas tree lights can slow your wi-fi warns watchdog ofcom as it releases an app that can check home broadband .\ntwo london tube lines remained part suspended on sunday due to safety concerns with grenfell tower .\nwhen liverpool take on sevilla in wednesday 's europa league final gordon wallace will be watching on television in the shankly hotel in the city .\nsouth africa 's prosecutors have sought permission to appeal against athlete oscar pistorius ' `` shockingly light '' sentence , court papers show .\nsyrian government forces have fully captured a district that was a key rebel stronghold in the central city of homs , state media report .\na person has been taken to hospital by air ambulance following a serious crash on a major road in monmouthshire .\njoseph parker and andy ruiz jr will fight for the wbo heavyweight title vacated by tyson fury on 10 december .\nleyton orient have signed former leeds and ac milan midfielder zan benedicic on a deal until january .\ntwo police officers who plotted to steal and sell drugs for profit have been convicted of drugs and misconduct offences .\nplans for a # 6.75 m specialist cancer care unit at royal glamorgan hospital in rhondda cynon taff have been unveiled .\nethiopia was once a byword for poverty and famine .\nparents of children with a muscle wasting disease have called on ministers to create a specialist centre to help sufferers in wales .\ntributes have been paid to a woman credited with raising awareness about the dangers of polio following the death of her footballer husband .\nsomerset have signed all-rounder roelof van der merwe on a two-year contract to start next season .\na 1960s-built cathedral that was `` at serious risk of closure '' has raised more than 90 % of its # 7m target for urgent repairs and development .\nindonesia 's president says ties with australia have been `` damaged '' by reports that canberra spied on his phone calls and those of his ministers .\nsunderland striker jermain defoe has re-signed for former club bournemouth on a free transfer .\n-lrb- noon -rrb- : the pound hit a four-week high against the euro as the single currency weakened on tuesday .\nthe fbi has offered to unlock another iphone for police after revealing it could access the handset used by san bernardino killer syed farook .\none of rio de janeiro 's most traditional samba schools , mangueira , has won this year 's carnival .\npalm oil giant olam has been accused of using suppliers that may use unsustainable practices in parts of southeast asia .\nthe us has appointed its first ambassador to cuba in 55 years as relations between the countries thaw .\nmike dean will referee sunday 's televised fa cup third-round tie between tottenham and aston villa - despite recent criticism of his performances .\nsunderland have the necessary mental toughness within the squad to cope with a gruelling championship campaign , according to new signing james vaughan .\ngreat britain 's double gold medallist nicola adams believes new trainer virgil hunter will play a key part in success as a professional .\npolice in edinburgh have appealed for information after a man was found seriously injured in leith .\ntheresa may 's intention at this summit was to reassure other countries that life after the eu might be tricky to work out , but in the end , all will be just fine .\nnine people have choked to death in japan after eating a traditional rice cake , known as `` mochi '' .\nsales of british salmon helped the uk to export a record value of food and drink in the first half of the year , according to industry figures .\nthe numbers of fatal police shootings and deaths after police pursuits in england and wales both rose sharply in the last year , the latest figures show .\na russian court has jailed three women for performing a twerking dance in front of a world war two memorial .\na man will go on trial charged with the manslaughter of a rugby player in swansea .\nso how constraining on labour is its self-imposed `` budget responsibility lock '' ?\ndetectives investigating the killing of a mother-of-nine and her nephew in a shooting at their north london flat say they have not found any evidence to suggest they were the intended victims .\nliz kendall says she is the only labour leadership candidate who would fully break with ed miliband 's leadership .\nministers have said the growth of high-stakes roulette machines on the high street is `` concerning '' and they do not rule out action to restrict them .\nfr gary donegan was confronted by a small crowd of angry protesters following saturday 's orange order march in north belfast .\nformer crusaders defender and player-manager aaron callaghan is the new manager of carrick rangers .\nsony music , one of the big three global record companies , says it will start pressing its own vinyl releases again for the first time since 1989 .\na north carolina senate candidate backed by the republican party establishment has won the party 's nomination to face democratic senator kay hagan in the november election .\nthe bank of england has outlined its annual `` stress test '' - the exam britain 's major banks must go through to ensure they have enough available capital to withstand a global downturn .\nwest indies have reinstated phil simmons as head coach of their senior squads after he apologised for criticising team selection .\nrussell knox has every right to beam from ear to ear , as he did for the majority of his 15-minute media gathering , after flying in from his base in the united states to a sodden castle stuart .\nthe springfield road in west belfast has reopened after a security alert .\nthe daughter of david haines , who was killed by islamist militants , has said the islamic state -lrb- is -rrb- group should be `` eradicated '' .\nvitamin b3 could be the new weapon in the fight against superbugs such as mrsa , researchers have suggested .\na plane bound for chicago has been forced to make an emergency landing for the second time in two days .\nthe husband of a british-iranian charity worker jailed in iran is `` terrified '' about the outcome of his wife 's appeal , he has said .\nnationwide building society has appointed joe garner , currently boss of bt 's openreach unit , as its new chief executive .\nthree men , including a police officer , have been arrested following a hoax terror plot to kidnap an officer .\ngreat britain 's chris latham won a bronze medal in the men 's scratch race at the track world championships .\nconor mcgregor says he is back on the card for ufc 200 , but event organisers claim no new talks have taken place .\na tudor manor house has reopened following a # 2.2 m makeover .\nadvancing technology and manufacturing techniques are among the ingredients of our changing consumer tastes .\nthe uk defence secretary was adamant .\nwestern sahara has welcomed morocco 's readmission to the african union , 32 years after members refused to withdraw support for the territory 's independence .\nformer premier league footballer clarke carlisle has been banned from driving for three years after he admitted drinking and driving .\nmanager roy hodgson insists england 's immediate future will not be shaped by their opening euro 2016 qualifier against switzerland in basel on monday .\nthe last two surviving leaders of cambodia 's khmer rouge regime are to begin their second trial in phnom penh .\na man has been charged over a bomb attack on a county tyrone police station 18 years ago .\nwrexham have put striker andy morrell in temporary charge following the departure of dean saunders .\nan elderly woman has died in a house fire in enniskillen .\nperformers from 42 countries strode down a long red carpet near ukraine 's parliament this week , as a curtain-raiser to this year 's eurovision song contest .\nwales could suffer a budget shortfall if devolved taxes do not make up for grant cuts , academics have warned .\nscientists are warning of another `` devastating '' loss of coral due to a spike in sea temperatures .\nearly agreement has been reached on north sea fishing quotas for next year , with an increase in key stocks for scottish fishermen .\nthe balkan route may officially be closed , but the asylum information centre in belgrade is very much open - and doing a roaring trade .\npakistan has unblocked the video sharing site , youtube , more than three years after it was banned for posting a video deemed insulting to islam .\nthe last two journalists working in fleet street are leaving what was once seen as the centre of uk journalism .\nbritain 's chris froome remains third in the vuelta a espana after a late crash caused chaos on wednesday 's stage five .\na 16-year-old girl who attacked a police officer inside dundee sheriff court after being ejected from the building has been sentenced to be detained for 12 months .\nthe reverend libby lane has been announced as the first female bishop for the church of england , just a month after a historic change to church law .\na retailer has announced it is transferring services and relocating an office from rhondda cynon taff .\na man arrested on suspicion of causing death by dangerous driving after a cyclist died near leicester railway station has been released on bail .\none of the longest-serving head teachers in the country is retiring after 35 years at the same school .\na new report on genetically modified -lrb- gm -rrb- crops , commissioned by the prime minister , calls for more uk field trials and fewer eu restrictions .\npeter kennaugh recorded a landmark overall victory at settimana coppi e bartali in italy on sunday .\nchampionship side bristol city came from behind to beat premier league watford in the efl cup second round .\nmore than 5,000 new jobs were created in wales as foreign investments in the uk hit a high , government figures show .\npro-independence parties in spain 's richest region , catalonia , are pushing ahead with a historic plan for an independent state within 18 months , and the national government in madrid is fighting back .\nthe head of spain 's public railways says the crew of the train which derailed at high speed last month killing 79 people had not reported any problems before the crash .\nalmost nobody now believes the cypriot bailout deal negotiated in the early hours of saturday morning was smart .\nincreasingly large tv deals are helping english premier league clubs to enter `` a new era of sustained financial performance '' , according to deloitte .\nbbc creative director alan yentob has said he would not rule out jeremy clarkson making a return to the bbc in the future .\nsecurity researchers have been given the green light to hunt for flaws in car software by us authorities .\ngoogle has been ordered to hand over all contact details linked to accounts behind a series of damaging fake online reviews of a nursery .\nhampshire coach dale benkenstein says all-rounder gareth berg could be miss up to half of the upcoming season should he require knee surgery .\nprince william has answered criticism of his commitment to royal duties , saying he is willing to take on more responsibility when the time comes .\nandy watson has been brought into the scotland coaching set-up to replace stuart mccall .\nvoting has begun in local elections across merseyside .\nlate goals from gavin whyte and jordan forsythe saw champions crusaders beat linfield 2-0 at seaview and extend their lead over their nearest rivals at the top of the table to eight points .\na man with learning difficulties has been left `` absolutely traumatised '' after being punched and robbed at a bus stop .\nair strikes on so-called islamic state 's syrian stronghold of raqqa have cut the city 's water supply , with 20 civilians reported dead .\nfour decommissioned royal navy frigates are destined for the scrapyard , the bbc has learned .\nfrench foreign minister laurent fabius says some eu sanctions on iran could be lifted as early as next month , as part of a nuclear deal with world powers .\nwhile some young people celebrate their a-level results , others will have very different emotions after not receiving the results they were expecting .\nall 3,200 passengers have now disembarked from a crippled cruise ship that reached the us coast five days after an engine fire knocked out power .\nbelow is the full letter that deputy labour leader tom watson sent to the director public prosecutions alison saunders in april 2014 urging her to look again at the lord brittan allegations .\nmore than 350 jobs in county durham will be axed when walkers crisp factory closes , the owner has confirmed .\na pre-roman town of 150 roundhouses has been found by university students during an archaeological dig in dorset .\nmichael garcia , the american lawyer hired by fifa to investigate the world cup bidding process before criticising the organisation 's summary of his own report and eventually resigning , is a former prosecutor with a history of launching corruption probes .\njack grealish scored twice on his full debut as england under-21s continued their perfect start to the toulon tournament by thrashing guinea .\na judge has ruled a 50-year-old `` socialite '' known only as c , who tried to kill herself , can refuse kidney dialysis treatment and so end her life because she feels she has lost her `` sparkle '' .\none of the queen 's chaplains has resigned after a row about reading from the koran in a glasgow church .\nwales will be better for the experience of their new zealand tour despite suffering a 3-0 series whitewash , coach warren gatland says .\narsenal have signed teenage midfielder krystian bielik from legia warsaw for a reported # 2.4 m .\nthe champions cup is such unforgiving terrain that already glasgow warriors are looking ahead and trying to figure out what they might have to do to make amends for their wounding defeat to northampton saints at scotstoun on saturday .\nhome depot has reported better than expected sales growth , helped by a strong us housing market .\nsaturday 's match against andreas seppi was a tough one but i got through it , and the crowd on centre court really made a difference .\na fire which destroyed a bradford mill has `` underlined the urgency '' of working to preserve west yorkshire 's mills , historic england has said .\ndavid cameron has achieved his long-held goal .\ntwo centuries ago , when victorian engineers were designing the latest in transport technology , japanese knotweed sounded like a very clever idea .\nphil taylor set up a tantalising pdc world darts championship quarter-final against raymond van barneveld with a hard-fought win over kim huybrechts .\nleigh cruised to a comfortable victory against salford to lift themselves off the bottom of super league in their last game before the qualifiers .\na man who murdered a lancashire man in a `` jealous , frenzied knife attack '' at his ex-partner 's house has been jailed for life .\na transgender woman found dead in a men 's prison wrote to her partner just days before her death saying `` i do n't think i can last very long in here '' .\nscottish labour leader kezia dugdale is backing owen smith in the labour party leadership contest .\nvolunteers are helping to restore the historic swansea canal as part of a project to bring the full length of the waterway back into use for boats .\nthe photo sharing service instagram announced it will start placing ads in us users photo streams in a posting on its website .\naustralia 's parliament speaker peter slipper has resigned amid a continuing sex scandal , dealing a blow to prime minister julia gillard 's government .\na brazilian man has been caught at fiumicino airport in rome trying to smuggle liquid cocaine in his trainers .\nwhat do you call the day after deadline day ?\nmexico 's raymundo beltran - and the bulk of a passionate glasgow crowd - was left stunned as he departed the ring with only a draw after dominating ricky burns in the scot 's fourth defence of his wbo world lightweight title .\ninternational footballer alan pulido , who has been rescued after being abducted in mexico , fought one of his kidnappers and used his phone to call police , officials have revealed .\nemperor penguins have displayed some unexpected breeding behaviour in the antarctic that could mean they are much more resilient to environmental change than previously recognised .\nplans for a new # 3m lifeboat station in scarborough have been approved by the town 's council .\nscottish pig farmers have warned they are facing an uncertain future after the price of pig meat hit an eight - year low .\nmichael dunlop set the quickest time in qualifying at the 2016 festival of motorcycling for a third night in a row in the isle of man .\na 17-year-old boy has died of head injuries following a fight after a party in south-east london .\nhull midfielder robert snodgrass will be out for up to six months with a dislocated kneecap , manager steve bruce has confirmed .\nsecond-half goals from oscar threlkeld and substitute craig tanner were enough for plymouth to beat crawley and move back to the top of league two .\na further education college in dorset has received more than # 2.88 m in government funding to renovate buildings on campus .\nsheffield wednesday have signed burnley midfielder david jones for an undisclosed fee .\npart of the m1 was brought to a standstill as traffic officers removed a canoe from the outside lane .\na woman who was found dead in woodland in wirral is missing mother anita stevenson , merseyside police confirmed .\nedinburgh moved up to seventh place in the pro12 with a hard-fought win at newport gwent dragons .\nus banking giant jp morgan is set for a record $ 13bn -lrb- # 8bn -rrb- fine to settle investigations into its mortgage-backed securities , us media reports have said .\nthe london underground 's northern line extension to battersea has been given the go-ahead .\nas many as one in four pregnancies are thought to end in a miscarriage , and yet most women never talk about it .\nengland will know it was a first-innings batting calamity that set the wheels in motion for india 's 246-run win in the second test in visakhapatnam .\nmicrosoft has unveiled xbox smartglass : a service to allow tablet computers and smartphones to communicate with its video games consoles .\ndurham were eliminated from the one-day cup after their match against lancashire was abandoned and other results went against them .\na hard-fought victory sent ross county climbing to fourth place in the premiership and increased the sense of alarm at rugby park .\nthe former world number five snooker player stephen lee has been fined for selling his personal cue to a facebook fan for # 1,600 but failing to send it .\nwales ' rural affairs minister has ordered the forestry commission to take a more `` commercial approach '' to managing publicly owned woodlands .\nbrussels was abuzz on monday .\nthe government 's immigration cap on skilled workers has had no effect on bringing down net migration and is not `` fit for purpose '' , mps say .\nformer rangers midfielder derek ferguson reckons being a supporter of the ibrox club would not stop scott allan from succeeding at celtic .\nsupporters of the two threatened scottish steel plants have been marching through motherwell in north lanarkshire .\na former ira leader has been charged in connection with the abduction and murder of jean mcconville .\nwarner bros has announced a follow-up to upcoming harry potter spin-off film fantastic beasts and where to find them .\na man has been arrested on suspicion of murder after a woman was found dead at a house in worcestershire .\nbenni mccarthy says his former porto team-mate bruno alves is the perfect fit for pedro caixinha 's rangers .\na millionaire businessman whispered to a 999 operator that burglars were in his mansion , moments before he was shot through a locked door , a court heard .\nciara mageean is a notable absentee from the ireland squad for the european team championship meeting in finland later this month .\nthe band little mix have been forced to cancel their belfast gigs after singer jesy nelson became unwell .\nmanchester united are likely to limit their summer spending to three or four key signings .\ncontrol over teachers ' pay and conditions will be devolved , welsh secretary alun cairns has announced .\nat least 15 civilians have been killed and dozens injured in an air strike on a village in eastern syria held by so-called islamic state , activists say .\nall pictures are copyrighted .\nsouth africa beat sri lanka by 206 runs thanks to a five-wicket haul in the first 14 overs on the final day of the first test .\na hospital has suspended visits to patients on all its wards following an outbreak of the norovirus bug .\na man has been killed in a fire in oxford .\nred bull 's daniel ricciardo sprung a surprise with fastest time in first practice at the hungarian grand prix .\nmae dyn wedi ymddangos o flaen llys y goron yr wyddgrug i wynebu cyhuddiad o lofruddiaeth .\nmario balotelli has threatened to walk off the pitch if he is ever again subjected to racist abuse from fans .\na writer in india has been charged with sedition for allegedly showing disrespect to the national anthem .\nengland manager sam allardyce is worried about goalkeeper joe hart 's situation at manchester city .\nformer labour mp bob marshall-andrews has defected to the lib dems after describing jeremy corbyn 's party as a `` political basket case '' .\nwelsh actress angharad rees , who has died of cancer at the age of 63 , was one of the best-known faces of the 1970s thanks to her role in poldark .\nthe world 's largest money manager blackrock reportedly plans to cut 400 jobs , or about 3 % of its workforce , in its biggest round of layoffs to date .\nthousands of bikers in devon took to the streets as two big cycling events came to plymouth .\na new project to help women from ethnic minority backgrounds into work has been given # 110,000 of government funding .\nthree pupils at the high school of dundee have been expelled following the discovery of cannabis on school property .\nthousands of football fans turned out to watch chelsea 's victory parade following their premier league victory .\nles hutchison 's involvement at motherwell has ended before he expected it to .\ncardiff devils lost 6-1 away to nottingham panthers in the elite league , less than 48 hours before playing the same opposition in the challenge cup final .\na mother and her teenage son have set benchmark records for the fastest circumnavigation of the isle of wight on kiteboards .\nwhole brain radiotherapy is of no benefit to people with lung cancer which has spread to the brain , says research in the lancet .\ntwo teenagers who died when two cars collided in the early hours of saturday have been named by police .\nthe owner of a car that knocked down and killed a five-year-old boy more than 10 years ago has been jailed .\nindian shot put champion inderjeet singh believes he failed a drugs test because of a `` conspiracy '' against him .\nfrench police have interviewed presidential candidate francois fillon and his wife penelope over claims she was paid for fake work .\na woman who claims she was `` groomed '' and sexually abused by a former royal aide told a jury she had not made up the story and did not `` want his money '' .\naustralian laws forbidding people working in the country 's detention centres from speaking out about what they see have raised grave concerns in the medical community .\nten men who revealed the identity of the woman involved in footballer ched evans ' rape trial have been cautioned .\nmanchester city women have signed netherlands midfielder tessel middag from eredivisie women 's side ajax .\na man who struck a colleague in the head with a meat cleaver after a row over a chicken has been jailed for 11 years .\nschool lunches can tempt fussy eaters to try new foods , a survey for the school food trust has suggested .\nchesterfield director of football chris turner has left the struggling league one club .\nben stokes and james taylor both made unbeaten centuries as england reached 470-5 on the opening day of their warm-up match against a south african invitation xi in potchefstroom .\nnewport county chairman of operations gavin foxall says he expects the league two club to remain at rodney parade .\na book explaining to children how the armed forces `` do n't just kill people '' is now being used to help veterans suffering from issues such as post traumatic stress disorder -lrb- ptsd -rrb- .\nwest brom striker saido berahino has been put on a weight-loss training plan in a bid to get him fit , baggies manager tony pulis has revealed .\nquinton de kock and hashim amla put on 239 for the first wicket to help south africa beat england by seven wickets in the third one-day international .\nit 's the `` social '' social media event of the year in wales - hundreds of people involved in digital marketing are in cardiff to hear insights from the likes of google , twitter , youtube , and ibm .\ngerman police have arrested two algerians suspected of planning an attack and having links to the militant group , islamic state -lrb- is -rrb- .\na 95-year-old invited into a bbc radio programme after calling in about being lonely has become a hit on social media .\nwhen narelle lancaster emailed a new bbc radio 4 programme , she did not expect to become its presenter .\na topic of debate at this week 's conservative party conference will be the uk 's relationship with brussels ahead of a referendum due in 2017 .\ntony adams called granada 's season `` a disaster '' after he lost his seventh and final game in charge against espanyol .\nmexico 's president enrique pena nieto has promised to rebuild an open-air fireworks market destroyed by a series of huge explosions on tuesday .\naccrington stanley have signed goalkeeper marek rodak on loan from fulham until the end of the season .\ntributes have been paid to the two men who died in a crash which closed a major road in the east midlands .\nswansea city 's supporters ' trust says it is disappointed by a `` lack of engagement '' over the club 's takeover .\nan eight-year-old girl has accused a council of `` forgetting '' about her disabled twin brother when it installed new equipment at their local park .\nrangers beat aberdeen to go second in the scottish premiership in a match that featured a red card for each side .\nwales are the only home nation left in euro 2016 and are in the last eight at the finals of a major tournament for the first time since 1958 .\na 200-year-old burial site has been discovered during redevelopment work at brighton dome corn exchange .\nthe emotional father of a us student freed by north korea this week says he does not believe the regime 's explanation for his son 's coma .\nthe government has unveiled new tools and advice for farmers as part of a fresh campaign to tackle bovine tb .\nfans of horror writer arthur machen have called on newport council to protect the collection of his books and papers at the city 's central library .\najax midfielder abdelhak nouri suffered `` serious and permanent brain damage '' after collapsing in a friendly match on saturday .\nthe scottish government is facing the threat of court action if it fails to tackle illegal levels of air pollution in the country 's biggest cities , bbc scotland has learned .\ndetermined to act tough after november 's attacks , france 's president , francois hollande , finds himself trapped in a damaging ideological fix over french nationality , and whether certain convicted terrorists can be made to give it up .\ntheresa may 's letter triggering article 50 may have attempted a more conciliatory tone but it does not seem to have worked with the welsh government .\nmonarch has said passengers have been booking their trips later since the terror attacks in paris and sharm el-sheikh .\nefe ambrose 's proposed loan move from celtic to blackburn rovers is awaiting an english fa ruling over a work permit for the nigeria defender .\ntom marshall scored two tries to help gloucester maintain their hopes of a top-six finish with victory in a thrilling encounter with sale sharks .\natletico madrid missed a chance to go top of la liga after falling to a late winner from malaga striker charles .\nthe number of people waiting for mental health treatment has doubled in the past six years , figures have shown .\nprofessor frank pantridge is remembered as the cardiologist who invented the portable defibrillator - a device that has helped save millions of lives over the past 50 years .\na memorial service has been held for 60,000 people whose remains are due to be exhumed in london as part of the â # 55.7 bn hs2 high-speed rail project .\nthe # 24.3 bn deal to sell uk tech firm arm to japan 's softbank is an example of the uk `` selling out of our winners '' , former city minister lord myners has said .\nmicrosoft is caught up in a privacy storm after it admitted it read the hotmail inbox of a blogger while pursuing a software leak investigation .\na judge has sentenced a white supremacist to death for the killing of three people at two jewish centres .\nthree goals in seven second-half minutes gave huddersfield a 3-0 win over norwich which lifted the terriers back up to third in the championship .\nhartlepool united have signed reading midfielder aaron tshibola on a one-month loan deal and mansfield striker rakish bingham on a season-long loan .\nscottish chambers of commerce -lrb- scc -rrb- has officially opened a new international trade office in yantai , china .\nwelsh athlete helen jenkins is determined to join non stanford and vicky holland in the gb triathlon team at the rio olympics .\na prototype 3d-printed robotic hand that can be made faster and more cheaply than current alternatives is this year 's uk winner of the james dyson award .\nthe managers of the olympic stadium have been told to make public the details of a rental deal with west ham .\nthe ghosts of failures past must have been swirling around gordon strachan 's ears at half-time in malta on sunday night .\npeterborough united manager grant mccann says marcus maddison is the best player in league one `` on his day '' .\npeter hartley says scoring the injury-time winner for plymouth argyle in the league two play-off semi-final against portsmouth is his greatest moment .\ndanish police believe that a submarine at the centre of an investigation into a missing swedish journalist was deliberately sunk .\na boosted youth vote is believed to have contributed to labour 's shock election result , but what made young people turn out to vote ?\nthe president of the international olympic committee -lrb- ioc -rrb- thomas bach says he has `` no regrets '' about letting russia compete at the rio games this summer , despite a state-sponsored cheating programme .\nbritish heavyweight anthony joshua has been ordered by the wba to defend his title against cuba 's luis ortiz .\nchris eubank jr says he will not be affected by his last fight with nick blackwell and has vowed to display `` no mercy '' against tom doran on saturday .\nsuicides of people being cared for in the community are higher than among hospital inpatients , a report says .\nthe 800-plus volcanic and coral islands that make up the pacific nation of fiji enjoy a tropical climate and host a significant tourism industry .\nthe board of nhs highland has approved a plan to set up maternity services at caithness general in wick as a community midwife unit -lrb- cmu -rrb- .\nelite league side coventry blaze have signed liam stewart , son of music legend rod and former model rachel hunter , for the 2016-17 season .\na recreation of the studio where william blake created some of his most well-known work has opened in oxford .\na `` boiling hot '' water pipe burst above two classrooms at a new school , an msp has revealed .\nfrench prime minister manuel valls has attacked the british `` caricature '' of france .\nformer st mirren full-back david van zanten has joined dumbarton on a one-year deal , with the option of staying for a further 12 months .\nteenager tom marquand has been tipped to follow in the footsteps of three-times champion jockey ryan moore by his trainer richard hannon .\nat the top of a long staircase in a room in a tower , far away from the throng of visitors and other scientists and laboratories is the natural history museum 's insectory .\na scheme to make the medieval town of conwy safer for foreign tourists who arrive by coach is set for approval .\nnorth korea appears to have restarted its nuclear facility at yongbyon , the international atomic energy agency -lrb- iaea -rrb- has said .\naustralians sending in postal votes for the upcoming uk referendum on european union membership could have considerable influence on the result , writes julian lorkin .\nmichael gove has branded a decision by rotherham council to remove three children from a foster couple because they belong to ukip as `` indefensible '' .\npeter houston has targeted a scottish championship play-off place after being unveiled as the new manager of falkirk .\nhubble has probed a clutch of monster stars about 170,000 light-years away on the edge of our milky way galaxy .\nviacom chairman sumner redstone is seeking to remove the firm 's chief executive philippe dauman and four other directors from the viacom board .\ncaptain chris robshaw blamed england 's `` shocking '' first-half discipline for their 25-20 defeat by france in paris .\nisle of wight council begins a high court appeal after the case against a father who took his child on holiday during term-time was thrown out by magistrates .\nbritish pair naomi broady and heather watson lost 6-3 6-1 to chan yung-jan and chan hao-ching in the doubles final of the hong kong open .\nwe 're buying fewer clothes and pairs of shoes , although we 're eating out more , according to credit card firm visa .\na 19-year-old man has been jailed for life for planning a bomb attack that may have targeted an elton john concert or oxford street in central london .\nhoneymoon murder suspect shrien dewani has been extradited from the uk to south africa , scotland yard has said .\ndeteriorating maternity services in wales must be turned around without delay , midwives have warned .\nearly results from an archaeological dig at an iron age fort in cardiff suggest it may have been the region 's centre of power , experts have said .\nhere is a full list of winners and nominees for the 2017 bafta tv awards , which have taken place in london .\nphyllis schlafly , a leading figure in the us conservative movement , has died at her home in missouri , aged 92 .\ncasino gambling revenue in macau soared in 2010 to reach a record high , according to official figures .\nus chipmaker qualcomm will pay $ 975m -lrb- # 640m -rrb- to chinese authorities to end a 14 month anti-trust investigation into its patent licensing practices .\na 37-year-old man has been charged in connection with the deaths of a man and woman at a dundee flat .\nin our series of letters from african journalists , the film-maker and columnist farai sevenzo looks at why zimbabweans are turning to their flag to demand accountability from politicians .\na stretch of the m6 was closed after a pedestrian was hit by a lorry .\na husband and wife from county armagh have admitted a number of sex offences , including the rape and assault of a woman with severe learning difficulties .\namerican rapper a$ ap yams died of an accidental drug overdose , according to new york city 's chief medical examiner .\ngerman police have released a 40-year-old tunisian man who had been a suspected accomplice of the berlin christmas market assailant .\ncardiff city centre-back bruno ecuele manga is recovering from malaria having been released from hospital .\ncomedian jon stewart has hosted his final broadcast of the satirical us news programme the daily show .\nformer rangers owner craig whyte is now the only person facing fraud charges relating to his time at the ibrox club .\nipswich town 's christophe berra is the best defender in the championship , according to his manager mick mccarthy .\npoland 's conservative law and justice party won enough votes in sunday 's parliamentary elections to govern alone , final results show .\npassenger numbers at luton airport could nearly treble , to 30 million a year , under new proposals .\nguernsey boss tony vance admits their fa cup replay against thamesmead town on tuesday will be a costly burden .\noldham athletic overcame 10-man championship side wigan athletic to reach the efl cup second round .\nwhen the founders of popular but controversial beer company brewdog needed a second bank loan to enable them to expand production , their tactic was a simple one - lie through their teeth .\ntanzania 's motorcycle taxi drivers , often associated with deadly road accidents , are being trained to become life-savers , writes ross velton .\nthe benefits of the cholesterol-reducing drug statins are underestimated and the harms exaggerated , a major review suggests .\nthe organisers of the glastonbury festival have admitted allowing human sewage to leak from a tank and pollute a stream .\npeter houston is still seeking to fine-tune his falkirk squad , with a striker and defender pinpointed as priorities .\nthe government has been defeated in the house of lords over plans for so-called `` english votes for english laws '' .\nsouth africa 's president jacob zuma has agreed to repay some of the $ 23m -lrb- # 15m -rrb- the government controversially spent on upgrading his private rural home .\nin september 2012 , 18-year-old doga makiura made his first trip to rwanda , a country which many japanese would only associate with the genocide in 1994 .\ntrainer liam wilkins has had his licence withdrawn after overseeing the sparring session that left retired boxer nick blackwell in hospital .\nireland fly-half johnny sexton will be a legitimate target during saturday 's six nations match at twickenham , says england head coach eddie jones .\nsam tomkins says he is still open to a return to wigan warriors in the future .\njamie hamill has returned to kilmarnock after his summer release by hearts .\njoaquin phoenix has said he wants no part in the movie industry awards season , calling the awards `` stupid '' and `` subjective '' .\non a far-off planet that 's very much like australia , strange creatures engage in a brutal battle for political domination , in this satirical cartoon from illustrator laurent sanguinetti .\na man dragged screaming off a united airlines flight described his ordeal as `` more horrifying '' than his experiences in the vietnam war , his lawyer says .\npolice are searching for two teenage boys after one of them shone a laser into a woman 's eye in clydebank , leaving her blind in one eye .\nwalt disney world has unveiled a lighthouse memorial for a young boy who was killed by an alligator while on holiday at the florida theme park .\nthe head of the organization of american states -lrb- oas -rrb- , luis almagro , has accused the venezuelan president nicolas maduro of being `` a traitor '' .\nit would seem like a typical saturday morning with children jumping on climbing frames outside swiss cottage leisure centre in north london .\njudgement has been reserved in the appeal of a man who was found guilty of posting a comment on twitter threatening to blow up an airport .\ncomedian norman collier , best known for his faulty microphone act , has died at the age of 87 , his daughter confirmed .\nthe cartoon character linus van pelt from the peanuts comic strip has a comfort blanket , and so do lots of children .\ntwo suspected jihadists have been killed in an anti-terror operation in eastern belgium , officials say .\na student has pleaded for the return of her prosthetic hand after losing it on a night out .\nmost uk radio stations aimed at a young audience have seen their listeners fall , rajar figures suggest .\nan employee of the german intelligence agency -lrb- bfv -rrb- has been arrested after making islamist statements and sharing agency material , german media report .\nlord coe is the right man to lead the crisis-hit iaaf , according to the author of a report claiming `` corruption was embedded '' within the organisation .\nnewcastle united have sacked head coach steve mcclaren .\na man who bit off half his friend 's ear has been jailed for two years .\na hacker has briefly hijacked more than 150,000 printers accidentally left accessible via the web .\nforty percent of people in england do not believe jesus was a real person , a church of england survey suggests .\na high court ruling backing a parent who refused to pay a fine for taking his child on holiday in term time will cause `` huge confusion '' , an mp has said .\nsir elton john has criticised comments by a dup mla on hiv .\na 52 million-year-old fruit fossil has been discovered in south america .\nulster rugby has responded to criticism after poppies were absent from players ' jerseys during their pro12 game against newport gwent dragons on remembrance sunday .\ncapt francesco schettino has been found guilty of multiple manslaughter in italy and sentenced to 16 years in jail for his role in one of the country 's worst maritime disasters .\nfour sponsors have dropped disgraced us olympic swimmer ryan lochte , including swimwear manufacturer speedo and fashion label ralph lauren .\nmanchester united manager louis van gaal put his side 's 2-1 defeat by fc midtjylland down to murphy 's law .\nthree people have appeared in court charged with terrorism offences .\nderby 's struggle for goals continued as they were held to a frustrating stalemate by brentford .\nsaudi-led coalition warplanes have bombed a special forces camp in yemen 's capital , sanaa , killing at least 36 people , officials and witnesses say .\nauthorities are continuing to search for two teenagers who went missing while fishing off the florida coast .\npakistan authorities have detained two men suspected of being involved in the killing of an exiled politician in london five years ago , officials say .\ncontroversial plans for 10 marine conservation zones have been withdrawn by a welsh government minister .\nthere have been dramatic headlines about 3d technology , encompassing ideas to use 3d printers to make clothes , food , firearms and the parts of a house .\nthe mother of missing teenager charlene downes said she is going to sue police over mishandling her murder case .\nwinning the europa league is now manchester united 's `` easiest route '' into next season 's champions league , according to manager louis van gaal .\nneneh cherry 's daughter , an unsigned rapper and a former backing singer for pulp have all made the longlist for the bbc music sound of 2016 .\nmyanmar 's president thein sein , a former general , may go down in history as the man who led `` irreversible change '' .\nwhite sand beaches fringed by lofty palm trees - it is the image of a tropical paradise that has lured holidaymakers to the caribbean for decades .\nbaroness nuala o'loan can not be dismissed as a `` bleeding heart liberal '' when she attacks the political establishment in stormont and westminster for putting northern ireland 's peace process at risk .\nthe number and proportion of prosecutions dropped at crown courts in england and wales has risen to its highest level in five years .\nfleetwood town dropped into the league one relegation places as they had to settle for a point after a stalemate with doncaster .\nthe uk 's biggest vote - the general election - takes place on 7 may .\ncadel evans is all but certain to become australia 's first tour de france winner after a stunning time trial-victory in the suburbs of grenoble .\nceltic fans may soon have a new dembele to savour after 13-year-old karamoko dembele made his debut for the club 's development team on monday .\nmore than 600 staff are on a waiting list for parking , according to the trust running a west midlands hospital .\nproperties in north kensington should be `` requisitioned if necessary '' for people left homeless after the grenfell tower fire , jeremy corbyn says .\nevery day mohamed eusoof sarlan looks at his beloved homeland , a few hundred metres away from where he lives - but myanmar 's soldiers will not allow him to return to his country .\nnorwich city striker kyle lafferty has been fined # 23,000 and warned as to his future conduct after accepting a football association betting charge .\na judge has ordered a former usa gymnastics doctor to be tried on sex assault charges , as an accuser said he abused her during hide-and-seek .\nbroadcasting executives are gathering in edinburgh for the start of the annual international television festival .\na driver whose car hit another in a head-on crash , killing his five-year-old stepson , has been jailed for six years .\nartworks by ai weiwei made during his stay in lesbos have gone on public display for the first time in athens .\nlock rory thornton says he is `` champing at the bit '' ahead of winning his first wales cap against samoa in apia on friday , 23 june .\nnine members of the sport ni board have resigned with immediate effect .\nthe length of time ambulance crews spend waiting to hand over patients at hospital accident and emergency units in yorkshire has doubled in a year .\naverage house prices grew strongly in december according to the latest survey from building society nationwide .\nracing 92 are the best team in europe , says scarlets captain ken owens .\na man dialled 999 after waking up locked in an empty nightclub dressed only in his underpants following a christmas party .\neach day we feature a photograph sent in from across england .\nall athletics world records set before 2005 could be rewritten under a `` revolutionary '' new proposal from european athletics .\nfrom an unknown blogger in the months following the 9/11 attacks , pamela geller has become one of the most outspoken us critics of islam .\nnew sand dunes may be created to reduce the risk of flooding on a beach on the denbighshire and flintshire border .\nthe partner of a transgender woman found dead in a men 's prison while on remand has told an inquest she did not want to be in a male jail .\na man convicted of bludgeoning to death a romanian woman whose body was found in a wheelie bin has been jailed for life .\nfrom praise for loyalty to vilification for a change of mind - fabian delph 's move from aston villa to manchester city has found a place in the all-time transfer sagas scrapbook .\na handgun and ammunition have been seized and two people were arrested during a police operation in luton .\nas the welsh government publishes plans to reintroduce welsh taxes for the first time since the 13th century , bbc news looks at what life was like in wales last time there was direct welsh taxation .\nquadcopter drones have been programmed to build a rope bridge capable of supporting the weight of a human .\nserbia have been awarded a 3-0 walkover against albania after their euro 2016 qualifier in belgrade was abandoned , uefa has confirmed .\nsuspended spanish football federation president angel maria villar has resigned from his roles as vice-president of uefa and fifa .\ntom hiddleston has denied his romance with singer taylor swift is just for the cameras in his first comments on their widely reported relationship .\nbernie ecclestone says formula 1 is `` cheating '' its fans because the quality of the show is poor .\ngordon greer has a double mission this summer - find a new club and one that is good enough to help him retain his place in the scotland team .\njohn akinde 's second-half goal secured barnet victory at mansfield .\ndavid drumm , former boss of the anglo irish bank , has been granted bail by an irish court after he was extradited from the us to face fraud charges .\nreal madrid have re-signed juventus striker alvaro morata , exercising their buy-back clause .\nscotrail said it has reached an in-principle agreement with the rmt union to bring to an end a dispute over driver-only operated trains .\nchampionship side barnsley have signed torquay defender angus macdonald on a two-year deal for an undisclosed fee .\na former guatemalan general , efrain rios montt , who ruled the country briefly in the 1980s , has been found mentally incapable of standing trial .\nchildren 's services in wolverhampton have been rated `` good '' following an inspection by ofsted .\ndavid gold thought he was doing a good deed , but instead was found guilty of not recognising one of his own players .\nnicknamed `` the hangman of prague '' , ss general reinhard heydrich was a man even hitler himself feared as `` the man with an iron heart '' .\na life-sized baby jesus which was stolen from a nativity display at a church in perth has been found .\nnico rosberg took his third straight win of 2016 as mercedes team-mate lewis hamilton fought back to seventh in a hectic chinese grand prix .\nthree nurses have been found guilty of professional misconduct for mistreating a man at a kent brain injury unit .\ndavid cameron has condemned `` despicable '' incidents of hate crime reported in the wake of the uk 's referendum vote to leave the eu .\nthe mayor of paris has said she will sue fox news for its inaccurate reporting about the city following the attack on the magazine charlie hebdo .\nrussian politician mikhail kasyanov has accused president vladimir putin of `` silently encouraging '' intimidation as a row over a menacing video continues .\npresident donald trump 's argument that the removal of confederate statues is a slippery slope to changing history has recharged the perennial debate about america 's tormented racial legacy .\nchelsea manager antonio conte has signed an improved two-year deal with the premier league champions .\nsouthampton have signed norwich city winger nathan redmond for undisclosed fee believed to be worth # 10m .\nmarcus trescothick and peter trego both made centuries to drag somerset back into contention with middlesex on day three of the county championship match .\nbbc news school report has enjoyed many highlights since it started in 2007 - from world record attempts to interviews with global figures .\nfe gafodd canolfan siopa yn abertawe ei gwagio brynhawn dydd mercher am gyfnod yn dilyn pryderon am ddiogelwch .\na new project has been developed to allow first-year medical student in scotland to watch gp consultation for the first time .\na book about the death of a british officer in afghanistan , once pulped by the ministry of defence , has won the orwell prize for political writing .\na picasso painting barred from leaving spain has been seized by french authorities from a boat docked in corsica .\nireland seamer craig young has been ruled out of the two one-day internationals against sri lanka in june with an elbow injury .\nit was in a conference room above a coffee shop a fifteen minute walk from bbc broadcasting house that we first met the man who says he is bitcoin creator satoshi nakamoto .\na man has been accused of committing sexual offences against boys at an east sussex school where he worked more than a decade ago .\nengland prop alex corbisiero has been called up to the british and irish lions squad to provide cover for the injured cian healy .\nthe carriage which carried sir winston churchill 's coffin to his final resting place has been restored .\na man with a metal detector discovered an unexploded wartime bomb in a lancashire park .\na man has been charged with the attempted murder of two children who were stabbed .\nprincess beatrice 's royal wedding hat has been sold on auction site ebay for # 81,100.01 .\nan investigation is being launched after a 10-year-old deaf boy who has autism was twice left on a school minibus and driven back to the depot .\nmiddlesbrough 's defensive `` naivety '' cost them in wednesday 's 4-2 premier league defeat by hull city , says head coach steve agnew .\nliverpool have signed england defender alex greenwood from fellow women 's super league one side notts county .\nwelsh housing associations directly contributed more than # 1bn to the economy in 2014/15 , an independent report has said .\nthe foreign office says it is urgently investigating reports that a british man has died at a shooting range in thailand .\nplans for a new education campus in a scottish borders town have moved a step closer .\na woman has suffered serious head injuries in a single-vehicle crash in aberdeenshire .\nthree welsh universities are among the top places in the uk for student satisfaction , a new survey shows .\nresearchers have identified a gene that may put people at greater risk of strokes and heart attacks .\na skin cancer appeal backed by a bbc presenter has reached its # 45,000 target after just six weeks .\nbritish researchers have developed a test to detect alzheimer 's disease in its earliest stages .\na feature-length documentary film about the founder of europe 's first tibetan buddhist centre in dumfriesshire has staged its world premiere .\nnational league north side gloucester city are in talks with rugby league team gloucestershire all golds about a potential groundshare .\nceltic cruised to a 3-0 win over aberdeen at hampden park as brendan rodgers secured his first trophy as the scottish premiership leaders ' manager .\nover the last three decades , governments of various stripes have promised radical change to solve england 's housing crisis and today 's white paper is no exception .\ntwo-thirds of conservative mps want to renegotiate the uk 's relationship with europe but are too scared to reveal their true eurosceptic sentiment , claim conservative party insiders .\nwigan warriors have signed utility back sam hopkins from leigh centurions .\ndonald trump 's aberdeenshire golf course has been forced to apply for retrospective planning permission for two large flag poles .\na child sexual exploitation report has found police made no sustained effort to find out who was responsible for abusing children in the care system .\napplying a tiny electrical current to the brain could make you better at learning maths , according to oxford university scientists .\nsix people were rescued from cars trapped in flood water , as heavy rain hit essex overnight .\nenglishman matthew fitzpatrick shot a 68 to share the british masters lead with kiradech aphibarnrat at woburn .\nbosses have been urged not to indulge in invasive surveillance by reading their employees ' private messages .\nus supreme court justice ruth bader ginsburg has admitted there is a reason she was seen nodding off at the president 's state of the union address .\nrail passengers travelling between newcastle and scotland faced severe disruption on friday .\nbath have agreed a deal for newport gwent dragons scrum-half jonathan evans for next season .\ndirector joss whedon has denied leaving twitter over feminist criticism of his latest movie , avengers : age of ultron .\nnathan gill would stand down from one of his two elected positions if newly-elected ukip leader paul nuttall asked him to , the am and mep has said .\ntony blair says people will not accept that he means his regret over mistakes in the iraq war until he disowns the decision to join the us coalition to topple saddam hussein .\ndeputy first minister john swinney will give msps his response to a report into the death of aberdeen schoolboy bailey gwynne next week .\nmae coeden dderw hynafol wedi dod yn ail yng nghystadleuaeth coeden ewropeaidd y flwyddyn 2017 .\nwomen who look on the bright side of life cut their risk of many deadly diseases , according to researchers .\nthe death of ethiopian prime minister meles zenawi has thrown the populous horn of africa giant into a period of deep uncertainty and created a serious leadership vacuum in the region with profound geopolitical implications .\na man has admitted forcing a taxi driver to carry out a bank robbery by threatening staff with a fake bomb .\na man has been critically injured in an oil drum explosion at an industrial estate in north belfast .\ninstagram has ordered the owner of a british anti-litter app to change its name from littergram , but how have other `` david v goliath '' corporate name battles panned out and does the big guy always win ?\ntwo new councillors have been elected in a by-election in the city of edinburgh .\nhalf a century ago millions of chairman mao 's red guards gathered in rallies in tiananmen square to chant slogans and wave their red books of his quotations in a show of loyalty to the ideas of the `` great helmsman '' .\ngoalkeeper david de gea is expected to start for manchester united after missing out against sunderland with a hip problem and only making the substitutes ' bench against anderlecht .\nbarclays has reported a fall in third-quarter profits and set aside # 560m for more customer refunds and litigation .\na key government target for treating people diagnosed with suspected cancer has been breached for the first time since it was introduced in 2009 .\none of britain 's oldest poppy sellers , who was a prisoner of war in the nazi death camp auschwitz , celebrates his 100th birthday on sunday .\na vivid economics report prepared for the national grid shows leaving the european union would put an extra # 500m a year on to uk energy bills , energy secretary amber rudd has told bbc radio 4 's today programme .\nlawyer amal clooney has urged the un to act against so-called islamic state by backing a uk-led investigation into the group 's atrocities in iraq .\nmercedes ' lewis hamilton won his third formula 1 world championship to become only the second british driver after sir jackie stewart to achieve the feat .\nthe average pay for chief executives of firms in the ftse 100 index is now 144 times that of the uk 's average salary , says the high pay centre .\ncouncils across england are carrying out urgent reviews of high-rise buildings in the aftermath of the grenfell tower fire .\nmore than 300 uk retailers are no longer selling so-called legal highs , three months after a ban was introduced , the home office has said .\nan ayr united fan living in peru has designed the winner of an online poll to choose a new club badge .\nworkers on southern , merseyrail and arriva trains north are to hold fresh strikes on 8 april , the day of the grand national , the rmt union has said .\ntottenham showed a `` lack of desire '' to win the premier league with their first-half display in the 2-0 loss at liverpool , says manager mauricio pochettino .\ngordon strachan has omitted the best left-back in scotland from his latest national squads , says a `` surprised and disappointed '' derek mcinnes .\nan 18-month-old girl who was the sole survivor of a crash which killed her mother and three relatives is improving in hospital , police have said .\nbritain 's anthony joshua will defend his ibf heavyweight title in manchester on 10 december whether it is against wladimir klitschko or another fighter , says promoter eddie hearn .\ntel aviv is beginning the new working week on a higher level of alert .\nthe uk government is set to publish a draft air pollution plan after a protracted legal battle with environmental campaigners .\nthe companies that own domino 's pizza in the uk and australia have set up a joint venture to buy germany 's biggest pizza chain .\nconvention never stood much chance of standing between neil lennon and hibernian .\nsiemens and mitsubishi heavy industries have upped their offer to buy the energy business of france 's alstom , in the latest move by competing bidders .\nthe latest round of talks between greek and eu officials in brussels has failed to reach an agreement .\na jury in the us state of missouri has ordered johnson & johnson -lrb- j&j -rrb- to pay $ 72m -lrb- # 51m -rrb- to the family of a woman who claimed her death was linked to use of the company 's baby powder talc .\niranian prosecutors say the death of blogger sattar beheshti in police custody may have been due to `` excessive psychological stress '' .\nthe vast majority of pakistanis may be united in grief for the school children murdered in peshawar - but many say they still do n't know who carried out the attacks .\ntwo of the three men arrested by detectives investigating the disappearance of a cambridgeshire pub landlady in 1997 have been released .\nbabies born on the same day as the new prince are to receive a silver penny made by the royal mint .\nmost people associate heart problems - and cardiac arrest in particular - with older people .\na surface-to-air missile was once accidentally fired into wales by the royal navy , the labour peer admiral lord west has told mps .\nlithuanian defender marius zaliukas has signed a two-year contract with rangers , after impressing during a trial with the ibrox club .\nan australian senator has been flooded with support after announcing he is taking a leave of absence to treat depression and anxiety .\nchris woakes will replace the injured james anderson in england 's bowling attack when the four-match series against south africa begins in durban on saturday .\nthe end of flying scotsman 's 10-year restoration project has been marked with it being repainted in traditional british rail green livery .\nthe world 's oldest person has died in italy at the age of 117 , reports say .\na 16-year-old boy who raped and sexually assaulted younger girls has been sentenced to eight years ' detention .\nmexico 's secretary of the interior , francisco blake mora , has died in a helicopter crash near mexico city .\nwhen you think of the brand name philips , you probably think of consumer electronics and lighting .\na woman from bridgend made the final three in a competition to find the new voice of the speaking clock .\nthe whistle blows and the beautiful game begins , but this is no ordinary football match - it is a training session for a team of robots , which on 19 july will compete at the robocup world championships , hosted this year in the chinese city of hefei .\nhundreds of people have reportedly been fleeing a town in eastern saudi arabia after weeks of clashes between the security forces and armed men .\na teenager held a machete to a taxi driver 's throat in an attack after a late night party .\nyouths gathering in an anglesey town centre face being ordered to move , after police imposed an anti-social dispersal order in the area .\nnineteen people , including 17 foreign tourists , have been killed in a gun attack on the bardo museum in the tunisian capital , tunis , the pm says .\noffice workers in east london could soon be hanging out among the trees .\nattendances at professional sports events in the uk topped 70 million this year , up 5 % on 2014 , according to deloitte 's sports business group .\nthe chief executive of royal bank of scotland says he believes the uk financial sector would be better off inside the european union .\nthe united states is to release frozen iranian funds , saying tehran has kept commitments made under an interim deal over its nuclear programme .\nlabour will end the `` epidemic '' of zero-hours contracts that are `` undermining family life '' , ed miliband has insisted .\nwith just two days until the polling stations open , all the scottish party leaders are warning of the risks of backing their opponents .\nthe reintroduction of trams to birmingham will `` give the city a network to rival the best '' , a transport official has said .\nnearly a third of adults in wales are struggling to cope with the pain and symptoms of long-term health conditions , according to a new study .\nqpr opened their championship campaign with a comfortable win against leeds .\n`` extremely serious concerns about unacceptable noise and disruption '' caused by students in oxford have increased , according to a letter seen by the bbc .\nteam gb should expect to win at least three medals at the winter olympics in sochi , according to uk sport .\ngreat britain suffered a setback as they lost both of their duels during the second day of racing in the america 's cup qualifiers .\npolice are hunting two masked attackers who launched a `` vicious '' assault on a man in his own home in irvine .\nsamsung electronics says its operating profit is likely to rise 15 % in the fourth quarter from a year ago , missing market expectations .\nscottish liberal democrat leader willie rennie has taken the fife north east seat from the snp .\nthe expulsion of 35 russian diplomats from the us over the email hacking scandal has drawn a barrage of abuse from moscow , which seems poised to respond in kind .\na british man has been been questioned in peru after posing naked at the machu picchu ruins , local police have said .\nlawyers for adnan syed , the subject of the hit us podcast serial , will be allowed to present new evidence in his case after a court ruling on friday .\na warrant has been issued for former celtic footballer islam feruz after he failed to turn up for a court appearance in glasgow .\npolice are appealing for help locating a sick nine-year-old girl who went missing after being taken to hospital in need of urgent medical care .\nthe government has rejected an online petition , signed by more than 4.1 million people , calling for a second eu referendum to be held .\nceltic have appointed brendan rodgers as their new manager .\nsporting events and venues in england are conducting major security reviews after 22 people were killed in an attack at manchester arena .\noscar-winning polish film director andrzej wajda has died aged 90 , the polish filmmakers ' association has confirmed .\nlabour 's former acting leader harriet harman has questioned whether the `` extra-judicial killing '' of a cardiff jihadist can be properly justified .\nclashes have taken place over the nhs between labour and the conservatives as general election campaigning continues .\na galashiels man has appeared in court following a major drugs operation involving 100 police officers in the borders .\na 1980s-themed concert at queen of the south 's palmerston park has been cancelled due to poor ticket sales .\nthere has been a large increase in the number of illegal immigrants detained or arrested by police at dover .\npaint has been thrown over an orange hall in north belfast .\npoland 's parliament has voted overwhelmingly to reject a controversial citizens ' bill for a near-total ban on abortion .\nan inquiry into the mishandling of baby ashes at a crematorium in shrewsbury could lead to new national guidelines , the government has said .\nan armed raid at a jewellers could be linked to one at another branch three months ago , police have said .\norganisers of the miss america pageant have apologised to actress vanessa williams , 32 years after she was forced to hand back her title .\nindia 's central bank has unexpectedly held interest rates at a six-year low .\negypt 's internet activists have played a key role in the pro-democracy protests from the outset , but they tell the bbc that the online campaigning is evolving to suit their real-life activism in tahrir square .\nthe families of 11 men who died in the shoreham air crash will hear the reflections of emergency workers who dealt with the disaster at a service .\nwales forward sam vokes hopes they can turn their world cup qualifying fortunes around when they visit the republic of ireland on 24 march .\nkyrgyzstan weightlifter izzat artykov has become the first rio medallist to test positive for a banned substance and has been stripped of his bronze .\nbbc sport 's football expert mark lawrenson has made a prediction for all 380 premier league games this season .\nhundreds of protesters in kabul have accused iran of stopping fuel tankers from crossing the border into afghanistan .\nzimbabwean president robert mugabe has announced plans to water down a contentious law obliging foreign companies to hand over most of their shares to black zimbabweans .\nwimbledon champion marion bartoli is retiring from tennis just 40 days after winning her only grand slam title .\na murder investigation has begun over a man who was fatally stabbed in front of dozens of customers at an over-21s bar in north-west london .\nthe reaction from bt 's investors told us much about media regulator ofcom 's ruling on the fate of openreach , the bt subsidiary that provides much of the uk 's broadband infrastructure .\nrescuers used helicopters to pluck families from rooftops in the southern german town of deggendorf on wednesday as the danube flood crisis continues .\nlife looked pretty good for dutee chand last july .\nglamorgan batsman colin ingram says he would like to experience more of the `` world stage . ''\nmore than 40 % of elite sportswomen in great britain have experienced sexism but only 7 % have reported it , according to a survey conducted by bbc sport .\nglobal oil prices have fallen sharply over the past seven months , leading to significant revenue shortfalls in many energy exporting nations , while consumers in many importing countries are likely to have to pay less to heat their homes or drive their cars .\nirish police have begun another series of raids on properties linked to members of a criminal gang connected to shooting victim david byrne in dublin .\nkilmarnock and hamilton academical drew a blank in the scottish premiership .\nthe chief constable of northumbria police will retire after 30 years of service , it has been announced .\na six-year-old girl is undergoing surgery after being attacked by a staffordshire bull terrier , police have said .\nan airport in the australian city of melbourne has reopened two days after a plane crash that killed five people .\nthe government has announced the route for the second phase of the high-speed rail line hs2 , from crewe to manchester and the west midlands to leeds .\nthe world cup in brazil , ebola and the iphone 6 were the biggest google trends in the uk in 2014 .\nworld famous conductor sir andrew davis is one of the most familiar faces at the proms .\na 21-year-old british man is in hospital in thailand with head and leg injuries after he fell out of a moving train , thai police have said .\nmarco rubio of florida and ted cruz of texas are both us senators , they 're both the children of cuban immigrants , they 're both running for president , and they are both surging in the polls thanks to strong performances in republican candidate debates .\nthousands of welsh parents would be criminalised if a smacking ban is passed , campaigners have warned .\na complaint about the scottish spca putting what was thought to be one of the world 's most deadly snakes to sleep is being investigated by police .\na colonial-era statue of cecil rhodes on a south african university campus has been boarded up after student protesters demanded its removal .\nsubstitute marcus rashford scored an injury-time winner as manchester united finally overhauled a stubborn hull at a sodden kcom stadium .\nin our series of letters from african journalists , bbc africa 's komla dumor looks back at 2013 .\na bill to restrict foreign ownership in russia 's media will soon go before the parliament , which is dominated by mps loyal to president vladimir putin .\na woman who `` gave up her youth '' to work in sheffield 's steel factories during world war ii has said the city 's `` women of steel '' need proper recognition .\na new type of drug could benefit men with aggressive prostate cancer that is no longer responding to treatment , researchers from the institute of cancer research have said .\nwelsh actress angharad rees has died after a long battle with cancer , her family has said .\nthe most important court in the uk , has made a decision that means parents are not allowed to take children on holiday during term-time , unless the school agrees .\nguernsey have retained their island games team table tennis title after beating gotland 4-2 in jersey .\nthree people have been released without charge by french police investigating a paris jewellery robbery that targeted tv reality star kim kardashian west .\nlondon 's ftse 100 has chalked up its 12th consecutive record high as shares in housebuilders led the way .\na conservative mp who faced deselection by his own party has blamed a `` vicious smear campaign '' against him following revelations about his private life .\nsteve borthwick was double booked .\nharlequins ran in five tries as they came from behind to beat london irish in the european challenge cup quarter-final on home soil at the stoop .\nmanchester city have signed defender nicolas otamendi from valencia on a five-year deal worth # 32m .\nshares on wall street closed higher on wednesday , recovering ground after a fall on tuesday .\nmembers of northern ireland 's deaf community have called for the introduction of a sign language act .\nwalking tours led by people who have been homeless have been launched in edinburgh .\nbolton wanderers chairman phil gartside has died aged 63 following a battle with cancer .\ncraig levein retains `` high hopes '' for ian cathro 's hearts tenure but says the club will seek to `` repair the damage '' of recent transfer windows .\nscientists at oxford university have developed a machine that can lip-read better than humans .\nthe flight data recorder from the egyptair plane that crashed in the mediterranean sea last month has been retrieved , egyptian investigators say .\nswansea city head coach francesco guidolin believes his side can haul themselves out of relegation danger .\na frenchwoman injured in the attack on tunisia 's national museum has died of her wounds , bringing the total killed in the assault by islamists to 22 .\nunregulated transfer tests in northern ireland should be abolished , a united nations -lrb- un -rrb- committee has said .\nhartlepool have signed strikers andrew nelson and louis rooney on loan from sunderland and plymouth respectively .\nthe us federal reserve has kept interest rates at between 0.25 % and 0.5 % in the face of an uncertain jobs market .\nefforts to save the native white-clawed crayfish from extinction in wales are showing `` encouraging '' results .\nliverpool and france defender mamadou sakho has had a doping case against him dismissed by uefa .\nwestern sahara is a sparsely-populated area of mostly desert situated on the northwest coast of africa .\nwest brom have appointed nicky hammond as technical director , ending his 20-year association with reading .\nmanchester united midfielder michael carrick may have suffered ankle ligament damage during england 's 2-0 defeat in spain , says roy hodgson .\nsussex seamer steve magoffin will be out for six to eight weeks after suffering an achilles tendon injury .\nalastair cook hit his first england century since november 2013 on day two of their warm-up match against a st kitts & nevis invitational xi .\nthe french authorities have been carrying out the demolition of one of the biggest refugee camps in europe known as the `` jungle '' .\nthe cost of a bike hire scheme in dumfries works out at more than # 60 per rental , new figures show .\nsussex have appointed former player james anyon as head coach of their women 's side .\nthe friend of an aspiring young golfer killed in a car crash has been jailed for 18 months for causing his death .\nthe bolivian government has declared a state of emergency in a vast agricultural area affected by a plague of locusts .\nmatty taylor 's second-half hat-trick earned bristol rovers a late draw at mk dons in a six-goal thriller .\nauditors have questioned the way a health board handled funding awarded to a celebrity-led charity event .\nevery day since 28 november , 10-year-old rohit kumar has sat from dawn to dusk on the banks of the gandak river in the eastern indian state of bihar with a magnetic fishing line trying to fish out coins from the water .\na new flag to mark the battle of the somme has been unfurled in belfast .\na letter sent to a tv engineer by mikhail gorbachev and george bush after their 1989 summit in malta is being auctioned .\nedinburgh will probably need to win all five of their remaining pro12 matches to secure a play-off place , claims loosehead prop alasdair dickinson .\nabout 600 runners have taken part in the annual mountain race up snowdon with a series of other events being held to mark its 40th anniversary .\npolice are investigating a report of a sexual assault on a 16-year-old girl at the bristol balloon fiesta .\na 15-year-old boy has been charged in connection with a hare coursing incident in midlothian .\na man and a woman have been critically injured in a three-car crash in county down .\nmae ' r aelod seneddol dros orllewin clwyd , david jones wedi colli ei le fel gweinidog gwladol dros adael yr undeb ewropeaidd -lrb- ue -rrb- .\nbristol flyers secured the last spot in the bbl play-offs with victory against leeds force in the final game of their debut top-flight season .\na sheep which is the mascot of a british army regiment has been promoted at a ceremony marking its formation .\nthe ex-girlfriend of former england footballer adam johnson has told a jury they split up after he admitted cheating on her with `` quite a few '' women .\nevents organising is `` the biggest industry you 've never heard of '' , says reggie aggarwal , chief executive of us technology company cvent .\ntraffic restrictions previously deemed `` unenforceable '' have been reintroduced on a city centre street .\nbrendan duddy - a londonderry businessman described as northern ireland 's `` secret peacemaker '' - has died aged 80 .\nit 's been a bit of an annus horribilis for the internet and all of us who frequent it .\nthere has been a dramatic reduction in the number of migrants arriving in greece since an agreement between turkey and the eu came into force .\nbarnsley boss paul heckingbottom says huddersfield town target andy yiadom will not be considered for selection while he is `` in limbo '' .\na man has been jailed for 10 years for the attempted murder of a father who had asked him to keep the noise down in a common close of his flat .\nben stokes has returned to the england twenty20 squad for the first time since being hit for four sixes in the final over of the world t20 , when west indies beat england .\nnorthern ireland 's top law officer can not refer the `` gay cake '' case to the supreme court , senior judges have said .\nhundreds of residents of venice have staged a protest against the rapid depopulation of the italian city .\na shot was reportedly fired at a car outside a primary school in liverpool as parents were taking their children inside , police have said .\nsandra seifert is tall , pretty , smart and articulate , but it took a while for her to decide she wanted to take part in a beauty pageant in the philippines .\nchelsea 's return to anfield on saturday brings back unhappy memories for liverpool and their immediate future is not much brighter either .\na us policeman who climbed on to a car bonnet and fired repeatedly through the windscreen at unarmed black occupants has been cleared of all charges .\nengland will face northern ireland in saturday 's quarter-finals of the snooker world cup in china .\nwhen german chancellor angela merkel sits down for lunch on friday with us president barack obama , vladimir putin and ukraine will be the main course , and edward snowden the centrepiece .\nthe music video for south korean singer psy 's gangnam style exceeded youtube 's view limit , prompting the site to upgrade its counter .\nworld doubles number one jamie murray and partner bruno soares reached the monte carlo masters final with a 6-2 6-4 win over marcelo melo and ivan dodig .\na body found in the ruins of a collapsed building at didcot power station has been identified .\nthe us presidential candidate donald trump has filed a multi-million dollar lawsuit against univision .\nbritain 's chris froome extended his lead in the tour de france to one minute and 47 seconds by finishing second in the stage 13 time trial .\nchancellor george osborne has delivered his final budget before the general election - his message was that britain is growing again - in fact faster than any other major advanced economy in the world .\nivory coast has banned skin-whitening creams because of health concerns , the health ministry says .\nand so a perfect career ends in an imperfect way .\njose mourinho is back as manager of chelsea after leaving stamford bridge in september 2007 .\nengland 's world cup dreams fell apart under a french onslaught on a night when their shortcomings were brutally exposed at the quarter-final stage .\ngloucestershire finished day one on 62-3 in reply to glamorgan 's 220 all out at the sse swalec stadium in cardiff .\nmore than # 3.8 m has been spent in the last three years by civil servants using welsh government-issued credit cards , prompting calls to reveal what the money has been spent on .\na festival is under way in the borders to mark the 750th anniversary of the birth of one of scotland 's most important philosophers .\nmunster great paul o'connell will work with the province 's academy in a part-time mentoring role over the next year .\npolice are hunting for a man who raped a 14-year-old girl from hertfordshire while holding her prisoner for nearly 12 hours overnight .\nhungary is to send buses to transport migrants to austria 's border after more than 1,000 began walking there earlier on friday .\nthe novelist jackie collins has died of breast cancer at the age of 77 , her family said in a statement .\ntottenham hotspur midfielder nabil bentaleb will join schalke on a permanent deal at the end of his loan spell this summer .\nabout 30 patients in somerset who had cataract surgery inside a mobile hospital theatre have been left with blurred vision or other complications .\na man has been arrested after a car was stolen with two young children inside .\ncrewe alexandra have signed former bournemouth and portsmouth midfielder danny hollands on a five-month deal running until 19 january .\nrussia has said bomb attacks which killed at least 140 people in syria were aimed at `` subverting attempts '' to reach a political settlement .\nkevin pietersen described his dispute with england as a `` horrible situation '' after signing a new contract that should see him finally return to international duty .\nthe south korean president , park geun-hye , has publicly denied falling victim to a religious cult as scandal threatens to engulf her leadership .\nthe body of a man has been found at a property in oxford , police have confirmed .\nthe women 's super league transfer window re-opened on friday , 3 june and will close on thursday , 30 june .\na canadian dual national has reportedly been detained in turkey for allegedly insulting the country 's president .\ndavid cameron is embarking on a series of visits to spain , france and germany in a bid to sell his idea of reforming the european union to other leaders .\nthe way cycling deaths are treated by police and prosecutors may need to change , the former director of public prosecutions has said .\nus president donald trump has broken his twitter silence after james comey 's explosive testimony to appear to accuse the former fbi chief of perjury .\nthe number of british tourists hit by booking scams rose by 19 % last year , according to action fraud .\nthe former home of stoke city fc is to be redeveloped into 200 homes , a park and fields , the council says .\nasian markets started the week with losses as investor confidence was dented by china 's manufacturing data .\nnot paying the tv licence fee could become a civil offence , rather than a criminal one , under plans being considered by ministers .\nasian stock markets have recorded further gains after shares on wall street hit fresh record highs and china economic data beat expectations .\nthe findings of a fatal accident inquiry -lrb- fai -rrb- into the glasgow bin lorry crash will be issued on monday .\ncelebrity book clubs are becoming increasingly popular , but is this a great thing for reading or just another vanity exercise ?\nleicester city are set to sign caen midfielder n'golo kante for an undisclosed fee after he passed a medical at the premier league club .\nalan stubbs has been named the new head coach of scottish championship side hibernian .\nthe us stock market closed on tuesday about where it began , recovering after a flash of panic prompted by the release of emails from donald trump jr. .\na company which runs a paper recycling plant in salford where a major fire broke out has had its environmental permit revoked .\nan ex-youth worker jailed for child sex offences could have been approved as a foster carer , a case review has found .\nhackers have targeted a council twitter feed - announcing an end to council tax and free parking for all .\nthe tragic death of a toddler has gripped pakistan 's social media conscience over the past 24 hours .\nbarcelona reached the copa del rey final as they beat gary neville 's valencia 8-1 on aggregate after a 1-1 draw at the mestalla stadium .\naaron cresswell has signed a one-year contract extension with west ham , taking his current deal to 2021 .\na chronology of key events : .\nus officials say osama bin laden 's body was treated with respect and buried at sea , but some muslims argue there was no good reason for not burying it on land .\nan elderly woman whose bicycle was stolen while she was shopping has been overwhelmed by offers of replacements .\nboris johnson 's decision to campaign for britain to leave the eu is being regarded as a huge boost for the out campaign .\nmore than 750 drivers have raced in the formula 1 world championship since the first race in 1950 - that 's an awful lot of people .\npassengers affected by the collapse of a railway line during storms in dover are to be compensated , rail operator southeastern has said .\nbusinesses need stability after the uk government 's high court defeat over the trigger for leaving the eu , welsh secretary alun cairns has said .\na record number of people celebrated diwali in leicester in what is thought to be the largest event outside india .\nthe crew of the closure-threatened st abbs lifeboat station in the borders have agreed to take back their emergency pagers and respond to rnli call outs .\nirish priest father brian d'arcy has said he believes cardinal sean brady was willing to offer his resignation two years ago but the vatican refused .\na major flood protection scheme in dumfries is set to make a step forward but has seen its cost estimate rise significantly to # 25m .\ntwo people are in hospital with serious injuries following a crash on the a499 near pwllheli in gwynedd .\nmore children in england are being taught by unqualified teachers , a teaching union is claiming .\nofficial media attack former leader bo xilai for rejecting charges against him , while hong kong press see his case as a political show trial .\nserena williams beat sister venus in straight sets to win her seventh australian open and an open-era record 23rd grand slam singles title .\na teenager who posted videos of drones firing a gun and a flamethrower is suing his university after he was expelled , the ap news agency reports .\ninstalling more wind turbines will make the uk 's energy market more resilient to global fossil fuel price shocks , an independent report has concluded .\na majority of councillors voted in favour of retaining a welsh-medium stream at a powys school on tuesday .\nnew scheduled flights have been introduced between inverness and amsterdam .\nofsted is warning of a north-south divide in england 's secondary schools .\na judge in the case of a five-year-old christian girl who was placed with a muslim foster family has ruled she should live with her grandmother .\njustice clarence thomas , one of eight judges at the highest court in the us , has broken a 10-year silence at court .\nhull city need help as they fight to avoid relegation from the premier league , says defender curtis davies .\na golf company director has been jailed after a ball collector drowned in a freezing course lake .\na murder investigation has been launched after a boy was found dead at a house in oxfordshire .\ndefending champion andy murray has pulled out of his final warm-up match before wimbledon because of a sore hip .\nyum brands , which runs the kfc , pizza hut and taco bell restaurant chains , has seen third quarter profits soar 23 % , boosted by strong sales in china .\nmuch of the uk has recently been hit by thunderstorms , but what is the best way to stay safe when thunder and lightning hits ?\na demonstration has been held over the rise in the number of students at falmouth university in cornwall .\ntoshack 's swansea side have won 16 out of their last 19 and are top of their division with a chance in the cup .\nopec , the oil producers ' group is back in the driving seat .\nnigeria left-back juwon oshaniwa has signed for hearts on a three-year contract saying he is advancing his career by moving to scottish football .\n-lrb- close -rrb- : london 's leading shares ended the day in positive territory as global investors regained confidence .\nthe first episode of the bbc 's new costume drama war and peace was watched by more than six million viewers .\na pet iguana has been living up a 30ft -lrb- 9m -rrb- tree for three months after making an escape from its enclosure .\na couple whose bodies were found at a house in bradford have been named .\nmillions of people face a rise in their insurance bills this week-end , as a result of an increase in insurance premium tax -lrb- ipt -rrb- .\na pioneering scientist from swansea has been honoured in his home city , 75 years after his work helped to win the battle of britain .\nbritish number one johanna konta says she is ignoring being labelled as the favourite to win the wimbledon title .\na ukip mep has told the party 's conference the ban on smoking in public places in england has `` damaged more communities than the pit closures did '' .\na train carrying liquid petroleum gas has derailed and exploded in bulgaria , killing at least four people .\nukrainian government forces and pro-russian rebels in eastern ukraine are observing a ceasefire after weeks of bitter fighting , officials say .\na handwritten letter of encouragement for new mothers was left in a supermarket baby-changing area .\ntony blair refused to comment on ed miliband 's dispute with the unite union , saying he did not want to `` queer his pitch '' or be part of `` voices off '' .\nthe writer and creator of television drama broadchurch has said he feels `` emotional '' about the third and final series coming to an end .\nus senator john mccain has visited syria to meet rebels in the war-torn country , his office has told the bbc .\nalexandra palace has started a # 1m fundraising campaign to bring its victorian theatre back to life after lying unused for 80 years .\na man has admitted sexually abusing two girls in fife over a nine year period .\nscotland captain john barclay sees parallels with his scarlets side and glasgow 's 2015 pro12-winning vintage .\nscotland manager gordon strachan said his side 's 1-0 friendly victory over poland will have no effect on either team 's euro 2016 qualifying campaign .\nred bull insist daniel ricciardo and sebastian vettel are still in the fight for the drivers ' championship .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo questions whether lie detectors could help promote honest law enforcement .\na man taking his regular morning stroll in south-west germany was attacked and killed by an elephant which had escaped from a circus , police say .\na british woman has been accused by police in india of colluding with her alleged lover in the murder of her husband .\nthree people have been charged over allegations of fraudulent fundraising in cardiff .\na football team has played its first home game in more than 10 years after moving into a new stadium .\nthe us , uk and france have urged the un to begin air drops of humanitarian aid to besieged areas in syria .\nhearts are looking to double a # 6m fund to cover the estimated cost of building a new main stand at tynecastle .\nwales rugby great gareth edwards has been knighted by the duke of cambridge in recognition of a glittering sporting career and services to charity .\nany move to close a sports centre would be a `` declaration of war '' on the local community , a councillor has warned .\nprime minister david cameron will later attempt to halt the civil war in his party caused by iain duncan smith 's resignation from the cabinet .\nislamic state-affiliated militants in sinai say they have carried out a missile attack on an egyptian naval vessel in the mediterranean sea .\nnhs staff using google 's search engine has triggered one of its cybersecurity defences .\nindian olympics bronze medallist , boxer mc mary kom , has welcomed a film that bollywood director sanjay leela bhansali wants to make on her life .\na mother of six with an iq of 70 should be sterilised for her own safety , the court of protection has ruled .\nan mp who issued a social medial appeal after discovering a soft toy abandoned outside the house of commons has reunited it with its young owner .\nleague one side gillingham have signed queens park rangers forward jay emmanuel-thomas on a season-long loan .\nmore diseased meat could end up in sausages and pies because of changes to safety checks in slaughterhouses , hygiene inspectors have warned .\ncarlisle united have signed midfielder brandon comley from from queens park rangers on a one-month youth loan .\nalex cuthbert would be `` lucky '' to regain his wales place even if liam williams is ruled out of the rugby world cup , according to dafydd james .\nthe sister of a murdered schoolgirl has spoken publicly for the first time since the discovery of the teenager 's body 20 years ago .\nnews that iran has deployed thousands of undercover agents to enforce rules on dress has cast the spotlight on an institution that is a major feature of daily life in several muslim-majority countries .\nleyton orient midfielder michael collins has signed a new contract which will keep him with the league two club until the end of the season .\ntwo manchester united fans spent friday night undetected in an old trafford toilet in an attempt to see saturday 's premier league game against arsenal .\na man has been stabbed in a bar at the 02 academy in glasgow .\ncardiff city boss neil warnock has confirmed the club will start discussing a new contract for midfielder peter whittingham .\nthe centre-right bloc which won denmark 's general election has begun negotiations to form a new government .\nthe kids company charity failed in its handling of allegations of serious incidents , including sexual assaults , former staff have said .\ngoogle is aiming to diagnose cancers , impending heart attacks or strokes and other diseases , at a much earlier stage than is currently possible .\nthe population of northern ireland is projected to rise by 5.3 % to 1,938,700 by 2024 .\nford posted a record quarterly profit following strong sales in europe and moving more pick-up trucks and suvs in north america .\na man has died in hospital after he was injured in a car crash in county londonderry .\nat least two people have been killed and 18 injured in clashes overnight in the lebanese capital beirut .\nbolton wanderers have given preferred bidder status to former striker dean holdsworth 's sports shield consortium , reports bbc radio manchester .\ntwo powys roads were forced to close after separate serious collisions .\njust as i was sitting down to write about the existential struggle for labour 's soul we may witness in brighton in the next few days , my inbox pinged with the photograph of jeremy corbyn , bemusedly holding a marrow .\nreading will be without left-back jordan obita who is suspended following his sending off against derby county .\nthe queue snaked out of the side door of the book shop , 50 yards down the street , 100 yards down one side of an alleyway , 100 yards back up the other side and down the street again .\nthe vice-president of venezuela has accused the us of `` imperialist aggression '' after it slapped sanctions on him for allegedly trafficking drugs .\nturbines installed off the coast of shetland could herald a `` new era '' in tidal energy , according to the company running the project .\nnorth korea 's state television has announced the country has tested a hydrogen bomb .\ntottenham hotspur have completed the # 26m club-record signing of striker roberto soldado from valencia .\ntv critics are full of praise for the finale of sitcom miranda , which has bowed out after five years .\nthere has been flooding on some roads after the met office issued an amber weather warning for much of northern ireland .\njoe thompson has signed a six-month contract with league one side rochdale , returning to the club with which he began his career .\nleicestershire have the upper hand at new road , despite worcestershire being spared a possible innings defeat by joe leach and ed barnard 's century stand .\nat the bbc we cover all the greatest sporting action on tv , radio and online but now it 's your turn to create some action of your own .\nqpr director of football les ferdinand has been been charged by the football association after allegedly abusing a match official following his side 's 2-1 home defeat to tottenham .\njohn `` brad '' bradbury , drummer with the specials , has died at the age of 62 .\na man who claimed he was abused at an east yorkshire catholic school has lost a legal action for compensation .\nanthony joshua says he will be competing at a `` whole new level '' when he takes on wladimir klitschko in saturday 's world title bout .\na `` security nightmare '' dominates tuesday 's front pages .\na paranoid schizophrenic who killed a former neighbour and went missing from his secure unit in sussex has handed himself in to police .\nthe un security council has strongly condemned north korea 's launch of a long-range rocket .\nst mirren have signed motherwell forward david clarkson on a loan deal until the end of the season .\na man has been charged with the abduction of a six-year-old girl who was taken in a car .\nexpansion plans by two engineering firms could create 820 new jobs in scotland 's renewable energy sector .\npolice are investigating a nottingham nightclub for an alleged hate crime incident after a group of predominantly black people were refused entry .\none word and a freckle indirectly led to richard huckle 's arrest .\ngerman publisher , axel springer , has agreed to buy a controlling stake in the us news website business insider .\na third of babies born in 2012 in the uk are expected to live to 100 , according to a new report .\na top mongolian rapper was beaten into a coma by a russian diplomat after wearing a swastika on stage , his lawyer and family have claimed .\njournalists at fairfax media , one of australia 's largest publishers , have gone on strike for a week to protest against massive job cuts .\n`` the greatest show on earth '' was pt barnum 's claim for his three ring circus .\nthe finance minister has said she can not move the budget bill forward because of the inability of the stormont parties to resolve the deadlock over welfare reform .\nmilitary chiefs , civil servants and politicians are not always ready or equipped to fight the battles in front of them , let alone the wars of the future .\na vicar arrested in connection with historical sexual abuse has been suspended by the church of england .\ncontrolling human nerve cells with electricity could treat a range of diseases including arthritis , asthma and diabetes , a new company says .\ndavid goodwillie says he has not given up on representing scotland once again .\npope francis has warned the world 's 1.2 billion roman catholics not to be `` intoxicated '' by possessions in his annual christmas homily .\nhiv can be flushed out of its hiding places in the body using a cancer drug , researchers show .\nthe football association has charged blackburn midfielder hope akpan with violent conduct after he was sent off for pushing a referee .\nceltic boss ronny deila reckons reaching the last 32 of the europa league would mark his finest moment as a manager .\nwe all now know sony 's internal computer system was hacked in november .\nit is certainly not the country 's most famous sporting event but the scottish boat race is one of the oldest .\na 15-year-old girl was seen fleeing a house half-naked before a man chased , raped and murdered her , a court heard .\ntwo goals from kieron cadogan emphasised sutton 's superiority as they thrashed struggling north ferriby 5-1 .\nrelegated national league club kidderminster harriers have appointed john eustace as their new manager .\ndavid cameron made a late appeal to germany 's angela merkel for limits on free movement of people if the uk voted remain , bbc newsnight has learned .\nswansea city have named alan curtis as the club 's first loan player manager .\nchristmas swims are expected to attract bumper numbers this year due to milder winter weather and growing popularity for the craze .\na hospital trust in cornwall has declared a `` black alert '' for the second time this year due to `` extreme '' pressure on its services .\nukip 's scottish mep david coburn has told the bbc he would `` do his best '' if colleagues asked him to stand for the party 's leadership .\nregulators are to begin investigations into senior managers at hbos , the bank which collapsed during the financial crisis .\nbelfast 's rebecca shorten won a bronze medal as part of the great britain women 's eight at the final world cup regatta of the season in lucerne .\nyoutube is to scrap `` unskippable '' 30-second advertisements on the video-streaming service , from 2018 .\nemmerdale has won three prizes at the tv choice awards , with eastenders taking the prize of best soap - in its 25th anniversary year .\nthree rare pygmy marmosets have been rescued and are set to be reunited , after being stolen from a sydney zoo at the weekend .\nex-england youth international benik afobe will not play for dr congo in next weekend 's 2017 africa cup of nations clash with angola .\nan offer for championship club bradford bulls from a consortium has been rejected , report bbc radio leeds .\nderek mcinnes deserves more praise for his achievements at aberdeen , says ex-scotland striker steven thompson .\nnewcastle midfielder jonas gutierrez says he feels `` born again '' following his return to premier league action after overcoming testicular cancer .\ncameras will be banned from next week 's hearing when the suspect in the colorado cinema shooting is to be formally charged , a judge has ruled .\na road on the somerset levels which closed in december when it was engulfed by flood water has finally reopened .\nthe site which used to house swansea 's biggest nightclub could become the new home for swansea council and library .\ndawid malan hit a brilliant unbeaten 156 as middlesex completed their one-day cup group stage fixtures with an eight-wicket win over glamorgan .\nten youths have been arrested by canadian police on suspicion of planning to travel to iraq and syria to join islamic state .\npolice are treating the death of a man in coleraine , county londonderry , as suspicious and have made an arrest .\ntoday was n't world yoga day but world modi day , sniped some critics this morning .\nthe league one match between oldham and blackpool has been postponed because of a waterlogged pitch .\nmarkets do n't generally like surprises and today 's announcement certainly qualified as one , but the market reaction has so far been fairly calm .\nfifteen soldiers have been jailed after a court martial for staging a `` sit-in '' in protest at being `` led by muppets '' .\na man has been found dead in a road in derbyshire .\nthe isle of wight 's conservative mp has survived an attempt by his own party to force him to stand down as a general election candidate .\nuk oil and gas exploration firm bg group , which is set to be taken over by royal dutch shell , has reported a big drop in first-quarter earnings .\nauthor steve silberman has won the # 20,000 samuel johnson prize for non-fiction for his book about autism .\nthe inquest into the death of county tyrone schoolgirl arlene arkinson has heard a chilling account of an assault by child killer robert howard .\nthree former catholic schoolgirls have received compensation for having to walk through loyalist protests on their way to primary school 15 years ago .\nothman mahmoud al-barazinj is a farmer who has been living in the shadow of iraq 's largest dam ever since the colossal facility was established in the 1980s .\nfirefighters have been battling a blaze at a recycling business in bridgend after about 2,000 tonnes of wood chips set on fire .\nconor henderson has agreed a new six-month contract with crawley town .\na new apprenticeship levy of 0.5 % on company payrolls will raise # 3bn a year and fund three million apprenticeships , the chancellor has announced .\nchinese president xi jinping has arrived in hong kong to mark 20 years since the territory was handed back to china by britain .\nthe woodland trust have said that some trees should have the same rights as old buildings .\npolice in the australian city of sydney have charged two men with planning to carry out an imminent attack .\nhuddersfield showed their promotion credentials with an impressive home win over brighton , who missed the chance to extend their championship lead .\na woman who stabbed her lodger during a row over a missing # 21 has been jailed for her murder .\ntottenham 's moussa sissoko will be banned for three matches for elbowing bournemouth 's harry arter , missing the north london derby with arsenal .\nnovak djokovic lost in rio for the second time as he and 40-year-old team-mate nenad zimonjic exited the men 's olympic doubles in round two .\nalex baptiste 's header late in the second half saw preston upset high-flying norwich at carrow road .\nsome of the giants of the dinosaur family may have originated in south america and crossed over antarctica to australia about 100 million years ago .\nthe global farming sector has a big role to play in the effort to curb greenhouse gas emissions and adapting to future climate change , the un says .\nwales should be central in the debate on the uk union and devolution , welsh secretary stephen crabb has insisted .\na new zealand toddler has won nz$ 1m -lrb- $ 726,600 ; # 560,700 -rrb- in bonus bonds prize money - the youngest ever winner of the investment lottery scheme .\nthe future of lydney harbour in gloucestershire has been secured after a deal has been done for it to be operated by a local business .\nthe total amount of groundwater on the planet , held in rock and soil below our feet , is estimated to be 23 million cubic km .\na 17,000-tonne drilling rig has run aground after being blown ashore on the western isles .\npolice have condemned a wave of `` copycat criminal activity '' across london in a second night of looting and disorder following riots in tottenham .\nalmost one in five young people are unemployed in northern ireland , according to latest figures .\nalfreton town have signed goalkeeper jason mooney on loan from league two side york for the rest of the season .\nfour rowers from northern ireland in the great britain squad have advanced from the heats at the european championships in racice , czech republic .\nwelsh labour 's promise to increase free childcare could cost considerably more than it has predicted , the author of a report on the matter has said .\npolice have named the teenager who died in a crash in conwy county on thursday .\nhave n't they heard of the internet ?\njohnny sexton has been preferred to owen farrell at fly-half for saturday 's british and irish lions match with the maori all blacks .\ntenants in southampton may face eviction because landlords are holding incorrect paperwork , shelter claims .\nmanager jose mourinho will need at least two more transfer windows to get close to the squad he wants , say senior manchester united figures .\na member of texas ' house of representatives has filed a resolution to urge texans to stop using an emoji representing the chilean flag when they really mean to use the texan flag .\nbritain 's andy murray became the first male tennis player to win two olympic singles titles by beating argentina 's juan martin del potro in rio .\nprivately contracted so-called `` litter police '' have been removed from service by a council after an undercover panorama report found they were getting bonuses for issuing fines .\nscrum-half mike phillips has been suspended indefinitely from wales squad duties after a late night incident in cardiff .\nfour tourists who posed naked on a mountain in malaysia have been given jail terms and fined .\na woman who was allegedly raped and abused by eight men in rotherham changed from a `` lovely girl to an animal '' , her mother told jurors .\na 94-year-old man who survived a prisoner of war camp next door to the auschwitz-birkenau extermination camp believes a football league which the guards allowed them to set up may have helped save his life .\nbangladesh police say a top gay rights activist and editor at the country 's only lgbt magazine is one of two people who have been hacked to death .\npartners of people with depression are more likely to suffer from chronic pain , a new study suggests .\nworcestershire left-armer jack shantry has signed a contract extension with the relegated county until 2018 .\narchimedes did it in the bath , tesla with a walking stick and the father of the sticky note had his flash of inspiration while singing in church - or so legend has it .\nbuy-to-let landlords and people buying second homes will soon have to pay more in stamp duty , the chancellor has announced .\nabuse victims whose cases are excluded from a stormont inquiry into historical child abuse have united in a campaign for their allegations to be included .\nengland defender alex scott has signed a new contract with arsenal ladies .\nneymar is the most valuable player in europe - worth about # 216m - according to a new study which values 10 players at more than 100m euros .\nat least 150 syrian dissidents have met publicly for the first time at a hotel in the capital , damascus , to discuss the current crisis in their country .\nthe peruvian government has announced the capture of two leaders of the maoist guerrilla group , shining path .\na 16-year-old boy has been charged with the rape of an eight-year-old girl in a park .\nfrance has opened an investigation into the suicide of a 19-year-old woman who broadcast her death on the video-streaming app , periscope .\na damning report of a privately run hospital that is due to be returned to the nhs contained 300 factual errors , its chief executive has said .\nchinese president xi jinping has sought to reassure us business leaders , in a wide-ranging speech covering china 's economic reforms and cyber crime .\nclare shillington announced her retirement from one-day internationals after ireland lost to south africa in their final world cup qualifier game .\nnethaneel mitchell-blake missed the national record by one-hundredth of a second as he became only the third briton to run sub 20 seconds for 200m .\nadam johnson has been sacked by sunderland after pleading guilty to one count of sexual activity with a child and one charge of grooming .\na woman found guilty of conning a south of scotland garage firm out of # 110,000 has lodged an appeal against her sentence and conviction .\na review of paediatric first aid training for nursery staff across england is to take place following the death of a baby in greater manchester .\nburnley defender michael keane has been handed his first international call-up after stoke 's glen johnson withdrew from the england squad through injury .\na prominent human rights activist in azerbaijan , leyla yunus , has been sentenced to eight-and-a-half years in prison for fraud and tax evasion .\nmanchester city and chelsea have been charged by the football association for failing to control their players during the premier league game on saturday .\namerican football legend oj simpson has asked a nevada judge to grant him a new trial in the 2008 armed robbery case that left him serving a lengthy prison sentence .\nboko haram militants have killed at least 40 people in north-eastern nigeria , according to witnesses .\ned miliband has defended his decision to carve labour promises in stone - insisting he wants to show the public his pledges will not expire on 8 may .\nphotos of unusual cloud formations complete with a reflection of a rainbow have been captured across the north east of scotland .\nteam sky 's edvald boasson hagen secured his second stage win of the tour de france with victory in pinerolo .\nengland manager roy hodgson should build his team around tottenham striker harry kane , according to ex-spurs midfielder danny murphy .\nnorth wales police has renewed an appeal for witnesses following a road accident in which olympic cyclist chris boardman 's mother died .\nmanchester united 's players may be struggling under the pressure of playing for the 20-time english champions , says manager jose mourinho .\nto many people , their local pharmacy is the place where they pick up their medicines and perhaps their toiletries .\nnorwich boss alex neil was pleased with his side 's `` control '' during their 1-0 victory over bristol city on tuesday .\na strong liverpool side overwhelmed championship outfit burton albion to reach the efl cup third round .\nthe monitoring of cctv cameras in three north wales towns will be handed across the border to chester .\ncardiff city lost nearly # 12m during their debut season in the premier league .\na giant panda in hong kong called ying ying is pregnant and due to give birth within a week , officials at an amusement park say .\npolice are continuing to question a man over the murder of a pensioner in bridgend county .\npromotion-chasing stevenage were held to a by cambridge in league two .\napple faces a bill of $ 862m -lrb- â # 565m -rrb- after losing a patent lawsuit .\nbarcelona defender gerard pique says he felt `` inferior '' to real madrid for the first time after being thrashed by their rivals in the spanish super cup .\npolice chased a tractor between two counties in a pursuit involving six patrol cars and a force helicopter .\na memorial service has taken place to remember the life of leeds rhinos president and life-long rugby league fan harry jepson obe , who died aged 96 .\nguy martin will not be racing at next month 's ulster grand prix because of tv commitments in america .\na total of 13 ministry of defence sites will be sold to provide land for up to 17,017 homes and will raise # 225m , the government has said .\naston villa have signed former england midfielder joe cole on a two-year contract .\nswindon town 's jermaine hylton may face internal disciplinary action after walking out on his side before tuesday 's 2-1 loss at northampton town .\nas irish pm enda kenny quits as fine gael leader , eyes are focusing on who might succeed him .\npresident-elect donald trump has named south carolina governor nikki haley as us ambassador to the un , praising his former critic as `` a proven dealmaker '' .\na mass funeral has taken place in the colombian town of salgar for victims of a devastating mudslide on monday .\nworld number one angelique kerber avoided an early upset as she overcame spirited american qualifier irina falconi to reach the second round of wimbledon .\nformer taoiseach -lrb- irish prime minister -rrb- bertie ahern has warned there is no easy solution to resolving the irish border issue before the uk leaves the eu .\na banksy artwork which had been withdrawn from an auction in the us has been put up for sale again .\nthe irish embassy in washington feared protests by irish americans against the romantic comedy the quiet man , newly released documents reveal .\nmilitant islamist group al-shabab has dismissed as exaggerated us claims that more than 150 of its fighters were killed in an air strike in somalia .\neuro 2012 executive director krzystof pohorecki says poland and ukraine have proved the doubters wrong by hosting a successful tournament .\nus comedian kevin hart has signed a deal to release an album as his inept rapper alter-ego chocolate droppa .\na 6,000-year-old `` eco-home '' has been discovered close to stonehenge , archaeologists have revealed .\nthe number of people with diabetes in wales has reached an `` all-time high '' , a charity has warned .\na widower is appealing to help find the stranger who took the last photo of him and his wife together before she died .\nthe legal services firm axiom uk is to double its belfast workforce in a # 9m investment .\nsam baldock 's first-half header proved enough to give in-form brighton a home victory over wolverhampton wanderers .\nlondon welsh have been disqualified from the british & irish cup after the championship club went into liquidation on thursday .\nzinedine zidane can continue coaching real madrid reserves until his appeal against a three-month ban is heard .\naberdonians who were involved in health research nearly 50 years ago have been asked to sign up to another study .\nnine men , including the radical islamist preacher anjem choudary , have been arrested in london on suspicion of being members of a banned organisation .\nletting agents ' fees for tenants could be banned in wales under proposals from two backbench labour ams .\ninjured paratrooper ben parkinson , who carried the olympic flame , has been swamped with friend requests on social media and seen a huge increase in post addressed to `` hero ben '' .\nlabour 's ian murray has increased his majority by more than 15,000 to secure his seat in scotland 's capital .\nowners of exotic animals have been urged to do research before having them as pets after a seriously neglected chameleon was found in cardiff bay .\nbombardier inc has launched a test flight of its cs300 jet .\na high profile figure in the world of technology has criticised poor broadband in parts of wales .\na ten foot tall hairy monster - reminiscent of sweetums in the muppets - is to be used to persuade more employers to set up a pension scheme .\nsome uk police forces are using overtime to cover gaps caused by staff shortages , bbc radio 5 live has found .\nsuicide bombers have attacked a building belonging to afghanistan 's national directorate of security -lrb- nds -rrb- in the capital , kabul , officials have told the bbc .\nleeds rhinos prop mitch garbutt has apologised for his red card in sunday 's world club challenge defeat by north queensland cowboys .\ncoach toni minichiello has been by jessica ennis-hill 's side through the highs and the lows of her golden career .\ntwo real-life brothers , an actress who has played two previous roles in eastenders , a bloke from benidorm and a bearded dragon called rooney - this is the new `` not-to-be-messed-with '' eastenders family .\naction taken by police on a soldier who died after being handcuffed during a disturbance was `` reasonable and proportionate '' , an investigation found .\ncardiff city are waiting to discover the extent of the injury to kenwyne jones that forced the striker to miss saturday 's draw at preston .\ncrossrail workers have made their latest breakthrough by tunnelling under the city of london .\nthe new south western rail franchise holder has been criticised by a union for allegedly refusing to guarantee a second staff member on board its forthcoming trains .\nex-marussia driver max chilton dedicated his victory in the indy lights race on saturday to his friend and former team-mate jules bianchi .\none of scotland 's most successful entrepreneurs has sold his tyre-fitting business for # 50m to michelin .\nwigan have the confidence to go on and win the super league grand final after overcoming leaders warrington on friday , says half-back matty smith .\noutside the courthouse in brooklyn where the trial of the fifa officials charged with corruption will take place is an all-weather football pitch crowded throughout the week with players of all ages .\nan 88-year-old woman who became the oldest competitor in this year 's london marathon has confirmed sunday 's event will be her last .\na british-based firm has designed a cricket helmet aimed at preventing another tragic death like that of australian phillip hughes last year .\nstanding seven feet tall , china 's maritime giant admiral zheng he led the world 's mightiest fleet , with 300 ships and as many as 30,000 troops under his command .\na gp should have been more curious about a 12-year-old boy 's symptoms and seen him `` as soon as possible '' the day before he died , a court has heard .\nthe hiatus in the rise in global temperatures could last for another 10 years , according to new research .\nthe world 's food security is increasingly reliant on 14 `` chokepoints '' for trade , a think-tank report has warned .\ngreece has ruled out taking legal action against the uk to reclaim the elgin marbles from the british museum .\ncardiff city chairman mehmet dalman says the `` jury is still out '' on manager russell slade .\na decision to suspend a powys county councillor has been upheld .\ncyprus 's parliament has postponed an emergency session on a controversial bailout deal for the country 's banks .\nit would have been easy for lee smith to turn his back on rugby union after a stint with wasps in 2009 ended after only five months .\na us court has ordered that president donald trump release records of visitors to his mar-a-lago resort in southern florida .\nmidfielder bastian schweinsteiger has been left out of manchester united 's europa league squad .\ncanada post will phase out home delivery in urban areas over the next five years as the postal service struggles to rein in persistent losses .\nthe leading centrist candidate in france 's presidential election , emmanuel macron , has received a boost after allying with a veteran moderate .\naustralia 's new pm malcolm turnbull is facing fresh calls to shut down offshore migrant detention centres .\nsyrian refugees facing their first christmas in wales are sure to get a `` warm welsh welcome '' , the first minister has said .\nthe scotland bill 's passage through the house of lords has been delayed while wrangling over the fiscal framework continues .\na second multifuel power station has been approved for ferrybridge .\nfactory activity in the world 's second largest economy , china , shrank the most in two years in july as new orders fell more than expected .\nan indian court has sentenced a senior bjp party member to 28 years in jail for her part in murdering 97 people in the 2002 gujarat religious riots .\nhundreds of people gathered in ramsgate to pay tribute to 18 airmen who took part in a wartime operation known as the channel dash .\nedinburgh zoo has said it believes its panda tian tian is pregnant and may give birth at the end of the month .\ntwo italian senators have been suspended for five days after allegedly making obscene gestures at female colleagues during a senate debate .\nall pictures are copyrighted .\nif you spent $ 9bn a year on research and development and employed 900 of the world 's top computer scientists to come up with new ideas , what would you expect in return ?\npeople have been warned not to eat shellfish in parts of argyll and bute after raised levels of toxins were found .\nhazardous smog blanketing china 's north-east has sparked more red alerts , with authorities advising residents in 10 cities to stay indoors .\ntaking home more than $ 115m -lrb- # 72m -rrb- has made beyonce this year 's best paid woman in music .\nuk government arms sales to saudi arabia are lawful , the high court has ruled , after seeing secret evidence .\nthe bank of england has left its main interest rate at 0.25 % but says another cut is still a possibility .\nafter school some of you might like to play musical instruments , but can you imagine coming from a home where everyone is a top musician ?\nthe ulster football championship finally came to life as two odhran macniallais goals helped 14-man donegal subdue fermanagh in a fiery contest .\nthe israeli government has taken steps to reduce the penalties for personal marijuana use .\ntelephone and broadband provider talktalk saw profits more than halve following a hack attack on its systems last october .\nfrench rider franck petricola has died following an accident during a qualifying session on wednesday at the isle of man tt races .\ntwo nurses who failed to carry out blood glucose tests on patients and then faked the results have been jailed .\na family of 12 from luton , including a baby and two grandparents , could have travelled to syria after going missing , police have said .\nbritain will host the 2017 international blind sports federation -lrb- ibsa -rrb- european judo championships from thursday 3 to sunday 6 august .\nthese amazing forest buildings could help tackle china 's pollution problems .\na vicar 's son who asked a teenage girl to perform a sex act with a dog while online at his father 's vicarage has been jailed for a year .\njuan mata starred on his full debut as chelsea cruised past a toothless sunderland side despite a late scare .\nformer ch supt david duckenfield faces 95 charges of manslaughter and five other senior figures will be prosecuted over the 1989 hillsborough disaster .\ngraeme shinnie 's 25-yard strike secured aberdeen a narrow victory over apollon limassol in the first leg of the europa league third qualifying round tie .\nat least 400 people have been arrested in venezuela after rioting and looting over food shortages .\nan aristocrat who wrote an online post offering â # 5,000 to anyone who ran over businesswoman gina miller has been found guilty of two charges of making menacing communications .\na us citizen held for more than a year in north korea has been moved back to a labour camp , us officials say .\nalex wakely and rob keogh both scored centuries as northants continued to assert their authority over leicestershire , before setting them a victory target of 394 at northampton .\nclutching red carnations , they approached the armed police manning the security cordon : four russian women determined to leave a tribute outside their embassy .\nsix people have been arrested in cheltenham as part of a large-scale police operation into drug dealing in the county .\nwhile it has n't been an epic encounter like the referendum on the good friday agreement or the following struggles for dominance within unionism and nationalism , i do n't agree that the 2015 westminster campaign has been lacklustre .\nospreys backs coach gruff rees says they were `` emotionally devastated '' at missing out on a european champions cup quarter-final by losing to exeter .\nthe russian state wanted former spy alexander litvinenko dead , the inquiry into his poisoning has been told .\na crowd-funding campaign has raised more than $ 40,000 -lrb- â # 30,000 -rrb- to help ethiopia 's olympic marathon silver medallist feyisa lilesa seek asylum .\namerica 's phil mickelson carded a 63 , the joint-lowest round in major history , to lead on eight under after day one of the open at royal troon .\npolice have issued a warning about heroin after the deaths of three people in five days .\ntwenty men have been found living in `` poor conditions '' during four simultaneous raids across the west midlands , police said .\nill-health or disability is forcing one in eight people to stop working before they reach the state pension age , the tuc says .\na man has been injured after a tipper truck ploughed into his cottage and ended up embedded in a wall .\nan investigation is under way into a pilot 's reports of cockpit smoke which led to an easyjet flight diverting .\na former celtic football club youth coach and kit man is to stand trial for alleged child sex offences .\nclashes have broken out in indian-administered kashmir on the anniversary of the killing of a militant leader .\na man has been arrested on suspicion of murder by police searching for a missing woman .\nplans for an â # 80m dinosaur-themed museum in a quarry have been boosted by â # 37,300 of heritage lottery funding .\njeremy corbyn has pledged to extend public ownership of the country 's bus networks if he becomes prime minister .\na london council has withdrawn an order forcing a mother to send her home educated child to school .\nseagulls have come to the aid of campaigners fighting to save a former hospital from immediate demolition .\na 15-year-old malaysian boy has had the parasitic foetus of his twin removed from his stomach , malaysia 's bernama state news agency reports .\na man thought to have been killed by the drug mdma had taken a `` much more potent version '' of spice , greater manchester police has said .\npaddy mccourt has left league two side luton town by mutual consent to return to his native northern ireland .\ndoctors have asked the high court to hear new evidence in the case of terminally ill charlie gard .\nst johnstone midfielder liam craig has signed a contract extension with the perth club , keeping him at mcdiarmid park until the summer of 2019 .\nan snp mp has been cleared of any wrongdoing after a police investigation into his financial dealings .\na lorry driver has been jailed for six years for causing the death of a three-year-old girl in a pile-up in which her pregnant mother suffered a miscarriage .\nargentina thrashed guinea 5-0 on friday at the under-20 world cup in south korea to knock the african side out of the tournament .\npowerful typhoon chan-hom has made landfall along the coast of china 's eastern zhejiang province .\nthe biggest music stars in the uk , are getting ready for a huge event today .\nthere is a `` chronic '' need for more housing for prison leavers in wales , according to a charity .\nex-england wicketkeeper paul downton has been named as the england and wales cricket board 's new managing director .\none direction is not on the verge of splitting up , despite rumours started on social media .\nthe body of kim jong-nam , half brother of north korean leader kim jong-un , has arrived in pyongyang , chinese officials say .\na man in his 70s has been left shaken but uninjured after a burglary at his home in east belfast .\nthis friday marks the 100th anniversary of one of the deadliest battles in world war one .\nacademy trusts are no better than local authorities at raising school standards , researchers have found .\nthe publication of key financial performance data from the nhs in england will be delayed until after the election , the bbc understands .\na french woman who was taken hostage in yemen in february has arrived in paris after being freed by her captors .\ntwo welsh cities hoping to become the uk city of culture are planning multi-million pound improvements if they win .\nmore than 1,300 militants from so-called islamic state were killed by british air strikes in iraq over a 12-month period , according to new figures .\nsri lanka spinner rangana herath has announced his retirement from limited-overs internationals .\nthe bodies of a mother and her seven-year-old son have been discovered at their home .\nresidents are returning to their homes after an operation to move an unexploded mine discovered in the firth of clyde .\nat least 45 people have died , including 15 children , after a building being constructed illegally collapsed near the indian city of mumbai , police say .\na man in his 50s has died as his car hit a parked lorry in kent .\ntouchscreen tablets and phones are popular in almost every respect but one - the smears that fingers leave on the screen .\nparents are being urged to get their children vaccinated following an outbreak of measles at a nursery school in port talbot .\nlevels of violence have `` risen sharply '' at bristol prison , with not `` enough being done to protect some vulnerable prisoners '' , a report has found .\ndefender shay logan has signed a new two-year deal with aberdeen , keeping him at pittodrie until 2018 .\nthe president of the breakaway georgian region of abkhazia is said to have fled the capital sukhumi after opposition protesters seized his office .\nedinburgh is closer to becoming the country 's first 20mph city after councillors approved plans to begin rolling out the speed limit .\nsaudi arabia has launched a massive tourism development project that will turn 50 islands and other sites on the red sea into luxury resorts .\nnewport chairman gavin foxall says the board consulted the players before opting to sack manager graham westley .\nall victims of crime should be given the chance to make a statement in court about the impact the offence has had on their lives , the victims ' commissioner for england and wales has said .\nguernsey 's minister for health and social services has resigned , ahead of a planned states debate on a motion of no confidence .\nsyrian rebels say they have seized control of the strategically important northern town of al-rai from the group known as islamic state -lrb- is -rrb- .\na council has been ordered to pay # 91,000 compensation to a former employee who was sexually abused by one of its officials .\nthe investigation into manchester bomber salman abedi 's connections has already branched out in multiple directions , and the whole nature of tracking people before they commit an act of terror is bewilderingly complex .\njenson button has emerged as a potential target for williams next season if they lose valtteri bottas .\npakistani national abid naseer was convicted of plotting attacks in several countries after being extradited to the us from the uk , where police believe they averted an `` atrocity '' by his detention .\na woman jailed for embezzling more than # 1.3 m from her employers has been ordered to pay back nearly # 600,000 .\nfalkirk manager peter houston has played down newspaper reports that barcelona are pursuing tony gallacher .\nbosses at gatwick airport have unveiled five `` guarantees '' they hope will convince the airports commission to approve a second runway .\na grand jury has decided not to indict anyone in the case of sandra bland , who died in a texas jail earlier this year .\ncouncils in the most deprived areas of england have been hardest hit by cuts to their funding , the public accounts committee has said .\nengland manager roy hodgson 's gamble of making wholesale changes backfired badly as they stumbled to a goalless draw against slovakia in saint-etienne .\nskeletons unearthed in london crossrail excavations have been found to be black death victims from the great disease of the 14th century .\non the 31st floor of an upmarket block of flats in hong kong 's energetic wanchai district , british banker rurik jutting brutally killed two indonesian women in what would become known as one of the city 's most notorious killings .\nthe us and other world powers have said they are ready to arm libya 's un-backed unity government to help it fight the self-styled islamic state -lrb- is -rrb- group .\nrobbie grabarz won high jump silver on another otherwise disappointing day for british athletes at the world indoor championships in portland .\na leading researcher says industry must `` wake up and invest more '' in urinary catheters .\nbritain 's kal yafai won the wba super-flyweight title with a unanimous decision over luis concepcion .\nbombay house in the historic fort area of mumbai is an iconic building .\na man who tried to get home on a 2.5 tonne road roller after a night out drinking in dumfries has received a 15-month driving ban .\nthe united nations has called for a special court to try war crimes committed during the sri lankan army 's long conflict with tamil tiger rebels .\nsomali pirates who hijacked an oil tanker have released it without condition , according to officials .\nthe pro-independence blogger behind the wings over scotland website has been arrested for alleged online harassment .\nrupert murdoch 's news corp has reported a loss for the three months to december , amid a difficult environment for print advertising .\nchloe grace moretz is not a fan of body shaming .\na six-year-old girl , who survived a cancer battle , is back in hospital after being injured when an inflatable slide blew into a crowd in high winds .\nthere have n't been many good moments for myanmar 's rohingya muslims in the last four years .\nthese roads in northern ireland are closed due to poor weather conditions as of friday 15 january .\nthe indian economy grew at the slowest rate since 2003 in the first three months of 2012 , due to a widening trade gap and poor investment .\nwycombe goalkeeper jamal blackman saved a penalty to thwart blackpool for a second time this season as his side held on for a goalless draw .\na call centre in torfaen which received # 600,000 funding from the welsh government has gone into liquidation .\na 50-year-old man has been questioned on suspicion of the murder of notorious criminal john `` goldfinger '' palmer , detectives have said .\nthere should be a vote in the house of commons on replacing trident before the summer recess , theresa may has said .\nsmoking could play a direct role in the development of schizophrenia and needs to be investigated , researchers say .\nbritain 's adam peaty defended his 50m breaststroke title with another stunning display to complete a world aquatics championships double-double .\nexeter head coach rob baxter says winger olly woodburn is thriving after his two-try haul against bristol .\nin africa , botswana is often seen as a diamond in the rough .\na mother and daughter claimed they have received online abuse after posting a video showing them confront a man about his racist comments .\ntwo bottles of whisky recovered from a shipwreck that inspired the book whisky galore may have been missed from official statistics .\nin a playground in sheikh hamad city , children shriek with delight , while their parents chat in the cool shade of their peach-coloured flats .\nthe ukrainian president says his forces are making an `` organised '' withdrawal from the embattled town of debaltseve .\na drug-addicted doctor watched his wife lose consciousness and struggle for breath moments after injecting her with heroin in edinburgh , a court has heard .\nup to # 500m could be recovered from overseas visitors and migrants using the nhs every year , ministers believe .\nproceeds from the 2017 fa community shield will be donated to support those affected by the grenfell tower fire .\nfurther talks are due to take place between caledonian macbrayne and rmt on ferry workers ' jobs and pensions .\ntens of thousands of trees have been brought down by storms that wreaked havoc across northern and western poland , the forestry service says .\none performance of west end musical matilda was cancelled and another cut short after several members of its cast and their understudies became ill .\nthe bangladeshi government has reinstated a headmaster who was sacked after being publicly humiliated over allegations that he insulted islam .\none person has been taken to hospital after a serious crash on the m4 in cardiff involving a tanker and a van .\nhundreds of runners have competed in hong kong 's first inner-city ultramarathon , despite organisers describing it as `` quite boring '' .\nfrank mccourt , the former owner of the la dodgers baseball team , is set to buy french ligue 1 club marseille .\neight years ago the government rescued lloyds by taking a 43 % stake for just over â # 20bn .\nsevilla have signed spain forward nolito from manchester city on a three-year contract for an undisclosed fee , reported to be # 7.9 m .\nthe death of a man in a road crash in surrey may be linked to an `` altercation '' at a flat nearby , police have said .\nbritish researchers are now routinely mapping a great swathe of earth 's surface , looking for the subtle warping that ultimately leads to quakes .\nemergency aid is beginning to reach some of the worst-hit islands of vanuatu , helping people there after a cyclone destroyed whole villages .\never since ukraine 's february revolution , the kremlin has characterised the new leaders in kiev as a `` fascist junta '' made up of neo-nazis and anti-semites , set on persecuting , if not eradicating , the russian-speaking population .\nirish police say further arrests are expected as part of an investigation into the background of one of the london attackers who lived in the republic of ireland .\nleicester midfielder danny drinkwater is fit despite having been unavailable for england duty because of a minor hip problem .\nclamping down on the problem of nigerians being trafficked to the uk is a main priority , the first independent anti-slavery commissioner says .\nseven men have been sentenced to 10 years for the rape and kidnapping a schoolgirl in the chadian capital , ndjamena .\nthe solicitor representing paedophile gordon anglesea has confirmed they will be appealing his conviction .\nboeing has successfully shot a drone out of the sky using a high-powered laser during a test , the company says .\nforget james bond , when it comes to recruiting spies needed to protect britain there are n't enough jane bonds .\nnour is a woman from raqqa , the so-called islamic state 's -lrb- is -rrb- capital inside syria .\nbanned cyclist lance armstrong 's fight against a $ 100m -lrb- # 79m -rrb- lawsuit by the us government has been set for a trial starting in washington on 6 november .\n-lrb- close -rrb- : standard chartered was the biggest faller on the market , dropping 8.7 % after the asia-focused bank announced plans for a big rights issue .\nthe aa has warned that it may have to raise its prices because the government has doubled the tax rate on insurance policies in less than two years .\nmore than # 1.3 m in fines were issued in the two months after a new bus lane was introduced in preston city centre .\na koala in australia has been dubbed `` bear grylls '' after it was hit by a fast-moving car and survived when it got wedged in the car 's front grill .\na musical version of the secret diary of adrian mole aged 13ยพ has opened as a tribute to the book 's author sue townsend .\na discovery of arms in a county antrim forest was one of the most significant in recent years , police in northern ireland have said .\nit was back in august last year that mark dodson , chief executive of scottish rugby , and philip browne , his counterpart in the irish rugby football union , truly raised the alarm about the pro12 .\nan academy in bradford has sent home 152 pupils for arriving at the school gates without meeting its dress code .\nunder a fading blue sky , the imminent arrival of u2 on stage in the irish capital was heralded by two songs - thin lizzy 's the boys are back in town and the waterboys ' whole of the moon .\naustralia weathered a welsh storm to win world cup pool a with a 15-6 victory at twickenham .\na police officer who thought his childhood abuser had died before he chanced across him online has said the man 's conviction brought him `` closure '' .\nthe main suspect of ploughing a truck into a department store in central stockholm , killing four people , had been denied residency in sweden and had expressed sympathy for so-called islamic state -lrb- is -rrb- , police and reports said .\ntwo missiles were fired at a us warship from rebel-held territory in yemen as it passed through the red sea on sunday , the us navy has said .\nfollowing his barnstorming set at glastonbury , soul legend lionel richie has announced a residency at the planet hollywood resort & casino in las vegas .\nqueen of the south fought back from two goals down to draw with promotion-chasing falkirk in the championship .\nspanish cyclist joaquim rodriguez says he will retire from the sport by the end of this season .\na motorcyclist died and a five-year-old boy was left in a serious condition in a crash in east london .\nblackberry has announced its biggest smartphone to date .\na paralympian has said an mri scan showing no sign of a tumour that had threatened to crush his spinal cord was better than winning a gold medal .\nformer oil tycoon mikhail khodorkovsky , a fierce critic of russian president vladimir putin , says he is considering applying for political asylum in the uk and feels safe in london .\ngreenock morton boss jim duffy says it would be a huge shock if his side were to knock rangers out of the scottish cup at ibrox on sunday .\nveterans and soldiers attended a ceremony at portsmouth 's cenotaph to mark the 70th anniversary of vj day .\ngreat britain 's jack burnell said his disqualification from the men 's 10km open water swim was `` a joke '' , after dutchman ferry weertman took gold .\nlondon irish scrum-half brendan mckibbin has been suspended for three weeks by the rugby football union for stamping on bath 's henry thomas .\nleague one play-off chasing millwall missed the chance to make significant ground on the top six as they were held to a goalless draw by walsall .\nthe number of children and young people needing counselling about online bullying has increased by 88 % over five years , according to a helpline .\nan american woman accused of travelling thousands of miles to commit a child sex offence in north wales has been cleared after her case was dropped .\nrussia is not the only country with systemic doping problems , says uk athletics chairman ed warner .\nturkey has recalled its envoy to the vatican after pope francis described the mass killing of armenians under ottoman rule in ww1 as `` genocide '' .\na `` game-changing '' drug which dramatically cuts the chances of hiv infection will be provided in wales as part of a three year trial .\ncannabis with an estimated street value of 3.2 m euros -lrb- # 2.7 m -rrb- has been seized in a joint operation by police and customs in the republic of ireland .\ntwo staff members have admitted failing to take reasonable care of a disabled pupil who suffered brain damage when he was submerged in a swimming pool for 90 seconds .\nthe devolution settlement for wales is less fair than those offered to scotland and northern ireland , the archbishop of wales has said .\na wine decanter taken from a church during the highland clearances and used by evicted families to feed milk to babies has been gifted to a museum .\nthe centenary of the battle of the somme has been marked with ceremonies in the republic of ireland .\nthe bbc trust has said no action is required over comments chris packham made in bbc wildlife magazine .\na schoolgirl with an `` ultra-rare '' genetic condition is celebrating a decision to fund life-changing medication on the nhs in wales .\none of the world 's rarest species - the northern hairy-nosed wombat - has been given a much-needed boost with a brand new arrival .\nthe internet is reinventing the christmas tv commercial , making it more creative , more ambitious - and arguably more self-regarding .\none of northern ireland 's best-known birds has been added to a list of those that are giving major concern to conservationists .\na town centre footfall study in the borders has recorded a 6 % rise across eight main towns in the region in 2015 compared with the previous year .\nscarlets flanker james davies has apologised for his `` unforgiveable actions '' in their european champions cup defeat at toulon on sunday .\nthe islamic state -lrb- is -rrb- group has released a video appearing to show the destruction of statues in iraq .\ntwo men have been charged over the attempted armed robbery of a shop in londonderry .\npraise has poured in for cyclist bradley wiggins and rowers helen glover and heather stanning after they scooped britain 's first gold medals of 2012 .\na `` complete lack of common sense '' in the department for transport 's handling of the west coast main line franchise deal will cost taxpayers '' # 50m at the very least '' , mps have said .\nnottinghamshire 's relegation from the county championship 's top flight is `` embarrassing '' , according to director of cricket mick newell .\na man armed with a machete has forced his way into the rural home of kenya 's deputy president william ruto after wounding a police guard , police say .\na lioness rescued from a zoo in the war-torn syrian city of aleppo has given birth just hours after arriving at a wildlife park in jordan .\nthe former israeli prime minister , ehud olmert , has been charged with taking bribes in a property scandal .\na man was limp `` like a teddy bear '' after he was restrained by bouncers on the ground outside an aberdeen bar , a murder trial has heard .\ncarl frampton 's world featherweight title bout with defending champion leo santa cruz will take place on 30 july in new york .\nan ohio judge has ruled that the rape trial of two high school football players will take place in the county where the alleged attack happened .\nplans aimed at preserving the heritage of mountains in snowdonia deemed `` at risk '' have taken a step forward .\na man has described how he felt compelled to drive 200 miles in the middle of the night to help people affected by the manchester attack .\ndiscovery communications , owner of the discovery channel and animal planet , is buying scripps networks for $ 14.6 bn -lrb- â # 11.1 bn -rrb- in a deal that combines two major us television companies .\na total of six people were arrested after the aberdeen v celtic game at pittodrie on friday .\nbroadchurch actress julie hesmondhalgh has become the patron of a rape crisis charity following her depiction of a rape victim in the itv drama .\nthe braemar gathering group has been holding a traditional street party with local residents in royal deeside .\nkenny shiels ' derry city reign got off to a losing start as finn harps earned a deserved 2-1 victory in the league of ireland premier division opener .\npolice in fife are searching for a man who was seen exposing himself in dunfermline .\na man is to appear in court over the suspicious death of a 34-year-old in dundee .\nrussia is holding combat readiness exercises involving 8,500 troops , with dozens of ships and aircraft , in a southern region near areas of eastern ukraine held by pro-russian rebels .\nengland held on to win the third one-day international against india by five runs as ben stokes found redemption at eden gardens .\na tory councillor being investigated over a racist tweet which appeared on his account has quit as a magistrate .\nthe connection between peterborough cathedral and henry viii 's spanish queen is little known outside the city .\nathletics stars mo farah and greg rutherford have shared their tips for young athletes with newsround .\nleague one side southend have signed midfielder sam mcqueen on loan from southampton for the rest of the season .\nofficials at yellowstone national park say a man died after falling into a hot spring , having wandered away from a path .\npresident barack obama has urged the us to `` reject despair '' as he paid tribute to five police officers killed during a deadly sniper attack in dallas .\ndna from ancient remains seems to have solved the puzzle of one of europe 's most enigmatic people : the basques .\nthe investment fund which bought nama 's northern ireland portfolio was told by a law firm that it could get them `` access '' to the ni executive , an irish parliamentary committee has heard .\nbarcelona are a `` machine '' who are likely to dominate possession against manchester city on wednesday , says the premier league club 's manager pep guardiola .\nospreys survived a second-half onslaught by ulster to all-but claim a place in the pro12 play-offs .\nmali 's army has carried out a `` series of summary executions '' as it fights to recapture the islamist-controlled north , a rights group has said .\narsenal midfielder santi cazorla is to have an ankle operation that could rule him out of action for a further three months .\nthree senior officials are to leave their roles at aberdeen city council .\nthe man suspected of carrying out a deadly shooting at a florida airport has been charged by prosecutors .\nireland 's former world champion martyn irvine has retired from competitive cycling after failing to qualify for the rio olympics this summer .\nscientists say they have a clue that may enable them to find traces of the asteroid that wiped out the dinosaurs in the very crater it made on impact .\naustralian golfer robert allenby says he was kidnapped from a bar in hawaii , robbed and beaten , before being dumped in a park .\nconcerns have been raised about the growing number of websites offering students bespoke academic essays in return for a fee .\nthe soloist , one of belfast 's most distinctive office developments , has been sold .\nnigerians have been reacting angrily to a draft bill being discussed in the senate which aims to punish anyone who `` propagates false information '' on electronic media .\nred bull has dismissed reports it is interested in buying west ham , while the east london club 's owners have told bbc sport they are not looking for investors .\nformer england all-rounder chris lewis will visit every first-class county before the season to try to ensure no player follows his path into crime .\nuk economic growth accelerated in the second quarter of the year , helped by a big jump in oil and gas production , official figures have shown .\ndavid beckham has changed his speech over the past decade to `` sound less working class '' , university of manchester academics have concluded .\nnorway has rejected a plan to give its neighbour finland a mountain to mark the centenary of its independence .\nbrazilian football star neymar has appeared in court in connection with allegations of corruption and fraud surrounding his transfer to fc barcelona .\nnorthern ireland 's top education official has accused teachers of harming children 's education by taking industrial action .\ngateshead are in discussions to offer new deals to jj o'donnell , george smith , liam hogan and gus mafuta for next season 's national league campaign .\nthe assembly 's presiding officer is urging people to make sure they are registered to vote in may 's elections .\nfrank ocean , one of pop music 's biggest enigmas , has played his first uk gig in three years as sunday 's headliner at the parklife festival in manchester .\nvenezuela 's vice-president aristobulo isturiz has ruled out the possibility of a recall referendum being held against president nicolas maduro .\nscientists say they now have a near-perfect picture of the genetic events that cause breast cancer .\na chronology of key events : .\nbirds ' nests have been deliberately destroyed and seals and dolphins disturbed around jersey 's offshore reefs , the states has said .\nsenior us officials have been setting out their position on russia , in some of the new administration 's first diplomatic moves .\nin 1942 , the economist sir william beveridge set out a vision which was to shape the times .\nby the end of this decade , four out of every 10 of the world 's young graduates are going to come from just two countries - china and india .\nbatsman joe root has credited sacked coach peter moores with the form that resulted in him being named england 's player of the year .\nan examination for students in south korea and hong kong hoping to study at us colleges has been cancelled after `` credible evidence '' emerged that it had been leaked in advance .\na former chief medical officer has been appointed to lead a review of the approach to targets in scotland 's nhs .\nillegal immigrants will find it harder to set up home in the uk under planned laws , says home secretary theresa may .\nsouth korean car maker kia has come top in a closely watched us car quality ranking , edging out the luxury brands that usually claim the crown .\nthe us secretary of state rex tillerson has said he only accepted the job after being convinced by his wife .\nbritain 's andy murray became wimbledon champion for the second time with a superb performance against canadian sixth seed milos raonic in the final .\nscientists have sequenced the genome of a type of ash tree with resistance to the deadly fungal disease sweeping the uk .\narguments over brexit have been raging in parliament and the country since june 's leave vote and this week they move to the high court .\na mother whose two daughters swam for eight hours to safety when their boat sank in rough seas in indonesia has spoken of their ordeal .\nthe mother of a boy taken off a plane at gatwick due to a lack of seats is demanding easyjet overhaul its ticketing process .\na cancer treatment hospital in greater manchester is being investigated by the health regulator .\nwhen narendra modi won the general elections a year ago , the uk 's financial times called him `` india 's first social media prime minister '' .\nricardo santos scored his first barnet goals as they moved into the league two play-off places with victory at leyton orient .\ninterim boss gary brazil says he would take any role at nottingham forest and has not ruled out accepting the manager 's job on a longer-term basis .\nsantander and deutsche bank have failed a us `` stress test '' designed to assess whether lenders can withstand another financial crisis .\nafc bournemouth have signed australia international goalkeeper adam federici from reading on a three-year deal .\na public spending watchdog has cleared scotland 's culture secretary of any wrongdoing over a government grant to the organiser of t in the park .\nformer liberal democrat mp david laws has confirmed he will not stand for parliament again after taking a new role with an education think-tank .\na 17,000-tonne oil rig which ran aground on the western isles in early august has arrived in malta .\na german woman is suing pharmaceuticals giant bayer , claiming its contraceptive pill yasminelle caused her to suffer a pulmonary embolism .\na man suspected of arson and vandalism has sent a selfie to police because he found the photo in his arrest warrant to be unflattering .\nthe global financial system is venturing further into the bizarre world of negative interest rates .\nformer loyalist paramilitary and progressive unionist party -lrb- pup -rrb- chairman william ` plum ' smith has died .\nthese days it is not enough just to be a millionaire to count yourself as one of the super-rich - you need to be worth between $ 50-100m -lrb- # 33m - # 66m -rrb- .\nthe sister of a portstewart man who died in a tragic accident in china on tuesday , has said the family is `` shocked and heartbroken '' .\nthe belfast giants have awarded a testimonial game to long-serving forward colin shields .\nchelsea forward eden hazard will miss the start of the premier league season after having surgery on a broken ankle .\nthousands of people have come forward following a worldwide appeal to find a stem cell donor for a cardiff university student who needs a match in the next two months .\na man shot his ill wife before killing himself in a suicide pact , an inquest has heard .\ninverness caledonian thistle have confirmed the departure of manager john hughes .\nthe world twenty20 starts in india on tuesday , with scotland and ireland among eight teams aiming to qualify for the main stage of the competition .\nuk sport is under further scrutiny after its treatment of complaints about gb taekwondo was questioned .\nformer drug smuggler turned author howard marks has died at the age of 70 .\nnottingham forest have signed andreas bouchalakis on a three-year contract after the midfielder impressed during pre-season with the championship side .\na south african minister has resigned amid accusations he assaulted a woman in a nightclub earlier this month .\nrescuers say they have recovered 24 bodies following a landslide near the colombian city of medellin .\nsupermarket giant tesco has reported a fall in full-year pre-tax profit after it was fined for overstating its profits in 2014 .\nit should be one of the great space ventures of the decade .\nnick kyrgios said he was `` bored '' as he extended his unbeaten run to six matches with victory over sam querrey at the shanghai masters .\nolympic sprinting gold medallist mark lewis-francis has been named on standby for great britain 's provisional bobsleigh squad for next month 's world championships in austria .\na man 's body has been recovered near a beach in the vale of glamorgan .\nscunthorpe united have signed bradford city winger josh morris for free on a three-year deal .\nwith chris froome 's triumph for britain in the tour de france , cycling is in the spotlight .\npupils preparing to leave primary school are being taught how to deal with stress and to be more resilient as part of a new mental health initiative .\ntwo teenage drug dealers who murdered a man in a revenge attack have been jailed .\nalan stubbs says leaving hibernian for rotherham united was a `` calculated risk '' but `` the right decision at the right time '' .\nvoters in ferguson , missouri , where last year an unarmed black teenager was shot dead by police , have tripled the number of african-americans on the six-member council from one to three .\nthe controversial m74 extension through glasgow has had little impact on road traffic accidents in the city since it opened in 2011 , a new study has found .\nfour suspected illegal immigrants are on the run after a lorry containing ten people was discovered by police following a `` distress '' call from one of the people inside .\nthe family of a british man stuck in india , despite being cleared of weapons charges , has expressed disappointment over a delay in his return home .\nan appeal for witnesses has been made after a woman was inappropriately touched on a train travelling between aberdeen and inverness .\nnigeria has slipped into recession , with the latest growth figures showing the economy contracted 2.06 % between april and june .\nthe vatican and one of australia 's top clerics had failed to properly deal with child sex abuse victims , a retired bishop has said .\narsenal produced a devastating first-half display to dismantle chelsea and secure a fourth successive premier league win .\na suspected firearm has been found by police during a search in west belfast .\nlakes that have been forming near mount everest could threaten settlements downstream if they overflow .\nthe makers of ant & dec 's saturday night takeaway board game have apologised after it was found to have several errors .\na couple accused of carrying out a sex act at a bbc radio 2 concert in hyde park must wait to hear if they face a retrial after the jury was discharged .\nwest brom manager tony pulis says they have moved on from saido berahino 's threat to strike after he scored the only goal in their win at aston villa .\na former police officer who shot an unarmed black teenager in the head has been indicted on a murder charge by a grand jury , prosecutors in the us state of texas say .\nswansea 's caretaker manager alan curtis says there would be no guarantee the club would return to the premier league if they were relegated this season .\nlincoln city have signed shrewsbury winger james caton on loan until the end of the season .\na teenager was assaulted and robbed as he got off a train in east renfrewshire .\nthree nightclub doormen have told how they helped rescue a man trapped in an upturned car in a water-filled ditch .\npeterborough united are still suffering from their fa cup penalty shootout loss to west bromwich albion , according to manager graham westley .\na soldier who was killed while on patrol in afghanistan has been repatriated to the uk .\nmore than 2,500 family , friends and well-wishers gathered for the funeral of otto warmbier , the us student who died after falling into a coma while in prison in north korea .\nfrom shipwrecks to terror attacks to an air disaster involving paris hilton , it seems that almost nothing is off-limits for the prank shows that have become a staple of north african tv during the islamic fasting month of ramadan .\ngreat britain 's callum hawkins was beaten into second by usa 's leonard korir in a dramatic sprint finish at the great edinburgh cross country .\nukrainian prosecutors are questioning a 20-year-old mother after she allegedly left two toddlers in her flat for nine days , and one starved to death .\nonly two weeks after his first training session in rugby union , josh charnley will make his debut for sale sharks in friday 's anglo-welsh cup game against wasps .\nsir bradley wiggins and mark cavendish have been confirmed among 126 riders for the 2016 tour of britain , which begins in glasgow on sunday .\nglamorgan batsman colin ingram has signed for adelaide strikers and will play in australia 's big bash competition for the first time .\nlewis hamilton says both he and his mercedes team have to be more consistent if they are to beat ferrari to the world championship this year .\na lady penelope puppet , donated by the son of thunderbirds creator gerry anderson , is to be sold for charity .\na leading human rights organisation has urged nato to investigate fully the deaths of civilians in air strikes in libya last year .\noxford united have signed midfielder joe rothwell on a free transfer and agreed a new contract with striker chris maguire .\npowys council is to take over the role of regulating britain 's estate agents from the office of fair trading -lrb- oft -rrb- from 1 april .\nstaff at eastbourne district general hospital have met nhs bosses over proposals to downgrade services amid claims that patient care will suffer .\ntwo veteran raf glider pilots have returned to the `` cockpit '' at a museum in gloucestershire to mark the 70th anniversary of operation varsity .\na man died when the car he was in was hit by a train at a level crossing .\nthree premier league clubs have denied `` false '' doping allegations made by the sunday times .\nthousands of football fans were sent a scam email asking them to pay a bill after a scottish football association database was apparently hacked .\ndundee united manager mixu paatelainen expects the battle to avoid relegation to last until the season 's final game .\nthe number of religious holidays has come under scrutiny in south africa , after a report suggested that minority groups were discriminated against because only christian holidays are officially recognised .\na signed beatles ticket from a concert in norfolk in 1963 is expected to fetch up to # 2,000 at auction in london .\nhuddersfield giants confirmed their super league status for another season with a comfortable win over bottom side leigh centurions .\narmagh moved to within a point of top spot with a 3-15 to 0-11 victory over louth side in drogheda .\njake sheppard 's late wonder strike kept dagenham second in the national league with a 2-1 win over mid-table bromley at victoria road .\na potential major disaster in the north sea has been narrowly averted after a large , unmanned barge went adrift in stormy high seas and came close to colliding with offshore oil platforms .\none of japan 's leading advertising agencies has been charged over the death of an employee from overwork .\nthey are more familiar with recycling the ball than rubbish but five rugby players took a break from the pitch to collect refuse in neath port talbot .\nst colman 's newry progressed to the macrory cup final by beating st ronan 's lurgan 0-14 to 0-8 in thursday night 's semi-final at the athletic grounds .\nhayley turner , britain 's most successful female jockey , believes her career has helped inspire other women to progress in the sport .\nthe daily show , whose host jon stewart is stepping down after 16 years at the helm , is a comedy programme , yet regular viewers know that laughs are just one part of it .\nengland 's collapse on the final afternoon of the fifth test is one of the worst i have seen - and i have witnessed a few .\npolice seized 16 petrol bombs in west belfast after one was thrown at officers in the area earlier this week .\nthe security of the uk 's biggest internet service providers needs `` major improvement '' , according to one expert .\nword had it that blind derek had all the answers .\nan american who helped run a successor to the silk road drug marketplace has been sentenced to eight years in jail .\nhull have put takeover talks on hold until september to `` ensure stability during the transfer window '' .\nbritain will resist pressure from the european union for a swift start to negotiations on its withdrawal from the bloc , foreign secretary philip hammond has indicated .\nthree men who tried to smuggle 20 people into the uk in a lorry have been jailed .\nceltic , rangers and aberdeen were all handed home ties after the draw for the scottish cup quarter-finals .\nthe first significant step to putting the paris climate agreement into practice will take place on friday .\nthe taliban have seized a police base in northern afghanistan and captured scores of officers after three days of fighting , officials say .\na liberal democrat parliamentary candidate has defended accepting money from a peer who left the party after plotting against its leader nick clegg .\nthe education minister has commended staff at a county antrim school for their actions after a father and his two children were hit by lightning .\npole vaulter sally peake hopes victory at saturday 's welsh senior athletics championships in cardiff will take her as step closer to the olympics .\na troubled isle of wight academy is set to merge with another school , its sponsor has announced .\nflanker sean o'brien has been named in the ireland team to face scotland in saturday 's six nations opener .\nwigan 's championship relegation worries deepened with defeat at ipswich .\na warrant has been issued for scotland international footballer robert snodgrass after he failed to turn up for his court trial .\nukip has set out its defence policy , including a new independent veterans ' minister and a national defence medal for all members of the armed forces .\na car involved in an apparent hit-and-run with a couple on a tandem bicycle was being followed by police at the time , it has emerged .\nsecurity has been increased at france 's interests abroad after a french satirical magazine published obscene cartoons of the prophet muhammad .\nferrari 's kimi raikkonen and sebastian vettel topped second practice at the chinese grand prix , ahead of mercedes duo nico rosberg and lewis hamilton .\na man has died after he was struck by a van while crossing a road in glasgow .\na man who was in a critical condition after a shooting in rhondda cynon taff two months ago has now died , police said .\naustralia were `` overly sensitive '' to postpone their tour of bangladesh over security concerns , says pakistan cricket board president shahryar khan .\na woman has died and an eight year-old boy was injured after a rally car left a forest track and hit spectators in the highlands .\nabdullah mohammed hassan climbed down from his perch , and strolled purposefully into the sea to rescue yet another bather who appeared to be struggling against big waves and a rocky , barbed-wire-infested shoreline at lido beach , on the northern edge of the somali capital , mogadishu .\ndisplay restrictions on cigarettes and tobacco products sold by small traders in wales have come into force .\na woman had her hair set alight in a `` nasty and extremely dangerous '' attack at a mcdonald 's restaurant in kent , police said .\na hampshire police officer has been charged with making indecent images of a child , sexual assault and grooming a girl under 16 .\nmps will question the chairman of the iraq war inquiry later this month for the first time since it published its official report in july .\na british army regiment has announced its new sheep mascot following the death of its predecessor .\ngrowth in the scottish economy is failing to pick up pace , according to one of scotland 's main forecasters .\ngeorge clooney has surprised an 87-year-old fan with a bouquet of flowers for her birthday .\ntwo police officers face misconduct hearings over the `` plebgate '' affair involving ex-chief whip andrew mitchell , the police watchdog has said .\nwhen the republic of ireland and italy clash at football , passion and pride are usually not far away .\nthe founder and majority owner of sports direct , mike ashley , has stepped in as chief executive after the surprise resignation of dave forsey .\ngreat britain 's women fell to an overtime defeat by north korea in their third group a game in world championship division two in gangneung .\nthe national union of students has launched a `` payback time '' campaign against mps who broke their 2010 election promise over tuition fees , including leading liberal democrats .\nthe oft has made a move to try to help people access discounts when booking online , after closing an investigation into competition practice between three companies .\ntributes have been paid to a forensic archaeologist who led the searches for the disappeared - people murdered and secretly buried by republicans during the troubles in northern ireland .\na 10-year deal by natural resources wales to sell timber to a sawmill was made without other companies being allowed to bid , the auditor general for wales has said .\nforty-four years after president nixon declared `` war on drugs '' , four us states have now agreed to legalise the sale of marijuana and most americans support legalisation .\na burst water main in eastleigh has caused flooding in a road and left about 4,000 homes without water .\nmanchester city want to buy everton defender john stones , but would have to pay the goodison park club around # 50m for the england international .\nmen 's professional tennis has enjoyed another high-powered year , with record attendances at the association of tennis professionals ' -lrb- atp -rrb- world finals in london last month , as well as a number of major new sponsor deals signed .\nnurseries in england are struggling to recruit qualified staff putting them at risk of closure , campaigners have said .\ndrugs used to treat weak bones in elderly patients suffering from osteoporosis may actually make them weaker , research suggests .\nceltic striker leigh griffiths has yet to score for scotland but is ready to lead the line against slovenia despite admitting he is `` rusty '' .\na christian official has refused to issue marriage licences to same-sex couples in kentucky despite exhausting all of her legal options .\nloganair has announced new services linking aberdeen with durham tees valley airport and norwich .\ndesigns for redeveloping an airport `` remove '' its art deco past , a heritage campaigner has said .\nthe scottish government has published `` radical '' proposals aimed at widening the ownership of land across the country .\npolice scotland has said that it does not collate or hold specific figures on child sexual exploitation .\nformer middlesbrough player craig hignett has been named as the new manager of league two side hartlepool .\n`` we have n't had an earthquake lately , '' was eeyore 's tart response when asked about forecasts that the weather can only improve in the hundred acre wood .\nthe us has expelled two russian diplomats in response to an attack on an american diplomat in moscow , the state department says .\nthe number of syrian refugees resettled in wales has reached at least 397 , according to figures from the home office .\nitalian police have seized assets estimated to be worth about 330m euros -lrb- # 253m -rrb- from a convicted businessman .\nghana coach avram grant says his team deserve respect following criticism by some fans and sections of the media .\nas residents and emergency teams in boston , usa , struggle to deal with 60cm of fresh snow , the roofs of some buildings have collapsed under its weight .\nengland were knocked out of the women 's world twenty20 by australia for the third tournament running with a five-run semi-final defeat in delhi .\npakistan clinched a thrilling 56-run win over west indies in the day-night test in dubai despite a darren bravo century on the final day .\nrecovery of the raf helicopter which burst into flames shortly after the crew was forced to make an emergency landing began on monday .\nthe us military has begun training a small group of syrian rebels in an effort to build a force capable of defeating islamic state militants .\nresearchers at google say they are `` years closer '' to rolling out a network of huge balloons to provide connectivity to rural areas .\npoliticians and businesses have been reacting to united airlines ending their flights from belfast to newark airport .\nnearly 30 years after the hijack of pan am flight 73 at karachi airport , six of the plane 's crew have spoken to the media for the first time .\nindia 's supreme court has rejected travel appeals of the two italian marines accused of killing two indian fishermen in 2012 .\ncalifornia governor jerry brown has vetoed a bill to end a sales tax on feminine hygiene products , a levy that has sparked worldwide debate .\nbromley made it five wins from their last seven national league games with victory over torquay .\nlivingston moved 10 points clear at the top of scottish league one after beating airdrieonians .\nwolves striker jon dadi bodvarsson says they are already getting a much clearer `` message '' of how to improve under new boss paul lambert .\na welsh make-up artist described as a `` genius '' by actor leonardo dicaprio has been nominated for an oscar .\nthe leader of cheshire east council has rejected a call to resign over claims he `` misled '' councillors about contracts awarded to his physiotherapist 's firm .\nscientists and fishermen are teaming up to try to find evidence of one of the world 's rarest sharks off the welsh coast .\na woman has admitted killing her partner who was fatally stabbed after returning home from a day at the races .\nnorthern ireland football fans from carrickfergus , county antrim , prepare to head out to spain following their team 's qualification for the world cup finals in 1982 .\nthree officials in haiti 's governing coalition announced their resignation on wednesday in protest at a remark president michel martelly made at a campaign rally last week .\na toddler was bitten by a sniffer dog while she was visiting a relative in a high security jail in east london , it has emerged .\nthree welsh conservative ams have been `` spoken to '' by their leader for arguing about the party 's m4 policy on twitter .\nbritish army soldiers have raised concerns about their new body armour , the bbc has learned .\nthe uk population grew by almost half a million last year to 64,596,800 , according to figures from the office for national statistics .\npostal ballots with the names of two candidates missing in a hull constituency have been replaced .\neu citizens legally resident in the uk will be entitled to the same rights as british citizens after brexit , the uk prime minister has told eu leaders .\ndeath threats made against wigan rugby league player ben flower , who punched an opponent as he lay on the ground , are being investigated by police .\na journalist in india is facing charges over a report he wrote saying muslims were banned from being yoga teachers under government policy .\na paedophile who travelled from london to south wales has been jailed for three years .\nevidence of progress on reducing the inappropriate use of antipsychotic medication in care homes has been demanded by the older people 's commissioner for wales .\njack leaning struck an unbeaten century as yorkshire piled on the runs against roses rivals lancashire on a rain-affected second day at old trafford .\nnigeria has produced its fair share of great sportsmen and women - but unlike footballers and polo players , cricketers rarely get the west african nation 's heart beating .\npart of altnagelvin hospital in londonderry has been evacuated after smoke was discovered in one of the wards .\nat least six people are reported to have been killed in a bomb attack in a town near lebanon 's border with syria .\nchampionship club wolves have confirmed that they have been bought by chinese conglomerate fosun international .\nfifa has given aston villa midfielder jack grealish permission to play for england .\nan appeal has been launched after two boys were sexually abused at a former care home .\na huge gorilla statue made entirely of spoons for entertainer uri geller has been unveiled by prince michael of kent .\nengland women 's coach hope powell praised her players after they beat japan 2-0 to reach the quarter-finals of the world cup .\norganisers of the henley royal regatta are supplying hours of cctv footage to police after a woman was raped .\nthe ftse 100 closed 25 points , or 0.35 % , higher at 7,404 , after itv announced its new chief executive .\na pakistani christian woman on death row for blasphemy has had her appeal adjourned after one of the judges refused to hear the case .\naustralia should consider adopting a four-day working week or a six-hour working day , a political leader says .\na former worker at the byron hamburger chain , who was arrested and deported after immigration raids last month , says he feels `` used '' .\na man accused of plotting a terror knife attack has appeared in court alongside his sister .\nconductors on southern railway are to stage three 24-hour strikes in a dispute over changes to their role and the introduction of driver-only trains .\ncolumnist kelvin mackenzie has been suspended by the sun after he expressed `` wrong '' and `` unfunny '' views about the people of liverpool .\nsince returning from the women 's world cup , it 's been a pleasant surprise that more and more people have approached me in the street and congratulated england on finishing third .\n`` this is the copaiba tree , '' said derisvaldo moreira , universally known as dedel .\nthree teenagers arrested on suspicion of terrorism offences after being detained in turkey will not face charges , police have announced .\na collapse in the global price paid for recycled waste has cost welsh councils more than # 1m in lost income .\nmanchester city will meet scottish champions celtic and manager pep guardiola 's former club barcelona in the champions league group stage .\nsome 120 diners celebrating a baptism at a restaurant in a north-western spanish town all fled the restaurant at once without paying , the owner said .\na weather warning has been issued for most parts of scotland , with drivers urged to be aware of a risk of ice and snow .\none of the men acquitted of murder in a uvf supergrass trial has launched a legal bid to have the two key witnesses face a possible return to jail .\nwigan prop ben flower has been given a six-month ban - the longest in super league history - for punching st helens ' lance hohaia .\nrussia is planning an alternative version of the wikipedia , the country 's presidential library has said .\nsixty-two men and women from northern ireland , who responded to requests to perform sex acts online , have been targeted by blackmailers .\nbrendan rodgers says it would be a `` remarkable achievement '' for celtic to complete an unbeaten league season .\nthe european court of human rights has ruled that lithuania was wrong to bar former president rolandas paksas from running for parliament after he had been ousted from power in 2004 .\njapan 's supreme court has ruled that all married couples must have the same surname , despite concerns that the practice is discriminatory and archaic .\nqualcomm has said it aims to cut costs and jobs and might restructure itself as it delivers a fresh profit warning in the face of rising competition .\na man has been arrested after a haul of exotic animal parts was seized .\nmore than 1,200 people were evacuated from the o2 arena in london due to a fire at a restaurant .\na woman has died after being hit by a car in ballycastle , county antrim .\nthe vice-chancellors of queen 's university and ulster university have said serious decisions need to be taken over the future funding of higher education in northern ireland .\na man who suggested naming a new # 200m ship boaty mcboatface has apologised .\nlukas jutkiewicz 's 73rd-minute header earned birmingham city a hard-fought point against huddersfield town .\nthe united nations human rights office has warned of `` widespread and systematic use of excessive force '' being used against protesters in venezuela .\nuk-born oliver hart and bengt holmstrom of finland have won the nobel economics prize for work on contract theory .\nmembers of the workers party have held a protest outside the bbc 's headquarters in belfast to highlight what they believe is a lack of coverage given to smaller parties during the assembly election campaign .\na sign resembling a large , red google maps pin has been spotted on an oxfordshire roundabout .\noutdoor learning can have a positive impact on children 's development but it needs to be formally adopted , a report suggests .\na uk-swiss team will use dna testing to investigate the origins of remains claimed to be from yeti and bigfoot .\nbusiness owners on a black country business park say they are not being given enough support to deal with a spate of break-ins .\nengland fly-half emily scott has been forced to withdraw from the squad through injury five days before the women 's world cup starts in ireland .\nsubstitutes marko pjaca and daniel alves struck goals within two minutes of one another as juventus punished 10-man porto to take charge of their champions league last-16 tie .\ncouncil house sales in scotland rose by 26 % following the decision to scrap tenants ' right-to-buy , according to official figures .\nsouth african inductees to the pro12 face a `` brutal '' transition from super rugby , former edinburgh head coach alan solomons has warned .\nresearchers have identified a gene that appears to curb coffee consumption .\njohn lewis 's nottingham store is to remain closed longer than expected after 80,000 litres of hot water leaked from a ruptured heating pipe .\nsomerset 's county championship match at lancashire ended in a draw after rain caused the fourth day 's play to be cancelled without a ball being bowled .\na bus driver whose vehicle caught fire in north ayrshire has been praised after all the passengers were safely evacuated .\nan raf pilot who caused his plane to nosedive while using a digital camera has been dismissed by a military court .\na sheriff has warned the owner of a dog which bit a postman delivering the mail that her pet will be destroyed if it bites someone again .\nformer archbishop of canterbury lord carey says he will support legislation that would make it legal for terminally ill people in england and wales to receive help to end their lives .\nplans to demolish and replace two west midlands fire stations - one of which is grade ii listed - have been backed by fire service bosses .\na perthshire woman lost # 2,020 she had stolen from her mother gambling at an online casino , a court was told .\ngoals from havard nordtveit , tarik elyounoussi and espen ruud ensured michael o'neill 's first match as northern ireland boss ended in defeat .\nas a welsh learner from the rhondda , some observers might have thought leanne wood an unlikely candidate to lead plaid cymru , whose traditional heartlands are in the welsh-speaking west and north of wales .\nchina 's inflation rate rose by more than expected in june , increasing to 2.7 % from 2.1 % the month before .\nthe world championships medals that will be won in london this summer have been revealed , with a shape based on the curves of an athletics track .\naid workers say fighting in yemen has made it virtually impossible to ship humanitarian supplies to a key harbour when the country is at risk of famine .\nstan wawrinka stunned novak djokovic to win his first french open title and thwart the world number one 's career grand slam hopes .\nsyphilis and gonorrhoea sexually transmitted infections are continuing to rise in england , new figures show .\na court in northern france has sentenced a woman to nine years in prison for killing eight of her newborn babies between 1989 and 2000 .\na coroner has vowed to raise concerns about weekend staffing levels at a hospital where a grandmother died after a routine operation .\nblack actress noma dumezweni has been cast as hermione granger in the upcoming production of harry potter and the cursed child , a move celebrated by fans who have long explored the concept of a black hermione .\npassengers flying into belfast international airport were prevented from getting off planes for a time on tuesday night due to high winds .\ndover athletic have signed femi ilesanmi on a one-year contract after the left-back 's departure from national league rivals boreham wood .\nthe british and irish lions face a final-test decider in sydney next saturday after australia hit back to win a desperately tense second test in melbourne .\nthe push to build more homes for rent in the social housing sector is getting another # 5.8 m in welsh government cash .\nas a millionaire is found guilty of murdering his escort , how did he claim asperger syndrome made him do it ?\nat least 100 bodies have been recovered from a church that collapsed in the south-eastern nigerian city of uyo .\na man has been charged after a ram-raid at a shop in fife .\nmiddlesex wicketkeeper-batsman john simpson has extended his contract , keeping him at lord 's until the end of the 2019 season .\nan inquiry into alleged garda wrong-doing in cavan/monaghan has cleared the former justice minister alan shatter and the former garda -lrb- irish police -rrb- commissioner martin callinan .\nsix prominent writers are boycotting a major us literary event over plans to give satirical magazine charlie hebdo a freedom of speech award .\ndundee boss neil mccann cancelled his players ' planned day off after their below-par showing in the league cup against buckie thistle .\nguinea international abdoul camara has joined french top-flight side guingamp on a two-year deal , a day after parting company with english club derby county .\nsolihull moors have signed jack edwards from leamington on a one-year contract .\nbritish and irish lions head coach warren gatland says he will not repeat graham henry 's 2001 mistake by splitting the squad early in the tour .\nin 1947 , british india split into two new states : pakistan and india .\nan animal charity is calling for the licensing of air guns after a cat in west lothian was left injured after being shot three times .\nsouth africa is set to hold a huge protest march against xenophobia in the coastal city of durban following a wave of attacks on foreigners .\na man who killed woman at a hostel had sent letters threatening to kill others while in prison , an inquest has heard .\nan ancient board game has been found in a chinese tomb .\nheptathlete katarina johnson-thompson qualified for the rio olympics , finishing with 6,304 points in coming sixth at the hypo-meeting in gotzis .\nwest indies claimed their first women 's world twenty20 with a pulsating eight-wicket win over australia in kolkata .\na six-month prison term handed to a motorist who killed an ex-international cyclist in a crash `` does not fit the crime , '' british cycling has said .\nvolkswagen boss martin winterkorn will `` support '' the german transport ministry 's investigation into the carmaker 's emissions scandal .\na chemistry student has created `` the most environmentally-friendly '' fake snow , as part of her research .\na whale and dolphin-watcher has photographed an attack by a bottlenose dolphin on a porpoise off aberdeen .\ngerman exports and production fell in november compared with the previous month .\na drug dealer has admitted waving a knife around in a denbighshire car park before a man was fatally stabbed but denied using the weapon .\nthe 80-year-old us current affairs magazine newsweek has revealed the image that will grace the cover of its last-ever print edition .\nten years ago , coventry city played their last match at highfield road - the ground that had been their home for 106 years .\nuniversities in england are already announcing a tuition fee increase above the # 9,000 limit before parliament has even finished debating plans which would pave the way to raise fees .\na leading british naturalist has accused the maltese authorities of failing to prevent large-scale illegal shooting of migratory birds by hunters .\ncurators at the museum of london have discovered what they believe to be the first ever recordings of a family christmas .\nuk house prices rose by 9.5 % in 2015 , according to the lender halifax , making it the fastest annual increase in nine years .\na country house owner is trying to find out how the only known painting of the coronation of the french king louis xiv end up in his stables .\ncoach corey neilson says nottingham have the big-game mentality to win the elite league play-offs after a two-year absence from the showpiece event .\nfour men have been charged in a shooting at outside a minneapolis police station that left five protesters wounded .\nthe chief constable of south yorkshire police has announced his retirement on the day a report criticised his force 's handling of child sexual exploitation .\njose mourinho famously did it with chelsea , nigel pearson crucially did it with leicester city and luiz felipe scolari even did it with brazil .\npainted on a classroom wall , high above the modest wooden benches and chalkboards , moco-moco primary school 's motto reads : `` onward upward may we ever go '' .\nfour men have appeared in court charged with attempting to smuggle # 800,000 of cannabis into northern ireland in pallets of orange juice .\nrepair work to a somerset monument destroyed in a crash will run into five figures , the town trust has said .\neddie izzard will attempt to run 27 marathons in 27 days through south africa for sport relief , the bbc has announced .\n`` if they knew i was talking to you , i 'd be killed , '' says mohamed .\nthe former president of brazil , luiz inacio lula da silva , has been accused of playing a key role in a huge corruption scandal involving state-oil company petrobras .\ndavid cameron became `` distracted '' after the 2011 intervention in libya , us president barack obama has said .\ntorrential rain in cambridgeshire caused a riverbank to collapse , left 856 homes without power , trapped drivers and closed two supermarkets .\na respected us-based internet security expert says he has foiled an attempt to frame him as a heroin dealer .\nan otter has been returned to the wild in carmarthenshire after being found curled up in a puddle of water from a pressure hose .\na government advertising campaign is being re-launched to remind people of the dangers of second-hand smoke .\nthe scottish economy is still suffering the effects of a fall in the price of oil and gas , a government minister has said .\nthe russian government has approved legislation that would conceal property owned by state officials and would hamper anti-corruption investigations , transparency international -lrb- ti -rrb- warns .\nscotland 's first minister has explicitly ruled out holding a second referendum on independence this year .\ntaylor swift 's 1989 has won the coveted album of the year award at this year 's grammys in los angeles .\nnorthampton 's chris wilder is bolton 's preferred choice to be their next manager , bbc radio manchester reports .\nfor almost three weeks the saudi-led coalition of mostly gulf arab air forces has been pummelling houthi rebel positions across yemen .\nsince there is a consensus amongst the majority of the world 's scientists that temperatures are rising - most likely driven by human behaviour - why does climate change coverage seem to be drying up ?\na dad 's desperate search to replace his autistic son 's beloved `` little blue cup '' has ended - after the manufacturer stepped in to make a lifetime 's supply .\niran has arrested eight people working for online modelling agencies deemed to be `` un-islamic '' , the prosecutor of tehran 's cybercrimes court has said .\nbydd geraint thomas yn gwisgo crys melyn y tour de france unwaith eto ddydd llun er nad enillodd ail gymal y ras .\nthe five britons who died when a whale-watching boat sank off the coast of western canada have been named .\na man has been charged with murdering a man who was stabbed to death .\nformer falkirk mp eric joyce has been found guilty of assaulting two teenage boys in an `` unjustified and unprovoked '' attack in a shop .\nkent have signed batsman sean dickson after he impressed during a trial spell with their second xi .\njoyce banda , who has made history becoming malawi 's first female president and only the second woman to lead a country in africa , has a track record of fighting for women 's rights .\npope francis has freed a priest jailed for leaking official documents in a trial known as vatileaks ii .\nresidents of a san francisco private street where homes sell for millions of dollars have had the street itself bought from under them .\nleicester tigers hooker tom youngs refuses to give up on an england recall , despite admitting he doubted himself after undergoing back surgery .\nanti-fracking protesters have been celebrating a decision to block permission for an exploratory borehole for shale gas in county fermanagh .\na pensioner has denied causing the death of a teenage girl by by reversing over her as she was filling her car up with petrol in renfrewshire .\nsuper league side warrington wolves have announced ryan bailey , jordan cox and mitchell dodds will leave at the end of their contracts .\ntoddler ben needham `` most likely '' died in an accident near to where he disappeared in 1991 , police have said .\nthe sister of a cyclist who was killed in east london last week has urged witnesses to contact police .\nchildren with severe epilepsy could be helped by a new treatment derived from the cannabis plant .\nofsted inspectors have found that some private faith schools are not doing enough to respect women , or people of other faiths and beliefs .\na fund set up by a man who died in his first triathlon race has exceeded his # 300 target by more than # 12,000 .\na baby tortoise has been stolen from a pet shop in lancashire .\nyoung russians are using twitter en masse to share their reverence for western pop bands and tv series - in sharp contrast to russia 's mainstream state-controlled media .\nthe family of charlotte bevan , whose body was found in the avon gorge with her four-day old daughter , has called for a dedicated service which looks after women with serious mental health problems before , during and after childbirth .\nsuper league newcomers leigh centurions have signed hull fc utility back curtis naughton on a season-long loan deal .\ngillingham are looking to add `` two or three '' more players to their squad , according to manager ady pennock .\nnigerians are going to the polls to vote for state governors in the final round of the election process .\nalmost one year ago malala yousafzai was shot on her way home from school in pakistan .\ndozens of flood warnings remain in place in central england following heavy rain and disruption on wednesday .\nthe snp has held a south ayrshire council ward following a by-election which was called after the previous incumbent was elected as an mp .\ncorey whitely took dagenham to second place in the national league with the only goal in their win away at eastleigh .\nit 's a book that lay undiscovered for 60 years and which went on to become a phenomenon : irene nemirovksy 's epic french novel suite francaise , written in the early years of the world war ii , not only became a worldwide bestseller upon its publication in 2004 , but is now an english language movie .\njames ibori , a former governor of one of nigeria 's oil-producing states , has pleaded guilty in a uk court to 10 counts of money-laundering and conspiracy to defraud .\nformer premier league striker leon mckenzie is to fight for a national boxing title .\na row has broken out in the coalition over school places funding in england , with allies of lib dem deputy pm nick clegg accusing conservative education secretary michael gove of `` lunacy '' .\nthe uk border agency has no `` clear strategy '' for dealing with a group of more than 150,000 foreign nationals staying on after visas expire , the borders and immigration inspector says .\nthe past year has been perhaps the most significant in cuba since the fall of the berlin wall .\na temporary measure for disabled access at weston-super-mare railway station is `` totally unacceptable '' , an equality forum has said .\na career-best 135 from matt machan formed the backbone of sussex 's innings against worcestershire at hove .\ntwelve of edinburgh 's `` dilapidated and neglected '' closes are to be transformed as part of a major project to improve the old town .\nthe psni has failed in an appeal against an order to disclose police documents related to two murder attempts on a catholic taxi driver .\ngermany has become the preferred destination for thousands of people reaching europe in search of a better life .\ncells inside the redundant gloucester prison have been opened as part of a consultation on its future use .\nresidents from communities across south wales have rallied together to try and catch arsonists who deliberately start grass fires .\nplans have been unveiled for a major expansion of a ministry of defence -lrb- mod -rrb- base in telford .\na large hole that appeared behind a row of houses was in one of the uk 's most susceptible areas for sinkholes , the british geological survey has said .\ndawn purvis is to step down as programme director of northern ireland 's marie stopes clinic .\nfrench president francois hollande has said the eu must reform and scale back its power , amid a surge in support for eurosceptic and far-right parties .\nus researchers have built a wirelessly powered pacemaker the size of a grain of rice and implanted it in a rabbit .\nentering the flat where shannon bancroft brought up her son kayden with the help of her mother , julie , it 's clear the trauma kayden 's death has wrought on the family .\nscotland ran in six tries to conclude their trio of autumn internationals with a 43-16 victory over georgia .\nvoters will go to the polls on thursday to determine who will represent them on local councils .\nthe chief executive of barnet council has left his role after a blunder led to some voters being turned away from polling stations on thursday .\nnorthampton town striker marc richards has praised `` first-class '' manager chris wilder after the cobblers won the league two title .\nan egyptian woman who was believed to have been the world 's heaviest is now being treated for several health conditions at a hospital in abu dhabi .\ninternational shark experts are arriving in egypt to help investigate the attacks off the red sea resort of sharm el-sheikh that have baffled local officials .\nthe getaway car used in the murder of a man in the republic of ireland earlier this week was stolen last year .\nreplacing or reforming the council tax in scotland could prove challenging , according to a study .\nbovine tb is the `` single biggest problem '' facing animal health and welfare in a generation , wales 's chief veterinary officer has said .\nshale gas test drilling in lancashire has been suspended following an earthquake on the fylde coast .\nuk police are to return from thailand after reviewing an investigation into the murders of two british tourists , scotland yard has said .\na police officer at a sex crime unit encouraged a woman to drop a rape claim against a man who went on to murder his two children , a report has said .\nshares in a derelict seaside pier that was almost destroyed by fire three years ago will be offered to the community to aid its restoration .\naldershot have announced the signing of defender sean mcginty from rochdale on a one-year deal from 1 july .\npublic satisfaction with the nhs has dropped by a record amount , the british social attitudes survey suggests .\na fire has ripped through the first floor of a thatched house in a suffolk village .\nswansea city winger nathan dyer has been ruled out for the rest of the season with a ruptured achilles tendon .\nburundi , one of the world 's poorest nations , is struggling to emerge from a 12-year , ethnic-based civil war .\nvictims of child sex abuse in halifax are staging a protest calling for an inquiry into historical abuse at care homes in calderdale to be reopened .\ndoctors unhappy at proposals to close consultant-led obstetrics and gynaecology services at a north wales hospital have passed a vote of no confidence in the health board .\nthe us treasury department has warned the european commission about taking action against us companies over tax avoidance allegations .\n` i 'll be back ' could have been eilish mccolgan 's personal mantra over the past 18 months - even when the doubts and demoralising setbacks continued to afflict her .\na fresh appeal to find the killer of a teenage girl who was raped and murdered in manchester 45 years ago is to feature on bbc one 's crimewatch .\nmost scottish firms believe brexit is bad for their prospects and the economy , according to a survey by the fraser of allander institute .\npeople with mental health problems are being promised faster access to treatment by the welsh government .\nresidents in a county fermanagh village have expressed anger at the `` heartless act '' of a driver who killed five cygnets .\na `` cult of death and destruction '' is seducing `` lost young people '' , the prince of wales has told army officer cadets at a passing-out parade .\nken owens is not short of a nickname or two .\nceltic manager ronny deila says his side must beat ajax on thursday to keep their hopes of advancing to the europa league knockout stage alive .\ntommy rowe struck in first-half injury-time as promotion-chasing doncaster edged past colchester 1-0 to secure a third consecutive league two win .\nas leisure activities go , you would imagine that lying naked on a wooden table while two topless russian men hit your back with bunches of oak leaves would only appeal to a very specialist group of enthusiasts .\na hat-trick from denny solomona pushed sale to victory in a high-scoring affair against leaders wasps .\nnigeria winger asisat oshoala has left women 's super league one club arsenal ladies to join chinese side dalian quanjian .\nhumans may in part owe their big brains to a dna `` typo '' in their genetic code , research suggests .\nformer conservative home secretary lord waddington has died at the age of 87 .\ntoo many of the most vulnerable young people in england are `` cut adrift when they need help the most '' , says the head of a powerful committee of mps .\ntorquay united have signed gibraltar international jake gosling following his release by bristol rovers .\npolice have issued an e-fit of a man they want to trace in connection with a dog attack on a five-year-old girl .\nkell brook says he chose to fight gennady golovkin because he needed to do something `` outrageous '' to stand out from the crowd .\nembattled commodities trader noble group is set to post its first full-year loss in nearly two decades because of the collapse in coal prices .\nshrewsbury scored three first-half goals to beat blackpool and end a run of three league games without a win .\nnational renewal is what both the rival french presidential candidates are promising , but they offer very different paths to get there .\nrunners from 178 different nations , from azerbaijan to zambia , will be represented in the great north run on sunday .\nmcdonald 's in japan is running out of chips .\ndefending champion scott waites was knocked out of the bdo world darts championships as danny noppert beat him 5-3 in a dramatic quarter-final .\npsychiatric patients detained at broadmoor are being asked for feedback on their care by an independent watchdog .\n-lrb- close -rrb- : a supreme court ruling that upheld a key part of president obama 's healthcare plan lifted shares in us health companies .\nmlas have voted against dup calls for a significant reduction in the # 90 mandatory parking fine during a debate in the northern ireland assembly .\nthe percentage of americans living in poverty is statistically unchanged from 2010 's record high , even as household income fell , a us census report says .\nchampionship side brighton & hove albion have signed stoke city midfielder steve sidwell on loan until the end of the season .\na pair of queen victoria 's cotton pants with a 45in -lrb- 114cm -rrb- waistband are to be sold at auction in wiltshire .\na missing woman and her baby in pembrokeshire have been found safe and well after a police facebook appeal was widely shared .\ncarlisle united have signed midfielder mike jones on a two-year deal following his release by oldham athletic .\nengland need to win all three remaining games of the series to retain the women 's ashes after australia clinched the test by 161 runs .\nengland must take the positives from saturday 's four nations opener defeat by new zealand , says winger ryan hall .\nthe late start to scotland 's latest snowsports season had a `` significant impact '' and reduced the number of days available for skiing and snowboarding .\na collection of portraits depicting a host of household names is set to open in hull as part of its city of culture celebrations .\nchina has for the first time admitted in public that it permits trade in skins from captive tigers , according to participants and officials at a meeting of an international convention to protect endangered species .\ncycling 's governing body has condemned e3 harelbeke organisers for a controversial billboard poster that promotes this year 's race in belgium .\nformer renault formula 1 driver robert kubica says he misses competing in f1 .\nus arrests of suspected illegal immigrants rose by 38 % in the first 100 days of donald trump 's presidency , according to government data .\nportsmouth are considering appointing a director of football next season , should michael eisner 's proposed takeover of the club go through .\nleicester boss claudio ranieri has backed jamie vardy to end his goal drought , but revealed the striker has even struggled to score in training .\nthe alton towers rollercoaster ride on which five people were seriously injured is to reopen later this month .\naston villa 's jack grealish has returned to training and could be in line to start for the club after being dropped to the bench by boss remi garde , according to the express and star .\nthe conviction of mp jo cox 's murderer was met sombrely in her constituency , where people said it would `` close a sad chapter '' for the area .\nthe rspca is urging wrexham council not to `` demonise '' responsible dog owners .\nduring his three years as irish justice minister alan shatter was never far from controversy .\njonathan trott made his third one-day cup century in four innings as warwickshire reached the semi-finals with a 70-run home win over essex .\nthe death of a man found in a lincolnshire waterway is not being treated as suspicious , police have said .\nthe brother of wales ' double olympic taekwondo champion jade jones has been signed up by the sport 's great britain academy .\na japanese pensioner accused of killing three partners and attempting to murder a fourth has told a court that she fatally poisoned her husband .\ndarren fletcher 's past experience leading scotland could win him the captaincy against northern ireland , says former international mark wilson .\nthe us has warned its citizens of `` credible threats '' to tourist areas in turkey , particularly in istanbul and the southern resort city of antalya .\nfulham midfielder jozabed has joined spanish la liga side celta vigo on loan until the end of the season .\na city 's parks could be funded by an increase in council tax , a report has recommended .\nengland face a battle to prevent bangladesh earning their most famous test victory after an absorbing second day of the second test in dhaka .\nmansfield town manager steve evans was sent off as his 10-man side were soundly beaten at grimsby .\nwigan athletic have signed defender chey dunkley on a three-year deal from league one rivals oxford united .\npolice are investigating the death of a 64-year-old man who died after an industrial incident in grantham .\nglobal football federations are `` overwhelmingly in favour '' of plans for a 48-team world cup , fifa president gianni infantino says .\na champion boxer who was jailed for breaking into his ex-girlfriend 's flat and attacking her has had his sentence suspended .\nill-gotten gains recovered from criminals have paid for a new training centre for police staff .\ncomedian bill bailey had his `` tour bus '' stolen before he performed at the liverpool philharmonic hall .\nkilmarnock goalkeeper craig samson has agreed an early release from his rugby park contract .\nthe new chancellor of the exchequer has said he may use the autumn statement to `` reset '' britain 's economic policy .\nnational league side guiseley have signed mansfield midfielder kevan hurst on loan until the end of the season .\npolice forces are unfairly disciplining black and asian officers who complain about racism , says the national black police association .\nthe badger trust has launched a new legal challenge to the government 's plans to cull badgers in england .\nsalford red devils owner marwan koukash says he has still not decided whether he will sell the club at the end of the current season .\ncouncillors in dublin are due to vote later on a motion against a love ulster march planned for march by loyalist campaigner , willie frazer .\nross moriarty 's introduction to life with the lions can be summed up by three things .\njon stead struck the winner as notts county came from behind to earn victory at hartlepool united in league two .\na 15-year-old girl has been critically injured in a suspected hit-and-run in the black country .\npolice in a small alaska town mistakenly told a couple their son had been killed in a car crash , leading to an extraordinary reunion hours later .\ndavid lammy has said he will consider standing for labour leader if colleagues want him to do it .\na wood chip fire which first ignited at a newport dockyard more than two weeks ago has flared up again .\nus airline united has rewarded two hackers who spotted security holes in its website with a million free flight miles each .\nan australian man jailed for the rape and murder of an irish woman has been convicted of three more rapes .\na third dead whale has been found by experts investigating the deaths of two others found along the suffolk coast .\nrory mcilroy has insisted he is `` totally fine '' to play in this week 's us open as he returns to action after a month out because of injury .\nnew , independent research seen by the bbc suggests heathrow airport could build a new runway without breaking european pollution laws .\ntoddlers who spend time playing on smartphones and tablets seem to get slightly less sleep than those who do not , say researchers .\nleicester lions speedway have been bought by sheffield tigers promoter damien bates .\nrescuers are frantically trying to save about nine people located in the wreckage of a collapsed factory complex in the bangladeshi capital dhaka .\nmae datblygwyr trac rasio ym mlaenau gwent wedi rhoi cynnig newydd gerbron llywodraeth cymru , wedi i ysgrifennydd yr economi alw am fwy o fanylion .\npresident donald trump 's daughter ivanka trump is to have an office in the white house , her lawyer says .\nroberto martinez said he is `` disappointed '' everton were not able to `` finish what we started '' following his sacking as manager this week .\nunchecked climate change could put antarctica 's huge totten glacier into an unstable configuration over the coming centuries , a study has warned .\nfetch , sit and roll over - all the kinds of normal things that you would say to your dog .\na man has been left scarred for life in an unprovoked attack in a glasgow pub .\nthe number of people without jobs and looking for work fell by 39,000 to 1.63 million between may and july , official figures show .\ninspectors have raised concerns about the number of suicides at a buckinghamshire prison , after four `` self-inflicted deaths '' last year .\nsome scottish hospitals are spending just 94p per patient meal , the bbc has learned .\none person has died in a stage collapse before a radiohead concert in the canadian city of toronto .\nsir mick jagger and martin scorsese 's music business-based drama vinyl has been cancelled by hbo after one season .\nthe land rover defender has become an automotive icon , remaining largely unchanged since the first land rover was introduced in 1948 , before going on to enjoy sales of more than two million around the world .\ntroubled nfl quarterback johnny manziel is expected to be charged over an alleged assault on his ex-girlfriend .\nsean dickson scored a career-best double century for kent before derbyshire slipped to 9-3 at the close on day three , leading by 89 runs .\njeremy corbyn has urged labour members to show `` respect '' to the party 's scottish leader after she was jeered at a hustings debate in glasgow .\nthe aid worker who died in afghanistan during an attempt to free her two years ago was told by her captors they were not going to kill her , it has emerged .\nheineken has been told to address fears that its purchase of around 1,900 pubs from punch taverns could affect competition in some areas .\nborussia dortmund have made fc nordsjaelland and turkey winger emre mor their fourth summer signing .\na prominent online video star has defended youtube in a row over the way the site treats musicians .\na derby swimming pool threatened with closure is to remain open for another year , council bosses have confirmed .\nsaudi billionaire prince alwaleed bin talal 's kingdom holding company has announced a $ 300m -lrb- â # 194m -rrb- investment in social media site twitter .\na man killed in a crash in chorley had recently returned from a motorbike tour of europe as part of his 21st birthday celebrations .\na `` groundbreaking '' cystic fibrosis therapy could profoundly improve patients ' quality of life , say doctors .\nchinese billionaire zhou chengjian of one of china 's biggest fashion chains , metersbonwe , has gone missing , the company confirmed .\ntwo men arrested in connection with the suspected murder of a missing man have been released on bail .\ndundee defender darren o'dea believes team-mates kane hemmings and greg stewart would be `` virtually impossible '' to replace in the short term .\nthe colourful former mayor of toronto , rob ford , is lying in repose at a ceremony at toronto city hall .\ntony andreu missed a second-half penalty as dundee united dropped two points in the championship title race with a draw at stark 's park .\na teenager has been arrested on suspicion of attempted murder after a man was stabbed on his doorstep in the west midlands on tuesday .\ntension has gripped parts of the indian state of gujarat after reports that seven men from the low-caste dalit community had attempted suicide .\nthe israeli navy has intercepted a gaza-bound vessel sailed by pro-palestinian activists and diverted it to an israeli port , the military says .\npolice have denied mishandling a sexual abuse investigation which left a victim claiming he had been denied justice .\na third of malaria drugs used around the world to stem the spread of the disease are counterfeit , data suggests .\nthe silkworm by jk rowling 's pseudonym robert galbraith and ian mcewan 's the children act are among 25 british novels in the running for the world 's richest literary prize .\nthe democratic unionist party -lrb- dup -rrb- will take action next week if the government does not provide a solution to the crisis at stormont , it has said .\nsix months trapped in a tiny capsule with only three other people for company gives a person time to think .\nscotland 's media landscape is being bulldozed - transformed by digital technology , burgeoning choice , and quite a bit of politics - particularly as the future of the bbc is now in play .\none of the biggest scotch whisky distillers has seen faster growth in sales of its irish whiskey brand , according to new figures .\na husband and wife who died in an apparent murder-suicide in north somerset have been named .\nworking manuscripts of poems by dylan thomas are to go on public show for the first time .\nprince harry has taken part in a traditional maori haka during his tour of new zealand .\nhas the time come for the government to break pledges made to pensioners , asks paul johnson , the director of the institute of fiscal studies .\nmae cymru fyw wedi mynd i ysbryd yr ŵy-l ond mae ymennydd ein cwisfeistr druan wedi ffrio 'n lân !\nwhatever plot the us eavesdroppers overheard the top two al-qaeda leaders discussing clearly rattled the us intelligence community so badly that washington shut 19 of its diplomatic missions around the middle east , asia and africa .\nleeds united managing director david haigh has resigned from the championship club 's board the day after massimo cellino completed his takeover .\nchelsea 's eighth successive premier league win cemented their place at the top of the table - but their victory at etihad stadium ended in chaos as manchester city 's sergio aguero and fernandinho were sent off in injury time .\nreigning world champion aled davies has improved his own f42 outdoor shot put world record to 16.13 m at the ipc athletics grand prix in arizona .\nwest ham marked the official opening of their new home with a 3-2 defeat against italian champions juventus in front of a 53,966 crowd .\nthe female governor at a private muslim school in birmingham - at the centre of criticism from ofsted - chose to sit separately from men , says the school .\nthe us national society of film critics has named spotlight the best film of 2015 .\nalmost 100 puppies have been seized as part of an operation into the illegal puppy trade from ireland to the uk .\nantony jenkins , the chief executive of barclays , has been fired after falling out with the board over the bank 's cost cutting and profitability .\nshares in moneysupermarket fell more than 6 % after the comparison website warned that revenues so far this year were running below last year 's levels .\njay dasilva has signed a new four-year deal with chelsea and rejoined charlton athletic on a season-long loan .\na fox cub is recovering at an animal centre after being rescued from the gear box of a car in aberdeen by an aa patrolman .\njustice secretary michael matheson has said it is not helpful if people give a `` running commentary '' on the death in police custody of sheku bayoh .\nyahya jammeh has been sworn in for a fourth term as gambia 's president and promised to `` wipe out 82 % '' of workers , accusing them of being lazy .\nten-man inverness caledonian thistle fell four points adrift at the foot of the scottish premiership with defeat by st johnstone .\nthe football association has cleared referee mark clattenburg of using `` inappropriate language '' towards chelsea midfielder john mikel obi .\nsherlock star benedict cumberbatch will play richard iii in the bbc 's second series of shakespeare 's history plays .\nireland 's former prime minister albert reynolds has died at the age of 81 .\nfrench champions paris st-germain have signed 19-year-old brazilian defender marquinhos from roma for # 27m .\nthe italian parliament has approved a long-debated and extensive electoral reform that aims to give the country more political stability .\na 14-year-old boy had to be rescued by a search and rescue team after falling into a cave in west yorkshire .\nthree wrexham backpackers left stranded in nepal following the earthquake have returned home , according to the sister of one of the men .\na plea has been made to trace the mother of a baby whose remains were found in a plastic bag at a nature reserve a year ago .\nbrazil 's interim president michel temer has called an emergency meeting of state security ministers after a gang rape of a teenage girl in rio de janeiro triggered wide condemnation .\nwork has started to repair a spire on a surrey church after it was badly damaged by woodpeckers .\nthe world 's finest uncut opal has mostly been kept in a safe deposit box since it was unearthed from the south australian outback with a pick and shovel 70 years ago .\nhaving amended the government 's brexit bill by a thumping majority this week , the big question for next week in westminster is whether peers will do it again , potentially more than once .\nan australian security officer at melbourne airport has been sacked after the country 's foreign minister julie bishop was reportedly singled out for a security screening .\nan australian runner who suffered life-threatening burns when she was trapped by a bushfire during a race has completed the hawaii ironman , seen as the world 's toughest triathlon .\nwhen claudio ranieri - surrounded by his triumphant leicester city squad - lifted the premier league trophy at the king power stadium on 7 may last year , it concluded arguably the greatest story in british sport .\narsenal beat watford to earn their first victory of the season .\na microlight has hit an electricity pylon and burst into flames near rochester in kent .\nfrom september , girls joining the brownies and guides in the uk , will no longer have to pledge their devotion to god .\ntwo teenagers have been arrested and three knives recovered after 300 people attended a house party in east london .\nsheffield united eased to victory at the proact stadium to increase chesterfield 's relegation fears .\na terminal cancer patient who has been told he has just months to live has conquered mount everest .\nonline grocer ocado has reported a full-year pre-tax profit for the first time since launching in 2000 .\na five-year-old boy has died after his head got lodged between a wall and a table fixed to a slow-moving floor of a restaurant in atlanta , police officials said .\njose mourinho accused west ham of playing `` 19th-century football '' , after his chelsea side were held 0-0 in wednesday 's league encounter .\nsix centuries ago henry v walked from shrewsbury to holywell in flintshire , to give thanks for his famous victory over the french at agincourt .\na campaign group has been granted a hearing to examine the case for a judicial review of the decision to build student flats near a beauty spot .\nedinburgh city will play east stirlingshire in the scottish league two play-off after completing an aggregate victory over cove rangers .\nnicola sturgeon said independence is not a `` magic solution '' to scotland 's problems as she was questioned over her government 's record .\nglastonbury has opened its gates and fans have started to trickle in .\nseventeen people were rescued after a huge fire ripped through a hotel and block of flats in west london .\nwhen leanne wood first walked through the gates of her old school , a career in politics was not part of the plan .\na bridge in county durham has closed after inspectors identified `` issues with its structural integrity '' .\nsergio aguero says he can understand why manchester city have been criticised this season , but expects their form to quickly improve .\nshauna coxsey took silver in the second bouldering world cup event of the year as she continued her title defence .\na new research and development facility has opened in aberdeen to help breathe new life into the struggling north sea oil industry .\na police officer has been cleared of assaulting a handcuffed man with pepper spray after arresting him in gwynedd .\na `` glitch '' which shut down all the computer systems at edinburgh airport caused `` massive disruption '' and some flight delays .\nkermit the frog is getting a new voice for the first time in nearly three decades as his puppeteer steps down .\nlenovo has announced two unusual smartphones - a model that uses special cameras to scan its surroundings and a handset with optional snap-on parts .\nyork residents are being put off applying for flood protection grants as the process is `` incredibly complicated '' , a local mp has claimed .\na uk withdrawal from the european union could make policing in northern ireland slower , more complicated and more costly , the head of the police service of northern ireland -lrb- psni -rrb- has said .\ntoo many school libraries in england face cuts or closure with schools increasingly viewing books as obsolete , a teachers ' union has heard .\nrichie ramsay did n't win the scottish open at castle stuart , but he wore a contented smile none the less having played himself into the top-six and securing himself a place in the open championship at royal troon later this week .\nall but one council area of nottinghamshire , including nottingham city , has voted to leave the eu .\nthe former leader of ukip in wales has said he would leave the party if anti-islam campaigner anne marie waters won the leadership election .\na us appeals court has ruled that bulk collection of phone records by the national security agency is illegal .\nschools have been reopening in guinea after a five-month closure because of the deadly ebola outbreak .\na petition calling for residents of the chagos islands to be allowed to return to their indian ocean homeland has been handed in to downing street .\nrecent attacks by the taliban in afghanistan are not a sign it is making advances as the last foreign troops prepare to withdraw , the former head of the british army has said .\na man died when the car he was driving ploughed into the front gardens of three houses .\nthe 2017 derby at epsom will be the richest race ever staged in britain after two horses were added as late entries at a cost of # 85,000 each .\nthe `` abba '' format for penalty shootouts will be used in all english football league competitions in 2017-18 .\nbournemouth have accepted a football association charge relating to a breach of anti-doping rules .\nvin diesel sang , channing tatum danced and zac efron showed off his abs , yes - again , at the 2015 mtv movie awards .\nglasgow warriors have confirmed the signing of loose-head prop oliver kebble for next season .\nkatarina johnson-thompson won her first major medal with silver in the long jump at the world indoor championships .\na golfer has suffered leg injuries after being bitten by a crocodile on an australian golf course .\na farmer has been fined after dumping 40 tonnes of industrial waste outside a village .\nthe big question about the prime minister 's plan to hand more control over taxes , spending and welfare to the four nations is how far this would end the subsidy of scotland , wales and northern ireland by england , and especially by london and the south east .\nveteran goalkeeper stephen bywater has signed a new one-year deal at championship side burton albion .\nthree emergency care units are to remain closed to overnight patients in an effort to keep `` precious staffing resources '' focused on daytime care .\nsyria 's cultural heritage is being attacked from all sides : the assad regime , opportunistic looters , opposition forces , so-called islamic state fighters and even russian air strikes .\ndonald trump 's motorcade swept through brussels on a tour of the landmarks of post-war reconstruction that he once seemed to threaten - and diplomatic calamity was averted .\nnorthstone , one of northern ireland largest construction groups , reported reduced turnover and profits in 2013 .\ncallers to out-of-hours gp services faced waits of more than 12 hours , posing a `` significant risk to patient safety '' , a leaked report has revealed .\na wonky cycle path sign that appeared in the lincolnshire market town of sleaford last weekend caused much mirth among local residents , who described it as looking like a penny farthing - albeit one with angular wheels .\nfive british men who were being held on arms charges have been freed on bail from an indian jail , according to a lawyer close to the case .\nsale sharks forward mark easter has announced he will retire at the end of the season to take up a teaching role .\nthe us has warned china that moving a drilling rig into seas disputed with vietnam was `` provocative '' .\nsurvivors , rescuers and journalists involved in the aberfan disaster have spoken of their experiences publicly , many for the first time in 50 years , at a conference in cardiff .\na lot has changed for suranne jones since we last saw her in bafta-winning tv series doctor foster , in which she plays a gp who suspects her husband is cheating on her .\na man from northern ireland has died following a shooting in the north side of dublin city on monday night .\noctopuses may have more complex social interactions than previously believed , a new study has found .\ndisposable incomes in northern ireland are nearly half the uk average , new figures suggest .\nsouth africa beat england by 17 runs on the duckworth-lewis method to level the twenty20 series with one game to go .\na former welsh amateur boxing champion said she is turning professional as she does not have confidence in the governing body .\na # 5m investment has been announced to allow the expansion of a pate firm 's south west scotland factory .\nfor months , it 's been the joint mantra from both dublin and london - that after brexit , the border between northern ireland and the republic of ireland should be as `` seamless and frictionless as possible '' .\nbradford city made sure of a league one play-off spot as they beat southend united thanks to lee evans ' early goal .\nwayne rooney 's testimonial match between manchester united and everton on wednesday will make history as the first ever game between premier league teams to be streamed live on facebook .\nnapoli wasted a chance to return to the top of serie a when they were held at home by ac milan on monday .\naston villa manager tim sherwood promised to rid the club of its `` losing mentality '' after suffering a 4-0 defeat by arsenal in the fa cup final .\na lebanese journalist has become the first person to take the stand at the un-backed tribunal at the hague investigating the assassination of former prime minister rafik hariri .\na 10ft -lrb- 3m -rrb- wide sinkhole that left a lorry stranded was caused by the collapse of a 100-year-old tunnel , experts have discovered .\na consultation about plans which could see consultant-led maternity care withdrawn from a district hospital in north wales has begun .\na new breed of modern-day monks is reviving a 1,000-year-old tradition by setting up a church in wales `` monastery '' in a monmouthshire town .\na kennel used by police and local councils to house stray and seized dogs is facing two reviews into its treatment of animals .\na man has been disqualified from driving for 22 months after he crashed his car into a house in west sussex and caused a gas leak .\nthirty-seven people stranded on australia 's flagship icebreaker , which ran aground in antarctica , have been rescued , authorities said .\ncomedian jason manford has turned to social media to try to find his dad a job .\na us court has made a woman unlock her iphone with her fingerprint .\ndespite being a ratings winner for channel 4 , benefits street came with its fair share of complaints .\neoin morgan inspired england to their best one-day international run chase against australia as they levelled the five-match series to set up a decider at old trafford on sunday .\ncole stockton 's second-half header proved enough as tranmere beat dover at prenton park to move level on points with national league leaders lincoln .\nnigeria 's presidential elections , taking place this saturday , will see a showdown between incumbent president goodluck jonathan and former military ruler muhammadu buhari , of the opposition all progressives congress -lrb- apc -rrb- party .\nhundreds of green-fanged tube web spiders have taken over the back garden of a family home in cardiff .\nsurgical staff left medical equipment in a patient undergoing a hysterectomy at a hospital in northamptonshire .\ndefender gary cahill believes england were not outclassed in their 2-0 friendly defeat by spain on friday .\na borders textile firm has announced a 20 % increase in its turnover , to â # 8m a year , in its annual accounts .\ndisabled mugging victim alan barnes has been presented with more than # 300,000 , raised through online donations .\nactress and writer michelle terry has been named as the incoming director of shakespeare 's globe theatre .\nred bull 's sebastian vettel ignored team orders in the malaysian gp to win an intense battle with mark webber .\na security robot in washington dc suffered a watery demise after falling into a fountain by an office building .\na third man has been jailed for murdering a flight attendant who was bludgeoned with a hammer and buried in a concrete tomb .\nricky miller scored a superb hat-trick as dover made it two wins on the bounce with a thrilling victory over national league leaders forest green .\na man has been stabbed to death in a street in north london .\nrepublican donald trump has sparked anger by appearing to suggest his supporters could stop his rival hillary clinton by exercising their gun rights .\nformer conservative politician ann widdecombe will headline this year 's nairn book and arts festival .\na woman has appeared in court in the republic of ireland charged with the murder of her three-year-old son at their dublin home earlier this week .\nwomen 's super league leaders manchester city women will host holders arsenal in the semi-finals of the continental cup .\nbritish two-time paralympic champion danielle brown has ruled out attempting to qualify for the 2016 rio olympics .\na labour government would renationalise the railways by regaining control of franchises as they expire , new leader jeremy corbyn is expected to reveal .\nlord ashcroft has missed the uk launch party of the controversial book he co-authored about david cameron , after suffering liver and kidney failure .\na venture capital firm has appointed a computer algorithm to its board of directors .\nthe family of a disabled boy have spoken of their distress after burglars stole an adapted computer which they say is a lifeline for their son .\nthe uk is to spend # 25m on building a prison in jamaica so that foreign criminals in the uk can be sent home to serve sentences in the caribbean .\nworld number two rory mcilroy had his worst ever round in the dp world tour championship to lie nine shots behind first-round leader lee westwood .\nsinn féin has accused the dup of dragging the political process `` towards an unprecedented tipping point '' over the ` cash-for-ash ' scandal .\ndundee manager neil mccann wants to improve the club 's scouting network after a difficult summer of trying to bring in players .\nviewers have been guessing who did it for the last year , but on thursday eastenders will finally reveal who killed lucy beale .\nfive members of the canadian armed forces are facing possible expulsion from the military after crashing an indigenous event on canada day .\nan american-owned aerospace firm attracted to belfast by invest ni and backed by the northern ireland executive is ending its local operation .\na former provisional ira member murdered in front of his wife was shot dead in a `` ruthless and premeditated killing '' , police have said .\njoe esposito , a close friend and aide of elvis presley , has died at the age of 78 .\nmore than half of scots have run out of money before pay day , according to a new report .\nserena williams says female tennis players deserve their equal pay , in the latest debate about prize money .\nhard-gambling , hard-drinking , hard-living las vegas is not , you might think , a natural fit for islam .\nhector babenco , the brazilian director nominated for an oscar for 1985 's kiss of the spider woman , has died aged 70 .\nkeith farmer followed up his double at knockhill by winning the supersport sprint race at snetterton on saturday .\na rare population of elephants in northern mali is being targeted by poachers , threatening its survival , a wildlife official has said .\nlung cancer rates in women have almost doubled in scotland over the past 40 years , according to a charity .\nsmall businesses - those employing a few hundred people or less - are increasingly becoming the target of hackers .\nthe scale of loss of conservation land caused by the proposed m4 relief road would be `` unacceptable '' , a public inquiry has heard .\nalmost 70 % of primary and secondary schools in the uk now use tablet computers , according to research .\nabout 34,000 cigarettes have been found in a layby in dorset .\na woman stabbed to death at her home in sheffield has been identified .\nwhen steven gerrard suffered a rare blemish in the middle of his latest masterclass , afc wimbledon 's fans pounced on the topic that will dominate liverpool 's agenda between now and the day he takes his leave .\neurope has begun to roll out a data superhighway in orbit above the earth .\nthe full list of winners at the 89th academy awards .\ngermany 's michael jung retained his olympic individual eventing title by winning gold at rio 2016 on his second-choice horse .\nsri lankan teams searching for scores of people missing after a landslide fear there may be no more survivors .\na vehicle has driven into a crowd at a mardi gras parade in the us city of new orleans , leaving 28 people injured , some seriously .\nsheffield united have signed fulham defender richard stearman for an undisclosed fee on a three-year deal .\npolice in barcelona have arrested five suspected members of the so-called `` pink panthers '' gang as they tried to rob a jewellery shop .\nan expert has claimed controversial plans to build a # 3.6 bn ` super sewer ' in london are motivated by profit .\nin the arts , 2016 has been a year of farewells , in northern ireland as across the globe .\nshia houthi rebels in yemen have freed a senior presidential aide who they abducted 10 days ago .\nfrench presidential candidate francois fillon has avoided an abrupt end to his campaign by securing the support of his divided republican party .\nyou can find details of how you can get in touch with anyone at bbc in newcastle below .\nnorth korea says its has carried out a live-fire artillery drill simulating an attack on the official residence of the south korean president .\nten men were arrested after a teenager was stabbed and gun shots were fired , police said .\na labour councillor has been suspended from the party over anti-semitic comments on her twitter account .\nchanges to benefit rules coming into force this week could push 200,000 more children into poverty , say campaigners .\nscotland 's rural affairs secretary has said 90.4 % of eu farm payments were made before the midnight deadline .\nformer india and new zealand head coach john wright has returned to derbyshire as a specialist coach for the 2017 t20 blast campaign .\nbritain 's most senior police chief has called for `` less suspicion and more trust '' in officers who carry guns , in his final speech before retirement .\nmanchester united 's coach arrived late at upton park amid a hail of bottles from west ham fans that recalled scenes from football 's desperate days of 1970s hooliganism .\na 17-year-old boy has been charged with drugs offences after a 14-year-old boy was treated in hospital after taking half of a ` darth vader ' tablet .\nthe welsh government 's tuition fee policy is threatening the future of higher education in wales , according to the body representing its universities .\nboojum , the belfast-based chain of burrito restaurants , has been sold .\ninjured goalkeeper siobhan chamberlain has withdrawn from the england women 's squad for their euro 2017 qualifiers against belgium and bosnia-herzegovina .\na disc jockey has been jailed for eight months for stealing money from a children 's cancer charity linked to the oscar knox appeal .\nsheffield wednesday have signed middlesbrough striker jordan rhodes on loan until the end of the season .\nfor a herefordshire potato farmer , william chase is impressively savvy about the need for positive publicity , and the importance of telling a good story .\na&e units across the uk are not equipped to cope with the rising demands being seen this winter , emergency care doctors say .\nabout # 20m has been pledged to construct two major roads linking the new site of balmoral show to the motorway network , it has been claimed .\na `` serial liar '' who made a series of bogus sexual assault allegations against 15 men has been jailed for 10 years .\na british man caught up in the foiled train attack near arras in northern france has criticised the actions of the train 's staff .\nscotland will be represented at next month 's european curling championships in braehead by rinks led by tom brewster and eve muirhead .\nnorthern ireland 's first minister is to write to the german chancellor to seek support for a new compensation package for victims of the thalidomide scandal .\nhundreds of people are feared to have drowned after a boat carrying up to 700 migrants capsized in the mediterranean sea , the italian coastguard says .\nexeter chiefs have signed england lock geoff parling from leicester tigers and bath wing olly woodburn for next season on two-year contracts .\na man has suffered burns after he was hit by what police have described as a `` large firework rocket '' in north belfast .\nsingapore plans to regulate third-party taxi booking apps such as uber by capping fees and limiting them to use only licensed vehicles and drivers .\nno-one saw it coming .\nkeighley want the rugby football league to consider amateur video footage when they review a brawl during the club 's challenge cup tie against fryston , which left a player with a broken jaw .\nsports direct owner mike ashley has won the latest round of a legal fight with rangers over a merchandise deal .\na gloucester-based firm has been fined # 80,000 after a man was crushed between an industrial vehicle and a shipping container at work and later died .\ni think manchester united can be chelsea 's closest challengers for the title next season , but louis van gaal has got to get things right away from home against the so-called lesser teams .\ntorrential rain caused flash flooding of homes and businesses in coastal areas of east norfolk .\ndonald trump has said that if he is elected president he may abandon a guarantee of protection to fellow nato countries .\ntwo ex-rabobank traders have been charged by the us department of justice with manipulating the libor rate .\ndonald trump campaign manager corey lewandowski has been charged with assaulting a journalist at a campaign event .\nivan lendl is definitely more of a handshake than a hug kind of guy .\na large fire broke out a school as students gathered to collect their gcse results .\nwales wing george north and ireland centre robbie henshaw have been ruled out of the british and irish lions tour of new zealand .\nfinal frontier design wants to be the number one space suit designer for commercial space flights .\naston villa have named tom fox as the club 's new chief executive .\na 21-year-old woman from swanage , dorset is missing in south thailand , according to her family , who have posted an online appeal for help .\na new mri scanner has been delivered to the royal belfast hospital for sick children .\nabertay university 's computer gaming courses have been ranked the best in europe for the third consecutive year in an annual college admissions survey .\nsix british soldiers who fought in the first world war have been given military burials more than a century after they were killed in belgium .\ntransformers : age of extinction has held on to the number one spot at the north american box office on an unusually quiet 4 july weekend .\ngreat britain 's men began their champions trophy campaign with an encouraging 0-0 draw against world number one side australia .\na man has set off in a bid to set the first official world record for swimming across the atlantic ocean .\ntwo japanese climbers who scaled the matterhorn in the swiss alps have been found dead on the mountain , according to the japanese foreign ministry .\na diver has been rescued from the sound of mull by a lifeboat crew , after suffering from the bends .\ntens of thousands of grandparents are missing out on national insurance -lrb- ni -rrb- credits which could be worth more than # 230 a year when they retire , a former pensions minister has said .\ncharlton athletic head coach guy luzon is not concerned about his future despite a run of eight games without a win in the championship .\na turtle , thought to be from the gulf of mexico , that washed up on a cumbrian beach has died .\na group of hackers claims to have stolen the script for a forthcoming game of thrones episode and other data in a breach at entertainment firm hbo .\nbuyers of african art have descended on london this week for an auction at bonhams and the 1:54 contemporary art fair .\nan eight-year-old boy with cerebral palsy who was filmed completing his first triathlon unaided has been honoured at the yorkshire awards .\nfrance has honoured four members of the french resistance with a ceremony at the pantheon mausoleum in paris .\na woman has admitted kidnapping a nine-week-old baby boy in telford .\nthe operator of the uk 's atm network has said it is working hard to keep cash withdrawals free for millions of bank customers .\nresidents who had to evacuate their homes after a river wall collapsed are locked in a dispute over repairs they fear could cost # 500,000 .\ncricketers , politicians and sports people have paid tribute to australia cricketer phillip hughes , 25 , who has died two days after being hit by a ball while batting for south australia in a domestic game .\nthe owners of bay tv , liverpool 's local television station , have insisted it will survive despite going into administration .\nthe one show presenter alex jones has spoken of her wish to teach her baby son to speak welsh but admits it might be a struggle while living in london .\ncheating in exams is fairly common in the indian state of bihar , but new images have emerged which show just how large-scale and blatant the practice is .\n`` payslip-gate '' , as it has come to be known , has been dominating the news headlines in iran for months .\nthe us justice department says federal agencies will have to obtain search warrants to use technology that tracks mobile phones under new guidance .\nlala njava 's music is grounded in madagascan tradition but is enriched with jazz , trance and afrobeat .\nthe brutal killing of a promising teenage street footballer has concentrated minds in brazil ahead of the world cup this summer .\nlondon needs its own visa system to allow higher levels of migration to avert economic decline post-brexit , a leading business organisation has said .\nukraine built a comfortable lead over slovenia in their euro 2016 play-off as andriy yarmolenko and yevhen seleznyov scored in a 2-0 win in lviv .\nat least 59 people have been killed after a truck bomb exploded in north-eastern baghdad , iraqi officials say .\nbreast cancers can manipulate the structure of bone to make it easier to spread there , a study has found .\nphil taylor set up a premier league play-off semi-final with peter wright after claiming the last qualifying spot in aberdeen .\npolice officers in england and wales are to get specialist advice on how to spot patterns of domestic abuse .\nshares in chipotle have slumped more than 12 % after us health authorities reported more cases of e. coli linked to the mexican restaurant chain .\na loan shark has taken a judge 's offer to avoid an 18-month prison sentence by repaying his victims .\na mournful procession of about 1,500 latvians winds its way through riga 's medieval old town singing traditional latvian songs .\nthe us is to deploy a specialised force to iraq to build pressure on islamic state militants , us defence secretary ashton carter has said .\nthe trump administration plans to sell military planes to nigeria despite concerns over rights abuses and a botched air strike that killed scores of civilians in january , us media say .\na murder inquiry has started following the death of a 24-year-old father in south lanarkshire .\npolice have searched the home and garden of a vulnerable woman who has been missing for a month in inverclyde .\na nurse who injected her mother with insulin as she lay in hospital after a fall has been found guilty of attempted murder .\na prototype 3d-printed robotic hand is this year 's uk winner of the james dyson award .\ntransport costs helped the uk 's inflation rate turn positive in may after one month of negative inflation .\nthe 2022 world cup in qatar should take place in november and december , a fifa taskforce has recommended .\nthe owners of warwick castle are appealing after a council rejected plans to put a permanent `` glamping '' site in its grounds .\na man who ordered cannabis on the `` dark web '' and planned to deal the drug to clear his debts has been jailed for six months .\nwildlife conservators have said they are `` extremely concerned '' that the number of little terns nesting in the uk 's biggest breeding colony dropped by almost half in a year .\nabout 15 students are occupying part of a queen 's university belfast building in protest at its failure to commit to divestment from fossil fuels .\na statue of former test cricket umpire dickie bird has been elevated to stop people hanging rude items on his outstretched finger .\nsinger joni mitchell is recovering from a stroke and brain aneurysm earlier this year , her friend and fellow singer judy collins has said .\ntwo convicted rapists and a man convicted of assault - all considered to be a `` risk to the public '' - have absconded from an open prison .\ntwo 13-year-old girls accused of stabbing a classmate to please the online horror character slender man have pleaded not guilty in court .\nforward jose baxter , who was suspended twice in nine months , is among 10 players released by sheffield united .\ndylan hartley 's disciplinary record should not prevent him being appointed england captain , according to the head of english rugby ian ritchie .\nsarah palin 's endorsement of republican presidential frontrunner donald trump on tuesday night was billed as a surprise , but in hindsight it is surprising only that it took so long for this natural political partnership to be forged .\nthe uk 's nuclear submarine refit base is to remain in special measures amid safety concerns .\nfees for church of england weddings are to increase by 40 % and the cost of a funeral service by more than 50 % .\nit is what developers are calling a `` pixelated cloud '' - a profusion of box-like extensions jutting out from the middle of two tower blocks , and fusing them together .\na convicted fraudster used an `` ingenious '' escape plot to trick prison wardens into letting him go free , a court has heard .\nfirst minister carwyn jones has said he never called for wales to veto the uk 's future brexit deal .\nhealth secretary jeremy hunt has offered to meet junior doctors ' leaders after the decision to ballot medics on industrial action over a new contract .\nport vale have completed the signing of striker tyrone barnett from afc wimbledon on a two-year deal .\never since steamboat willie , the iconic animated clip from 1928 featuring a mouse that would later become mickey , disney has had a proud record of innovating with new technology .\nolympic champions and world number ones charlotte dujardin and scott brash head the field at the london international horse show at olympia on tuesday .\na rising number of energy customers have switched gas and electricity deals amid widespread calls to benefit from savings that are available .\nthe descent into paro by plane , which has to navigate a mountainside , is not for the faint-hearted .\nlabour mp john mann has said he will vote to leave the eu and says labour voters `` fundamentally disagree '' with the party 's official position .\nan eight-year-old girl is in a critical condition after being hit by a car in dundee .\nhull city of culture 2017 has raised # 32m to produce the year-long festival , according to the charity set up to deliver it .\nworld cup winner and two-time olympic champion abby wambach has admitted taking cocaine and smoking marijuana .\nwelsh lib dem leader kirsty williams has asked voters to trust the party 's pledges on student grants despite broken promises not to raise tuition fees in england .\ntwo of the three families of missing workers feared trapped at the collapsed didcot a power station have criticised emergency services ' rescue attempts .\nlondon mayor sadiq khan has confirmed fares across the transport for london -lrb- tfl -rrb- network will be frozen from january until 2020 .\nchile qualified behind germany from group b to reach the confederations cup semi-finals after drawing 1-1 with australia in their final group game .\nan elderly couple who were found dead in ballycastle , county antrim , last week did not die as a result of carbon monoxide poisoning , police have said .\nspanish skateboarder ignacio echeverría , who died from saturday 's terror attacks in london , has been posthumously awarded one of spain 's highest honours .\nan attack by knife-wielding men at a railway station in kunming in south-west china has left at least 29 dead , the state news agency xinhua says .\nin the week since donald trump effectively secured the republican presidential nomination , a great deal of ink and airtime have been devoted to explaining why he will have a difficult time winning the presidency in the autumn .\na plaque has been unveiled in memory of an army medical officer who treated prisoners at a german concentration camp in 1945 following its liberation .\nthe crew of a powerboat which crashed at 100mph were not using safety equipment during the high-speed test run , a report has said .\na steam train operator has been banned from running its rail services on the uk 's mainline railway .\nlewis hamilton equalled michael schumacher 's all-time record of 68 formula 1 pole positions at the belgian grand prix .\nsyria has handed in a plan for the destruction of its chemical weapons to the watchdog monitoring the process .\nin september 2010 masoumeh ataie was attacked with acid by her father-in-law after her marriage broke down .\nan established number of people are choosing to sleep rough as a `` lifestyle choice '' , a council report has claimed .\nmanchester city women made it three wins from three to start the women 's super league season with a hard-fought win at birmingham city ladies .\ncardiff is to get a public bicycle hire scheme based on london 's `` boris bikes '' .\norganic farms act as a refuge for wild plants , offsetting the loss of biodiversity on conventional farms , a study suggests .\na community group has agreed a deal to take over a former powys pub following concerns it was going to be turned into a well-known supermarket .\npakistan coach waqar younis has dismissed suspicions over his side 's performance in the third one-day international against england .\nthe eu has to be measured in its response to theresa may 's election announcement .\nrain has fallen on the glastonbury festival as fans enjoyed the first day of music on the main stages .\nwest brom reached round three of the league cup courtesy of a penalty shootout after being held to a goalless draw by league one side port vale .\nthe chief executive of the rugby football league says the governing body needs to improve its strategy in london .\nthe memory card in the flight recorder of a russian fighter plane downed by turkey on the syrian border last month is damaged , russian investigators say .\nthe uk economy is `` turning a corner '' , chancellor george osborne has said in a speech in london .\nross kemp is returning to eastenders as part of a storyline that will see dame barbara windsor exit the soap for good .\nmichael holt survived a ronnie o'sullivan comeback to win 4-3 in the first round of the world grand prix in llandudno .\nthe stromeferry bypass in wester ross has been reopened after a landslide led to travel on the road being restricted to between 07:00 and 19:00 .\nleague one club oldham athletic have confirmed that they have sacked winger cristian montano .\nbaroness thatcher was the uk 's first and only female prime minister .\nmore than six million workers have now been signed up automatically to a pension savings scheme but fears remain over how much is being set aside .\nthis week musicians and music industry leaders from across the globe are in cardiff as womex , the world 's leading world music expo arrives in britain .\na shocked sports journalist got home to find a parcel which was posted through his window had landed in his toilet .\nsweden has been experimenting with six-hour days , with workers getting the chance to work fewer hours on full pay , but now the most high-profile two-year trial has ended - has it all been too good to be true ?\na cafe owner has defended a sign urging people to eat cake to avoid being kidnapped in the town where april jones was abducted and murdered in 2012 .\nhorses can tell if people are happy or angry , according to a new experiment .\na medic has been `` photobombed '' by david beckham at an awards show while tucking into a sausage roll backstage .\ntom dumoulin saw his overall giro d'italia lead cut to 31 seconds after an unscheduled toilet stop during stage 16 , which was won by vincenzo nibali .\nbritish pair heather watson and naomi broady were both knocked out in the first round of the biel bienne open in switzerland .\na town centre footfall study across eight main borders towns has recorded its highest figures since 2012 .\nconfirmation that bodies found in a bog were disappeared victims kevin mckee and seamus wright is `` bittersweet news '' , the mckee family has said .\nthree years ago , a crown prosecution service lawyer dropped a rape case involving an under-age girl which could have left a sex grooming ring undetected for years .\nmore than a million people have signed a petition calling for the judge in the controversial stanford university sexual assault case to be sacked .\nengland and liverpool midfielder james milner has retired from international football .\nscunthorpe united have signed hull city goalkeeper rory watson on a 28-day emergency loan .\ndirector joss whedon has revealed the title of his 2015 avengers sequel - avengers : age of ultron - at the comic-con convention in san diego .\nthe uk government has warned gay and transgender travellers to be careful in the us due to legislation in north carolina and mississippi .\nswansea city head coach paul clement says his side are running out of time in their bid to avoid premier league relegation .\nrspb scotland has urged people to discard unwanted plastic bags carefully after a rare bird was photographed with one caught in its beak .\nleeds united 's assistant head coach paul raynor has said that chairman massimo cellino is still positive , despite fan protests at elland road .\nthe welsh government will set a `` framework '' of five-year targets in its attempt to ensure a million people speak welsh by 2050 .\nthe stress of air travel has increased this summer , with long queues reported across europe because of tighter security and immigration checks .\nsouth sydney rabbitohs prop tom burgess has had a trial with the new york giants american football team .\na man has died after he `` came into contact with chemicals '' at a house in south london , police said .\nthe body of the first briton to be killed while fighting against islamic state -lrb- is -rrb- has been handed over to his family at the syrian-iraqi border .\nfor the llewellin family , when it comes to sporting success , the apple does not fall far from the tree .\nplans to restrict the role of welsh mps should be treated with caution , a former welsh secretary has warned .\nengineers have constructed a robotic arm , aimed at improving surgical operations and inspired by the octopus .\nthe head of belfast international airport has told enda kenny that belfast should become `` the gateway to ireland '' .\nthe father of fugitive former us intelligence contractor edward snowden is in russia to visit his son .\na disturbance at a prison saw 130 inmates transferred to nearby jails after two wings were put `` out of commission '' , a union has said .\nthe russian military says it has informed the us that it believes rebels in the syrian city of aleppo have deployed `` toxic substances '' .\nflooding across parts of the uk last winter was the most extreme on record , experts have said .\nlinfield secured a money-spinning champions league tie against celtic as a goalless draw in san marino earned a 1-0 aggregate win over la fiorita .\nthe last builder of large ships in bristol has closed after its final vessel sailed out of dock .\nholyhead 's grade ii-listed market hall is to be restored after standing derelict for 10 years .\nthis is calvapilosa , a prehistoric relative of modern sea slugs .\nchancellor george osborne faced a tricky challenge when trying to raise taxes in this budget , which was that his party had already promised not to raise income tax , national insurance or vat .\nthe safety of scotland 's high-rise flats is to be examined by a holyrood committee following the grenfell tower tragedy in london .\nformer hollywood child star shirley temple has died at the age of 85 .\na group of south sudanese artists has warned against the revenge culture following the recent conflict which led to hundreds being killed .\nthe polish foreign ministry has banned a biker gang linked to russian president vladimir putin from entering the country .\nronnie o'sullivan beat adam stefanow to set up a third-round tie against jimmy white at the scottish open , as john higgins also progressed in glasgow .\nsome mental health trusts in england have seen `` no significant investment '' in psychiatric services for children despite government plans to overhaul provision , say experts .\ngreenhouse gas emissions in scotland have risen but the statutory target for 2015 has been met , according to the latest figures .\nthe official figures showing that 98 % of voters backed morocco 's reform referendum are `` unbelievable '' , a democracy campaigner has told the bbc .\ncincinnati 's scooter gennett became the 17th player to hit four home runs in a major league baseball game in tuesday 's 13-1 win over st. louis cardinals .\na bomb disposal expert called to a flat in dumfries discovered a homemade device made from three fireworks wrapped in a sock , a court heard .\nbrentford have confirmed manager mark warburton will leave the club at the end of the season .\nhuman and animal fossilised footprints that may be from the bronze age have been exposed on a ceredigion beach .\nbrazilian president dilma rousseff has unveiled the torch to be used at the 2016 olympics in rio de janeiro .\nfive people have been rescued after their fishing vessel ran aground and capsized in the sound of mull .\nan annual gay rally in singapore has drawn thousands amid an unprecedented backlash from religious groups .\nfourteen members of an organised crime gang have been convicted over their roles in stealing artefacts worth up to # 57m from museums and an auction house .\nparents have been warned about an intruder at a ceredigion nursery , according to a letter seen by bbc wales .\nthe uk 's trading standards services have been `` cut to the bone '' , making it tougher to ensure that household products are safe .\nthe un 's emergency ebola response headquarters in ghana 's capital , accra , is to close as the outbreak slows .\naustralian rugby union star karmichael hunt has been charged with supplying cocaine , officials say .\negyptian press and commentators are divided over the approval of a disputed new constitution in a referendum .\nrelatives of bloody sunday victims have called a march by military veterans in londonderry `` an act of pure provocation '' .\nthe head of the consular department at russia 's embassy in greece has been found dead in his flat in athens , police say .\nonly a third of children in wales have healthy teeth overall and this is lagging behind england , a major survey suggests .\nan electric racing car built by swiss student engineers has broken the world record for acceleration by battery-powered vehicles .\na campaign calling on retailers in liverpool to stop selling the sun has received the unanimous backing of city councillors .\nscores of people are reported killed in an explosion at an industrial gas plant in southern nigeria .\naverage speed cameras are due to be activated on one of scotland 's busiest motorways while work continues on a # 500m upgrade project .\ndundee united have signed their second goalkeeper in a week by bringing in harry lewis on loan from southampton .\ntwo german climbers froze to death while attempting one of the peaks of mont blanc in the french alps and rescuers have recovered their bodies .\nirish band u2 have mourned the death of their `` irreplaceable '' tour manager dennis sheehan , who has died of a suspected heart attack .\nchina has accused the us of militarising the disputed south china sea through its air and naval patrols .\nthe it systems of three us hospitals have been infected with ransomware , which encrypts vital files and demands money to unlock them .\nscottish-based travel firm skyscanner has reported double-digit growth for the seventh consecutive year .\nafter my blog on wednesday on tensions between drugs advisors and the home office , more details have emerged of how the expert panel on legal highs was split down the middle on whether to go for a total ban .\nthailand 's attorney-general has filed criminal charges against former prime minister yingluck shinawatra over a controversial rice subsidy scheme .\nthere were n't as many noughts on the cheques as there were south of the border , but scotland 's top flight enjoyed one of its most lively transfer windows for some time .\na new ferry built for the stornoway to ullapool route was temporarily withdrawn from passenger duties because of a faulty ventilation fan .\nnottingham forest beat birmingham but their 3-1 win was marred by an injury suffered by striker nicklas bendtner .\nkaty perry has said she 's ready to put an end to the bad blood which has existed between her and taylor swift for the past few years .\ncornwall won the county championship for the first time since 1999 as they beat lancashire 18-13 at twickenham .\nchelsea beat arsenal 3-1 to stay nine points clear at the top of the premier league , while tottenham remain second after a 1-0 win at home to middlesbrough .\na unique perspective on a landmark social event is to be unveiled as part of nottingham 's caribbean carnival .\nwebsite security checks that challenge people to prove they are human are likely to `` disappear '' in favour of a new system developed by google .\nthe uk wife carrying championships have a winner !\nwales should put an end to the `` stigma '' children face for claiming free school meals , an assembly member claims .\nalmost 1,000 people in the south eastern health trust are waiting for an urgent appointment to see a cardiologist , according to a report .\ncoleraine rower joel cassells and great britain team-mate sam scrimgeour remain on course to defend their lightweight pairs world title after winning their semi-final in rotterdam on thursday .\nnineteen police officers and staff have a case to answer for misconduct in their dealings with a domestic violence victim before her murder , a major investigation has found .\nmexican comic actor ruben aguirre , loved by millions of children and adults across latin america , has died , aged 82 .\nsouth africa coach ephraim mashaba has insisted the team is not responsible for the poor results in their 2017 africa cup of nations group qualifiers .\nnorth korea has detained several us citizens - sometimes holding them for years , the bbc explains .\na mystery donor has paid â # 150,000 to fund a `` last chance cure '' for a boy of 11 with leukaemia , his mother has said .\nlondon 's landmark tower bridge has closed to traffic on saturday until the end of december for maintenance work .\nairline booking systems lack basic security checks that would stop attackers changing flight details or stealing rewards , warn experts .\npope francis has approved the beatification of a jesuit priest from dublin for his work with the sick and dying in the early 20th century .\nthe uk 's only female panda , tian tian , is believed to be pregnant , according to edinburgh zoo .\nthe great manchester run will go ahead on sunday following talks over security after the manchester arena attack .\npleas have been made by members of the scottish parliament for better quality coffee to be served to them during committee meetings .\njoe perry thrashed former world champion stuart bingham 6-1 to reach the quarter-finals of the masters .\nafghanistan 's spy agency has confirmed that taliban leader mullah akhtar mansour has been killed , after the us targeted him in a drone strike .\nan orlando mother who was found not guilty of murdering her two-year old daughter caylee has broken her silence six years later .\nengland 's sarah taylor is taking an indefinite break from cricket for personal reasons .\nfour professional singers interpret their journey on a london bus guerrilla-style to the surprise of passengers .\na 104-year-old swimming pool has closed after a council said it could no longer afford to repair the building .\neighteen people died when their tour bus collided with a lorry and burst into flames on the a9 motorway in southern germany , police say .\na `` medal at any cost '' approach created a `` culture of fear '' at british cycling , says former rider wendy houvenaghel .\nscottish legal authorities have granted permission for twitter to be used to report the conclusion of a murder trial at the high court .\ngerman football has rallied around thomas hitzlsperger after the former international midfielder revealed he was gay .\npolice investigating the rape of an elderly nun in the indian state of west bengal say they have arrested a key suspect in the crime .\nin the third of a series of in-depth profiles of the four labour leadership candidates , iain watson catches up with jeremy corbyn in essex at the latest of his campaign rallies .\na carer accused of stealing almost # 290,000 from a 102-year-old said the woman `` wanted her to have the money '' , a court has heard .\nthe uk fishing industry will need continued access to eu markets if it is to thrive after brexit , a house of lords report has warned .\nattempts to disrupt belfast city centre bookended 2013 .\na halfords customer 's dashboard camera caught a mechanic speeding in his car while it was booked in for an mot .\na uk ship with sophisticated detection equipment , hms echo , has arrived in an area where a chinese vessel searching for the missing malaysian plane has twice detected a pulse signal .\nmame biram diouf scored a late equaliser as stoke prevented chelsea from overtaking them in the league .\nwasps ran in five tries at the ricoh arena as they thrashed sale to boost their premiership play-off hopes .\nwycombe have signed scott kashket after his leyton orient contract was terminated and southampton midfielder dominic gape on loan until 3 january .\na post mortem examination revealed many clouds died from bleeding on the lung but that the 2015 grand national winner had no underlying health problems .\na plane has been forced to carry out an unexpected landing after being struck by lightning .\na gp surgery in dorset that was rated inadequate after inspectors found staff shortages put patients at risk has been taken out of special measures .\n` start spreading the news , i 'm leaving today , i want to be a part of it , new york , new york . '\nmsps are to examine the payments received by election returning officers in scotland .\nresidents have called for urgent action amid claims that a new mass traveller site is being created at the end of their road in essex .\nfirefighters have put out a major blaze which swept through a derelict listed building in glasgow .\ngreat britain 's colin fleming says tennis players guilty of match-fixing should face life bans .\nthe preferred location for a town 's first railway station in 50 years has been revealed .\neconomics correspondent andy verity takes a regular look at some of the more confusing phrases bandied around in finance and economics .\nprofit jumped at zara owner inditex in the first half of the year as the firm opened new stores and invested in online .\na multi-vehicle crash has taken place during a heavy hail shower on the a74 -lrb- m -rrb- after a spate of incidents in similar conditions on sunday .\nthe sun 's original headline , above the 2003 story of former heavyweight champion frank bruno 's admission to a psychiatric hospital , did not last long .\nthe former nigeria captain and coach , sunday oliseh , says he is relishing his role as head coach of dutch club fortuna sittard , after a successful start at the second tier side .\nnineteen-time winners wigan warriors will travel to local rivals and 2016 runners-up warrington wolves in the quarter-finals of the challenge cup .\nkenya 's president uhuru kenyatta has urged fellow african leaders to stop receiving foreign aid , saying it is not an acceptable basis for prosperity .\ndata on all passengers leaving the uk is being collected and handed to the home office under a scheme being phased in at ports and border crossings .\nbradford city boss stuart mccall said he was `` close to clocking '' millwall fans who invaded the pitch at the end of the league one play-off final .\na football fan who walked to wembley wearing his swimming trunks has broken his # 50,000 fundraising target .\nadama diomande scored twice as hull city battled past league two 's exeter city in the efl cup second round .\nfrench prime minister manuel valls has proposed an aid package for students and young apprentices , after so-called `` nuit debout '' -lrb- up all night -rrb- protests by thousands of young people .\nsouth african players are excited by the prospect of competing in the pro12 , according to southern kings scrum-half rudi van rooyen .\nprime minister david cameron has entered the debate about whether jimmy savile 's knighthood should be rescinded because of the sex abuse claims against him .\na stranraer academy student has set up a petition to ensure a life-enhancing drug is made available to a fellow pupil with an extremely rare disease .\njamaica 's defending champion usain bolt made it through the 100m heats without alarm to reach the olympic semi-finals .\nmark mcghee has urged fans to turn up for scotland 's world cup qualifier against slovenia - but says they will be entitled to boo a poor performance .\njono gibbes is to become the head coach of pro12 side ulster on a two-year deal in the summer .\na public spending watchdog has published `` serious concerns '' over the financial control of east dunbartonshire council .\na man accused of murdering his 22-month-old son in birmingham had previously punched his other son in the stomach , a court heard .\nleyton orient 's fading hopes of avoiding relegation from league two took another heavy blow with a convincing defeat at crawley .\nthe $ 1.9 bn -lrb- # 1.2 bn -rrb- european fund to tackle african migration is not sufficient , several african leaders have said after crisis talks with their european counterparts .\nbrechin city came from two goals down to earn their first point in this season 's championship as livingston were denied a maiden league win .\nfirefighters rescued a woman who became trapped in a tyre at a playground in flintshire on wednesday .\ntwo cars ended up sharing the same parking bay after a collision at kirkcaldy train station .\nfinance ministers from the world 's leading economies have warned of a `` shock '' to the global economy if the uk leaves the eu .\nnathan boyle 's first-half goal proved enough to give derry city victory over wexford youths at the brandywell .\nmore than 13,000 email addresses have been stolen from edinburgh city council 's database following a `` malicious cyber attack '' .\nhull kr battled back to beat halifax in their first game of the qualifiers .\nspain was already on high alert for a possible attack when a van smashed into the crowd on barcelona 's famous las ramblas boulevard , killing 13 people .\nscotland was once the shipbuilder to the world and the heart of its industry was sited on the south bank of the river clyde in the glasgow district of govan .\na leading baloch separatist has said he is ready to consider dialogue with pakistan , as long as the army ends military operations in the province .\nin an era of giants , sauropods dwarfed everything .\na scottish sea salt business on the western isles has signed a deal to supply a supermarket chain .\nlife-threatening surgery , broken bones and a lifetime of obstacles have not stopped paralympic champion david smith scrapping , splashing and sliding his way to the top .\ntwo women , one with a suspected broken leg , have been rescued from divis mountain in belfast .\ntwo men who died in a paint-spraying booth were so badly burned they could only be identified using their dental records , an inquest has heard .\nsix men , including five from the same family , have been jailed for conspiracy to steal railway cable .\nbournemouth boss eddie howe admits his side 's sudden lack of confidence in front of goal is `` baffling '' .\nvolkswagen has halted production at several plants in germany , hitting the output of golf and passat models amid a dispute with two external suppliers .\naustralia 's opposition labor party has asked police to investigate whether the government tried to induce the president of the australian human rights commission -lrb- hrc -rrb- to resign .\nwarrington winger gene ormsby has joined super league rivals huddersfield giants with immediate effect .\nan andy warhol painting of chairman mao is to be auctioned in hong kong - and it could go to a chinese bidder for a `` homecoming '' of sorts .\na man who allegedly masqueraded as a doctor in australian hospitals for over a decade is believed to have left the country , authorities have said .\na 19-year-old man has been charged with the murder of celebrity minder ricky hayden , who was stabbed to death in east london .\nmatch reports from saturday 's scottish premiership and championship games .\nthe mother of a man who stabbed a motorist 39 times told a court she `` pleaded '' with mental health experts to have her son sectioned .\nan international team of architects and scientists have observed `` thermal anomalies '' in the pyramids of giza , egyptian antiquities officials say .\nnorwich city have signed midfielder alex pritchard from tottenham hotspur for an undisclosed fee and goalkeeper paul jones on a free transfer .\njustin gatlin was crowned overall diamond league champion in the 100m after winning the final race of this year 's series in 9.98 seconds .\nsunderland winger adnan januzaj has been ruled out for a minimum of six weeks with an ankle injury .\nmuch of earth 's life-giving carbon could have been delivered in a planetary collision about 4.4 billion years ago , a theory suggests .\njon parkin netted a late winner as national league promotion-chasers forest green beat 10-man eastleigh .\na quick web search for the world 's most famous scientists lists , among others , galileo , einstein , newton , darwin , stephen hawking and alexander fleming .\nup to 59 % of a typical london family 's income is spent on rents , a study by housing charity shelter has revealed .\npolice in italy have arrested the former governor of the mexican state of tamaulipas , tomás yarrington , 59 .\nthe scottish spca is appealing for information after a young gull was shot near dumfries .\ngerman chancellor angela merkel is due to meet vladimir putin in russia for the first time since 2015 .\nderek mcinnes has stressed that his focus remains on aberdeen after fielding questions about the managerial vacancy at former club rangers .\ncardiff city manager neil warnock says wales defender jazz richards ' rehabilitation from injury has been ` disappointing . '\nsaracens director of rugby mark mccall says his side can still improve despite securing back-to-back european titles .\njust as the chancellor spent the morning trying to calm the city , so there will be a need to manage the expectations of the country .\ndebut author kj orr has won the bbc national short story award for disappearances , beating the likes of double booker winner , hilary mantel .\ndefender paul quinn has rejoined ross county on an 18-month contract after agreeing his release from aberdeen .\nikea is recalling a beach chair sold in the uk after reports that it can collapse and cause injury .\nbeing overweight in adolescence is linked to a greater risk of bowel cancer later in life , a study suggests .\nhibernian head coach neil lennon hopes to keep the bulk of his squad together after winning promotion to the scottish premiership .\nit started as a mission to collect whiskey for a party towards the end of world war two and ended in a blazing inferno in which 11 us personnel died .\na pioneering # 250m science and engineering hub has been officially opened in newcastle .\nthe amount of radon gas found in the channel islands is associated with the geology of the island and not construction materials , a survey finds .\na 60-year-old woman in dumfries and galloway has been conned out of # 30,000 just a week after a similar scam netted # 10,000 .\na derelict historic house near dumfries has been damaged in a fire which broke out overnight on friday .\nin our series of letters from african journalists , yousra elbagir looks at how sudan 's young poets are reviving the nation 's tradition of lyrical resistance .\naustralian politician bob katter has defended a video that depicts him killing his electoral rivals .\npatients are dying from sepsis because of a lack of effective antibiotics , an expert is warning .\nthere 's exactly one year to go until the winter olympics officially kick off in the asian country of south korea .\nscholars have hit their target of raising # 1.1 m to secure the future of an early biblical manuscript .\npolice investigating the murder of a woman found dead in the new forest have been given more time to question a man .\ncuba 's government has denounced us president donald trump 's decision to roll back on policy changes towards the island nation .\nnico rosberg retook the world championship lead from lewis hamilton following a grandstand finish to the singapore grand prix .\nthe scottish government has published a bill outlining provisional plans for another referendum on scottish independence , plans which some believe coincide with a renewed sense of scotland 's separate identity .\nbritish army personnel has been cut back by more than 20,000 - three years ahead of target , the bbc has learned .\nfive children and three adults have been injured in a crash involving two cars .\nscotland 's finance secretary has pledged to give more information to the finance committee to scrutinise his delayed draft budget .\nworcestershire have re-signed new zealand all-rounder mitchell santner for the 2017 t20 blast competition .\ncaptain scott brown has been a `` terrific influence '' on players looking to make their scotland debuts , according to coach gordon strachan .\nthe white house is in the `` final stages '' of drafting a plan to close the controversial us military prison guantanamo bay , a spokesman has said .\nmilitary chiefs in america say a new , unmanned stealth bomber has carried out its first test flight .\nparents of children due to go to a summer camp whose director has been charged with possession of indecent images have been offered refunds .\na dog seized by belfast city council for `` looking like a pit bull '' has been reunited with his owners .\nan aide to a kent conservative mp has appeared before westminster magistrates charged with rape following an alleged attack at the houses of parliament .\nbusiness leaders ' group the institute of directors -lrb- iod -rrb- has accused the uk government of a `` poverty of ambition '' on broadband speeds .\nvolunteers in new zealand are racing to rescue survivors after more than 400 pilot whales beached themselves .\nproposed collaboration between north and south korea at the 2018 winter olympics has been welcomed by the international olympic committee .\nfrench authorities are formally investigating ubs for allegedly helping wealthy clients open undeclared bank accounts in switzerland .\nbritish astronaut tim peake has spoken to hundreds of children from across england and wales in a live space chat .\nus officials say they have suspended a search and rescue operation for three marines missing after their aircraft crashed off the australian coast .\nlivingston remain two points clear at the top of scottish league one after they beat nine-man east fife .\nthe number of road traffic collisions in a devon city has increased following the introduction of major roadworks .\nthe scottish professional football league is warning clubs to be on their guard against online fraud .\ncastleford tigers have signed cronulla sharks forward jesse sene-lefao on a two-year deal .\nbluebell woods in guernsey are being invaded by a non-native species , environmentalists say .\na flaw on supermarket asda 's website gave hackers the chance to collect customers ' personal information and payment details , the bbc has learned .\nthe description of a man believed to be involved in fly-tipping which left three conwy cows dead has been released by police .\nmusicals staged by sheffield 's crucible theatre lead the nominations for this year 's uk theatre awards , which reward the best shows produced outside london .\nthe first pine marten born and bred in wales as part of a recovery project has been caught on camera .\nfour men were arrested in north london when police found a gun , a sword and a knife in the car they were travelling in .\nfans of the twilight film series have been warned that they could be putting their sight at risk by sharing cosmetic contact lenses bought online .\na prosecution witness in the trial of a man accused of the `` frenzied '' murder of a woman , has been accused of carrying out the killing himself .\na new community hub for two cardiff suburbs will be officially opened next week .\nchina has complained to zambia after 31 of its nationals were arrested at the weekend for alleged illegal mining practices .\noil and gas exploration firm tullow oil has reported a pre-tax loss of # 1.3 bn for the year to 31 december as low oil prices bit into revenues .\na record shop opened by indie band frankie and the heartstrings in their home town of sunderland two years ago has shut after the premises was sold .\na summit is considering how wales can respond to the growing threat posed by flooding .\na london estate agent has complained to the liberal democrats after they used the name of his company in a spoof website attacking theresa may .\nrobin mcbryde will coach wales on their summer tour of the pacific islands .\nunpaid internships should be banned as a barrier to social mobility , says a report from mps and peers .\nkeurig green mountain , which makes k-cups single-serve coffee pods , said it has accepted a $ 13.9 bn -lrb- # 9.2 bn -rrb- bid .\nsome demands set by four arab states on qatar in return for lifting sanctions will be `` difficult to meet '' , us secretary of state rex tillerson says .\ndoctors have welcomed an extra # 20m of scottish government money aimed at easing the pressure on gps .\ntwo-time world champion mark williams will face china 's world number 84 zhao xintong in the world championship first qualifying round on saturday .\npolice in the us state of north dakota say they have arrested 76 people protesting against a controversial oil pipeline .\nchelsea manager antonio conte says the club are considering an appeal against captain john terry 's red card in sunday 's fa cup win over peterborough .\nmarta does n't need to go shopping today , because her fridge is filled with all the products her family requires .\nso , is northern ireland better off inside or outside the european union ?\na man from south wales accused of involvement in a car insurance fraud ring `` does not agree '' with personal injury claims , a court has heard .\na head teacher has defended his decision to offer staff at a lincolnshire school a `` duvet day '' .\ndisplays by the last two airworthy lancaster bombers from world war two have been cancelled after one suffered engine problems .\ncolchester have signed goalkeeper rene gilmartin as a player-coach after his release by watford , and confirmed dean brill will not be returning .\nhere are the key results of the 2014 european elections .\nhull kr head of rugby jamie peacock is unsure if half-back albert kelly will remain at the club in 2017 .\nopponents of same-sex marriage in california have filed an emergency petition to the us supreme court to try to halt gay weddings in the state .\nnew hartlepool manager craig hignett says the situation at victoria park is `` positive '' , despite taking over a side third from bottom in league two .\nrussia is expelling a veteran polish correspondent - and has joked that it will look after his cat for him .\nmick fanning has missed out on a fourth world surf title in hawaii after a strong performance overshadowed by the death of his brother peter .\nsmall businesses have welcomed what they said were long overdue reforms to tax policy as the chancellor doubled business rate relief .\na girl has described how she met footballer adam johnson for a `` thank you kiss and more '' after he signed football shirts for her .\nit 's the ugly side of the beautiful game .\nwelsh support for the uk could be in doubt if theresa may does not listen to concerns about devolution , the first minister has warned .\nthis afternoon number 10 has bowed to the inevitable , and conceded that if -lrb- and it is still an if -rrb- the deal is done at the eu summit in brussels this week david cameron will hold a cabinet meeting as soon as he returns to london early on friday evening .\njersey are to appeal to the court of arbitration for sport -lrb- cas -rrb- after their bid to join uefa was turned down .\nsnoop dogg has been criticised for shooting a toy gun at a donald trump character in a music video .\na man has appeared before magistrates in bristol charged with murder after a man was knocked down and dragged under a moving car .\nrangers have signed scotland midfielder graham dorrans from norwich city for an undisclosed fee .\nwidescreen tv sets hooked up to satellite dishes , expensive drinks and perfumes - these are just some of the luxury items colombian police have found in huts in the otherwise poor rural area of uraba , in western colombia .\nrihanna has released a collaboration with kanye west and paul mccartney , called four five seconds .\nin the north sea , off the coast of norway , nato has been conducting its largest ever anti-submarine warfare exercise .\nstephen keshi has been appointed nigeria coach for the third time and signed a two-year contract on tuesday .\nirvine welsh and james kelman are among the famous names in the running for this year 's saltire literary awards .\nthe united nations has come under fire for appointing comic book character wonder woman as its new honorary ambassador for the empowerment of women and girls .\nlondon welsh have avoided liquidation after paying their debts , and are now set to be taken over by an united states-based investment group .\nbournemouth 's polish goalkeeper artur boruc has announced his retirement from international football .\na man has been charged with manslaughter after a man died in hospital almost three weeks after an incident in a pub beer garden .\nthe orange order 's grand secretary has said the institution has put a massive effort into calming the situation in northern ireland ahead of 12 july .\na major review of inquests into some of the most controversial killings during the troubles got under way on monday .\nthe president of paraguay , horacio cartes , says he will no longer seek re-election after his bid to change the constitution triggered rioting .\nlee mcculloch will sign for kilmarnock in a player-coach role , his representative has confirmed .\na couple who paid for their funerals in advance claim to have lost their life savings after their funeral director went out of business .\nthe home secretary has refused to say whether the conservative manifesto will repeat their 2015 pledge to cut net migration to the `` tens of thousands '' .\nwigan went level on points with warrington , catalans dragons and hull fc at the top of the super league table with a magic weekend win over leeds .\nmedia regulator ofcom has opened up bidding for operators to set up their own local tv services across the uk .\na two-year-old boy found dead in a river after being reported missing in perthshire has been named by police .\ntop scientists fear plans for more grammar schools in england will not boost disadvantaged pupils ' grades .\ntributes have been paid to an `` always smiling '' toddler whose mother and stepfather have been accused of his murder .\nthe high court has dismissed two cases challenging northern ireland 's ban on same-sex marriage .\nczech 14th seed petra kvitova kept up her superb form by thrashing fourth seed simona halep to reach the final at the wuhan open in china .\nthe grammy awards are an annual ceremony held in the usa , which celebrate outstanding achievement in the music industry .\nleague one side bury have signed former barnsley defender reece brown on a six-month contract .\nstormont faces collapse after sinn féin refuses to nominate deputy first minister .\nwe crossed the border from the dominican republic and the skies darkened and the heavens opened , dumping more misery on to a country that has suffered so much .\nwatford have signed colombia defender juan camilo zuniga on a season-long loan from italian side napoli .\ntaiwan has banned its senior government officials from higher studies in mainland china , citing `` national security '' reasons .\njoseph parker defended his wbo heavyweight title for the first time in a drab points win over razvan cojanu .\nwales ' record international try-scorer shane williams has completed a u-turn on his rugby retirement and will play for a japanese side next season .\nan ethiopian airlines 787 dreamliner has flown from addis ababa to nairobi , the first commercial flight by the boeing aircraft since all 787s were grounded in january .\nspain 's alberto contador opened up a 13-second lead over main rival chris froome in winning the first stage of the criterium du dauphine .\nbritish horse racing 's governing body is to investigate after the ` wrong horse ' won a race at odds of 50-1 .\ntwo of africa 's most famous musicians have released a song against the recent violence against foreigners in south africa .\na popular brand of pink wafer is under threat after a company went into administration following a `` sharp fall '' in the value of sterling after brexit .\na former treasurer of spain 's governing popular party -lrb- pp -rrb- has arrived for questioning by prosecutors in madrid over claims of secret payments .\ngoals from chris wood and souleymane doukara gave leeds victory against burton albion in the championship .\nprominent tech executives have pledged $ 1bn -lrb- # 659m -rrb- for openai , a non-profit venture that aims to develop artificial intelligence -lrb- ai -rrb- to benefit humanity .\na lack of experienced staff contributed to a serious disturbance at a prison last year and remains a `` concern '' , a report has said .\nwrestlers in fancy dress have grappled for a world title in 1,000 litres of gravy .\nthe controversial writer michel houellebecq has won france 's top literary award , the goncourt prize , for his book the map and the territory .\ncristiano ronaldo scored a hat-trick as real madrid survived a scare to beat japanese side kashima antlers in extra time and win the club world cup .\nwith team gb celebrating their most successful olympics for 100 years , a debate is growing about how best to build on the legacy and inspire the next generation into sport .\ntesla will not be ordered to recall its semi-autonomous cars in the us , following a fatal crash in may 2016 .\ndefending champion mark selby reached the second round of the world championship by thrashing fergal o'brien 10-2 at the crucible theatre .\na protected bird of prey has been found dead in bedfordshire and had likely been shot `` at close range '' .\nthirteen people have been charged after a police operation against modern slavery .\nus vice-president joe biden told an audience in ottawa that the world needs `` genuine leaders '' such as canadian prime minister justin trudeau .\nyour friend monica calls you , agitated and angry , asking : `` why did you write that horrible thing about ross ?! ''\nthis is n't just the worst single ebola outbreak in history , it has now killed more than all the others combined .\nhas the giant online retailer amazon managed , quite legally , to avoid paying any corporation tax at all to the uk in the past year ?\na sea captain has been convicted of being drunk in charge of a merchant ship in belfast lough .\nthe man accused of murdering his ex-girlfriend whispered to a friend `` she 'll pay for what she 's done '' five days before she was killed , a court heard .\ntwo brothers aged five and two stole their mother 's car and wrecked it on a drive to their grandfather 's house , say authorities in west virginia .\nsir mick jagger has said he is `` struggling '' to understand the death of his girlfriend l'wren scott .\nbournemouth captain tommy elphick has been ruled out until the new year following an operation on an ankle injury , the club has confirmed .\ngateshead and guiseley extended their unbeaten runs with a 1-1 draw at the gateshead international stadium .\nbots appear to be spamming a us regulator 's website over a proposed reversal of net neutrality rules , researchers have said .\nexperts at the royal botanic garden say one of the world 's biggest - and smelliest - flowers is about to bloom in edinburgh .\nplans to build the first new uk nuclear plant in 20 years have suffered an unexpected delay after the government postponed a final decision until the early autumn .\nvotes can now be cast in an online poll to choose what could become britain 's first national bird .\njack marriott scored a hat-trick as peterborough made it maximum points from their opening two league one matches with an impressive victory at bristol rovers .\n`` now i 'm okay , '' was about all cynthia terotich could manage , as she sat in the casualty ward in garissa 's hospital .\nspanish police say they have dismantled a nationwide network that illegally regularised the working status of chinese immigrants in spain .\nnew manager gary haveron has called on glentoran 's players to show pride in the shirt as they take on belfast rivals linfield on saturday .\nit began early for jordan spieth : when he was three years old and ready for potty-training , his mother chris decided to bribe him out of nappies by hiding his plastic golf clubs on top of the washing machine until he had done what he had to do .\nin an interview with bbc sports editor dan roan , shamed cyclist lance armstrong said he should be forgiven for doping and lying - but also admitted he would probably cheat again .\nthe governor of california has declared a state of emergency after wildfires forced about 23,000 people to flee their homes in the north of the state .\nhigh street retailer next has been hit with a # 22.4 m tax bill after a court found it diverted profits made in the uk offshore to avoid paying tax .\nthousands of orangemen and women have taken part in their annual parade in rossnowlagh in county donegal .\ntorquay united , 22nd in the national league , edged a thrilling relegation battle with bottom club kidderminster .\nmultimillion-pound repairs to a flood-hit bridge have been approved by senior councillors .\na seal found tangled in nets on an aberdeenshire beach has been returned to the sea .\nthree wards treating elderly patients have been closed at llandough hospital in the vale of glamorgan after an outbreak of flu .\ndo you really need someone to tell you what to do at work ?\na man has been arrested following a spate of suspected arson attacks on dozens of cars and an aircraft , at nine different locations in south wiltshire .\nthe centenary year of playwright arthur miller 's birth is being marked with an explosion of productions around the uk in 2015 .\nargentina have sacked edgardo bauza after eight matches as coach , with the team outside the automatic qualifying places for next year 's world cup .\nbirmingham defender paul caddis has been told he is free to find a new club after more than four years with blues .\nzeid ra'ad al hussein , high commissioner for human rights at the united nations , has warned that a `` pandora 's box '' will be opened if apple co-operates with the fbi .\ncampaigners have won the latest battle in legal action against the uk government over levels of air pollution .\na new hovercraft route between the isle of wight and portsmouth could be introduced in the summer , operator hovertravel has said .\nthe us space agency nasa has issued a `` selfie '' portrait from its curiosity rover on mars .\nvice-captain paul lawrie says rory mcilroy 's recent form is a `` huge boost '' to europe 's ryder cup team ahead of this week 's contest at hazeltine .\na sudden death at a pub in county londonderry alerted police to alcohol being served hours after closing time , a court has heard .\nthe rspb has had to cancel the opening of its two new reserves in suffolk due to damage created by december 's coastal surge tides .\na motoring festival which has been running for 30 years is to be cancelled , organisers have said .\npeople are being reminded not to pour fat from cooking christmas dinners down the sink as it blocks up sewer pipes .\nall-rounder tom wells has signed a new two-year contract which will keep him at leicestershire until the end of the 2018 season .\ncarl frampton suffered the first defeat of his professional career as leo santa cruz won on points to regain the wba featherweight title in las vegas .\nthe 2017 welsh open takes place at the motorpoint arena in cardiff from monday , 13 february to sunday , 19 february , with live television coverage of every day 's play on bbc two wales and the bbc sport website .\nwelsh secretary alun cairns has rejected calls for a `` softer '' brexit after the general election result led to a hung parliament .\nthe relationship between black americans and the police is once again in the spotlight .\ntoyota says its full-year profits will be better than expected thanks to a pick-up in sales and a boost from currency fluctuations .\n-lrb- close -rrb- : us markets closed higher , led by technology and consumer sectors , while oil prices fell on fading hopes of an opec deal to limit output .\nfour thousand new homes could be built on greenbelt land in a new garden village development for surrey .\nfamilies of people allegedly killed by an army undercover unit have been told former members of the unit who appeared on tv admitted no crimes .\nthe death of saif al-arab gaddafi , if confirmed , is likely to have come as a consequence of nato 's increasingly aggressive tactics , undertaken by the alliance to shake up a stalemate in the conflict .\nall pictures are copyrighted .\nsingapore is putting pressure on major retailers in singapore to not use or sell materials produced by firms linked to fires in indonesia .\nan associate of convicted hate preacher anjem choudary has been jailed for 28 months for knocking a boy unconscious because he was cuddling a girl .\nall photographs taken by joseph fox .\nas part of national anti-bullying week newsround has been asking kids about the best way to stop it .\nthe international paralympic committee -lrb- ipc -rrb- has said it is investigating why the algerian women 's goalball team failed to arrive in rio in time for matches against the us and israel .\nmembers of the public can once again digitally petition mps on issues with the launch of a new website .\nliverpool centre-back mamadou sakho was suspended last season for taking a substance that was not on the world anti-doping agency 's -lrb- wada -rrb- banned list , according to a uefa report .\nhalf of all uk seven-year-olds do not do enough exercise , with girls far less active than boys , a study suggests .\ndo you ever feel lonely , stressed or jealous when you are online ?\nsteve backshall has spoken about his disappointment that it was reported he was bullied on strictly come dancing by his dance partner ola jordan .\nmanchester united midfielder bastian schweinsteiger will be banned for three matches after accepting a football association charge of violent conduct .\nproposals for an indoor water park and a hotel at west midland safari park have been approved by councillors .\nthe family of a teenager who vanished nine years ago has welcomed a police appeal for information about a volvo car seen on the night he went missing .\na recruitment agency has been criticised for advertising jobs only for `` attractive women '' , as well as specifying bra size .\nrail ticket machines cause so much confusion that one-fifth of passengers who use them buy the wrong ticket , according to the rail regulator .\nthe trial of a group of cult members in china who beat a woman to death at a mcdonald 's restaurant has opened in the city of yantai in shandong province .\ntwo german men have been sentenced to three strokes of a cane and nine months in jail in singapore for vandalism and trespassing .\nforward vadaine oliver has joined mansfield town on an emergency one-month loan from crewe alexandra .\ninvestment in commercial property has plummeted in aberdeen in the last two years , according to a report by a consultancy .\nthe ministry of defence is to close the british army 's welsh headquarters at brecon , powys , in 2027 .\nislanders on skye have demanded greater availability of public toilets after complaints some visitors to the isle are relieving themselves outside .\nthe uk could be poised for a second general election by christmas if either labour or the conservatives try to form a minority government after 7 may , lib dem leader nick clegg has warned .\n`` we 're back , '' declared hibernian boss neil lennon as the strains of ` sunshine of leith ' rang around easter road on saturday in celebration of the club 's return to scotland 's top flight .\nleft wing mp jeremy corbyn has the backing of the uk 's two largest trade unions after unison followed unite in endorsing him to be labour 's next leader .\na group of students has developed a way of storing energy that could be cheaper to make , more practical and more sustainable than alternative renewable fuels .\nif labour are still in power after the assembly election , i get the impression it will have some unfinished business with universities .\na 90th-minute alex schalk goal delivered ross county 's first piece of major silverware as they beat hibernian to lift the scottish league cup .\ntwo planes have collided on the ground at an airport in detroit .\nolympic legends sir steve redgrave and sir chris hoy will be part of the bbc team offering comprehensive coverage of rio 2016 .\npaul daniels brought a new dimension to the art of the stage magician , mixing complex tricks with jokes and non-stop patter .\nhe is the man who took a rag-tag bunch of political misfits to the brink of achieving their dream of an independent scotland .\nleague two side cambridge united have been drawn at home to manchester united in the fourth round of the fa cup .\ngreat britain beat the netherlands 3-0 in the ergo masters four nations invitational in dusseldorf as ashley jackson won his 100th cap .\nthe prosecution has rested its case in the trial of a man accused of carrying out the 2013 boston marathon bombings .\nrussia says its warplanes are carrying out up to 25 air strikes a day around the syrian city of palmyra in support of syrian forces trying to oust so-called islamic state -lrb- is -rrb- .\nthe uk independence party has lost overall control of its only council .\nnorwich city midfielder alex tettey has likened his winner against southampton on saturday to those scored by manchester city 's yaya toure .\npennsylvania police are hunting a man who shot and killed an 18-year-old girl in a `` road rage incident '' .\nabandoned because of his bizarre looks , fester the boxer dog , who is blind in one eye and has a protruding lower jaw , has finally been found a new home .\noffenders with a violent history are to be offered a new chance to change their lives , following the success of an american-style training project .\nstar wars actor john boyega has given his support to the theatre he worked with when he was younger .\na native american tribe in the us state of south dakota has said it plans to open what would be the first marijuana resort in the us .\nthe dup 's arlene foster has been reappointed as northern ireland first minister and sinn féin 's martin mcguinness as deputy first minister , with the uup announcing they will form an opposition at the stormont assembly .\nnick yarris spent more than two decades on death row in the us after he was wrongly convicted of rape and murder , before a dna test eventually freed him .\na # 40m revamp of bristol city 's ashton gate ground will go ahead this summer , the club has announced .\nnigel farage is to remain as ukip leader after the party rejected his resignation .\ngreat britain lost to the netherlands in manchester for the second time in two days , going down 79-68 .\nglamorgan chief executive hugh morris says cardiff 's third sell-out for an england match in june will boost their hopes of attracting further international matches .\nmilos raonic beat roger federer 6-4 6-4 to win the brisbane international .\ntony blair is to make a rare speech to labour activists as turmoil grows after a poll suggested left-winger jeremy corbyn was ahead in the leader contest .\ntwo men have been arrested following an alleged hit-and-run in barnsley .\na council that said it feared becoming `` bankrupt '' has agreed to make a further # 46m of cuts by 2019 .\nderry football manager damian barton has described the facial injury sustained by his player brendan rogers in last weekend 's dr mckenna cup final as `` horrific '' .\na man jailed for six years for coercing a woman into having sex with a stranger and sending `` revenge porn '' to her family has had the convictions quashed .\na zoo in ceredigion is looking for homes for 24 abandoned australian bearded dragons .\nwheelchair basketball is fast-paced and requires skill and determination - something great britain 's under-23 team have in bucketloads !\na paraglider feared for her life during a near miss with a military transport aircraft , a report has said .\na man has been robbed at gunpoint as he was taking photographs in a village on the county antrim coast .\npeople concerned with traffic congestion in villages near stonehenge are stepping up a campaign for `` urgent action '' to be taken .\nthe social democratic and labour party -lrb- sdlp -rrb- mla colum eastwood has confirmed that he is set to challenge alasdair mcdonnell 's leadership of the party .\nmsps are to examine the gender pay gap in scotland and how tackling it could boost the economy .\nwidnes vikings claimed just their second super league win of the season with a narrow victory over st helens .\nindia is using indelible ink on fingers to ensure people get only one chance to change their big bank notes .\na disabled man has been left with serious injuries after being attacked in his own home in edinburgh .\nlabour and plaid cymru say they are `` confident '' of breaking the deadlock over the election of a first minister .\nnine endangered animals are to be confiscated from a ceredigion zoo after its owners admitted displaying animals without the proper paperwork .\ndefenders james chester , paul dummett and adam matthews have been included in the wales squad for the euro 2016 qualifier against belgium on 12 june .\napproximately one in four of us will experience a mental health problem each year in england .\nsome serious complaints made by a labour mp over the hospital care given to her husband before his death have been rejected following a review .\nheavy drinking remains a major problem stretching health services in wales , a new report has warned .\nsir elton john has said he is `` lucky to be alive '' after being diagnosed with appendicitis .\nguernsey 's chris simpson has been knocked out of the us open , despite pushing world number one mohamed el shorbagy in their second-round tie .\npassengers escaped a smoke-filled plane by jumping from the wing after a series of problems caused by an electrical fault , investigators say .\nnottingham forest manager philippe montanier says he wants to guide the championship side into europe next season as efl cup holders .\njapanese footballer kazuyoshi miura has signed a one-year contract extension with yokohama fc at the age of 48 .\nthe prime minister of the southern african kingdom of lesotho has fled to south africa , alleging a coup by the army and saying his life is in danger .\nlogistics group john menzies has issued a profits warning following problems with its ground handling contract at london gatwick airport .\nuk universities could open campuses in europe to offset the effect of brexit , some vice-chancellors have suggested .\nsale sharks director of rugby steve diamond says the club will not rush into making signings and insists they will bring in `` quality '' talent .\na tumble dryer could `` not be ruled out '' as the cause of a flat fire in which two men died , an inquest has heard .\nthe story of a chinese teenager who stowed away on a plane to dubai , reportedly hoping to make money there as beggar , has sparked a conversation in china about misinformation .\namerican bubba watson has a one-shot clubhouse lead at the storm-interrupted shenzhen international , with 56 players set to finish their first rounds early on friday .\ngrass cutting equipment worth about # 20,000 has been stolen from a south of scotland bowling club .\naustralia 's scott hend eagled the 18th hole for the second successive day to take a one-shot lead over england 's tyrrell hatton at the pga championship .\nliverpool boss jurgen klopp defended under-fire goalkeeper simon mignolet after his latest uncertain display in the draw with arsenal at anfield .\na charity is calling for couples in scotland who need help conceiving to have access to three cycles of ivf instead of two .\nas the race to become the democratic presidential candidate heats up in the united states , the left-leaning bernie sanders has become a surprising star on social media , with young voters using mobile phone apps to push others to #feelthebern .\nchampions of the european union can take heart from the fact that in urban greece , people ground down by poverty still take the 25 may elections seriously .\nuruguay will begin selling cannabis in pharmacies from july , the final stage in the country 's pioneering regularisation of the drug .\ndurham county council has approved plans to cut the salaries of teaching assistants by nearly 23 % by not paying them during school holidays .\ncampaigners opposed to the scottish government 's named person scheme claim ministers have refused to engage with them during a consultation on plans to reform the policy .\ncrowds have been gathering to see the world 's largest cruise ship , harmony of the seas , at the port of southampton .\nthe bbc proms is one of the uk 's biggest cultural endeavours , and in 2015 it will feature more than 350 pieces of music , performed across 76 concerts , by some 200 artists and more than 70 orchestras , choirs and ensembles .\na coalition of more than 70 civil rights groups has urged facebook to be clearer about the content it removes .\nstephen paul copoc , a landscape gardener from liverpool , travelled to the match by coach with friends anthony smith and anthony burrows , who both survived .\njapan 's nikkei index closed lower , with shares in toshiba sinking nearly 10 % as the firm predicted record losses .\ngovernment plans to ring-fence the banks - protecting retail banking from the riskier investment side - `` fall well short of what is required '' , a report has warned .\nfive people have been charged after a laser pen was shone at an aircraft in edinburgh on friday .\naudi will not race in next season 's world endurance championship , which includes the iconic le mans 24 hours race , to concentrate on formula e .\nthe film career of jonathan demme , who has died at the age of 73 , spanned five decades and at least as many genres .\nfarmers may soon receive as much as a$ 100m -lrb- # 53m -rrb- in drought assistance from the australian government .\nthere has been trouble in north belfast after an anti-internment parade was prevented by police from entering the city centre .\ntwo men were seriously hurt during a disturbance at the woodburn miners club in dalkeith .\na spanish newspaper has published what it alleges are documents showing prime minister mariano rajoy and other top politicians received illicit payments .\na former russian army officer who is alleged to have fought for the taliban in afghanistan has appeared in court in the united states on terrorism charges .\nedin dzeko scored his 34th goal of the season as roma beat bologna to maintain their slim serie a title hopes .\nukip has complained to the police over comments about leader nigel farage on an episode of bbc one 's topical quiz have i got news for you .\npeople with hidden health conditions are being offered `` please offer me a seat '' badges in a bid to help ease their suffering on london transport .\nhundreds of cartoonists from around the world have taken part in a competition in iran attacking donald trump .\na newly-refurbished enterprise train is back in service after having its safety licence in the republic of ireland restored .\nthailand has begun the process of naming crown prince maha vajiralongkorn as the country 's new king .\nlong relegated to the dusty corners of history , mead - the drink of kings and vikings - is making a comeback in the us .\nthe unemployment rate in the eurozone continued to rise in january , hitting another record high .\nconcerns are growing for a teenager who was last seen at a beach in south devon six days ago .\nthe squad for the british and irish lions tour has been announced .\npolice have released cctv images of a man they want to trace over a `` violent attack '' in the gorbals area of glasgow .\na key it project at the heart of the uk 's national smart meter roll-out programme is facing further delays .\nthe last flying vulcan bomber aircraft flew over the greater manchester factory where it was built as part of a farewell tour of the country .\nspain clinched a dominant 2-0 victory over battling hosts northern ireland at windsor park as the european under-19 women 's championship kicked off .\nan engineering firm is to build a new technology centre in brechin , creating 100 new jobs .\nhealth chiefs are investigating an outbreak of a flu-like illness following the death of a resident at a nursing home in carmarthenshire .\na rainbow gay pride flag has flown at a stormont government building for the first time .\na second person has been charged over an attack on a pregnant woman in south london after which she lost her baby .\nthe asia pacific economic cooperation -lrb- apec -rrb- summit begins in beijing today .\nchinese authorities have arrested two canadians in the capital beijing for allegedly smoking marijuana .\nsouth african athlete oscar pistorius has begun serving time in jail for killing his girlfriend reeva steenkamp .\na radiographer who `` humiliated '' her colleagues by posting sexually explicit comments on facebook has been found guilty of professional misconduct .\nthe world health organization says processed meat does cause cancer and red meat is probably carcinogenic too .\nmodels of moths have been appearing on buildings in hull to commemorate aviator amy johnson who was born there .\nsupermarkets are engaging in school uniform price wars but prices can not drop any further , an expert has said .\na teenager has been detained after opening the emergency door of a passenger plane and sliding down a wing onto the tarmac minutes after touching down in san francisco , officials say .\none of the world 's most famous locomotives has started its first series of passenger journeys .\ninternet giant amazon 's owner jeff bezos has made an amazing underwater discovery .\nsteve dillon , the legendary british comic book artist , known for his work on preacher , punisher , and 2000ad 's judge dredd has died aged 54 .\nthe sheer pyrotechnics of labour 's internal feuding have mesmerised westminster , but conservative mps should not titter too hard at their opponents ' discomfort - they have their own civil war brewing .\na man has been jailed after he told a stranger that he wanted her to have a baby with her so he could abuse it .\nthe way in which every single cancer cell spreads around the body has been captured in videos by a team in japan .\na restaurant in new york has a special menu for pampered pooches to eat alongside their owners .\nsouthport chairman charlie clapham has stood down with immediate effect , along with vice-chairman sam shrouder following national league relegation .\na leading marketer of `` responsible tourism '' has decided to stop selling tours that include visits to zoos .\na ceredigion man has pleaded guilty to drink-driving and causing a crash which killed a 21-year-old woman .\nsleep deprivation is a significant hidden factor in lowering the achievement of school pupils , according to researchers carrying out international education tests .\ntwo famous leaders have celebrated their 90th birthday this year : queen elizabeth and fidel castro , the former cuban president .\ncornwall reached their fourth county championship final in a row after a 32-14 win over surrey at camborne .\nbrazil international full-back dani alves will leave barcelona after eight years at the club .\noil firms bp and gdf suez have announced the discovery of a new field in the uk central north sea .\njohn mcginn admits hibernian 's players are `` baffled '' by the team 's recent slump in form in the championship .\nthe conservative party has taken all seats across dorset , claiming the one liberal democrat-held seat in the county .\nthis is a story of money and power .\nformer nottingham forest striker stan collymore says he is no longer interested in a role as sporting director at the championship club .\nsatellite images confirm that the oldest christian monastery in iraq has been destroyed by the jihadist group islamic state -lrb- is -rrb- .\ncraig disley scored the only goal as forest green rovers were denied the chance to go top of the national league with defeat by grimsby town .\nrory burns scored 287 runs in more than 12 hours at the crease to earn surrey a draw with hampshire at the oval .\na us aircraft carrier and other warships did not sail towards north korea - but went in the opposite direction , it has emerged .\nmanchester city have set no date on a return for captain vincent kompany , who is having treatment on the groin injury suffered during his comeback match .\na hertfordshire council is buying in water from a local landscaping company so that a town fountain can be switched on for jubilee celebrations .\nstriker martin paterson said northern ireland were left dumbfounded by their latest world cup qualifying humiliation as they lost 2-0 in azerbaijan .\nmalaysia has rejected allegations from switzerland that billions of dollars may have been stolen from the south east asian country 's state fund .\na new portrait of mozart imagines the composer as a `` daring '' and `` edgy '' musician in the mould of johnny rotten .\npolice divers are to retrieve objects from a canal for assessment by forensic experts in the search for a schoolgirl who disappeared 60 years ago .\nowain doull has won wales ' first gold of the 2016 olympics as he helped the great britain men 's team pursuit defend their cycling title in rio .\nastronomers have discovered a baby planet which looks like a young version of jupiter .\nofficials say 102 pilgrims have been killed in a stampede at a religious festival in the southern indian state of kerala .\nthe un special envoy to syria , staffan de mistura , expects `` substantive , deeper '' talks between the government and opposition to begin on monday .\nthe funeral of a `` club legend '' who worked for barnsley fc for more than 65 years has been held .\nthe number of empty shops on scotland 's high streets has fallen in the past year , according to a new report .\na dublin man accused of stabbing his friend in a county antrim hotel has been granted bail .\nthere were angry scenes on monday night as the bill enabling the government to trigger article 50 cleared the lords .\nnegotiators from ireland 's two biggest parties are to meet for a final effort to form a minority government .\nglobal warming could drive drought sensitive butterfly species to extinction in the uk by 2050 , according to new research .\nnorth korean leader kim jong-un has said his country 's latest missile tests show it has `` the sure capability to attack us interests '' .\na sydney man who helped seven young men travel from australia to syria to join the islamic state conflict has told a court he is `` not a terrorist '' .\nmps are to debate whether to bar donald trump from entering the uk in response to a public petition calling for action against the us presidential candidate .\naustralian police have shot two crocodiles dead in a search for a missing 12-year-old boy attacked by a crocodile on sunday .\nprisons in england and wales need a `` profound culture change '' which focuses on inmate safety , a new report says .\nnearly 17,000 patients in scotland failed to show up for an nhs hospital appointment on at least five occasions last year .\nscotland women 's captain gemma fay admits the prospect of playing in a major championship was one of the main factors in deciding not to retire last year .\nas the mobile revolution continues to drive change across africa , governments are rushing to introduce legislation to curb cyber crime and to regulate the use of social media platforms .\na school teacher has been struck off the teachers ' register for helping pupils to cheat in their exams .\none of four men wrongly accused of murdering a british soldier has said he is `` devastated , but not surprised '' to learn that interview notes relating to the case have gone missing .\nscientists hope to find out more about how our planet was formed by studying the rocks buried deep under our feet .\nthe life and work of an american expressionist painter is being celebrated at skye 's gaelic college sabhal mã ² r ostaig -lrb- smo -rrb- .\nwhile most of us spend the day before our wedding doing last minute preparations , pip black was happily running around london 's victoria park .\nlord heseltine says the uk 's skills shortage is a serious problem - and if it was up to him he would start industrial strategy in primary schools .\nwales coach warren gatland admitted he will find it hard to support australia when they play england on saturday .\nprince william and prince harry have visited a london memorial garden for their mother on the eve of the 20th anniversary of her death .\na dramatic injury-time equaliser from teenage substitute kyle wootton gifted scunthorpe a point against relegation rivals port vale .\nthe european union has responded angrily to russia 's entry ban against 89 european politicians , officials and military leaders .\nleicester cathedral has defended its decision to stage shakespeare 's richard iii a few feet from the monarch 's final resting place .\nswansea city striker fernando llorente 's form is `` key '' to their hopes of premier league survival , says head coach paul clement .\nwarwickshire leg-spinner josh poysden and wicketkeeper alex mellor have signed contract extensions .\na teenager whose body was found in the back of a car following a crash with a motorbike has been named by police .\nassaults on prison officers in england and wales have risen to their highest level on record , official figures show .\nhostage johan gustafsson , held by al-qaeda in mali since 2011 , has been freed , the swedish government says .\nlabour will keep its election promises despite uncertainty over brexit , but cuts to some services are inevitable , the first minister has warned .\nwelsh engineers and academics have received more than # 160,000 -lrb- $ 240,000 -rrb- to develop new materials for use in sports helmets .\na man has been critically injured in ferguson , missouri , in an exchange of gunfire with police at a rally marking the anniversary of the killing of unarmed black teenager michael brown .\nthe eu has warned of increased tensions amid claims that russia has redrawn a section of georgia 's de facto border with south ossetia .\nbritain 's heather watson has been knocked out of the first round of the korea open by qualifier nicole gibbs .\na motorist who fatally injured a cyclist has been convicted of causing death by careless driving .\njaime winstone and samantha spiro are both cast as dame barbara windsor in bbc one drama babs .\na bolivian aviation official says she was pressured by her bosses into changing a flight report she made for the plane that crashed last week with brazilian team chapocoense on board .\nsurging sales of salmon helped the uk to export a record amount of food and drink in the first quarter of 2017 , the food and drink federation has said .\na schoolboy and a professional rugby player have tackled the sport 's chiefs and come out of the scrum smiling .\n-lrb- closed -rrb- : wall street finished its final day of 2015 down , marking its worst annual performance in seven years .\na woman who acted as a legal analyst for the media during the oscar pistorius trial has appeared in court charged with fraud .\nthe australian government has released pictures showing the riot at christmas island migrant detention centre earlier this week and its aftermath .\nhugh grant has been cast in guy ritchie 's big-screen adaptation of the 1960s tv show , the man from u.n.c.l.e.\nkenneth zohore crushed burton albion 's resistance with a late goal to give cardiff city an opening day victory .\na man has died after being pulled from the water near the royal yacht britannia at ocean terminal in edinburgh .\na man has been shot dead in a `` cold-blooded , targeted attack '' outside a liverpool chip shop , police said .\na man who slit his own throat while in a dock awaiting sentence has admitted taking a kitchen knife into a magistrates ' court in pembrokeshire .\na racing greyhound was found dead with its right ear cut off in what is believed to be a crude tactic to prevent its owners being traced .\nthe people of dumfries were in a mood to celebrate 150 years ago .\nengland captain alastair cook blamed inexperience for england 's batting collapse during their 108-run defeat by bangladesh in the second test in dhaka .\nmisconduct alleged against a former deputy council leader will be pursued , the authority says .\na former sas soldier has been jailed for possessing weapons and ammunition .\nsyrian refugees are likely to have arrived in many areas of scotland by christmas , local authority body cosla has said .\nthe british and german economies are the `` beating heart '' of europe , george osborne has said as he heads to berlin for talks on reforming the eu .\nfrenchman pierre rolland ended a two-year wait for victory by winning the 17th stage of the giro d'italia .\nnothing says christmas more than watching that harry potter movie you 've already seen 2,900 times , eating a mountain of lukewarm turkey and trying to work out where you 're going to put all those new socks .\na fire involving about 100 tonnes of waste wood and rubbish in newport was started deliberately , the police and fire service have said .\nnew pictures of asteroid 2004 bl86 , which passed close by earth yesterday , have been released by us space agency nasa .\nvirgin media has suspended four members of staff and begun an investigation after it admitted overstating the expansion of its superfast broadband network , dubbed project lightning .\nengland 's james guy and welsh swimmer chloe tutton won bronze medals at the european championships in london .\nrugby is not the most gentle of sports and it 's been hitting the headlines because of some bad head injuries .\nthe pound fell sharply after the bank of england 's latest inflation report was seen as ruling out any rate rises for some time .\na champion boxer who forced his way into his ex-girlfriend 's flat and grabbed her around the throat has been jailed .\na paedophile who raped a 12-year-old boy after grooming him online has been jailed for 13 years .\npolice firearms officers who cornered an atm theft gang at an arbroath mcdonald 's restaurant shot at a car not involved in the crime , it has emerged .\nseven young migrants have gone on trial in germany , over a christmas day attack on a homeless man which could have killed him .\nchris coleman wishes his father paddy was alive to see wales reach the quarter-finals of the european championships .\nhinkley point is the world 's most expensive nuclear project .\nwildlife sanctuaries across southern australia have been helping injured animals - by asking the public to sew mittens and pouches !\nmichael b jordan has confirmed he and oscar-winning actress lupita nyong ' o will be among the cast of the upcoming marvel superhero film black panther .\nthousands of teenagers are trekking across dartmoor in the famous ten tors challenge .\nthe republic 's spending watchdog has reportedly concluded that the # 1.2 bn sale of nama 's northern ireland loan portfolio had `` irregularities '' and `` shortcomings '' .\nthe new forth crossing remains on course to be opened by may 2017 , transport scotland has said .\nalmost half -lrb- 45 % -rrb- of young people are checking their mobile phones after they have gone to bed , a poll suggests .\nestonia is the most northerly of the three baltic states , and has linguistic ties with finland .\na us dentist has killed a lion in zimbabwe , africa .\nkenya 's opposition leader raila odinga says he will mount a legal challenge to the result of last week 's presidential election , which he claims was rigged .\nan internet campaign has reignited the debate on whether the uk government should seek the reintroduction of the death penalty .\nlaura muir set a new scottish mile record with a superb run in oslo to continue a strong start to her season .\nasia 's richest person li ka-shing is in talks to buy britain 's second-largest mobile provider o2 for up to # 10.25 bn -lrb- $ 15.4 bn -rrb- from spain 's telefonica .\npop star phil collins has cancelled two shows at the royal albert hall after he slipped over in his hotel room .\ncompanies must prepare for new tougher eu rules on data protection , or face big fines , pwc has warned .\neconomic policymakers must now decide whether and how they should respond to the uk 's vote to leave the eu .\nderek mcinnes believes aberdeen have the confidence and experience to overcome being underdogs against maribor in the europa league .\nollie norburn grabbed a late winner as macclesfield overcame chester 3-2 at the deva stadium .\na â # 15m welsh discount travel pass for young people that was axed has been reinstated .\nthe new york times called for the president to leave office immediately , describing it as `` the last great service '' he could perform for the country .\nnational league eastleigh have signed defender chinua cole from isthmian league side staines town .\nallegations of sexual exploitation or sexual abuse by united nations peacekeepers rose by a third last year , according to a un report .\nmanchester united have opened talks with wayne rooney over a new deal that could keep the striker at old trafford for the rest of his career .\ntalks held between teaching assistant unions and durham county council are `` progressing positively '' , unison said .\na transgender woman placed in a men 's prison , sparking a wave of criticism , is to appeal against her sentence .\na suspected illicit cigarette-processing factory in birmingham , thought to be capable of producing 35 million a month , has been shut down .\nraffaele sollecito was 23 and about to finish his degree when he was arrested along with then-girlfriend amanda knox for the 2007 murder of british student meredith kercher in italy .\nus president barack obama has presented the medal of honor to a former soldier for his heroism during a huge firefight in afghanistan .\nguernsey 's environment department has invited islanders to identify the parcels of land that could be suitable for development .\nnursing homes are closing at the rate of at least one per week in england , due mainly to a shortage of nurses , official figures suggest .\none of the uk 's smaller energy suppliers is paying # 1.8 m to its customers after bills were delayed and online accounts were blocked .\na timber fishing trap exposed on the hampshire coast dates back to saxon times , it has been confirmed .\nmulti-storey car parks , bridges and tall buildings could be designed to make suicide more difficult , under government proposals to save lives .\nfifa is investigating real madrid 's youth transfer policy and has asked the club for information on 51 players .\nan 11-year-old boy told another pupil he felt `` unsafe '' in his new school on the day he was found hanged , an inquest hearing has been told .\nthe turin shroud has gone back on public display in the italian city 's cathedral , after a break of five years .\nmebyon kernow , which campaigns for a national assembly for cornwall , has announced it will not be putting forward any candidates for the 2017 general election .\na man 's eye socket has been broken and two other people have received minor injuries during two assaults in ballycastle , county antrim .\nrussia 's ambassador to poland , sergey andreyev , has said he meant no offence when he appeared to suggest poland was partly to blame for the start of world war two .\nreformed pop group all saints discuss their new album , and recall the sexism they encountered in their first flush of fame .\ntalks between 12 nations to agree the trans pacific partnership trade deal may have failed last week , but new zealand 's prime minister john key has told the bbc that he is confident the pact will be signed by the end of the year .\ntwo women have been found dead inside a house in derbyshire .\nmauritius international goalkeeper joseph kinsley steward leopold has been arrested for drug dealing .\nmigrant workers will need to earn at least # 35,000 to qualify for settlement in the uk , says the home office .\naround 700 tourists have been rescued by boat from wildfires in sicily , as swathes of southern italy battle blazes .\nthe archbishop of canterbury is working with other christian churches to agree on a fixed date for easter .\nsteven lawless has extended his contract with partick thistle for a further two years .\nteam sky boss dave brailsford praised luke rowe after he helped chris froome win his fourth tour de france title .\nstan kroenke , the owner of arsenal football club , has ordered big game hunting videos to be removed from the myoutdoortv -lrb- motv -rrb- app .\nthree goals inside 13 first-half minutes helped doncaster rovers go top of league two with a 4-3 win at stevenage .\nulster captain rory best says he would love the chance to take over from paul o'connell as ireland skipper .\na 37-year-old man has been charged with preparing for acts of terrorism after being arrested at stansted airport .\ngillingham chairman paul scally says a new stadium could allow the club to sustain a place in the top two divisions of english football .\nlegislation should be brought in to deal with the problem of cyberbullying , according to the children 's commissioner for wales .\nleague one rochdale have signed midfielder keith keane on loan from cambridge united until january .\nscunthorpe chairman peter swann has urged fans to keep faith in the team and `` not get on players ' backs '' .\na drive to attract tourists has led to an increase in ill-equipped walkers and climbers becoming stranded on snowdon , rescuers have claimed .\nlegal action taken against the british government to secure compensation for four kenyans allegedly tortured during the mau mau uprising will cast the spotlight on one of the empire 's bloodiest conflicts .\njohnny cash 's son , john carter cash , has described a new album by his late father as `` a great treasure '' , saying there will be more records released in the future .\nthe uk should not have to pay `` large '' sums to the eu to trade with it after brexit , boris johnson has said .\npolish defender rafal grzelak has joined hearts on a two-year deal .\nbritish astronaut tim peake has been talking about his return to earth , as his mission in space nears the end .\ngreat britain 's para ice hockey team will miss the 2018 winter paralympics after losing their world championship b pool bronze medal play-off .\na student from reading has been jailed for nine years in the united arab emirates for possessing cocaine worth less than # 5 .\nso , every home and business across the uk can now have fast broadband if they want it .\na 19-year-old man has appeared in court charged with making an explosive substance after a suspect device was found on a london underground train .\nthe world 's oceans are becoming acidic at an `` unprecedented rate '' and may be souring more rapidly than at any time in the past 300 million years .\nnews that the uk 's best known chocolate brand , cadbury , is abandoning its fairtrade certification has caused some concern in the food industry .\nenergy firms will be banned from charging catch-up bills for gas and electricity used more than 12 months earlier , under the regulator 's plans .\ntwo people have been airlifted to hospital after a four-vehicle crash on the a465 in monmouthshire .\ntommy hilfiger has said suggestions he thought gigi hadid was not thin enough to model are `` completely false '' .\nliverpool have named england under-19s boss sean o'driscoll as their new assistant manager .\nfaissal el bakhtaoui netted a second-half double as league one leaders dunfermline claimed victory at ayr .\nthe bafta awards had laughter , passion and plenty of politics .\nfees for those bringing employment tribunal claims have been ruled unlawful , and the government will now have to repay up to # 32m to claimants .\na 14-year-old boy has been arrested in county londonderry `` in connection with serious crime , '' police have said .\nfor a few days last year , joel fearon was an ex-athlete .\na bbc tv reporter was the victim of a `` witch-hunt '' after blowing the whistle on political interference , a tribunal has heard .\nthe new owner of scotland 's most southerly distillery has revealed ambitious plans for its future .\nrepublican presidential hopefuls ted cruz and marco rubio have unleashed a barrage of attacks on front-runner donald trump in the last debate before next tuesday 's pivotal us primaries .\nsinger charlotte church has lost her unborn baby , she has announced .\nat one end of the main thoroughfare in the centre of longford town is the shopping centre that never opened .\nhealth secretary shona robison has asked an expert to examine a review into the safety of mesh implants .\na nine-year-old girl has undergone a heart transplant , 14 years after her father had the same operation .\nhelen ward 's hat-trick helped wales women thrash kazakhstan 4-0 to claim a first win of their euro 2017 qualifying campaign at the bridge meadow stadium .\nafter all the drama of the launch , what will tim peake actually do during his six long months on the international space station ?\nat least 17 people have been killed in a suspected us drone strike on a compound in north-west pakistan , pakistani officials say .\na `` national crisis '' in teacher numbers is looming , six unions representing teachers and school leaders in england and wales have warned .\nscotland assistant manager mark mcghee insists he would be surprised if gordon strachan did not carry on as national coach .\nengland manager roy hodgson has played down west ham striker andy carroll 's chance of being selected for euro 2016 .\ndisabled students could miss out on vital support when funding much of the help is transferred to universities next year , say campaigners .\nthe two accountants who muddled up the main award envelopes at sunday 's oscars ceremony have been given bodyguards following reports they have received death threats on social media .\neight suspected members of a far-right group in germany have gone on trial in the eastern city of dresden , charged with terrorism and attempted murder .\nticket offices will start closing on the london underground later in a move that has prompted past strikes .\nthe hotels federation has called for a proper tourism strategy for northern ireland to help boost growth in the sector .\nmost people can not name any of their local councillors and are dissatisfied with their work , research on attitudes to local authorities has suggested .\nthe judge leading the inquiry into the grenfell tower fire has written to the prime minister with recommendations for its terms of reference .\njeremy corbyn has said labour could restore clause iv committing it to public ownership if he became leader .\nnobel peace prize winner malala yousafzai has called for more action to free schoolgirls abducted by militant islamists in nigeria a year ago .\none of scotland 's most wanted fugitives is still believed to be hiding in the netherlands almost 10 years after he raped a woman in glasgow .\nscientists are calling for a `` thoughtful debate '' about the wisdom of attempts to keep a global rise in temperatures under 1.5 c.\nfull services on nottingham 's new tram lines have started , eight months behind schedule .\nmps have voted in favour of setting new binding targets on public spending .\nan alleged victim of child sexual exploitation in rotherham said she felt she had no choice when asked to perform sex acts on several men .\nengland captain alastair cook continued his fine start to the season with an unbeaten 53 on another rain-hit day at new road against worcestershire .\nthe worst affected area of the 7.8-magnitude earthquake which hit south-western pakistan on tuesday is the dust-strewn town of mashkel , located just a few kilometres from the iranian border in the province of balochistan .\nus president barack obama has nominated a former justice department official under president george w bush as the next fbi director .\nirish state broadcaster rté is trying to get an injunction granted to ireland 's richest man discharged .\nkenya 's vivian cheruiyot won a shock 5,000 m olympic gold as race favourite ayana almaz of ethiopia took bronze .\nthe panama papers tax revelations dominated prime minister 's questions , with david cameron defending the action taken from opposition attacks .\nst mary 's magherafelt lost 2-10 to 2-9 to st peter 's wexford in the semi-finals of the hogan cup on wednesday .\nten hampden park-sized football grounds could be fitted into the 332 acres of land calculated to have been burnt in wild fires in the north since 1 may .\na man , who downloaded thousands of images of children being sexually abused , has been released on probation .\na high court judge in the republic of ireland has ruled that the media can report what was said in the irish parliament under privilege about the country 's richest man .\nscores of local authorities in england plan to increase council tax by up to 5 % in 2017-8 , according to research .\nsome species of insects are at `` very low numbers '' in the uk after months of wet and cool weather , experts say .\nthe public prosecution service has lost an appeal against the granting of bail for two men charged with murdering a relative at a wedding in fermanagh .\nandrew maccuish scored a hat-trick of equalisers for oban camanachd before the highly-fancied premiership side eventually edged into the semi-finals of the camanachd cup 4-3 at kilmallie .\npolice searching for a missing raf serviceman want to trace three teenagers spotted in bury st edmunds on the day of his disappearance .\nafghan special forces have freed more than 60 people held by the taliban in a makeshift jail in the south of the country , nato says .\na former senior information officer for the scottish government has been jailed for 18 months for using his mobile phone to take photos up women 's skirts .\nthe father-in-law of former dup director of communications john robinson runs two green energy boilers under a botched energy scheme .\ngavin swankie 's late winner gave scottish league two leaders forfar athletic a 4-3 win over cowdenbeath , who sink to the foot of the table .\na man has been acquitted of raping a student who killed herself while detectives investigated the case .\njessica ennis-hill has fallen from fourth to eighth place after six events at the hypo-meeting in gotzis .\nprotests have been taking place in more than 150 locations across the united states to call on president donald trump to release his tax returns .\nthere are wide variations in caesarean section rates across europe , indicating a lack of consensus about the best way of delivering babies , a study suggests .\na look back at some of the top entertainment stories over the past seven days .\nan off-duty former police officer who `` felt a pulse '' while helping a dying boy at hillsborough said west midlands police made a `` deliberate attempt '' to make him change his statement .\nfire crews are expected to leave the site of the shoreham airshow disaster later after spending nearly three weeks at the scene of the crash .\nthe royal navy 's largest ship , devonport-based hms ocean , will remain in service , defence secretary liam fox has said .\nmore than 100 people held a protest outside liverpool town hall over cuts .\nreading forward deniss rakels has agreed to join lech poznan in poland on a season-long loan deal .\na man in his 30s who was hit by a car in north belfast is in a critical condition in hospital .\ncampaigners are hoping to raise # 25,000 to help restore a fountain put up in memory of men who died during a world war ii mission .\na new railway station could be built near the madjeski stadium in reading .\ntyrrell hatton finished only runner-up at the scottish open at castle stuart on sunday - but he still ended up a three-time winner in other respects .\ntwo women have been rescued following a suspected arson attack on a house in bournemouth .\nmanchester metropolitan university has become the first higher education institute in the uk to offer students the chance to earn a degree in urdu .\na landmark clock tower which forms part of a listed mill building gutted by fire should be saved , according to campaigners .\nwigan prop ben flower has been given a two-match ban for a `` reckless '' elbow against warrington 's declan patton .\nrenault will stop supplying engines to formula 1 teams as soon as possible .\narsenal manager arsene wenger has been given a four-match touchline ban and # 25,000 fine after accepting a football association charge of misconduct for his behaviour in the win over burnley .\nayr survived relentless pressure in a brave performance to take three huge points in their battle for championship survival .\nafrican development bank president akinwumi adesina has won the prestigious world food prize for his work to boost yields and farm incomes .\na newlywed celebrating his honeymoon plunged headfirst through a guest house balcony which had rotted , a court has heard .\nthe former ireland and ulster rugby star paddy wallace has been acquitted of harassing his estranged wife .\nthe family of missing inverness teenager adam mitchell have been informed of the discovery of a man 's body near st fergus in aberdeenshire .\nshe 's made a name writing global hits for some of the biggest stars in music and now charli xcx is hoping to add another credit to the list .\nnigerian author chimamanda ngozi adichie has won the us national critics book prize for her novel americanah .\nchelsea 's 1-0 win at west brom on friday clinched the blues their fifth premier league title .\nprue leith is leaving bbc two cooking contest the great british menu after 11 years as a judge .\nan out of court settlement has been offered by a muslim group to end a long-running dispute over a new mosque .\nreal madrid backed `` exemplary '' club member rafael nadal after the tennis star was accused by a former french minister of failing a drugs test .\nvigilante groups seeking to expose paedophiles should stop taking the law into their own hands , kent police has said .\na german court has sentenced a doctor who fled chile to five years in prison for involvement in child sex abuse at a commune called colonia dignidad .\nafter a year which included so much change and so many firsts for us as a team , it felt strangely appropriate that our final international outing of 2016 ended with another first for us all - a one-day international spread over two days in colombo because of rain , which we won to secure a 4-0 series victory against sri lanka .\nat least two people have died and several others are feared missing after a pedestrian bridge collapsed in the indian state of goa .\nbarnsley and preston remained in the championship play-off picture despite a goalless stalemate at oakwell .\nengland exams regulator ofqual breached its own rules in allowing controversial changes to the way english gcses were graded this summer , it is claimed .\nthe public prosecution service -lrb- pps -rrb- has decided not to prosecute a man arrested last year in relation to the kingsmills massacre .\nolympic medallist wendy houvenaghel has announced her retirement from cycling after pulling out of the northern ireland team for the commonwealth games in glasgow because of injury .\nnigeria 's olympic rower chierika ukogu has an inspirational story - but without the mistaken promotion of us rapper snoop dogg , she is likely to have sunk without trace .\nowen evans has been appointed as the new chief executive of welsh language television broadcaster s4c .\nthe trial of a dublin teenager held in an egyptian prison for almost two years has been adjourned for a third time .\nfifa will get a new president on friday when 207 delegates from around the world gather in zurich , switzerland to vote for a successor to sepp blatter .\nghana 's ayew brothers grabbed a goal each to beat dr congo 2-1 and put the black stars through to the africa cup of nations semi-finals .\nmps have voted to say that they do n't believe the biggest organisation in english football , the fa , can make the changes needed to keep it modern and relevant .\ndesigns for a new development on the site of the old cornwall coliseum building at carlyon bay have been approved by cornwall council .\nqatar is failing to tackle the abuse of migrant workers , amnesty international has warned , six months after work began on the fifa world cup 2022 stadiums .\nfour people have appeared in court accused of helping to hide or dispose of teenager becky watts ' body parts .\nthere will be no christmas lights in towns around caerphilly county this year after funding was cut .\nkey countries in the international monetary fund -lrb- imf -rrb- have pledged to pursue `` growth-friendly '' policies to kickstart the slowing world economy .\na singer-songwriter has tracked down the grave of a circus lion tamer ancestor with help from an audience member at one of his gigs .\ncampaigners are calling for a change in the law after a decision not to charge anyone involved in a hunt that spilled on to a residential street .\nswedish fashion company h&m will launch its eighth fashion brand later this year , with the first outlet opening in london this autumn .\nbbc world affairs correspondent peter biles has been talking to his father , harold , about his recollections of the dunkirk evacuation .\nfespaco , africa 's premiere film festival , is taking place in burkina faso this week , amid debate about artistic freedom on the continent .\nstorm abigail , the first storm to be officially named by the met office , is set to bring winds of up to 80mph to parts of scotland later this week .\natletico madrid kept their la liga title hopes alive with victory over gary neville 's valencia .\nan original copy of the irish proclamation , that was reputedly hung in the headquarters of the rebel leaders during the easter rising , has sold at an auction in dublin for 150,000 euros -lrb- # 117,000 -rrb- .\ncharlton athletic came from behind with 10 men to deliver a blow to bolton wanderers ' league one promotion hopes at the macron stadium .\nan old master by painter pieter brueghel the younger will remain on public display after a government fund paid # 1m to save it for the nation .\nsir elton john likened a steward to hitler as she tried to stop crowds from surging forward during a gig .\nthe man whose death at an anglesey pub sparked a murder investigation has been named as david jones .\nrelatives of the 10 people who died in the clutha helicopter tragedy in glasgow have been told fuel switches were in the off position when they should have been on .\nluke donald will host the 2016 british masters at the grove in his home county of hertfordshire .\nlegislation to introduce same-sex marriage in scotland has been backed by the holyrood committee looking into the proposals .\nthe iraqi parliament has unanimously approved reforms aimed at stamping out corruption , reducing government waste and easing sectarian tensions .\ngreat britain 's women maintained their unbeaten record as they qualified for the olympic quarter-finals with a 3-2 victory over argentina .\npress commentators across europe are coming to terms with elections in france , greece and italy which saw big gains for left-wing politicians .\nsam robson and paul stirling scored centuries as reigning champions middlesex dominated the opening day against yorkshire at lord 's .\nroma will have to shut down part of their stadium for one game next season after the club 's supporters repeated racist chants about mario balotelli .\njoba rani was a solvent farmer in the north east village of jamlabaj , but her world turned upside down when early floods swamped her land in april .\na texas police department has changed a key detail in the shooting of an unarmed black teenager , amid mounting calls for the officer to be arrested .\npilgrims bay produced a late surge to win the betbright chase at kempton park .\na tearful angelina jolie has been honoured at the sarajevo film festival for her acting and `` active engagement in the complexities of the real world '' .\nthe bbc needs to invest more in the midlands , a cross-party group of mps has said .\nscottish band the bmx bandits have been announced as one of the acts playing a new contemporary music stage at the wickerman festival .\nuk workers are three times more likely to go into work when ill than pull a sickie , a survey has suggested .\nfive men and a woman have been charged with 53 child sexual offences relating to the alleged sexual exploitation of a number of girls in sheffield .\nukip could win more than seven seats in the 2016 assembly election , the party 's campaign manager for the poll has said .\na spokeswoman for russia 's foreign ministry has said jewish people in new york told her they had mainly backed donald trump in the us election .\nthe parents of a man killed when his car was hit at high speed have put the wreckage on display at westminster as part of a campaign for tougher sentences by road safety charity brake .\nformer champion rafael nadal overcame rising star alexander zverev in a gripping contest to reach the fourth round of the australian open .\npictures have emerged showing a mobile phone which is believed to have saved the life of a gwynedd woman badly injured in the manchester bombing .\nrangers set up a scottish cup final with hibernian after a thrilling tussle with celtic was settled on penalties .\nsugar ray leonard , floyd mayweather , gennady golovkin and even the great muhammad ali used the olympic games as a springboard for boxing superstardom .\na powerful earthquake has struck nepal in asia and hundreds of people have lost their lives .\nkumar sangakkara hit a superb 171 as surrey 's batsman dominated the opening day against somerset at the oval .\nformer france youth international striker yassine benzia has pledged his senior future to algeria .\nformer leeds and aston villa manager david o'leary has won a # 3.4 m compensation claim against dubai-based club al ahli .\nan attack on a teacher would be punished with higher penalties than an attack on any other citizen under proposals in argentina to raise the status of teaching .\ncornwall coach graham dawe hopes the county championship final is not moved from twickenham as part of a potential revamp of the competition .\nguernsey fc have signed bristol city forward jake andrews and defender kodi lyons-foster on month-long youth loans .\ntributes to british mp jo cox have poured in from politicians and public figures around the world .\nliam boyce scored a hat-trick as ross county won an incident-packed derby with inverness caley thistle .\ntwo brothers who tortured two other children in south yorkshire have been granted lifelong anonymity .\nat least 23 people were killed and more than 60 injured when a train derailed in the northern indian state of uttar pradesh .\nnorthern ireland electricity -lrb- nie -rrb- has warned of possible damage to the electricity network , as wind gusts of more than 70mph are forecast .\ngreek shares have fallen sharply after the latest round of talks with eu officials in brussels broke down without agreement on sunday .\naston villa have appointed former brighton coach colin calderwood as their assistant manager to steve bruce .\nan 81-year-old man who taught at a cardiff mosque created a culture where physical punishment `` was the norm '' , a court has heard .\nthe institute for fiscal studies -lrb- ifs -rrb- has said that the worst of the uk 's spending cuts are still to come .\none in six cancers - two million a year globally - are caused by largely treatable or preventable infections , new estimates suggest .\ncampaigners have called for durham university 's `` brutalist '' student union building to be saved from demolition .\ntesla motors says it is on track to produce 500,000 vehicles in 2018 , two years earlier than expected .\na man has been arrested in connection with an alleged sex attack at gardens in cardiff city centre .\na council 's response to a collapsed road following a landslip was `` disjointed '' , a local government watchdog has found .\na man charged with attempted murder and kidnapping is allegedly part of an international drugs smuggling gang , a court has heard .\nprince 's team requested emergency support from a leading addiction specialist just a day before the singer died , the doctor 's lawyer has revealed .\nmilitant islamists are expanding their influence in west africa , with at least 18 people killed in an attack on a beach resort in ivory coast on sunday .\na man shot by police officers in hull has died in hospital , the independent police complaints commission -lrb- ipcc -rrb- watchdog has said .\nhuawei is suing its tech rival samsung over claims that its patents have been infringed .\nukip mep mike hookem believes british and french authorities are n't doing nearly enough to stop migrants from coming to the uk .\na 17-year-old boy who was fatally stabbed in north-west london was at a 16th birthday party targeted by gatecrashers , police say .\narsenal will secure third place in the premier league if they beat sunderland on wednesday after theo walcott 's deflected cross gave them a late equaliser and a point at manchester united .\naberdeen have completed the signing of preston north end striker stevie may on a four-year deal .\na foam factory in merthyr tydfil has announced it will close with the loss of 80 jobs .\nsweden international goalkeeper hedvig lindahl has signed an extended contract with women 's super league one club chelsea ladies until 2019 .\nit 's a global dance craze born out of us hip-hop culture that 's swept the world over the last year .\na hospital has warned players of the smartphone app game pokemon go not to enter the accident and emergency unit while they hunt for virtual monsters .\na new picture of actor david bradley as the first doctor , william hartnell , has been released by the bbc .\na search has resumed for a man missing after his kayak overturned on a river in surrey .\na serial robber who threatened an 18-year-old shop worker with a knife was caught after his streak of grey hair was recognised in cctv footage .\nhow could there be an entire local authority in england where no pupil can take an a-level ?\nscotland 's ricky burns failed to unify the super-lightweight division as his wba title was taken by ibf and ibo champion julius indongo in glasgow .\na man has been charged with the murder of a student whose body was discovered in the boot of a burning car .\nan `` obsession '' with witchcraft and sorcery led a couple to brutally murder a 15-year-old boy at a flat in east london .\nturkish warplanes have shot down a russian military aircraft on the border with syria .\nairports , airlines and the government are bracing themselves for a ban on laptops , tablets , cameras and e-readers going as hand luggage on flights between europe and america .\nsheffield united needed an injury-time goal from ethan ebanks-landell to beat nine-man managerless bury .\nthe archbishop of canterbury has warned people not to give in to fear after the attacks in brussels , in his easter sunday sermon .\nthe government has overturned a decision by bristol city council to refuse planning permission for a mcdonald 's drive-through .\nthe international monetary fund -lrb- imf -rrb- and what is now known as the world bank , were set up to manage the post-world war ii global economy .\ninterim england manager gareth southgate is the right man to take the job on a long-term basis , according to arsenal boss arsene wenger .\na `` distraught '' mother has been denied access to a full report into the death of her teenage daughter while in care .\nstoke city have signed cameroon winger eric maxim choupo-moting on a three-year deal after his contract ran out at german club schalke .\nteams could be relegated or expelled from competitions for serious incidents of racism after tough new powers were voted in by fifa .\nengland extended their unbeaten run to 10 matches as substitute jodie taylor gave them a hard-fought friendly win over euro 2017 hosts the netherlands .\nbayern munich began their bid for a sixth european cup title by hammering champions league debutants rostov 5-0 .\njudgement has been reserved at the end of the ` gay cake ' case in northern ireland .\nan 86-year-old woman fought off a would-be thief with a packet of bacon in a greater manchester supermarket .\nfriends , family and colleagues have sent best wishes to the actress carrie fisher , who is in intensive care after suffering a heart attack during a flight , her brother says .\nnick clegg has attacked the conservatives ' plans for the economy as he stepped up his attack on his coalition partners since 2010 .\na singaporean couple have created a stir online after posing with a coffin in their wedding photos .\narmy bomb experts have made safe an improvised explosive device found in dublin .\nvulnerable prisoners at a problem jail are resorting to self-harm to address basic issues , according to inspectors .\ncrowds have gathered in sydney 's martin place to honour the victims of the lindt cafe siege , one year on .\nbird flu has been confirmed in a flock of 19,500 turkeys at a farm in boston , the department for environment , food and rural affairs -lrb- defra -rrb- said .\nsri lanka 's prime minister has said mangroves ' ability to swiftly absorb carbon make the forests vital in the fight against climate change .\nsplit-screen multitasking and improved notification controls are among the new features being added to the android operating system -lrb- os -rrb- .\na football referee in the us state of michigan has died after being punched in the head during an altercation with a player he was ejecting from a match , according to police and witnesses .\ntwo men discovered using thousands of tyres as an illegal sea defence have been given suspended sentences .\nwelfare reforms are making people live in `` constant fear '' of cuts to their benefits , according to a report .\nwatford 's isaac success will not make his nigeria debut in their 2018 world cup qualifier against zambia after picking up an injury .\namateur home firework displays should be banned , in favour of licensed organised displays , a tory mp has suggested .\nmurrayfield stadium has been chosen to host the 2017 european champions cup final in may of that year .\nalliance trust savings has announced plans to buy an edinburgh-based share trading company from brewin dolphin .\nthe brussels metro and schools are due to reopen after they were shut four days ago in a security crackdown following the paris attacks .\nthe main suspect in the most brutal massacre in recent philippine history has gone on trial .\na ship with specialist equipment has arrived at blacksod bay off the county mayo coast to assist in the search for three missing irish coastguard members .\na us student has been charged with smearing peanut butter in the face of an undergraduate who has a potentially deadly allergy .\nthe safety of services at a trust running two hospitals has been rated `` inadequate '' by a health watchdog .\nthousands of people have marched in opposition to plans to downgrade stafford hospital 's services .\na pembrokeshire paddling pool which had its funding cut will open this summer thanks to donations .\nthe international monetary fund -lrb- imf -rrb- has said china should continue to provide `` greater flexibility '' in its exchange rate policy as the country continues to see slower growth .\nhartlepool united loanee andrew nelson has returned to parent club sunderland for treatment after scans showed he has damaged medial knee ligaments .\nbristol have suspended director of rugby andy robinson pending a `` review of their coaching needs '' , and placed coach mark tainton in interim charge .\npolice have stopped a driver after they spotted a sofa precariously hanging out of the back of a sports car travelling on a busy road .\na man who stabbed a motorist 39 times after a crash was misdiagnosed with a form of autism , a court has been told .\neach day we feature a photograph sent in from across england - the gallery will grow during the week .\nformer chelsea and ivory coast striker didier drogba has joined united soccer league side phoenix rising as a player and co-owner .\nsinn fã © in leader gerry adams has said there is `` a need to be open and imaginative '' on new constitutional arrangements .\nrepublic of ireland boss martin o'neill was happy with his team 's display in the 1-1 draw against the netherlands in the euro 2016 warm-up friendly .\nnational league side ebbsfleet have signed wycombe winger myles weston on a free transfer .\npassengers have told how they got out of trains stuck for hours on south west trains services outside london and walked down the tracks .\nwalking for 40 minutes a few times a week is enough to preserve memory and keep ageing brains on top form , research shows .\nglobal drinks company diageo has released full-year trading figures showing comparable sales remained flat for a second year .\ntwo boys who dragged a vicar out of her car in a `` shocking attack '' as she left a church service have been sentenced .\npresident donald trump has accused his predecessor barack obama of inaction over alleged russian interference in the us election in 2016 .\ncommonwealth games hopefuls emma mitchell and adam kirk-smith both clinched gold medals on the opening day of the irish championships at santry .\neels have been found in a stretch of river where they have not been seen for nearly 40 years .\nthe five world champions on the current grid have all secured at least one title in brazil and on sunday they could be joined by a sixth - if nico rosberg wins the race , team-mate lewis hamilton 's hopes of an unlikely late-season comeback will be over .\na `` number of knives '' were found at the scene where a man was shot by police , investigators have said .\nex-celtic footballer paddy mccourt has told of his wife 's diagnosis with a brain tumour .\nnato members will be `` shamed '' into spending more on the alliance , defence secretary sir michael fallon has said .\nthe welsh assembly could be renamed the welsh parliament before ams have the legal right to make the change .\nunder the wooden beams of brilon 's medieval hunting lodge , angela merkel sweeps past a gleaming brass band to address her party faithful .\na prominent edinburgh hotel has been sold by administrators in a multi-million pound deal .\na multi-million pound project to extend the nottingham tram system to derby is being treated as a `` priority '' , the bbc has learned .\nshadow business secretary chuka umunna has accused his labour party colleagues of `` behaving like a petulant child who has been told you ca n't have the sweeties in the sweet shop '' .\nthe head of japanese advertising group dentsu is to step down following the suicide of an employee who had worked hundreds of hours of overtime .\nyesterday was quite possibly the busiest day of my life .\na leading drugs expert is warning the rogue ecstasy pills linked to four deaths this year , may have changed brand or colour .\narriva trains wales drivers are set to go on strike for the second time this year , the aslef union has said .\nburnley came from behind to go top of the championship thanks to andre gray 's double at lowly bolton .\ncoleraine rower joel cassells retained his european men 's lightweight pair title as he and san scrimgeour took gold for britain in brandenburg .\na woman 's body lay under builders ' rubble in a back garden for more than 12 years before it was discovered , a jury has heard .\ncardiff city manager neil warnock has praised the bravery of his former player andy woodward for speaking out about being sexually abused by a coach as a child .\nfrance has said it will not back down over its nomination of an openly gay ambassador to the vatican .\nsome struggling gp surgeries in england will be allowed to fail and close , according to a leaked document .\nwales boss chris coleman says euro 2016 is `` not the end of the journey '' for his squad as they prepare to face russia for a place in the last 16 .\nenglish rider guy martin will not compete in the ulster grand prix at dundrod for the third year in a row .\nburnley have signed republic of ireland striker jon walters from stoke city for a fee that could reach # 3m .\nbbc world service has revealed the five names in contention for its inaugural women 's footballer of the year award .\nthe queen has tweeted her thanks to people who sent her 90th birthday messages on social media .\non black friday retailers will be aiming for a `` frenzied '' atmosphere - the hope being it makes you buy more .\na man who admitted causing a fatal crash while being pursued by an unmarked police car has been jailed for nine years .\npioneering brain imaging that can detect the build-up of destructive proteins linked to alzheimer 's has been developed by japanese scientists .\ncandlelit vigils have been held a year on from the shooting of anni dewani during her honeymoon in south africa .\na gp who punched an aggressive patient has been suspended .\nan eight-year-old girl from county antrim who was left profoundly disabled after being starved of oxygen at birth is to receive # 5.3 m.\nmercedes ' lewis hamilton took the outright championship lead for the first time this season with a dominant victory in the italian grand prix .\nrules on public toilets should be wales-wide and not up to individual councils say campaigners as the public health bill is reintroduced .\na police officer who has been awarded the queen 's gallantry medal after being stabbed in the head at a house in lurgan has said he is `` truly humbled '' .\nsix police officers are being `` criminally investigated '' after a man lost the tips of three fingers during a struggle in his cell .\na planned state-of-the-art joint training college for northern ireland 's police , fire and prison services has been radically redrawn .\na hospital 's maternity services may become midwife-led because it is struggling to recruit doctors , an nhs trust has admitted .\ndisgraced former italian prime minister silvio berlusconi has said comparisons between himself and us president-elect donald trump are `` obvious '' .\nthe irish foreign minister has warned talks to restore stormont 's institutions were operating under a `` tight time frame '' .\nthe granddaughter of veteran republican peggy o'hara has defended a paramilitary display at her funeral .\ngeneticists have detected a fourth ancestral `` tribe '' which contributed to the modern european gene pool .\npart of a gwynedd beach has been closed after a member of the public found a suspected explosive device , north wales police has said .\nthe mystery identity of swansea 's own secret santa has finally been revealed by his family , after the 92-year-old died this week .\nthe us central intelligence agency -lrb- cia -rrb- has a long history of involvement in african affairs , so sunday 's reports that the 1962 arrest of nelson mandela came following a cia tip-off do n't come as a huge surprise .\nwe 've all done it .\nso would the welsh economy be weaker without the m4 black route - or for that matter without any m4 upgrade ?\nchris gayle and kieron pollard produced a superb display of power hitting as west indies thrashed australia to reach the final of the world twenty20 .\nhospital bosses in edinburgh have been told they must improve care for dementia patients at the city 's main psychiatric hospital .\nospreys ground out a gritty win over newport gwent dragons in a pro12 derby played on a dreadful rodney parade pitch .\nforty-seven police officers have been sentenced to life in prison by a special court in india for killing 10 sikh pilgrims in 1991 and then lying in an attempt to justify the shootings .\none of wrestling 's most colourful stars , dusty rhodes , the self-styled `` american dream '' , has died aged 69 .\na dog was rescued after falling `` up to 60ft -lrb- 18m -rrb- '' down a cliff in devon .\nrangers will play celtic in the scottish cup semi-finals while hibernian or inverness caledonian thistle will play dundee united .\nhead teachers worried about protecting students from being radicalised are being offered seminars by a union .\neugene has defended its role in winning the right to host the 2021 world championships .\nan author tracked down a teenager in fife and hit her over the head with a bottle after she gave his book a bad review , a court has heard .\nat least 15,000 syrian refugees fleeing fighting in northern aleppo province have gathered at a border crossing with turkey , un and turkish officials said .\nthe winner of the man booker prize is announced shortly with hanya yanagihara 's a little life the bookies ' favourite to take the # 50,000 prize .\nisraeli police are investigating after a video emerged showing an israeli policeman beating up a palestinian lorry driver .\na cardiff boy who was scarred for life after being savaged by his neighbour 's dog has been awarded # 70,000 compensation .\na key safety limit at one of britain 's nuclear power stations is being raised to allow the life of the reactor to be extended , the bbc has learned .\na council 's proposal to shut a ceredigion care home comes with `` no plan '' for care provision in the area , unions have said .\npope francis is making it easier for women and doctors to seek forgiveness for abortion , by allowing all priests to forgive it .\nteachers won millions of pounds in compensation last year after suffering discrimination and serious injuries in the line of work , a union said .\na county londonderry woman who uses music to `` transform the lives of people with disabilities '' has been honoured with a bbc unsung hero award .\nfines for people who walk more than four dogs at a time have come into force in a hampshire town .\nthe allegations of wrongdoing by undercover police officers that have emerged since 2011 have been extraordinary .\nboeing has shown off its `` space bins '' that can hold 50 % more luggage than existing designs .\nthe architect of dundee 's v&a museum said he was `` very happy '' with its progress one year after the # 80.1 m construction project began .\nscotland is losing more than 140 bank branches over an 18-month period , according to bbc research .\negypt knocked out morocco to reach the africa cup of nations semi-finals as substitute mahmoud abdel-moneim prodded home a dramatic 87th-minute winner .\nbrazil coach luiz felipe scolari has resigned , the country 's football federation -lrb- cbf -rrb- has confirmed .\nthey run , jump and hurl themselves through the air .\nexeter came from 14 points down to beat sale sharks at sandy park and boost their hopes of securing a home semi-final in the premiership play-offs .\nfour foreign-owned firms are competing to run train services in wales and create the # 600m south wales metro .\nbefore jeremy corbyn became leader of the labour party he was a very active and opinionated backbencher .\na former metropolitan police officer has been found not guilty of sexually assaulting a teenage boy in the back of a police van nearly 30 years ago .\na huge garden bridge over the river thames in london is a step closer after plans were approved by local council officials .\ngrowth in south east asia 's largest economy , indonesia , has come in at 4.76 % for 2015 , marking the fifth consecutive yearly decline .\na new # 14m university campus has opened in scarborough .\npolice searching for missing toddler ben needham on the greek island of kos have started digging at a second site .\noverseas students boost the scottish economy by about # 312m each year , according to figures from auditors pwc .\nsale sharks will sign former wales scrum-half mike phillips from racing 92 on a deal starting from next season .\na 102-year-old german woman has become the world 's oldest person to be awarded a doctorate on tuesday , almost 80 years after the nazis prevented her from sitting her final exam .\nthe maker of iconic collectable trading cards has said hackers could have stolen customers ' credit and debit card numbers along with their associated security codes in a recent breach .\na man has been arrested on suspicion of rape in connection with an attack on a 14-year-old girl in birmingham .\nfirefighters across england are on a four-day strike in a row over pensions during one of the service 's busiest weekends of the year .\na second manufacturing unit at the ineos kg ethylene plant in grangemouth will be brought back to life eight years after it was mothballed .\nnovak djokovic suffered a surprise loss against croatia 's ivo karlovic 6-7 -lrb- 2-7 -rrb- 7-6 -lrb- 8-6 -rrb- 6-4 in the qatar open quarter-finals in doha .\nairbus chief executive fabrice bregier has said he has `` no intention '' of pulling manufacturing out of the uk if the country votes to leave the european union -lrb- eu -rrb- .\nshadow welsh secretary jo stevens has rejected as `` utter nonsense '' the idea labour can not win a general election .\nhealth trusts in england have been ranked by their ability to learn from mistakes , as part of several changes designed to improve patient safety .\nebola , missing airplanes , beheadings , the rise of ukip .\nfrom maria sharapova 's perspective , wednesday 26 april could not have gone much better .\ngary naysmith says his everton connections helped queen of the south sign dom thomas on loan from motherwell along with joe thomson from celtic .\nlego has announced its promotional giveaways with the daily mail have ended - amid a campaign to stop firms advertising with some newspapers over `` divisive '' coverage of migrants .\ngillingham have confirmed ady pennock will stay on as head coach next season , with former boss peter taylor returning to the club as director of football .\na bomb explosion has caused part of the walls of aleppo 's ancient citadel to collapse .\nvenezuela 's acting president nicolas maduro says he will turn the office where the late president hugo chavez worked into a museum .\na victim of the tunisia beach massacre is to be remembered in a church service one year on from the attack .\nthe queen 's husband prince philip will take part in his final public meeting before he officially retires from royal duties .\njohnny mckinstry is on the final leg of a remarkable journey .\nbritain 's andy murray beat canada 's vasek pospisil 6-3 7-5 in the second round of the abn amro world tennis tournament in rotterdam .\nwigan athletic have signed former manchester united midfielder nick powell on a three-year contract .\nthe states of guernsey spent # 1.8 m on pr and advertising over 22 months , figures released to the bbc show .\nargentina and barcelona footballer lionel messi and his father should stand trial on tax fraud charges , a court in spain has ruled .\ntanzania beat kenya 2-1 on tuesday to win the inaugural cecafa women 's championship in uganda .\nin australia , at least 18,000 same-sex couples are waiting for the law to change to allow them to get married , according to the university of queensland .\ngreat britain 's mark cavendish is third after day one of the men 's omnium as he aims for his first olympic games medal .\ned miliband may have wowed delegates with his `` look - no notes '' speech to the labour conference but not everyone is going home happy .\nas many as 12 young women have tried to leave melbourne to join the islamic state -lrb- is -rrb- militant group , according to australian police .\nasian shares rose on thursday despite investors being cautious ahead of a good friday public holiday in some major markets .\nan asda supermarket in manchester is introducing a `` quiet hour '' to help autistic shoppers who can feel stressed by noise .\nex-newcastle united boss steve mcclaren hopes new manager rafael benitez will be allowed greater control at the club .\npet owners are being warned to be vigilant after a series of possible dog poisonings .\na 92-year-old man has died in hospital after being hit by a car on anglesey last week , police have confirmed .\nas the nation anxiously waited for the eu referendum results last month , currency traders were busy making bets on which way the vote would go .\nimagine this : an oil spill the size of the gulf of mexico 2010 disaster , but this time in the persian gulf .\nex-professional wrestler hulk hogan has won a further $ 25m -lrb- â # 17m -rrb- in punitive damages from gossip site gawker over the publication of a sex tape .\nthe most accurate measurement yet of the shape of the electron has shown it to be almost perfectly spherical .\ngaming experts are predicting a big future for virtual reality at e3 - the world 's biggest convention for games .\na ship excavation is expected to reveal a `` treasure trove '' of items and stories from europe 's global trading history .\na man has admitted stealing the handbag of a female carer after she fell to her death from a motorway bridge .\nhundreds of people have paid their respects to schoolgirl paige doherty by walking through the streets of her home town wearing pink .\nactor edward herrmann , best known for his roles in tv show gilmore girls and vampire movie the lost boys , has died aged 71 .\ntributes have been paid to a `` devoted mum '' found dead after a house fire .\nformer world heavyweight champion mike tyson says the idea of professional boxers at the olympics is `` ridiculous '' - because they would lose to amateurs .\npolice have arrested a man they believe held a family and housekeeper hostage in their washington dc home before killing them .\nthe nights may be drawing in and autumn is coming , but the english football league continues to provide thrills and spills for players , managers and supporters .\ndavid cameron 's pledge to hold a referendum on britain 's eu membership is `` a clear and present danger '' to jobs and business , ed miliband has warned .\nmore than 1,100 homes in greater manchester remain without power following flooding in the area across the weekend .\nsouth african olympic and paralympic athlete oscar pistorius is facing a murder charge after his girlfriend was shot and killed at his pretoria home .\nthree million mercedes-benz owners in europe will be offered a software fix for their diesel cars .\nsteroids and medicines with an estimated street value of some 2m euros -lrb- â # 1.7 m -rrb- have been seized in donegal .\nhealth managers planning to close a hospital fertility unit have refused to put the service back out to tender .\nthe government will be lobbied by a hampshire council over its plans to sell off an additional 56 defence sites by 2040 .\nthe ulster farmers ' union -lrb- ufu -rrb- has said it is `` disappointed '' by the aid package for european farmers announced by the european commission .\ncornish pirates coach gavin cattle says his side has room for improvement despite their 50-24 win over connacht .\nal merreikh official hatim mohamed ahmed is being investigated by the confederation of african football after he appeared to hit gabonese referee eric otogo-castane in the face .\nbirmingham city stunned women 's super league one leaders chelsea on sunday to reach the semi-finals of the continental cup .\nthree people have been killed and at least 62 others wounded in two explosions on passenger buses in the kenyan capital nairobi , officials say .\nthe government has turned down plans to build more than 500 homes near an east yorkshire village .\nthe run-off parliamentary election win by the moderate government of iran is a crucial victory for them .\nwales lock jake ball says he wants to put his stamp on a second-row shirt after the `` heartbreak '' of the 2016 autumn series .\njim goodwin has put alloa athletic 's turnaround in form down to his decision to drop himself .\ndenmark will face the netherlands in the final of women 's euro 2017 after defeating austria in a penalty shootout .\nnew zealand 's prime minister says at least 65 people have died after a 6.3-magnitude earthquake hit christchurch .\nislamic state -lrb- is -rrb- militants fired mortar rounds containing mustard agent at kurdish peshmerga fighters in northern iraq , kurdish officials say .\ngreat britain 's davis cup final against belgium `` will go on '' despite the terror threats affecting brussels , says the flemish tennis federation -lrb- ftf -rrb- .\na man has been jailed for eight years for his part in what has been described as the most serious fake medicine fraud in the european union .\nlewis hamilton says he is inspired by boxer muhammad ali as he tries to overhaul mercedes team-mate nico rosberg in the formula 1 title race .\nat least 85 people died when a gunman opened fire at an island youth camp in norway , hours after a bombing in the capital oslo killed seven , police say .\na `` wonderful young lady '' has died after being involved in a two-car crash on a main road .\non 6 march 1987 , passenger ferry the herald of free enterprise pulled out of its berth at the belgium port of zeebrugge carrying 459 passengers and 80 crew .\nyoutube star connor franta has revealed to his fans that he is gay .\ntv presenter paul o'grady has been invited on a tour of southend-on-sea after reportedly lambasting it during filming of the programme blind date .\ndan biggar 's decision to renew his national dual contract is `` fabulous '' news for wales and ospreys , according to martyn williams .\nshell is removing life-sized cardboard cutouts of a female employee from all of its malaysian petrol stations after `` distasteful '' images appeared online .\npolice in france have brought to an end two hostage stand-offs , killing three attackers .\nday two of mps ' detailed consideration of the investigatory powers bill - and the issues of the day should be the retention of internet connection records and protection of medical records and journalistic privilege .\nisrael has removed metal detectors from outside a holy site in east jerusalem after uproar from palestinians over their recent introduction .\neurope 's second-highest court has backed a challenge by 11 airlines against an $ 800m -lrb- # 583m -rrb- european commission freight cartel fine .\nthe prime minister , david cameron , has said people should be able to vote on whether the uk should be a member of the european union -lrb- eu -rrb- .\nlifeguards are to be deployed over the bank holiday weekend at camber sands , where five friends died during a day trip to the coast .\ncapacity on the `` busiest trains '' into cardiff will double from may , arriva trains wales has said .\nstriker saido berahino is as important to west brom as harry kane is to tottenham or jamie vardy to leicester , says baggies boss tony pulis .\nanother member of a syrian activist group that reports on the activities of the jihadist group islamic state -lrb- is -rrb- in the city of raqqa has been murdered .\na man who tried to join the fighting in syria has been jailed for more than five years for a terrorism offence .\nmansfield town have signed striker kane hemmings from league one club oxford united on a season-long loan .\ngambia 's yahya jammeh , who once said he would rule the country for `` one billion years '' , has lost the presidential election to property magnate adama barrow .\nresearchers have succeeded in mimicking the chemistry of life in synthetic versions of dna and rna molecules .\nfour ex-serviceman have become the first amputees to row across the atlantic .\nbusinesses in southern india have given their employees the day off on friday so they can attend screenings of a new film starring tamil cinema superstar rajinikanth .\nsusie wolff will stay at the williams team next season in an enhanced role as test driver .\nbristol rovers boss darrell clarke says he is not worried about losing his job following the club 's recent takeover .\nluke varney 's late winner secured ipswich 's first win in eight games , despite alex revell 's brace for already-relegated mk dons .\ntrans woman caitlyn jenner has made this year 's woman 's hour power list of top 10 influencers , alongside angelina jolie , singer sia and anna wintour .\ndame sarah storey claimed the 16th world title of her cycling career with gold in the time trial at the para-cycling road world championships .\nlast month when rex tillerson tried to translate `` america first '' into foreign policy terms for a bemused audience of state department employees , he probably did n't expect it would come to mean `` america alone . ''\nthe wife of a journalist attacked outside a tube station has been told to take his recovery `` an hour at a time '' .\na 43-year-old man has been arrested over the death of a 67-year-old woman in south wales .\nbrian o'driscoll and jonathan sexton have recovered from injuries and will play for ireland against new zealand .\narchaeologists have found fragments of stirling castle 's 16th century outer defences .\na hindu religious leader 's comment that allowing women into a shrine devoted to lord shani -lrb- saturn -rrb- will increase rapes has drawn criticism .\njen welter has become the first female coach in the nfl after being appointed by the arizona cardinals .\n`` constructive '' talks have been held between unions and the wood group in an ongoing dispute involving offshore workers .\nit might not seem like your idea of fun but dressing like a bat and jumping off the side of a cliff is exactly what a group of wingsuit base jumpers have been doing in china , as part of a downhill sky race .\nwigan midfielder ben watson could be back in training within six weeks despite suffering a fractured shin in the 3-0 defeat at liverpool .\nchelsea 's poor home record under rafael benitez continued as southampton fought back from 2-0 down to snatch a point .\nthe head of the patients ' watchdog has been suspended on full pay since february 2016 , bbc wales understands .\nengland 's victory in the third test against south africa in johannesburg was quite remarkable .\na set of rare photographs showing the impact of the dambusters ' `` bouncing bomb '' raids have been sold at auction .\na world war ii torpedo has been blown up in the sea off the isle of wight after being dragged up from the seabed in portsmouth harbour .\na newborn baby girl has been found close to business premises in rathcoole , county dublin .\nindian artist nek chand who created a famous garden of sculptures in the northern city of chandigarh has died , aged 90 .\nsri lanka batsman kumar sangakkara will retire from test cricket this summer .\nplans to rebuild the main stand at tynecastle football stadium have been approved by edinburgh city council .\na man who admitted shining a laser pen at a police helicopter flying over glasgow has been jailed for 14 months .\nmalaysian airlines chief executive christoph mueller has resigned after less than one year of leading the carrier 's reorganising efforts .\na venezuelan football official has pleaded guilty to corruption charges in the us as part of the investigation into the sport 's world governing body fifa .\nwithout question , nigeria is one of africa 's biggest and most successful football nations .\nthe scots accent is flourishing and proving resilient against a growing homogenised anglicised accent across english regions , new research suggests .\nwith the value of the pound falling dramatically since brexit , a `` flash crash '' last week when the currency lost 6 % of its value against the dollar , and news on tuesday that the pound had fallen again , when would be a good time to change those pounds to dollars ?\nus president donald trump has reversed course in the space of 24 hours on an array of populist positions he adopted during the election campaign .\nbangladesh has only a little more than 100 royal bengal tigers living in the sunderbans forest , far fewer than previously thought , new figures show .\na five-year-old celtic fan rang the club to apologise for missing a game after it clashed with a friend 's birthday party .\ndetectives investigating the alleged attempted kidnap of a baby are appealing for a taxi driver to contact them .\nsheffield united kept their slim league one play-off hopes alive by beating shrewsbury town , who are just two points above the relegation zone .\nchess boxing , a hybrid sport combining the mental workout of chess with the physical challenge of boxing , is catching on in india , reports shamik bag .\na nine-year-old boy with autism has been unable to go to school for three months because all the special schools in the area near his home are full .\nline of duty star vicky mcclure has revealed she was ordered off a tram named in her honour after being accused of fare evasion .\nin the scottish football association 's statement of thursday evening , there is no mention of money and the kind of cash it would have taken to bring to an end the reign of gordon strachan as national team manager .\nmichael simpson has won the john moores painting prize , 25 years after he first came close to taking the title .\namid the revelry and dressing up at halloween comes a more solemn occasion - one that is being upheld by the uk 's polish community this week .\ndavid cameron has said the uk is to table a un resolution with france and the us about the russian plan for syria to hand over its chemical weapons .\nmilitants from the islamic state -lrb- is -rrb- group have briefly overrun a hospital complex in the eastern syrian city of deir al-zour , reports say .\non 6 july , a motion in the house of commons calling on the government to guarantee the rights of eu nationals living in the uk was passed by 245 votes to two .\nweaknesses in police scotland 's roll-out of its new national call-handling system have been highlighted in an inspector of constabulary report .\na woman whose son saved her from being killed by an intruder paid tribute to him as his funeral took place .\nderbyshire recovered well to 288 all out against glamorgan , who reached 5-0 at the close in the day-night game .\nthe uk economy grew by 0.6 % in the three months to the end of june , as economic growth accelerated in the run-up to the vote to leave the eu .\nthe recent spike in premiership sackings shows a `` worrying trend '' , says the rugby coaches association -lrb- rca -rrb- .\nsteroid abuse is `` off-the-scale '' in welsh grassroots and semi-professional rugby , it has been claimed .\na world war one soldier has been commemorated with the unveiling of two permanent memorials in the east sussex towns where he lived and was educated .\nspain 's banks will need an injection of 59.3 bn euros -lrb- $ 76.3 bn ; # 47.3 bn -rrb- to survive a serious downturn , an independent audit has calculated .\nmarcus rashford 's extra-time goal sent manchester united into the europa league semi-final beating anderlecht 2-1 on a nervy night at old trafford .\na van driver eating breakfast cereal on the m27 and an hgv driver shaving behind the wheel on the m4 were spotted by police in a crackdown on distracted motorists .\nmps on parliament 's welsh affairs committee have been grilling alun cairns for the first time since his appointment in march .\ngarry ringrose has never played in the six nations before - but he 's already being hailed as ireland 's best prospect since brian o'driscoll .\nthe government has been urged to make available part of a special # 150m fund which has been set aside for new legacy bodies to the psni and police ombudsman to investigate the past .\nthe way in which people in scotland are trained for work needs to change in order to meet future challenges , a think tank has warned .\nselma director ava duvernay has welcomed an apology by film-makers accused of `` whitewashing '' forthcoming adventure movie gods of egypt .\nthis is the full transcript of david cameron 's speech outside 10 downing street after he visited buckingham palace following the conservatives ' election victory : .\npaying everyone in wales a universal basic income would be a `` worrying and extremely expensive socialist experiment '' , an economist has warned .\nengland opener tammy beaumont top-scored 47 against yorkshire diamonds to lead surrey stars to their first super league win .\na cider mill is set to close with its production being moved to the republic of ireland , its owners have said .\nat least one person has been killed and about 20 injured when a train carriage fell on to its side following a derailment close to the belgian capital brussels , railway officials say .\npoland striker robert lewandowski needed treatment after a flare thrown by home fans exploded near him during a heated world cup qualifier in romania .\na red cross manager who led the organisation 's on-site response to the shoreham airshow disaster has been awarded a british empire medal .\none of sri lanka 's most controversial politicians has been charged with corruption involving the illegal transfer of state-owned weapons .\nswansea council 's leader is optimistic progress can be made during talks about expanding the liberty stadium .\nelusive artist banksy has landed a south bank sky arts award nomination for his dismaland theme park .\nthis might sound strange , but the allegations that david warner launched an unprovoked attack on england 's joe root could actually galvanise australia ahead of the ashes .\nmotherwell have signed stephen pearson until the end of the season - the midfielder 's third spell at the club .\nthis is the moment an 86-year-old woman `` defended herself '' with a packet of bacon against a would-be thief in an iceland supermarket .\nthe creator of the iconic cartoon sitcom the simpsons has finally revealed the inspiration behind the show 's fictional town of springfield .\na west midlands police officer who admitted sexually assaulting two women has been jailed for four years .\nthe forces of so-called islamic state , now besieged in mosul , are in a state of `` frenzy '' inside the city , increasingly blaming and terrorising the local population and preparing to conceal themselves if defeated .\nthe man overseeing fifa 's presidential polls should step aside due to conflict of interest , says the liberian fa .\na legal challenge to alistair carmichael 's election as mp for orkney and shetland is to proceed .\na # 3.2 m supercomputer , one of the most powerful in the uk , has been installed at the university of southampton .\nmanchester city staged a superb comeback to end bayern munich 's record run of 10 consecutive champions league wins but they still finished as group d runners-up behind the german champions .\nnorthern ireland 's deputy first minister has said his mother discovered he was in the ira when he left a beret in her house in the 1970s .\na new `` blanket ban '' on so-called legal highs will carry prison sentences of up to seven years , the government says .\nchesterfield boosted their hopes of staying up with a comeback win to dent port vale 's slender play-off hopes .\nthe us secretary of state john kerry has arrived in the somali capital , mogadishu , on an unannounced visit .\na documentary on beef eating habits in india has been withdrawn from a delhi film festival for `` technical '' reasons , its organisers have said .\nwales captain sam warburton says his side must not be afraid to take risks against new zealand on saturday .\na conference in belfast to discuss the fallout from the charlie hebdo murders has been cancelled .\nthe leader of the catholic church in ireland has backed a call by amnesty international for an inquiry into mother-and-baby homes in northern ireland .\njohnny depp 's financial troubles are caused by his lavish lifestyle , claim the former business managers he is suing for mismanaging his earnings .\nbritain 's k1 200m olympic champion liam heath won his first race of the season at the canoe sprint world cup .\na cyclist who knocked over and killed a woman posted on online forums the crash was `` her fault '' , the old bailey heard .\na g4s security van has been robbed outside a branch of royal bank of scotland in glasgow city centre .\nlabour has taken the cardiff north seat from the conservatives .\nit has become a truism that this is going to be an asian century not an american one - but there 's nothing like seeing the two continents first-hand to really understand why .\nabout 400 retired firefighters in wales are to receive thousands of pounds in compensation because their pensions were miscalculated .\nlives and homes are under threat from a fast-moving bushfire sparked by lightning south of perth .\na project to build a visitors ' centre , costing more than # 1m , for the site of one of most key battles in english history has won a lottery grant .\none relationship , 10 olympic gold medals .\na brazilian football player who survived a plane crash in colombia on monday is recovering and may be able to resume his career , his father says .\ncornwall 's coroner will raise concerns with the health secretary over the care of mentally ill patients far from home .\na woman was tied up and `` brutally murdered '' by her ex and his partner , who then tried to pass the killing off as a suicide , a jury has heard .\na monument to the women chainmakers of cradley heath in the black country has been unveiled .\nviews from members of the public on how best to solve congestion problems on the a40 in oxfordshire are being sought by the county council .\na police officer has been slashed in the face with gardening shears during a large-scale disturbance in essex .\ncommunity and business leaders with commonwealth links have written to david cameron to urge him to back britain 's exit from the eu .\na postgraduate researcher at glasgow university is developing new technology designed to help people with paralysed faces .\nnorthern ireland 's 11 new district councils are due to get a range of fresh powers when they take over local government from 1 april next year .\nhe does n't know what possessed him to visit the old lockhart hotel that day , but it was an experience john hardie is never likely to forget .\nuk retail sales rose by more than expected in november , as shops offered promotions at the end of the month in the run up to black friday .\nbbc news ni looks at the timeline of nama 's northern ireland property loans portfolio sale , which is now the subject of a criminal investigation .\na fourth charity has been given a bag of clothes by pop star ed sheeran .\na three-year-old indian girl who went missing a week ago has been found after her family launched a massive social media campaign .\nnew york firefighters have rescued two window cleaners who were trapped on a collapsed cradle 69 storeys above the ground at the world trade center site .\ncuts in support for renewable energy in the uk have been criticised by the un 's chief environment scientist .\npaul sheerin has left his post as arbroath manager to become under-20s coach at aberdeen .\na brilliant solo goal from gaston ramirez helped middlesbrough to a first win in eight premier league games as they beat bournemouth at the riverside stadium .\njared allen will retire as a minnesota vikings player after he signed a one-day deal with the nfl team on thursday .\na missing man last spotted on cctv footage taken at an edinburgh train station has now been seen in central london .\nivory coast 's economy is growing and the business environment has dramatically improved since the political crisis that hit the country following elections in 2010 .\na convicted killer who was on the run from an open prison in south yorkshire has been recaptured , police said .\nthe mayor of london boris johnson was left dangling on a zip wire for several minutes when it stopped working at an olympic live screen event .\ntanzania 's football federation -lrb- tff -rrb- president , jamal malinzi , has confirmed zanzibar 's fresh bid to become a member of fifa .\nfrom ghana to argentina and london , air pollution is a problem that people want to do something about .\ngareth o'brien kicked a drop-goal in golden-point extra time as salford won the ` million pound game ' 19-18 to relegate hull kr from super league .\nmatilda , the bfg , charlie and the chocolate factory - they 're some of the most popular children 's books ever written .\nan `` architecturally ambitious '' piece by zaha hadid is to be included in this year 's chatsworth house sculpture exhibition .\na 20-year old man is in hospital with serious injuries after he fell from a first floor balcony in brighton .\nplaywright james graham has revealed he is writing a tv drama about the eu referendum campaign .\na lake district path expert fell walker alfred wainwright described as the `` connoisseur 's route '' is to be repaired thanks to a charity set up in his name .\ninverness caledonian thistle manager richie foran insists friday 's highland derby against ross county is the most important match of his career .\nlancashire cricket director ashley giles is concerned their end-of-season form could see them dragged into a relegation fight .\never since the remains of richard iii were first found under a leicester car park in 2012 , the city has enjoyed a feel-good factor that culminated this year with leicester city completing a `` fairytale '' premier league title win .\nmore than 30 % of athletes competing at the 2011 world championships admitted to using banned substances during their careers , according to a world anti-doping agency-commissioned study .\ndan evans joined andy murray in the last 16 of the australian open with a brilliant performance to give britain two men in the fourth round .\na teenager who was stabbed after he was hit by a car in manchester was `` loyal and caring '' and `` brought so much joy '' to others , his family has said .\nall pictures are copyrighted .\nthe un humanitarian aid chief has expressed alarm after un agencies were ordered out of rebel-held parts of the luhansk region in eastern ukraine .\nthousands of people face a deadline of the end of sunday to renew tax credits and pay tax owed , or face losing payments or being hit with penalties .\noxford university is revealing the identities of more than 20 people whose portraits will be put on display to try to `` promote greater diversity '' .\ngaa director general paraic duffy has called for the abolition of the inter-county u21 football championship in a discussion paper on player burnout .\nuk ministers are `` taking the interests of wales extremely seriously '' in preparations for leaving the eu , brexit secretary david davis has said .\na father-of-two from liverpool , joseph clark was a fork lift driver and drove to the match with his brother stephen clark and david roberts , who both survived , and another friend , alan mcglone , who also died in the tragedy .\nus president-elect donald trump has spoken directly with the president of taiwan - breaking with us policy set in 1979 , when formal relations were cut .\npassengers are facing disruption as bus drivers in dorset prepare to stage a five-day strike over `` poverty '' wages .\nthe us government remains in partial shutdown after negotiations between republicans and democrats failed to find a solution to an ongoing dispute over the federal budget .\narsene wenger has challenged arsenal 's british players to take responsibility for the club 's future .\ncleethorpes pier has been bought by a local businessman who intends to turn it into a community-run venue .\nwestinghouse , toshiba 's us nuclear unit , has filed for us bankruptcy protection .\nsunderland have signed former france international anthony reveillere on a deal until the end of the season .\npatients are being put at risk by gps being forced to carry out complex consultations in 10 minutes or under , the british medical association says .\nin his first interview , a teenager paralysed as he tried to escape bullies describes what happened to newsbeat .\narchaeologists working at a 900-year-old castle have found `` rare and unexpected '' artefacts .\njordan spieth will be `` scarred '' by his capitulation at the masters on sunday , says three-time winner sir nick faldo .\nsyrian rebel fighters have agreed to leave their last enclave in the city of homs , government officials say .\nat least 23 people have been killed in the north-eastern nigerian town of monguno after a boko haram bomb confiscated by vigilantes exploded , an mp and army source have told the bbc .\na protest has taken place opposing cuts to children 's centres in oxfordshire .\na central california wildfire threatening thousands of homes doubled in size overnight to 111 square miles -lrb- 288 sq-km -rrb- , authorities have said .\nthe longest-serving lib dem peer and veteran human rights campaigner , lord avebury , has died at the age of 87 .\nyorkshire opener adam lyth made his third century of the season as the defending champions replied solidly to surrey 's 267 all out at the oval .\na prison has written to people who live nearby asking them to help stop packets of `` illicit articles '' being thrown over the jail walls .\na funeral is being held for a family who were found stabbed at their home in didcot , oxfordshire .\nchina has firmly rejected an international tribunal ruling that its claims to rights in the south china sea have no legal basis .\nthe federation of uganda football associations -lrb- fufa -rrb- has said that it is working on clearing the salary arrears owed to the national team coach milutin ` micho ' sredojevic .\nwolves extended their unbeaten run under new manager walter zenga to six games with victory over cambridge in the second round of the efl cup .\nluke wells has established himself in sussex 's county championship side but is hungry for more .\nwhen boris nemtsov was shot dead on a bridge a short distance from the kremlin , it soon emerged that he had been preparing a report aiming to expose russia 's military involvement in eastern ukraine .\nus secretary of state john kerry says washington is seriously concerned about increased chinese militarisation in the contested south china sea .\ntwo schoolboys aged 12 and 13 have been arrested after concerns were raised about children sharing inappropriate images on social media .\nan apology has been issued after health inspectors raised concerns about patient care for older people at the galloway community hospital .\nthe forth bridge has become the sixth scottish landmark to be awarded unesco world heritage site status .\ngame of thrones star gwendoline christie is to appear in the new series of top of the lake .\nplatinum producer lonmin has priced its # 270m share sale at a discount of 94 % as it fights for survival after a near-collapse in the commodity 's price .\na man has denied the manslaughter of another man who was found lying in a street in windermere close to where he lived .\na defensive mucus secreted by slugs has inspired a new kind of adhesive that could transform medicine , say scientists .\nanimal rights campaigners are urging a south african game park to reverse its decision to put down a lion who escaped on sunday .\nthe president of cuba has spoken publicly for the first time against us president donald trump 's rollback of a thaw between the two countries a month ago .\nresearchers at leicester university have shown that it might be possible to develop an alternative to antibiotics for treating diseases in pigs .\nchicago has beaten new york city and hawaii as the chosen location for president barack obama 's library , according to us media .\na major vendor on the illegal silk road website and his business partner , were sentenced to five years in prison for drugs offences .\nthe international bomber command centre has been targeted by thieves for the second time in a matter of weeks .\nchuran zheng , an events organiser , works for a company in china that allows her and her female colleagues to take a day or two a month off if they suffer from period pain .\nfeatherstone rovers have appointed john duffy as head coach following the departure of jon sharp .\na mass has been held in glasgow to remember the victims of last week 's earthquake in central italy .\nlabour defeated the conservatives in the city of chester by the narrowest of margins , with two re-counts required .\nfrom 2017 , the english summer cricket schedule is to change again .\ncitizens advice scotland -lrb- cas -rrb- has launched a campaign to highlight the bad practice of some private car park operators after a 50 % rise in complaints .\ngetting stuck into a good book can boost people 's ability to relate to each other and increase their empathy , a report suggests .\nthe president of the royal society has called on the government to guarantee the residency of eu citizens in the uk .\na man has been charged with causing the death of a three-year-old girl by dangerous driving in a crash involving eight vehicles .\ngermany 's andre greipel won the opening stage of the tour of britain after mark cavendish crashed out .\nwith an audience of head teachers it was never likely to be a highly rowdy affair .\nthe snp 's attempt to be made the official opposition at westminster has been rejected by the speaker of the house of commons .\na woman whose seven-year-old son has vanished with her estranged husband is appealing for staff and customers of a coffee chain to be on the alert .\na man accused of murdering his ex-girlfriend was seen acting `` strangely '' the morning her body was discovered , a court has heard .\na cafe criticised for making trainees work unpaid for 40 hours , without a guaranteed job , has given in to public pressure .\nformer imf chief rodrigo rato and 64 other bankers have gone on trial in madrid over an alleged credit card racket at spain 's troubled bankia bank .\nthe latest version of the default web browser on samsung 's android phones will allow users to install ad-blocker extensions .\nfive cats have died from antifreeze poisoning on or near the same street in the space of two weeks , the rspca has said .\nnon stanford will be surprised if helen jenkins is not in the british triathlon team for the olympics after her victory in the gold coast world series event .\nprince christian , the second in line to denmark 's throne , has been rescued after getting into trouble in the waves at an australian beach , reports say .\na drunken tractor driver who knocked down and killed an 11-year-old boy has been jailed for more than a year .\ntelusa veainu scored twice to ensure leicester earned a four-try bonus point from their trip to champions cup pool four strugglers treviso .\nsouthend manager phil brown says the referee for his side 's 2-1 defeat at gillingham should be `` brought to task '' over his performance .\ncardiff city have signed wycombe wanderers winger kadeem harris for an undisclosed fee .\nsouth africa swept to a comprehensive nine-wicket victory over england in the second twenty20 to seal a 2-0 series win .\na multi-million pound refurbishment of a denbighshire leisure centre which was closed because of council cutbacks is due to start .\na polish university lecturer has been sentenced to 13 years in jail for plotting to ram a car packed with explosives into parliament .\nsnooker players have voted 72 % in favour of keeping the one-frame shoot out as a ranking event .\na chronology of key events : .\ntwo youths have been arrested over deliberate injuries to a donkey at a community farm in torfaen .\naid groups have raised alarm over the deaths of three migrants on greece 's lesbos island inside a week .\nformer rangers captain barry ferguson says he is not ready to take up a managerial role at the club .\nmexico has published new sentencing guidelines that will double prison sentences for kidnapping .\na police officer thought she was going to die as she confronted a `` demonic '' ex-convict who had brutally murdered a young woman , an inquest has heard .\nthe future of the british grand prix has been left uncertain after silverstone 's owner confirmed it has activated a break clause to cease hosting the race after 2019 .\nargentine club newell 's old boys have re-signed sunderland striker ignacio scocco on a five-year contract .\nhearts passed up the chance to move second in the premiership as they fell to defeat by kilmarnock at rugby park .\nseveral us radio stations played out an explicit podcast to listeners after an apparent hack .\na 26-year-old lawyer has pleaded guilty to murdering a young teacher whose body was found at a hotel on christmas eve .\nqueen guitarist brian may has paid tribute to status quo star rick parfitt following his death aged 68 , saying he had `` truly joyfully rocked our world '' .\nmanchester united fans have been reacting to manager louis van gaal 's sacking from the club .\na hang gliding pilot has died in an accident at a nature reserve near chichester in west sussex .\nthe official chart show is being moved from sunday to friday evenings , as part of a big shake-up of the music charts .\npolice are investigating a serious sexual assault on a woman near sandy row in south belfast .\nthe government has `` undermined and weakened '' the nhs in england , a letter signed by 140 doctors says .\nthe combination of fire and extreme weather could accelerate tree mortality in the amazon , a study has suggested .\nthe kits used by humans 100,000 years ago to make paint have been found at the famous archaeological site of blombos cave in south africa .\nspending two hours commuting each day is a reality for many uk workers , says data that suggests britons are willing to travel further and longer .\npeople are unhappy in their own company and some prefer painful experiences to their own thoughts , a new study claims .\nrichard neville , the co-founder of 60s counterculture magazine oz , has died aged 74 from alzheimer 's disease , his family have said .\na new arts-based project using photography and video aims to show the people behind disability .\na full review of security has been carried out by nhs lothian after a hospital cleaner allegedly used information about a female patient to contact her on facebook .\na day centre for older people which had been threatened with closure has opened for the first time under the control of the group which saved it .\na new way of screening for ovarian cancer is showing `` potential '' , according to researchers in the us .\nleft-back james jennings has joined promoted cheltenham town from gloucestershire rivals forest green .\nmichael jung sealed a # 240,000 rolex grand slam on la biosthetique as he became the first german to win a badminton horse trials title .\nlewis hamilton has been urged to change his stance on the new ` halo ' head protection device by former world champion john surtees .\nwebcasting of council meetings could become compulsory under welsh government proposals .\nafter prolonged debate during the referendum , whitehall has been busy since polling day trying to work out the implications of brexit - including how the nhs could be affected .\nscotland 's finance secretary john swinney has submitted a fresh proposal in talks to establish a `` fiscal framework '' for new devolved powers .\nmcdonald 's has been accused of abusing its market power by imposing unfair and restrictive contracts on people operating its franchise restaurants in europe .\nthe british conductor and violinist , sir neville marriner , has died at the age of 92 , the academy of st martin in the fields says .\nhighly-respected sports journalist peter corrigan has died aged 80 .\ntougher dog control measures could soon be implemented in oxford .\noxford united have extended the loan of right-back jonjoe kenny from premier league side everton until the end of the season .\na four-year-old boy has died in an incident at a farm in maguiresbridge , county fermanagh .\npolice in the us state of iowa say they have arrested the suspect in the `` ambush style '' killing of two police officers .\nmessaging app yo , which in the past week has rocketed to the top of the app download charts , has been hit by a hack .\nbeneath clapham south tube station lie a warren of tunnels which provided shelter for 8,000 people during world war two .\nscottish singer-songwriter gerry rafferty has died at the age of 63 after suffering a long illness .\na leading liverpool fans ' group has warned members they need to discuss the issue of safe standing or risk `` the conversation happening around them '' .\nformer scottish enterprise chairman crawford gillies is to take over at the helm of spirits group edrington , following the retirement of its chairman norman murray .\n`` when i tell people i 'm a fireman , they think i put out fires and i 've got to tell them i make them instead ! ''\nnoted russian journalist dmitry tsilikin has been found stabbed to death in his flat in st petersburg .\nwomen who lead a sedentary lifestyle have faster-ageing cells than those who exercise every day , research suggests .\nmore than 70 people have been injured , four seriously , in an explosion caused by a suspected gas leak near the southern spanish city of malaga .\na former manchester recording studio once used by bands including joy division and the sex pistols has been brought back into use .\ntrain passengers in scotland 's central belt face six weeks of disruption from this weekend when work begins on the winchburgh tunnel .\nthe chief executive of two sussex hospitals , which the health watchdog said were inadequate , has resigned .\nearlier this week , deutsche bank said there were few positive outcomes for financial markets from the general election , based on what polls are saying .\na british man believed to be a teacher has been found dead in myanmar .\na shell has killed four people at a school in the rebel-held east ukrainian city of donetsk , on the first day of classes , officials and witnesses say .\ntoo many schools in england break the rules on admissions arrangements , says the outgoing chief schools adjudicator .\na man who set his sister on fire using a `` petrol cocktail '' has been jailed for life .\nderry city guaranteed themselves a europa league spot next summer as they came from behind to beat bohemians in the league of ireland premier division .\na double murderer who posed as a refugee to enter the uk illegally is to be extradited .\nleyton orient have signed striker armand gnanduillet from chesterfield for an undisclosed fee .\ngadgets that track your steps , sleeping and heart rate could help us live longer and cut national healthcare costs by billions - or so we are told .\nmotorists and rail passengers in wales are being advised to check for disruption before travelling this easter weekend .\nferrari 's kimi raikkonen set the pace in final practice at the belgian grand prix as the mercedes drivers were only fifth and seventh .\nrichard keogh 's second-half header edged derby into the efl cup second round with victory over grimsby .\na 47-year-old man who raped a 16-year-old girl in a wearside park has been jailed for eight years .\ndundee stars head coach marc lefebvre hopes his side return to the play-off finals next year as a much stronger team .\ntens of thousands of people have joined the pride parade through central london .\nwest ham united have taken over the running of the ladies ' club , saying they are `` delighted '' to bring it into `` the west ham family '' .\nthe bafta children 's awards have for the first time nominated an online-only service for channel of the year .\na man accused of attempting to murder 11 people at a remote highland holiday home started a fire after opening gas valves on a cooker , a court has heard .\nplans have been unveiled for a glass lift to take tourists to the top of one of humber bridge 's 510 ft -lrb- 155m -rrb- high towers .\nthe prime minister has pledged to bring the united kingdom `` closer together '' as her government unveiled its proposed new laws in the queen 's speech .\nnasa engineers are designing a new metallic `` space fabric '' that could make a massive difference to how space equipment is made in the future .\nwales edge closer to qualifying for the 2016 european championships after gareth bale scored a late winner against cyprus .\nmarussia 's jules bianchi has faced `` a number of medical challenges '' after sustaining severe head injuries in a crash at the japanese grand prix , his team and family said in a statement .\nthey have graced the finest cricket stadia all over the world , played for england against the greatest players and come out on top .\nphotographs showing a festive prince harry have been released , to mark his support of a charity helping children affected by hiv and aids .\nsome bedfordshire police stations could be relocated to supermarkets to help bridge a funding gap , its police and crime commissioner said .\na fire authority repeatedly refused to start an investigation into allegations over the way it was being run , the fire service minister has said .\nplymouth argyle have signed defender ryan edwards from morecambe on undisclosed terms after agreeing a compensation package .\na man in the western indian city of pune has been held after carrying his wife 's severed head down a busy road , police say .\noldham athletic should be able to exit their transfer embargo within a week , says manager stephen robinson .\npremiership and european champions cup winners saracens are determined to be even stronger next season , says skipper brad barritt .\na row has broken out over the sale of a dinosaur skeleton at auction in the us .\ndallas police have given the all clear , hours after security levels were raised at their headquarters in the city .\nten retired senior military officers have written to the prime minister to voice their concerns over the loss of the aircraft carrier hms ark royal .\nformula 1 driver maria de villota has lost her right eye following a test track crash .\nhans ulrich obrist , artistic director of the serpentine galleries in london , has been named the most powerful figure in the art world .\nplans to overhaul legal aid in england and wales would remove the right of defendants to choose a solicitor , a retired senior judge has warned .\nindia police say they have seized a rare snake , known as a `` two-headed '' red sand boa , from illegal smugglers .\naustralia 's biggest city , sydney , has switched off its lights for an hour as the earth day climate change protest gets under way across the globe .\nbelgian serge pauwels claimed his first career win in the tour de yorkshire after winning sunday 's final stage .\non sepp blatter 's judgement day it was only fitting that the fifa president signed off with the line `` i 'll be back '' .\na prolific gambler murdered his wealthy friend to solve debt problems then dismembered his body and stuffed it into a suitcase , a court has been told .\na full dna profile has been developed of a man whose near-complete skeleton was found close to a motorway .\na man has been charged with attempted murder after a police officer was slashed with a knife during a routine vehicle check .\ned miliband has accused the tories of using the snp to distract voters from their record as he tries to kill off talk of post-election deals .\ncoach diego simeone has signed a contract extension with atletico madrid that will keep him at the spanish champions until 2020 .\nan attempt to trigger a referendum on cardiff having an elected mayor is going to fail , a campaigner has admitted .\njim mcgregor , greater china chairman of communications consultancy apco worldwide , has given a critical assessment of the way china 's government is treating foreign companies as part of its anti-corruption drive .\njames anderson became england 's leading wicket-taker in one-day internationals with his 235th victim as they .\nkyle bartley believes assistant boss pep clotet deserves credit for leeds united 's improved defending .\na leicestershire man has admitted killing his neighbour after kicking down his front door .\n-lrb- close -rrb- : fashion house burberry led the market higher following speculation that it could be a bid target .\na former scottish first minister has fallen down a drain while walking in the dark in malawi .\nengland captain sean o'loughlin says he would have preferred an englishman in charge of the national team , but is looking forward to working with australian wayne bennett .\na murder investigation has been launched following the death of a 37-year-old man in aberdeen .\njazz carlin has admitted her two olympic silvers in rio is after she `` finally started believing '' following advice from a sports psychologist .\nstoke city manager mark hughes has dismissed speculation linking striker peter crouch with a move to west brom .\nveterans will now be treated at headley court military rehabilitation unit as well as serving personnel , defence secretary michael fallon says .\nengland were heavily beaten by india a in their second and final warm-up match before the one-day international series begins on sunday .\nchina 's long qingquan lifted a combined world record of 307kg to win olympic gold in the men 's 56kg weightlifting .\nformer wales and british and irish lion john faull has died aged 83 .\na couple from largs in ayrshire have been named as the winners of the # 161m euromillions jackpot .\nnational league 's bottom side guiseley have signed former rochdale winger joel logan on an undisclosed deal .\nprisoners spend up to 15 hours a day locked in their cells at hmp dumfries .\nenglish trio ben duckett , chris woakes and toby roland-jones have been named among wisden 's cricketers of the year .\npat glass has been announced as labour 's shadow education secretary , after lucy powell resigned from jeremy corbyn 's shadow cabinet .\nfive former intelligence and military officials in argentina have gone on trial on charges of murdering 65 people .\njayaram jayalalitha was the undisputed leader of the governing party in the southern indian state of tamil nadu , but her sudden death has raised questions over who will replace her and what direction the party will take .\na plan earmarking sites for 225,000 new homes in greater manchester is set to be delayed amid a `` radical rewrite '' to help protect green belt land .\nan nhs commissioning group has proposed a temporary ban on non-vital operations in a bid to tackle funding problems .\nthe psni has launched a murder inquiry into the death of a prison officer who died 11 days after being injured in a dissident republican bomb attack .\ncast members and theatre-goers were evacuated from the royal opera house in london after a fire alarm went off mid-performance .\npeople living in bristol have complained about a vinegary whiff in the air .\nsurvivors and descendants of those killed during britain 's worst ever maritime disaster are being urged to claim medals honouring them .\na former bodyguard of adolf hitler who witnessed the nazi dictator 's final hours has died in germany aged 96 .\nthe rspca has had a 100 % success rate for its prosecutions after facing a `` growing animal cruelty crisis '' .\nthe rise and rise of uk employment has taken a jolt , with a fall of 67,000 in march to may and the first rise in unemployment for two years .\nmanchester united midfielder paul pogba would not have felt any extra pressure on sunday after launching his own twitter emoji , according to team-mate zlatan ibrahimovic .\nan indian woman who alleges she was forced to marry a pakistani man at gunpoint has returned to india , a day after a court in islamabad granted her request to leave .\na court in the philippines has found a us marine guilty of killing a transgender woman .\nundercover police officers facing claims of wrongdoing will not automatically get anonymity at a forthcoming major public inquiry .\nit has not been an easy week for the big multinational corporations that sponsor football 's world governing body fifa .\nthe northern ireland health minister , edwin poots , has circulated a 30 page draft document to executive colleagues on long-awaited abortion guidelines .\na woman was shot dead by attackers who may have been on bicycles , police have said .\ngreat britain has selected 17 crews for the world rowing championships in florida .\nscotland boss-in-waiting shelley kerr is good enough to coach any men 's side in scotland , according to 104-time capped forward suzanne grant .\nhere 's an anxious-looking mahatma gandhi making a telephone call from his office in sevagram village in the western state of maharashtra in 1938 .\na series of delays and missed opportunities to provide medical intervention contributed to the death of a baby boy at calderdale royal hospital , a coroner has said .\na man has set a new world record for the most consecutive bounces on a pogo stick .\nvictims of child sex abuse are being turned away from support services that are being overwhelmed by a large rise in cases .\nscientists have calculated the optimal strategy for throwing something accurately - whether it 's a dart or a crumpled-up piece of paper .\nofficials are investigating a possible link between seeds sold by a uk firm and an e. coli outbreak in france .\ntanzania 's president jakaya kikwete has fired a senior government minister accused of wrongly taking $ 1m -lrb- â # 640,000 -rrb- from a businessman .\ncoach warren gatland denies wales have been existing `` like monks '' during their world cup campaign in new zealand .\na final consultation event has been held on proposals to use a former scots nuclear plant to store radioactive waste from redundant submarines .\na diabetes pill has anti-ageing effects and extends the life of male mice , research suggests .\ntennis star jamie murray is among the scots being honoured in the queens birthday honours list .\nan investigation has been launched into the police response to a call from a 72-year-old man who was later found dead in a sheltered housing complex .\nas 2016 arrives , business leaders around the world are now focusing intently on their aims and challenges for the next 12 months .\nferguslie park in paisley has been identified as the area of scotland with the greatest level of deprivation .\nliverpool midfielder joe allen has ruffled a few feathers by appearing on the front cover of chicken & egg magazine .\na new law imposing restrictions on users of social media has come into effect in russia .\na father whose drunken attack left his newborn son with severe brain damage has been jailed .\narmed police swooped on a coach on the m6 toll motorway in the west midlands .\nnurses , paramedics and pharmacists should be trained to fill in for doctors and help the nhs in england cope with demand , bosses say .\nstreaming service netflix has postponed a bill cosby comedy special in the wake of allegations of sexual assault that have resurfaced in recent weeks .\nthe northern ireland pharmaceutical firm norbrook has appointed liam nagle as its new chief executive .\njockey george baker has returned to england for treatment in london after his heavy fall on a frozen lake track in st moritz , switzerland last month .\nengland have never won their opening game at a european championship but there is an extra incentive for them to finally put that right against russia on saturday .\nthe trial of the prominent republican thomas `` slab '' murphy for alleged tax evasion has heard the court may deliver judgement on the case next week .\na teenager who stabbed a 16-year-old to death in an aberdeen school has been jailed for nine years .\nthree men have been jailed for sexually exploiting a teenage girl in hertfordshire .\nthe home of the formula 1 british grand prix is no longer for sale , its owner has announced .\nthe issue of identity is a sensitive and controversial one in nepal , a country in flux as the drafting of a new constitution fails and new elections are announced , reports john narayan parajuli from kathmandu .\nthe uk economy may face `` severe loss of momentum '' after the vote to leave the eu , according to the ey item club .\npeople are voting across merseyside in the general and local council elections .\ndeep space epic interstellar left the competition earthbound at this year 's empire awards , taking off with three prizes including best film .\nthe indian premier league returns for its ninth season on 9 april with defending champions mumbai indians opening the tournament against rising pune supergiants in mumbai .\nformer deputy prime minister nick clegg was on radio 4 's today programme on thursday talking about prison reform .\nromanian prime minister sorin grindeanu has been forced from power after only six months by his own party , in a no-confidence vote in parliament .\nbarcelona have paid # 11.2 m -lrb- 13.5 m euros -rrb- to the spanish authorities after being charged with tax fraud over the signing of neymar .\na woman thought her husband had `` lost the plot '' when he woke her up to tell her there was a raccoon on their roof .\nunited nations investigators are considering revealing the names of an estimated 200 individuals suspected of committing war crimes in syria .\nlegendary former england opening batsman geoffrey boycott opposes the view that england do not concentrate enough on one-day cricket , but is not particularly enamoured with the selectors .\nbristol rovers midfielder ryan broom has signed an extended contract with the league one club .\nsri lankan authorities are investigating an attempt to fix an international cricket match involving the national team and the west indies .\nlizzy yarnold 's gold medal in sochi has cemented britain 's status as the dominant power in world skeleton .\nwales rugby union international liam williams has apologised after posting a picture on twitter of himself `` blacked-up '' as a swansea city footballer .\na decision on plans to build more than 2,000 homes on a former airfield in surrey has been delayed .\nthe largest airline in latin america , latam , says it is suspending its flights to venezuela because of the worsening economic situation .\nthe israeli government has issued a report into the 2014 war in gaza , saying that its military actions were `` lawful '' and `` legitimate '' .\na group of syrian refugees living in londonderry have spoken for the first time about what life was like in their war-torn country .\nthe governor of indiana has defended a new law that has unleashed a wave of condemnation across the country .\neleven people in china have been arrested for their alleged role in the shenzhen landslide disaster .\namnesty international has accused european leaders of `` double speak '' over a deal to return migrants to turkey .\nat least 12 syrians trying to reach greece have drowned off turkey after the boats they were travelling in sank .\ntransport minister chris hazzard is proposing to extend the times of bus lanes on some of belfast 's busiest commuting routes .\nargos , the retail chain at the centre of a bidding war , has shown a fall in sales over the christmas period .\nbbc northern ireland current affairs programme spotlight has won scoop of the year at the royal television society -lrb- rts -rrb- journalism awards .\nabout a third of the teaching staff at one of west belfast 's biggest secondary schools called in sick one day this week , the bbc understands .\nliverpool boss jurgen klopp took responsibility for his side 's 3-1 europa league final defeat by sevilla - and said they would come back stronger .\nthe performance of every care home in england can now be compared on an nhs website .\njustin bieber has been involved in a car collision in beverley hills , police have confirmed to the bbc .\na meeting about the uk 's roll-out of 4g network services takes place later .\nukip 's candidate in a key general election seat has been forced to apologise after she appeared to question the cost to the nhs of treating british people who are hiv positive .\nmanchester united 's champions league campaign is in serious peril after they were comfortably beaten by olympiakos in the last-16 first leg in athens .\na man has been arrested for a second time in connection with the killing of a schoolgirl more than 50 years ago .\nsaracens boss mark mccall has criticised scarlets ' james davies after will skelton was sin-binned during the meeting of the side last weekend .\na southern bypass of salisbury is being considered as an alternative to a stonehenge tunnel , the bbc has learned .\nteam gb silver medallist bryony page says she hopes more kids will be inspired to take up trampolining after her success in rio .\nthe effects of the stormont stalemate are becoming clearer with every passing day - and things do n't look good for anyone .\nthe bbc will broadcast south shields ' game against bridlington town in the preliminary round of the fa cup .\na red kite found shot in north yorkshire is the seventh to have been killed in the region in the past two months , police have said .\nplans for a controversial cycle path through edinburgh have been agreed in principle by city councillors .\nsome police forces are putting the public at risk by rationing their response as they struggle with cutbacks , the police standards watchdog has warned .\niran 's president mahmoud ahmadinejad has criticised the killings in its ally syria sparked by the government 's violent crackdown on dissent .\na police sergeant called out to deal with a brawl in a glasgow pub ended up giving an arresting performance of gloria gaynor 's i will survive .\nwelsh sailor alex thomson has passed the halfway point of the solo non-stop round-the-world race , the vendee globe .\na date has been set for work to start on a long-awaited bypass for a carmarthenshire town which should ease congestion and reduce pollution .\nbelgian rider femke van den driessche has been suspended for six years in the first proven case of mechanical doping in cycling .\nrussia 's violation of turkish airspace over the weekend `` does not look like an accident '' , nato has said .\nliverpool have completed the signing of jordan henderson from sunderland .\nfour men have been held for more than two years at brook house immigration removal centre as the average length of detentions has grown , a report found .\ndespite military humiliation and sharp criticism of his human rights record , mikheil saakashvili has managed to maintain a strong grip on georgia .\nleeds rhinos were given a decisive boost for the grand final by the emotion surrounding their departing trio , says head coach brian mcdermott .\na man who died in police custody would still be alive if he had n't taken a so-called legal high , a sheriff has ruled .\nthe fbi is investigating another wave of bomb threats to jewish facilities in the us after 11 sites were evacuated on monday .\na used buggy listed for sale by a father who joked that it signified the end of his `` happy carefree life '' has sold for # 325 .\nworcestershire director of cricket steve rhodes says the decision to scrap the toss in the county championship this season looks like it is working .\nthe mayor of tehran hopes to transform the notorious evin prison in iran 's capital into a public park , after receiving the judiciary 's approval .\nthe american civil liberties union has filed a challenge on behalf of four us servicewomen against a ban on women being deployed in most combat roles .\nroyal mail shares have fallen after the company reported lower profits and increased its target for cost savings .\nat least 13 policemen were killed by one of their own in afghanistan 's southern helmand province .\na woman has suffered serious injuries after being dragged through the streets of a german town by a cord tied around her neck and attached to a car .\nleading flat jockey ryan moore has been advised to take `` complete rest '' as he recovers from a hip injury .\nbradford lost their record as the country 's only unbeaten side in all competitions after going down to a very late goal at oxford .\na football anthem sung by england 's 1966 world cup winning side has been released after spending 34 years hidden in an isle of man attic .\nthe identity of a man found dead in a car park on christmas day is still not clear , an inquest into his death has heard .\nimmigration rules tailored to the needs of wales could build public confidence in the system , a group of mps has said .\nwomen working for facebook and apple are being offered an additional perk : they can have their eggs frozen .\na pensioner who painted red and white stripes on her townhouse has started court action against planning policy .\nthe northern ireland secretary of state teresa villiers has said the uk government will release funding to allow a public sector redundancy scheme to go ahead .\na fuel additive untested in clinical trials was used in breast implants that have since been banned , french radio station rtl reports .\nto an outsider , australian politics looks like an unfettered blood sport , where the only aim is to savage the leader .\na `` major cannabis farm '' has been found in disused buildings in wakefield city centre , said west yorkshire police .\npressure to free up mental health beds may be leaving vulnerable people at risk , says a watchdog .\nwales will use the pain of past failures as inspiration to reach the euro 2016 finals , says chris gunter .\nthe trial of a former priest accused of assaulting eight boys while teaching at fort augustus abbey school in the highlands has been adjourned until may .\na flat pack robot designed by an edinburgh-based entrepreneur is to be a feature of this year 's creative industries festival xponorth .\na teenager `` obsessed '' with knives who bragged about stabbing a boy in south-east london has been jailed for life .\nscott waites was delighted to clinch a second bdo world title , admitting it seemed `` a million miles away '' following shoulder surgery last year .\nleicester riders are looking to cap off a sensational sporting week for the city by completing a domestic treble .\na consumer group has revealed its latest list of shrinking supermarket items that still cost the same , or more .\na police force is being investigated after a prisoner had three fingers severed while in custody .\ncommuters are being asked to stand rather than walk on the left side of escalators at a central london tube station to see if it can cut queues .\npolice have renewed their appeal for information on the first anniversary of the death of a man in west belfast .\nthe roads of central juba , the capital of south sudan , bear witness to the british colonial town it once was : they are lined with neem trees , tall and narrow-leafed , their seeds transported from india .\nis it snowing in india 's tropical southern city of bangalore ?\nthirty homes had to be evacuated after a gas pipe was damaged in a fire that was started deliberately .\na new contractor should be in place to clear debris at didcot power station by the end of the month , the site 's owner has said .\nthe price of bitcoin has fallen more than 10 % after the hong kong-based digital currency exchange bitfinex said it had suffered a major hack .\nasian - as well as white - girls are being groomed for sex by asian men in rotherham , victim support groups say .\na prison where two cellmates made an escape bid has been labelled `` squalid '' and `` inhumane '' .\nwhen dj campbell stepped out onto the ewood park pitch for blackburn in october 2013 , the striker - then earning a reported # 25,000 a week - did not expect he would be playing for free at non-league side maidenhead united barely 12 months later .\nnew us interior secretary ryan zinke literally took the reins on his first day at work by showing up on horseback .\nteachers in wales are to be given more support to develop their careers and improve teaching in the classroom .\nreports suggest as many as 140 people , including civilians , may have died in an attack on an airbase in libya .\npepper , the humanoid robot programmed to `` understand '' human emotions , is to take a new job - as a receptionist in two belgian hospitals .\nengland head coach mark sampson has named an expanded 28-player squad for his side 's two upcoming matches against norway and sweden in spain .\nwhat a weekend in the premier league .\ngeneration of electricity and heat from plant material is listed in the suite of renewable energy technologies that the uk governments think can help deliver 15 % of the nations ' energy consumption by 2020 .\nmanchester united goalkeeper victor valdes has had his loan spell with belgian club standard liege terminated .\npolice have been unable to trace a car driver accused of ramming into three-time tour de france winner chris froome while on a training ride in may .\na 33-year-old man has been arrested on suspicion of arson after a fire broke out at a citroën dealership .\nmy day with monty - and 200 other people - began with the words : `` game number 10 , on the tee from royal troon , colin montgomerie . ''\ncilla black , whose career as a singer and entertainer spanned more than 50 years , has died at the age of 72 .\ntesco has said it is `` encouraged '' by its progress in a challenging market as it reported a second consecutive quarter of higher sales .\nreported sightings of leatherback turtles are increasing off wales , with the reptiles thought to be drawn by high numbers of jellyfish .\ngreenland profile .\none of the longest-held detainees at the us facility at guantanamo bay , a kuwaiti man , has been sent home , officials say .\nireland 's steven donnelly has beaten tuvshinbat byamba of mongolia on points to reach the quarter-finals of the welterweight division at the olympics .\nfive days after germanwings flight 4u 9525 crashed in the french alps killing all 150 on board , investigators say they have isolated dna of 78 victims .\nan islamic watchdog is calling for the reform of madrassas following the latest conviction of a teacher for child cruelty .\na section of the m1 was closed due to an `` aircraft emergency '' on a flight from gran canaria .\nthe us federal reserve has raised its benchmark interest rate by 0.25 % , only the second increase in a decade .\nan airport has taken down its passenger information website after a hacker breached security systems , claiming they were too lax .\nconservationists have won a legal challenge in scotland 's highest court against four major offshore wind farm projects .\ncardiff airport is to get a # 3m loan to develop flight routes as part of # 46m welsh government spending on projects to support the economy .\ntwo-thirds of older and disabled people in england who turn to their local councils for help with care are turned away , figures show .\na pair of original pieces of cine reel from walt disney 's first animated feature-length film has sold for more than # 16,000 at auction .\nthe music of harry potter will feature at this year 's proms , as part of a concert celebrating the 85th birthday of film composer john williams .\nmarcus ellis and chris langridge won great britain 's first olympic badminton men 's doubles medal , beating china 's hong wei and chai biao to take bronze .\ndavid haye expects a fine from the british boxing board of control for his comments in the build-up to saturday 's defeat by tony bellew .\nstanding hand-in-hand like theatre actors at their curtain call , wales ' players were met with a spine-tingling rendition of the national anthem from their fans following their european championship semi-final defeat by portugal .\ncape verde and zambia both bowed out of the african cup of nations after a game which at one point looked as though it would stop because of torrential rain .\ngreek prime minister alexis tsipras has defended his former finance minister in a row over an `` emergency plan '' drawn up in case of greece 's exit from the euro .\nthe president of iran has congratulated voters on electing a record number of women to parliament since before the 1979 islamic revolution .\nformula 1 boss bernie ecclestone says there is `` no reason '' why this weekend 's bahrain grand prix should not go ahead .\nnetherlands right-back daryl janmaat has joined newcastle united for an undisclosed fee from feyenoord .\njames ward produced a stunning comeback to beat john isner 15-13 in the fifth set and give great britain a 2-0 davis cup lead over the united states .\na midlothian man who threw a baby in the air and shook him , causing him to suffer `` catastrophic '' injuries , has been jailed for four years .\nthe conservatives have accused labour and plaid cymru of being involved in an `` unedifying squabble '' over who to support if there is a hung parliament .\na student who faked terminal cancer to con a former lecturer has had her prison sentence cut .\na further three schools in edinburgh are to be temporarily closed over structural concerns .\ncardiff devils are still the best team in ice hockey 's elite league , says netminder ben bowns .\naer lingus has apologised to customers after it cancelled all its september flights from belfast to majorca and from belfast to alicante , spain .\nscotland 's finance secretary john swinney has said talk about reduced council budgets impacting on local services was `` frankly over the top '' .\na woman has been airlifted to hospital after falling from a horse on a bridgend county beach .\nhomes , businesses and a school are being evacuated in a village after a world war two bomb was found in a quarry .\ntwo farmers convicted of possessing more than 100 sheep which did not belong to them have been jailed .\na man has been arrested over the `` violent assault '' and rape of a woman in a railway station car park , police have said .\nsabmiller has rejected an improved offer from anheuser-busch inbev that it says `` very substantially undervalues '' the company .\nworkers at the drinks giant diageo have voted to take industrial action in a dispute over pensions .\nthe premier league has announced a new deal with american broadcaster nbc universal to show live games for the next six years .\npeople in their early 30s are half as wealthy as those now in their 40s were at the same age , a report finds .\na man has been found guilty of a car-jacking attack which left a 78-year-old man wheelchair bound , a court heard .\nthe chief executive of hm revenue and customs , jon thompson , has told mps he would like to see a review of the way footballers can reduce their tax bills .\na fermanagh gp who dishonestly exploited and took advantage of a vulnerable elderly patient , when she failed to repay a # 10,000 loan , has been struck off the medical register .\nto understand earth wind & fire , you just had to look at their song titles : mighty mighty , happy feelin ' , boogie wonderland .\na businessman who registered the births of 26 non-existent babies as part of a benefit fraud scheme has been jailed for 28 months .\nthe green party has launched a national billboard campaign urging people to `` vote big , vote brave '' .\nwashing machine manufacturing is set to return to the uk after a gap of almost 10 years with the opening of a new factory in county durham .\npakistani police have arrested at least 43 suspects in connection with tuesday 's killing of a christian couple accused of desecrating the koran .\nukip will win at least five seats on the welsh assembly as part of a uk-wide `` breakthrough '' in thursday 's polls , its leader nigel farage has said .\naccrington stanley manager john coleman has criticised the football league for allowing carlisle united to move their home games because of flooding .\nthousands of people took part in the belfast pride parade through the city centre on saturday .\nno sooner had the curtain gone up on the new year 's debates in westminster hall than will quince seized the day to make an impassioned plea for support for our regional theatres .\nin three weeks , the eyes of the sporting world will be on cardiff when real madrid and juventus arrive in town for the champions league final .\nsheffield wednesday goalkeeper joe wildsmith has signed a new deal to stay with the championship side until 2022 .\neuropean and us stock markets have fallen despite the agreement of a bailout deal for cyprus .\narrests of passengers suspected of being drunk at uk airports and on flights have risen by 50 % in a year , a panorama investigation has revealed .\n`` please , sir ... help us to go back to sri lanka , '' one woman after another cries and pleads over the phone from a detention centre in riyadh , saudi arabia .\na row between a police and crime commissioner and his deputy , who was found guilty of serious misconduct , has been resolved following a payout .\nvoters in tower hamlets are going to the polls to vote for a new mayor .\nengland 's tommy fleetwood is one shot off brian harman 's lead going into sunday 's final round of the us open .\nan edinburgh taxi driver has created an exhibition and book from pictures he has taken of passengers in his cab .\na 33-year-old woman has been found guilty of stabbing her boyfriend to death on the balcony of her rutherglen flat .\nmexican president enrique pena nieto has fired a senior official over an incident caused by his daughter at an exclusive restaurant last month .\nthe us says it is considering what part it will play on the un 's human rights council , highlighting what it calls a `` biased '' stance on israel .\nthe chief constable of humberside police has written to schools asking for the children of officers to be given holiday leave during term time .\npolice have used a `` covert lorry '' to spy on drivers using their phones .\nlabour mp sir kevin barron has stood aside as commons standards committee chairman over allegations he hosted events at westminster for a drugs firm .\nthe turkish parliament has agreed to give the police sweeping new powers - but only after weeks of long debate , punch-ups between mps and sit-in protests .\na 24-year-old man and a 23-year-old woman have been arrested in berkshire on suspicion of preparing for acts of terrorism in the uk .\na time capsule containing items from the 1890s including what is thought to be a bottle of whisky has been uncovered by construction workers .\nfive members of the same family have been killed in a helicopter crash in north wales .\na metre-long fish that escaped from an aquatic centre during recent flooding has been found .\nwall street closed higher on tuesday but surge needed to break through the 20,000 mark remained elusive .\na statue is to be commissioned by watford fc to honour the club 's former manager graham taylor .\na key government policy to force all pupils to sit gcses in core academic subjects could be difficult for some students , the head of ofsted has said .\nteam sky boss sir dave brailsford has said that his handling of the media following allegations against his team has made things a `` damn sight worse '' .\na teenager has been convicted of grooming a vulnerable young man after being inspired by the 2013 killing of fusilier lee rigby in woolwich .\nlabour risks losing `` a swathe '' of voters to ukip by campaigning to remain in the eu , one of its mps is to warn .\na 6.5-magnitude earthquake struck aceh province in indonesia on wednesday , killing at least 97 people .\ngraham taylor will be remembered by many for his unfulfilling spell in charge of england - but by plenty more as an outstanding club manager at watford and aston villa and one of the nicest , most genuine men in the game .\nthe story of india 's economic surge is dominated by two conflicting narratives .\na museum in the house where jane austen completed pride and prejudice has opened an exhibition as part of the novel 's 200th anniversary celebrations .\ncruise ship operator carnival has reported profits that beat analysts ' expectations , sending shares higher .\nnhs grampian is trying to improve staffing levels at aberdeen royal infirmary after concerns were raised by staff .\nharlequins were knocked out of the challenge cup by defeat at top 14 side stade francais in a match delayed because of a frozen pitch .\na judge in the north-western mexican state of sonora has ordered the arrest of 22 people in connection with a deadly fire in a nursery in 2009 .\nmotorists in manchester are being frustrated by the appearance of yet another hole in a city-centre road .\nnetflix has gone live in nearly every country in the world .\ntwo labour mps have resigned from the shadow whips ' office , just days after party leader jeremy corbyn began reshuffling his front bench .\ngirls are being invited to audition to join gloucester cathedral 's choir for the first time in its 477 year history .\nsurrey police needs to improve how it investigates crime and tackles serious and organised crime , a government inspector has said .\nmae arbenigwyr canser yn gobeithio y bydd cynllun newydd , fydd yn cael ei dreialu yn ne cymru , yn lleihau ' r amser mae 'n cymryd i gael diagnosis o ' r clefyd .\na supporter of so-called islamic state photographed a police officer in a mosque car park before plotting to carry out a knife attack around remembrance sunday 2014 , a court heard .\nkenya 's president has warned the country 's judiciary not to help the opposition throw the next election into disarray .\nukip donor arron banks has offered to become party chairman in order to bring about a `` total rebrand '' .\nthree people have been rescued from a boat which had started to take on water off the anglesey coast on friday .\nfive men have appeared in court accused of misusing the camera on a police helicopter to film people who were naked or having sex .\neducation is the most effective `` antidote '' to violent extremism , says the incoming head of oxford university .\nchelsea boss jose mourinho said manchester united 's important players were `` in our pockets '' in a match that went `` exactly '' as they wanted .\nemily thornberry has resigned from labour 's front bench after sending a tweet during the rochester and strood by-election which was branded `` snobby '' .\nadministrators have confirmed the sale of ferguson shipbuilders in inverclyde to businessman jim mccoll 's firm , clyde blowers capital .\nfrance 's president has warned that anti-semitism and racism `` are still here '' on a visit to the only nazi concentration camp on french soil .\na hearing into whether navinder sarao , the so-called `` flash crash '' day trader , can be extradited to the us has begun .\na 44-year-old man has died in north wales while taking part in a charity cycle ride .\na faulty gene could help explain some cases of unexplained male infertility , according to research .\nadult social care firms are struggling to hire , retain and train staff as a result of cuts to council budgets , a survey of senior officials suggests .\nthey can walk , they can talk , and may soon be thinking for themselves .\ngeologists have discovered the secret that gives dramatic natural sandstone monuments their shape : gravity .\neight teenagers have been arrested after a large group of youths attacked a mcdonald 's in flintshire on halloween .\nfrance has called on the former head of the european commission , jose manuel barroso , not to take up a job advising us bank goldman sachs on brexit .\nhundreds of photos of bristol taken for a competition to show `` 24 hours in our city '' are on show .\ntributes have been paid to a former glamorgan cricketer who was found dead at his swansea flat on friday .\na driver has been convicted of a hit-and-run crash in leeds which left a girl permanently disabled and her brother seriously injured .\nseat has said about 700,000 of its cars are fitted with the software that allowed parent company volkswagen to cheat us emissions tests .\nsouthampton boss claude puel says the club do not want to sell captain virgil van dijk .\ncost-cutting measures helped publisher johnston press achieve a rise in adjusted pre-tax profit last year , despite falling sales .\nnetwork rail has promised to do `` everything in its power '' to stop a repeat of the rail chaos at christmas when it carries out work over easter .\na liverpool football fan whose brother died in the hillsborough disaster has told a jury how he was held up by other supporters as the crush worsened .\na number of children were injured when an inflatable slide broke away from its moorings during a carnival in dorset .\na man in california has been jailed for 16 years after admitting he stole and tortured cats , killing 18 of them .\nireland have won the hockey world league round two in kuala lumpur by beating malaysia 3-0 in sunday 's final .\nred bull team boss christian horner says he is `` amazed '' silverstone has ended its british grand prix contract .\nviolence during flag protests is damaging the image of northern ireland internationally , the secretary of state , theresa villiers , has said .\njames mcclean , darren randolph and colin doyle have been called into the republic of ireland squad for friday 's friendly against mexico in new jersey .\n-lrb- closed -rrb- : us shares were mixed , as a rise in biotech stocks offset a fall in energy shares caused by a sharp drop in the oil price .\na man has been assaulted while a woman and four children escaped injury during a raid of a house in carrickfergus , county antrim , by an armed gang .\npolice have launched an investigation after the body of man was found in an alleyway in rochdale .\nhundreds of nurses and midwives are expected to join a demonstration in london on saturday calling for a rethink of plans to scrap maintenance grants for students in england .\namerican jason dufner will take a five-shot lead into the third round of the memorial tournament after carding an eagle on the 18th hole on friday .\nit was fantastic to read and listen to so many wonderful tributes when my colleague henry blofeld announced he will be hanging up the test match special microphone at the end of the summer .\nthe wife of a jailed drugs ring boss who dug up his # 270,000 cash stockpile to help launder it has been jailed , along with her mother and sister .\ngermany 's michael jung closed in on a # 240,000 bonus prize as he secured a dominant lead to take into the final day of badminton horse trials .\na project helping disadvantaged uk pupils go to us universities has seen undergraduates accepted for courses starting in september 2016 at all of the prestigious ivy league colleges .\nthe national trust has announced the design teams shortlisted to rebuild an 18th century mansion destroyed by fire .\na group of iranian fans who created a tribute to pharrell williams ' hit song happy have been arrested .\ncycling 's governing body has warned that any rider found guilty of racism will be sanctioned after an incident during the tour de romandie .\nthree people were injured when a broken-down bus was hit by a lorry on the a34 in oxfordshire .\nabout 1,650 staff and students will have to move out of an oxford university building for up to two years after asbestos was discovered .\nsecurity forces in sao paulo have cleared a central square of crack addicts and homeless people who fled from a similar police operation nearby nearly a month ago .\nperu 's president ollanta humala has marked his first year in office by pledging to increase social spending to help the country 's poorest people .\nthe dow jones industrial average continued to back away from tuesday 's record close .\nthe irish foreign minister has said the government will apply maximum pressure on the egyptian authorities to secure the return of a prisoner to ireland .\nthe ospreys ended their disappointing pro12 campaign with a comfortable win over a disjointed connacht side .\nnew work by simon bray and tristan poyser explores the way in which our clothes shape us , that outer shell we use to accentuate or sometimes hide who we are .\nleeds rhinos saw off the soon-to-be demolished iconic south stand with an error-strewn win over st helens .\nzac goldsmith will contest the 2016 london mayoral election for the conservatives , it has been announced .\na motorist was killed when his car collided with a tank on a rural road during a major nato military exercise in central norway , police and military officials say .\nthe second inquest into the death of cumbrian toddler poppi worthington has again been adjourned , a coroner has confirmed .\nthe french authorities have expelled controversial russia fan leader alexander shprygin for a second time .\nthe bbc generated more than # 8bn for the uk economy in 2011-12 , almost twice its licence fee spend .\nrussian protest leader alexei navalny has been jailed for five years , for embezzlement from a timber firm .\nsinn féin 's conor murphy says it 's time for an election as the deadline passes for secretary of state james brokenshire to call one , after the party refused to re-nominate a deputy first minister .\nfour belfast giants players have been included in the great britain squad for next month 's olympic pre-qualification tournament in cortina , italy .\nthe desk where charles dickens wrote great expectations is finally on public display thanks to a # 780,000 grant .\nimmigration has long been a divisive issue on hispaniola , the caribbean island shared by haiti and the dominican republic .\nthousands of military personnel face a five-month wait to find out whether they will lose their jobs as part of a restructure of the armed forces .\nsouth sudan football association 's new office was opened by new fifa president gianni infantino on wednesday .\nbritain 's johanna konta said it was `` tough to take '' as she headed home from the us open after just one day following defeat by aleksandra krunic .\nthe lion king and thelma & louise are among 25 films that will be preserved by the us library of congress .\nfrom the neolithic to the medieval period , a host of historical artefacts have been hiding in the belfast hills .\na row has broken out over an investment pact between scotland and china after the scottish government blamed the opposition for its reported collapse .\nopium production in afghanistan has increased by 43 % in the past year , united nations officials have said .\nmidfielder sam clucas has signed a new three-year deal with premier league side hull city .\na stranger organised and helped fund a life-saving operation for a girl with a brain tumour who lives more than 3,500 miles -lrb- 5,630 km -rrb- from him .\nscientists have built a model circuit that solves the mystery of one of nature 's most famous journeys - the great migration of monarch butterflies from canada to mexico .\nmps could serve as welsh government ministers in a bid to widen the talent pool , the institute of chartered accountants in england and wales says .\nthe uk government wants to claw back some eu powers over justice and policing , but is likely to remain in the european arrest warrant -lrb- eaw -rrb- system .\nwhile us secretary of state john kerry is not giving up on the idea of a ceasefire in syria , it is very hard to see his efforts bearing fruit .\nirish police have arrested two men over the sale and supply of ecstasy tablets and cocaine in dublin .\npeople are being invited to give their views on plans for a permanent site for travellers and gypsies in powys .\nswiss voters are going to the polls on sunday in a nationwide referendum on immigration which is being watched closely right across europe .\nleague two side colchester united have signed forest green rovers forward kurtis guthrie for an undisclosed fee .\nyau wai-ching is the youngest woman to be elected to hong kong 's parliament - and she has been called many things , including : `` radical '' , `` goddess '' , `` spy '' , `` pretty '' and `` cancer cell '' .\nhull fc secured a second convincing super league win in succession , scoring seven tries in a stunning victory against catalans dragons in perpignan .\nfour people accused of kidnapping and torturing a mentally disabled man in a `` racially motivated '' attack streamed on facebook have been denied bail .\nbritain 's lizzie armitstead stretched her lead in the women 's tour as the netherlands ' marianne vos claimed victory in stage four .\nthe number of plastic bags given out by uk supermarkets has increased for the fifth year in a row , rising to 8.5 billion .\ntwo men have been charged with rape following a sexual exploitation investigation in sunderland .\nthe premiership 's top try scorer christian wade scored two tries as leaders wasps moved five points clear with a bonus-point win over worcester .\nasian shares fell on thursday , tracking losses seen on us markets after federal reserve chair janet yellen expressed concerns over share valuations .\njurassic world has become the first film to take more than $ 500m -lrb- # 322m -rrb- at the global box office on its opening weekend .\na married british army officer denies raping a young female colleague at a un event in uganda , a court martial has heard .\na man has been jailed for four years for killing a fellow scooter enthusiast who urinated on his leg at a rally .\nthe latest stage of the # 1bn transformation of dundee 's waterfront is getting under way .\nthe earliest known letter written by john lennon is expected to fetch more than # 30,000 at auction next month .\nthieves ransacked a widow 's home and stole jewellery , cash and her car while she was at her husband 's funeral .\nprotecting a key coastal railway track from rising sea levels and falling cliffs is going to cost about # 650m , network rail has said .\nthe chief executive of natural resources wales has denied the organisation had the `` wool pulled over our eyes '' by a sawmill operator given a 10 year timber contract that was criticised by an audit .\neight churches in herefordshire and shropshire have been awarded # 500,000 from the heritage lottery fund to help pay for urgent repairs .\na council which lost a high court case over fining a father who took his daughter on a term-time holiday is having its appeal heard at the supreme court .\none person 's tax planning is another person 's tax avoidance - so whether david cameron 's tax affairs are controversial or not is really a matter of where you stand on the payment of tax .\na council which installed braille paving stones branded `` gobbledygook '' has said the slabs were only intended to be `` creative '' .\ncommonly used pesticides are damaging honey bee brains , studies suggest .\nmotorcyclists have claimed they have been banned from a pub chain which recently barred swearing .\ndevon and cornwall 's police and crime commissioner -lrb- pcc -rrb- has announced he will not be seeking re-election in may .\na new code of practice on police stop-and-search powers has come into force .\nbad weather caused a military plane to crash in myanmar last month with 122 people on board , state media say .\na storm surge has caused the worst flooding on germany 's north-east coast since 2006 , leaving streets and cars submerged and causing major damage .\nafter two years of inquest evidence , a detailed picture has built up of how an fa cup match at sheffield wednesday 's hillsborough ground turned into a disaster that claimed 96 lives and left hundreds more injured .\nterminally ill actor and disability campaigner brian rix , 92 , has said the law on assisted dying needs changing .\nthe head of a youth services firm left her job amid allegations of staff bullying , the bbc has learned .\ngirls aloud star kimberley walsh and leading tenor alfie boe are joining forces to sing on one vision , the official single for team gb .\nmore than 50 young sheep have been stolen from a farm in the alves area of moray .\npolice investigating a shooting and stabbing in rugby have arrested a fourth man .\nthe shock from sunday night 's deadly the quebec mosque shooting is slowly waning .\nthe un says it has negotiated the release of 876 children in nigeria , who were being held by the army over possible links to islamist militants .\nthe uk would have `` zero '' influence if it voted to leave the eu , the outgoing president of the european commission has said .\nstriker matt green says he is attracting interest from championship clubs having left mansfield town following a `` demoralising '' season .\nthe number of motorcyclists killed on london 's roads reached 36 in 2015 , transport for london -lrb- tfl -rrb- data showed .\nan amateur footballer in portugal has been banned for more than four years after kneeing a referee in the face .\nboreham wood have re-signed striker jamie lucas from bristol rovers on loan until the end of the season .\nprotesters are blocking roads in parts of the thai capital , bangkok , in a bid to oust the government before snap elections on 2 february .\nthe information commissioner 's office says it is concerned about the number of people being cold called about pensions .\nleicester city have signed forward josh gordon from northern premier league premier division side stafford rangers .\nthe second week of october is likely to be remembered as the moment when the 2016 presidential campaign went careening off the rails and spinning into the void .\nrural pennsylvania is not the sort of place you would think to look for someone accused of throwing the middle east into further turmoil .\na photographer has created images that place some of star wars ' best-loved characters on oil rigs parked up in the cromarty firth in the highlands .\na hedgehog officer is set to start work to improve animal numbers after an advert for the job sparked worldwide interest .\nsam northeast made 178 not out as his kent side batted out a tame draw against county championship division two champions essex on the final day of the season at canterbury .\nnursing leaders are warning the nhs in scotland has `` too few nurses '' after vacancies rose to record levels .\na moped gang armed with knives and an axe has been intercepted by police in a `` terrifying '' attempt to rob a luxury watch store in central london .\na paramedic called to the scene of a gas blast that left a man dead has told an inquest he thought the devastation was the result of a plane crash .\nmore international help has been arriving in chile to help the country fight the worst wildfire in its modern history .\njohanna konta says she can significantly improve her game despite reaching the wimbledon semi-final and fourth in the world rankings .\ndick advocaat has resigned as sunderland boss , with the team yet to win in the premier league this season .\na volcano has erupted in guatemala , prompting the authorities to consider the evacuation of some 3,000 people living in the area .\nlocals could be offered the chance to buy shares in new wind farms , solar farms and hydro power stations , under new government approved guidelines .\na man who admitted posting offensive comments on facebook about an edinburgh boy beaten to death by his mother has been jailed for 12 months .\nandy murray will have friend and fellow briton james ward for company in the third round of wimbledon on saturday .\none of scotland 's largest animal feed producers has posted a rise in profits , despite reporting a `` challenging '' year for the industry .\nan artist 's impression of how an expanded primary school in addlestone will look has been unveiled .\nthe national crime agency -lrb- nca -rrb- , is to lead the investigation into the sale of nama 's ni property portfolio .\nbrexit 's impact on welsh ports is being discussed as assembly members meet irish politicians and business leaders .\ngeorge the tabby cat has become the local celebrity in the kings chase shopping centre in kingswood , bristol .\nonce upon a time , there was a bedtime story - and it was the start of a long career for tv and film producer mike young .\nprince harry helped capture a saltwater crocodile during his tour of australia last month , newly-released pictures have shown .\nrussian anti-corruption blogger and opposition politician alexei navalny has been jailed for five years for fraud , after a trial he says was politically motivated .\na man has been arrested in north-west london on suspicion of involvement in production of improvised explosive devices in iraq in 2007 .\nconservationists are to visit skye to learn more about otter habitats ahead of a proposed reintroduction of the mammals to japan .\nan agreement has been reached between nato and the afghan government on the withdrawal of us special forces from wardak province , alliance officials have announced .\nromelu lukaku scored twice as he led a superb comeback by everton , who battled from 2-0 down to win at west brom .\njohn key has announced that he will resign as prime minister of new zealand , after eight years in the job , citing family reasons .\nan raf pilot was guided into landing his jet by a colleague in another aircraft after suffering `` a partial loss of vision '' , it has emerged .\nthe author of the harry potter books , jk rowling , is celebrating her 50th birthday today .\nmafia criminals who are better educated tend to earn more , research suggests .\nscottish league one leaders dunfermline athletic were held at home by albion rovers but still moved 11 points clear at the top of the table .\nchelsea 's win over tottenham at stamford bridge not only restored them to the top of the premier league , it also offered up further evidence of the impact manager antonio conte has as he rebuilds the club from the trauma of last season .\nan offshoot of al-qaeda in the arabian peninsula -lrb- aqap -rrb- has issued a statement threatening the lives of 73 yemeni soldiers it says it captured last week .\na judge in brazil has revoked a decision which had halted work on the belo monte dam in the amazon region .\nthe number of homes being bought and sold has fallen for the third month in a row , according to government figures .\nan 11-year-old canadian boy saved his whole family from a devastating fire , his mother says .\nengland lions batsmen ben duckett and daniel bell-drummond could play for england within a year , according to former national coach andy flower .\ncricket appears to run in the blood for one county londonderry family who have made history twice in one week .\nben murdoch-masila scored two tries as salford fought back to end castleford tigers ' unbeaten start to the season .\na county council has set aside # 1m to fix almost 3,000 portholes created during storm desmond flooding .\nhelen glover expects her partnership with polly swann to develop quickly as they prepare for the european championships in belgrade .\nwork has begun on plans to alleviate traffic congestion and regenerate fishguard town centre in pembrokeshire .\nquestions continue to be asked about whether wednesday 's fatal terror attack in parliament could have been prevented if more officers had been armed .\ndeclan mcmanus scored twice as greenock morton beat scottish championship bottom side alloa athletic , who remain 10 points adrift .\nromania 's women won gold in the women 's team epee to secure their country 's first medal at rio 2016 .\nconstruction of planned improvements to a challenging hairpin bend on the a9 at berriedale braes could begin next year , the scottish government has said .\na man wanted on recall to prison who taunted police with social media posts telling them `` catch me if you can '' is back behind bars .\nstephen keshi has been sacked as coach of nigeria and replaced by shaibu amodu , the country 's football federation -lrb- nff -rrb- has announced .\na renowned russian conductor has led a concert in the ruins of palmyra in syria , which were recaptured from the so-called islamic state -lrb- is -rrb- in march .\ndonald trump winning the us presidency is considered one of the top 10 risks facing the world , according to the economist intelligence unit .\ncouncil officials have insisted a redevelopment of a former gay pub in london still includes an lgbt venue for the plans to go ahead .\ndata on the flight recorder of the russian war plane downed by turkey last month has so far proved to be unreadable , russia 's military has said .\nwidnes have rejected concerns raised about the safety of their artificial pitch following friday night 's super league opener against wakefield .\npembrokeshire councillors have voted to begin a fourth consultation on plans to shake-up education in haverfordwest .\ndetectives investigating wednesday 's terror attack in london have finished searching an address in carmarthenshire .\nmobile phone maker blackberry says it shipped one million of its new z10 smartphones in the first three months of 2013 .\npolice scotland has received 27 complaints from members of the public since may about its controversial armed policing policy , msps heard .\nnot a single fine was issued during a # 5,000 trial to get teachers and parents to police roads outside a primary school , it has emerged .\nscotland will have 13 athletes at the london 2017 world championships - almost double the previous best total .\ndairy farmers work hard to help get things like milk , cheese and butter from the farm and into our kitchens .\na much-criticised christmas attraction designed by laurence llewelyn-bowen has closed down permanently .\npresidential candidate donald trump has called for a new election in iowa , accusing the republican winner , ted cruz , of fraud .\none of the questions raised by the case of liam fee - whose mother and her partner were convicted of his murder - has been `` could anyone have saved him ? ''\nas bethlehem prepares for christmas , five people chosen to represent characters in the original nativity story have been speaking about their hopes and fears for the festive period .\na second teenager has been arrested after a suspected knife fight broke out at a london shopping centre on boxing day , the metropolitan police has said .\nthroughout the bitter violence of the ukrainian conflict , another hidden war has been waged , involving several groups of computer hackers .\na killer condition linked to 1,500 deaths every year in wales is not always being treated in the same way in welsh hospitals , new research claims .\ncommemorations of the 200th anniversary of the battle of waterloo concluded with a re-enactment of the moment news of the allied victory reached london .\nmore than 40 people have died during an attempt to free people during an ambush by militant islam group boko haram , sources have told the bbc .\ncladding from 120 high-rise buildings in 37 local authority areas in england has now failed fire safety tests , the prime minister has said .\nthe new 12-sided # 1 coin will enter circulation on 28 march , the government has said .\nwhen zinedine zidane was appointed real madrid manager in january , the spanish giants were in disarray .\na man who liked `` highly offensive '' facebook messages about islam had his shotgun licence revoked by police .\na european official has said the government should pay for investigations of killings by soldiers and police during the troubles .\nworld leaders have welcomed the narrow election victory of greece 's broadly pro-bailout new democracy party and urged athens to form a cabinet quickly .\nstoke city defender glen johnson has signed a one-year contract extension that will keep him at the club until the summer of 2018 .\na neighbour who came to the aid of a scottish sun journalist after he had acid thrown on him has told a court how his face began to blister afterwards .\nscotland lock forward jonny gray has signed a new contract with pro12 champions glasgow warriors until 2018 .\na murder investigation has been launched after a man was stabbed to death outside a busy north london pub .\na woman has been killed on a level crossing in suffolk .\nnetherlands captain mandy van den berg has joined reading women from liverpool on a permanent deal .\nryan johnston 's half-time introduction help kilcoo edge out 13-man scotstown 1-8 to 0-9 in the ulster club football preliminary round game at clones .\nthe wedgwood museum collection has been bought from administrators after # 15.75 m was raised to save it .\nsouth sudan 's president has sacked his entire cabinet , in an apparent power struggle with other senior leaders .\nthe advantage of canvassing close to stormont is that you can call on your party colleagues to help you out .\nplans by apple and google to do more to protect customers ' privacy have made the fbi `` very concerned '' .\njake kirby , adam buxton , evan gumbs , mitchell duggan and liam ridehalgh have all agreed new deals with tranmere .\nwelshman craig evans secured a unanimous points victory over irishman stephen ormond to retain his wbo european lightweight title .\na man from east dunbartonshire has been jailed for two years after pleading guilty to a # 50,000 vat fraud .\nstarting university is meant to be an exciting time but for amara bangura it has been a bit too eventful .\nmore than 70 jobs are being created by a cardiff bay finance firm which acts as an online insurance broker and provides data for price comparison websites .\npolice are investigating the unexplained death of a 32-year-old man in stranraer .\nso-called islamic state -lrb- is -rrb- will never be defeated unless the corrupt conditions that help it to thrive are addressed , a new report claims .\na country pub saved from closure after villagers stepped in to buy it has been named national pub of the year .\nchina and the us have vowed to work together to persuade north korea to give up its nuclear programme and to settle tensions through dialogue .\nchina is the world 's most populous country , with a continuous culture stretching back nearly 4,000 years .\nthe government says it will increase the levy on banks from 0.078 % to 0.088 % from 1 january .\nlithuania midfielder darvydas sernas has become ross county 's fourth signing of the january transfer window .\na power cut left venezuela 's parliament in the dark as it discussed a law dedicated to the energy sector .\nan 85-year-old woman has died after being struck by a bin lorry in edinburgh .\nthe rolling stones ' guitarist keith richards says the band have met up for `` a couple of rehearsals '' as they mark 50 years together .\nanxious parents in england give their children less freedom to play and go outside than those in many other european countries , research suggests .\na bear hug , a photo filter and a new debate on net neutrality - ayeshea perera examines the domestic fallout of indian prime minister narendra modi 's facebook townhall in us .\nanthony watson has been included in england 's 25-man training squad for their six nations game against italy on 26 february .\ntechnology that allows a drone to be piloted from the ground using only a person 's brainwaves has been demonstrated in portugal .\narsenal midfielder granit xhaka has been interviewed under caution by police following an allegation he racially abused an airline staff member at heathrow on monday night .\nthe winner of the jump 2017 is spencer matthews .\nhead coach warren gatland said wales ' string of injuries were no defence for their 23-19 world cup quarter-final defeat by south africa .\nformer us president bill clinton is introduced to the mcguinness family by sinn féin president gerry adams .\nclermont full-back nick abendanon says the rugby football union should allow players working for clubs outside england to represent the national team .\npartick thistle were pegged back late on by ross county in the scottish premiership .\na kidney `` grown '' in the laboratory has been transplanted into animals where it started to produce urine , us scientists say .\nhearts head coach ian cathro has played down reports of rangers renewing their interest in jamie walker .\nbritain 's greg rutherford claimed a resounding long-jump victory at the great city games in front of a big crowd in manchester 's albert square .\nthe warnings about the forthcoming all-out junior doctor strikes have been coming in so thick and fast that you could be forgiven for thinking it will be armageddon .\nhe may have a famous name but he does not have an office or a phone yet .\ngregor townsend says saturday 's 1872 cup derby provides one last chance for players to force their way into his first scotland squad .\npc gamers will have to wait a little bit longer if they want to play grand theft auto v.\nplans to relax so-called `` purdah rules '' on government announcements in the run-up to the eu referendum are to be the subject of a quickfire inquiry by mps .\nan independent investigation examining claims of historical child abuse at children 's homes in north wales has found `` significant evidence of systemic and serious sexual and physical abuse '' .\na bus ended up stuck in a manure heap after apparently taking a wrong turn .\nthe commissioner of an garda síochána -lrb- irish police -rrb- has said the force needs more than 500 new recruits a year to provide a proper service .\na pet cat with a track record for stealing has slipped back into his criminal ways despite convincing his owner he was a reformed character .\na # 7m birmingham free school opened by prime minister david cameron is to go into special measures following a highly critical ofsted report .\nwinger junior hoilett says the opportunity to be reunited with manager neil warnock made his decision to join cardiff city a `` no-brainer '' .\nformer derby county defender shaun barker will be offered a deal at burton albion if he can prove his fitness , says manager nigel clough .\nsouth africa has revoked its withdrawal from the international criminal court -lrb- icc -rrb- after the high court said the move was unconstitutional .\nanother former pupil of gordonstoun public school in moray has contacted police over claims of historical sexual abuse , it has emerged .\na man and a woman have been taken to hospital after being rescued from a house fire in stoke-on-trent .\na fact-finding mission by chemical weapons watchdog the opcw has concluded that the banned nerve agent sarin was used in an attack in northern syria in april that killed dozens of people .\na tree which stood at the time of magna carta and another with links to the time of christ have been shortlisted in the tree of the year competition .\nthe government of chile has demanded that venezuela `` immediately '' disclose the location of a journalist who was detained earlier this month .\na grimsby frozen food factory has closed with the loss of 337 jobs .\nmicrosoft is recoding the main games in its halo series to run on its recently released xbox one console .\ngermany 's bid for a seventh consecutive european championship title is over after denmark fought back to win an entertaining euro 2017 quarter-final .\nderby county eased past ipswich town to rise to sixth place in the championship and add more pressure on tractor boys boss mick mccarthy .\na us woman who died in police custody three days after being arrested told a guard she previously attempted suicide , according to the sheriff in texas .\nunited states skipper davis love says bubba watson will add `` a lot of fun '' and `` great heart '' after naming the two-time masters winner as a vice-captain for this weekend 's ryder cup .\naction to reduce the number of welsh children with type 1 diabetes from being admitted to hospital is needed as cases continue to rise , experts warn .\nhouses in a favela , near one of brazil 's world cup stadiums , have been evacuated after this huge sinkhole opened up .\nhungary traces its history back to the magyars , an alliance of semi-nomadic tribes from southern russia and the black sea coast that arrived in the region in the ninth century .\na `` dominating bully '' who led a gang which smuggled a machine gun , semi-automatic handguns and ammunition into the uk has been jailed for life .\na scottish woman jailed in peru for smuggling drugs has arrived back in glasgow after being released from jail .\nnigeria has sent a `` massive deployment of men and resources '' to combat islamist militants in three north-eastern states .\nchelsea captain john terry will miss the rest of the season through suspension after his red card in saturday 's 3-2 defeat at sunderland .\nthe white house has labelled `` bananas '' a ruling that blocks president donald trump 's order barring funding for cities that shelter illegal immigrants .\ndisused phone boxes in london are being put to a novel use - as solar-powered charging stations for mobile phones .\ntorquay united manager kevin nicholson says his side 's attitude in training ahead of their loss to tranmere rovers contributed to the result .\nwelsh ufc fighter brett johns says double olympic taekwondo champion jade jones could be the next ronda rousey .\nnewport 's multi-million pound new shopping centre has opened , in what is seen as a landmark for the city centre 's regeneration .\nthe american new horizons spacecraft has made its last planned targeting manoeuvre as it bears down on pluto .\nworld number one jason day maintained his four-stroke advantage to win the players championship at sawgrass .\nfour people are in custody in the us and canada after a suspected drug smuggler fired on us border agents and fled , sparking a day-long manhunt .\nindia 's economy grew 7.5 % in the three months ending in march , higher than the previous quarter and above expectations .\nthe former police officer involved in an alleged racist incident on the paris metro last month has said he pushed a black man away from a train carriage because it was too full .\nipswich town defender steven taylor believes all young footballers should still clean the boots and fetch coffees for the first team .\naberdeen could be the city worst hit by falling economic output due to a `` hard '' brexit , experts have predicted .\nfrustration is growing in parts of rural nepal over the pace of relief efforts , with some badly-affected villages yet to receive any assistance .\nsix high rise blocks in grimsby are to be demolished meaning hundreds of people will have to move home .\npolice in the republic of ireland have arrested a man and seized cannabis plants with an estimated value of 750,000 euros -lrb- # 530,000 -rrb- in county meath .\nthe 10-run win over sri lanka that took england to the semi-finals of the world twenty20 was a classic .\nnigeria 's president has accused activists of `` playing politics '' after his meeting with parents of the abducted schoolgirls was called off .\na man has been jailed for life after he admitted the religiously-motivated murder of a glasgow shopkeeper who he claimed had `` disrespected '' islam .\nscientists are trying to find out if bees make different sounds depending on where in wales they are .\nleeds rhinos ran in seven tries as they comfortably beat a poor warrington wolves side at headingley .\nthree baby otters are being cared for at a wildlife hospital in florida in america after being found when builders were digging up a driveway .\npolice in canada have charged a man for sending explosive devices to several businesses in the city of winnipeg and warned that more could be discovered .\nmexican finance minister luis videgaray has resigned following the visit of donald trump last week .\nall the match reports for the midweek efl cup action , where manchester united got back to winning ways and set up a manchester derby in round four .\nan unpublished letter from writer and scholar cs lewis has made # 4,600 at auction in gloucestershire , more than three times the original estimate .\nthe queen has described chinese officials as having been `` very rude '' during last october 's state visit to the uk by president xi jinping .\na jet that crashed during the shoreham air show , killing 11 men , had expired ejector seat parts and an out-of-date technical manual , a report has said .\nthe search is on for the winner of an unclaimed winning lottery ticket worth # 1m .\nwelsh voters would turn down devolution now if a referendum were held on the assembly 's existence , welsh tory leader andrew rt davies has said .\nfrench footballer karim benzema has been placed under formal investigation in connection with a sex tape blackmail plot involving another player .\na student whose mother and teenage brother were stabbed to death is focusing on caring for her father who was also injured in the attack .\nasia has overtaken europe as the world 's second-richest region , according to an annual report by the boston consulting group -lrb- bcg -rrb- .\nin my teens , i worked as an artisanal miner , waist deep in water , sieving the gravel to find a diamond .\nliverpool manager brendan rodgers has said he expects forward raheem sterling to stay at the club for the remainder of the two years on his contract .\nthe public inquiry into undercover policing may `` expose both creditable and discreditable conduct '' , chairman lord justice pitchford has warned .\nlewis hamilton accepted the blame for the errors that led to him finishing sixth in sunday 's hungarian grand prix .\nscotland vice-captain kyle coetzer believes the `` monkey is off their backs '' when they host afghanistan in two one-day internationals this week .\nebbsfleet grabbed a point on their return to the national league as they drew 2-2 in an entertaining match at guiseley .\nan online education resource showcasing the best way to increase attainment in scotland 's schools has been launched by the country 's education secretary .\ncarlisle united have signed free-agent winger louis pedro on a short-term contract that will expire on 21 may .\nshares in tesco led the declines on the ftse 100 , giving up some of friday 's gains when the stock surged in the wake of news of its planned tie-up with food wholesaler booker .\ntwo men killed in an explosion at a factory in norwich died from the `` effects of fire and inhalation of fumes of combustion '' , post-mortem examinations have found .\nnigerian amos adamu is under investigation by fifa 's ethics committee , football 's world governing body revealed on wednesday .\nuk manufacturing activity contracted in april for the first time in three years , a survey has indicated , adding to fears over the economy 's strength .\nthe boat race of the north is returning to the newcastle-gateshead quayside following a five-year absence .\ncolumnist katie hopkins has apologised to a muslim family she accused of being extremists after they were refused entry to the us for a disneyland trip .\nus president donald trump is continuing to back a ban on people from seven mainly muslim countries entering america , despite protests against it .\nthe first church of england vicar to marry a same-sex partner has accused the church of being `` institutionally homophobic '' .\nblackburn rovers came from behind to earn a crucial draw against fellow championship strugglers bristol city .\na senior prison official has been detained in russia accused of stealing a 50km -lrb- 31-mile -rrb- length of highway .\nburton albion scored a goal in each half to deservedly win their first competitive meeting with birmingham .\na wave of selling sweeping across bond markets resumed on monday as investors continued to digest the impact of a donald trump presidency .\na family-run florist says it is being besieged with up to 120 calls a day in a phone cloning scam .\nleicester city have signed riyad mahrez from french second-tier side le havre .\ntributes have been paid to the 22 people killed at manchester arena , some of them children .\n`` dedicated '' and `` hungry for success '' are phrases used a lot in connection with athletes heading to compete in an olympic games .\na dundee company has admitted health and safety failings after a worker died while cleaning out a chemical tank .\nmanchester city are all but assured of a place in next season 's champions league as manuel pellegrini 's time at the club ended with a draw at swansea .\nchris froome remains third overall in the criterium du dauphine behind leader alberto contador and richie porte .\nfilled with goodwill , unfathomable optimism and a slightly heavy heart , you embark on a health kick .\nthe former hamilton 's shirt factory on foyle road in londonderry has been demolished .\na man who murdered his five-week-old granddaughter has been jailed for life and will serve a minimum of 25 years .\na new zealand woman living in kent has claimed the uk border agency -lrb- ukba -rrb- prevented her from travelling to the funeral of her grandfather in auckland .\nfor muslim children in northern nigeria , memorising and reciting the holy koran is an integral part of growing up .\nrochdale striker calvin andrew 's 12-match ban for elbowing oldham defender peter clarke has been reduced to nine .\nthe first human trial of a new type of hiv therapy suggests it could be a promising weapon in the fight against the virus .\nanti-doping officials in russia are being stopped from testing athletes and are also being threatened by security services , says a new report .\nat the top of the mgm grand on the las vegas strip is a huge advert for the magician david copperfield , the hotel 's star attraction .\npolice have issued an e-fit image of one of three men suspected of dousing boiling water over a couple in their 60s during a raid on their home .\nhousing owned and built by groups of people could help turn `` reluctant renters '' into home owners , a new report suggests .\na man has been taken to hospital following a fire at a flat in aberdeen .\ncanadian police have apologised after an explicit conversation was inadvertently broadcast from one of its helicopters .\na celebrity who wants an injunction to keep an extra-marital relationship out of the media will put his case at the supreme court on thursday .\nlancashire moved up to second in the county championship table after thrashing hampshire by an innings and 30 runs at old trafford .\npolice in dundee have launched an investigation after a woman was sexually assaulted in the city centre .\na dispute that led to strikes by drivers of the luas , dublin 's public tram system , has ended after staff voted to accept pay rises of up to 18 % .\nunited states striker alex morgan will move to reigning european champions lyon for six months from january .\nthe death of a woman in the maryhill area of glasgow is not being treated as suspicious , police said .\nbolivians voted in a referendum on 21 february to decide whether to allow president evo morales to seek another term in office .\nyoutube has enlisted the help of prof stephen hawking in the hunt for budding young scientists .\nthe case against a teacher accused of stopping christmas and diwali celebrations at a school has not been proven , a disciplinary panel has ruled .\n`` there is hardly anything in the world that some man can not make a little worse and sell a little cheaper , '' said victorian art critic john ruskin .\n-lrb- close -rrb- : sports direct shares dived 11 % after the retailer 's half-year results fell short of expectations .\nhearts ' return to the scottish premiership is `` good '' for the top flight 's profile , according to spfl chief executive neil doncaster .\neverton have agreed a deal with premier league rivals southampton that paves the way for ronald koeman to become their new manager .\nthe police watchdog has launched an investigation following the death of a 50-year-old woman .\nmae ` na bryderon wedi eu codi am fam a mab o borthaethwy ar ynys mon sydd ddim wedi eu gweld ers rhai dyddiau .\nthe dangerous dogs act has `` never really worked '' because it only deals with certain breeds , a tory mp has said as he called for a review of the law .\nfour silver coins dating from the 14th century that were found on county down farmland have been declared to be treasure at an inquest in belfast .\nportuguese international bruno alves says playing european football was not a factor in his decision to move to ibrox .\ndavid oyelowo has defended fellow british actor and friend , benedict cumberbatch , for using the term `` coloured '' during an interview .\ncormac sharvin made a superb start to his first european tour event as a professional shooting a four-under par round of 68 at the perth international .\nforward alan forsyth hopes playing in front of a home crowd will boost scotland 's chances at this month 's men 's eurohockey championships ii .\nrussia and qatar may have had to pay bribes to secure their world cups , sepp blatter 's former special advisor has suggested .\nit was the look between the midwife and her husband that victoria hughes remembers .\nan urgent review of how lifejackets are tested has been recommended following the deaths of the skipper and two crew of a crab boat that sank last year .\na fake video report about kenya 's election that is made to appear as if it is from the bbc 's focus on africa programme has been circulating on social media .\nbritain 's women beat new zealand 4-3 to secure a first win at the 2016 champions trophy , in what was their final match before the rio olympics .\nstewart murdoch has signed for dundee united the day after his contract was terminated a year early by ross county .\na man has been remanded after appearing in court in lapland accused of murdering his scottish girlfriend .\na new police chief has been installed in the afghan capital , kabul , ending days of confusion over the fate of incumbent gen zahir zahir .\na 14-year-old boy has been left with `` life-threatening '' injuries after being knocked down by a car .\na motorist who drove into four people killing a teenager has been jailed .\nmidfielder joe ledley believes the football association of wales will make the '' right decision '' on how best to mark armistice day in the world cup qualifier against serbia .\nplaid cymru has promised more cash for welsh public services , an extra 1,000 medical jobs and to scrap taxes for 70,000 small businesses .\ntogo honoured former coach stephen keshi , who died in june , by playing a tribute match on sunday .\na late rally from england 's katherine brunt could not prevent sydney thunder from beating perth scorchers to reach the final of the inaugural women 's big bash league .\npolice in pakistan have arrested a man accused of tying a young boy to a donkey which then dragged him to death .\na rig to be used in the decommissioning of the beatrice oil field has left invergordon on the cromarty firth .\nsteph curry scored 36 points to lead the golden state warriors to a 96-88 victory over the oklahoma city thunder and into the nba finals .\na man has been jailed for life for killing a rival gang member with an axe during a fight in a car park .\na 16-year-old boy and 21-year-old man have been arrested after a man was fatally stabbed .\nafrica has contributed its fair share of captivating headlines this year , but submerged in the coverage of migrations and mass killings , nigerian novelist and journalist adaobi tricia nwaubani picks out some of the quirkier stories you might just have missed .\nthe world leader of millions of muslims has condemned the westminster terror attack calling it an `` affront to the teachings of islam '' .\na head teacher who went to brazil on a cycling holiday during term time has been suspended .\nformer scotland manager alex mcleish has agreed to coach zamalek , the egyptian club have announced .\nnew figures from the northern ireland cancer registry show there has been a dramatic rise in the numbers of women being diagnosed with breast cancer .\ncarlos brathwaite hit the first four balls of the final over for six as west indies stunned england to win the world twenty20 .\nglamorgan chief matthew mott says he expects his side to secure vastly improved results this season .\nelisabet purve-jorendal was born in india and given away for adoption in 1973 when she was less than six months old .\nthe northern ireland health service is to receive an extra # 72m to help deal with pressures in the service .\na three-person panel has been appointed to carry out an investigation into de la salle college in west belfast .\nartificial intelligence can identify skin cancer in photographs with the same accuracy as trained doctors , say scientists .\nmae ofcom , y corff sy 'n cadw golwg ar ddarlledu , wedi gwahodd cynigion ar gyfer lansio gorsafoedd teledu lleol ym mangor a ' r wyddgrug .\njunior doctors should suspend tuesday 's strike action over pay and conditions while talks continue , the chief medical officer for england has urged .\na 72-year-old cyclist died after she fell from her bike after hitting a pothole in monmouth , an inquest heard .\na 27-year-old motorcyclist who died following a three-vehicle crash in aberdeen has been named by police as damian piotrowski .\nbritain 's lois toulson won european championship gold in the 10m platform as she finalises her preparations for next month 's world championships .\nthe rspca is urging cat owners to be vigilant after suspected cat poisoning deaths in powys .\nplans for a # 100m cable car system in cardiff are being explored by cardiff business council .\na video of leading philippines presidential candidate rodrigo duterte joking about a murdered australian rape victim has provoked a storm of protest .\nstudents at the open university are going to have their progress monitored by a set of algorithms to spot if they need any extra support .\nthe manx government is `` concerned '' about the safety of the sellafield nuclear site , a spokesman said .\na care trust that was told to improve its services has now been classed as `` good '' overall by health inspectors .\n-lrb- close -rrb- : wall street markets rose on friday , extending the previous day 's rally and bringing the s&p 500 into positive territory for the year .\ncafodd gwasanaeth tân ac achub y gogledd ei galw i bier fictorianaidd bae colwyn oddeutu 16:30 brynhawn gwener wedi adroddiadau bod tân wedi cynnau yn rhan o ' r pier .\njemima sumgong became the first kenyan woman to win the olympic marathon , beating eunice kirwa of bahrain .\nderby county captain richard keogh has signed a new three-year deal , keeping him with the club until summer 2019 .\nthe parents of a scottish woman murdered in mauritius have written a letter to her friends and colleagues there , thanking them for the love they had shown to their daughter .\nthe government needs to set out how it will devolve further fiscal powers to scotland following the rise of the snp , a former scottish secretary has said .\nfossils from the ocean floor are yielding clues to the indian monsoon millions of years ago .\nst johnstone moved within two points of fourth place in the scottish premiership by despatching 10-man inverness ct , who now sit bottom .\naustralia is racing to distance itself from rolf harris as the shamed perth-born entertainer starts a jail term for abusing young girls .\nthe european space agency -lrb- esa -rrb- says its comet lander , philae , has woken up and contacted earth .\nrussian officials speak of `` unplanned inspections '' - but human rights advocates call the recent raids on dozens of ngos a campaign of intimidation .\na new marketing body is to be set up to promote northern ireland 's food and drinks industry , in a bid to grow the agri-food sector and create more jobs .\niraqi security forces have recaptured mosul airport , a key part of the government 's offensive to drive the so-called islamic state -lrb- is -rrb- from the western half of the city .\ntwo people have been charged after a man was stabbed to death in his home .\na russian zoo has seen a rare addition to its animal family , welcoming a baby albino deer .\nin britain , argentine diego simeone is best remembered as the man whose reaction to a petulant kick by david beckham resulted in the england star famously being sent off during a world cup game in 1998 .\nofcom is to delay the start of its auction for another chunk of 4g spectrum , after threats of legal action from telefonica and hutchison , parent companies of o2 and three .\na man is being held in manchester on suspicion of terrorism offences .\nnew scottish labour leader kezia dugdale has promised she will decide the future direction of the party in scotland .\na man who intervened in a machete attack and a holidaymaker who shielded his fiancee from terrorists have been nominated for awards .\neight scots have been named in the british swimming team for this summer 's olympic games .\nmanchester city could recall yaya toure and nicolas otamendi , both of whom dropped to the bench in wednesday 's defeat by monaco .\ntwo men who dumped sheep carcasses , mattresses and other rubbish on waste ground in birmingham have been jailed .\nprince harry has said he no longer struggles with his royal role and wants to `` make something '' of his life .\na woman who was seriously hurt in a fatal hen party motorway crash is now helping other major trauma victims rebuild their lives .\na pizza company labelled a hospital a `` looney bin '' , leaving mental health workers `` horrified and distressed '' .\nbritish actress keira knightley is to make her broadway debut next year in a stage version of a famous french novel .\nbaltimore 's mayor has sacked the us city 's police chief , saying his leadership had become a distraction from fighting a `` crime surge '' .\nit 's crunch time in the democratic race , and if the past week is any indication , nerves are starting to fray .\nbritain 's men made it two wins from two in the olympic sevens as they edged past new zealand 's conquerors japan 21-19 in a thriller in their second match .\na toronto woman celebrating what she thought was a 40,000 canadian dollar -lrb- $ 39,428 ; # 26,000 -rrb- lottery prize had in fact won c$ 40m , officials have said .\nthe european commission has asked questions about the northern ireland executive 's decision not to charge homeowners for water .\nthe conjuring 2 has topped the north american box office chart in its first week of release , breaking a recent slump in success for movie sequels .\nac milan have signed striker mario balotelli from premier league champions manchester city for # 19m .\nthe exterior of a church known for its tall tower has been lit up for the first time in two years after it was flooded .\nthe international space station has become the first `` off planet '' addition to google maps ' street view facility .\nsentences for rapists and other sex offenders in england and wales could become tougher to recognise the long-term psychological harm they cause .\nwayne routledge struck twice as swansea city comfortably beat charlotte independence in the opening game of their pre-season tour to the united states at ramblewood stadium .\ngreece captain giorgos karagounis has retired from international football following his country 's elimination from the 2014 fifa world cup .\nresearchers have developed a way to `` print '' cartilage that could help treat joint diseases and sporting injuries .\nben carson is increasingly on the defensive over stories he has told about his troubled childhood in his autobiography , gifted hands : the ben carson story .\na priest has accused the archbishop of york and four bishops of misconduct after they `` failed to act '' on allegations he was raped by a vicar .\neurope is struggling with its biggest migration crisis since world war two , with unprecedented numbers of refugees and other migrants seeking asylum in the eu .\nlocal tribesmen have reportedly clashed with fighters from the so-called islamic state -lrb- is -rrb- in the is stronghold of fallujah in western iraq .\ntalks to prevent a further strike by southern rail conductors are to be held on friday .\nbury council 's chief executive has been suspended over claims he and others failed to follow procedures in their handling of a safeguarding case .\nnicola sturgeon has told how she was reduced to tears by photos of a dead syrian boy washed up on a turkish beach .\ntwo pro-gun us senators have called for changes to firearm laws , as the first victims of the 26 victims of newtown school shootings were buried .\nthe scottish premiership season commences this weekend and fans can expect to see a swarm of new faces run out for their side for the first time .\na meeting of the conservative party 's influential backbench 1922 committee - in effect all conservative backbenchers - has been brought forward by 24 hours to 17:00 bst on monday .\njosh taylor says he `` learned a lot about himself '' in his commonwealth super-lightweight title defence against south africa 's warren joubert .\na hitler lookalike has been arrested in austria on charges of glorifying the nazi era , local officials say .\nking george iv 's only known surviving grand piano has been returned to brighton 's royal pavilion after being bought at auction for â # 62,000 .\nthere are places where the surge of global tourism is starting to feel like a tidal wave .\na former teacher accused of sexually abusing boys in nottingham has been cleared on all counts .\noutline plans to double the size of dyson 's research centre in wiltshire have been approved by planners .\nwhen the giant tv screens at the likud election headquarters finally flashed up the results of the national exit polls , one-by-one there was a sudden tidal wave of sound .\na cyclist has died in a crash with an hgv in east london .\na florida mosque has been removed as a polling station for the 2016 election after local officials received complaints and threats of violence .\na security intelligence company has found the stolen log-in credentials for up to 47 us government agencies accessible online .\negyptian soldiers and police have raided the offices of non-governmental organisations -lrb- ngos -rrb- in cairo .\nteachers belonging to the national association of schoolmasters and women teachers are to stage a one-day strike over pay , workload and job insecurity .\nthe leader of western isles local authority , comhairle nan eilean siar , has said the rig transocean winner could be scrapped on the islands .\nireland 's slow start to their world cup quarter-final against argentina proved their downfall , head coach coach joe schmidt has admitted .\nburton albion are set to re-sign teenage midfielder hamza choudhury on a season-long loan from premier league champions leicester city .\npicture the scene inside the bbc 5 live studio : a millionaire owner of a now managerless super league club , a highly rated out-of-work coach keen for a return to the sport and an iconic player from a rival club that the owner wants to sign .\nrenovations have started on a railway station and a signal box dating from the 1800s .\ntwo thirds of welsh pupils who took gcses got a * to c grades , according to this year 's results .\nmany european commentators have reacted to london mayor boris johnson 's decision to back britain leaving the european union , seeing his intervention as a problem for prime minister david cameron .\nwest african leaders have given yahya jammeh a final opportunity to relinquish power after senegalese troops entered the gambia .\nscientists are studying dolly the sheep 's `` siblings '' in order to study the health of cloned animals - and resolve a puzzle over whether they age normally .\nthe revenant has triumphed at this year 's golden globes , winning the night 's most coveted prize for best dramatic film .\nistanbul basaksehir have announced the signing of cameroon defender aurelien chedjou on a three-year deal .\nlabour 's leadership is heading `` in the opposite direction to where voters are '' on big issues , an ex-minister says .\na search team looking for a missing tourist have found a man 's body at the foot of cliffs in cornwall .\nscientists from harvard medical school have discovered a way of turning stem cells into killing machines to fight brain cancer .\nnorthampton saints full-back ben foden believes his rivalry with harlequins ' mike brown can benefit both players and england .\nmk dons have re-signed brighton & hove albion midfielder jake forster-caskey on loan for the rest of the season .\nnottingham forest came from behind to draw with preston at the city ground .\nfifa president sepp blatter and uefa boss michel platini have been suspended for eight years from all football-related activities following an ethics investigation .\na burst water main has caused flooding outside a south-west london station .\na tree surgeon has died after reportedly injuring himself with a chainsaw in south london .\ngwent police officers are to become the first in england and wales to be trained on the danger posed by people who stalk their ex-partners .\nthe new offensive launched by syrian government forces in the countryside south of aleppo has shed light on iran 's growing role in syria 's civil war .\nleicester city fans were involved in further clashes with spanish police ahead of their champions league tie against atletico madrid .\na golden labrador has been named easyjet 's most frequent flying dog by the budget airline .\nliverpool manager jurgen klopp says he gave his players the chance to opt out of monday 's match at sunderland if they were too tired - but nobody wanted to .\nshe is best known for period dramas - having been seen most recently in war and peace and downton abbey .\na register of patients in england with breast and other cosmetic implants has been set up to allow them to be traced in the event of any safety concerns .\na man has been stabbed to death in mottingham in the early hours of boxing day .\nan armed robber dressed in a `` hi-vis '' jacket took at least â # 10,000 from a worker delivering cash to an atm in the east end of glasgow .\nthree people were killed when a `` monster truck '' ploughed into a crowd of onlookers at an annual motor show in the east of the netherlands .\nprince charles has joined tributes to a scottish community whose loss of lives in world war one may have been greater than previously thought .\neach day we feature a photograph sent in from across england - the gallery will grow during the week .\nthe family of a murdered belfast man say they feel let down by the judicial system after news that his killer is being prepared for release from jail .\nas we assess where this ryder cup will be won and lost , rory mcilroy correctly and succinctly sought to play down his influence on the outcome at gleneagles this week .\na man has been jailed for trying to scare people with an imitation gun near two worthing schools .\nplans to build a new nuclear power plant at hinkley point in somerset have been recommended for approval following a european commission investigation .\ndagenham & redbridge have been relegated from league two after losing at leyton orient , ending their nine-year stay in the football league .\nten-man portugal struggled without captain cristiano ronaldo as they fell to a surprise defeat in a friendly at home to the cape verde islands .\nturkey has lifted a ban on policewomen wearing the islamic headscarf .\na dog has been rescued by firefighters after getting wedged in an electric reclining armchair .\na mother who called an ambulance when her baby suddenly started struggling to breathe tells bbc news how hospital x-rays came back clear and doctors diagnosed tonsillitis - but then , after two weeks , an operation uncovered a tiny plastic angel trapped in his oesophagus .\nstriker lisa evans admits it will be an emotional milestone if scotland women maintain their euro 2017 qualifying form and reach a first major finals .\na motorcyclist who was injured in a crash in ballymartin , county down , at the weekend has died in hospital .\na man aged in his 70s and his dog were pulled from a car that had plunged into a lake .\ndavid beckham 's plans to create a team in miami have edged a step closer after a site for the franchise 's stadium was approved by major league soccer .\na multi-million pound sixth form college centralising post-16 education in flintshire has officially opened its doors .\nceltic may be without their two main strikers for the champions league qualifier against rosenborg in glasgow on wednesday .\nus scientists have amassed `` planetary-scale '' data from people 's smartphones to see how active we really are .\nthe duchess of cambridge has shown off her tennis skills during a practice session with judy murray .\nan elderly woman has been hit with a crowbar during a robbery at a church in portadown , county armagh .\nfriends of a computer programmer missing in brussels since the bomb attacks in the belgian capital have said they are desperate to find him .\nthe chief executive of celtic energy has said there needs to be collaboration between companies , councils and government to resolve the problem of opencast mining sites which need restoring .\na borders town is facing a 20-week road closure as work continues on its # 31.4 m flood protection scheme .\non 23 august 1994 , the klf - one of britain 's most incendiary bands , in more ways than one - burned # 1m on a remote scottish island .\nbayern munich edged closer to a fourth successive bundesliga title as they restored their eight-point lead with victory at stuttgart .\nmaxine peake , matt lucas and elaine paige are heading the cast of russell t davies ' adaptation of a midsummer night 's dream .\npro-russia activists have stormed several official buildings in the eastern ukrainian city of luhansk .\nformer peterborough united and cambridge united manager chris turner has died , aged 64 .\nreigning champions new zealand are into their fourth world cup final after slogging past south africa in another twickenham epic .\nenglish football could be heading for its biggest shake-up since the creation of the premier league in 1992 .\na prisoner is to go on trial accused of attacking a doctor at a hospital with a razor blade .\na polish government spokeswoman has called for former prime minister donald tusk to be put on trial for his handling of the 2010 air disaster in which president lech kaczynski died .\nmanager brendan rodgers is sure celtic can exploit the wide open spaces of hampden when they meet rangers in sunday 's league cup semi-final .\nthe retailer american apparel has detailed sexist and racist misconduct claims against former boss dov charney in a court filing .\nmaria balshaw wants to make the tate `` the most culturally inclusive institution in the world '' , which she thinks it is far from being at the moment .\nthe number of murders in scotland has fallen again , according to new figures .\nschools in los angeles are preparing to reopen after being shut down over an email threat , in a move queried by police officials in new york .\nrussia has said it will carry on bombing rebel-held eastern aleppo in syria , defying us demands to stop .\nanimal rights campaigners in china have handed in a petition with 11 million signatures calling for an end to an annual dog-eating festival in the south-west of the country .\nscunthorpe midfielder neal bishop has signed a one-year contract extension .\na care home has been ordered to raise its standards after the industry watchdog criticised areas including infection control .\nwork is under way to repair a burst water main in the republic of ireland which has left 50,000 customers without water for six days .\na paramedic has been suspended for eight months after he squeezed a colleague 's breast and inappropriately touched her bottom .\n`` if you had to describe cancer i would say it 's an evil genius . ''\npremiership bosses have said cillian willis ' legal action against sale could have wider repercussions for rugby .\na report has found festivals supported by a three-year council investment strategy have generated # 17.6 m for the dumfries and galloway economy .\nrussia 's defence ministry says two of its navy destroyers forced away a dutch submarine to stop it spying on an aircraft carrier in the mediterranean .\ntwo years ago , huge earthquakes hit the south asian country of nepal .\nthe new miss usa beauty pageant winner has sparked controversy by declaring that healthcare was a `` privilege '' , not a right .\nengland captain alastair cook says australia remain favourites to claim the ashes despite his side 's superb first-test victory in cardiff .\nmanchester city have had an # 18m bid for defender jonny evans rejected by premier league rivals west brom .\nmae cwest wedi clywed sut cafodd pensiynwraig ei gwasgu i farwolaeth o dan ei char , wedi i neb fethu a dod o hyd iddi am hyd at naw niwrnod .\ngeneral motors -lrb- gm -rrb- has announced that it will stop making cars for the indian market by the end of 2017 .\nfrenchman alexander levy extended his lead to six shots on day two of the fog-delayed european open in germany .\nthe family of murdered sinn féin official denis donaldson have said they do not believe the provisional ira killed him , or that his shooting was authorised by gerry adams .\na body has been found in the water off the isles of scilly .\na cyclist has been seriously injured in a suspected hit-and-run during the early hours of saturday in brighton .\na new # 12m fund to help people who face losing their jobs in oil and gas to gain new skills and find new work is being set up by the scottish government .\nscotland 's managers have nominated aberdeen 's derek mcinnes , brendan rodgers of celtic , partick thistle 's alan archibald and morton 's jim duffy for the manager of the year award .\nmexico officials say they have arrested six key people who allegedly helped fugitive drug cartel leader joaquin guzman escape from jail in july .\ndonald trump has called off a rally in chicago after protests against the republican presidential front-runner led to violent clashes .\na japanese court has paved the way for two more of the country 's nuclear reactors to be restarted .\nuk intelligence agencies say they are recruiting more female staff - and are targeting middle-age and `` mid-career '' women for jobs .\nsouth africa 's government has proposed a national minimum wage of 3,500 rand -lrb- $ 242 ; â # 199 -rrb- a month .\na bullet found in the exhumed body of a man killed in shootings in ballymurphy in 1971 was not sent for forensic examination for three months .\nformer nottingham forest player john mcgovern has cautioned against placing too much expectation on oliver burke following his # 13m move to germany .\nrussell brand has tweeted a picture of the business card of a senior daily mail reporter , encouraging his 8.7 million followers to contact him .\nthousands of `` love padlocks '' on a roman bridge are being removed with bolt-cutters in order to protect the ancient structure .\na woman has died following a collision involving three vehicles in the highlands .\nan estimated 63,000 properties in north lancashire were hit by a power cut , electricity north west has said .\nkenya 's president uhuru kenyatta has said that money transfer firms will be unbanned , once the central bank unveils new guidelines for their activities .\na man in his 20s has died after being hit by a car while crossing a road in kent on christmas eve .\nospreys moved to the top of the pro 12 table with a thumping victory over benetton treviso at liberty stadium .\nbarcelona boss luis enrique said they `` paid the price '' for missing chances in their dramatic draw with real madrid .\ncrofting minister aileen mcleod has said the government is willing to look at the potential of reintroducing loans for building croft houses .\nlondon 's science museum has launched a kickstarter campaign to fund the rebuilding of one of the first robots .\na student from bristol is taking legal action after a picture of her friend was `` misrepresented '' by an italian political party campaigning against transgender education in schools .\nan mp has urged the uk government not to `` pull the plug '' on plans for a # 1bn tidal power project in swansea .\nnine dogs including seven puppies have been stolen from a garden in west lothian .\npremiership side sale sharks will sign scotland and glasgow back row forward josh strauss on a three-year deal from next season .\na us military commander in baghdad has openly contradicted the iraqi army 's claim last week that it had liberated the key city of falluja and driven out is militants from most of the city .\nceltic defender mikael lustig insists ronny deila is `` not to blame '' for the club missing out on champions league football under the manager 's tenure .\nformer celebrity publicist max clifford `` gyrated '' in front of a 17-year-old girl , a court has heard .\nthe uk should not try to play different eu states off against each other or pursue `` special discussions '' in key areas , a top eu official has warned .\nturkey has blocked the social networking site twitter following prime minister recep tayyip erdogan 's vow to `` wipe out '' the service .\nchile 's government has declared a state of emergency in a central region struck by a powerful earthquake .\ndavid natzler has been named as the next clerk of the commons , ending a controversial process which pitted speaker john bercow against some mps .\ndocumentary side by side looks at the history of film-making and whether the advent of digital technology spells the end of celluloid .\nearnie shavers said modern heavyweights `` were not fit to carry muhammad ali 's gym bag '' , on the occasion of his old rival 's 70th birthday .\ngateshead striker danny johnson has signed a two-year contract extension with the national league club .\nthe shortlist of companies bidding to run rail networks in the north of england has been announced .\nukraine 's president viktor yanukovych and his russian counterpart vladimir putin have held surprise talks on a `` strategic partnership treaty '' .\na 16-year-old boy has been kidnapped , assaulted and robbed in an attack linked to suspected `` honour violence '' in blackburn .\ntraitors , jackals and vile liberals are just a few of the choice descriptions of russia 's opposition emerging from chechnya in recent days , in a war of words that threatens to escalate .\na chronology of key events : .\nthe bbc has confirmed the `` global '' version of its iplayer on-demand service will close next month .\nthe company behind the uk 's first horizontal fracking operation has announced six `` commitments '' which it claims will ensure lancashire benefits .\nlabour 's sadiq khan has been elected mayor of london , becoming the city 's first muslim mayor .\nleague one side fleetwood town have signed bristol city striker wes burns on a youth loan deal until 8 may .\na shopping complex in county tyrone has been flooded , causing stock damage thought to be worth millions of pounds .\nmadonna 's vogue did not break copyright law , even though it contained a snippet of another artist 's song , a us court has ruled .\na woman has been taken to hospital following a crash in cardiff in the early hours of monday morning .\na neath port talbot man has been banned from keeping animals after he was filmed swallowing a live goldfish .\na delegation of scottish companies is heading to myanmar this week in an effort to tap into opportunities in the country 's oil and gas sector .\nfor a man often described as capricious , tyson fury 's chaotic reign as world heavyweight champion was strangely predictable .\na group of italian scientists convicted of manslaughter for failing to predict a deadly earthquake have had the verdict quashed .\na # 30m sea defence project in essex is being jeopardised by questions over the materials being used , the leader of tendring district council has said .\nworld number one andy murray gained revenge for last thursday 's defeat by albert ramos-vinolas in monte carlo by beating the spaniard to reach the last four of the barcelona open .\nthe arts industry is suffering from a `` class-shaped hole '' , a labour party inquiry says .\na man charged with murdering his wife at a care home has died before his court case could be heard .\nus consumer confidence fell sharply this month , a closely-watched report has suggested .\nscots from all walks of life have been recognised in the queen 's birthday honours list .\nxiao meili is a well known women 's rights activist in china .\nscottish airport operators have said they are dismayed and disappointed that the control of air passenger duty -lrb- apd -rrb- will not be devolved to scotland .\nhideki matsuyama of japan became the first asian winner of a world golf championships event as britain 's rory mcilroy finished fourth .\nan air france passenger jet has made an emergency landing at prestwick airport after fumes were detected on board .\nit is not known what the state of the nhs or education in wales will be 2020 if the conservatives win the general election , the first minister said .\nthe owner of a farm where a microlight crashed killing two people has said the men had `` no chance '' of survival .\na man accused of claiming almost â # 10,000 after allegedly pretending his family died in the grenfell tower fire has denied two counts of fraud .\nlatest figures show in the year after their baby is born , 13 % of women suffer from post natal depression .\na council plans to employ its own staff to help young people with mental health problems .\nrapper dizzee rascal has been announced as one of the headline acts at this year 's wickerman festival .\nan alpaca which was seriously injured in a dog attack has been put down , its owner has said .\nrussian president vladimir putin has met france 's far-right presidential candidate marine le pen in moscow , saying she represents a `` fast-growing element '' of european politics .\nireland have progressed to the super six stage of the women 's world cup qualifier after finishing third in their group in sri lanka .\nan mp who beat an airline employee repeatedly with a slipper has been banned on five major indian airlines .\nbelgium 's penchant for extravagant motorway lighting is suddenly in the spotlight thanks to pictures posted by french astronaut thomas pesquet .\nnorthern ireland strike dean shiels has signed for canadian north american soccer league club fc edmonton .\nboys could be allowed to wear skirts at a north london private school if a plan for gender neutral uniforms comes in .\nindia is introducing legislation to ban maps or satellite images of the country unless they are approved by government .\ntwo schools have been closed after a burst water pipe flooded the area with mud and silt .\nkelly sotherton says athletics chiefs should consider tweaking events rather than rewriting existing world records .\nthree people have been killed and seven injured during a shooting at a factory near the swiss city of lucerne , police have said .\nnational theatre boss rufus norris has said he hopes to stage more work that will focus on the issue of disability .\nformer darts world champion eric bristow has lost his role with sky sports after suggesting football abuse victims are not `` proper men '' .\nbirmingham city council has elected a new leader - with the winning contender clinching the position by a single vote .\nczech cyclist roman kreuziger , fifth in last year 's tour de france , has been cleared of any doping offence by his national olympic committee .\nolympic hero ben ainslie has outlined his plans to win the america 's cup .\ntributes have been paid to a man who died after he went into the sea off the kent coast to try to rescue his dog .\nimagine being so good at something that at the age of 11 you 're beating players who are the best in the country .\nthe number of blind people across the world is set to triple within the next four decades , researchers suggest .\n`` it 's all about taking an opportunity in a crisis , '' says the outgoing conservative leader of melton borough council .\nformer england batsman kim barnett has been named derbyshire director of cricket in the latest coaching restructure at the division two club .\npolice investigating the murder of a man who was found seriously injured on a glasgow street have traced the driver of a car seen near where he was found .\nuk consumers using their mobile phones in europe will see reductions in their bills from saturday .\nmanchester united manager jose mourinho says certain members of his squad need to realise the importance of winning .\nlabour 's barry coppinger has been re-elected as cleveland police and crime commissioner .\nbarcelona kept real madrid at bay to retain the la liga title as silverware was dished out around europe .\nformer world number one victoria azarenka will miss the us open because of an `` ongoing family situation '' .\nleicester have been fined # 20,000 by the football association over the conduct of their players during a game against aston villa .\nthree-time winner greg lemond believes lance armstrong was only capable of a top-30 tour de france finish `` at best '' without performance-enhancing drugs .\nqantas chief executive alan joyce has urged australians to support same-sex marriage in a looming postal vote .\nospreys have signed sale sharks ' former south africa tight head prop brian mujati until the end of the season .\nthe 300th anniversary of the birth of renowned landscape gardener lancelot `` capability '' brown is being celebrated with a tree-planting ceremony .\nspain 's sergio garcia opened up a three-shot lead in the dubai desert classic as the delayed second round was completed on saturday morning .\nfour people have been rescued after their yacht got into difficulty off the county antrim coast .\nfacebook 's chief executive has said he is sympathetic to apple 's position in its clash with the fbi .\nthe gambia 's decision to withdraw from the commonwealth 48 years after joining is something to `` very much regret '' , the uk foreign office has said .\na chinese government-linked company has pleaded guilty to illegally exporting high-performance coatings from the us to a nuclear power plant in pakistan .\naston villa have signed czech republic striker libor kozak from lazio in a deal worth about # 7m .\nmake your move has caught up with bbc radio 5 live 's anna foster , who has completed week one of the couch to 5k challenge .\na public school teacher who groped an 18-year-old girl has been given a nine-month suspended sentence .\nscottish football enjoyed an increase in attendances at league matches of over 12 % last season .\na motorist whose â # 40,000 jaguar car was stolen from his driveway has said he is `` astounded '' after police said they would be closing the case .\nnorth korean scientists have invented a hangover-free alcohol , according to the pyongyang times .\nin this week 's scrubbing up opinion column , prof mayur lakhani chair of the dying matters coalition , urges doctors to be more open and frank about preparing patients and their families for the end of life .\nengineers have been doing the tricky job of slotting in the last section of a huge undersea tunnel in south-east asia .\na vigil has taken place in cardiff bay for french citizens and others following terror acts in paris which left 17 people dead in three days .\njohn andrew 's late try secured 14-man ulster a crucial win against newport gwent dragons .\nfabio capello 's future as russia manager is in doubt with the nation 's football chief due to `` discuss '' whether to sack him .\nan egyptian court has again delayed a verdict in the retrial of three al-jazeera journalists convicted of aiding the banned muslim brotherhood .\nan actress who appeared in the oscar-winning film slumdog millionaire is to attend a special screening of the movie in kingussie later .\npost office workers will stage five days of strikes from monday in a continuing dispute over jobs , pensions and branch closures , their union says .\nukraine 's government forces and pro-russian rebels say they have begun withdrawing weapons from the line of contact in the east of the country .\nall of wales ' five main parties have published their welsh general election manifestos .\nportuguese are celebrating the fact that an intimate love ballad in their language conquered a eurovision song contest audience for the first time .\njournalists have been accused of treason ; a chief prosecutor fired ; and we have witnessed the unedifying spectacle of government ministers scrambling to get out of the firing line after popular outrage .\ntwo police community support officers have been jailed for using force computers to try to frame an innocent man for attempted murder .\nthe price of everyday essentials such as food , drink and clothing would rise if the uk votes to leave the eu , former retail bosses have warned .\ncharlie pitcher says people who call him `` crazy '' do not know him very well .\na referendum on an elected mayor for bath and north east somerset will be held in 2016 , after a petition reached the threshold of 6,437 votes .\nsupporters of the closed charity kids company are taking part in a march in london .\nfour health boards which are due to see their overall budget deficits triple in size will not be bailed out , the welsh government has said .\nmobile phone signal blocking technology will go live in scottish prisons within weeks , justice secretary kenny macaskill has announced .\nsubstitute stephen o'flynn 's final minute diving header salvaged an unlikely point for nine-man crusaders against coleraine at ballycastle road .\nten soldiers who died in world war one and whose bodies were found in france five years ago have been named after dna analysis of samples from relatives .\na couple from worcestershire have died on holiday in morocco .\nevery pupil in england will be tested on their times tables before leaving primary school , under government plans .\ndistance runner jess andrews admits she `` still ca n't believe '' she has qualified for the 10,000 m at the rio olympics .\na teenage girl has added a new chapter to the politicians-eating-things file after filming david cameron tucking into a tube of paprika pringles .\nmansfield maintained their quest for a league two play-off spot with victory over struggling morecambe at the globe arena .\ndefending champions new zealand hit top gear to demolish france and set up a semi-final against south africa .\nthe french operations of the us cosmetics giant avon products are to be closed by the end of the month .\naround the world , and across different industries , the internet has cut the cost of doing business .\nfor the first time in 70 years , adolf hitler 's nazi manifesto mein kampf is to be available to buy in germany .\ngeorgia head coach milton haig believes his side merit a place in an expanded six nations championship , and says tier two nations are `` fighting for scraps '' in the battle to earn fixtures against top opposition .\nthe us is trying to spare a jihadist group in its attempts to unseat syria 's president bashar al-assad , russia 's foreign minister has told the bbc .\na man who helped his murderer ex-girlfriend bury her boyfriend 's body in a newcastle park has been jailed .\nlaura muir will bid to become double european champion next month in the 1500m and 3000m at the european athletics indoor championships .\nenglish actress cush jumbo says british black actors are being given roles in america over their us counterparts because `` we are better '' .\nexeter chiefs trio kai horstmann , julian salvi and ollie atkins have signed new contracts with the club .\na more powerful earthquake has rocked the southern japanese city of kumamoto in the middle of the night , a day after an earlier tremor killed nine people .\nofficials have said they will push to get the welsh name of a gwynedd beach on maps .\nwe are now putting carbon into the atmosphere at a rate unprecedented since at least the age of the dinosaurs , scientists say .\nthe pancreas can be triggered to regenerate itself through a type of fasting diet , say us researchers .\nborrowers are applying for personal loans mostly to consolidate existing debt or to buy cars and bikes , a lender has suggested .\nbelfast harbour has submitted a planning application for what would be a third major waterfront office block .\nthe fiancã © of a children 's author considered throwing himself off a cliff two months before he was charged with the killing her , a court has heard .\na former financial controller has admitted stealing more than # 440,000 from a hospital charity .\nthe world alternative games and bog snorkelling championships take place in powys from friday .\ncanadian pop star justin bieber has pleaded no contest to misdemeanour vandalism in connection with the egging of his neighbour 's home and has been sentenced to two years ' probation .\nthe aa is calling on councils to `` get to grips '' with road maintenance after a survey found 39 % of uk drivers reported pothole damage in the past two years .\na jogger who died when he was hit by a car has been named by police .\nthe mayor of an east london borough has been accused of `` corrupt and illegal practices '' , at a special court hearing .\nfootball the beautiful game - but without the rules the game we know and love would be ugly .\na van used by retired world champion boxer floyd mayweather has been set on fire , police said .\nthe daughter of a man who died after a hospital failed it its `` duty of care '' said lessons have not been learned .\nhospitals should let more dogs and other animals on to wards and even into operating theatres to help patients , the royal college of nursing says .\nmotherwell will not ask the spfl to postpone saturday 's premiership match with aberdeen , despite the outbreak of a virus at fir park .\nthe rspca has issued a warning against what it says is a growing trend for keeping raccoon dogs as pets .\nthe rugby players ' association has `` unanimously rejected '' proposals for an extended 10-month premiership season .\nbank of england governor mark carney has defended his action to mitigate the impact of brexit .\nmidfielder james maddison has signed a contract which keeps him at norwich city until the summer of 2021 .\nthe paris climate agreement could make millions of forest dwellers homeless , according to a new analysis .\nireland fought back from two goals down to beat germany 4-2 and secure the hamburg masters title on sunday .\nthe company that conducts most of america 's rocket launches has released details of its next generation vehicle .\nshrewsbury town have signed teenage reading defender zak jules for an undisclosed fee on a two-year contract .\nthe dismantled dismaland theme park is on its way to a refugee camp in france after banksy donated it to a group of bristol volunteers .\na woman who died after eating a sorbet on holiday in greece had warned her travel agent and hotel about her food allergies , an inquest has heard .\ntalks about a possible takeover of alliance trust in dundee by the asset fund linked to the rothschild banking dynasty have been called off .\nceltic were once again the biggest movers and shakers in the scottish premiership during january , finishing with a flamboyant flourish by trading in a moody turk who has been a flop in glasgow for a moody englishman who made his name playing for turkey .\na parisian woman is taking the french state to court for failing to protect her health from the effects of air pollution .\njordan rhodes scored twice , including an injury-time winner , as championship leaders middlesbrough came from behind to beat already-relegated bolton .\nformer world champion jenson button says he will retire from formula 1 after sunday 's abu dhabi grand prix .\none of south korea 's most controversial mergers has been given approval by shareholders of the construction company samsung c&t .\ntwo councils acted unlawfully by letting chief executives opt out of a pension scheme to avoid potential tax payments , the wales audit office says .\nborder collies may be an effective weapon against e. coli infections at the seaside according to a new study .\ntwo brothers have been jailed for killing a man with a samurai sword after a drugs-related robbery in east ayrshire turned into a `` bloodbath '' .\na plaque with the names of those from merseyside who lost their lives fighting in the spanish civil war has found a permanent home in liverpool .\nadidas , the iaaf 's biggest sponsor , has announced it is ending its sponsorship deal with athletics ' world governing body three years early .\ncrewe alexandra manager steve davis says the future of the club looks very healthy as six academy graduates are offered professional contracts .\nharlow is celebrating the 70th anniversary of being designated a new town .\nof his last 30 matches in 2016 , andy murray won 28 and lost just two .\nspiralling social care costs can not be met by increasing council taxes in wales , ministers have ruled .\naugmented reality app blippar has been updated to recognise faces as well as objects .\nunder a huge semi-opaque dome and with heavy security in attendance , visitors to the paris air show peer at a strange looking shape .\nenvironment minister mark h durkan had no legal power to approve a major new planning blueprint for greater belfast , a high court judge has ruled .\nengland produced a flawless performance to beat pakistan by 330 runs in the second test , says former captain michael vaughan .\na coventry city fans ' trust says disruption at saturday 's defeat by northampton was caused by `` desperation '' with the club 's owners , sisu .\nsale were overpowered as clermont auvergne clicked into gear in the second half to earn a european rugby champions cup bonus point .\nthe newly-crowned largest container ship in the world has arrived at felixstowe for its first visit to the uk .\nthe owners of dunsfold park aerodrome , which is home to the bbc 's top gear , have lost their latest fight for unrestricted flying .\nserial killer levi bellfield has denied confessing to the abduction , rape and killing of 13-year-old milly dowler .\nthe girlfriend of a man behind a deadly siege in a sydney cafe has been jailed for murdering his ex-wife .\ngrassroots sport needs more money to ensure more people are physically active , according to welsh football 's development arm .\nhibernian 's neil lennon believes scott brown retired too soon from scotland duty and still has plenty to offer now he has decided to return .\nrepublican presidential nominee donald trump has suggested that the november election could be `` rigged '' .\nactor gerard depardieu has hailed russia 's decision to grant him citizenship , following a tax row with the government in his native france .\na 35-year-old man has been charged with murder following the death of a man in bathgate .\nbiologists are calling on the public to report sightings of rabbits and hares as part of a conservation effort .\nthe department for regional development -lrb- drd -rrb- is to reinstate safety measures at a fatal accident black spot on a main road in belfast .\nmoney set aside for promoting physical activity and healthy eating in schools should not be used to `` plug a black hole in funding '' , councils say .\nan average of more than 21 cannabis factories were found daily in britain last year , police chiefs say .\neast midlands airport -lrb- ema -rrb- will shut later for the first of seven consecutive weekends to resurface the runway - a first for a uk airport , bosses have said .\nceltic 's on-loan attacker patrick roberts has no regrets over choosing to stay with celtic for the scottish cup final rather than playing for england at the under-20 world cup .\nthe grand sandstone building which helped to inspire the peter pan story has known a few adventures of its own over its 193-year history .\nthe african champions zambia have been handed a tough opening match at the fifa under-20 world cup in may , following wednesday 's draw in south korea .\nscotland manager gordon strachan is to announce two squads this week for the forthcoming friendly internationals against the czech republic and denmark .\nvirgin money boss jayne-anne gadhia has been appointed to review the student support system in scotland .\nan essex town buoyed by the popularity of a reality television show needs to plan for when the `` bubble bursts '' , businesses have been told .\nfor more than a decade ahmed patel has lived with the legacy of the 7/7 attacks .\norkney has elected its first ever scottish greens councillor , while the snp has gained its first representative in shetland .\na man in his 40s has been assaulted in belfast city centre in what police have said was a racially motivated hate crime .\nthe most senior woman bishop in the church of england has formally begun her new role as the bishop of gloucester .\nfirst minister nicola sturgeon has promised a continued focus on improving attainment in education during a visit to the scottish borders .\na pleasure boat involved in a crash that injured nine tourists had steering problems , a report has said .\nfive-time olympic medallist katherine grainger has revealed how her grounding in karate at school has had a profound influence on her rowing career .\nyoutube has warned it will clamp down on users who buy ` fake views ' to make their videos look more popular than they really are .\na british man has survived a fall from the 15th floor of a building in new zealand , local media report .\nthe austrian government has said it will sharply reduce the number of asylum applications it accepts this year compared with 2015 .\nresidents in swansea are to be given their say on plans for more than 17,000 new homes across the city .\nunheralded american charley hoffman defied tricky blustery conditions to take a four-shot lead after day one of the 2017 masters at augusta national .\nthe wales green party has launched its campaign for the local elections , pledging to `` rebuild '' communities .\nrussia 's defence ministry has accused the family of turkish president recep tayyip erdogan of being directly involved in the trade of petroleum with the islamic state group .\nmps have backed the government 's new spending rules by 320 to 258 votes after a heated debate in the commons .\na 13-year-old schoolboy who disappeared after a fellow pupil and a teacher were attacked with a knife has been arrested , west mercia police said .\na new king has been crowned world conker champion after taking part in the annual games for the first time .\na spanish court has dismissed a fraud and corruption case against football superstar neymar and his father .\neu foreign ministers have agreed on a blueprint for sending hundreds of european troops to the central african republic to help quell violence there .\na senior labour mep has announced plans to stand down from the european parliament later this year .\na civilian cargo aircraft has landed safely after being escorted into prestwick airport in ayrshire after suffering technical problems with its communications equipment .\nthe united nations envoy for libya has proposed the formation of a national unity government , after months of difficult talks .\nchinese shares have risen and european markets have opened higher at the end of what has been a torrid first week of the year .\nan ex-ira man has won the first step in a legal battle to stop police accessing interviews he gave to a us university about his paramilitary activities .\noil prices have fallen again , sinking below $ 28 a barrel .\nus president donald trump has withdrawn his healthcare bill after it failed to gain enough support to pass in congress .\nthe public prosecution service and the psni have launched a legal bid to gain access to all interviews and notes by a former ira member who was one of the main researchers for a troubles history project at boston college .\nin the late 1970s and early '80s , photographers martha cooper and henry chalfant were both documenting the work of graffiti artists on the subway system of new york .\nchelsea manager antonio conte says it would be a `` very big mistake '' for his side to think they are close to winning the premier league title .\nformer british number one laura robson will play at next month 's grass-court wimbledon warm-up event in nottingham .\nbath full-back anthony watson faces two rugby football union charges after being sent off in the loss to saracens .\nwidnes vikings scrum-half joe mellor has signed a new three-year contract , keeping him with the club until 2019 .\nmore than 3,000 people have been evacuated in buses and ambulances from a besieged rebel-held enclave in the syrian city of aleppo , officials say .\ntwo men have been assaulted by an armed gang in south belfast .\nap mccoy won his first race of his final cheltenham festival on day three , riding uxizandre to victory in the ryanair chase .\nthousands of zimbabwean widows are forced out of their homes by their in-laws each year .\nmae angen stopio ' r `` breuddwydio dwl '' am annibyniaeth i gymru yn ôl ac llafur , sy 'n dweud nad yw 'n bosib yn economaidd .\nkidderminster chairman rod brown says he wants interim head coach colin gordon to take the job permanently .\na woman has been charged with attempted murder after a 24-year-old man was found critically injured at a flat in north belfast earlier this week .\nthe bomber behind a deadly blast in the turkish capital ankara was turkish-born , security officials say , not from syria as the government initially said .\na woman allegedly murdered by her ex-boyfriend said police would not respond to her fears about him until she had been stabbed , a court has heard .\na dean at the university of texas is stepping down over a new state law which will allow concealed handguns to be carried on university campuses .\nross county have signed winger jim o'brien on a permanent deal following a loan spell last season .\nmoussa dembele says he is happy to continue his football education with celtic despite being linked with chelsea during january .\nukrainian president viktor yanukovych and opposition leaders have signed a deal to try to end the political crisis in the country .\ned miliband has stepped down as labour leader after his party 's disappointing general election showing .\na man has been charged with the murder of a man found fatally injured in parked car in oxford .\nwhen i reported last year about the urgent need for blood donors i received many comments from gay men that they would like to donate but were unable to .\nswansea city head coach paul clement says centre back alfie mawson has a bright future ahead of him at the club .\nthe elton john aids foundation has offered to finance hiv testing in lambeth , the victoria derbyshire programme has learned .\nsolar storms are a natural occurrence caused by high-energy particles hitting the earth .\nvictims of mesothelioma , an aggressive cancer caused by exposure to asbestos , are to receive an average of # 123,000 compensation from a new fund .\nan elderly woman has died after being hit by a tipper truck .\nbritish number two kyle edmund came through two tie-breaks to beat ukraine 's illya marchenko and reach the second round of the european open .\nfor the first time in more than 50 years a steam train will be running a regular service in england , but only for three days .\nsomali authorities have released a video showing a passenger being given a laptop they say contained a bomb that blew a hole in a passenger plane .\nfamilies of two men who died in prison have brought a high court case over the `` exceptionally '' high rate of self-inflicted deaths there .\nplans to create a huge lightning bolt memorial to david bowie in south london have been scrapped after a crowdfunding campaign fell short of its target .\ndrivers are being urged to take extra care , as sub-zero temperatures stretched into the christmas weekend .\nmore than half of people in south yorkshire and north derbyshire are worried about the cost of christmas , a survey suggests .\nthe new glasgow school of art building is being officially opened across the road from charles rennie mackintosh 's masterpiece .\ntributes have been paid to a long-serving labour councillor who has died following a short illness .\neverton 's much-changed side fell to a europa league defeat as krasnodar 's ricardo laborde took advantage of a joel robles error to score the winner .\nmanager kevin nicholson says torquay united 's new owners must earn the trust of the national league club 's fans .\na shortage of hiv testing could undermine global efforts to diagnose and treat people with the infection , warn experts from the world health organization .\nshares of danish brewer carlsberg are falling sharply , after the company lowered its annual profit forecast .\npolice are investigating a complaint from a cardiff mosque which received an uninvited visit from britain first .\nthe allowances for african troops fighting al-qaeda-linked militants in somalia have not been paid for at least six months , the bbc has learned .\nan 88-year-old man has died following a fire at a house in lossiemouth .\nworld champion cyclist martyn irvine has been named the 2013 bbc northern ireland sports personality of the year .\nthe mayor of chittoor town in the southern indian state of andhra pradesh has been killed by unknown attackers .\nsyrian forces and their allies have retaken the central town of al-qaryatain from so-called islamic state -lrb- is -rrb- , dealing a further strategic blow to the militant group , state media say .\nprehistoric and bronze age finds have been made during work to construct the new inverness west link road .\nengland playmaker rangi chase has had his contract terminated by super league side salford red devils following a ` disciplinary procedure ' .\nlaura massaro , sarah-jane perry and nick matthew produced superb performances to give england three of the four finalists at the british open .\nus president barack obama has requested $ 263m -lrb- â # 167m -rrb- to improve police training , pay for body cameras and restore trust in policing .\nlancashire head coach ashley giles has questioned the attitude of his team after their record loss to yorkshire .\npresidential candidates for the 2016 race and other politicians are speaking out against donald trump after a string of violence at his rallies .\nscientists are looking for 100,000 volunteers prepared to have their dna sequenced and published online for anyone to look at .\ngorka izagirre emerged strongest from a breakaway group to claim victory on stage eight of the giro d'italia as bob jungels retained his overall lead .\nformer chairman michael johnston has resigned from his positions as a director and the company secretary of kilmarnock .\ncharlton athletic have begun an investigation into claims a youth player was sexually abused while at the club in the 1980s .\nthere have been a few great goals , and plenty of late ones , but how is the expanded european championship shaping up as a tournament to remember ?\na man in is hospital with life threatening injures after an early morning disturbance in glasgow city centre .\na man who was jailed for killing his ex-girlfriend in a `` violent and protracted '' attack has had his eight-year sentence increased .\nthe speed of broadband in southern scotland has provoked some intense discussion .\nroyal dutch shell is reviving plans to drill for oil in the arctic in a move likely to intensify its battle with environmentalists .\naberdeen limped into the second qualifying round of the europa league with a 3-2 aggregate win , despite going down to fola esch in luxembourg .\na woman whose daughter was travelling around nepal when the earthquake struck has said she was shocked at the lack of support from the british embassy .\narsenal boss arsene wenger says he is `` surprised '' the club has been linked with a summer move to sign sweden striker zlatan ibrahimovic .\nthe quality of care on a scandal-hit ward for dementia patients may have contributed to at least seven deaths , bbc wales can reveal .\nshrewsbury and fleetwood face a replay at highbury after playing out a goalless draw in the second round of the fa cup .\nengland will face italy in the semi-finals of the under-20 world cup in south korea after a 1-0 victory over mexico in cheonan .\nsecond new york state prison escapee david sweat is in custody after being shot by police , us officials report .\nwales ' youth workers will be regulated by the education workforce council for the first time from 1 april .\nthe archbishop of wales has reflected on his time at the helm of the church ahead of his retirement .\neverton have appointed leicester city joint assistant manager and head of recruitment steve walsh as their new director of football .\na turtle which was found on a beach in st clement is being treated at a veterinary hospital in jersey .\ndozens of farmers gathered outside the scottish parliament for a rally highlighting rural issues .\na police officer in inverness has been photographed carrying a firearm despite assurances that sidearms would only be deployed under special circumstances .\ndoncaster rovers have signed chelsea midfielder jordan houghton and aston villa defender niall mason on loan until january .\nbroadchurch stars david tennant and olivia colman have posted selfies of themselves to show their support for a bbc mental health initiative .\na man died despite a rescue attempt at penzance harbour .\nin his new book grave new world , stephen king says : `` for better or worse , china is simply too big to be ignored . ''\nlimiting access to federal research would do an `` enormous disservice '' to the us and the world according to former nasa chief scientist .\nthere is , to use boris johnson 's own lingo , a `` whinge-o-rama '' raging among the foreign secretary 's political opponents and in parts of the press about his performance in the current syria crisis .\ntwo and a half years ago , at the start of their career , oh wonder singer josephine vander gucht fell over a gate , smashing her front teeth and breaking her nose .\nsergio garcia and henrik stenson are one shot off the pace after the second round of the bmw international .\na un treaty on disability rights has been rejected by the us senate .\ncolombian president juan manuel santos has been awarded the nobel peace prize for his efforts to end the 52-year conflict with left-wing rebels .\na tractor being driven by a 15-year-old boy `` as a taxi for his drunk mates '' has been stopped by police in north yorkshire .\nolympic gold medallist dani king could cycle for wales at the 2018 commonwealth games , having previously represented england .\nlancashire 's alex davies and kyle jarvis put on 100 for the 10th wicket to frustrate derbyshire on day three .\nscottish football should consider a bigger league to help young talent , according to czech republic director of football dusan fitzel .\nwales started their 2018 world cup qualifying campaign in confident fashion as they convincingly beat moldova .\nnew celtic manager brendan rodgers says he has been discussing his future plans with some of his senior players .\nnew boss john sheridan saw newport claim a hard-fought draw in his first game in charge thanks to a lenell john-lewis equaliser against exeter .\nvulnerable children are being placed in care outside their home county of kent due to the influx of child asylum seekers , according to council chiefs .\nthe australian government and its contractors have offered compensation totalling a$ 70m -lrb- â # 41m ; $ 53m -rrb- to refugees detained in papua new guinea .\ncardiff city manager neil warnock says they must stop conceding late goals if they are to challenge for promotion next season .\nvolunteers have been asked to help in a post-storm beach clean in the south of the isle of man .\na 15-year-old boy charged with the manslaughter of a man who died from a single punch has appeared in court .\nan 18-year-old man has died after being injured in a two-car road crash on the lisburn road in saintfield , county down on wednesday .\nkent chairman george kennedy is to leave his position at the championship division two club at the end of march .\nthe head of the national body for police commissioners resigned in order to appear on the bbc 's question time following the manchester attack .\nlibya 's defence minister has withdrawn his offer to resign , hours after saying he was leaving his post .\na company offering software that allows people to spy on others has admitted it has been hacked and had thousands of customer records leaked online .\nthe us has said it is suspending talks with russia over syria , accusing moscow of having `` failed to live up '' to its commitments under a ceasefire deal .\nhundreds of people have attended the funeral of two young boys found dead in the boot of a car in county mayo .\ndundee are continuing to work towards moving away from dens park to a new stadium in the city , manager director john nelms has revealed .\na belarus official who carried a russian flag into the opening ceremony of the paralympic games has been banned from the competition .\nmore than 1,000 campaigners trying to save a north wales community hospital from closure have marched to a health board consultation meeting .\nan 81-year-old woman is due in court charged with injuring four people - one seriously - while driving dangerously in an aberdeenshire village .\nwinger carlos de pena has left middlesbrough after his contract was terminated by mutual consent .\nsaracens ' hopes of consecutive domestic and european titles were dashed as exeter scored a late try to reach their second premiership final in a row .\npoet owen sheers has won wales book of the year at a ceremony in caernarfon for his work about three young soldiers .\nbrighton beat ipswich town in a five-goal thriller to leapfrog the tractor boys and go top of the championship .\nlabour 's christopher elmore has become the new mp for ogmore after winning the parliamentary by-election with 52 % of the vote .\na field of remembrance honouring members of the armed forces from the past 100 years is open at cardiff castle .\narsenal maintained hopes of winning the fa cup for a third season in a row as alexis sanchez 's goal carried them past burnley and into round five .\nsyrian rebels say they shot down a syrian air force jet and blamed an al-qaeda-linked group for killing the pilot .\nlani belcher won k1 5000m silver for great britain while the k4 500m women also qualified their boat for rio 2016 at the canoe sprint world championships in milan .\nmaj tim peake will become the first british european space agency -lrb- esa -rrb- astronaut to go into space , on tuesday .\nmozambique , which gained independence from portugal in 1975 , is still suffering from the effects of a 16-year civil war that ended in 1992 .\ngerman officials say growing numbers of pregnant immigrant women are paying german men to pose as fathers so that they can qualify for residency .\na soldier killed in a blast in southern afghanistan on monday has been named by the ministry of defence .\nrailway enthusiasts have hired a powerful crane to lift the lower sections of a new bridge into place across a river in the highlands .\nbaltimore has lifted an overnight curfew imposed after riots sparked by the death of a black man in custody .\na letting agency has been paid more than # 5.5 m in housing benefit after its owner set up a charity to help the homeless , the bbc has learned .\nwales ' jamie donaldson will take a two-shot lead into the third round of the nordea masters after carding a second successive 69 on friday .\ncanada 's largest airline , air canada , has apologised after giving a 10-year-old boy 's seat to someone else .\nnintendo has reported a bigger first-quarter loss than expected , causing its share price to tumble .\nscottish borders council is set to start the first phase of a wide-ranging overhaul of its schools provision across the region .\nfour in 10 london nurses expect to leave the capital by 2021 because housing costs are so high , according to a survey by the royal college of nursing -lrb- rcn -rrb- .\na cargo plane has crash landed in ghana 's capital accra , hitting a bus full of passengers , officials say .\nspain 's garbine muguruza started the defence of her french open title by beating 2010 champion francesca schiavone 6-2 6-4 .\nwetwang , cockermouth and bell end were just some of the place names deemed too rude to be shown at a women 's institute -lrb- wi -rrb- event .\ngateshead have signed striker nyal bell on a two-year deal following his release by rochdale .\nformer england defender graeme le saux says more needs to be done to support gay footballers .\nplans that could see owners compelled to put their dogs on a lead and a ban on the animals in playgrounds will be discussed by carmarthenshire council .\nan italian cardinal has donated $ 150,000 -lrb- # 109,000 -rrb- to a catholic charity which allegedly footed the bill for renovations to his luxury flat .\nthe islamic state group -lrb- is -rrb- has confirmed the death last month of one of its most senior leaders , abu mohammed al-furqan .\nwales under-20 grand slam winners shaun evans and dafydd hughes have signed their first professional contracts with scarlets .\njessica ennis-hill 's coach toni minichiello wants russian heptathlete tatyana chernova 's drugs ban to be re-examined by the sporting authorities .\ngay men are fleeing brutal persecution in chechnya , where police are holding more than 100 people and torturing some of them in an anti-gay crackdown , russian activists say .\nmore than 100 people have supported a breastfeeding protest in swansea after a staffordshire mother was labelled a `` tramp '' for feeding her baby in public .\nluxury car maker daimler has reported record quarterly profits of 1.7 bn euros -lrb- $ 2.5 bn ; â # 1.5 bn -rrb- in the three months to 30 june .\nsam warburton says he remains as hungry as ever to play for wales despite losing the captaincy to alun wyn jones .\nrobert milkins feels his form is about to `` take off '' after ending a five-match losing streak with a first-round win in the uk championship .\ndavid harsent has won the ts eliot prize for poetry at the fifth attempt .\nafter being elected the new president of the iaaf , lord coe said taking the role was `` probably the second biggest and most momentous occasion in my life '' after the birth of his children .\nsir nicholas winton , who has died aged 106 , has been hailed as a hero of the holocaust .\nalmost exactly five years after mark webber lost his best chance of becoming formula 1 world champion , the australian is on the brink of fulfilling his title dream in the world endurance championship this weekend in bahrain .\na nobel laureate has apologised for any offence after he made comments about the `` trouble with girls '' in science - but said he had `` meant to be honest '' .\nthe number of welsh motorists caught using their mobile phones went up in march , despite the introduction of harsher penalties .\nfewer than a third of staff at queen 's university believe it is being led effectively , according to a survey conducted by the university itself .\ndelhi 's chief minister has vowed to step up his virtually unprecedented street protest amid a row over who controls the city 's police force .\nthe winter youth olympic games are a relatively new event .\na cumbria shopping centre had to be evacuated after a fire started in a shop storeroom .\na new targeted treatment for ovarian cancer has shown `` very promising '' results in women in the advanced stages of the disease .\njunior doctors in england are to be balloted on industrial action over government plans to introduce a new contract from august 2016 .\npolice in greece have submitted a bbc tape to prosecutors investigating an alleged assault on an mp by members of the far-right golden dawn party .\npoliticians and other key figures have been reacting to the judgment on wednesday that northern ireland 's current abortion law is `` incompatible '' with human rights .\na lifetime of diaries , letters and photographs of a man described as a cross between indiana jones , james bond and graham greene has opened to the public .\ncornish pirates coach alan paver says he has been impressed with luke chapman 's commitment after injury .\nbolton wanderers held birmingham to a goalless draw in a cagey championship affair at st andrew 's .\na former circus tiger which waited two years to be imported to the isle of wight zoo has arrived on the island .\na woman who asked bt to install a landline at her home was told it would cost more than # 22,500 .\ncoventry has taken the highest number of syrian refugees in the uk , according to home office figures .\nukip leader nigel farage has said wales gets a `` rotten deal '' from the uk 's membership of the eu .\na police car has crashed while responding to an emergency call on anglesey .\na 25-year-old man from doncaster has died following a motorcycle crash in south yorkshire .\nnewcastle united scored a goal in each half to beat aston villa and go a point clear at the top of the championship .\na floral mosaic showing a lancaster bomber dropping food supplies in nazi-occupied holland has been unveiled at lincoln cathedral .\ntwo chris holroyd goals in six second-half minutes gave macclesfield a 2-1 win over dover at moss rose in the national league .\na 19-year-old man has been charged after a cat was killed and others were badly injured in shootings in surrey .\na former football coach and scout has been arrested as part of an investigation into allegations of abuse in the sport .\nmatch previews for saturday 's six premier league fixtures , with relegation rivals newcastle , norwich and sunderland all in action .\nnorthern ireland has been chosen to host the commonwealth youth games in the summer of 2021 .\ntwo men have been assaulted in larne , county antrim , by a gang armed with baseball bats and a hatchet .\nst mirren have signed forward cammy smith on loan for the rest of the season after aberdeen ended his spell with dundee united .\nnorthern ireland 's enterprise minister , arlene foster , is to challenge the environment minister in court over his approval of the belfast metropolitan area plan .\nwest ham striker andy carroll is facing up to six weeks out of action with a hamstring injury .\nthe uk is facing a `` critical rental shortage '' which requires a building programme to focus on providing for tenants , a surveyors ' body has said .\nsinger dannii minogue has been presented with an honorary degree by a hampshire university .\nbritish gymnast cameron mackenzie has chosen to represent south africa in a bid to qualify for rio 2016 .\na trial plot of genetically modified rice has been destroyed by local farmers in the philippines .\na plaid cymru am has claimed he has been a victim of `` political harassment '' after a break-in at his constituency office in cardiff .\na childhood friend of pink floyd legend syd barrett is developing a hospital garden in his honour .\nthree neolithic-style huts have been built at old sarum to offer an insight into how stonehenge 's builders lived .\nan unemployed man has admitted raping an elderly woman after barging into her south london home .\na 46-year-old man has died after he was attacked outside a pub in grimsby .\nbritish actor alec mccowen , who played gadget inventor q opposite sir sean connery in `` rogue bond '' film never say never again , has died at the age of 91 .\nsoap fans will be able to take a tour of emmerdale from april , itv have announced .\nhe was the champions league hero who arrived promising an exciting brand of football , but ole gunnar solskjaer 's tenure at cardiff city will be remembered as a failure .\na new gin distillery in the borders - built in a converted cowshed - is to start production early in the new year .\nformula 1 bosses have failed to agree on a new format for qualifying after a meeting at the bahrain grand prix .\nvenezuela says it has deployed 17,000 troops along its border with colombia , which was closed on monday for the first time as part of an anti-smuggling operation .\ncaptain greg laidlaw says scotland must be `` subtle and clever '' as well as match france physically if they are to secure a first win in paris since 1999 .\na victorian university building in aberystwyth could be transformed into a postgraduate centre under plans for a new `` cultural quarter '' .\npresenter , writer and monty python star michael palin will be awarded a bafta fellowship at its tv awards on 12 may .\nukip leader nigel farage has called for immigrants to be barred from receiving any benefits until they have been resident in the uk for five years .\nlondon mayor boris johnson has backed away from a timetable for the opening of the city 's night tube .\nrespect leader george galloway has been reported to police for allegedly breaking election law .\nengland and scotland meet for the 113th time at wembley on friday night as a rivalry which `` is known throughout the world '' returns .\nscotland yard has apologised to the family of a police informant for `` shortcomings '' in the original investigation into his death .\nliverpool 's mayor has proposed a budget cut of # 90m over the next three years , which could see about 300 jobs lost .\nbottles of a popular gin have been recalled across canada after a batch was found to contain nearly twice the amount of advertised alcohol .\nin our series of letters from african journalists , ghanaian writer elizabeth ohene looks at the uproar that greeted ghana 's decision to allow two yemenis freed from the us jail in guantanamo bay to live in the west african state .\na children 's book prize inspired by matilda author roald dahl has been put on hold for two years .\neu leaders are curious to meet the british prime minister when he joins the eastern partnership summit in riga .\na blogger who launched a `` campaign of harassment '' against a council chief executive has had the criminal case against her dropped .\na further 34 syrian refugees were resettled in wales in the three months to june , bringing the total to 112 .\nthe griffin family is moving home - to itv2 .\nglasgow city opened the new season in ominous style , demolishing inverness 14-0 in the first round of the swpl league cup .\na ticker-tape parade in lower manhattan on friday will honour the usa 's world cup-winning women 's football team .\nseveral thousand customers were left without electricity for a time on wednesday night .\nipswich town won away from home for the first time in the championship this season as derby county missed a host of opportunities .\nthe names of nazi ss commanders and guards at the auschwitz death camp in german-occupied poland have been put online by the country 's institute of national remembrance -lrb- inr -rrb- .\nhome improvements retailer kingfisher has agreed to sell a controlling stake in b&q china to wumei holdings .\nthe denver nuggets will play the indiana pacers at london 's o2 arena in the seventh regular-season nba game to be played in the united kingdom .\nwales defender neil taylor is expected to miss the rest of the season after fracturing an ankle in swansea city 's 2-2 draw with sunderland on saturday .\njason kingsley seems far too relaxed about the fatal dangers inherent in his daredevil hobby .\njordan clark scored a late winner as accrington stanley stunned league one promotion hopefuls bradford with victory at valley parade , in the fa cup first round .\nadele has apparently turned down the grammy award for best album , saying beyonce deserved it more .\na man who murdered a pensioner at his home in glasgow has been ordered to spend a minimum of 13 years in jail .\nhundreds of people turned out to pay tribute to a man known as `` britain 's oldest dj '' at his funeral in bristol .\na football fan who threw stadium seats at another supporter during an aberdeen v rangers game has avoided a ban from matches .\nvoters in tunisia have been choosing their first freely elected president in a run-off election seen as a landmark in the country 's move to democracy .\nembattled carmaker volkswagen said it is close to an approved fix for us cars with emissions-deceiving devices .\na crash with a motorbike which killed belgian cyclist antoine demoitie was an `` unfortunate accident '' , says his team .\nisrael 's prime minister has accused iran of carrying out a missile test in `` flagrant violation '' of a un security council resolution .\nleeds united dropped out of the championship play-off places as wolves clinched a narrow win at elland road .\nsix people died and another two were missing after an explosion on tuesday evening destroyed a fireworks factory near the portuguese town of lamego .\na canadian wildlife park has been charged with five counts of animal cruelty - including allowing a peacock to be in distress .\nspanish world champion marc marquez won the grand prix of the americas for the third successive year on sunday .\nhead coach paul trollope says every player at cardiff city `` has their price , '' before the transfer window closes .\nthe families of two east london schoolgirls who travelled to syria are `` distraught '' after learning they have married , their solicitor has said .\nolympic champion elinor barker has praised under fire british cycling following her victory at the track cycling world championships .\nreading are to release hal robson-kanu , anton ferdinand and simon cox after their current contracts expired .\nmainland china shares continued lower , falling as much as 3.5 % on friday after plunging nearly 7 % a day earlier .\nmansfield town held on to beat dagenham in league two , despite krystian pearce 's late sending off .\nteenagers in foster care in scotland are being moved too often , according to a campaign group .\nbrazil has been battling deforestation and illegal logging for years .\nmps have paid tribute to dad 's army creator jimmy perry , using his show 's famous catchphrases in the commons .\nlionel messi celebrated the birth of his second son with a winning goal as barcelona went top of la liga with a 2-1 win at atletico madrid .\n-lrb- close -rrb- : the pound has lost some of the sharp gains made against the dollar after strong data on uk services .\na ban on growing genetically-modified crops in scotland could threaten the country 's contribution to scientific research , according to scientists , universities and farming leaders .\nwith clashes between south sudan and sudan threatening to spiral into all-out conflict , state tv networks in both countries are pulling out the stops to rally support for their respective causes .\nforgive me if you are not a fan of political conspiracy , and on a day like today you do n't have to look very far for huge ideological disputes , even if they 're not quite yet punch-ups .\nshe is only 19 but has already experimented with neural networks , built prototype software to help doctors diagnose breast cancer , won a $ 50,000 college scholarship from google and been invited to the white house to showcase her research .\nvictims of crime are `` let down '' by poor communication from the crown prosecution service , a watchdog claims .\na temporary sales ban on samsung electronics ' galaxy tab 10.1 tablet computer in the us has been lifted by a us court .\nplymouth argyle striker jimmy spencer will miss at least three months after breaking and dislocating his ankle .\njamie vardy scored twice as leicester beat liverpool to stay three points clear at the top of the premier league .\nturkish president recep tayyip erdogan says he is ready to reinstate the death penalty `` if the people demand it '' , following the recent coup attempt .\na terminally ill teenager married his school sweetheart three days before dying from leukaemia .\njoe cardle grabbed a double as dunfermline got the better of nine-man falkirk to continue their impressive start to the championship campaign .\na fire that broke out on a car ferry as it crossed the solent may have started in an air conditioning unit , operator wightlink has said .\n-lrb- close -rrb- : shares on wall street closed at fresh highs on friday in response to positive jobs data .\na fundraising campaign is under way to help a baby girl from bath who has to have all of her limbs amputated after contracting meningitis .\nprison officers in england and wales are to be balloted on industrial action over the privatisation of jails , the prison officers ' association has said .\nteachers should ignore rules on promoting `` fundamental british values '' , a teachers ' union conference has heard .\nthe labour party could end up splitting if jeremy corbyn is elected leader , yvette cooper has claimed .\n`` britain has done appallingly badly at vocational education for many years , '' says sir vince cable , former business secretary , as theresa may 's industrial strategy promises to regenerate technical training and tackle the skills shortage .\ntributes have been paid to former preston north end and england winger tom finney , following his death at the age of 91 .\n`` dysfunctional '' , `` not fit for purpose '' , `` in urgent need of reform '' - these are just some of the phrases that politicians themselves have been using about the stormont system .\nneil gaiman 's the ocean at the end of the lane has been voted 2013 's book of the year , winning the public vote `` by a considerable margin '' .\npoliticians were not the only ones in shock when the general election exit poll came out , it was also a rude awakening for britain 's impressionists .\noscar-winning actress emma thompson has joined the cast of disney 's live-action take on beauty and the beast .\ngreat britain 's taekwondo fighter mahama cho was born in the ivory coast , but after experiencing physical bullying at school he moved to the uk in 1997 in search of a better life .\njames botham made his debut appearance for wales sevens in the world sevens series in new zealand , committing him to wales for life .\na judge in the united states has ruled that apple can not be forced to give the fbi access to a locked iphone in a case that echoes an ongoing legal battle .\nhundreds of people have taken to the streets of egypt 's capital , cairo , to protest after a tea vendor was allegedly shot dead by police .\nblackpool football fans are being asked to help solve the murder of a teenager who disappeared over a decade ago .\na publican who repeatedly stabbed a man with a steak knife has been jailed for four years .\nat least 90 people have been arrested after violent clashes between workers and managers at a maruti suzuki factory near the indian capital , delhi .\nsigned and dropped by three major record labels , laura pergolizzi had all but given up on a pop career .\ndisabled pensioner alan barnes has said he is `` ready to move on with his life '' after a man appeared in court to admit assaulting him .\nprime minister narendra modi has launched an ambitious campaign which aims to turn the country into a global manufacturing hub .\na mother who has gone missing with her three-year-old son has been urged to speak directly to the police chief leading the search for her .\njennifer lawrence has written an essay expressing her anger at getting paid less than her male co-stars .\n-lrb- close -rrb- the dow jones industrial average closed at a fresh high for a second consecutive day after a rally in financial shares boosted the index .\na renewable heat incentive scheme boiler owner has failed in a legal attempt to challenge plans to name him .\nwhy the fuss over the internal machinations of a party which has no mps , no meps - and which polls suggest commands the support of about one per cent of voters ?\nthe scottish spca was alerted by a member of the public to a snake in forfar only to discover it was a plastic toy .\nwork has begun to transform the former gedling colliery site into a # 1.1 m country park .\na former soldier who agreed to obtain information from an army barracks for a newspaper will not face a trial , the crown prosecution service has said .\nofficials in venezuela say the search for a missing military helicopter is continuing in the country 's amazon region .\na chef is hoping he has cooked the world 's biggest scotch egg - a whopping 11kg -lrb- 24lbs -rrb- - which took three hours to deep fry .\nmanchester united winger adnan januzaj has joined fellow premier league side sunderland on a season-long loan .\nthe prime minister is expected to offer indonesia and malaysia support in tackling islamist extremists , during a trade mission to south east asia .\n-lrb- close -rrb- : the main us share indexes all slumped on wednesday , with the technology-focused nasdaq sustaining the heaviest losses .\nthousands of protesters are marching in south africa to demand president jacob zuma is sacked .\nengland 's batsmen must `` pull their fingers out '' if they are to win the third test against pakistan and draw the series 1-1 , says james anderson .\ncardiff city manager neil warnock says kenneth zohore is one of the best strikers in the championship after being `` not far away from being a waste of time '' just a few months ago .\nmanager keith curle wants to continue the job he has started at carlisle united beyond his current contract , but wants assurances he will be backed by the club 's board going forward .\njames pattinson took 5-27 as australia beat the west indies by an innings and 212 runs in the first test in hobart .\nformer manchester united manager sir alex ferguson says michael carrick is `` the best english player '' around .\ncriminals who kill police officers in england and wales will face compulsory whole life sentences , home secretary theresa may has announced .\ndj fearne cotton has broadcast her final show on radio 1 , after almost 10 years at the station , and six at the helm of the mid-morning show .\nbristol 's on-loan full-back luke arscott has signed a one-year contract to join the championship leaders from bath at the end of the season .\nthe police service of northern ireland has started to phase in local policing teams -lrb- lpts -rrb- .\nsightings of `` creepy clowns '' have been reported across wales , with police warning people they could be arrested for scaring others .\nnine missing episodes of 1960s doctor who have been found at a tv station in nigeria , including most of the classic story the web of fear .\na `` rapid transit '' bus scheme due to be running in bristol by 2017 still has no operator and may need public funds .\nbronze weapons believed to date back about 3,000 years have been discovered on the isle of coll .\nwales goalkeeper danny ward wants to remain at promoted huddersfield after helping them rise into the premier league .\npolice investigating the disappearance of a baby born in north london in 2004 have arrested a man in hertfordshire .\npolice are investigating the disturbance of bird of prey nests in a forest south of inverness .\na man has described how he managed to revive a lifeless newborn baby which was found in a bus shelter .\nyou may not have heard of judith hill , but you 've almost certainly heard her voice .\nmanager lee clark has praised captain stevie smith for playing through an injury in an attempt to steer kilmarnock clear of relegation .\n-lrb- noon -rrb- : the market remained in positive territory during lunchtime trade , with mining shares among the top risers .\ndeparting glasgow coach gregor townsend rued his side 's inability to take their chances after slipping to defeat by edinburgh in his final game in charge .\njohnny sexton is out of ireland 's tour to south africa because of a shoulder injury while brothers rob and dave kearney will also miss the test series .\nthe chinese government is cracking down on home-grown cyber thieves seeking to steal online banking details .\na court in egypt has been shown video and audio evidence in the trial of three al-jazeera journalists accused of terrorism-related offences .\npolice in brazil are stepping up their search for more than 100 prisoners who are still on the run after escaping from adjoining prisons in the northern state of amazonas on 1 january .\nfor excitement it may not have matched the samuel l jackson film , snakes on a plane , but passengers on a qantas flight watched with fascination as one snake fought out its own drama .\nmichelle yeoh has been honoured with the excellence in asian cinema award at the asian film awards in hong kong .\na body has been recovered from a cumbrian river after a search for a man missing in the water .\nthe nepalese government is considering banning anyone deemed too young or too old or with a severe disability from climbing mount everest .\njustin kluivert , the 17-year-old son of former netherlands striker patrick , made his ajax debut in a comfortable win at pec zwolle on sunday .\na court in india will give its verdict on 6 may in a 2002 hit-and-run incident in which bollywood star salman khan is accused of running over five men sleeping on a pavement , killing one of them .\nnewcastle have re-signed fly-half toby flood from french side toulouse .\nthe scottish professional football league has issued new regulations aimed at tackling supporter misconduct .\nus markets were mixed on monday , as the dow jones pushed farther into record territory but falls in technology stocks limited gains .\nformer labour minister jack straw is to chair an inquiry into the governance of the house of commons amid a row over the hiring of a new commons clerk .\nthe number of marriages in gretna topped 3,500 last year - a slight rise compared with the previous 12 months .\na man with terminal motor neurone disease has told the high court he faces an `` unbearable death '' because of the law on assisted dying .\nshrewsbury town have signed former walsall goalkeeper craig macgillivray on a one-year deal .\nparis st-germain 's 36-match unbeaten run in ligue 1 was ended as lyon beat them to move into the third and final champions league qualification spot .\ntwo people have been rescued from the rubble of buildings in kathmandu , five days after an earthquake that killed more than 6,100 in nepal .\na review team looking at the quality of life of older people is to swoop unannounced on 100 care homes .\nceltic 's potential champions league qualifier with irish premiership champions linfield has been pencilled in for friday 14 july at windsor park .\nthree weeks after the general election , and a week after the state opening of parliament , new mps have been busy making their maiden speeches in the house of commons .\na convicted british sex offender caught trying to pay us undercover officers for sex with a boy has admitted taking pornographic images into the country .\na football anthem sung by england 's 1966 world cup winning side has been released after spending 34 years hidden in an isle of man attic .\na dead shark has been found washed up on a beach in gwynedd .\ncambridge maintained their league two play-off hopes with a narrow win over fellow challengers exeter .\nstrike action by bus drivers in cardiff has been called off after an improved pay offer was accepted .\na programme in which illusionist derren brown suffocated himself as part of a trick has broken broadcasting rules .\na un conference aimed at preventing the proliferation of nuclear weapons has ended in failure after a row over a nuclear-free middle east proposal .\na british ukulele group has lost its trademark infringement battle against a rival band over its name .\nright at the heart of europe and with a history intertwined with that of its neighbours , slovakia has proudly preserved its own language and distinct cultural traditions .\nthe remains of a belfast youth were being exhumed on monday as part of a police investigation into his shooting by an experimental british army undercover unit in 1972 .\na woman whose partner died after a car crash in aberdeenshire has told a trial she felt as if she was `` in a washing machine '' after the collision .\nmorton manager jim duffy will serve a two-match ban following his touchline altercation with hibs boss neil lennon .\na woman who died after being knocked down by an hgv in aberdeen city centre has been named .\nnorwich city have signed wigan athletic winger yanic wildschut for # 7m and ajax left-back mitchell dijks on loan for the rest of the season .\nthe owners of a derelict victorian hospital complex have lost an appeal over a # 900,000 bill paid by the county council for emergency repairs .\na couple who were in a light aircraft that crashed in a northamptonshire field escaped unhurt and were found by ambulance crews in a nearby pub .\ngemma arterton is set to star in a west end musical version of the 2010 film made in dagenham .\nscottish labour leader kezia dugdale has called on trade unionists to `` unite against snp cuts to local councils '' .\nguinea-bissau 's players have ended their strike after being paid outstanding wages , four days before the start of the africa cup of nations .\nvenezuelan vice-president nicolas maduro has given the annual state of the nation speech in place of hugo chavez , who is still recuperating in cuba after cancer surgery .\ncuban police have detained more than 50 people who took part in a march calling on the island 's communist government to release political prisoners .\nhamilton accies ' martin canning hopes to learn from pedro caixinha and admits it will be difficult to second guess the new rangers manager on saturday .\nformer tottenham and fulham forward clint dempsey has undergone a procedure to address an irregular heartbeat .\nthe escape on saturday of joaquin guzman , one of the world 's most wanted drug lords , from a maximum-security jail in mexico , has reignited the discussion about whether he should have been extradited to the united states .\nopener steven davies hit 104 off 116 balls as 2015 runners-up surrey reached another one-day cup final with a 19-run win over yorkshire at headingley .\na leading researcher into the mental health of military personnel has been knighted in the new year 's honours .\nsyria says international accusations that it is delaying the destruction of its chemical weapons stockpile are `` absolutely unjustified '' .\na 26-year-old iraq war veteran suspected of opening fire in a crowded florida airport last week has appeared in court to hear charges against him .\nwithin days of an iranian missile test and a subsequent warning from the trump administration , the us has now followed up by imposing a new round of economic sanctions .\nthe entire senior management team of the vatican bank is to be replaced as part of extensive reforms of the catholic church 's central government .\nthe number of homes repossessed in the uk fell again in the second quarter of the year as fewer owners fell behind on mortgage repayments .\ndebutant jo butterfield led a british clean sweep of the medals in the women 's f32/51 club throw at the ipc athletics european championships .\nan `` extremely rare '' signed copy of adolf hitler 's mein kampf is to be sold at auction .\nsupermarkets and other food retailers are fuelling scotland 's obesity epidemic , according to new research .\na mother locked up valuables to stop two sons selling them to raise money for another son fighting for the so-called islamic state , it is claimed .\neu leaders trying to finalise a deal with turkey on the migrant crisis have warned of the difficulties they face at the start of a summit in brussels .\nsolihull moors have signed centre-back joel kettle from northern league premier leaders rushall olympic .\ngreat britain could have won another olympic gold had the women 's football team been allowed to compete , believes england head coach mark sampson .\ndeclassified documents reveal concerns of the uk government 60 years ago that rockall could become a base for spying on a missile test site .\ngerman airline lufthansa is making an eleventh-hour court appeal to halt a planned pilots ' strike that will cancel 900 flights on wednesday .\na russian jet flew within 100ft -lrb- 30m -rrb- of a us air force plane over international waters near japan in april , us officials have said .\ncentral banks are under too much pressure to fix struggling economies , according to the man in charge of india 's monetary policy .\npreparations are being made to change the operation of maternity services at caithness general in wick earlier than previously planned .\nstevenage have signed midfielders jack jebb and david mcallister on one-month loans from arsenal and shrewsbury town respectively .\njohnny mckee and shane o'donoghue both scored twice as ireland hammered poland 5-1 in the world league 2 quarter-final at stormont on thursday .\nhe is the billionaire who wants to go broke within his own lifetime , by giving his all his money away .\na police employee lied about his qualifications , mishandled evidence and was generally poor at investigations , two reports have found .\nmae ' r gantores cerys matthews wedi disgrifio sut cafodd hi ei deffro gan sŵn hofrennydd a gweld bloc o fflatiau yn wenfflam yn ardal kensington , llundain .\nin the last common agricultural policy re-negotiation more than â # 4.5 bn was earmarked for scotland from 2014 to 2020 .\na man has walked away with # 40,000 from a superstore in manchester after posing as a manager at the bureau de change .\ninvestors need to take a long-term view when backing new tech start-ups in the uk according to leading fund manager neil woodford , speaking as part of the bbc 's tech talent coverage .\nextra time has been granted to detectives quizzing a murder suspect over the discovery of a body in a stream .\nleicester tigers have sacked director of rugby richard cockerill after nearly eight years in charge .\nsussex 's victory bid was frustrated as david lloyd 's unbeaten hundred enabled glamorgan to bat out the final day .\na plane carrying mostly chinese tourists has crashed into a river in taiwan , killing at least 31 people .\ndavid cameron has been urged by four former foreign secretaries to challenge the russian government on a number of issues during his visit to moscow .\na search has been launched for a pensioner who has gone missing in swansea .\nask anyone from outside wales to name something for which we 're famous , and the odds are that the name of llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch on anglesey would rank in their top five .\nwho needs words when you can tell the week 's news in pictures ?\nbookmaker ladbrokes has reported a sharp fall in profit , despite saying it had had a `` good world cup '' performance .\na man and woman found stabbed at a house in leicestershire have been named .\na joint inspection of the delivery of services for older people in the western isles has identified the need for improvement .\nthe bbc has confirmed it is scrapping wimbledon highlights show 2day .\nprosecution and conviction rates for drivers who cause fatal road crashes have fallen sharply - at the same time as police forces have lost thousands of traffic officers .\nan exhibition of photographs has gone on show to mark 50 years since the demise of `` one of the most beautiful stations there has ever been '' .\nthe heir to a string of nightclubs treated as a `` whipping boy '' by his father has been jailed for 13-and-a-half years for his manslaughter .\nfrancoise gerizapa scrunched her face into a fierce pout and then screamed once more - a chilling , sing-song whoop that filled the dark , crowded ward at bambari 's hospital in the central african republic -lrb- car -rrb- .\ntottenham moved to within two points of premier league leaders leicester as christian eriksen struck a late winner at fourth-placed manchester city .\nvoters appear to want more powers for the scottish parliament - beyond the proposals currently on offer , according to a new poll commissioned by bbc scotland .\ngreek pm alexis tsipras is focused on completing a $ 86bn bailout deal agreed with the eurozone despite setbacks in a crucial vote to push through tough reforms , his spokesman has said .\nsecurity camera footage has emerged which appears to show kenyan security forces looting goods during last month 's siege of the westgate mall .\na leading bookmaker is refusing to take bets on which artist will record the next james bond theme song after one customer tried to place a # 15,000 wager on radiohead being selected .\na school pupil involved in a coach crash in belgium in which the driver died is still having `` sleepless nights '' two months on , her father has said .\ninjuries described as `` devastating '' to a woman attacked by a dog in lincoln , include having the skin on her head `` ripped back exposing her skull '' .\na county down gp has come up with a novel , if strenuous , way to get healthy and beat the january blues .\nseveral people have been arrested in burundi over the assassination of a powerful general , the prosecutor 's office has said .\na driver `` blinded '' by the sun drove through a red light at a pedestrian crossing and knocked down a lollipop lady , a jury has heard .\nuniversity researchers in swansea have trained computers to detect cancer cells using artificial intelligence algorithms .\nfresh clashes broke out in benghazi on sunday after a rogue general launched a fresh assault on islamist militants .\na man who set fire to a derelict holiday park `` for fun '' has been sentenced .\nchina has said japan is endangering peace in the region after it passed controversial laws expanding the role of its military abroad .\nholders arsenal must travel to hull for an fa cup fifth-round replay after failing to turn dominance into victory against the championship leaders .\nnew national crime agency head lynne owens was appointed amid concerns about her performance as chief constable of surrey police , the bbc has learned .\na historic hotel in the scottish borders is seeking applications for the position of `` head of fun '' .\nthe biggest competition for virtual reality is something it 'll never beat - the real world .\nrelegated sunderland will travel to bury in the efl cup first round .\na collision between two lorries caused part of the m1 to be closed for several hours , causing long tailbacks .\ntwo-weight world champion andre ward says he will remove `` any doubt that may be out there '' in his las vegas rematch with sergey kovalev on saturday .\nlewis hamilton said he was `` not worried '' about his difficult start to the formula 1 season .\na man has died in a collision between a tractor and a motorcycle in lincolnshire .\nchildren who are exposed to abuse , domestic violence or other stresses are far more likely to develop long term health problems , says new research .\nargentine president cristina fernandez and amnesty international have called for justice after the violent death of a transgender activist .\na man has denied being the owner of a dog which attacked and fatally injured a neighbour .\na cambridge university academic has been ordered to return her seven-year-old son to his father in japan , a family court has ruled .\nrupert murdoch `` is not a fit person to exercise the stewardship of a major international company '' , mps have said .\nbodypositive is an exciting new bbc campaign .\na british man who went to fight in syria - and then faked his own death in order to secretly return - has pleaded guilty to four major terrorism offences at the old bailey .\nblocking china from islands it has built in contested waters would lead to `` devastating confrontation '' , chinese state media have warned .\na henry moore sculpture which was the focus of a dispute when tower hamlets ' former mayor wanted to sell it is to return to the capital after 20 years .\nandy murray says the davis cup final is `` far from over '' as he tries to win the competition for great britain against belgium on sunday .\narsenal , chelsea and manchester city are in monday 's draw for the champions league last 16 .\nsupporters of both clubs have condemned homophobic abuse after anti-gay chanting was heard during leicester 's match against brighton .\nnewcastle 's winless start to the season continued as odion ighalo 's double led watford to a second successive victory .\nlabour 's alun michael has been re-elected as south wales police and crime commissioner .\n-lrb- close -rrb- : us stocks finished mostly lower following a turbulent trading day and an announcement of new stimulus from the european central bank .\nbarcelona football club has agreed to pay a $ 5.5 m -lrb- # 4.3 m -rrb- fine over the transfer of brazil international neymar in 2013 .\na three-week-old baby boy has died after being bitten by a dog in sunderland .\nospreys head coach steve tandy says there are some `` question marks '' over the officiating in their 23-25 pro12 defeat by munster .\na south african lion called sylvester who twice fled a national park will be rehoused rather than put down , and encouraged to become an alpha male .\nbritish olympic champion katie archibald won omnium gold at the european track championships , her second title in two nights in paris .\nworcestershire and kent spent a frustrating first day of the new county championship season before play was called off in mid-afternoon .\nquestions on everything from james bond villains to great british bake off cake tins have been received by council call centres in england .\na man who suffered `` numerous stab wounds '' in an attack in salford is `` lucky to be alive '' , police have said .\nsouth korean opposition lawmakers have ended a parliamentary filibuster that lasted 192 hours , which is believed to have set a new world record .\nams have backed the uk government 's wales bill in a senedd vote - meaning the next stage of devolution can become law .\nexeter city have signed former republic of ireland , crystal palace and birmingham city striker clinton morrison on non-contract terms .\non friday morning donald trump dipped his presidential toe into french electoral politics , tweeting about the possible impact of the paris shooting on thursday that resulted in one police officer dead and two seriously wounded .\nthree more scots have been added to the great britain olympic athletics team , taking the total up to 15 .\nnew zealand 's lydia ko has become the youngest winner of a major with a six-stroke victory at the evian championship in france on sunday .\nsir roger moore has said he believes daniel craig is the best actor to have played james bond .\npeter weatherson netted a brace as annan recorded only their second win in eight matches .\nlondon djs the bush twist shot a music video of their track friday night around ghana .\nmanor want former grand prix driver alexander wurz to be their team principal and have named ex-mclaren man dave ryan as racing director .\nteaser deals in adverts are masking the long-term cost of broadband packages , a charity has claimed .\ngreat britain 's tom daley claimed silver in the men 's 10m platform at the diving world series in kazan , russia .\nmembers of an alleged nationwide prostitution ring which forced trafficked women to work in brothels have been charged , said police .\nballymena have announced the signing of winger darren boyce from coleraine on a two-and-a-half year contract .\na whisky distillery plans to invest # 580,000 in community projects to mark its 200 years on the island of islay .\nus bank jp morgan could move up to 1,000 jobs out of london ahead of the uk 's exit from the european union .\nbirmingham city have signed dundee forward greg stewart on a three-year deal for a fee believed to be around # 500,000 .\nthere has been a dramatic rise in the number of technology patents filed that relate to reading brainwaves .\nas polling day fast approaches , the bbc 's scotland 2015 programme is holding its final election debate featuring politicians answering your questions .\nthe royal navy has released an image of planned improvements to a jetty at portsmouth naval base .\ntwo migrants believed to be trying to reach the uk from calais in france have been killed over the past two days .\na 23-year-old man has been arrested in connection with disorder at the recent celtic v rangers game in glasgow .\na baby has been born to a previously infertile couple in ukraine using a new type of `` three-person ivf '' .\non sunday , the new england patriots staged a stunning comeback to beat the atlanta falcons 34-28 in the 51st super bowl .\nseveral football clubs tried to catch out their supporters on april fool 's day - but one of the more remarkable stories to appear is in fact true .\nthe welsh rugby union is set to agree a new nine-year contract with kit manufacturer under armour worth # 33m .\nadebayo akinfenwa was sent off on his wycombe wanderers debut in a pre-season friendly against le havre on tuesday .\nworcestershire batted themselves to a good position on day two against glamorgan in cardiff .\nmicrosoft co-founder paul allen has announced plans to launch unmanned rockets and carry cargo into space .\ndigesting the uk 's vote to leave the eu , papers across europe call for radical change to counter what they see as a rising tide of populism and nationalism on the continent .\nthe uk independence party spent almost as much as the conservatives at this year 's european elections - while the lib dems outspent labour , electoral commission figures show .\nit was benjamin franklin who said we can be certain of nothing in life except death and taxes .\na man has been charged with wounding a 76-year-old woman who was run over by her own car in a suspected carjacking .\na 19-year-old woman has been seriously injured after being hit by a van in edinburgh .\na woman has been remanded in custody charged with covering up the death of a one-year-old for more than a decade .\ntwo bikers who died following a crash in midlothian have been named by police .\na suspected criminal is on the run after leaping from a hospital window and catching a bus .\na man has been arrested on suspicion of causing death by dangerous driving after a woman was run over near a supermarket in west yorkshire .\nthe number of people seeking work in scotland has risen for the third time in a row , according to official figures .\na breast surgeon accused of carrying out unnecessary operations has told a court that witness statements against him have been `` coached '' .\nbury have signed striker james vaughan on a free transfer after he left birmingham city by mutual consent .\nsam allardyce has made it his mission to restore the nation 's pride after the debacle of euro 2016 as his new england era starts in slovakia on sunday .\nleague one club charlton athletic have signed defender jason pearce from wigan for an undisclosed fee .\na second teenager has been arrested on suspicion of murder after a 17-year-old boy was stabbed to death in a west london street .\nshares in mattel , the maker of barbie dolls , jumped 8 % on thursday following a report it had discussed a merger with rival hasbro .\nan isle of wight primary school is to close , despite a parents ' campaign to keep it open .\nhearts are expected to confirm the signing of defender faycal rherras and striker conor sammon ahead of a return to pre-season training next week .\nbelfast city council has said a bbc relocation to a site beside the ulster university campus would lead to a `` comprehensive transformation '' of that part of the city .\na 21-year-old man has been arrested on suspicion of murdering a man at a travellers ' site in bedfordshire .\nan activist 's undercover work to shed light the extent of illegal logging in cambodia 's forests has been recognised by the goldman environmental prize .\nsamsung , lg and google have pledged to provide monthly security updates for smartphones running the android operating system .\nan appeal has been lodged in the case of a devon teenager killed in india in 2008 , her family 's lawyer has said .\ngillingham have signed former aston villa midfielder chris herd until the end of the season and striker frank nouble on a short-term deal .\nfleetwood scored three goals in eight minutes in extra time to claim victory over southport and end the non-league side 's hopes of causing an fa cup upset .\na campaign has been launched to save the childhood home of the explorer , writer and archaeologist gertrude bell .\njeremy fernandez could easily be the face of the new australia , a poster-boy of immigrant success .\nan englishman credited with founding football giants ac milan is to be honoured in his home city .\nan airport will rip up former wales striker dean saunders 's huge parking fee if his home nation wins euro 2016 .\nus republicans have traded blows in a heated presidential debate in colorado that featured several angry exchanges .\ndual-code international joel tomkins has returned to rugby league side wigan warriors after a three-year spell in rugby union with saracens .\nhalle berry was the first black woman to win the best actress oscar when she won for monster 's ball in 2002 .\nthe company which manages southampton port has bought industrial estates close to its western side .\nroyal marines from rnas yeovilton have marched through yeovil to mark the base 's freedom of the town .\ndame judi dench has been announced as surrey wildlife trust 's new patron .\nkris commons insists he is not looking beyond his emergency loan move to hibernian after making his first appearance in 10 months .\nthe death of a two-year-old boy in perthshire features on the front pages of many of scotland 's newspapers .\nmclaren arrived at this weekend 's monaco grand prix , on which they mark the 50th anniversary of their first entry in formula 1 , hoping the race would be their best chance of a decent result so far this year - and possibly all season .\nthe main motorway link between scotland and england has fully reopened following a tanker fire .\na shop owner who turned his failing business into a cannabis factory has been jailed for four-and-a-half years .\na bid to encourage walking and cycling around dumfries is seeking public feedback on current provision .\nshakin ' stevens has been voted wales ' greatest living voice by listeners of bbc radio wales .\nengland opener alex hales has refunded a fan 10 % of his ticket price , after only 81 overs were bowled on day three of the third test against pakistan at edgbaston .\ntwo men have been convicted of organising terrorist speeches and encouraging support for so-called islamic state -lrb- is -rrb- .\nsone aluko 's equaliser denied paul williams victory in his first game as nottingham forest boss , but hull missed the chance to go second in the table .\npolice in germany have charged a man suspected of being behind an attack on the borussia dortmund team bus .\nfree buses are being laid on to take people from two of the most deprived parts of warrington to a swimming pool .\na politician who wants to restore close ties with russia is tipped to win the second round of moldova 's presidential election on sunday .\namerican weightlifter norik vardanian has tested positive for a banned substance in a sample he gave while competing for armenia at london 2012 .\nchina 's economy grew by 6.9 % in 2015 , compared with 7.3 % a year earlier , marking its slowest growth in a quarter of a century .\nyoung people who do not go to university are `` overlooked and left behind '' , says a report by the house of lords social mobility committee .\nspecialist doctors are to join wales air ambulance crews in north wales for the first time in a bid to treat seriously injured patients faster .\nlancashire all-rounder tom smith has announced his retirement at the age of 31 after a series of injury problems .\nkent have announced an improved pre-tax profit of # 345,784 for the financial year to november 2015 .\nseven pilot whales have died after being found stranded on a beach at the northern french port of calais .\nglasgow warriors have announced that influential fiji international second row leone nakarawa is to leave at the end of the season .\nteenager ben woodburn eclipsed michael owen as liverpool 's youngest goalscorer as the reds edged past championship side leeds united in the efl cup quarter-finals at anfield .\nbuildings in a nottinghamshire town are set to become a national civil war centre after a # 3.5 m grant from the heritage lottery fund was secured .\na law has come into force in belgium banning women from wearing the full islamic veil in public .\ntsuneo kita is now arguably one of the most influential men on the global media landscape .\na `` credible plan '' needs to be agreed before any move to ban buses and taxis from a street in oxford is made , a bus company has said .\ngreat britain 's men overhauled the united states in a dramatic 4x200m freestyle relay final to win gold at the world championships in russia .\ntheresa may has said china must do more to help end north korea 's `` illegal and provocative '' weapons testing .\nthe uk is one of the unhealthiest nations in europe for some health indicators , data suggests .\nthe treatment of employees in public services who have raised concerns about wrongdoing has often been `` shocking '' , a group of mps has said .\nmichelle payne , the only female jockey to win the melbourne cup , has been stood down from riding after testing positive for a banned substance .\nderek mcinnes says his beaten aberdeen players gave him the `` near-perfect '' scottish cup final performance he asked for but paid for an extra-long season .\nfarmers ' interests are best served by remaining in the european union , the national farmers ' union has said .\nan iraqi court has sentenced to death 27 men for their involvement in the massacre of up to 1,700 soldiers by so-called islamic state -lrb- is -rrb- in june 2014 .\nthe royal mail has painted a postbox gold in the oxfordshire town of henley-on-thames - in recognition of its medal winning rowing club .\nwhat do you need to run a successful restaurant ?\ngreece has agreed to a new deal with the european union to try and stop their money problems from getting any worse .\nleyton orient captain liam kelly has been charged with violent conduct by the football association for an incident in tuesday 's win at plymouth .\npatients at wales ' only children 's hospital can play outside for the first time - thanks to a new purpose-built garden .\nbritish artists have scooped several nominations for the 2015 grammys .\nthe welsh rugby union -lrb- wru -rrb- takeover of newport gwent dragons will be put to the vote on tuesday , 9 may .\nresidents fighting the demolition of their homes as part of regeneration of the sheerwater estate in surrey claim they have not been consulted .\nthe football qualifiers continue on saturday with monaghan and cavan playing after their ulster sfc defeats and derry and fermanagh also in action .\nbritish rowing is investigating claims of bullying by a senior coach .\nthe independent newspaper 's blogging platform has been briefly compromised with malware that infects readers ' computers , security experts have said .\nat a press conference last week , opposition leader aung san suu kyi was asked for her assessment of myanmar 's reform process .\nit is imperative that those involved in modern day slavery in wales are caught and brought to justice .\nthe full results of last week 's scottish council election have been published - showing the snp won 32 % of the first preference votes .\nswansea city chairman huw jenkins is in south america as he steps up the search for a new manager , with argentina 's marcelo bielsa the odds-on favourite .\npart of a swansea university campus was evacuated on thursday after the discovery of `` unstable '' chemicals .\na man who described himself in court as looking like john travolta has been found guilty of the rape and murder of a teenager 34 years ago .\na number of countries have expressed surprise that they were included by saudi arabia in a new military alliance to fight terrorism .\nthe co-operative bank says it is no longer up for sale , pending an announcement on fund-raising proposals aimed at safeguarding its future .\nthree west wales radio stations are to relocate to vale of glamorgan this month , bbc wales understands .\nthe bedroom where the duke of wellington died at walmer castle has been recreated to mark the 200th anniversary of the battle of waterloo .\nthe african nations championship -lrb- chan -rrb- holders , the democratic republic of congo , failed to qualify for the 2018 finals in kenya following a shock elimination by congo brazzaville .\nthe government 's anti-terror strategy has become `` a toxic brand '' , a muslim former senior police officer has said .\nspotify has announced it is adding more non-music content to its app .\na fire at a disused pub in caerphilly county was set deliberately , firefighters have said .\nulster university risks losing some 20m euros -lrb- # 17.5 m -rrb- in european union funding and tuition fees as a result of the brexit vote , warns a report .\na head teacher who snooped on pupils and staff in his school toilets filmed more adults than first thought .\nlasse vigen christensen has left fulham to join brondby for an undisclosed fee .\nlewis hamilton says he must beat mercedes team-mate nico rosberg at this weekend 's russian grand prix to kick-start his title defence .\ngateshead midfielder antony sweeney is pleased to be returning to his native north east after leaving league two side carlisle united .\nafter 16 years , bob the builder is having a makeover with a new look and voice .\na man accused of murdering his landlord was asked to give sexual favours in lieu of rent , a jury has heard .\nshaun murphy crushed liang wenbo 4-0 to set up a world grand prix semi-final against ding junhui in llandudno .\nteam sky riders are `` 100 % '' behind team principal sir dave brailsford , according to geraint thomas .\na 16-year-old boy arrested in norwich in connection with an alleged data theft from talktalk has been released on bail until march .\nhillary clinton has defended her progressive record after democratic rival bernie sanders mounted an attack on her links to wall street .\nbritain 's andy murray is through to the monte carlo masters semi-finals following an impressive win over canadian milos raonic .\nthe exploits of a victoria cross recipient are being recognised at his former home in south west scotland .\ngay and bisexual men convicted of abolished sex offences in northern ireland look set to be pardoned .\na three-year-old girl has died in hospital after the car she was travelling in crashed into a tree next to the m4 in berkshire .\nthe wife of one of australia 's most notorious extremists , mohamed elomar , has pleaded guilty to supporting overseas terrorism .\ncaptain billy godleman and all-rounder shiv thakor have signed new contracts at derbyshire .\nrbs may face full-year losses of up to # 8bn , after the bank said it needed another # 3.1 bn for claims relating to the financial crisis .\na samurai sword and an axe have been seized by police and a teenager has been questioned after officers were called to a `` disturbance '' in armagh .\na 60-year-old man has died following a crash on the a90 just north of laurencekirk in aberdeenshire .\naustria will impose a daily quota on asylum claims and limit the flux of migrants travelling through the country .\nhaiti faces a power vacuum after parliament allowed the mandate of interim president jocelerme privert to lapse with still no solution to the country 's political crisis .\nscotrail has announced plans to recruit up to 100 new train drivers .\nan australian man has been jailed for eight years for arranging an islamic marriage between his 12-year-old daughter and a man twice her age .\nprotesters have faced off with police in a demonstration over the death of a man after a traffic stop .\nnational crime agency -lrb- nca -rrb- detectives investigating the sale of the national asset management agency 's -lrb- nama -rrb- northern ireland loans portfolio have interviewed a former managing partner of a belfast legal firm .\nmichael dunlop set the fastest times for the ulster grand prix superbike and superstock classes in thursday 's delayed practice sessions at dundrod .\nrapper kendrick lamar has released a surprise eight-track album , untitled unmastered , comprising outtakes from the grammy-winning to pimp a butterfly .\na welsh adventurer has been forced to end his expedition on mount everest due to `` medical complications '' .\na fishing boat skipper and owner has been fined # 20,000 after a crewman died from carbon monoxide poisoning while trying to pump out water .\nthe status quo between bt and its subsidiary openreach , which provides the infrastructure connecting people to the internet , is unlikely to continue warns the head of the telecoms regulator , ofcom .\nukrainians and russians have been getting starkly contrasting pictures from their respective media of the growing unrest in eastern ukraine .\npop star adele has added two further dates at wembley stadium next year , after the initial concerts sold out .\nthis has been the era where british sport has blessed its loyal followers like never before : fourth , third and second places in the olympic medal table ; the tour de france yellow jersey won in four of the past five years ; the miracle of a first male wimbledon champion in 77 years , a marvel repeated three years on ; the davis cup won for the first time since tennis was played in slacks and cable-knit jumpers .\nan attack on nesting birds in a breeding colony in the north of the isle of man has prompted a warning from wildlife officials .\nraith rovers have signed martin scott after the 28-year-old midfielder was released by scottish championship rivals livingston .\nshares on the london stock market rose on friday after scotland voted against independence .\nstudents will have formal contracts with universities , so they can challenge them over too few teaching hours or if facilities are inadequate , says universities minister jo johnson .\nthe joint administrators of bradford bulls have extended the deadline to buy the club to monday , 19 december .\nfootage of a street brawl which appears to involve a bus driver has been shared on social media .\nhundreds of migrants face huge debts and a logistical nightmare to repatriate the bodies of loved ones who have died during perilous sea crossings to europe .\nwith projected revenues of # 420m this year , there is no question manchester united can afford to make wayne rooney the best paid player in the premier league .\na stormont fund to attract new air routes has the backing of willie walsh , the boss of british airways and aer lingus .\na businessman has denied being part of a conspiracy to pass off horsemeat as beef , claiming he was only storing the product for another company .\nlucy quist , managing director of airtel ghana limited , on how she helps people see female leaders as less of a novelty .\nfifa has said its reform taskforce will be chaired by an independent person from outside of football .\nsouth yorkshire police chief constable david crompton has been suspended following the hillsborough inquests .\nan earthquake has shaken parts of northern italy , forcing some residents onto the streets .\na man who police had been called to help after he was seen wandering among traffic has died in hospital .\nthe royal yacht britannia has been judged as scotland 's best visitor attraction every year for the past decade .\ntwo men have been charged after a teenage mother died in a car crash .\na british is fighter who died in a suicide bomb attack on iraqi forces in mosul is a former guantanamo bay detainee , the bbc understands .\na man jailed for manslaughter has won his battle against deportation after judges ruled he was being discriminated against because his parents were unmarried .\nisraeli prime minister benjamin netanyahu has said israel will re-assess its ties with the united nations .\nfour of the uk 's worst traffic bottlenecks occur on the edinburgh bypass , according to new research .\na special operation team set up by the police service of northern ireland -lrb- psni -rrb- will manage the arrival of 11 syrian refugee families on 15 december .\npolice have arrested two people on suspicion of murder after a man 's body was found on moorland .\nspending on private ambulances in london grew by 1,000 % between 2011 and 2013 , the labour party has claimed .\nmore than 500 speeding drivers have been caught by new cameras on the m4 in just five days .\neleven arts projects will get funding to take welsh culture to india as part of the uk-india 2017 cultural season .\nhuddersfield giants forward ukuma ta'ai has signed a two-year contract extension .\na candlelit vigil has been held in edinburgh to show support for the people of nepal .\npakistan 's army has named a new head of the country 's feared spy agency , the inter-services intelligence -lrb- isi -rrb- .\nroy keane had `` no hesitation '' in agreeing to remain republic of ireland assistant boss once manager martin o'neill committed to another two years .\nproduction technology services company proserv has won two north sea contracts worth more than # 15m .\na man found dead in london 's hyde park has been named by police .\nsean raggett 's second-half strike earned promotion hopefuls dover a hard-fought win over relegation-threatened welling in the national league .\nleague two club leyton orient have appointed andy edwards as assistant manager .\npolice in italy have arrested a jobless man who posed as an airline pilot , tricking his way into riding in the cockpit of at least one jet .\npolice are appealing for witnesses following a suspicious car fire in east lothian .\nleyton orient boss russell slade will work with a sporting director next season after a restructure in the wake of francesco becchetti 's takeover .\nprominent bahraini human rights activist nabeel rajab has been freed after serving two years in prison for his involvement in illegal protests .\ndarlington council has rubber stamped moves aimed at making # 10m savings over the next four years .\nengland 's 1966 world cup win has been marked by a special wembley event exactly 50 years on .\ntourism has been one of the most successful parts of the uk economy recently , thanks in part to brexit .\na social worker who failed to make regular visits to convicted criminals with mental health problems has been struck off .\naustralia 's prime minister tony abbott is under pressure to increase the country 's total refugee intake .\nscotland 's only conservative mp , david mundell , has kept his job as secretary of state for scotland .\nafter an unbelievable year johanna konta is one of the favourites to win the wimbledon 2017 ladies title .\na computer model of one of the world 's tallest three-sided obelisks is being made to find out why it is falling apart .\nglaxosmithkline has ended a frenetic week for the pharmaceutical sector with a $ 1.4 bn -lrb- # 939m -rrb- takeover of hiv drug development assets from bristol-myers squibb .\nsouth korea has claimed the north has used 70 % of wages earned by workers at a jointly-run industrial complex for its weapons programme and luxury goods for the elite .\ndarren ambrose 's double helped struggling colchester united come from behind to win 2-1 at bradford city and end a 19-game league one winless run .\na major trial is set to start in scotland aimed at preventing type-1 diabetes in children .\nthirteen people have been charged after climate change protesters stormed onto the runway at heathrow airport and chained themselves together .\ngeordie shore has unveiled two new characters , nathan henry and chloe etherington .\na sex attack on woman near a university campus could be linked to two other attempted assaults , investigators have said .\na deal to save tata steel 's scunthorpe plant could be signed as soon as monday , the bbc understands .\na giant galapagos tortoise more than 150 years old has been put down at a zoo in california .\na military assault rifle was used in an attack on a police patrol car in west belfast .\nscientists say the notoriously dry continent of africa is sitting on a vast reservoir of groundwater .\nthe women 's fa cup final is set for a new competition-record crowd at wembley , with 34,500 tickets already sold eight days before the 2017 final .\nfour people have been charged with murder over the death of a man who was attacked at a former mill .\nthe results of thursday 's elections make grim reading for the liberal democrats .\nthe parents of a five-year-old cancer sufferer who raised # 700,000 for treatment in the us have been told he has only has months to live .\nminions mania hit london on thursday night , as the new film starring the loveable yellow characters had its world premiere .\nwalsall have signed defender luke leahy on a two-year contract from scottish championship side falkirk .\nbangladesh claimed their first test win over england as the tourists lost 10 wickets for 64 runs after tea on day three of the second test in dhaka .\nliberal democrat leader nick clegg has unveiled measures to help people providing unpaid care for family and friends as he campaigns in mid wales .\ntwo children were unlawfully killed by their pregnant mother who then took her own life , a coroner has recorded .\nleague one leaders scunthorpe united suffered their third defeat of the season as rochdale held on to win at spotland .\nabout 350 homes are to be built in the govanhill area of glasgow under a # 6.4 m council initiative to help `` turn the area around '' .\na hearing into tyson fury 's charge for an alleged doping violation will take place in november , after his rematch with wladimir klitschko on 29 october .\na pilot has died after his microlight hit an electricity pylon and burst into flames near rochester in kent .\nthe us has warned north korea to refrain from `` irresponsible provocation '' after the communist state said its main nuclear facility had resumed normal operations .\nthe funeral for billy and lisa graham , who were killed in last month 's terror attacks in tunisia , has taken place .\nbritish security officials believe that hackers in north korea were behind the cyber-attack that crippled parts of the nhs and other organisations around the world last month , the bbc has learned .\na new surf lagoon in north wales has shut eight weeks early for the winter due to mechanical issues , bosses said .\na chinese space capsule carrying three crew members has returned to earth following a 13-day mission .\na teenage gang which carried out violent car-jackings used chat groups to plan and boast about offences .\nabout 80 jobs are at risk at a food manufacturer and distributor in enniskillen .\nhackers with suspected links to china appear to have accessed sensitive data on us intelligence and military personnel , american officials say .\nthousands of torch-bearers will form a kilometre-long river of fire during celebrations to mark the 50th anniversary of the forth road bridge .\nhundreds of people suffered a sleepless night when a football stadium 's pa system played loud , distorted music .\nmae diffoddwyr yn mynd i ' r afael â thân mawr mewn garej yn sir conwy .\nthe creator of thunderbirds , gerry anderson , has revealed he has alzheimer 's disease .\nnew health advice recommends short spells in the sun - without suncream and in the middle of the day .\nus president barack obama has expressed `` deep concern '' about the situation in rebel-held parts of aleppo , amid an assault by syrian government forces .\nnewport gwent dragons wing matthew pewtner has been forced to retire from injury on medical advice .\nan employee of germany 's intelligence service has been arrested on suspicion of spying for the us , reports say .\njohn mcguinness , known as the `` morecambe missile '' , has won 23 times at the famous isle of man tt motorbike races .\nbirmingham city came from two goals down at barnsley to earn their first point under gianfranco zola .\na high court case that could delay the brexit process is `` a clear attempt to frustrate the will of the british people '' , says a cabinet minister .\nukip leadership contender raheem kassam has launched his campaign , describing himself as the `` farage-ist candidate '' .\nqueen 's university belfast is cutting 236 jobs and 290 student places due to a funding reduction .\nlee clark has left kilmarnock to become boss at league one side bury , after they agreed a compensation package with the scottish premiership side .\na teaspoon of oil , measured out with precision , is how professor tim benton remembers his mother preparing items for frying .\nworcester warriors head coach carl hogg has admitted it is `` essential '' they become a force on their new artificial pitch next season .\na man has been jailed for grooming a 12-year-old girl on facebook who he went on to abuse .\na sex offender was mistakenly released from prison a month early , the bbc has learned .\nlinfield maintained their four-point lead at the top of irish premiership by beating glenavon 4-3 at windsor park .\nshe has been the long suffering girlfriend of chris brown , but after four rocky years karrueche tran says enough is enough .\nfourteen schools were forced to close due to severe flooding in warwickshire .\neritrea 's government has dismissed as a `` vile slander '' a un report accusing it of human rights violations on a scale `` seldom witnessed elsewhere '' .\nfour burglars who took part in a violent raid which left a lecturer `` unrecognisable '' have been jailed .\na 14-year-old girl suffered burns on a harry potter ride when another passenger 's electronic cigarette exploded , police in florida say .\nnato 's top military commander , gen philip breedlove , has warned that russian `` militarisation '' of the annexed crimea peninsula could be used to exert control over the whole black sea .\nthe legendary canadian ice hockey player , gordie howe , has died at the age of 88 , us media say .\nengland 's record-breaking win over new zealand even had all blacks coach steve hansen praising stuart lancaster 's side .\nreal madrid took advantage of barcelona and sevilla slipping up by beating real sociedad to go four points clear at the top of la liga .\nbournemouth moved to the highest league position in their history as leicester 's miserable run away from home continued with defeat at vitality stadium .\nnorth wales police has been criticised at an inquest for sending an officer to speak to a hospital patient with paranoid schizophrenia .\nclashes in the stands that forced some supporters on to the pitch delayed lyon 's europa league quarter-final first-leg win over besiktas .\na lorry driver has smashed through the front wall of a pub in wiltshire .\na mother walking her children to school in north wales is in hospital with serious injuries after being attacked on a busy footpath .\nit 's always just after the clocks go forward that the streets around here fill up with two things - people in garish clothes training for the great manchester run , and political candidates chasing your vote .\nbristol city ended a three-game losing run in the championship with an impressive win over ipswich town .\nthe dry , red earth could almost be mistaken for a martian landscape .\ngoogle home , the search giant 's smart assistant that rivals amazon 's alexa , will be launched in the uk in april .\nmae ymgeisydd dros y democratiaid rhyddfrydol wedi ymddiheuro ar ôl i ' w blaid gyhoeddi hysbyseb yn awgrymu fod plaid cymru yn cefnogi `` brexit eithafol '' .\nan online campaign to fund possible legal action against former prime minister tony blair and other officials has reached its target of # 150,000 .\ntrainer jessica harrington celebrated her first success in the irish grand national when favourite our duke won monday 's big race at fairyhouse .\nmps have overwhelmingly agreed to let the government begin the uk 's departure from the eu as they voted for the brexit bill .\nscientists have described a new species of bird in northern india and china , called the himalayan forest thrush .\nfootball fans hurled bricks and bottles at each other in a `` violent clash '' before aston villa played leicester city .\npresident donald trump has nominated colorado federal appeals court judge neil gorsuch for the us supreme court .\na police force has referred itself to the watchdog over the death of a woman hours after she spoke to officers about an alleged assault .\na 34-year-old man is still being questioned over the murder of a man who was shot in the legs in north belfast on friday night .\nstoke city 's # 18.3 m record signing giannelli imbula could leave the club this summer , manager mark hughes says .\npeter lines defeated seven-time world champion stephen hendry in the semi-finals on his way to winning the world seniors championship .\na man has sustained minor injuries in a gun attack at a house in rasharkin , county antrim .\nthe case of a man accused of a homosexual rape in an edinburgh graveyard has been deserted and will restart with a fresh jury .\na new # 4m research centre to tackle the `` silent epidemic '' of wound care has been launched .\nbritain 's russell knox and paul casey are tied second and third respectively after the second round of the travelers championship in cromwell , usa .\nrussia coach leonid slutsky offered his resignation after his side were knocked out of euro 2016 at the group stage .\nchancellor george osborne has abandoned his target to restore government finances to a surplus by 2020 .\na whale has been spotted in belfast harbour .\nglasgow city council will consider banning future orange order marches after footage showed members of the public chanting a sectarian song .\nmore than 2,000 people are attending the funeral of rugby league player danny jones .\na man who admitted the `` vile murder '' of an 82-year-old woman in her norwich home has been jailed for life , with an order to serve 25 years and six months .\nwest ham united have signed manchester united 's ravel morrison for an undisclosed fee .\nbulldozers have started to clear part of the makeshift calais camp known as the `` jungle '' after about 1,000 residents left the area .\na romanian hacker who targeted high-profile us politicians has been sentenced to 52 months in prison .\nspain 's dwindling number of survivors will mark the 70th anniversary on tuesday of the liberation of mauthausen , the nazi concentration camp in northern austria where most of the 9,000 spanish deportees ended up .\ned sheeran , who does n't have a driving licence , has managed to drive top gear 's `` reasonably priced car '' off the show 's race track .\nthe man hailed as the jim morrison of french rock returns to the music scene this week with his first record release since murdering his girlfriend in 2003 .\nscotland 's women are refusing to carry out any media or commercial activity due to a dispute with the scottish fa .\nmanager graham westley wants to add to the nine players he has already signed for newport in the january transfer window .\nthe cuban government has said it will take disciplinary action against a state pharmaceutical company that created perfumes named ernesto che guevara and hugo chavez .\nburnley beat lancashire rivals blackburn to go back to the top of the championship thanks to andre gray 's first-half penalty .\n`` mean-spirited '' and `` wrong-headed '' is how teachers ' leaders have described theresa may 's plan to scrap free school meals for infant pupils in england .\nnet migration could fall by about 100,000 a year if the uk leaves the eu and introduces work permits for eu citizens , a pressure group has said .\ntunisia and morocco 's differences with the confederation of african football -lrb- caf -rrb- are in the past , both north african nations say .\namerican phil mickelson leads the open championship at the halfway stage , a two-under-par 69 lifting him to 10 under at royal troon .\nchampionship club leeds united have signed striker marcus antonsson from swedish top-flight side kalmar on a three-year deal for an undisclosed fee .\nnathan buck took a career-best 6-34 to help bowl durham out for 166 and give northants the upper hand on day one .\nofficers who police scotland 's railways are to be armed with tasers in a bid to increase security on the network .\nazhar ali 's unbeaten 66 helped pakistan to reach 142-4 against australia on a rain-affected first day of the boxing day test in melbourne .\nthe world 's largest economy expanded less than expected in the final three months of 2014 despite lower fuel prices boosting consumer confidence .\ncampaigners have called for greater support for victims of asbestos-related cancer who are fighting for civil compensation .\nwelshman stuart manley missed the cut at the open after hitting an 11 over par 81 in the second round at royal birkdale .\n`` artificial skin '' that could bring a sensitive touch to robots and prosthetic limbs , has been shown off .\nthe scandal surrounding malaysia 's state development fund 1mdb has gripped the country for years .\na watchdog has criticised prison staff in northern ireland for their reaction when an inmate , who later died , was found `` unresponsive '' in his cell .\nhamburg has become the first german city to pass a law allowing the seizure of empty commercial properties in order to house migrants .\nus investigators have closed an inquiry into whether to kill a mockingbird author harper lee was pressured into publishing a sequel .\nthe daily and sunday politics are on-air six days a week for much of the year reporting the political news from westminster and beyond .\nthe safety of patients using the 111 service in oxfordshire could be `` compromised '' , according to the county 's leading health body .\nrick perry , the former governor of texas , is not among the 10 republicans running for president who will take part in the first primetime tv debate .\na 20-year-old us woman whose boyfriend took his own life nearly three years ago after she repeatedly urged him to suicide has gone on trial .\na man in his 20s has been taken to hospital after being stabbed by a gang of four men near a children 's playground .\nan orange hall in county antrim has been the target of a paint bomb attack .\nthe oculus rift is finally available to buy from high street stores and online in the uk , six months after it was released in the us .\nabout 3,000 people are expected to attend the 14th annual carve carrbridge chainsaw carving competition .\nthe last woolly mammoths to walk the earth were so wracked with genetic disease that they lost their sense of smell , shunned company , and had a strange shiny coat .\nthe cia has condemned the hacking of director john brennan 's personal email account , describing it as a `` crime '' carried out with `` malicious intent '' .\na woman has been arrested in the us after allegedly locking her children , aged two and five , in the boot of her car while she went shopping .\nactress keira knightley has married klaxons star james righton in the south of france .\ngreat britain 's greg rutherford sneaked into saturday 's long jump final to maintain his hopes of defending his olympic crown .\ncult us drama breaking bad is to be broadcast in full on uk terrestrial television for the first time .\nan mp is launching a bid to stop alleged rape victims being cross-examined in court about their sexual history or appearance .\na five-year-old boy with terminal cancer has appeared as a mascot at the sunderland v chelsea game .\na convicted murderer who stabbed to death a worker at a mental health unit has been sentenced to a whole life order .\ntowcester racecourse chief executive kevin ackerman has failed in his bid to overturn a six-month suspension from racing .\nplans to reduce crosscountry train services between aberdeen and edinburgh have been scrapped .\none of the victims of the tunisia beach attacks , joel richards , has been described as a leader of young people .\namateur adam duffy pulled off one of the biggest upsets in uk championship history with a stunning 6-2 win over two-time winner ding junhui .\nmore than 50,000 people in the nhs earned more than # 100,000 in 2013-14 , an investigation by the taxpayers ' alliance and daily mail shows .\nscottish rugby suffered two body blows this week and , rather like boxer ricky burns who `` drew '' with his opponent after getting one heck of a hiding from opponent raymundo beltran , it 's a little battered , a little broken and in need of time off the canvas .\nuniversity staff have offered to meet employers for eleventh hour talks to avert a one-day strike over pay , planned for thursday .\npaul rowley has resigned as leigh centurions head coach 10 days before the start of the 2016 championship season .\na cyclist has been killed in a crash on the a82 road to the north of fort william .\nthe government 's new divorce form - which invites the writer to `` name and shame '' - could lead to more people being accused of adultery , lawyers say .\na sinn féin mla has agreed to apologise and pay compensation to a former ulster unionist leader over a defamatory message posted on twitter .\nformer labour minister kim howells has said the party is in the `` deepest crisis '' he can remember .\nandy murray 's fiancee kim sears laughed off the controversy over her colourful language in melbourne by wearing a ` parental advisory : explicit content ' t-shirt to the australian open final .\nthe family of an off-duty police officer who died after being hit by a bus in swansea say her death has left a hole that can never be filled .\ntottenham defender jan vertonghen is expected to be out for six weeks with an ankle ligament injury , according to his manager mauricio pochettino .\nspread across a chain of thousands of islands between asia and australia , indonesia has the world 's largest muslim population and southeast asia 's biggest economy .\nbelfast giants remain within four points of elite league leaders cardiff devils after earning a 5-1 boxing day away win over braehead clan .\na woman has been charged with attempted murder after a stabbing in north tyneside .\nformer birmingham city boss steve bruce is the `` right man '' to manage aston villa , according to former blues midfielder robbie savage .\ndutch justice minister ivo opstelten and his state secretary , fred teeven , have resigned after misleading parliament over a 2001 compensation payment to a convicted drug trafficker .\nred-faced officials at the home office have been forced to correct a spelling error in a press release about new english language tests for migrants .\nactress barbara windsor has been made a dame in the queen 's new year honours list for her services to entertainment and charity .\nwhat do you do when you 're booked to play at a show but you 're sick and would rather be tucked up in bed ?\nthe independent police complaints commission is investigating the police response to concerns raised about the welfare of former actress sian blake and her two children .\nhearts have signed former manchester united youth-team full-back adam eckersley after a successful trial .\nmore should be done to help deaf people into work in wales , a charity has said .\npolice have issued a warning after a world war two phosphorous bomblet was found washed up near stranraer .\nso-called islamic state group -lrb- is -rrb- has shifted its propaganda distribution to the secure mobile messaging app telegram from twitter , where its accounts have been repeatedly shut down over the past year .\nin recent years , hollywood remakes and re-imaginings of classic fairytales have come thick and fast - all darker , more adult versions of tales that originally appeared in cinemas .\npresident obama has arrived in cuba , an island in the caribbean , for an historic three day visit .\na 20-year-old man has been charged following a collision between a quad bike and a seven-year-old boy in rhondda cynon taff .\na woman said to be at the centre of an abuse ring has been found guilty of child sex offences .\na shop owner who murdered schoolgirl paige doherty in a frenzied knife attack has had his sentence reduced .\nnorwich city 's relegation from the premier league was confirmed as a stunning aaron ramsey strike spurred fourth-placed arsenal to victory .\n`` we 've sucked at dealing with trolls , and we 've sucked at it for years . ''\nthe welsh government has said it was `` extremely concerned '' over news of 27 job cuts in wales by the bbc 's production arm , bbc studios .\nif you do n't remember the name , let me remind you of the carnage : back wheel rears up , like the hind legs of a bucking bronco ; rider performs a half-twisting front flip ; rider lands on her shoulders , skids off the road and spins onto her front ; rider hangs limp over the kerb , like a rag doll tossed from a car window .\nweather and travel information .\na group of long-finned pilot whales that became stranded on rocks off skye were able to return to open water with help from rescuers on tuesday evening .\nmae cynlluniau gwerth miliynau o bunnoedd i drawsnewid canol abertawe gam yn agosach medd cyngor y ddinas .\na man has died in a huge blaze at a sheltered housing complex in fife .\nnigeria 's former national security adviser , sambo dasuki , has been arrested for allegedly stealing $ 2bn -lrb- â # 1.3 bn -rrb- , his representatives say .\nstarbucks may be complaining of `` global headwinds '' but that did not stop the world 's biggest coffee chain from reporting record annual profits .\nross county 's jim mcintyre is the only premiership boss in the running for pfa scotland 's manager of the year award .\nbrian matthew 's career spanned 60 years of popular music .\nthe situation in gaza is `` simply intolerable and must be addressed '' , foreign secretary philip hammond says .\nhampshire captain james vince says the icc world twenty20 can help put him on the path to playing test cricket .\nyacouba toure and a couple of his friends have gathered around his crackling radio in mali 's historic city of timbuktu , soon after french-led troops captured it from militant islamists .\nchina 's education system is robbing its young people of the chance to become unique individuals , a leading educationalist says .\na zimbabwe conservation group says it wants the head of cecil the lion to be mounted in a case in hwange national park , where he was killed last month .\nthe un security council has authorised the deployment of a un police force to burundi to try to quell violence and human rights abuses in the country .\ninvestment firm alliance trust is to cut costs by # 6m while restructuring its board to become fully independent .\nrussia has criticised boris johnson 's decision to scrap a planned trip to moscow after discussions with the us .\nbraintree manager danny cowley said the task ahead of his team is `` a brilliant challenge '' after the defeat at barrow .\nrussia says us allegations that it ran a hacking campaign to influence the american presidential elections are `` reminiscent of a witch-hunt '' .\na secondary school placed in special measures by inspectors last month could be closed , a council has said .\nan 86-year-old woman was left on the floor of her south lanarkshire home overnight after being assaulted in a `` horrendous '' attack . '\nprime minister david cameron has said he wants to put tackling corruption at the `` top of the international agenda '' ahead of a london summit on the issue .\ntwo men who claim to have found a nazi train said to be laden with gold have gone public in poland .\ntesco has agreed to sell 150 of its fresh & easy stores to the investment company yucaipa companies .\nipswich town have signed cardiff midfielder emyr huws and reading striker dominic samuel on loan until the end of the season .\nkatie ledecky won her third gold of the rio games as she guided the united states to victory in the women 's 4x200m freestyle relay final .\nfarmers and wildlife campaigners have joined together to try to stop the spread of tb in cattle in cheshire .\nbritain claimed five more gold medals at the rio paralympics , including a best-ever tally of three in the rowing .\nthe search for a scots botanist missing in vietnam is expected to resume later after being abandoned in heavy snow .\nbritain 's olympic silver medallist jessica ennis-hill should `` take time '' to consider her future , her coach toni minichiello has said .\nthe death toll from the current cholera epidemic in haiti has exceeded 500 , the country 's health ministry has said .\na tale of two sentences , drafted in two different capitals , exposes the clear blue water between london and brussels .\npreston north end manager simon grayson says defender bailey wright `` owes the club a lot '' and hopes he will agree a new deal with the championship club .\na church in west yorkshire has recruited a new vicar following a video job advertisement sung by a choir of children .\na man killed his wife and then took their dog out for a walk while he hoped their house would burn down with her inside , a court has heard .\na major provider of the nhs non-emergency telephone service in england is seeking to pull out of its contracts due to financial problems .\nsenior cabinet ministers will push the uk 's brexit agenda on three different continents later .\nnigeria 's treasury is `` virtually empty '' , president muhammadu buhari has said .\ndavid cameron has been telling reporters that this election campaign is not about photo opportunities but more about the uk 's long term economic revival .\ninstitute 's riverside stadium is likely to be unavailable for some time after their pitch was badly damaged by flooding on tuesday night .\na baby who was born in a toilet and later died of sepsis could have survived if he had been given antibiotics , an inquest has heard .\na man has lost hk$ 2m -lrb- $ 257,730 ; # 175,530 -rrb- in cash and valuables from his hand luggage , during a flight into hong kong , police said .\nthe nigerian army says that one of the abducted chibok schoolgirls has been found , along with her six-month-old baby .\npreston north end have signed forward tom barkhuizen from league two side morecambe for a compensation fee with the deal to go through on 1 january .\ncritics have praised one of the largest collections of henri matisse 's `` cut-out '' artworks ever assembled , for an exhibition opening at tate modern .\ncommuters were given a surprise upgrade when a luxury train arrived for their daily journey to work .\ncheck out these superhero-eye views of cities around the world !\nactivity in the uk 's industrial and construction sectors shrank in february , new figures show .\ncoach stephen keshi met with the nigeria football federation 's -lrb- nff -rrb- disciplinary committee on tuesday to answer questions on why his name appeared on a list of candidates to manage ivory coast .\na celebration by football fans in the us city of seattle grew so loud on monday evening it registered as a minor earthquake , a research group has said .\nthe democratic republic of the congo has been urged to investigate at least 421 bodies found in an unmarked burial ground in the capital , kinshasa .\na judge has ruled that the world champion us women 's football team does not have the right to strike .\nst johnstone have secured striker steven maclean on a contract extension .\nsecurity forces are controlling who enters the main office of the crisis-hit nigerian football federation in the capital abjua , bbc sport has learned .\nscottish labour can no longer turn to the `` big beasts '' as it recovers from the general election defeat , according to the party 's only mp in scotland .\nhead teachers say it is `` disappointing '' that chancellor philip hammond 's autumn statement failed to address funding pressures faced by many schools and colleges across england .\ndrivers with convictions for offences such as assault , housebreaking and drink-driving were issued taxi licences last year , a bbc scotland investigation has revealed .\ncharlie and lola creator lauren child has been named as the new children 's laureate , taking over from goth girl author chris riddell .\na 34-year-old woman who was injured in an attack by a knifeman on a swiss train has died in hospital , police say .\nplans to cut a school transport budget have been deferred by leicestershire county council after opposition from residents and councillors .\nthe us supreme court appeared to be evenly divided over a case about faith-based groups indirectly providing contraception in employee health plans .\na michigan woman has been charged with recklessness after she fired on a pair of shoplifters .\nan atomic-scale fingerprint could boost the security of connected devices , according to british scientists who have developed it .\nmeat-eaters `` easily cheat , lie , forget promises and commit sex crimes '' , according to a controversial school textbook available in india .\nengland spinner moeen ali expects his second summer of test cricket to prove more difficult than his first .\nthe price of oil fell to its lowest level since 2009 as global production continues to remain high .\na los angeles hospital has paid $ 17,000 -lrb- # 11,800 -rrb- to hackers after its computer systems were taken offline by ransomware .\nwriter shane meadows is to make a one-off christmas special to follow on from the this is england film and tv series .\nthree cleaners who went on strike over a pay dispute have been sacked in a move branded scrooge-like by one mp .\nturkey has accused russia of again violating its airspace and warned it would `` face consequences '' if such infringements continue .\navon and somerset 's police chief has been temporarily moved away from his job following a misconduct hearing .\nengland hammered home their advantage over australia in the first test on a fast-moving third day to put themselves in pole position to take the lead in the ashes .\ndefender dorian dervite has signed a new one-year contract with bolton .\nfearing a federal raid , a south dakota native american tribe is burning its marijuana crop , which it had planned to sell in a resort on its land .\nnottingham forest striker britt assombalonga has signed a new five-year contract .\nsurrey wrapped up their first championship win of 2016 , beating nottinghamshire by 228 runs .\nbayern munich assistant manager paul clement is the leading candidate to become swansea city 's new manager - but former birmingham city boss gary rowett remains in contention .\na woman says she is considering rebranding her business because it shares its name with a middle east extremist group .\na woman died after a hospital did not accept her for neurosurgery citing an intensive care bed shortage , an inquest heard .\nan independent investigation into the disappearance of 43 mexican students nearly a year ago has rejected the government 's account of events .\nemotional tributes have been flowing in for the two men and two women killed on tuesday at the dreamworld theme park on australia 's gold coast .\nshooter helen housby believes england 's new central contracts are `` a step in the right direction '' to help the team compete with australia and new zealand .\nthe number of short-finned pilot whales who have died after they were stranded on a beach in the indian state of tamil nadu has risen to 73 , officials said .\nthe world 's first full-scale floating wind farm has started to take shape off the north-east coast of scotland .\nirony of ironies , is it possible that the european court could block us from leaving the european union ?\nan aberystwyth university student is creating an app to help people living or travelling in high risk areas .\nsam allardyce has resigned as crystal palace manager five months after he joined the premier league club .\nsouth african judges have heard an appeal on whether athlete oscar pistorius should be convicted of murder instead of culpable homicide .\nthe ringleader of a gang who ran a `` cash-for-crash '' scam involving bus passengers has been convicted of fraud .\nwith cross-channel disruption set to continue through the summer as french ferry workers strike , calls are mounting for solutions to be found to the traffic gridlock that hits kent as a result - but how do you solve a problem like operation stack ?\nsinger ed sheeran has announced he is `` taking a break '' from social media as he is `` seeing the world through a screen and not my eyes '' .\nluke berry scored twice to inspire cambridge united to victory over league two strugglers cheltenham town .\nscotland recovered from a woeful first-half performance to overhaul ireland and keep their six nations championship hopes alive .\nhundreds of aerospace jobs could be lost if a factory is forced to `` significantly downsize '' or close , it has been claimed .\nrights watchdog amnesty international has called on india to revoke a draconian law which provides immunity to security forces accused of human rights violations in kashmir .\nan inquest into the death of an 11-year-old boy found hanged has been adjourned after it emerged a `` choking game '' was `` all over the school '' .\nvenezuela says two light aircraft have been shot down after entering the country 's airspace over the weekend .\na fire service has issued a warning after two rideables - also known as ` hoverboards ' - burst into flames .\nveteran us congressman chaka fattah has been convicted of multiple frauds which prosecutors said were aimed at enriching himself and preserving his political career .\nthe first guantanamo detainee to be tried in a us civilian court has been sentenced to life in prison .\nhawaii has become the first us state to file a suit against president donald trump 's revised travel order .\nmae swyddog heddlu aeth i ' r gwesty ble cafodd dynes 22 oed ei lladd wedi dweud wrth gwest nad oedd hi 'n siŵr os fyddai hi 'n goroesi pan aeth hi mewn i ' r ` stafell .\none of the first things many of us notice when we meet someone is what sort of perfume or aftershave they 're wearing .\nireland 's shane lowry holds a two-shot lead at the us open with the leaders still to complete their third rounds .\nno other parties were involved in the death of a british woman at an istanbul airport , her family believes .\nwales players want manager chris coleman to sign a new contract , according to midfielder joe ledley .\nfleetwood boosted their survival hopes by beating scunthorpe for just their second league one win of the year .\nfour men arrested in the uk following an international counter-terrorism operation have appeared in court to face extradition proceedings to italy .\na man police said they wanted to trace in connection with a murder and attempted murder in paisley has been arrested .\nthe mother of a teenager who died when the car she was driving plunged into a river in argyll has described her as the `` perfect daughter '' .\nthe snp 's `` listening exercise '' on scottish independence , which was announced by nicola sturgeon in september , is due to end .\nnico rosberg set the pace just ahead of ferrari and red bull as lewis hamilton hit trouble in second practice at the singapore grand prix .\nnew rules forcing broadband firms to be clearer in adverts on the costs of their contracts have come into effect .\npolice in edinburgh are investigating after 25 cars were vandalised in one night across the north of the city .\npeople who were mis-sold payment protection insurance -lrb- ppi -rrb- can receive widely differing compensation , a bbc investigation has found .\nhalf-back marc sneyd has extended his contract at hull fc until the end of 2019 after the club took up a two-year option on his existing deal .\nnigeria international defender kenneth omeruo has joined turkish super lig side kasimpasa on a season-long loan deal from english champions chelsea .\nmore than $ 11m -lrb- â # 8.8 m ; â ` ¬ 10.3 m -rrb- is reportedly missing from the gambia 's state coffers following the departure of long-time leader yahya jammeh , who clung to power for nearly two months despite losing the presidential election in december .\nscreenwriter david solomons has won the waterstones children 's book prize with his debut about an 11-year-old boy obsessed with comics .\nhundreds gathered for a women 's march in belfast on saturday as part of an international protest on the first day of donald trump 's presidency .\nwarren gatland 's 41-man squad for the british and irish lions tour of new zealand this summer .\na # 250m government scheme encouraging councils to keep or bring back weekly bin collections is opening for bids .\nten members of a gang who conspired to supply # 5m worth of heroin have been jailed .\na school has changed its name from `` isis '' because the word has become associated with the so-called islamic state .\nimagine a shopping trolley that moves as fast as a car - well here it is !\nthe united states women 's team goalkeeper hope solo has been suspended for 30 days by us soccer following an incident during a training camp .\ndefending champions hull fc will play leeds rhinos in the semi-finals of the challenge cup .\nactor michael c hall is to perform a tribute to david bowie at this week 's mercury music prize ceremony .\nthousands of people are homeless after a powerful cyclone hit the islands of vanuatu on saturday .\ngoogle has confirmed it has closed its internet drone project titan , three years after it bought the business .\na woman has died following a crash involving two cars on the a9 at dalwhinnie in the highlands .\na public inquiry into plans to build a # 325m motor racing circuit in the south wales valleys has started .\ndeutsche bank has warned further cost cutting might be needed as profits tumbled in the second quarter amid low interest rates and volatile markets .\nkayne mcclaggon scored twice as barry town united beat league two newport county 2-0 at jenner park .\n`` i want to make games when i grow up . ''\nrangers were much too slick for queen of the south as they won comfortably at palmerston park in the championship .\nwe 've heard a lot in this election campaign about how much parties say they will save by clamping down on tax avoidance and evasion .\na muslim teacher from neath port talbot has been denied entry to the united states while on a school trip .\na report into the planned new stadium at casement park in belfast has recommended the replacement of senior figures from key posts in the project .\neyes are everywhere online .\nturkey has no plans to send ground troops into syria to fight the islamic state group , the prime minister says .\nmore than 22,000 people from across the world have gathered in the small spanish town of bunol to celebrate the 70th annual tomatina festival by throwing 150 tonnes of squashed tomatoes at each other .\nplans to turn a grade ii-listed building in cardiff bay into a restaurant and flats have been given the go-ahead by the council .\nwest ham united 's final game at the boleyn ground will be an emotional occasion for everyone associated with the club .\njim broadbent will play the detective charged with tracking down the great train robbers in the second of two bbc dramas marking the 50th anniversary of the august 1963 raid .\nolly murs and caroline flack have been confirmed as the new presenters of the x factor .\nderek mcinnes is convinced his aberdeen side will finish second in the premiership , despite their 3-0 home defeat to third-placed rangers .\naaron ramsey and his wales team-mates say they are not worried about who they might face in the last 16 at euro 2016 .\nbradford city have signed afc wimbledon midfielder jake reeves for an undisclosed fee on a three-year deal .\na section of cliff in bournemouth remains closed after a landslip damaged a cliff railway lift and crushed a toilet block .\ninside the metropolitan police service 's most secretive section , which investigates bad apples in the force .\nthe most advanced flight incubators in the uk for sick babies will be used by wales air ambulance later this month .\na huge ice and snow sculpture festival has kicked off in japan .\nleinster produced a strong finish to send defending champions glasgow crashing to a third defeat in their five pro12 matches this season .\ninvestigations are under way after the death of 72-year-old man at a flat in saltcoats , in north ayrshire .\nfewer scottish businesses have gone bust since the start of the year , according to new figures from professional services firm kpmg .\ncardiff blues moved to the top of pool 4 in the european challenge cup with a comfortable home win over pau .\nthree special school staff members were arrested after a teenage pupil was seriously injured in a swimming pool .\nrelegated cheltenham town have signed former oldham striker amari morgan-smith on a one-year deal .\nmore than 200 businesses in part of edinburgh have been found to be breaking rules on using communal bins .\nindia 's censor board chief has resigned after reports that a film rejected by her panel has been cleared for release .\nleyton orient have appointed former chief executive matt porter to their board of directors following nigel travis ' takeover on 22 june .\nindia is a huge consumer of milk - it 's used to make yoghurt , cheese and a wide range of indian sweets .\npolice searching for a man who went missing last month have found a body on the banks of the river severn .\nroyal bank of scotland -lrb- rbs -rrb- has been fined hk$ 6m -lrb- # 460,000 -rrb- by hong kong regulators after it failed to detect a series of unauthorised transactions by one of its traders .\nlava from a volcano in hawaii that has been erupting for two months , has been moving towards the coast .\nitaly 's matteo trentin sprinted to victory on stage four of the vuelta a espana as britain 's chris froome retained the leader 's red jersey .\nee has come out on top and vodafone last in one of the uk 's most comprehensive tests of mobile networks .\npatrick reed won his first tournament of the season at the barclays to seal his spot on the usa ryder cup team .\nburma 's pro-democracy leader aung san suu kyi has been named as the guest director of the 2011 brighton festival .\na colombian air force plane has crashed in the north of the country , killing all 11 of those on board .\na man has been found not guilty of kidnapping his ex-partner 's pet cat .\nisrael has issued a warning of imminent `` terrorist attacks '' on tourists in india , advising its citizens to avoid public places during the new year celebrations .\na victim of child abuse has criticised the decision to hold an inquiry to investigate more than 60 institutions , including several top private schools .\nretail sales fell in may as shoppers began to feel the effect of higher inflation .\nfacebook has confirmed that it is opening up its messenger service to third-party developers , allowing them to add functions of their own .\nthree years ago , i hired a fake girlfriend .\nsome people say they are addicted to facebook and ca n't go for long without checking their status .\nharry potter and the cursed child writer jack thorne is joining new tv drama electric dreams : the world of philip k dick .\nbournemouth have signed norwich midfielder andrew surman for an undisclosed fee on a three-year deal .\na volcano has erupted in central costa rica , belching smoke and ash up to 3,000 m -lrb- 9,840 ft -rrb- into the air .\nhome secretary theresa may has praised the `` extraordinary dignity and determination '' of the hillsborough families .\nsaracens ran in six tries to thrash oyonnax and take control of their european champions cup group .\nthe police officer leading the search for missing leicestershire teenager kayleigh haywood has told her family to prepare themselves for the worst .\nexeter scrum-half will chudley is out for two months with a chest injury .\na teenage terror suspect who branded mp jo cox 's killer a `` hero '' has told a jury he no longer holds that view .\nnorthern ireland 's economy grew slightly in the second quarter of this year , according to the latest official figures .\nnico rosberg set the pace as world champions mercedes continued their ominous form on the first day of the final formula 1 pre-season test .\nbelfast-based firm equiniti has been selected to provide a cloud-based system for the passport office .\nturkey has hit out at the united states over criticism of its ongoing role in the conflict in syria .\nthe family of a teenage girl who drowned on a sailing trip have launched a safety code in her memory .\na bbc spotlight poll strongly indicates voters in northern ireland would reject a united ireland in a border poll .\neach day we feature a photograph sent in from across england .\ndemonstrations have been held outside the french consulate in the indian city of bangalore demanding the arrest of a french official accused of abusing his daughter .\njupiter 's great red spot - a hurricane three times bigger than earth - is blasting the planet 's upper atmosphere with heat , astronomers have found .\nthe fa cup final might be one of football 's most glamorous occasions , but what is the competition really like in its earliest stages ?\nthe jury at ched evans ' retrial for rape has been told not to judge the `` morals '' of those involved .\ntwo men involved in an international drugs operation that included buying illegal substances on the ` dark web ' using bitcoin currency have been jailed .\ncharter communications has agreed to buy media giant time warner cable in a deal which values the company at $ 78.7 bn -lrb- â # 52bn -rrb- .\npoliticians have been reacting to news that a prison officer injured in a bomb attack in northern ireland earlier this month has died .\na senior adviser to russian president vladimir putin has accused the us of meddling in ukraine , in breach of a 1994 agreement over non-intervention .\nan mp for bangladesh 's main opposition party has been sentenced to death by a war crimes court for charges including murder and genocide during the 1971 war of independence with pakistan .\nus clothing brand abercrombie and fitch has attracted an online backlash with a tweet seen by many as implying gay pride is not just for gay people .\nfeatherstone 's shaun pick and south wales ' ashley bateman have been banned for two years for doping offences .\nbbc sports personality of the year 2014 , sse hydro , glasgow , sunday 14 december .\nwhat would you do if you had to travel miles to go to the toilet , to avoid being changed on a dirty floor or in the back of a car ?\nengland put in a dominant display to win the fifth and final one-day international against west indies by five wickets and take the series 3-2 .\na man has been charged with attempted murder after a tube passenger was allegedly pushed into the path of a london underground train .\nfive journalists belonging to a libyan tv crew have been found dead , eight months after they were kidnapped .\na nigerian man accused of trying to bomb a us-bound flight on christmas day 2009 has been sentenced to life in prison without parole .\nthe heir to the greggs bakery business has gone on trial accused of sex offences against boys .\na new organisation has been set up in northern ireland to support people who suffer from rare diseases .\na former brothel keeper has denied accusing ex-prime minister edward heath of involvement in child sexual abuse .\nten men have been charged in connection with a collision between a quad bike and a sports car which killed four people from west yorkshire .\nit may be five months until halloween , but for one gardener it 'll be a nail biting wait to see if his seed grows into the biggest pumpkin in the world .\npolice have named a woman killed in a crash between a car and van near peebles in the borders .\na former professor at a prestigious music school used his `` power and influence '' in order to rape a female student , a court has heard .\nhuman rights should be taught from the earliest age possible to change attitudes to bullying , according to a holyrood committee .\nportsmouth have secured their league two play-off place with a victory at fellow promotion hopefuls afc wimbledon .\nthe clean-up operation is continuing in wrexham after heavy rain caused flooding .\nthe professional tennis season comprises of hundreds of tournaments around the world and one of the most prestigious is wimbledon .\nformer burnley midfielder joey barton 's suspension from football for breaching betting rules has been reduced by almost five months after an appeal .\nthe killers ' frontman brandon flowers has won rave reviews for his new album - but he tells the bbc he 's uncomfortable striking out on his own .\nrail upgrade works affecting people travelling between south wales , bristol parkway and london paddington have begun .\nbritish number two kyle edmund is out of the brisbane international after losing to world number four stan wawrinka in the quarter-finals .\nthe us director of national intelligence has said he `` never felt pressured '' to influence the inquiry into russia 's political meddling .\na legal challenge to try and stop overhead cables being erected across parts of rural conwy and denbighshire has been dismissed by the high court .\nmayo 's 65-year wait for an all-ireland senior football title goes on after holders dublin edged a 1-15 to 1-14 win in the final replay at croke park .\nthe world 's most valuable individual prize - the mo ibrahim prize for good governance in africa - has gone unclaimed yet again .\nisraeli pm benjamin netanyahu has issued a stern public rebuke to the military deputy chief of staff .\na gold supercar with l-plates was seized by police in west london , leaving its driver by the roadside .\na team of engineers will use 3d printing technology to reconstruct the missing motor of a rare wartime german code machine .\na huge pillow fight involving cadets at a prestigious us military academy to mark the end of summer training left at least 30 soldiers injured .\nusing windows 8 devices could involve signing on by tapping , circling or touching images .\nthe family of a man who was punched in the face as a patient at a private hospital in bristol is calling for the incident to be re-investigated .\na court in the indian capital has formally charged a driver of the uber web-based taxi firm with the rape and kidnapping of a passenger last month .\nghana 's government has scrapped a controversial ban on newly qualified nurses travelling to find more lucrative employment abroad .\nworld number one dustin johnson `` felt good physically '' after making his return to competitive action at the wells fargo championship .\ncharacters based on a nickelodeon cartoon were dropped from a northern ireland council 's christmas celebrations - after it emerged they were unauthorised .\nmark selby made the most of a tentative start by marco fu to build a 5-3 lead in the opening session of their world championship semi-final .\na council is to seek a civil injunction and damages against one of its own councillors and other members of the public .\nchinese businessman dr tony xia has completed his # 76m takeover of championship club aston villa .\nfive 16-year-old boys have been arrested in connection with the fatal stabbing of teenager stefan appleton in north london .\nin the wave of dissent sweeping over the arab world , an old lesson is being re-learnt : that armies are the key to unlocking a revolution 's potential .\npeterborough united defender miles addison has signed a new one-month contract with the league one side .\nwarrenpoint town say they are `` shocked '' by an ifa ruling that confirmed their relegation from the premiership and saw carrick rangers stay in the top flight .\nyeovil town have signed midfielder alex lawless on a one-year deal .\npolice at the download festival have kept their promise and have been posing for fan photos despite extra security .\nif , as we are constantly being told , the world 's banking system has been rebuilt and strengthened so that it can resist and survive even the toughest of economic conditions , why does it always seem to be banking shares that fall the most when the markets get nervous about the prospects of another crash ?\ncooling chemicals that play a key role in refrigeration and air conditioning are likely to be rapidly phased out if delegates can reach agreement in rwanda this week .\nthe uk unemployment rate has fallen to its lowest rate in more than a decade but wage growth has slowed .\nformer barcelona midfielder xavi believes pep guardiola `` can change the mentality of english football '' during his time at manchester city .\nnotts county have signed midfielder ryan yates on a season-long loan from neighbours nottingham forest .\ntwo men are facing life sentences for stabbing a man they blamed for the drugs death of a friend .\nbhutan is a tiny and remote kingdom nestling in the himalayas between its powerful neighbours , india and china .\na man who survived a cow trampling attack in which his brother was killed has told the bbc public footpaths need to be made safer .\ngary waddock has returned to aldershot town for a second spell as manager .\na prominent welsh labour eu supporter has said the public largely do not understand what is meant by the terms `` soft '' or `` hard '' brexit .\nthe clash between apple and the fbi over whether the company should provide access to encrypted data on a locked iphone used by one of the san bernardino attackers highlights debates about privacy and data security which have raged for decades .\nneglect and gross failure by hospital staff to quickly attempt resuscitation contributed to the death of an antiques roadshow expert , an inquest has ruled .\ndoes hilary benn 's barnstorming performance in the syria debate mean he 's about to displace his leader in some kind of labour palace coup ?\nulster pair iain henderson and tommy bowe are set to make a return from injury for the end of season run-in .\ntwo men have been assaulted by three masked attackers at an address in the craigmillar area of edinburgh .\na male osprey has returned to its nest at the loch of the lowes reserve after its migration from west africa .\nstrictly come dancing 's aliona vilani has announced she is leaving strictly come dancing three days after winning the glitterball trophy with jay mcguiness .\nthe number of children put forward for adoption by local councils in england has fallen by almost half in under a year , the latest figures show .\nchina continued their dominance of olympic table tennis as their men 's team beat japan in wednesday 's final .\nhave you heard the one about the computer programmer who bought a failing comedy club in texas and turned it into a million dollar a year business ?\neuropean leagues are free to schedule domestic games on the same nights as champions league and europa league ties after an agreement with uefa ended .\nit is the stuff of boys ' own adventure novels - rugged australians dropping into wild saltwater crocodile nests to snatch day-old eggs from territorial females .\nthe stories of women who were unknowingly involved in relationships with undercover police officers are revealed as their testimonies to mps are made public .\nbeth mead , the leading scorer in women 's super league one , has signed a new four-year contract with sunderland .\nclimate change could disrupt up to a third of rail services travelling to and from the south west within the next 100 years , a study suggests .\nclimate scientists have taken issue with some of the research used by president trump to bolster his case for withdrawal from the paris agreement .\nmanchester city have accepted a football association anti-doping charge after failing to notify officials of player whereabouts for drugs testing .\na killer who boasted he was the `` hardest man '' in town has been found guilty of murdering a soldier in powys .\na car driver has been stopped by police on the motorway after driving at speeds of up to 132mph .\na levy which charges employers for their staff to park at work has begun in nottingham .\nthe parents of a teenage girl who was hit by a scrambler bike and put into a medically-induced coma say her future remains uncertain .\npin badges have been returned to a fallen gallipoli soldier 's grandson whose luggage was mistakenly taken from a train .\nrenewed protests have hit ethiopia 's oromia region , a day after at least 55 people were killed in a stampede triggered by clashes between police and demonstrators at a religious festival .\nbristol city briefly climbed to the summit of the championship table by ending cardiff city 's unbeaten start .\njames milner 's late penalty gave liverpool a hard-fought victory over swansea , increasing the scrutiny on swans boss francesco guidolin .\ntwo of wales ' four police forces have been told they must improve how they keep people safe and reduce crime .\nindian police have arrested nine people they suspect of colluding to illegally construct a high-rise residential building in mumbai which collapsed , killing 74 people .\ntottenham manager mauricio pochettino says 22-year-old striker harry kane is not for sale at any price .\nthe reality check team answers more of your questions about the implications of the uk 's vote to leave the european union .\nbritain 's kyle edmund is through to the second round of the china open following a straight-sets win over spain 's guillermo garcia-lopez .\nedinburgh will play their home matches at myreside for the second half of next season .\nwhen the attack came , it took hold quickly and brought a screeching halt to many businesses across ukraine .\nfrench actress madeleine lebeau , the last surviving cast member of the classic 1942 film casablanca , has died at the age of 92 , her family says .\nceltic were `` scared and frightened '' in their champions league exit to malmo , said boss ronny deila .\nscottish championship strugglers alloa athletic have appointed jack ross as their new manager following the resignation of danny lennon .\nthe ex-chair of the independent monitoring commission -lrb- imc -rrb- has said he does not believe bringing it back would solve the latest stormont crisis .\nmacclesfield moved within three points of the national league play-off spots after recording a 1-0 victory over eastleigh .\nbillions of pounds owed in child maintenance may never be recovered , government accounts show .\nlebron james became the first player to score 20,000 points for the cleveland cavaliers when the nba champions beat oklahoma thunder 107-91 .\na china eastern airlines plane has had to turn back to sydney airport after a technical failure which left a hole in an engine casing .\npatrick roberts believes his loan spell at celtic will prepare him for the challenge of trying to break into the manchester city first team .\nseven boys below the age of 18 have been sentenced to 10 years in jail each in indonesia for the gang rape and murder of a 14-year-old girl .\nthe us president has urged kenya to hold `` visible '' trials to tackle corruption , which he said could be the `` biggest impediment '' to further growth .\nfree-runners gathered to remember a parkour enthusiast who died in an accident on the paris metro .\nkenyans have been voting in a key election - the first since the disputed contest of december 2007 that triggered weeks of bloodshed .\nindian restaurants are closing in scotland because strict immigration curbs mean it is difficult to recruit top chefs from the indian sub-continent , it has been claimed .\n`` if peace can not be brought , how can humanity be brought to the conduct of the war ? ''\npaul lawrie hopes foot surgery this winter will help breathe new life into his golfing career at the age of 47 .\nsplits within the eu on the relocation of 120,000 migrants have been further exposed as leaders hold an emergency meeting in brussels .\nitaly 's government has criticised leaders in the north of the country for their refusal to host any more migrants rescued from the mediterranean .\nan investigation into how a small plane narrowly avoided two men and then struck a bungalow on a farm in lincolnshire is continuing .\nthe psni has contacted more than 100 soldiers as part of the investigation into bloody sunday .\na three-day curfew is under way in sierra leone to let health workers find and isolate cases of ebola , in order to halt the spread of the disease .\nrelatives of the 96 people who died at hillsborough have told the home secretary they want a `` hillsborough law '' to compel public officials to tell the truth at inquiries .\na man has been injured when he was run over by a jcb forklift handler vehicle in a field .\nblackpool football club 's chairman karl oyston has won # 30,000 in libel damages from an abusive fan who claimed mr oyston threatened him with a shotgun .\nan 11-year-old migrant from afghanistan has been speaking to newsround about being separated from his father during a year long trip to try and reach the uk .\nulster moved up to second in the pro12 standings thanks to this bonus-point win over treviso at kingspan stadium .\nbuilding work is due to start next month on the first new council homes in flintshire for more than 20 years .\ntwo british-built earth-observation cameras have been successfully installed on the outside of the international space station -lrb- iss -rrb-\nulster bank is to sell off agricultural loans in northern ireland with a face value of about # 15m .\nat least three people were wounded , two seriously , when shots were fired in the german city of frankfurt on thursday .\nthai police admit they are struggling to find the killers of two british tourists , after it emerged crime scene dna did not match that of any suspect .\nrotherham united have signed former nottingham forest centre-back kelvin wilson on a one-year contract .\na 101-year-old man accused of child sex offences was described as a `` monster '' by an alleged victim .\nstriker sam vokes is aiming for promotion and a place in wales ' euro 2016 team after signing a new contract with burnley .\nyvette cooper has been urged to `` show her passion for change '' by a welsh government minister backing her for the labour leadership .\nturkey has blocked direct access to the tor anonymous browsing network as part of a wider crackdown on the ways people circumvent internet censorship .\nhuman rights watch says it is confident photos smuggled out of syria by a defector in 2013 showing 6,786 people who died after detention are authentic .\nmexico 's football federation -lrb- fmf -rrb- has asked a `` small group '' of its fans to stop a chant fifa says is homophobic .\nlord elis-thomas left plaid cymru to sit as an independent am because the party was not `` serious '' about taking part in the labour-led welsh government , he has said .\nengland batsman nick compton says his approach to the game does not make him an intense character .\none man has been killed and another seriously injured in a double stabbing in birmingham .\nthe chairman of the airports commission has rejected gatwick 's criticism of its report recommending expansion at heathrow .\na man who died during a shooting at a pool party in surrey has been named as 34-year-old ricardo hunter .\nstuart bingham may pull out of the masters if his wife goes into labour with their third child .\na 19th century factory , once a grand beacon of nottingham 's industry , has been largely reduced to ashes and rubble after a fire consumed it for more than a week .\nengland beat new zealand 29-21 in rotorua to finish the international women 's rugby series unbeaten .\na retired tv producer is to appeal against his conviction for trying to hire a hitman to kill his partner .\nvillagers who set up their own speed monitor say they have recorded more than half a million drivers breaking the 30mph limit since november 2015 .\nthe cell behind the barcelona van attack had planned to use explosives against monuments including the city 's famous sagrada familia church , a suspect has told a madrid court .\npresident donald trump has fulfilled a campaign pledge by signing an executive order to withdraw from the trans-pacific partnership -lrb- tpp -rrb- .\none of the `` finest '' portraits of the jacobean era has been bought so it can remain at its home in mid wales .\nluton town have released five players , but craig king and dan potts are to be offered new contracts .\npeople who have been flocking to fife to see a whale which has been breaching in the firth of forth are being warned from `` making any attempts to approach or actively pursue '' it .\nbritain 's greg rutherford won the long jump at the great north city games in newcastle , in his first competition since winning olympic bronze in rio .\na newspaper has shown a home video of the queen when she was a young girl , raising her arm like a nazi salute .\nafter a chance encounter on a rugby tour 30 years ago , fijian farmer sireli matavesi swapped the south pacific sunshine for the bleak darkness of a cornish tin mine .\ncouncillors have voted to ban buses and taxis from queen street in oxford for six months because of safety concerns .\na number of olympic athletes have been competing in rio with large red circles on their skin - but what are they and why have they got them ?\nscotland 's world cup qualifying hopes are close to be being snuffed out following a 3-0 loss to england at wembley .\npharmaceutical firm glaxosmithkline -lrb- gsk -rrb- and some generics companies have been fined for being anti-competitive .\nlewis hamilton says he will `` take it like a man '' if he loses this year 's formula 1 title to mercedes team-mate nico rosberg .\nchris powell has not spoken to nigel pearson since the derby county manager was suspended by the club on tuesday .\nthe cleveland indians edged 2-1 ahead in the world series with a 1-0 victory at chicago .\na high-profile bitcoin developer has said the crypto-currency has failed and he will no longer take part in its development .\na new record for a blue period picasso has been set at auction in new york .\nnigel farage has been hired as a commentator for american tv network fox news , the broadcaster has announced .\ntwo former first ministers of scotland have hit out at labour 's treatment of johann lamont who has resigned from the post of scottish party leader .\na police drugs team worker was drafted in to help with a roadside drama as he helped deliver a baby .\nthe french energy giant edf is expected to make its long-awaited final investment decision on a new nuclear power plant at hinkley point in somerset next week .\njaguar land rover -lrb- jlr -rrb- plans to create 1,700 jobs at its plant in solihull as part of a # 1.5 bn investment in expanding its product range .\nfrankie dettori rode 14-1 shot galileo gold to a surprise victory in the first classic of the 2016 flat season , the 2000 guineas at newmarket .\na man in his early 20s has been arrested by police investigating a serious sexual assault on a pensioner in the republic of ireland .\na footballer has offered to pay for the damage to a fan 's ceiling , after they punched the air - and the ceiling - in celebration of him scoring a goal .\na 30-year-old man arriving in the uk on a flight from turkey has been arrested at heathrow airport by counter-terror police .\naustralia has expelled an israeli diplomat saying israel was behind the forging of australian passports linked to the murder of a hamas operative in dubai .\na man who admits he `` can not knit a stitch '' is hoping to cover the streets of cambridge with knitted bunting and wool artwork during the tour de france .\nwrth i ' r swyddfa gartref gyhoeddi # 1m i helpu cymunedau noddi ffoaduriaid mae pryder ynglŷn â pha mor gymhleth yw ' r broses .\na scottish salmon producer has reported third-quarter losses after suffering an `` unprecedented '' level of deaths at its fish farms .\nnorthern ireland 's economic growth will remain the lowest of the 12 uk regions in 2015 , a new report has said .\naustralian rower sarah tait , who won silver at the london olympics in 2012 , has died aged 33 .\nthe mother of a schoolgirl who police believe was killed by a foreign convicted murderer said she was stunned he was not being monitored .\nas people across cash-strapped greece wait to vote in a referendum on sunday on whether to accept proposals made by creditors , what can be learned by examining similar economic crises in iceland and cyprus ?\na british teacher living in spain has been arrested for allegedly storing and sharing sexual images of children .\nannan athletic moved into the league two play-off places , routing montrose .\nthousands of jordanians have attended a protest demanding political reforms in amman , hours after king abdullah called early parliamentary elections .\na woman accused of murdering her baby son has been remanded on bail at a mental health facility .\nreducing the number of councils in wales from 22 to eight or nine would cut the cost of local government , the public services minister has said .\nschoolchildren will perform their own work at this year 's proms .\ngopro 's chief executive has confirmed it will make its own quadcopter drones .\nfunding of up to # 200m has helped create new jobs at a highlands engineering company .\nbright neon strips of light that punctuate the dark skies of jeddah in saudi arabia caught the eye of celine stella , who set out to photograph them whenever she had a spare moment .\nmusician koffi olomide has been taken into custody in the democratic republic of congo , days after he was deported from kenya for allegedly kicking one of his dancers at an airport in nairobi .\nthe amount of traffic using wales ' biggest hospital as a `` rat run '' and causing gridlock has dropped by 7 % after changes were made to the roads .\nthe sound of the first cuckoo in spring is a familiar one in the british countryside .\na # 9.2 m scheme for 2,000 solar panels to be installed on council houses in kirklees has been given the go ahead .\n`` i was used to the hustle and bustle , the crowd on the floor , '' says alasdair haynes .\nthe former president of peru , alberto fujimori , has said he will publish excerpts from his memoirs on the social media websites twitter and facebook .\nbbc ni political reporter stephen walker meets lord bannside to discuss the anniversary of the signing of the ulster covenant .\nnight-vision goggles are to be used by council staff to catch dog owners who do not clean up after their pets .\nscotland 's two busiest airports have recorded their best january on record , following a marked increase in demand for international travel .\njohn higgins reeled off three centuries from 7-7 to beat stuart bingham 10-7 in the final of the china championship .\nus technology giant apple raised a better than expected $ 6.5 bn -lrb- # 4.3 bn -rrb- through a corporate bond sale , as part of a plan to return cash to investors .\nsix russian cross-country skiers have had their provisional doping bans upheld after a failed appeal to the court of arbitration for sport -lrb- cas -rrb- .\nnick gubbins scored his first middlesex century as their batsmen closed down somerset 's commanding total at lord 's .\nkaren gillan has come home to scotland to direct her first feature-length film .\ncash can no longer be used on any of london 's buses in a move that transport for london -lrb- tfl -rrb- says will save # 24m a year .\nwith the planned launch of two satellites aboard a soyuz rocket from french guiana later this month , europe is pushing ahead with its own satellite-navigation system , known as galileo .\ncolombians have voted in a runoff election between the incumbent president and a conservative rival .\nrock band muse have secured their fifth number one uk album with their latest effort , drones .\nthe outgoing us president barack obama could visit ireland again after he leaves the white house , the us ambassador to ireland has said .\nthe rmt union , which is embroiled in a bitter dispute with southern railway , says it is to make an official complaint to twitter .\nthe conservatives have taken control of derbyshire county council with a massive swing from labour .\nwidnes head coach denis betts is confident his squad will find their form after a seven-match losing streak in super league .\na us appeals court has rejected president donald trump 's attempt to reinstate his ban on visitors from seven mainly muslim countries .\npolice are appealing for information after a man spat at a train guard following a dispute over a railcard .\nbird flu has been found at a second pheasant farm in lancashire , the department for environment , food and rural affairs -lrb- defra -rrb- has confirmed .\nmortuary staff 's failures to carry out adequate identity checks led to the wrong body being cremated at the funeral of an mep , a report found .\nrussian president vladimir putin has sought to allay israeli concerns at russia 's military build-up in syria .\ngareth southgate has been appointed as england manager on a four-year deal .\nthere 's one big issue for the new uk government that stayed below the radar during the election campaign - trade negotiations between the european union and the united states , known as ttip , the transatlantic trade and investment partnership .\nan attempt at what is said to be the largest jigsaw puzzle on the market was nearly scuppered when four pieces went missing `` somewhere in norfolk '' .\nmany species will not be able to adapt fast enough to survive climate change , say scientists .\na minor league baseball team in utah has cancelled plans to host a `` caucasian heritage night '' in august , according to the team 's website .\nin africa 's schools , old-fashioned , dusty textbooks are gradually being replaced by tablets , computers and mobile phones .\neast stirlingshire claimed an important victory in their bid to move away from the bottom of scottish league two .\nwales ' dream of becoming the first british team in 50 years to reach the final of a major tournament is over after they were knocked out of euro 2016 .\nsports car company tvr is to base its new factory in wales , first minister carwyn jones has announced .\nthe first batch of an experimental vaccine against ebola is on its way to liberia .\ngreat britain 's helen glover and heather stanning successfully defended their olympic title by winning gold in the women 's pair at rio 2016 .\ntwo more people have died of injuries sustained in friday 's bucharest nightclub fire , doctors say , raising the death toll in the disaster to 29 .\nhereford united have been expelled from the football conference following the club 's failure to pay their bills .\na naval diver who searched the wreck of hms coventry after it was sunk during the falklands has described how he was told to ensure secret information from the ship did not get into the wrong hands .\nthe family of a young musician killed in a car crash is aiming to fulfil his lifelong ambition to buy land and create an outdoor centre for children .\nthe irish government has been criticised for failing to adequately protect the human rights of vulnerable groups during the recession .\nchampionship strugglers wigan athletic have parted company with boss warren joyce after only four months .\ntwo more people have been arrested over an explosion at a post office by thieves attempting to steal a cash machine from its front .\na # 450,000 heritage lottery grant has helped secure the future of a 400-year-old copper mine in cumbria .\nwelsh liberal democrat leader kirsty williams faces questions from an audience in aberystwyth in the third of a daily series of live tv election specials .\nlaura massaro won her third british title with a straight-set final victory over alison waters in manchester .\nthe 350th anniversary of the great fire of london is being commemorated with a set of six new stamps .\na grizzly bear has attacked and killed a cyclist just outside the glacier national park in the northern us state of montana , police say .\nthe title of best moustache is up for grabs as top lip titans clash in dover for the honour of being crowned owner of the world 's wackiest whiskers .\nsometimes , the simplest explanation is the right one .\na chief constable and police crime commissioner are locked in a row over a # 500,000 office move .\nthe transfer window re-opened on the final day of the domestic season and will close at 23:00 bst on monday , 1 september .\na dorset museum has been given a # 51,900 grant to help commemorate the outbreak of world war i.\ngoogle 's executive chairman eric schmidt has said he is `` perplexed '' by the ongoing debate over the company 's tax contributions in the uk .\nqueen 's university in belfast has been awarded more than # 8m in research funding from an eu cross-irish border scheme .\nextensive damage has been caused to a house in newtownards , county down , during an arson attack .\na man who carried out an acid attack leaving his victim blind in one eye has had his sentence cut by the court of appeal .\nthe public is being asked to provide information on the locations of nine fugitives suspected of serious environmental crimes .\ndenny solomona broke the record for the most tries scored in a super league season as his hat-trick helped castleford beat widnes .\nnews of the retirement of one of ethiopia 's national icons caught most in the country unawares .\ntwo more arrests have been made after a man was found with gunshot wounds in lincolnshire .\nthe turmoil and tragedy of life in the world war one trenches will be replicated at a mid wales castle as part of centenary events .\nzambia coach beston chambeshi says his team is highly motivated for wednesday 's fifa under-20 world cup tie against germany .\nscotland must beat slovenia if they are to resurrect their chances of reaching the world cup finals , gordon strachan has acknowledged .\nbritish gymnast brinn bevan suffered a double leg break while vaulting on saturday , putting in doubt his hopes of competing at next year 's olympics .\na partial , shaky truce between syria and non-jihadist rebels has been extended to the embattled city of aleppo , after us and russian pressure .\nmore than 40 men have been arrested in nigeria over the weekend for performing homosexual acts , police say .\ndamien hirst is to publish his autobiography , promising to lay bare the british modern art world .\na # 9m redesign of a glasgow west end road , known for its eclectic shops and cafes , has been backed by the public .\na 32-year-old man who died after his car crashed on orkney has been named .\na fossil stored in a doncaster museum for 30 years and thought to be a plaster copy has turned out to be a new species of ancient reptile .\ned sheeran and radiohead just found out who they 'll be sharing a campsite with in june - after glastonbury revealed 88 of the acts playing this year 's event .\nprof stephen hawking is to present this year 's bbc reith lecture , with a talk on black holes .\nrevenue in macau 's casinos fell by more than a third in november from a year earlier as china 's corruption crackdown continued to drive away some punters .\nus president barack obama says prospects for a two-state solution in the middle east are `` dim '' after the israeli prime minister vowed to oppose a palestinian state .\nuniversities should help re-unite welsh society after the brexit vote , the education secretary has said .\nwomen 's super league side arsenal have dropped ` ladies ' from their name and become arsenal women .\noil firm royal dutch shell has won approval from the us department of interior to explore for oil in the arctic .\nthe uk will have the fastest broadband of any major european country by 2015 , culture secretary jeremy hunt has said .\nactress doon mackichan has spoken out about the prevalence of rape and sexual violence in contemporary tv drama .\nshares in greggs have jumped more than 10 % after the bakery chain reported stronger than expected sales for the july-to-september period .\nan ashes series in australia will be a `` scary '' proposition for england opener keaton jennings , says former south africa captain graeme smith .\ncampaigners fighting the erection of eight wind turbines in lincolnshire have taken part in a protest march ahead of a public inquiry .\nthe uk 's care system for dying patients with terminal illnesses is lacking and needs a major overhaul , says a damning new report .\na baby hatch in southern china has been forced to suspend work after hundreds of infants were abandoned , overwhelming the centre , its director says .\nthe pound fell against key currencies after an unexpected slip in inflation - seen as easing pressure on the bank of england to lift interest rates .\nedinburgh 's flickering hopes of staying in european champions cup contention were extinguished by leinster .\nmore russian athletes have been banned from competing at next month 's olympics by their sports ' governing bodies .\nalexis sanchez scored twice as title-chasing arsenal beat relegation-threatened hull in controversial circumstances in the premier league .\ntwo teenagers have appeared in court charged with child pornography offences over the alleged cyber-bullying of a canadian girl who took her own life .\ngianluigi buffon thinks serie a referees are overusing the video assistant referee system after juventus conceded a penalty using the method for the second game in a row .\nlondoners face the longest average daily commute in the uk , a study found .\nwestminster should listen to the assembly before triggering the brexit process , the welsh government 's top law officer has said .\nreported incidents of livestock worrying have risen by 55 % , according to police .\nasda is to increase the price it pays its milk supplier to `` a level that will assist '' farmers , the supermarket says .\nsierra leone 's president ernest bai koroma has again refused to sign a bill legalising abortion , saying it should be put to a referendum .\nchampionship strugglers charlton have signed arsenal striker yaya sanogo on loan until the end of the season .\nthe netherlands were beaten in iceland to suffer their second defeat in three euro 2016 qualifiers .\na man who beat a 17-month-old toddler to death with a garden chair has been found guilty of his murder .\nforest green rovers have signed defender mark roberts after his contract at cambridge united was cancelled by mutual consent .\nboris johnson `` should have known better '' when he gave his wife a `` backie '' on his bike while cycling in london , safety campaigners have said .\nsunderland are set to terminate the contract of defender emmanuel eboue after he was suspended by fifa from all football-related activity for one year .\nsaracens centre nick tompkins has signed a new three-year contract with the premiership and european champions cup winners .\none of the leading lawyers in the renewable power sector has criticised the uk and welsh governments for their approaches to green energy .\nwest ham say they are `` disappointed '' with a ruling that the terms of their rental of the olympic stadium from next season should be made public .\nex-nba basketball player lamar odom is being treated in hospital after being found unconscious at a brothel in nevada , authorities have said .\na girl left disabled after being starved of oxygen at birth has been awarded a multimillion-pound compensation package .\nis tony fadell destined to eclipse his former apple workmate sir jonathan ive ?\nus astronomers have managed to peer deep into the atmosphere of jupiter using a radio telescope on earth .\nguernsey fc could be forced to pull out of the fa cup over restrictions imposed on them by the football association .\nthe us army has decided not to allow an oil pipeline to cross under a reservoir on land it controls in north dakota in a move praised by protesters .\nplaid cymru leader leanne wood has accused rival parties of `` dangerous and divisive rhetoric '' in a `` desperate '' attempt to win votes .\nnato has formally ended its 13-year combat mission in afghanistan - heralding the start of a new phase of support for local afghan troops .\nnew cctv footage of missing landscape architect joanna yeates has been released by police .\nshows like transparent mean there are more lgbt -lrb- lesbian , gay , bisexual and transgender -rrb- characters on us tv than ever before , a report has found .\nthe met office has issued an amber `` be prepared '' weather warning for large parts of scotland for friday and christmas eve .\nmerstham will face oxford united at home when they appear in the first round of the fa cup for the first time .\nthe duchy of cornwall was warned of the risk of a `` potentially fatal situation '' at a beach it owns , ahead of a man 's death there last week .\nengland were thrashed in their final international of the summer , losing the sole twenty20 match against pakistan by nine wickets at old trafford .\nmanchester united manager sir alex ferguson says his side will not ease up on their march towards a 20th league title until the job is complete .\na young indian rapper has taken on what she calls the `` undemocratic '' appointment of the new chief minister of southern tamil nadu state .\nwales ' largest independent brewer is planning to open about 30 coffee shops over three years as it diversifies from its traditional pub business .\nplans to demand proof of identity before voting in a bid to combat electoral fraud have been defended by ministers , amid criticism the move is a `` sledgehammer to crack a nut '' .\npolice invoked special stop and search powers after three people were stabbed within 10 minutes in a town centre .\nbrothers ben and tom curry have signed five-year contracts with sale sharks .\na rare cornish bee species could save dwindling populations from a disease that has wiped out millions of colonies worldwide , scientists have said .\na group of primary school children were injured on a trip to a farm when the trailer they were in became detached from the tractor pulling it .\nthe third and final day of the sell-out rock am ring music festival in germany has been cancelled after lightning hurt at least 80 fans , organisers say .\neurope can no longer `` completely depend '' on the us and uk following the election of president trump and brexit , german chancellor angela merkel says .\none of the hatton garden raiders buried his share of the # 14m stash under two family graves , but tried to dupe police by just revealing one , a court has heard .\nreading withstood a burton albion comeback to secure third place in the championship with a thrilling final-day victory at the pirelli stadium .\nthe shape of your glass is probably the last thing on your mind when you are down the pub .\nsports direct has warned that the extreme swings in the pound overnight will hit its profits .\nreanne evans will face former world champion ken doherty in the first round of qualifying as she bids to become the first woman to appear in the main stages of the world championship .\nmore than 100 people are now known to have died in flooding in the eastern indonesian province of west papua .\nforeign secretary boris johnson is to visit moscow in coming weeks , the foreign office has announced .\na common drug could hold the key to long life , in flies at least , according to research .\nmobile phone provider ee has demonstrated helium balloons and drones that could provide 4g mobile coverage following damage to existing infrastructure .\ntwo men and a woman are seriously ill in hospital after a fire in the east end of glasgow .\niraqi forces have paused their advance into mosul due to poor weather , a month after launching an offensive to retake the city from so-called islamic state .\nan app to support those at risk of suicide in the north east of scotland has been accessed by more than 6,000 people in the six months since it launched , bbc scotland has learned .\nwhen it comes to formula 1 , you lot know your onions .\nfollowing the recent spate of bomb threats against jewish community centres and the desecration of graves at cemeteries in philadelphia and st. louis , some muslims have turned to social media to offer to guard jewish sites .\na man has pleaded not guilty by reason of insanity to the murder of his parents at their home in county donegal almost two years ago .\nconsumer goods giant unilever has reported lower-than-expected full-year sales after demand for its products in emerging markets continued to slow .\n`` a bit of a punt '' - the bhs business plan .\nthe uk 's vote to leave the eu has sparked demands from far-right parties for referendums in other member states .\nlast season 's league two play-off finalists exeter opened the new season with a comfortable win against cambridge at st james ' park .\nrod temperton , the british songwriter best known for michael jackson 's thriller and rock with you , has died .\nfrom the moment donald trump 's election victory was confirmed on 9 november , all sorts of businesses have had to keep alert to the fallout of a result they did n't expect .\nstreets of a village were decorated with pink and yellow ribbons for the funeral an ariana grande `` superfan '' killed in the manchester terror attack .\nkaty perry leads the nominations for sunday night 's mtv europe music awards -lrb- emas -rrb- , which are being held in glasgow for the first time .\nmunster have been exonerated by the european professional club rugby -lrb- epcr -rrb- over their management of a head injury sustained by conor murray against glasgow in january .\na lifeboat station is back in service , four days after 25 volunteers resigned in protest against the sacking of a senior crew member .\nformer world number one victoria azarenka saved three match points before winning on her comeback from a year out after the birth of her son .\nindia 's 19-test unbeaten run was emphatically ended as australia beat them by 333 runs in the first of a four-match series .\nplans for more than 1,600 new homes in cardiff look set to be approved .\ndurham county council is seeking a judicial review after a planning inspector refused to re-examine his criticism of proposals for the county .\nlawrence shankland scored twice as st mirren beat second-bottom livingston in the scottish championship .\na computer program called eugene goostman , which simulates a 13-year-old ukrainian boy , is said to have passed the turing test at an event organised by the university of reading .\nfinancial contributions to the garden bridge by london 's public transport network have been limited to # 10m .\na late ian keatley penalty consigned edinburgh to a third straight pro12 defeat at home to munster .\nex-child protection officer peter mckelvie has resigned as an adviser to the independent inquiry into child sexual abuse -lrb- iicsa -rrb- , the inquiry says .\nrecord-breaking performances and packed venues made the london paralympics the most successful ever and many say it has changed the way people look at disability .\nfulham manager slavisa jokanovic has dismissed reports that striker chris martin could return early to derby from his season-long loan at craven cottage .\na section of a space rocket which was found off the isles of scilly , has been dismantled for disposal , its owners have confirmed .\npregnant women are being urged to ask questions of private providers offering a new test for down 's syndrome .\nbrunhilde pomsel , the former secretary to nazi germany 's propaganda boss joseph goebbels , has died aged 106 .\na man from aberdeen hopes to have set a new guinness world record by playing the bagpipes for over 24 hours .\nmae dyn busnes o fodedern ar ynys môn yn honni y bydd ei fusnes yn colli miloedd o bunnoedd yn ystod yr wythnos pan fydd yr eisteddfod genedlaethol yn ymweld â ' r ardal .\nhopes are fading for six climbers who have gone missing on mount rainier in the north-western us state of washington .\nis-hyfforddwr tîm pêl-droed cymru , osian roberts fydd llywydd yr ŵyl yn yr eisteddfod genedlaethol yn ynys môn ym mis awst .\nrussian roman seleznev has been found guilty in the us of running a hacking scheme that stole $ 169m -lrb- # 131m -rrb- .\nthe theft of money from purses at a remembrance sunday event at aberdeen harbour has been branded `` disgraceful '' by police .\na denbighshire road has been reopened after a boy was hit by a car , north wales police says .\nscientists have uncovered the first evidence of live births in the group of animals that includes dinosaurs , crocodiles and birds .\na council has been accused of a `` major administrative cock-up '' after failing to make an insurance claim for up to # 1m .\nmaesteg harlequins lock ryan watkins has become the 12th welsh rugby player to be suspended by uk anti-doping .\nthe state has a responsibility to ensure that every child in scotland has access to food , according to the children 's commissioner .\nuk drugs manufacturer glaxosmithkline has said it will not file patents for its products in the world 's poorest nations .\nmalaysia has cancelled a concert by us singer erykah badu after a publicity photo showed her with the arabic word for `` allah '' tattooed on her upper body .\na cumbrian school has cancelled lessons for the majority of pupils after being hit by industrial action for the second time this month .\na new five-a-side pitch has been unveiled in cardiff to create a `` lasting legacy '' after the champions league final .\ndavid liu , a chinese frenchman , says he walks around paris with `` fear in his chest '' .\nthe european court of human rights has ruled that belgium 's ban on face veils does not violate the european convention on human rights .\nal-qaeda in the land of the islamic maghreb -lrb- aqim -rrb- , to give its full name in english , has its roots in the bitter algerian civil war of the early 1990s , but has since evolved to take on a more international islamist agenda .\npitch perfect 2 has made an impressive $ 70.3 m -lrb- # 44.7 m -rrb- debut at the us box office , surging ahead of george miller 's mad max reboot , fury road .\ngambia 's president yahya jammeh has suspended his campaign for thursday 's election as a mark of respect for cuba 's fidel castro .\na draft of labour 's general election manifesto has been leaked , including plans to nationalise parts of the energy industry and scrap tuition fees .\na couple who died in a helicopter crash in new zealand were on a `` dream '' holiday to celebrate their 50th birthdays , their family has said .\nmanchester city manager roberto mancini says carlos tevez must wait for his chance to get back into the team .\na tweet from one direction 's louis tomlinson to harry styles has become the second most retweeted post of all time .\na 30-year-old man , who sexually assaulted a 14-year-old girl he met online , has been jailed for 12 months .\na motorbiker has died after hitting a sign at the side of the road in north yorkshire .\nso how has george osborne pulled off the magical trick of maintaining spending on the police , imposing smaller than anticipated departmental spending cuts in general , and performing an expensive u-turn on tax-credit reductions , while remaining seemingly on course to turn this year 's # 74bn deficit into a # 10bn surplus in 2020 .\ne4 's teen drama skins won numerous awards and gained a cult following over its seven series .\nnearly 700 recruits have returned to kenya after quitting militant groups , a report by the international organization for migration -lrb- iom -rrb- says .\nukraine 's national postal service has been hit by a two-day-long cyber-attack targeting its online system that tracks parcels .\nthe us has regained top spot from china as the biggest investor in clean energy in 2011 , according to global rankings .\nwales and british & irish lions centre jamie roberts will play for cambridge university in the varsity match against oxford on 10 december .\njosh windass insists he will add goals to his game if he is handed the attacking role he craves a rangers .\nkilmarnock have signed dom thomas , following the attacking midfielder 's release from scottish premiership rivals motherwell .\nulster university says a serious shortage of language graduates is forcing international companies with bases in northern ireland to look abroad for employees .\nali carter said his battle with crohn 's disease put him at a huge disadvantage during his third-round uk championship loss against john higgins .\na park-and-ride firm was paid # 400,000 a year despite not running any buses since 2010 , it has emerged .\njeremy corbyn has accused the chief of the defence staff of political bias after he criticised the labour leader 's anti-nuclear stance .\nport vale chairman norman smurthwaite is anticipating `` interest '' in young defender nathan smith following his outstanding start to the season .\ntube drivers on the london underground -lrb- lu -rrb- are to be balloted for strikes in a row over pay for new all-night services , the aslef union has said .\ntwo of china 's largest steel companies have announced plans for a merger , creating the world 's second largest steelmaker , as the industry struggles with global overproduction .\nnye davies of cardiff university 's wales governance centre profiles the welsh conservative campaign .\nthe number of registered nurses and midwives is shrinking , according to figures from regulator the nursing and midwifery council -lrb- nmc -rrb- .\na german 32-year-old special forces officer has died of his wounds after being shot during a raid on the home of a man linked to a far-right movement .\nwelfare spending over the course of this parliament has fallen by just # 2.5 bn despite reforms aimed at saving # 19bn , economic forecasters say .\n`` maverick '' is a word that seems to follow craig venter around .\nsocial services staff have been criticised after a boy spent two years living with a relative who was a convicted paedophile .\nliverpool have signed aston villa striker christian benteke for # 32.5 m.\nradio and television host sandi toksvig has questioned the recent bbc pledge to have no all-male panel shows .\nformer miami dolphins running back rob konrad swam nine miles to shore after falling off his boat while fishing .\na teenage girl with mental health problems who was kept in police cells for two days because of a lack of care beds has been found a place to stay .\nthe independent police complaints commission says it is handling 187 investigations into potential police failures in dealing with past child sex abuse cases in england and wales .\nmichail antonio 's double saw nottingham forest secure a draw at watford , who fell from the top of the championship .\nfive disabled people have lost their high court challenge over the government 's decision to abolish the independent living fund -lrb- ilf -rrb- .\nthe crimestoppers charity is offering a # 10,000 reward for information about the 1996 murder of scottish schoolgirl caroline glachan .\nulster forwards coach allen clarke will join ospreys at the end of the season .\nsouth africa has one of the continent 's biggest and most developed economies .\na flotilla of russian warships is passing through the english channel en route to syria .\nthe return of sea otters to an estuary on the central californian coast has significantly improved the health of seagrass , new research has found .\neastenders ' danny dyer has been named soap personality of 2015 at the tv and radio industries club -lrb- tric -rrb- awards .\na # 50m ferry that was damaged in high winds on its second day in service has been repaired and is back in operation .\nthe new england patriots overcame the ` deflate-gate ' row to beat the seattle seahawks 28-24 in the super bowl .\neasyjet is developing drones to inspect its fleet of airbus aircraft , and may introduce the flying maintenance robots as early as next year .\nthe safety of hundreds of thousands of civilians trapped in mosul is a key priority , the un has warned , as iraqi troops prepare to attack islamic state -lrb- is -rrb- militants in the west of the city .\nthe manor team have collapsed after administrators failed to find a buyer for the stricken business .\nabdelbaset al-megrahi is the only person to have been convicted for the bombing of pan am flight 103 over the scottish town of lockerbie on 21 dec 1988 .\ncolchester united have signed rekeil pyke on loan from huddersfield town until the end of the season .\none in five british firms was hit by a cyber attack last year , research suggests .\nglamorgan batsman ben wright will retire at the end of the season to pursue a career with a metal manufacturer .\ngeneral election campaigning is continuing during a week which is being dominated by manifesto launches .\nmore than 900 seal pups have been born on a north norfolk nature reserve in the last three weeks giving experts hopes of another record breaking year .\na sydney police officer and huge star wars fan has become a local hit after creating a darth vader costume painted with the australian flag .\na labour assembly member has accused a plaid cymru committee colleague of being a conspiracy theorist .\nup to 275 us `` military personnel '' are being sent to iraq to provide security for the us embassy in baghdad and other personnel , the white house says .\nan aircraft which crashed in france killing a father and son fell from the sky `` like a stone '' when its wings failed , an inquest has heard .\nneil hamilton has rejected suggestions by ukip leader nigel farage that he is too old for frontline politics .\nsale sharks fly-half danny cipriani has agreed a deal to rejoin former club wasps from next season .\nvincenzo nibali was thrown off the vuelta a espana when tv images showed him being towed back into the pack after a crash on stage two on sunday .\nmayoral candidate , friend to the stars , charity fundraiser , lover of pink and hairdresser extraordinaire - liverpool has been saying goodbye to the much loved herbert howe .\nbristol city head coach lee johnson says his team 's performance in saturday 's draw at united newcastle proved their commitment to the club .\nwhite house officials will not say whether pop star prince performed at a weekend party at the executive residence despite guests posting about it on social media .\nthe health of the world 's oceans is deteriorating even faster than had previously been thought , a report says .\ntwo dogs left homeless after their owner died in a conwy county motorbike crash have been rehomed together .\nthe funeral of an afghanistan veteran and green beret who died after collapsing during the london marathon has been held in dunfermline , fife .\nnew season , new faces .\nfiji lost to hosts england in their first game at the london sevens but bounced back to reach the quarter-finals and retain their world sevens series title in the process .\nsir dave brailsford has dismissed the idea that british cycling tried to motivate its riders through fear .\na leading nigerian actress , who was banned from the hausa-language film industry because of her `` immoral '' behaviour , has apologised .\nthousands of bright pink plastic detergent bottles have washed up on beaches in cornwall .\nthe government says it wants to expand a planned childcare tax credit scheme to include parents who stay at home because they are full-time carers .\nnigel farage should take a break `` as leader '' of ukip but not a break from being leader , the party 's only mp says .\nwriter amitav ghosh is giving social media users a rare glimpse of what it 's like inside the indian president 's official residence .\nsouth african athlete oscar pistorius is back in court in pretoria describing events after shooting his girlfriend reeva steenkamp in his home .\noutgoing ministers in ghana could be forcibly evicted from their official residences if they fail to move out in time , under new laws .\nthe `` old swansea city '' are back after earning seven points from three games , says midfielder gylfi sigurdsson .\na ban on using wild animals in travelling circuses could eventually lead to zoos in scotland being closed down , a circus leader has told msps .\na study by the united nations suggests the gap between the rich and the poor in much of latin america is widening .\nsouth wales police are appealing for information over the whereabouts of a man wanted in connection with the murder of a cardiff teenager .\nkhalid sheikh mohammed and four others accused over the 9/11 attacks have appeared at a us military tribunal for the first time in five months .\npolice have made a fresh appeal for information a year after a woman 's body was found on the outskirts of edinburgh .\nformer wales scrum-half mike phillips is shocked by a planned merger between his former club racing 92 and their rivals stade francais .\nthe most disappointing thing about watching northern ireland start euro 2016 with a defeat to poland was our lack of threat in the final third .\nnorthern ireland 's top distance runner paul pollock claimed a top 10 finish in sunday 's cardiff half marathon .\na man has been found dead in his cell at a prison in kent - the third in as many weeks , the prison officers ' association has said .\na county antrim woman who had two pregnancies terminated has ended her legal challenge against northern ireland 's department of health .\nhenrik stenson and justin rose will partner rookies in saturday 's foursomes as europe begins day two of the ryder cup 5-3 behind the united states .\ntwo hundred body bags have been placed on brighton beach in a protest to highlight the uk 's response to the migrant crisis in the mediterranean .\nthe controversial offensive behaviour at football act is to be examined by a senior judge as part of a review of scotland 's hate crime laws .\nthe conservative party has urged anyone with information about claims of bullying within a tory youth wing to get in touch with its investigation .\neconomists and economics reporters do like their charts and graphs .\npolice have been called to deal with a small flock of sheep loose near inverness city centre .\ntaxi hiring app uber said london 's transport authority is proposing rules that are `` against the public interest '' .\nmessaging app firm snapchat has announced its first gadget - sunglasses with a built-in camera .\nthe prime minister has entered a row between corby by-election candidates over the future of a hospital , amid claims it could be downgraded in a healthcare review .\njihadist bombers who attacked brussels airport and metro last week also collected building plans and photos of prime minister charles michel 's office and home , the bbc has learned .\nprime minister theresa may has agreed to meet the head of france 's psa group to discuss its planned takeover of vauxhall in the uk .\nthe widow of a man shot dead by police has told an inquest of a desperate text sent by one of their children saying `` dad 's going to kill himself '' .\ngardaí -lrb- irish police -rrb- investigating the disappearance of a man in dublin almost 17 years ago have begun fresh searches .\nwork to build a west sussex footbridge which was delayed after the cost nearly doubled is to begin later this summer .\na teenager who planned to behead a british soldier has been jailed for 22 years by a judge at the old bailey .\nsouth africa has granted diplomatic immunity to zimbabwean first lady grace mugabe , allowing her to leave the country without answering questions about an assault allegation .\njosh taylor wants a scottish super-fight against ricky burns at edinburgh castle - but not quite yet .\nscotland gets ready to welcome the new year with hogmanay celebrations .\ntwo adults and a child were rescued by coastguard teams after their dinghy was blown offshore near nairn east beach .\nthree of five gold artworks hidden in lincolnshire as part of a treasure hunt have been found - the first by chance .\naudience members were moved to tears at the opening of marina abramovic 's new show at london 's serpentine gallery .\ntwo teachers at one of scotland 's leading private schools have been suspended amid separate allegations of sexual abuse of young girls .\ntwo new species of magnolia flower have been identified after being spotted on `` noah 's ark '' online archive .\nbradford has been named curry capital of britain for a record-breaking fifth year in a row .\npolling cards were wrongly sent to at least 3,462 eu citizens who are not allowed to vote in the eu referendum , the electoral commission has announced .\na knife remains `` unaccounted for '' at a privatised prison , a union has claimed .\ntwo goals from the returning garry thompson gave morecambe a dramatic opening day win over cheltenham .\na central provision of president barack obama 's healthcare reform law has taken effect , having survived republicans ' years-long effort to undermine it .\nniall morris has returned to leinster on a short-term deal after his release from leicester tigers .\nkris boyd believes scottish football can learn from the united states but is against the idea of playing scottish premiership matches overseas .\na railway carriage that carried sir winston churchill 's coffin to his final resting place has been restored in county durham .\nharlequins director of rugby conor o'shea will leave the stoop when his contract expires at the end of the season after six years in charge .\nastra zeneca has announced a research programme to develop a generation of medicines to treat the genetic causes of many debilitating diseases .\nkylie minogue 's british fiance has said the couple wo n't get married until same-sex marriage becomes legal in australia .\nnewcastle owner mike ashley said he will be staying at the club until they win a trophy or qualify for the champions league .\nan african grey parrot valued at # 900 has been stolen from a pet shop in caerphilly .\nthe remote indian ocean island of reunion lies between madagascar and mauritius .\na man who raped a 14-year-old girl in 2001 has been jailed for six years .\npolice have named a 52-year-old man who died after the forklift truck he was driving toppled over .\nthe parents of a three-month-old baby found seriously hurt on a bus have denied murder .\npolice are investigating a serious sexual assault on a 19-year-old woman in the meadows area of edinburgh .\na man who made bomb threats to bristol airport in a series of text messages has been jailed for two-and-a-half years .\nthere are a few people who would love to be standing in virat kohli 's shoes this weekend , leading their national team into the final of champions trophy , and there is no doubt the captain of india will be relishing the prospect of sunday 's final against pakistan at the oval .\nswiss pilot andre borschberg has begun his bid to cross the pacific , from china to hawaii , in the zero-fuel solar impulse aeroplane .\nwith a possible shake-up of local government in the east midlands to be decided in the autumn , nottinghamshire 's politicians are haggling over what is best for the county 's residents .\na man who raped two women - one of them while he was on probation for grooming two teenage girls - has been handed a lifelong restriction order .\naerial pictures show the scale of the blaze that broke out at a norfolk seaside resort .\ni hope liam broady is really pumped and excited for our first-round match at wimbledon on tuesday , because these are the moments you play for .\na murder inquiry has been launched in nottingham after the death of a man .\narsenal 's players put in an outstanding performance to win saturday 's fa cup final but gunners boss arsene wenger deserves just as much credit .\nland rover will release an all-new version of its defender model in 2015 , it has confirmed .\nabout 100 jobs could be at risk at a pembrokeshire coach company which intends to file for administration , bbc wales understands .\na man has been left in a `` serious but stable '' condition in an attack being treated by police as attempted murder .\nfrance has charged yemenia airways with manslaughter over a 2009 crash off the comoros islands that killed 152 people , judicial sources say .\nclaims direct cross-border rail services could be under threat due to devolution have been dismissed by wales ' transport minister .\na royal navy chef has spent hours melting chocolate buttons to create a small fleet of ships in commemoration of the battle of trafalgar .\nnasser al-bahri - osama bin laden 's former bodyguard - has died after a long illness , medical sources in yemen have told the bbc .\nmore senior republicans have withdrawn support for us presidential candidate donald trump after his obscene remarks about women became public .\nscientists have measured the way loch ness tilts back and forth as the whole of scotland bends with the passing of the tides .\nas the glastonbury festival announces revellers are to be provided with steel drinking cups , bbc news looks at some of the questions being asked about giving bacchanalian band-lovers metal beakers .\na county tyrone car dealer , whose driving caused the death of a pensioner , has been given a community service order and a three-year driving ban .\nthe growth in global demand for energy slowed to levels not seen since the late 1990s , a new report suggests .\nsuper-sub lee novak bundled in a late equaliser as charlton fought back to draw and stop uwe rosler 's fleetwood from moving into the top two .\njamaica 's most senior drug tester says the country 's recent rash of failed tests might be the `` tip of an iceberg '' .\na late equaliser from skye 's jordan murchison in portree confirmed a 1-1 scoreline in the first west coast derby for many years following skye 's return to the marine harvest premiership .\nbristol have re-signed london irish hooker jason harris-wright .\na bell-ringer who `` wheedled , connived , bullied and bribed '' boys as young as eight has been jailed for 10 years for a string of sex offences .\nthe first day of pre-season testing for the new formula 1 season has started at spain 's jerez track with three leading teams unveiling their cars .\ngdp , or gross domestic product , is arguably the most important of all economic statistics as it attempts to capture the state of the economy in one number .\nthe final piece of decking on the newly-restored hastings pier has been screwed into place by madness lead singer suggs .\nnico rosberg says he must stop mercedes team-mate lewis hamilton 's run of successive victories at this weekend 's spanish grand prix .\nleicester and england centre manu tuilagi is set to miss the rest of the season because of a groin injury , says tigers boss richard cockerill .\nbotswana is to deport controversial us pastor steven anderson after he said on a local radio that homosexuals should be `` stoned to death '' .\nthe duke of cambridge has spoken of the challenge of being a father of a three-week old baby during a farewell visit to anglesey .\na famous white humpback whale has been spotted on his annual migration to australia 's north .\na man danced around his fallen victim after delivering a fatal blow during a street attack in stirling , a court heard .\nsei young kim defeated spain 's carlota ciganda in a play-off to win the meijer lpga classic in michigan .\nscientists in the arctic are warning that this summer 's record-breaking melt is part of an accelerating trend with profound implications .\nfirst minister carwyn jones has joined the charity sector in calling for urgent action to help child refugees .\nus drugs giant pfizer will acquire the maker of a new eczema treatment in a deal worth $ 5.2 bn -lrb- # 3.6 bn -rrb- .\nthe un envoy to syria has urged the us and russia to intervene `` at the highest level '' to save struggling peace talks .\nwelsh ministers can protect the wages of 13,000 farm workers , in light of a ruling by the supreme court .\nportland timbers became major league soccer champions for the first time as they beat columbus crew in the final , with ex-premier league defender liam ridgewell lifting the trophy .\nmarc roberts and ashley fletcher scored either side of half-time to help barnsley to victory over fellow league one play-off-chasers coventry city .\nsam robson completed a career-best double century at lord 's to maintain middlesex 's superiority in their opening county championship game of the season against warwickshire .\nscots judo star stephanie inglis has thanked her supporters and said she hopes to be `` up and about '' soon .\nimages by bbc naidheachdan .\na stargazer has captured a powerful display of the aurora borealis from her living room .\nthe fight to reopen kent 's manston airport has received a double boost .\nthree men have been found guilty of killing a rival drug dealer in a gang-related revenge attack .\nburma has set up a commission to investigate recent violence between buddhists and muslims in the west of the country , in which dozens died .\nfloyd mayweather has formally requested to use 8oz gloves when he fights conor mcgregor in las vegas on 26 august .\na wiltshire mp has reignited calls for a tunnel to be constructed alongside the stonehenge monument .\npeople who have served in the armed forces in the past 50 years are not at greater risk of suicide than those who have not , according to a new study .\nthe british boxing board of control has sanctioned andrew selby to fight louis norman for the vacant british flyweight title on 14 may in cardiff .\n`` statistics are like bikinis - what they reveal is suggestive , but what they conceal is vital . ''\nthe government must replace the millions of pounds of eu support cornwall may lose from brexit with investment , its council leader says .\npolice officers will only be able to stop and search people when they have `` reasonable grounds '' to do so under new rules published by the scottish government .\npolice have fired tear gas at crowds in the egyptian capital cairo at a protest against a controversial deal to hand two islands to saudi arabia .\npolice investigations into claims of historical child abuse should `` take precedence '' over a uk government-ordered inquiry , a welsh mp says .\na man has been found not guilty of the manslaughter of his mother 's partner who died after falling and hitting his head on the ground at a holiday park .\nseven fishermen owe captain radhika menon their lives .\ngoals from demarai gray , islam slimani -lrb- 2 -rrb- and ahmed musa took leicester past championship side sheffield united and into the efl cup third round .\nnational league side woking have signed winger bobson bawling after his release by league two crawley town .\na three-year-old boy has been reunited with his favourite toy lion , which was photographed having an `` adventure '' at a stately home after being lost .\nan eight-year-old boy who wrote an apology note to a library , for accidentally ripping a comic book , has been rewarded for his honesty .\na 35-year-old woman has died in police custody in blackburn .\nas voters head to the polling stations for the eu referendum so have some dogs - although cats and even a political polecat have been keen to get in on the act .\nnottinghamshire go to finals day confident of winning their first t20 blast title , says long-serving wicketkeeper chris read .\na man who had spent friday drinking had to be rescued from a church roof by the fire service .\nsubstitute abdallah el said scored a late winner for egypt to knock uganda out of the africa cup of nations .\ntheresa may has congratulated donald trump on taking office as us president - and says she looks forward to meeting him in washington .\nfrance has inaugurated a giant replica cave containing reproductions of prehistoric drawings of animals .\nthirty-six members of the yazidi religious minority are free after nearly three years in the hands of so-called islamic state -lrb- is -rrb- , the un says .\nmore armed police are to be seen on patrol in london , metropolitan police commissioner sir bernard hogan-howe and mayor of london sadiq khan have said .\nfunding for two techniquest science museums in wales will end from april 2021 , the welsh government has said .\nmanchester city have completed the signing of tottenham and england right-back kyle walker for an initial # 45m .\nwrexham 's new super-prison is unlikely to be named after the county borough , says the prison minister .\na consortium led by baskin robbins and dunkin' donuts chief executive nigel travis has completed its takeover of leyton orient .\ntwo pages from an 800-year-old copy of the koran decorated with gold leaf are to go on show in a leeds museum display looking at islam .\nmillwall drew at home to bradford to seal a 4-2 aggregate win and reach the league one play-off final at wembley .\nus anti-abortion campaigner troy newman is to be deported from australia after losing a high court appeal .\npupils in england , wales and northern ireland are receiving their gcse results - just over two weeks after teenagers in scotland received the results of their equivalent national 4s and 5s .\njockey william buick will be sidelined for at least six weeks after being injured in a fall in the united states .\nmanchester city winger raheem sterling should have gone to ground to win a penalty during saturday 's 2-2 draw with tottenham , says team-mate yaya toure .\nfirst minister nicola sturgeon has called for `` cast iron assurances '' jobs will not be lost at clyde shipyards because of contract delays .\nthe head of lebanese militant group hezbollah has declared that syria has real friends who will not let it fall to the us , israel or islamic radicals .\na mother campaigning for a life-extending breast cancer drug to be made available on the nhs has said it seems `` barbaric '' to deny women the treatment .\nblackburn rovers have signed midfielder matt grimes from premier league side swansea on a three-month loan deal .\nan american airlines plane has caught fire on the runway of chicago 's o'hare airport while taking off .\nchina 's ding junhui survived a first-round scare to beat brazilian outsider igor figueiredo 6-5 in a thrilling uk championship match at the york barbican .\nnasa 's kepler telescope has recently found 216 new planets , meaning it has now discovered more than 4000 potential new worlds !\na small high-quality camera has been attached to the shell of a turtle giving an amazing view of australia 's great barrier reef .\nthe conservatives would have to choose a new leader before the end of the next parliament if david cameron wins a second term as prime minister , welfare secretary iain duncan smith has said .\nscotland players tommy seymour and tim swinson have signed new deals to stay at glasgow warriors .\nincreased spending will result in a `` bigger '' royal navy , the defence secretary has said , as he announced a new # 13.5 m shipbuilding contract .\nnottingham 's official robin hood is to marry maid marian after they fell in love while playing the famous couple .\nshropshire could have one emergency and trauma department under recommendations being put forward by nhs bosses .\nbirmingham city will face a `` difficult '' season if they can not sign new players this week , says manager harry redknapp .\nmore than a million better-off families will lose some or all of their child benefit , under rules now in force .\na 1906 claude monet water lilies painting , nympheas , has sold for # 31.7 m in london , the second highest price ever paid for the artist at an auction .\nsenior figures at two welsh police forces have raised fears about their funding in the coming years .\nexperts have begun examining and cataloguing parts of a spitfire excavated from a field in cambridgeshire .\nwigan demolished salford to keep their super league top four hopes alive and build momentum going into the challenge cup final against hull fc on 26 august .\neach day we feature a photograph sent in from across england - the gallery will grow during the week .\nblackpool and wycombe played out a goalless draw at bloomfield road , with the visitors having goalkeeper jamal blackman to thank for a string of late saves .\na prison has seen a fourfold increase in the use of force by officers against inmates since 2013 , a report has found .\nmarianne vos moved into the overall lead at the women 's tour as her dutch compatriot amy pieters won stage two .\nthe race for the republican nomination is over , with one winner - donald trump - and 16 losers .\nan investigation into a number of allegations of crime involving the children 's charity kids company has been launched by the metropolitan police , the bbc has learned .\npart of the m6 in birmingham was closed for almost 24 hours after a fatal collision involving a lorry and a car .\na man threw acid in a beautician 's face because he feared for his life , family and girlfriend , a court has heard .\nfrance 's foreign ministry has urged turkey to end its assault on kurdish fighters in northern syria .\na journalist jailed for leaking state secrets has been allowed to serve her sentence outside prison on medical grounds , chinese media report .\ngeorge ford is expected to make way for owen farrell at fly-half for england 's opening test against australia in brisbane on saturday .\ndelta , united and american airlines have banned the shipment of big-game trophies on flights after the illegal killing of cecil the lion in zimbabwe .\nengland coach steve mcnamara refused to discuss his future after his team defeated new zealand in the crucial series decider in wigan .\na body has been found by police in their search for a missing man from merthyr tydfil .\npedro caixinha has urged his rangers players to continue their winning start to the season against hibernian .\nbrazilian prosecutors have filed corruption charges against president dilma rousseff 's electoral strategist .\nuk and french ministers will meet in calais on thursday to agree a new deal to tackle the migrant crisis there .\na new devolved authority has been ordered to review its estimated budget after it rose by # 500,000 .\nofficials at the famous yellowstone national park in the us have revealed that they had to put down a newborn bison after some tourists put it in the boot of their car .\nfive people have been killed in a machine-gun and grenade attack on a bar in mali 's capital , bamako .\na 30-yard thunderbolt from finland international daniel o'shaughnessy earned cheltenham an unlikely draw at mansfield .\ngreat britain 's sir bradley wiggins clinched his first road world title with a thrilling time trial victory at the world championships in ponferrada .\nlife , it has been said , is 10 % what happens to you and 90 % how you react to it .\nukip 's welsh mep post may be better left unfilled as a result of brexit , party am caroline jones has said .\nleicester director of rugby richard cockerill believes other clubs are offering big money to manu tuilagi .\na couple from bradford who tied the knot in 1925 could be the uk 's longest married husband and wife .\ncentral italy is in the grip of heavy snowfall and very low temperatures , adding to the disruption caused by recent huge earthquakes .\npolice are searching a park in an area where three severed human feet have been found this year .\naustralia has confirmed it sent 46 asylum seekers back to vietnam after intercepting their boat off the coast of western australia last month .\na young man has attacked people with a chainsaw and an axe at a shopping centre in belarus , killing one woman and injuring another .\ntourists and members of the public drifted to westminster 's college green - to witness this day , and also , perhaps , just to make sense of what 's going on .\nmae dros hanner cynghorau cymru yn dweud bod cwmnïau gofal wedi rhoi ' r gorau i ddarparu eu gwasanaethau oherwydd cyfyngiadau ariannol .\ncardiff devils attacker joey haddad has re-signed for a fourth season with the elite league champions .\nalphabet - google 's parent company - has reported a 17 % rise in quarterly revenue after strong advertising sales on mobile devices .\nthe trump administration is standing firm over its ban on refugees from seven countries despite court rulings and mass protests against the move .\nan amputee who was caught in the door of a train in cornwall said it was a `` frightening experience '' .\na new garden-themed art exhibition will tell the intriguing story about claude monet and the famous water lily pond that inspired his best-known works .\na dumfries-based red cross worker who died in pakistan was unlawfully killed , a coroner has ruled .\nwales ' heroic euro 2016 run came to an end one game before the final as they lost 2-0 to portugal in the last four .\na survey of chamber of commerce members in northern ireland suggests that 81 % will vote for the uk to remain in the european union -lrb- eu -rrb- .\npolitical storms are nothing new to ukraine , but unusually the latest surrounds a young woman who has landed one of the country 's top police and security jobs .\na collection of paintings capturing the landscapes and legacy of life on the north east coast is going on display .\nisraeli forces and palestinians have clashed in east jerusalem , the occupied west bank and gaza after weeks of friction over a jerusalem holy site .\nbillionaire topshop owner sir philip green is to lead a review of government spending - amid criticism from unions .\nbbc rewind looks at the history of the flying scotsman as it prepares to return to the railways .\nrepublican presidential candidates speaking at a forum in washington , dc , have responded to the mass shooting in california which left at least 14 dead .\nthe mother of a schoolgirl who was taken to france by her teacher has denied she is exploiting her daughter by writing a book about the case .\non 8 june voters in wales will head to the polls to decide who will represent them in the 40 constituencies .\na future labour government at holyrood would restore tax credits for working families , its scottish leader kezia dugdale will tell party members .\nuk unemployment fell by 4,000 in the three months to june leaving 2.51 million out of work , says the office for national statistics -lrb- ons -rrb- .\nmartin guptill and kane williamson broke the record for the highest stand in twenty20 international cricket , with a match-winning 171 as new zealand crushed pakistan by 10 wickets .\na pilot escaped without injury after making an emergency landing in his light aircraft next to a river in north yorkshire .\na tech start-up firm which thought it had secured a # 100,000 investment on the bbc 's dragons ' den tv show has had the funding pulled .\nthe colombian government and farc rebels have agreed to resume peace talks , which were suspended last month over the abduction of an army general , mediators say .\nlabour has failed to agree on how to form its shadow cabinet at a meeting of its national executive committee .\nnorthern ireland goalscorer gareth mcauley says thursday 's 2-0 euro 2016 win over ukraine - their first at a european championship - was `` massive '' .\nboard members at a uk-funded development agency made large expenses claims , including # 5,000 air tickets , the national audit office has revealed .\nplaid cymru is the first out of the blocks with this year 's election campaign manifestos - but what does it promise ?\nan ex-british soldier held in turkey on a terror charge while on holiday may be imprisoned for three months before the case reaches court , his lawyer said .\nlawyers for jailed south african olympic athlete oscar pistorius have launched a legal bid to prevent prosecutors from appealing against his acquittal on murder charges .\ngardeners trying to cheat their way to the top tomato prize at a horticultural show will be weeded out with dna tests .\nafghan taliban leader mullah akhtar mansour has been seriously wounded in shooting at a meeting of militants in pakistan , taliban sources say .\nheavily armed men have attacked a convoy of cars belonging to a saudi prince , stealing 250,000 euros -lrb- # 200,000 ; $ 330,000 -rrb- , police say .\nall-rounder sean ervine made a vital century for hampshire as they reached 281-6 on the opening day against somerset at taunton .\nassembly members should work out why communities receiving large sums of eu funding voted for brexit , the welsh secretary has said .\nthe philippine military says it has made gains retaking marawi city from islamist militants amid clashes that have left about 100 people dead .\nthe mother of madeleine mccann has embarked on a 500-mile -lrb- 800km -rrb- charity bike ride to raise funds to support families with a missing loved one .\nmanchester united defender jonny evans and newcastle united striker papiss cisse could face six-match bans if found guilty of spitting .\nhow did it go for the 16 and 17-year-olds who were allowed to vote for the first time ever in the uk ?\na palestinian woman has died of injuries she sustained during an arson attack on her home in the west bank that killed her husband and infant son .\nscientists working on europe 's rosetta probe , which is tracking comet 67p , say they may have found evidence for how such icy objects were formed .\nan fa cup game will take place on the channel islands for the first time after guernsey fc were drawn at home in next month 's preliminary round .\nparis-st germain have completed their deal to sign neymar from barcelona for 222m euros -lrb- # 198m -rrb- .\nfriends of keith harris have joined his family at his funeral in blackpool .\na schoolboy from stoke-on-trent , paul murray travelled to the match on a liverpool supporters ' club coach with his father , tony murray , who survived .\nlast year 's winner many clouds heads saturday 's grand national field after the 40-runner line-up was confirmed .\nthe family of a six-year-old girl suffering from leukaemia are celebrating pioneering treatment which they say has `` saved her life '' .\nindian wells tournament chief raymond moore has quit after his controversial comments about women 's tennis .\norganisers of a march for military veterans , which was cancelled in londonderry due to security fears , have rearranged the event .\na borders butcher has created an `` eggsperimental '' delicacy to mark easter .\nlabour figures in wales are not trying to distance themselves from party leader jeremy corbyn , a welsh government minister has insisted .\nwhen roger dingledine talks about the dark web , he waves his hands in the air - as if not quite convinced of its existence .\nsouthern rail 's latest attempt to stop strikes on its network has been branded `` meaningless '' by union bosses .\nan outbreak of 189 cases of measles has been reported in swansea , neath and port talbot , public health wales says .\nharlequins have agreed to sign fly-half ruaridh jackson from premiership rivals wasps ahead of next season .\nus president donald trump is expected to indicate later that he is sending more troops to afghanistan , prolonging a war-weary america 's longest conflict .\nthe attack on muslims at finsbury park mosque has prompted a debate about whether the media has inherent biases , and caused a major kerfuffle within britain 's newspapers .\nzlatan ibrahimovic will leave paris st-germain at the end of the season .\nthe deputy mayor of calais , philippe mignonet wants the uk to introduce identity cards as part of efforts to deter migrants gathering at the french port and attempting to cross the channel .\nthe liverpool care pathway , developed to support patients as they near death , should be phased out in england , an independent review is expected to say .\nphotographs have emerged which are said to show the 12-year-old son of a tamil rebel leader alive and well in custody less than two hours before he was shot dead .\narchaeologists in jerusalem say they have for the first time reconstructed likely designs of a biblical jewish temple floor using original fragments .\ncrotone completed one of the greatest escapes serie a has seen by beating lazio on the final day to stay up .\na driver stopped for using his mobile phone told police he was trying to find the new sam smith song on youtube .\nsoul singer ray blk has topped the bbc 's sound of 2017 list , which aims to predict the most exciting new music for the year ahead .\nthe mother of a teenager who took his own life because of online bullying has set up a programme to tackle the issue .\nireland started the three-match t20 series against afghanistan with a six-wicket defeat in india on wednesday .\nlibyan workers continue to search for bodies at sea and on shore after two migrant vessels capsized on thursday .\na lorry fire has closed a southbound section of the m1 in northamptonshire .\nchinese exports rose more than expected in february , adding to optimism over a recovery in its economy .\nmusic fans are gathering on the isle of lewis for the annual hebridean celtic festival .\n-lrb- close -rrb- : shares of the two newly split hewlett packard companies diverged after its last report as a consolidated company .\nwho was king arthur and how welsh was he ?\nthe welsh government is reviewing nhs charges for visitors from outside the uk , the health secretary has said .\nthieves broke into vans and stole tools being used by a team working on a life-changing project for tv show diy sos .\nall week you have been using your questions to tell us what you want to know about the west midlands .\nmiddlesbrough winger mustapha carayol says it is the `` right time '' in his career to commit his international future to the gambia .\nan online appeal set up to help the family of a five-year-old girl who died when her head became stuck in a lift in dorset has raised more than # 12,000 .\nthe uk independence party has rejected claims by one of its biggest donors that he has been suspended from the party membership .\ndame judi dench says she has no plans to retire from acting , despite failing eyesight which has left her unable to read scripts .\na paddle boarder faced man-eating crocodiles during his quest to travel from source to sea along the longest river in sri lanka .\nthe brother of an aid worker murdered by extremist militants in syria says he will not hate his killers , calling for compassion for those affected by conflict in the middle east .\nborussia dortmund midfielder christian pulisic scored a dramatic injury-time equaliser to rescue a point against bundesliga strugglers ingolstadt .\ntwo people have died and and seven others have been injured after a gunman opened fire with an automatic rifle at a bar in tel aviv , israeli police say .\nmarko arnautovic 's double gave stoke a deserved victory as aston villa 's slim hopes of avoiding relegation suffered another blow .\njohn lennon 's first home , in liverpool , has been sold for # 480,000 at an auction held at the cavern club .\ncharles schulz 's characters , charlie brown and snoopy have been talking about the secret of their strong friendships .\nan american company has launched a rocket into space from new zealand , the first from a private launch facility .\npep guardiola will face rivals manchester united in one of his first games as manchester city manager .\nroyal mail has begun a consultation over changes to its pension scheme amid threats of strike action from unions .\na visitor from another planet listening to the prime minister 's speech outside no 10 on friday could be forgiven for assuming nothing of significance happened the day before .\nbestival has revealed an all-female line-up in its second wave of announcements for this year 's isle of wight event .\na minister has been heckled by mps for suggesting women over 60 facing poverty could start an apprenticeship .\nsomerset beat one-day cup holders gloucestershire by one wicket with just three balls to spare at taunton .\na global arms trade treaty regulating the multibillion-dollar business has come into force - a move hailed as `` a new chapter '' by un chief ban ki-moon .\na meat wholesaler has been fined # 15,000 for having meat in its freezers which had passed its `` use by '' date , in some cases by several years .\nannan athletic , forfar athletic , clyde and elgin city all started their scottish league two campaigns with single goal victories .\nasian shares opened lower following the global trend as investors reacted negatively to the european central bank 's -lrb- ecb -rrb- policy-easing moves .\na kent council has voted to restrict the opening hours of fast food outlets near schools in a bid to tackle rising obesity .\n-lrb- close -rrb- : shares in london and other key european markets have risen on news that eurozone leaders have reached a deal on a third bailout for greece .\nwest ham striker diafra sakho is unlikely to play again this season because of the back injury he suffered in november .\nbiomass boiler owners have formed a group to deal directly with government officials proposing changes to the controversial rhi scheme .\nmanchester united inflicted total humiliation on arsenal and their embattled manager arsene wenger with a brutal victory at old trafford .\ncristiano ronaldo scored a hat-trick as real madrid thrashed espanyol to cut the gap between themselves and la liga leaders barcelona to four points .\nclyde 's barry ferguson admits it is make or break for his side 's promotion play-off chances when they travel to face annan athletic on saturday .\nsouth africa 's top detective is to take over the oscar pistorius inquiry amid attempted murder accusations against current lead officer hilton botha .\ntwo people were killed in fighting among fans of raja de casablanca on saturday , the moroccan football federation -lrb- fmrff -rrb- has confirmed .\ncritics of the government 's planned changes to business rates are raising `` genuine '' concerns , a former local government minister says .\nwater experts are calling on ministers to show greater leadership on flooding .\nthe overall student loan debt for welsh students has reached # 3.7 bn , new figures show .\nin the summer months high on the french alps the sheep graze on rich pastures .\non friday 5 february , at the regency airport hotel in north dublin , a boxing weigh-in became a murder scene .\ndundee have signed defender julen etxabeguren leanizbarrutia on a three-year deal .\nswansea city manager paul clement says he will have `` a conversation '' with chelsea captain john terry about the possibility of signing him .\npolice have said a bomb which was left outside the gates of a primary school in north belfast could have killed or seriously injured .\nalgeria goalkeeper rais mbolhi has signed for turkish club antalyaspor after being allowed to leave mls side philadelphia union .\nwakefield reached their first challenge cup semi-final for eight years by beating huddersfield in the last eight .\nthousands of homes in hull have been left without water due to a technical fault .\nthe us supreme court will rule this year on whether gay couples have a right to marry across all states .\nare you all-out aggression , do you outsmart your opponents , or do you win through sheer willpower ?\nclydesdale bank is to set aside as much as # 500m in extra funding this year to compensate customers for mis-selling of financial products .\nandy murray returned to action with a comfortable win as great britain ended day one of their davis cup defence tied at 1-1 against japan in birmingham .\nthe former leader of the alliance party lord alderdice has criticised plans contained in the `` fresh start '' deal .\nthe daughter and adopted daughter of reverend enoch mark were amongst the more than 200 girls kidnapped in the early hours of the morning from their boarding school by boko haram militants in northern-eastern nigeria a year ago .\nair traffic controllers are warning that uk skies are running out of room for record numbers of planes .\nlabour has been `` ploughing on as if they have a divine right to rule '' in wales , the welsh conservative leader has said .\nstephen dobbie 's double took queen of the south into the challenge cup semi-finals at alloa athletic 's expense .\nbp has announced plans to shed about 600 jobs from its operations in the north sea .\na growing number of people refuse to be put into male or female categories , either because they do not identify as male or female , or because they are going through transition to the opposite gender .\nmatthew perry `` will not '' attend the friends reunion show due to rehearsals for his west end play .\na man has died after attempting to rescue two teenage girls who got into difficulty in the sea in gwynedd .\nthe company behind the failed mini-drone zano has provided some details of how more than # 2.3 m in funding was allocated .\nservices on the borders railway are `` running as normal '' after severe disruption due to signalling problems .\na japanese parliamentary panel has delivered a damning verdict after investigating the accident at the fukushima nuclear plant which followed an earthquake and tsunami on 11 march 2011 .\na convicted killer is among 10 of britain 's most wanted fugitives believed to be on the run in spain .\na boy missing in remote woods in japan since saturday after being left alone by his parents as punishment has been found alive and well .\ncities in california cut water use by 31.3 % in july , exceeding a state-wide mandate of 25 % to combat a record four-year drought there , officials say .\nanimal lovers hope to make it mandatory for pets found by council workers to be checked for microchips so they can be returned to their owners .\njoe root says england are yet to play to their full potential as the side prepares for a `` must-win '' game against sri lanka at the world twenty20 .\ndozens of prison inmates with serious mental health problems are left untreated , a whistleblower has said .\neast stirlingshire moved off the bottom of scottish league two with a surprise victory over promotion-chasing queen 's park .\na 20-year-old woman has died in a crash in richhill , county armagh .\nthe only remaining handwritten script by the famous playwright , william shakespeare , is about to go on display at the british library in london .\neurotunnel passengers have faced fresh delays after `` migrant activity '' led to extra security measures in france .\na londonderry shop owner has said the repair bill for damage caused to his shop , after a stolen car was rammed into it , will be around # 10,000 .\nmining giant rio tinto has lowered its minimum acceptances target slightly in a last ditch effort to takeover south africa 's riversdale mining .\nforfar athletic extended their lead at the top of the scottish league two table to seven points with a 2-0 win over berwick rangers at station park .\nthe x factor is to stay on itv for at least the next three years , despite declining viewing figures and the arrival of the voice to the channel .\nthe impact of the political crisis at stormont continues to feature prominently in some of the newspaper headlines on wednesday .\na film telling the story of how the 1984-85 miners strike united two utterly disparate sections of society is receiving its west end premiere .\njapanese pm shinzo abe has visited several memorials in hawaii , ahead of a visit to pearl harbor , the us naval base attacked by the japanese in 1941 .\nnewcastle united have signed crystal palace striker dwight gayle and bournemouth winger matt ritchie , both on five-year deals .\na memorial has been unveiled in a scottish town in honour of a teacher-turned-police officer who investigated the murders of jack the ripper .\na buzzard has been rescued after becoming trapped between fencing and a wall in gwynedd .\nsnp leader nicola sturgeon has told david cameron he is `` not master of all he surveys '' after her party forced a delay in a planned fox-hunting vote .\npresident barack obama has urged donald trump to send `` some signals of unity '' after the us election campaign .\na culture of class a drug taking is common among some drivers working in the uk road haulage business , say industry insiders .\nan idea to vastly increase the carrying capacity of radio and light waves has been called into question .\na 79-year-old man has been arrested on suspicion of sexual offences by operation yewtree detectives , scotland yard has said .\na man once dubbed the world 's fattest has been granted an american visa so he can have surgery to remove excess skin .\nthe number of scottish school leavers staying on in education , getting a job or doing voluntary work is up slightly .\nan ex-ukip councillor has been ordered to pay # 80,000 in damages to two labour mps over remarks he made about the rotherham 's child abuse scandal .\nthe cotswolds could be policed by the thames valley force if plans to `` break away '' from gloucestershire county council go ahead , it is claimed .\nben davies scored his first goal for tottenham as the eight-time winners ground out an fa cup third-round win over a stubborn aston villa side .\nafter the bomb attacks on london in july 2005 , tony blair summoned the media to downing street for a news conference .\nthe scottish government has ordered an independent review of undercover policing in scotland .\nthe isle of barra 's world famous beach airport is 80 years old .\ndrivers have been warned about very icy conditions affecting many roads across scotland .\nealing central and acton is one of about 20 seats that could shape the outcome of the election .\na man has been given life imprisonment for murdering a man in a mass street brawl .\na yellow ` be aware ' weather warning was re-introduced in parts of wales on sunday .\nan alleged head of a kidnapping ring in lagos , nigeria , is suing the inspector-general of police .\na new # 12.3 m diesel-electric hybrid ferry has been launched at the ferguson marine shipyard in port glasgow .\nkieran lee 's second-half leveller earned sheffield wednesday a draw and halted burnley 's charge towards the automatic championship promotion spots .\ngrowing pressures on hospitals are forcing them to ramp up costly overtime payments to consultants to do extra work , a bbc investigation shows .\nflanker nic cudd has signed a new two-year deal with the newport gwent dragons .\na lunch date with tim cook has sold for close to $ 330,000 -lrb- # 196,000 -rrb- on the auction website charitybuzz .\nindonesian police have asked for australia to help investigate the case of a woman who died after drinking cyanide-laced coffee .\na gulf war-era fighter jet has been put on sale online for # 20,000 by a couple who took six years to rebuild it .\nswathes of thick , algae blooms have plagued miles of florida coastline , prompting the governor to declare a state of emergency .\nthe african union has called for the mass withdrawal of member states from the international criminal court -lrb- icc -rrb- .\nveteran journalist and news anchor gwen ifill has died aged 61 , the public broadcasting service -lrb- pbs -rrb- has said .\nmanager roberto martinez says everton have struggled to focus on the premier league following their fa cup semi-final defeat .\nnew zealand 's only resident pelican has been put down after living at wellington zoo for nearly 40 years .\noldham in greater manchester is the most deprived town in england , an official study into housing and poverty has found .\nulster bank in northern ireland made a 2016 pre-tax profit of # 58m on a turnover of # 176m .\nall diets - from atkins to weight watchers - have similar results and people should simply pick the one they find easiest , say researchers .\nthe remains of 474 infants were transferred from mother-and-baby homes to medical schools over 25 years , the irish minister for children has said .\nellan vannin have booked their place in next year 's conifa world cup after winning the niamh 's challenge cup at the bowl in douglas .\nthe international civil aviation organization -lrb- icao -rrb- has downgraded thailand 's aviation standards , `` red flagging '' the country for failing to address safety concerns .\nsix people accused of being involved in wales ' largest heroin seizure kept the drugs in a speaker , a court has heard .\na cat has been rescued from the rubble of a house 16 days after an earthquake hit the italian city of amatrice .\na dyed-in the wool labour council is facing ukip in every ward for the first time in thursday 's election .\niran 's stance towards the `` arrogant '' us will not change despite the nuclear deal reached earlier this week , supreme leader ayatollah ali khamenei has said .\nzambia international rainford kalaba scored twice as tp mazembe of the democratic republic of congo beat algeria 's mouloudia bejaia 4-1 at home on sunday to win the african confederation cup for the first time .\ncontroversial plans for a # 12m energy scheme at a waterfall beauty spot in snowdonia national park have been refused .\nthe family of the former footballer jeff astle is to meet the fa chairman next month to discuss head injuries in the game , as part of their campaign .\nthe paris climate agreement will survive a trump presidency says the us special envoy on climate change dr jonathan pershing .\nnational league club torquay united have been taken over by swindon-based gaming international -lrb- gi -rrb- .\none in five students in independent schools received extra time to complete gcse and a-level exams last year .\nthe european commission has ruled that a controversial eu-canada free trade deal - ceta - can not be renegotiated , despite much opposition in europe .\neverton 's romelu lukaku has decided where he wants to play next season .\nlinfield captain jamie mulgrew says the champions will face an ards side determined to bounce back from an opening day thumping at cliftonville .\nlib dem leader nick clegg has said the broadcasters should come up with `` other proposals '' for the tv election debates .\nthe belgian king has provoked a sharp response to a christmas message in which he drew parallels with the rise of fascism in the 1930s .\nwill grigg scored his first league goal of the season as wigan athletic beat blackburn to claim their first victory since returning to the championship .\nimages courtesy of afp , ap , epa and reuters .\nat a small laboratory in a bangkok suburb , a group of scientists has come up with what they hope is the answer to an old conundrum : how to tell if a thai dish is authentic or not .\na teenager has been charged with selling fake tickets for last year 's bestival on the isle of wight .\nstaffing levels could be set to double at a scottish armoured vehicle business which was bought out of administration nearly six months ago .\npolice have been called after a small number of saline bags appear to have been tampered with at cumberland infirmary , carlisle .\norganisers of edinburgh 's hogmanay have described the event as a `` major success '' .\nleeds rhinos maintain their lead at the top of super league with a five-try victory over salford red devils .\nhouse prices have risen significantly in england in the past year in contrast to the rest of the uk , figures suggest .\ntwo liverpool hospitals could merge under cost-cutting plans unveiled by health bosses .\nsenior managers at manchester city council could receive above-inflationary pay rises if plans are approved on thursday .\nnew research could see patients with a rare blood cancer live longer without the side-effects of drugs , doctors say .\nwork to build a cycle track in derby can not resume until a judicial review is carried out , a judge at the high court in london has ruled .\nthe jury in the trial of an architect accused of murdering a childcare worker in the republic of ireland has retired to consider its verdict .\nwater voles are being reintroduced at a carmarthenshire nature reserve .\ntwo police officers who a judge said gave inconsistent and unconvincing evidence to an inquest in to the death of an ira man are to be reported to prosecutors .\nshanghai is trialling a unisex public toilet block to lower the time women have to spend waiting in queues , chinese media have reported .\nwales ' dan biggar takes over from sam davies as ospreys make five changes for their rescheduled european challenge cup game at grenoble on friday .\nmanchester united manager jose mourinho says it will be `` more difficult '' facing a manchester city side that does not include sergio aguero on saturday .\nfear of discrimination means 84,000 deaf and hard of hearing people hide their condition from prospective employers , new research has revealed .\na us judge has ruled that the la clippers basketball team can be sold , despite the objections of banned co-owner donald sterling .\nthis will not have been an easy decision for prince william to make .\ndemolition teams - backed up by riot police - are dismantling parts of the migrant camp in calais , known as the jungle , which has become home to thousands of people desperate to reach britain .\nsecurity researchers have cancelled plans to buy potentially undetected software security vulnerabilities from a notorious group of hackers .\njames anderson has ridiculed comments made by geoffrey boycott about the batting of england 's world cup captain eoin morgan .\nteaching and support staff at london metropolitan university have voted to strike in protest over 165 job cuts .\nan irish university has expressed `` heartbreak '' at the deaths of six young people who died after a balcony collapsed at a us apartment block .\nprison guards have shot dead 17 inmates after a mass breakout at buimo prison in papua new guinea .\nfrench police have scaled back the hunt for a stray big cat in paris after scotching initial reports that the animal is a tiger .\nscientists have devised a radical solution to reduce the damaging impact of australia 's deadly cane toads .\nthe owners of stolen cars are being sued by some police officers in northern ireland who were injured when chasing car thieves .\nit was one of the key points in the stormont house agreement - the plan to give the most seriously injured victims of the troubles a special pension .\nthree people have died after a train hit a car on a level crossing in the north-west of france , officials say .\na woman has died after being hit by a lorry in greater manchester , police have said .\nthe olympic torch will hitch a ride on cleethorpes ' light railway and visit scunthorpe 's new leisure centre as it passes through the humber region .\nthe us pga tour has been warned over its stance on doping before golf 's return to the olympics in 2016 .\nmiddle-income as well as low-income families are being held back by a `` deep social mobility problem '' in britain , a report warns .\nmacauley bonne scored his first goal in 11 games but colchester were held to a draw by 10-man chesterfield .\npolice have been given more time to question four men held over an apparent hit-and-run crash in oldham on new year 's eve in which two cousins died .\nthree different 999 services had to be stood down after a `` body in the water '' turned out to be a bronze sculpture .\nsmoking causes one in 10 deaths worldwide , a new study shows , half of them in just four countries - china , india , the us and russia .\na man has appeared in court charged with the murder of a polish national found dead in a park in leeds .\na 1969 led zeppelin session for the bbc that was thought to have been lost when archives were wiped has been recovered from a recording made by a fan .\nengland are one year on from the debacle of their world cup campaign in brazil and one year out from euro 2016 in france - the midpoint in a crucial process of recovery .\nthere 's a general election coming up on 8 june , when adults will vote to decide who will run the uk .\nthe winklevoss brothers have re-started their long-running legal dispute with facebook and its boss mark zuckerberg .\na generation after robert millar mesmerised british tv viewers with his assaults on pyrenean peaks in mid-1980s tours de france , a sportive in his honour will test riders on the roads on which he trained .\nwhen pictures of people apparently high on drugs in wrexham 's bus station were posted on social media earlier this month , it prompted claims by some the town has a major drugs problem .\nthe m6 motorway between wolverhampton and walsall has reopened after a fatal crash .\nthe attack in westminster , on wednesday , 22 march , left four victims dead , dozens injured and millions of people around the world asking why .\nbradford picked up their first win in five league games as they beat rochdale at spotland .\njules bianchi has died aged 25 as a result of head injuries sustained in a crash during the 2014 japanese grand prix .\nfive words signalled the end of one of the most controversial investigations into child abuse ever conducted by police : `` operation midland has now closed . ''\na woman has won a gold award at national baking competition by entering a life-sized jennifer lawrence cake .\na legal challenge over the uk leaving the european union -lrb- eu -rrb- is to be launched in northern ireland .\nroger moore has told how one of his first decisions before taking over the role of james bond was not to use sean connery 's famous phrase `` shaken not stirred '' .\nlaura trott retained the women 's scratch title to win her second gold medal at the national track championships in manchester .\nnhs bosses are threatening to `` name and shame '' trusts in england as they try to crack down on agency spending .\nnon-league aldershot town will play rochdale in the second round of the fa cup after mark molesley struck a late winner against league two portsmouth .\nthe european space agency astronaut , luca parmitano , spoke to newsround about his spacewalk experiences .\nelections will be held in 34 local authorities in england and 1 in wales on 2 may 2013 .\nwilliam hague has held talks with kurdish leaders about international efforts to confront islamist extremists threatening to overrun parts of iraq .\na man who killed two girlfriends five years apart has been jailed for life .\nin the slightly sweaty committee corridor outside the meeting of tory mps tonight , mps were queuing to praise the prime minister .\nworld champion peter sagan won stage five of tirreno-adriatico in italy as britain 's adam yates abandoned the race because of illness .\ncannabis with a street value of # 25,000 has been seized and three people arrested on the isle of man .\napple has expanded its use of `` two-step verification '' checks to protect data stored online by its customers .\na memorial service has been held for one of the four yachtsmen who was lost at sea when their yacht cheeki rafiki capsized in the atlantic .\nmore than 30 people have been killed after attackers dressed as doctors stormed the largest military hospital in kabul , afghan officials say .\nex-manchester city and united striker carlos tevez has signed for chinese super league side shanghai shenhua , the club confirmed on thursday .\nbritain 's rail passengers will see a 1.1 % rise in average fares from 2 january , 2016 , the rail delivery group -lrb- rdg -rrb- has announced .\nconservative ben houchen has become the inaugural tees valley mayor after winning a tightly-fought contest .\nhundreds of jobs could be lost if rolls-royce moves it research and development work out of derby , a unite union organiser has said .\nas i write this , thai authorities have re-opened the erawan shrine after the devastating attack on monday that killed more than 20 people and injured scores more .\never fancied organising a concert by your favourite band or singer ?\nfrankie raymond scored a late winner as promotion-chasing dagenham beat york in the national league at victoria road .\nin 2008 , engineering student samay kohli wanted to build a humanoid robot , but his professor told him it would not be possible .\na father killed his son by shaking or throwing him when he was just four weeks old , a jury has been told .\na police community support officer who leaked confidential intelligence to a drug dealer has been jailed for five years .\nany student seeking asylum should be able to finish their education here , the national union of students -lrb- nus -rrb- wales has said .\nmore charges against `` individuals and entities '' are being considered as investigations into allegations of corruption within fifa have expanded , says us attorney general loretta lynch .\npaddy lowe has left his position as technical boss of mercedes .\njust over half of bathing spots along england 's coast have no lifeguards on duty over the summer .\nlucy shuker defended her mixed doubles title on the final day of the british open in nottingham .\nireland flanker cj stander says scrum-half conor murray will not need special protection in saturday 's six nations opener against scotland at murrayfield .\npremiership semi-finalists wasps have signed two young forwards to bolster their first-team squad for next season .\nthe deadly spread of cancer around the body has been cut by three-quarters in animal experiments , say scientists .\nengland 's tommy fleetwood was denied a second 2017 european tour title after losing a play-off to bernd wiesberger at the shenzhen international .\ntheresa may and education secretary michael gove have paid tribute to each other in a bid to draw a line under their row over extremism in schools .\na mine , which has been made popular again by the recent bbc series poldark , is to get a `` facelift '' .\ndurham secured their first t20 blast win in seven attempts as they beat leicestershire in a frantic seven-overs-a side contest .\nfr alec reid , who was a key figure in the northern ireland peace process , acting as a go-between between the ira and politicians , has died .\nus researchers have developed what they call a `` molten glass sewing machine '' by combining 3d printing of glass with a mathematical model of how a liquid thread forms different types of loop .\nanthony foley once described rugby as , basically , `` a street fight with a ball '' .\na woman has been arrested on suspicion of dangerous driving after a car crashed through a seafront barrier and fell on to rocks .\nprince tommy williams , who used to be a child soldier in sierra leone , was one of hundreds of volunteers who helped fight the spread of ebola .\na prestigious african-american college has discontinued a professorship funded by the comedian bill cosby , following allegations that he assaulted several women .\nthe queen , home secretary theresa may and santander bank boss ana botin have been declared the uk 's top three most powerful women in a bbc survey .\nthe force - the mysterious energy field used by the jedi in star wars - has been discovered by researchers at the cern laboratory .\nas one of the greatest chinese fables is set to be retold yet again , in the form of a netflix series , the bbc 's heather chen looks at the enduring appeal of a wandering monk and his loyal friends .\na number of emergency call outs to properties being fumigated with pest control `` smoke bombs '' has prompted a warning from dorset fire service .\nwarwickshire bowler boyd rankin will play for ireland in the world twenty20 after switching back from england .\nleague two side york city have signed hull city midfielder matt dixon on an 18-month deal .\nthe artist who created the album cover for the beatles ' sgt pepper album has been given a top honour in the band 's home city .\npolice in india 's maharashtra state have arrested five members of an upper caste for beating , stripping and parading naked a low-caste dalit woman .\nmore than 30 of the britons who won medals at london 2012 were aged 25 or under .\ndavid cameron should not become leader of nato as his `` talents do not include wisely-judging strategic issues '' , a senior conservative mp has warned .\nbudget cuts at southampton city council could result in nearly 200 job losses .\nvirgin east coast rail workers have voted to go out on strike in a dispute over job cuts , working conditions and safety , the rmt union has said .\nmanager slaven bilic said he was `` angry and frustrated '' after west ham failed to reach the europa league group stage .\nmanager grant mccann has apologised to the fans for peterborough united 's 4-1 home defeat by fellow league one play-off hopefuls southend united .\na student housing developer is planning to build around 150 apartments on the dublin road in south belfast .\nthe windscreen of a psni car has been smashed during an attack on a police patrol in carrickfergus .\nit 's a strange phenomenon - teenagers opting to return to the classroom over the easter holidays .\nmercedes formula 1 boss toto wolff admits that nico rosberg 's decision to retire took him completely by surprise - but it is only the start of his problems .\na drug that destroys the characteristic protein plaques that build up in the brains of patients with alzheimer 's is showing `` tantalising '' promise , scientists say .\na 15-year-old girl has suffered a serious head injury after being hit by a car on a pedestrian crossing in dundee .\nwhen marine le pen appeared in the kremlin on 24 march , it was vladimir putin himself who gave voice to the thought that was surely on many people 's minds : .\nthe release of disney 's beauty and the beast has been postponed in malaysia .\nospreys captain alun wyn jones has welcomed the news that the welsh rugby union and its four regions are set to sign a new participation agreement .\nthe personal details of more than 150,000 members of dating website muslim match have been posted online .\njustice secretary michael matheson is to host a summit of experts to consider how the uk 's brexit vote could affect scotland 's justice system .\nan expert has been left puzzled as to why a fin whale has washed up on the coast of north norfolk .\nthe us senate has failed to pass a republican proposal to repeal president barack obama 's signature healthcare policy without replacing it .\nthe former chairman of a westminster standards watchdog has called for an investigation into societies that receive public money in rent from mlas for their constituency offices .\nbody camera footage shows that the father of a six-year-old autistic boy was attempting to surrender before police opened fire , killing his son , a lawyer has said .\nat least seven female students have died after a fire at a boarding school hostel near the northern nigerian city of kano on sunday night , officials say .\ncrewe alexandra made a bid to sign new manchester united star marcus rashford on loan last season , assistant boss james collins has revealed .\nfive firefighters have been injured while tackling a blaze on common land near exeter .\nsocial housing tenants could be offered discounts of up to # 75,000 under plans to increase the numbers exercising the `` right to buy '' their home in england .\nnorth korea has test fired a mid-range ballistic missile which crashed a few seconds after launch , say south korean military officials .\nglasgow warriors assistant coach mike blair believes it is vital the pro12 club sign up more of their squad on new contracts .\nthe canadian parliament is considering passing legislation that will make the english version of the national anthem gender-neutral .\nasian countries have taken top places in global school rankings for maths , science and reading , with england and northern ireland among high performers .\nrangers will challenge a two-match ban offered to defender rob kiernan for violent conduct following a clash with st johnstone 's steven anderson .\ngovernors at a gwynedd school want a consultation restarted over church ownership of its new # 10m campus .\na huge sinkhole has appeared on the 13th hole of a golf course in texas , america .\nnorthern ireland 's kris meeke survived a late scare at rally mexico to clinch his fourth win in a world rally championship event .\na visitor centre at an internationally important nature reserve in east yorkshire has reopened after a # 1.3 m upgrade .\nchina has executed eight people in the north-western region of xinjiang , for what it calls `` terrorist '' attacks , reports the state news agency xinhua .\njason roy did not know how close he was to breaking the record for the highest score by an england batsman in a one-day international .\nfirst minister arlene foster has denied that campaigning for the uk to leave the eu was a mistake .\njeremy corbyn has said he will `` reach out '' to labour mps if he is re-elected as the party 's leader this week .\nthe police federation of northern ireland -lrb- pfni -rrb- has called for a `` full inquiry '' into the operation of the police ombudsman .\na man in his 20s has died after falling from his bike at a motocross event in suffolk .\natletico madrid defender filipe luis believes `` there is fear that barcelona will be eliminated '' from the champions league , and claims his side were treated unfairly at the nou camp .\ndavid cameron says a deal struck with eu leaders will give the uk `` special status '' and he will campaign with his `` heart and soul '' to stay in the union .\nresidents are angry they have to keep their doors and windows shut 10 days after 1,000 tonnes of waste caught fire on farmland .\nan afghan court has passed a landmark judgement , using dna evidence to convict a man for the multiple rape of his daughter .\nfemale islamic clerics in indonesia have issued an unprecedented fatwa against child marriage .\nsaudi arabia 's foreign ministry has said it is a matter of `` great concern '' that 9/11 relatives in the us may be able to sue the kingdom for damages .\nmla jonathan bell has claimed he was told he would not be able to challenge the renewable heat incentive -lrb- rhi -rrb- scheme because two dup special advisers `` have extensive interests in the poultry industry '' .\nformer first minister alex salmond has made his final speech in the scottish parliament amid emotional scenes in the holyrood chamber .\nformer bbc dj chris denning has pleaded guilty to 21 child sex offences committed between 1969 and 1986 .\nhearts head coach robbie neilson labelled a challenge on jack hamilton unacceptable after the young goalkeeper was left needing stitches after the 4-2 win over infonet tallinn .\nwork on building eight type 26 frigates at shipyards in glasgow will start next summer , the defence secretary has said .\na wine bar has been fined # 100,000 after a woman drank a cocktail containing liquid nitrogen and had to have her stomach removed .\nmorecambe must not get carried away despite sitting top of league two , says shrimps boss jim bentley .\na man arrested on suspicion of shooting a female student dead and wounding another at a school in india has been remanded in custody .\npayments to a college 's cardiff campus have been suspended after a bbc wales ' week in week out investigation into fraud allegations .\nthe man accused of throwing a banana peel at comedian dave chappelle during a new mexico show has been charged with disturbing the peace and battery .\ndavid cameron has dismissed speculation free school meals for all infant children could face cuts .\nst johnstone players danny swanson and richard foster are set to face `` severe '' punishments for brawling with each other in the 1-0 defeat at hamilton , manager tommy wright says .\na fifa official who assessed bids for the 2018 and 2022 world cups has had his ban from football cut to two years .\nlewis hamilton and nico rosberg are on a `` final warning '' that they will be severely punished if they crash again but remain free to race .\nhome ownership among 25-year-olds has fallen by more than half in 20 years , according to council leaders .\nmembers of the public are being asked to help create a record of ritual markings on buildings that were once believed to ward off evil spirits .\nintelligence agency gchq has accredited six uk universities to teach specialist master 's degree courses to future internet security experts .\na seven-year-old girl drowned at her best friend 's birthday pool party while there was no lifeguard on duty , an inquest heard .\nnorth korea has claimed it has the technology to make nuclear warheads small enough to fit on a missile .\nwolves midfielder conor coady will be fulfilling a boyhood dream when he finally gets to play a first-team game at anfield on saturday .\nbeach huts at a dorset resort could become unaffordable following rent hikes , tenants have claimed .\nwhen the policeman who had shot dead the suspected armed robber , azelle rodney , in north london was cleared of murder earlier this month , an email quickly dropped into my in-box .\nthree of us dj casey kasem 's children and his brother have sued the late star 's widow for wrongful death in the latest move in a bitter family feud .\nit 's thought as many as half a million people crammed the roads and beaches outside the kennedy space center to see endeavour 's final launch .\negyptian security forces are using sexual violence against detainees on a massive scale , according to the international federation for human rights .\nthe championship has become a `` naughty boys corner '' for relegated premiership sides , according to the cornish pirates chairman , after the scrapping of play-offs from the second tier .\neuro 2016 will be contested by 24 teams over 30 days at 10 different venues in france .\nthe met office has warned of very strong winds along the western coastlines of wales throughout the day on monday .\nstormont 's finance committee has said it wants to see a letter the head of the civil service has written regarding the national crime agency 's investigation into the nama loan sale .\nfive men remain in police custody in connection with the fatal shooting of a 28-year-old man in birmingham .\nmark ronson has clinched his first uk number one with uptown funk .\nthe bbc 's news at ten is to run 10 minutes longer in the new year , with the bulletin set to end at 22:45 gmt on every weekday except friday .\ntechnology firms will get `` exclusive access '' to details of the cia 's cyber-warfare programme , wikileaks has said .\nmae dynes a ' i chariad , wnaeth achosi marwolaeth dynes arall mewn gwrthdrawiad wrth ei dilyn ar hyd strydoedd caerdydd , wedi eu dedfrydu i gyfnodau sylweddol o garchar .\nthe fate of ailing department store bhs is likely to be decided later on thursday , with an announcement expected from administrators duff & phelps .\nlabour has said it would give victims of sexual offences the right to challenge decisions by police not to prosecute suspects .\nmillions of savers are being reminded that they may need to move some of their cash , to guarantee it will be fully protected in the event of their bank going bust .\nthe bbc understands that the belfast telegraph is planning to move to clarendon dock .\na school has been forced to close until monday after more than 145 pupils and staff came down with a sickness bug .\nmichael doughty earned a draw against millwall in swindon 's first game since luke williams was named manager .\none of the biggest collectors of marilyn monroe memorabilia has died following a short illness .\nthe ebola victim who is believed to have triggered the current outbreak - a two-year-old boy called emile ouamouno from guinea - may have been infected by playing in a hollow tree housing a colony of bats , say scientists .\nhistorians are hoping to place a plaque on the unmarked graves of four children who died when a german bomb exploded in wrexham after being carried home as a solider 's souvenir during world war one .\nthe body of a missing malaysian deputy public prosecutor has been found in an oil drum filled with concrete near kuala lumpur .\nleicester city striker gary taylor-fletcher has joined sheffield wednesday on an initial month-long loan .\na multi-million pound road scheme to ease congestion in taunton has opened more than two years behind schedule .\nhundreds of scottish troops are to be deployed to afghanistan .\ntop a-level grades have increased for the first time in six years , as teenagers in england , wales and northern ireland get their results .\nthe amount paid by english clubs to agents has risen by 38 % in a year - up from # 160m to # 220m .\na doctor who was jailed for falsifying clinical trials for his own financial gain was finally struck off as a gp after failing to lodge an appeal .\na young girl shot in the head in east sussex remains gravely ill in hospital .\nfive penalties from fly-half camille lopez consigned scotland to defeat in their opening six nations match for the ninth consecutive year .\npresident barack obama rode in a lift with an armed security contractor who had assault convictions , in another security lapse .\nbhp billiton and vale have agreed a deadline of 30 june to consolidate and settle claims resulting from brazil 's samarco dam disaster in 2015 .\nfrench duo nicolas mahut and pierre-hugues herbert plan to pay tribute to victims of the paris attacks during the atp world tour finals in london .\nboth international governments and the world 's biggest tech companies are in crisis following the leaking of documents that suggest the us government was able to access detailed records of individual smartphone and internet activity , via a scheme called prism .\noscar-winning producer robert chartoff , who was behind hit boxing films such as the rocky series and raging bull , has died in california , aged 81 .\nartist ai weiwei is setting up `` lego collection points '' in different cities after being inundated with offers of donations from supporters .\nus first lady michelle obama is joining james corden in his hit sketch carpool karaoke this week .\nthe brother of the alleged captor of british model chloe ayling has been arrested , police have said .\nkevin brown 's hat-trick against his former club gave warrington a derby win against widnes to progress to the last eight of the challenge cup .\nthe poorest and most vulnerable people in the uk would be hit hardest by the economic consequences of leaving the eu , david cameron has warned .\npresident rodrigo duterte says the philippines will not end alliances with other countries , despite his increasingly anti-us rhetoric .\nfor a president who began his first term in the centre of the islamic political spectrum , hassan fereydoun rouhani , 68 , has now moved firmly to the left , placing himself with the reformists .\nus secretary of state rex tillerson says ties with russia are at a low point and must improve .\nhe is instantly recognisable both from his appearance - the beard and the military fatigues - and from his first name alone : fidel .\nbenfica won their fourth consecutive portuguese league title thanks to a comfortable win over vitoria guimaraes on the penultimate day of the season .\na ukrainian opposition politician , oleg kalashnikov , has been found dead with gunshot wounds in kiev - the latest ally of the former government to have died in suspicious circumstances .\nsignificant job opportunities will be lost unless a reduced corporation tax is introduced into northern ireland , a business group has said .\na body has been found during a search of glen coe for a hillwalker who was reported missing last week .\nthe far-right national front -lrb- fn -rrb- of french presidential candidate marine le pen may have defrauded the european parliament of about $ 5m -lrb- # 4m ; $ 5.4 m -rrb- , eu sources say .\nthe fuselage of a world war ii spitfire that has spent the last few years in a garden in oxford has failed to reach its asking price at auction in surrey .\nthe royal bank of scotland is to issue its first polymer # 10 note to the public on 4 october .\nthe pilot of a police helicopter has called for a ban on lasers after a beam of light was shone at his aircraft as it flew over northamptonshire .\ncanada is reopening its market to beef exports from 19 eu member states , lifting a ban that was imposed in 1996 because of bse `` mad cow disease '' .\nan # 18m project to reduce flooding on a stretch of railway near oxford has been completed .\ngiannelli imbula scored his first goal for stoke as they ended their three-match losing streak in the premier league against bournemouth .\na social media feed of rail works at reading is due to the `` embarrassing fallout '' of engineering delays at christmas , it has been claimed .\na man who was arrested after an 85-year-old woman was assaulted with a paving stone has been detained under the mental health act .\nhere teachers in france tell the bbc about their struggles to assert the country 's traditional values of free expression and secularism in the wake of the charlie hebdo attacks .\na military aircraft has made a six-hour journey to its new home at a museum .\ncoach joe schmidt believes ireland will face a furious backlash from a fired-up new zealand side in dublin on saturday .\nferry firm seafrance is to shed 127 jobs in dover after it was liquidated by a french court and told to cease activity .\nthree men have been rescued after their fishing boat collided with an offshore wind turbine and began to sink .\nwelsh former world champion nathan cleverly believes his world title fight against juergen braehmer can be a turning point in his career .\nbolton could be relegated to league one on saturday after they were beaten by brentford at griffin park .\nsolihull held on to claim a narrow victory over bromley despite being reduced to 10 men late on .\ndave king , paul murray and john gilligan have succeeded in being voted on to the rangers board at friday 's extraordinary general meeting at ibrox .\nbritain 's andy lapthorne won his fourth australian open quad doubles title after he and world number one david wagner retained their melbourne crown .\njon daly has not ruled out a return to dundee united , but the striker thinks his future probably lies abroad following his release by rangers .\nat least two rockets have hit the southern israeli city of eilat .\nbolivia has lowered the legal working age to allow children to work from the age of 10 as long as they also attend school and are self-employed .\nthe west 's `` whack-a-mole '' approach to counter-terrorism has gathered momentum with the killing of nasser al-wuhayshi , leader of al-qaeda in the arabian peninsula -lrb- aqap -rrb- .\nt in the park organisers have announced an overhaul of the festival 's campsite that will see it increase in size by a quarter .\ngiven that the uk labour party says that it is `` deeply concerned '' about the human rights situation in tibet , it might seem odd that one of its senior politicians is in lhasa at all .\nindia finished the opening day of the final test against south africa on 231-7 - the highest score of the series .\nhibernian are to appeal against the five-match european ban given to manager neil lennon .\nthe port of calais is closed following blockades by striking french workers , causing severe disruption in kent .\nthe current state of the labour party is a `` tragedy '' , former prime minister tony blair has said .\npresident : filipe nyusi .\nengland fly-half owen farrell has signed a new five-year contract with saracens , keeping him with the european champions until 2022 .\ninterim boss neil mccann has reversed his decision to leave dundee and taken on the position long-term .\nukip leadership hopeful steven woolfe has been ruled `` ineligible '' to stand in the contest to replace nigel farage - after he submitted his papers late .\nthe chairman of non-league billericay town has confirmed `` there is truth '' in reports that former the only way is essex personality mark wright is set to invest in the club .\ncardiff city boss neil warnock says he was `` disappointed '' that he did not get a call from aston villa over their managerial vacancy in the summer .\na new forest car park that attracts 270,000 visitors a year is to stay open longer following a public campaign .\nengland had to settle for a draw after an extraordinary final session on the fifth day of the first test against pakistan in abu dhabi .\nthe former chairman of myanmar 's ruling party has met opposition head aung san suu kyi , prompting speculation of an alliance .\nthe uk 's first maternity clinic for women who have been victims of rape and sexual assault has opened .\na superb pitching display from corey kluber helped the cleveland indians to an emphatic 6-0 win over the chicago cubs in the world series opening game .\npolice have praised the `` good family atmosphere '' among the thousands of people who turned out to watch guid nychburris events in dumfries .\na heavily pregnant woman who was repeatedly stabbed in a street attack , resulting in her daughter 's delivery hours later , is in a stable condition .\nformer new zealand skipper brendan mccullum has been named middlesex captain for this season 's t20 blast .\nremnants from an raf spitfire plane which crashed into a field in county monaghan in 1942 have been recovered .\nthe work and pensions secretary has defended changes to the welfare system , including disability benefit reforms .\na team of us doctors have found `` no sign of botulism '' in the american student freed by north korea after more than 15 months in captivity .\npremier oil 's shares nearly doubled in value on monday after trading was restarted following a suspension triggered by a major north sea deal .\nfrench energy giant edf says sales fell 7 % in the first three months of the year in the face of stiff competition , a mild winter and lower energy prices .\nhate crimes reported in canada rose slightly in 2015 , driven mainly by incidents targeting muslims , arabs and west asians , say official figures .\nthirty years after he went on trial at london 's old bailey for staging an act of simulated male sex in the play the romans in britain , the renowned british theatre director michael bogdanov , says he is proud to have been `` among those people willing to stand up and be counted '' .\na 22-year-old man has been taken to hospital following a `` serious assault '' in swansea city centre .\na council has spent # 30,500 unsuccessfully searching for new burial sites in oxford over the last four years .\ncoronation street and keeping up appearances actor geoffrey hughes has died aged 68 , his agent has said .\nbelfast boxer sean mccomb is one fight away from a medal at the european championships after stunning world number one vitaly dunaytsev in ukraine .\nchinese authorities have punished 197 people for spreading rumours online about the recent stock market crash and fatal explosions in tianjin , according to state news agency xinhua .\ndavid cameron has said too many children from immigrant families are not able to speak english when they start at school .\nsalvage teams working at the transocean winner oil rig are expected to carry out a detailed inspection later on wednesday .\nsales growth at b&m , the discount retailer chaired by former tesco chief executive sir terry leahy , has slowed considerably in the uk .\na schools campus in east ayrshire is set to be named after the celebrated scottish novelist william mcilvanney , who died last month aged 79 .\nnigeria international defender kenneth omeruo has been declared unavailable to play at the 2016 olympic games in rio because of a groin problem .\nsports minister carál ní chuilín has decided to send three civil servants to take control of sport ni .\na missing girl believed to have left home to see a man she met online has been found , say police .\na carmarthenshire sheep rustler has been convicted after police used dna testing on lambs for the first time in wales .\nus comedian bill cosby has resigned from the board of trustees of temple university in philadelphia amid ongoing allegations of sexual assault .\nsky has acknowledged that some of its customers are experiencing slow internet speeds as a consequence of it signing up new subscribers .\nit was an elegant question , as clear as the chill water in an angus burn .\nipswich town have signed striker kieffer moore from national league side forest green for an undisclosed fee and former mk dons defender jordan spence .\nashley young says manchester united manager louis van gaal has helped revive his hopes of an england recall .\nbritain 's largest companies will have to reveal the pay gap between their ceos and average workers , under new government proposals .\nengland women matched their male counterparts and secured a big win over new zealand as they sealed a 3-0 series victory over the world champions .\ndoubt has been raised over the authenticity of a painting purported to be by vincent van gogh which was displayed in a reading cafe .\ngreat britain 's number two kyle edmund will take on serbia 's janko tipsarevic in the opening match of their davis cup quarter-final in belgrade on friday .\na shootout in northern mexico has killed at least 14 people , officials say , amid a surge in drug-related violence in the country .\na lawyer who represented former guatemalan military leader efrain rios montt against genocide charges has been shot dead .\nrussia has questioned whether it needs to `` dance on the table '' or `` sing a song '' in order to compete in athletics at the rio olympics this summer .\nbritain 's jazza dickens will fight wba super-bantamweight title holder guillermo rigondeaux in cardiff on saturday , 16 july .\nit is a big year for andy murray - and not only because he is looking to add to his two grand slam titles .\nmore rail companies are cancelling services over the bank holiday weekend , as talks continue to try to avert a planned strike by network rail staff .\nchelsea have agreed a deal with paris st-germain , worth in the region of # 40m , for the sale of defender david luiz to the french champions .\nsinger ed sheeran has delighted fans at the latitude festival in suffolk by playing two surprise sets .\na metro rail service has been launched in the southern indian city of chennai , making it the sixth indian city to get the service .\na wildlife charity is calling for fishing to be banned at an east sussex venue after abandoned angling equipment caused injuries to 25 swans .\ncomedian eddie izzard has completed his challenge in south africa to run 27 marathons in 27 days for sport relief .\nfans have described the batman v superman : dawn of justice film as `` awesome '' and a `` must-see '' .\nnicola sturgeon has dismissed the uk government 's plans for a post-brexit customs deal with the eu as a `` daft ` have cake and eat it ' approach '' .\nbelfast giants have closed the gap on elite league leaders cardiff devils to six points with this comfortable win over the capitals at the sse arena .\na police officer said he hoped a shot from a taser stun gun would prevent a man soaked in petrol setting himself alight , an inquest has heard .\nlufthansa group is to introduce a surcharge for customers who buy its flights through third-party websites .\na muslim couple arrested over fears that they were heading to syria for `` extremist activities '' have won a court fight for the care of their children .\na book written by the late editor of french satirical weekly charlie hebdo , stephane charbonnier - known as charb - is set to be published posthumously .\niran 's deputy nuclear chief has denied a report that the core of the arak heavy-water reactor has been removed and filled with concrete .\nparents are taking legal action against a council following its decision to cut free school transport in a rural area .\nmany older people living in care homes have an `` unacceptable quality of life '' and quickly become institutionalised , says a watchdog .\nwycombe moved in to the league two play-off places with victory at lowly dagenham & redbridge in a game where both sides had a man sent off .\nhouse of cards star robin wright has revealed she demanded the same pay as her co-star kevin spacey - but what does fighting for equal wages look like for women who are not movie stars ?\natheist author prof richard dawkins has congratulated the people of wales after nearly a third of them revealed in the 2011 census that they have no religion .\ngeneral david petraeus , one of the united states ' most prominent military officers , has indicated he would be willing to serve in president-elect donald trump 's administration if asked .\ndundee leapfrogged ross county and moved into the premiership 's top six , prevailing in a hugely entertaining dens park encounter .\na court hearing for british plane spotters held over allegations of suspicious behaviour in the united arab emirates has been postponed for a week .\nthe winner of the man booker prize is announced later with british author neel mukherjee the bookies ' favourite to take the # 50,000 prize .\nthe north korean suspect questioned in connection with the death of kim jong-nam has said he was the victim of a conspiracy by the malaysian authorities .\noxford missed a chance to go top of league two when they were held at home by resurgent newport .\nmacclesfield have signed striker tyrone marsh on a one-year contract after he left national league rivals dover .\nchanges at the top of tata steel europe raise doubts about the `` long-term investment '' of the company , according the steelworkers union , community .\ntwo-thirds of scotland 's councils have cut the amount of money spent on lollipop men and women in the past three years , research by bbc scotland has found .\nemoji flags for wales , scotland and england could be available on tablets and smartphones by the summer .\nformer england striker andy cole says he faces a `` long road ahead '' as he recovers from his recent kidney transplant .\nian hutchinson has been taken to hospital with a broken leg after crashing on the second lap of friday 's senior tt on the isle of man .\na retired police wildlife crime officer has told the trial of two men accused of breaking scots fox-hunting laws he was waiting in a gulley with a shotgun .\nshares in japanese automaker mitsubishi motors plunged 13.5 % in friday trade to close at 504 yen .\njeremy corbyn has reaffirmed his desire to scrap the welfare cap after differences with his shadow cabinet , calling the policy `` devastating '' .\nopener david warner hit an unbeaten 122 as australia drew a rain-affected third and final test against west indies .\na rail traveller has spoken of his `` humiliation '' after being twice detained by armed police at reading station over concerns about wires seen in his pocket .\n`` i 'm here to help my new friends to build a big wall , like the chinese wall . ''\na `` manipulative and calculating '' police officer who abused his position to have sex with vulnerable women he met while on duty has been jailed .\nthe first victim of airasia flight qz8501 , found in the java sea after the crash on sunday , has been laid to rest .\nwhether it comes down to skill level , body shape , or pure accident , anyone who has played a sport will have some memory of how they came to be given a particular role .\ngoals from sone aluko and tom cairney gave fulham a west london derby win over brentford at griffin park .\nbradford city ended non-league chesham united 's fa cup dream as a comfortable win booked a spot in the third round .\na man from cumbria has been charged in connection with the rape of a boy 14 years ago .\nleeds united owner massimo cellino has ordered that all of the club 's players must live in the city .\na new deal to secure the air link between dundee city airport and london stansted for another two years has been announced .\nlincoln ladies have insisted their controversial relocation to nottingham and decision to play as notts county next season was their only option .\nthe construction firm jcb has left the business lobby group , the cbi , reportedly because of its anti-brexit stance .\nharassment of women is to be recorded as a hate crime in a bid to tackle sexist abuse .\nexeter head coach rob baxter says his side need to perform consistently at a `` high intensity '' if they are to earn more international recognition .\nhampshire 's liam dawson says it would be `` amazing '' to make his england twenty20 debut on his home ground .\nalmost one in five -lrb- 18 % -rrb- couples in the uk argue regularly or consider separating , a study suggests .\npret a manger has said it will pay teenagers on a week 's work experience its starting hourly rate after reports it planned to `` pay them in sandwiches '' .\na raf airman has made an appeal for the return of two stolen medals after hundreds shared his post about the theft on social media .\nthe delicate operation to remove a crossbow bolt embedded in a dog 's head took `` just one minute '' , the rspca said .\njordan spieth will begin the final day at the masters with a one-shot lead but playing partner rory mcilroy 's bid faltered on day three at augusta .\na woman from north london died in hospital because staff failed to identify she had blood poisoning quickly enough , an inquest has ruled .\non this week 's edition of tech tent we look at two visions of the future of gaming , and we ask whether we should be worried or excited by the latest advances in artificial intelligence .\neuropean commission president jean-claude juncker has announced plans that he says will offer a `` swift , determined and comprehensive '' response to europe 's migrant crisis .\nmore than half of common plant species and a third of animals could see a serious decline in their habitat range because of climate change .\nlazio have been ordered to play their next two home european games behind closed doors following crowd trouble .\nchelsea have signed former arsenal midfielder cesc fabregas from barcelona on a five-year deal .\nswansea city manager paul clement has said his side must reflect on the `` bigger picture '' after their 2-0 defeat by bournemouth in the premier league .\na philosophy student who wears vintage clothing has won a national contest for alternative models .\nit 's a mark of how much michael o'neill has achieved as northern ireland boss - this time four years ago a group of germany fans he met had to google his name to find out who he was .\nthe number of patients having to wait longer than the target time to be discharged from hospital has risen again , according to official figures .\nthe stark regional differences in the proportion of pupils studying a-levels in local state schools in england has been revealed - ranging from 2 % to 74 % .\na labour mp has expressed `` huge concerns '' about the counter-terrorism strategy in uk schools , after reports one of three east london teenagers who fled to syria has been killed .\nrussian coaches who `` do not understand how to work without doping '' should `` retire '' says the country 's deputy prime minister vitaly mutko .\nscotland 's ahmadiyya muslim community has launched a campaign promoting `` peace , love and unity '' following the death of glasgow shop keeper asad shah .\nbristol rovers have signed defender ryan sweeney and striker dominic telford on season-long loan deals from premier league side stoke city .\nscotland defender russell martin wants the team be brave when they travel to metz on saturday to face euro 2016 hosts france .\nit 's not easy taking opinion polls for an unprecedented election , such as the forthcoming scottish independence referendum .\nandy murray will face fellow briton liam broady in the first round of wimbledon , which starts on monday .\nqpr have denied steven caulker was involved in an altercation and say he was taken to hospital after cutting his head during a lunch with team-mates .\nfacebook has been ordered by a german privacy regulator to stop collecting and storing the data of german users of its messaging app whatsapp .\nsunderland ladies have re-signed midfielder lucy staniforth from liverpool and added defender kylla sjoman from scottish side celtic .\ntwo polish police officers have started patrols in a town where a polish man died after being punched to the ground .\nin a rare climbdown , the angolan government has withdrawn controversial legislation severely restricting how people use the internet .\nred bull 's daniel ricciardo said he felt `` screwed '' by the pit-stop error that cost him victory in monaco .\nlewis hamilton kept his title hopes alive with a comfortable victory from mercedes team-mate nico rosberg in the mexican grand prix .\nmichael gove has confirmed that some foreign trawlers will still have access to uk waters after brexit .\naustralian police in victoria have warned the public not to engage in `` intimidating '' behaviour after reports of clowns terrorising people in melbourne .\nsunderland and italy winger emanuele giaccherini has joined napoli on a three-year deal for an undisclosed fee .\nmany kenyans have ignored opposition leader raila odinga 's call for a strike over disputed elections .\npet owners who bag up dog poo and leave it on beaches are threatening the safety of people who visit the seaside .\nthe government has seen off calls in parliament to scrap its planned rise in vat to 20 % from next january .\nparma are set to begin next season as an amateur club in italy 's fourth tier after failing to find a buyer to pay off a debt of 22.6 m euros -lrb- # 16.2 m -rrb- .\nthis is my last blog here , as i 've decided to leave my post as the bbc 's chief business correspondent based in singapore and move back to the uk .\neastleigh have confirmed the loan signing of portsmouth striker matt tubbs .\nshares in fizzy drinks giant coca-cola have fallen more than 4 % after the firm reported a fall in profits .\nedinburgh capitals captain jacob johnston was delighted as his team ended their losing run of games - but was then left to rue another defeat .\na new female osprey which has nested at a scottish wildlife trust reserve in perthshire has laid her first egg .\nrelatives of the birmingham pub bombings victims have said they can not understand why they are having to fight to get funding for their legal fees .\nthe pakistani military has carried out air strikes in tribal areas in the north-west of the country , killing at least 15 militants , officials say .\nthomas ridgewell , aka tomska , is a long-serving youtuber - he 's been making comedy videos for years .\na us drone attack in yemen targeted but failed to kill one of al-qaeda 's most influential figures , us reports say .\nan 81-year-old motorist driving the wrong way along the a14 at 50mph was stopped by police who put their car in the way of her vehicle .\nbritish wba world bantamweight champion jamie mcdonnell will defend his title against juan alberto rosas on 9 april .\none of france 's top ministers , sylvie goulard , has resigned from her defence role less than a month after being given the job .\nan rspca worker has rescued an adult male swan from the roof of a building in the centre of lincoln .\na top english player deserves to make # 1m a year , says players ' union boss damian hopley .\nthere is an `` invisible epidemic '' afflicting the world , but it 's not contagious or infectious , and there are often no outward symptoms .\nnewcastle director of rugby dean richards believes his side are gaining attention due to their higher position in the premiership table .\nthieves used a jcb to smash into the front of a filling station store during a cash machine raid in derbyshire .\na takeaway has been shut down following a teenager 's death from an apparent allergic reaction to one of its meals .\na woman was raped in the middle of the day after being forced into a car with her toddler as they walked by the sea .\nvote leave has promised a # 50m prize for the person who correctly predicts who they think will win each game of the 2016 european football championships this summer .\nafc wimbledon will investigate an incident between a club volunteer and charlton boss karl robinson at the end of saturday 's 1-1 draw .\nbarclays bank has paid a further $ 100m -lrb- # 77m -rrb- to settle a claim by 44 us states that it rigged the libor rate system between 2005 and 2009 .\na schoolgirl has beaten thousands of children to get her short story written in jacqueline wilson 's new book .\nformer sheffield wednesday striker gary madine scored one of the goals as bolton beat league one rivals sheffield united to reach round three of the fa cup .\nmental health services failed a teenage girl who had suicidal thoughts , her family has said following an inquest into her death .\neu nations have agreed to draw up a blacklist of tax havens in the wake of the panama papers leaks .\nblackberry has launched its first touchscreen-only android handset , in a bid to diversify its range of devices .\na 55-year-old man who died after being hit by a car in monmouthshire has been named by gwent police .\nmesut ozil says he wants to stay at arsenal and will discuss his future with the club after a pre-season tour of australia and china .\nthe last lump of coal mined in south yorkshire has been presented to doncaster 's mayor at a ceremony marking the end of mining in the region .\nwall street posted solid gains , with the s&p 500 and nasdaq indexes reaching record highs .\nthe national portrait gallery has launched a campaign to stop the export of the earliest known british oil painting of a freed slave .\nnorwegian scientists have put forward a new theory to explain the inspiration behind one of the most famous works of art ever produced .\nthe maker of irn bru has announced an increase in its annual profit as it plans to cut the sugar content of many of its drinks .\na scottish man and an irish woman have died after a yacht capsized and broke up on the west coast of south africa .\nan experiment in germany has found evidence of job discrimination against women with turkish names - and even more if they wear an islamic headscarf .\ntitle favourites roger federer and rafael nadal will begin their us open campaigns in new york on tuesday .\na 23-year-old man has died after being shot in a sheffield street .\nsport ireland chief john treacy has warned irish amateur boxing bosses that their funding is at risk following the latest row within the sport .\ngeologists have found evidence for an ancient megaflood which they say is a good match for the mythical deluge at the dawn of china 's first dynasty .\nactress tippi hedren has claimed alfred hitchcock sexually harassed her while they worked together in the 1960s .\nsalford have signed ireland international tyrone mccarthy from australian nrl side st george illawarra dragons with immediate effect .\nan exhibition showing thousands of blue nudes in hull has been announced as the city of culture 's flagship exhibition .\na police officer has been sacked over press leaks about the `` plebgate '' affair , becoming the third met pc to be dismissed over the row .\none of italy 's largest migrant centres has been in the hands of the mafia for more than a decade , police have said .\nmore than 5,000 police officers in england and wales are planning to leave the service in the next two years , a police federation survey suggests .\nrock and pop 's most influential figures are to be honoured with blue plaques on bbc music day this year - and you can decide who gets one .\nextremism is contributing to and exploiting mass migration , the home secretary has warned .\nnigeria 's military is offering large rewards for information leading to the capture of leaders of the militant islamist group boko haram .\ncameron steel and tom latham shared a 234-run first-wicket stand as both scored centuries to help durham dominate against leicestershire .\npokemon go has become a phenomenon in the few days since its release - and the creatures have even been spotted outside 10 downing street , ahead of theresa may 's first appearance as prime minister .\ntalks between greece and its european creditors on a third $ 86bn -lrb- # 60bn ; $ 94bn -rrb- bailout have been delayed due to logistical problems , officials say .\nthe strongest el nino weather cycle on record is likely to increase the threat of hunger and disease for millions of people in 2016 , aid agencies say .\npolice investigating the discovery of human remains in east lothian have spoken to the family of missing woman louise tiffney .\nsaul ` canelo ' alvarez says he is prepared to fight gennady golovkin at any weight after knocking out britain 's amir khan in las vegas .\na 28-year-old man has been beaten by a gang armed with metal bars and bats in coleraine , county londonderry .\nresidents and representatives of food firms have staged a protest at norwich city hall over a planned energy park .\nwe 're always accused of being obsessed with the weather in the uk - but this year we 've had a good excuse .\nfrance has suspended its honorary consul in the turkish port of bodrum after a tv report showed a shop she owns selling dinghies to migrants .\na potash mine in east cleveland has been issued with an improvement notice after a fire broke out hundreds of metres below the sea bed .\nred bull have said that their hopes of securing a mercedes engine supply in 2016 are now over .\nthe motorsport industry is sceptical about locating the proposed circuit of wales track in ebbw vale , a director of a motor circuit owners ' group says .\nsix teenagers found dead in a garden hut in the german state of bavaria died from carbon monoxide poisoning , police have said .\nbritain 's tom daley said he was `` heartbroken '' after a shock semi-final elimination in the olympic 10m platform diving competition .\nex-prime minister sir john major has been accused of `` an absolute dismissal '' of democracy after he suggested there should be a second brexit vote .\nlast summer , the copper box played host to surprise smash-hit handball , a sport which engrossed unsuspecting british audiences .\na sports car once owned by the late british actress diana dors has sold for $ 3 million -lrb- â # 1.9 m -rrb- at a california auction .\nfrance has held a national memorial service for the 130 people who died in the paris attacks two weeks ago .\nsergio garcia shot a six-under-par 66 to share third place at the bmw international , his first event in europe since winning the masters .\nit 's a curious thing to see a group of early whale foetuses up close - to see beings so small that have the potential to become so big .\nshares across asia traded mixed on friday , failing to pick up the positive lead from wall street .\nwe actually do n't have a picture of thortonloch beach - yet - so if you have a great shot of this , or if one of our other pictures is n't of quite the right spot , or indeed if you have any other great images from anywhere around scotland , you can send us your pictures here .\na bridge built in the 14th century has reopened after it was hidden from view for more than a century .\nchildren across britain linked up with tim peake on the international space station yesterday for a big question and answer session .\njake cassidy 's second-half equaliser earned hartlepool their first point in the vanarama national league as they drew against macclesfield .\napp-based car-hire service uber is losing more than $ 1bn -lrb- â # 699m -rrb- a year in china , as it struggles against what it called a `` fierce competitor '' .\na deal has been struck on using satellites to track planes , motivated by the disappearance of malaysia airlines flight mh370 last year .\ngreece 's government has pledged reform to try and satisfy the demands of creditors in europe while maintaining its pre-election pledges .\ncrowdsourced funding site kickstarter has suffered its first publicised scam .\nthree early 19th century buildings in reading are to be converted into private homes , under plans published by the university of reading .\na deal to set up a new authority for the solent area is `` almost certainly dead '' , council leaders have said .\npharmaceutical firms pfizer and flynn pharma have been accused by the uk 's competition watchdog of charging `` excessive and unfair '' prices for an anti-epilepsy drug .\nscientists are exploring the deepest place on earth - and streaming live video from there .\nthe inquest into the death of alice gross will examine whether failures by the government and police contributed to her death , a coroner has ruled .\nan australian author says she `` fell off her chair '' when she discovered an email about a $ 150,000 -lrb- a$ 207,000 ; # 106,000 -rrb- literary award was not a hoax .\ncolchester united have signed winger kyel reid on loan until january from league two rivals coventry city .\ntime spent travelling to and from first and last jobs by workers who do not have a fixed office should be regarded as work , european judges have ruled .\nthe coastguard has called off a search for a kayaker after it declared the alarm an `` elaborate hoax '' .\nup to a quarter of iraq 's christians are reported to be fleeing after islamic militants seized the minority group 's biggest town .\ngordon benson claimed great britain 's first european games gold medal with victory in the men 's triathlon in baku , azerbaijan .\nrangers have made right-back lee hodson their eighth summer signing on a three-year deal from mk dons .\nthe welsh liberal democrats would create 140,000 extra apprentices over the next five years if the party wins power in may 's elections .\nthe independent and independent on sunday newspapers are to cease print editions in march , leaving only an online edition , the owner has said .\nhollywood actor morgan freeman is to receive a lifetime achievement award from the american film institute -lrb- afi -rrb- .\na police officer who saved the life of a suicidal man by grabbing him by the neck as he tried to jump from a snow-covered roof has won a bravery award .\ntwo 13-year-old girls accused of stabbing a classmate to please the online horror character slender man will be tried in an adult court , a us judge has ruled .\nstephen maguire said he was `` embarrassed '' at not being able to motivate himself for the world championship at the crucible .\nleague one side wimbledon have signed millwall midfielder jimmy abdou on a season-long loan deal .\nex-manchester united and netherlands boss louis van gaal says he has retired from coaching after a 26-year career .\na woman who blogged about her battle with terminal brain cancer has died a day before she was due to get married .\ntwo 300-year-old cups with saucers have been stolen from a country house .\nengland and wales have accused each other of illegal scrummaging before the six nations showdown at twickenham .\ndiscount shoe retailer brantano has gone into administration , about four months after the chain was bought by an investment firm .\na cruyff turn , fergie time , the matthews final : football 's icons have often entered the language of the sport but can any of those greats claim to have changed the game as much as the nervous , middle-aged belgian sitting in front of me ?\nhere is the full text of theresa may 's letter to european council president donald tusk , beginning the start of brexit negotiations .\nan oak tree planted in glasgow nearly 100 years ago as a tribute to the city 's suffragettes has been named scotland 's tree of the year .\na new report has been published detailing the advantages of enhancing and extending the borders railway .\nthe political crisis means that the northern ireland executive still has not agreed a budget for the 2017/18 financial year .\nthe number of children referred to the nhs with gender identity issues has increased significantly in recent years , according to figures obtained by the bbc .\na teenage girl and a 20-year-old man are accused of sending money to the so-called islamic state from australia .\na council has been accused of double standards for allowing a stage of a major cycle race to start in a town centre where cyclists have been banned .\njapan 's emperor akihito has expressed his desire to abdicate in the next few years , public broadcaster nhk reports .\nthailand 's military-run government has forced human rights watch -lrb- hrw -rrb- to cancel an event in bangkok to launch a report into alleged abuses in vietnam .\na primary school in leeds has introduced a temporary ban on children playing `` tig '' during break times after `` clothes were torn '' and pupils were left `` upset '' .\nengland and sunderland footballer adam johnson has appeared in court to deny charges of sexual activity with a 15-year-old girl .\nas national football league commissioner roger goodell stepped to the podium for his annual pre-super bowl address , he could have done worse than invoke the queen 's speech of 1992 in which hrh elizabeth ii referred to the events of the previous 12 months as an ` annus horribilis ' .\nospreys hope to have centre josh matavesi available for their boxing day derby match with scarlets .\nfabrice muamba was `` in effect dead '' for 78 minutes following his on-field collapse , the bolton wanderers club doctor jonathan tobin has revealed .\nthe ousted chairman of india 's tata group has lashed out at the way his sudden departure was handled .\na child missing in alabama since 2002 has been found safe in ohio with his father , who has been charged with abduction , authorities have said .\nan israeli soldier has been killed and another israeli hurt in a palestinian car-ramming attack in the occupied west bank , the israeli military says .\ncouncillors in north yorkshire will on friday consider whether to approve fracking in england for the first time since a ban on the technique was lifted in 2012 .\nthe word cloud evokes images of all things soft and gentle ; the kiss of a kitten or the soft touch of a lambswool mitten .\na new exhibition in brighton is exploring how animals considered exotic by the georgians and early victorians were depicted , kept and presented .\nwales u20s have named their 32-man squad for the six nations as they bid to impress following their grand slam campaign last year .\n-lrb- closed -rrb- : us stocks shook off early losses to close higher on wednesday led by gains in tech and health care .\nnursing job applicants are being offered two months free accommodation in a bid to quell staff shortages at a hospital trust .\nthis has been a place which - unlike anywhere else in china - had a genuinely elected government but many here are wondering if the so-called `` wukan experiment '' is about to die .\narcade fire brought a party atmosphere to glastonbury on friday , hours after an electric storm stopped the festival .\nfrench mosques have invited non-muslims in to try to create greater understanding of islam in france .\na man accused of kidnapping his partner allegedly drove at a police officer who tried to save her , a court has heard .\nalmost one in 500 babies in hospitals in england is born dependent on substances their mother took while pregnant , a bbc investigation has found .\na 37-year-old man has been arrested on suspicion of murder after a woman who was found in her east london flat with serious injuries died .\njeremy guscott fought many battles with leicester during his years in the centres for bath , so he knows just how strong the rivalry is between the two clubs .\na petrochemical company is threatening legal action over the national trust 's refusal to allow testing for shale gas on its land .\nthe nelson mandela foundation -lrb- nmf -rrb- has called for south africa 's president jacob zuma to be sacked .\nofsted is warning that pupils are being taught in `` squalid '' schools that are unregistered and unsupervised .\nprison staff had to use a `` cherry picker '' crane to remove packages of drugs and mobile phones which had become trapped on the roof .\nmadonna premieres the first music video from her new album , rebel heart , on snapchat .\nwork has begun to demolish a 1970s shopping centre in the centre of oxford as part of a # 440m redevelopment .\nfacebook has confirmed that it has removed a post on its site which included names and photographs of people accused of anti-social behaviour in west belfast .\ntorquay guaranteed another season in the national league with a well-deserved victory against relegated north ferriby at plainmoor .\nmoors murderer ian brady has lost his legal bid to be transferred from a psychiatric hospital back to prison .\noscar-winning actor matthew mcconaughey has surprised students at the university of texas at austin by taking part in a scheme to provide them with safe late-night lifts home .\na 31-year-old woman has been sexually assaulted after getting into a car she believed was a private hire taxi .\nin our series of letters from african journalists , media and communications trainer joseph warungu gives a personal guide to some of the key people , places and events to watch out for in africa in 2017 .\ncambridge 's dismal start to the league two season continued as they surrendered the lead to lose 2-1 at home to morecambe .\nlabour has accused the conservatives of putting `` vitriolic personal attacks '' at the heart of their election campaign .\nwest ham will sign norway midfielder havard nordtveit on a free transfer on 1 july after his contract with borussia monchengladbach runs out .\nall 25 members of a lifeboat crew have resigned in protest at the sacking of their coxswain .\nsports direct chairman keith hellawell has lambasted critics of the sportswear firm , saying an `` extreme political , union and media campaign '' has damaged its reputation .\nus federal law enforcement agents have been ordered to record interviews with suspects , in a reversal of a decades-old justice department policy .\ntwo denbighshire hospitals which had serious food safety standard failings uncovered by an inspection have now been given improved ratings .\nhuman rights and minority interests are a sensitive matter in many countries , but in brazil they are now at the centre of an unprecedented controversy .\nfour letters in burnished steel are stuck to the sort of bare metal rack that you can see in any warehouse in america .\nin recent weeks there have been an unprecedented number of papers on dark matter in such a short time .\nthe mayor of bristol has led tributes to carmen beckford , the founder of st pauls carnival , who has died aged 87 .\nthe nhs in northern ireland has not had a good press in recent years .\nthis year 's royal british legion poppy appeal is calling on members of the public to recognise younger veterans and serving soldiers .\na road worker who was critically injured in a collision involving a van in mid devon has died .\na lifeboat and coastguard search has been carried out after a report of a body seen in the water near the tay road bridge at dundee .\njustin gatlin became the fifth-fastest 200m runner in history as he won sunday 's final at the usa track and field outdoor championships .\nfrance hopes that brexit will weaken britain and london 's role as a financial centre , according to the city of london 's envoy to the eu .\nmps investigating the collapse of bhs have written to the pensions regulator , demanding more information about plans to restructure the pension scheme - first revealed on the bbc 's newsnight .\naberdeen have been unsuccessful with their appeal against jonny hayes ' sending off in saturday 's 2-1 victory over celtic .\na transgender woman has been found guilty of raping a girl when still living as a man .\nroma captain francesco totti has signed a new two-year contract which ties him to the italian side until just before his 40th birthday .\na nursery worker has appeared in court accused of rape and inciting the sexual exploitation of a child .\nbirmingham city club captain paul robinson has signed a new one-year contract with the championship club .\na convicted murderer has gone on trial accused of historical sex offences against two teenage girls .\nat first glance , you see someone huddled in blankets and clutching at sleep on a cold park bench .\nmobile messaging service whatsapp is now said to be used by a billion people monthly , but it is not just a conduit for social chat and event planning .\nthree opposition politicians in venezuela have agreed to give up their seats in the national assembly while the electoral authorities investigate allegations of voting irregularities .\nwarwickshire off-spinner jeetan patel has won the professional cricketers ' association -lrb- pca -rrb- most valuable player award for a second time .\nnetwork rail believes it will take 28 years to get the welsh rail system up to standard , economy secretary ken skates has been told .\nrelegated league two side hartlepool united have been given permission to speak to barrow manager paul cox about their vacant managerial position , reports bbc radio cumbria .\nlock richie gray says scotland ca n't afford flat periods and must start every game ` with a bang ' if they are to develop into a world-class team .\nengland under-20 winger patrick roberts will tell manchester city that his preference is to rejoin celtic on loan .\nkevin pietersen smashed a second successive unbeaten hundred in south africa 's ram slam t20 event .\nbritain 's economy faces a `` prolonged period '' of weaker growth as consumer spending slows and business curbs investment , according to a report .\na lot has changed in kenya since the attack at the westgate shopping mall a year ago .\nengland thrashed pakistan by 330 runs in the second test at old trafford to level the four-match series at 1-1 .\na van driver who crashed into a stationary car , fatally injuring its driver , has admitted careless driving .\nclaire sugden is used to being the youngest - she grew up in coleraine with four older siblings - three sisters and a brother .\nthe 400th anniversary of the death of william shakespeare next year will be marked by a major global cultural and educational project in 140 countries .\nmuslim leaders have lifted a boycott of a key holy site in east jerusalem after israel removed the last of the security measures which had led to uproar .\nwork is starting on a long-awaited # 40m retail and leisure complex in merthyr tydfil , set to create 400 jobs .\nlord heseltine has said he would be `` very surprised '' if boris johnson became prime minister after his `` preposterous , obscene '' remarks during the european union referendum campaign .\nuber has offered # 20m -lrb- $ 28.5 m -rrb- to settle two us lawsuits which argued that its safety claims were misleading .\nchampionship side fulham have signed striker gohi cyriac on loan until the end of the season from belgian pro league side kv oostende .\non 26 december 2004 , a 9.1-magnitude earthquake off the coast of banda aceh , indonesia , triggered a deadly tsunami that killed more than 230,000 people and rendered millions homeless .\namerican businessman frank mccourt has bought french ligue 1 club marseille for 45m euros -lrb- # 40.6 m -rrb- .\nplans are being developed to employ up to 1,300 workers at a clyde shipyard which went bust a year ago .\nbrighton got their championship promotion push back on track with an emphatic win at bristol city .\na former cancer research uk assistant manager has pleaded guilty at londonderry magistrates court to stealing over # 600 from the charity .\nbarcelona midfielder ivan rakitic has agreed a new contract , tying him to the spanish champions until 2021 .\nlabour is crying foul this morning .\na video appearing to show syrian rebels murdering soldiers or pro-government militiamen could be evidence of a war crime , the un has said .\nmanchester city forward gabriel jesus broke a metatarsal in monday 's 2-0 premier league win at bournemouth .\njeremy corbyn has vowed to make a formal apology for the iraq war if he becomes the next leader of the labour party .\nsenior figures from across northern ireland 's political spectrum have been reacting to the results of the march 2017 northern ireland assembly elections .\ncompetition for nesting sites could explain why some birds and bumblebees are declining faster than others .\nchelsea boss antonio conte says he is `` not worried '' by the club 's relative lack of signings this summer .\na church of ireland bishop has voiced his support for the introduction of civil marriage for same-sex couples .\ncameroon defender benoit assou-ekotto has signed a one-year deal with french ligue 1 side st etienne .\nif you think controlling your tv with your mind is the stuff of science fiction , think again .\ncaptain glen chapple will take control of lancashire for the rest of the 2014 season following the departure of peter moores to become england boss .\nwoodland bigger than the size of cardiff needs to be re-planted in wales to make up for commercial forestry lost over the past 15 years , industry experts have warned .\na 13-year-old boy who lost his mother in the hillsborough disaster had to identify her after her death by picking out her photograph , a jury has heard .\nrevenue for uk record companies hit a five-year high in 2016 , according to industry association the bpi .\nian durrant is to end his long association with rangers as part of a coaching reshuffle .\na man who died after his motorbike collided with a car in aberdeenshire has been named .\nuk intelligence service gchq can legally snoop on british use of google , facebook and web-based email without specific warrants because the firms are based abroad , the government has said .\nthe mother of murdered toddler james bulger says she still `` wants justice '' 20 years after her son 's death .\na girls ' school has scrapped its end of year prom claiming it is too much of a `` distraction '' to pupils .\nhuddersfield scored late on to win at struggling burton and consolidate their place in the championship play-offs .\nuniversities in wales are staging a walk out in a row over pay .\ncinemagoers may think they already know what it takes to be a spy .\nan 82-year-old woman found murdered in her fife home was the victim of a `` brutal and horrendous attack '' , police have said .\na man has been shot outside a primary school in craigavon , county armagh , as children were leaving the grounds .\na man who died after he suffered a serious head injury at a party in barnsley has been named .\na female osprey whose previous breeding seasons have been described as being akin to a soap opera has laid her first egg of the 2016 season .\nnewcastle united clinched the championship title with victory over barnsley , after brighton conceded a late equaliser at aston villa .\nthe husband of a dentist who was arrested over her death has said she `` took her own life '' as he told of his family 's `` devastating loss '' .\nwales scrum-half rhys webb has been ruled out of the rugby world cup because of a foot injury .\nitalian police have detained 15 volunteer firefighters in southern sicily accused of starting fires in order to get paid to put them out .\nthe final list of candidates in the running to succeed nigel farage as ukip leader will be announced later .\ndownton abbey will be coming back for a sixth series in 2015 , itv has confirmed .\njack owens scored a try in each half as widnes vikings survived a second-half warrington wolves comeback .\na japanese special envoy has met the south korean president-elect in seoul in a move aimed at helping soothe relations between the two countries .\nnew rules are urgently needed to protect the open seas , scientists have warned .\nbarcelona 's lionel messi has donated a signed shirt to raise funds for two former non-league footballers who were victims of a hit-and-run driver .\npolice are appealing for witnesses after a man was found with a serious head injury on a path in west lothian .\nbondz n'gala has joined dover , a week after a move to gillingham fell through because of fifa regulations .\na man has died following a two-vehicle collision on the a1 carriageway at banbridge on tuesday .\nan `` image problem '' may explain a fall in visitor numbers to northern ireland from across the border , according to a review of the tourism industry .\nthe lawyer of a 92-year-old woman facing deportation from the uk says he will take her case to the european court of human rights if needed .\nnew morocco coach herve renard begins his quest for a record-equalling third africa cup of nations as qualifying for the 2017 tournament resumes this week .\nchina saw a sharp fall in the value of its imports last month , figures show , raising further questions over the strength of its economy .\nmanager gary hackett said stourbridge were `` outstanding '' in their shock fa cup second-round defeat of league one northampton as the seventh-tier side reached round three for the first time .\nwales head coach warren gatland has the credentials to be all blacks coach , according to ex-new zealand forward zinzan brooke .\nlondon olympian zoe smith will lead a 14-strong british team at april 's european championships in norway .\ndenmark 's caroline wozniacki will try to win her first title of 2017 after reaching her sixth final with victory over sloane stephens at the rogers cup .\na vein of blue john stone has been found in derbyshire , 150 years after the last discovery .\na pensioner who escaped from a court more than 40 years ago has been jailed for two and a half years .\npregnant women should visit countries with a risk of malaria only if their trip is essential , experts are warning .\nwinter is a very busy time of year for hospitals , with more people needing to see a doctor .\naled davies , georgie hermitage and david weir all added to their gold medal tallies as great britain enjoyed another successful day at the ipc athletics european championships .\narsenal ladies have agreed a deal to continue playing their home games at boreham wood 's meadow park home until 2027 , along with arsenal 's youth teams .\na left-wing political party has accused labour of a `` witch hunt '' against people signing up to back jeremy corbyn in its leadership contest .\nactor tom hiddleston has apologised for his much-criticised acceptance speech at the golden globe awards , admitting it was `` inelegantly expressed '' .\nan irishman who was shot dead on a spanish island is believed to have been killed in a case of mistaken identity in a gang-related attack .\npeople are being urged to help uncover traces of a 15th century village on gower before it is swept out to sea .\na flagship welsh government youth job creation scheme has been temporarily closed while approval for a new one is awaited from the eu .\na man has been charged following the death of 15-year-old girl suspected of taking drugs .\nhull will be without midfielder sam clucas this weekend because he is serving a one-match suspension .\na former deputy chief constable has said it may be time to reconsider de-criminalising cannabis .\nthey have been described as the world 's most persecuted people .\nireland 's joe ward has won a third european championship light heavyweight gold medal after defeating russia 's muslim gadzhimagomedov in the final .\nplans to rebuild flood-damaged gloucester city football club 's stadium have gone on display .\nthe ruling party in burundi has won the parliamentary election boycotted by the main opposition parties .\nus employers added fewer jobs than expected in may , but the unemployment rate dipped further as the economy headed toward full employment .\nwigan warriors have been reprimanded and ordered to pay costs for postponing their super league fixture against widnes vikings in february .\nsix-time champion steve davis failed to reach the world championship as he lost 10-4 to fergal o'brien in the first round of qualifying in sheffield .\nany inquiry into police actions during the battle of orgreave would not take place until hillsborough investigations conclude , the home office said .\nthe nigerian military says it has rescued 200 girls and 93 women from an area where the islamist militant group boko haram is active .\ndonald trump has responded to an outcry over his remarks about groping women by launching a blistering attack against hillary clinton and her husband .\nsweden 's henrik stenson won the wyndham championship to claim his first title since the open at royal troon last year .\na former gp practice manager who stole nearly # 250,000 from the surgery he managed has been jailed for two years and eight months .\ncouncils should consider selling off their most expensive houses to build more cheap homes , the government says .\nwhile tiger woods inevitably generates a frenzy of interest during his return to the european tour , the continent has already got plenty to be excited about thanks to a new spanish superstar in the making .\nplayers who display messages on t-shirts worn underneath their strips will face punishment after new proposals were agreed .\nvery few people pay inheritance tax -lrb- iht -rrb- and it raises relatively little money for the treasury .\nliverpool playmaker philippe coutinho is confident he will be fit despite suffering a dead leg against watford .\nleague cup winners hibernian ladies beat renfrew ladies 19-0 in the third round of the scottish cup .\nwales full-back leigh halfpenny is out of the rugby world cup .\nnational league club barrow have announced the departure of manager paul cox after nearly two years in charge .\npromoters have blamed bad weather for the decision to cancel a concert by green day in glasgow , only hours before it was due to begin .\nmamelodi sundowns coach pitso mosimane says the african champions league holders are in a difficult position after failing to take advantage of a star-struck kampala capital city authority -lrb- kcca -rrb- and not press home their early dominance as they began the defence of their title on friday night .\ndistillers in china added viagra to thousands of bottles of spirits and told customers it had `` health-preserving qualities '' , food safety officials say .\nlegislation that would introduce a minimum price for a unit of alcohol was given royal assent by the queen after being passed by the scottish parliament four years ago - but the policy still has n't been introduced .\ndundee united midfielder chris erskine will return to partick thistle in the summer as the glasgow club prepare for the departure of stuart bannigan .\nthe us navy has banned all its personnel in japan from drinking alcohol and has restricted off-base activity after a sailor was arrested on suspicion of drunk driving .\neverton marked their europa league return with a dominant victory over germans wolfsburg at goodison park .\nhsbc has appointed mark tucker , the chief executive of asian insurer aia , as group chairman .\ndevonport naval base has been warned of legal action after a worker received a dose of radiation amid a series of safety breaches .\n2016 has come to an end and it certainly was an eventful year .\na man who deliberately got arrested in an attempt to smuggle up to # 20,000 worth of heroin into prison has been jailed for three years .\nwimbledon has begun , which means the stars are out watching the tennis - wearing a mixture of smiles , sunglasses and serious looks on their faces .\nofficers investigating the rape of a woman in renfrewshire have appealed for three men to come forward , saying they could be vital witnesses .\na number of homes close to a large bonfire in east belfast have been boarded up to protect the properties from heat damage when the fire is lit .\na school district in the us state of virginia has closed all schools on friday after a geography lesson that included islam sparked vociferous complaints from around the country .\nkeaton jennings ' century and three quick wickets from opening pair chris rushworth and graham onions gave durham the edge against somerset on day one .\na council which wants to spend # 33m on development including new offices , retail space and a library near bath is inviting local people to see its plans .\nis it fair for airlines and holiday companies to charge much more during the school holidays than in term time ?\nsuicide bombers and gunmen have killed at least 35 people in an attack by so-called islamic state -lrb- is -rrb- at a shia shrine in the iraqi town of balad .\ndomino 's pizza has revealed what it describes as `` excellent '' results for last year , driven primarily by the growth in its digital sales .\nthe sister of a teenager who was murdered , cut up and buried by her boyfriend says she is afraid after discovering he has been out of prison .\ntwo iranian refugees who were transferred to cambodia under a a$ 55m -lrb- $ 41m ; # 29m -rrb- deal with australia have returned to iran voluntarily .\naberdeen city council has approved its budget for the next financial year , with more than # 25m of savings .\nformer watford defender joel ekstrand is currently training with bristol city , head coach lee johnson has said .\nleague two side luton town have signed midfielder andrew shinnie on a season-long loan from birmingham city .\na late-night levy on liverpool 's bars and clubs will not be introduced after councillors rejected the proposals .\nbbc sport is showing live coverage of the eurobasket warm-up game between great britain and greece at the copper box in london on saturday 19 august .\nbritons living around europe would have been left `` high and dry '' if the rights of eu citizens to stay in the uk had been guaranteed , the pm has said .\nsimon webbe has credited strictly come dancing with helping him with his depression .\nus president barack obama has announced a pledge by 50 nations to take in 360,000 refugees from war-torn countries this year .\nthe question has been raised - is 27-year-old andreas lubitz a mass murderer for bringing down a plane full of passengers , killing everyone on board ?\njapan 's pm shinzo abe has said he has `` great confidence '' in us president-elect donald trump and he believes they can build a relationship of trust .\numpire paul reiffel has been replaced for england 's fourth test in india as he recovers from concussion after being hit on head by a stray throw .\na new blood test could help diagnose people with inherited heart conditions , the british heart foundation has said .\nthe quality of care at an aberdeen nursing home has been deemed `` unsatisfactory '' .\nfour danish journalists have been found guilty of paying for credit card information to track politicians , celebrities and royal family members .\nbangladeshi officials have named five of the men who on friday carried out the country 's worst terrorism attack and said they were known to police .\nus manufacturing growth eased in june despite jobs growth , but there was better news for the construction sector , according to two surveys .\na man critically injured in a hit-and-run crash in birmingham has died .\nan industrial dispute at tata steel has ended after workers voted to accept changes to their pension scheme .\na 69-year-old man has died after his boat capsized in the findhorn bay area of moray .\nuk scientists have been given the go-ahead by the fertility regulator to genetically modify human embryos .\nofficials in maryland and washington dc are suing donald trump for accepting payments from foreign governments via his business empire .\nchelsea boss jose mourinho is close to agreeing a new contract after securing a third premier league title .\na giant-mantis robot with hydraulic legs has been unveiled by a designer who spent four years creating it .\nthree soldiers killed in a taliban bomb blast should have been warned about insurgent activity in the area , a coroner has said .\na woman has told the victoria derbyshire programme how she was conned out of her life savings by scammers who sent her a ` phishing ' email .\ntemporary power suppler aggreko is expanding its offering in the united states by buying industrial climate control equipment specialist dryco .\nseven players have re-signed for the belfast giants as the elite league team continues to build its roster for the 2016/2017 campaign .\npaul hartley is adamant he wants to keep prolific striker kane hemmings at dundee , but admits his goal-scoring exploits this season will attract interest from other clubs .\na 96-year-old woman is preparing to return to scotland from australia after a visa wrangle .\na white chicago police officer has denied murder over the death of a black teenager who was shot 16 times in 2014 .\ngary neville 's valencia were booed by their own supporters after antonio sanabria 's penalty eased sporting gijon 's relegation worries .\ntwo teenagers have been killed and another seriously injured in a car crash in cumbria .\nchinese media have not lost time in reinforcing beijing 's insistence that it does not recognise an international tribunal 's ruling against its claims to rights in the south china sea .\na film about comic book maestro stan lee is reportedly in development .\nthe brexit secretary david davis has said he does not accept that irish border issues can be resolved in the first stage of the uk negotiation with the eu .\nthree oklahoma teenagers have been charged in the death of an australian who was gunned down in broad daylight as he jogged on a road in the us state .\na woman who added skywalker as a middle name has had her passport cancelled after being told her application was `` frivolous '' .\nthe scottish steel task force meets for the first time on thursday following the announcement that steel firm tata is to close its two plants in scotland with the loss of 270 jobs .\nforeign secretary boris johnson 's praise of donald trump 's victory in the us presidential election came as a surprise to some , given his previous remarks about him .\nhighlights of the 2016 and 2017 diamond league seasons will be available to watch on the bbc as part of a new deal .\none of ireland 's best known actors , mick lally , has died at the age of 64 .\nvodafone has sought international arbitration to resolve its tax dispute with the indian government .\nfourth official kevin friend has been released from hospital after collapsing and hitting his head in tuesday 's game between bournemouth and southampton .\npeople living in north-east kenya say they have discovered at least 20 bodies buried in shallow graves .\nindian prime minister narendra modi has announced that the 500 -lrb- $ 7.60 -rrb- and 1,000 rupee banknotes will be withdrawn from the financial system overnight .\neach day we feature a photograph sent in from across england - the gallery will grow during the week .\ndonald trump made a string of promises during his long campaign to be the 45th president of the united states .\nformer st helens head coach keiron cunningham has been appointed head of rugby at leigh centurions for the rest of the 2017 season .\ntwo men have died following a road crash on the a713 in dumfries and galloway .\nbath ran in six tries as they made light of sam burgess 's return to rugby league by beating 14-man london irish .\nthe takeover of bradford bulls by omar khan 's consortium has been ratified by the rugby football league .\npele 's 1958 world cup winner 's medal has been sold at auction in london for # 200,000 - at least # 60,000 more than its estimated price tag .\na sculpture park near wakefield has reported a 170 % rise in visitors since poppies from the tower of london went on show in september .\nfootballer gary neville 's controversial plans for an eco-friendly `` teletubbies '' house have been given the go ahead by bolton council .\nchinese police have shot dead four people who attacked a communist party building in western xinjiang province , local government officials say .\ncharley hoffman 's overnight advantage was wiped out as sergio garcia , rickie fowler and thomas pieters pegged him back for a four-way tie at the halfway stage of the masters at augusta .\nroad racer guy martin says he will not compete for honda for the rest of 2017 after a frustrating season .\nprime minister theresa may has laughed off questions about whether chancellor philip hammond would still be in place after the general election .\npoliticians who have used a divisive and dehumanised rhetoric are creating a more divided and dangerous world , says rights group amnesty international .\nengineering and metal workers in south africa have gone on strike after talks on monday failed to reach an agreement over pay .\ndisney has become the first film studio to take $ 7bn -lrb- â # 5.7 bn -rrb- in global ticket sales for 2016 .\nuncapped opener stephen cook has been added to the south africa squad for the final test against england , which starts in pretoria on friday .\nsalford red devils have signed hooker liam hood from championship one hunslet hawks on a two-year deal from 2015 .\nolympic silver medallist samantha murray recovered from a difficult start to remain on course for a first individual european pentathlon title .\nunidentified assailants have hurled petrol bombs and fired shots at the istanbul offices of two staunchly pro-government turkish newspapers , the papers and the police say .\nhibernian striker james keatings has signed a pre-contract agreement with dundee united .\nthe football association says it will investigate striker jordan ayew 's actions during aston villa 's 3-2 defeat at watford on saturday .\nscarlets claimed a fourth consecutive pro12 success with a bonus-point win over cardiff blues at the arms park .\nturkey 's military has denied that it mistakenly told russian warplanes to bomb a building in syria on thursday , killing three turkish soldiers .\nshares in china 's weibo , a twitter-like service , rose by almost 20 % on their first day of trading on the us stock market , after a lukewarm start .\nsalford red devils will let rangi chase , harrison hansen , cory paterson and theo fages leave the club at the end of the season .\na field of 40 horses headed by the last samuri is set to contest the 170th running of the grand national on saturday .\nthe chief constable of south yorkshire has admitted `` grave errors '' were made during the hillsborough disaster and has apologised `` profoundly '' .\nthe pentagon is considering transferring private chelsea manning to a civilian prison in order to treat her gender dysphoria , us media report .\na woman has died after being knocked down by a bus in lisburn , county antrim .\nnineteen people have been killed after a bus carrying egyptian pilgrims crashed in saudi arabia , egypt 's state-run mena news agency says .\ndisney has announced it will produce a sequel to its runaway hit frozen , which last year became the highest-grossing animated film of all time .\nas expected , the european and russian space agencies have delayed their next mission to mars from 2018 to 2020 .\nbritish number one johanna konta reached the quarter-finals of the bank of the west classic in stanford with a straight-set win over julia boserup .\nten french fishermen were rescued when their trawlers began to sink in a devon harbour .\nandy murray says talking to the lawn tennis association about the future of british tennis is a waste of his time .\nthe davis cup semi-final between defending champions great britain and argentina will be played at the emirates arena in glasgow .\nstormont 's finance committee has said it is `` disappointed '' that the irish finance minister has not replied to its request for nama officials to appear before its inquiry .\nwe go behind the scenes with singer laura mvula as she prepares to debut her new material and kick off the 48th series of later ... with jools holland .\nthe number of animal cruelty convictions in wales has fallen by nearly a quarter , the rspca cymru has said .\nhouse price inflation across the uk jumped to 9 % in march , as landlords rushed to beat stamp duty changes , official figures show .\nalmost 1,000 local authority schools and more than 100 academy trusts in england are now in debt , ministers have revealed in an answer to a parliamentary question .\nboris johnson has said it does not really matter which lobby group is chosen to `` carry the flag '' for eu exit in the up referendum campaign .\nleague one side northampton town have released defender gabriel zakuani after contract talks broke down over his international commitments .\nrangers scored three times in five late second-half minutes to end second-place aberdeen 's run of 10 consecutive home wins and cut the gap to nine points .\nstar wars fans are being given the opportunity to become jedi knights and learn how to wield lightsabers in combat .\nan independent theatre producer who fraudulently claimed # 65,000 in grants has been jailed for 18 months at cardiff crown court .\njules bianchi 's father says he is `` less optimistic '' that his son will recover from head injuries sustained in a crash at last year 's japanese grand prix .\na 93-year-old man who recently rediscovered his love of playing the piano has been reunited with his old jazz band - more than 25 years on .\nowen smith has been explaining why he hopes to stand for the labour leadership .\npolice investigating the murder of missing swansea man alec warburton say a man they wanted to speak to in connection with his disappearance has been arrested .\na charity volunteer who has clocked up 76 years of service is one of the uk 's longest-serving poppy sellers .\na fire has broken out on a spanish ferry from mallorca , forcing some 150 passengers and crew to abandon ship .\nthree teenagers have been injured , one seriously , after a car they were travelling in collided with a tree in a dundee park .\ntranmere came from behind to cruise to a comfortable 4-1 victory over dover at the crabble athletic ground .\nthe mother of a british man accused of trying to shoot donald trump says he is `` terrified '' of a lengthy prison sentence .\nwhat a week - first clarkson , then zayn , and now bercow ?\nan us appeals court has upheld a decision to overturn the conviction of brendan dassey , whose case was the focus of documentary making a murderer .\nus presidential candidate donald trump has given out the mobile phone number of senator lindsey graham - one of his republican rivals for the white house .\neight of the women 's team who won a bronze medal at london 2012 have been named in the great britain hockey squad for this summer 's olympics in rio .\nglamorgan recovered from a poor start to reach 93-2 before rain halted play before lunch against kent in cardiff .\na woman accused of having sex with a 15-year-old boy has been found not guilty of all charges .\nfinance secretary john swinney has warned of `` tough choices '' facing scotland as he prepares to set out his budget .\nrepublican donald trump has won victory in the presidential race , but no one 's quite sure what president trump will actually do in office .\nwelsh olympic boxer joe cordina has confirmed he plans to turn professional in the `` near future . ''\na mother-of-four battered a toddler to death months after she was made the child 's legal guardian , a court has heard .\nmore than 20 parties have come forward with bids to either recycle four royal navy frigates or turn some of them into artificial reefs , the bbc has learned .\nmany consumers were outraged with the news that the us federal communications commission -lrb- fcc -rrb- was possibly considering new rules allowing net providers to charge more for access to an online fast lane .\nit has long been accepted that women outlive men .\nnature experts have discovered an amazing underwater forest thousands of years old under the sea close to the norfolk coast in england .\na 34-year-old man has been charged after windows were smashed and a doctor was verbally abused at a west belfast health centre .\nmen who pose a high risk of domestic violence are to be given one-to-one support to change their behaviour .\neducation secretary john swinney has welcomed an overall increase in teacher numbers in scotland - although he said `` significant improvements '' were needed in some areas .\nlocal elections are being held in north korea - the first since ruler kim jong-un came to power in 2011 .\na man has pleaded not guilty to causing death by careless driving after a woman was hit by a bus in southport .\nbrazil 's new interim president michel temer has addressed the nation after the senate voted to back the impeachment trial of dilma rousseff .\na planning inquiry is under way to create a `` smart motorway '' along the m4 in berkshire .\nlethal weapon will be the latest film to be remade for the small screen after the fox network decided to turn it into a tv show .\nturkey has begun the trial of 45 managers and employees charged over a mine disaster which killed 301 people .\nan mp says he `` has to take some responsibility '' over an unpaid # 10.25 m loan to a football club .\nlee hodges says his truro team have underachieved by a `` country mile '' by finishing the season one place above the national league south drop zone .\nbilkis bano was gang-raped and saw 14 members of her family being murdered by a hindu mob during the 2002 anti-muslim riots in the western indian state of gujarat .\nengland under-19 women 's and fylde ladies midfielder zoe tynan has died , aged 18 .\ndavid cameron was `` wilfully dishonest '' when he pledged to cap immigration to the tens of thousands , ukip leader nigel farage has said .\na collection of vintage prams and memorabilia stretching back almost 150 years has been auctioned .\nthree statues honouring the devonshire , dorset and combined devon and dorset army regiments are being planned for the national memorial arboretum .\na football fan has been found guilty of trying to punch crystal palace 's bald eagle mascot during a cup game .\npolice in australia believe a lawyer who represented some of the country 's most notorious organised crime figures was the victim of a contract killing .\nsomali islamist militant group al-shabab has dismissed president mohamed abdullahi faramajo 's declaration of war .\nboss nigel clough has admitted playing in england 's second tier for the first time in burton albion 's history is `` daunting '' , but says they will embrace the challenge of being underdogs .\na collection of manuscripts and notebooks which belonged to poet and novelist edward thomas are to be conserved thanks to a grant .\na # 15m cash fund to boost culture and creativity across the north of england has been announced by the government .\nanother election is probably the last thing the public want to hear about after what we 've just gone through but that 's exactly what the parties at the assembly are gearing up for next year .\ndecember was the uk 's wettest month in more than a hundred years .\ngraeme mcdowell was at the back of the 18th green at castle stuart talking about `` the dangling carrot '' that is september 's ryder cup at hazeltine in minnesota .\nengineering giant bosch is developing `` textured '' touchscreens designed to go in next-generation cars .\na specialised white blood cell found in birds can destroy an infection thought to cause hundreds of thousands of human deaths a year , scientists claim .\nair ambulance charities across the country are to receive grants of # 250,000 each from a banking fine fund .\nthe bbc 's director general has accused the iranian authorities of intimidating those working for its persian service .\nulster-scots is a language which has been part of life here since the first scots planters arrived in ulster in the 17th century .\nliverpool easily beat premier league champions leicester in their first home game of the season .\na judge in the us state of minnesota has dismissed claims by 29 people who said they were owed a share of prince 's inheritance .\nindia says it will do `` whatever it takes '' to ensure justice for a former navy officer sentenced to death in pakistan on charges of spying .\napple has reported the slowest growth in iphone sales since the product 's 2007 launch and warned sales will fall for the first time later this year .\nthree girls who sparked a rescue effort in the river dee in aberdeenshire after reports of a boat getting into difficulties are all safe and well .\nflood defences battered by winter storms around wales are promised an extra # 4.2 m for `` swift repair '' by the welsh government .\nchester stunned dagenham & redbridge with a comprehensive 3-0 win home win the national league .\nmoody 's , one of the big three credit ratings agencies , has cut its outlook for the uk economy from `` stable '' to `` negative '' .\nthe 2016 masters tournament took place from 10-17 january and was covered live by bbc sport .\ninterest rates for savers have fallen to new record lows , after hundreds of cuts in recent months and more than 1,000 in the past year .\nscotland wing dougie fife , lock alex toolis and centre andries strauss are among a host of players who will leave edinburgh at the end of the season .\na rare ferrari racing car worth about # 10m was given a parking ticket after the owners rolled it into a mews to take some photos .\nthe bank of england 's chief economist , andy haldane , has warned that the uk 's `` economic aircraft appears to be losing speed on the runway '' .\nmost 15-year-olds in northern ireland are happy with their lives .\na man who raided a post office on the outskirts of edinburgh has been jailed for seven years .\nradical preacher anjem choudary has been jailed for five-and-a-half years for inviting support for the so-called islamic state group .\nthe developers of the proposed swansea bay tidal lagoon have accused natural resources wales -lrb- nrw -rrb- of publishing a `` grossly misleading '' analysis of the project 's likely impact on fish .\ntwo bodies been found at the site of a massive gas explosion that flattened three buildings in new york on thursday .\npublic hearings into allegations of abuse relating to lord janner have been delayed by six months .\nwhat happened when hong kong 's youth demonstrators actually tried to get elected ?\nfrench interior minister bernard cazeneuve has said he will sue for libel after a senior police officer said she was harassed to change her report on the nice terror attack .\ngillingham manager peter taylor says he would understand if he was sacked by chairman paul scally , but has pleaded for more time at the league one club .\nprince harry has laid wreaths during a dawn service at london 's wellington arch and on behalf of the queen at the cenotaph to mark anzac day in the uk .\nbayern munich 's progress to the semi-finals of the champions league was `` about life or death '' , according to manager pep guardiola .\na sailing boat , a coffin and an oxygen tank were some of the items people have taken to be recycled , according to surrey county council .\nan israeli committee has postponed a vote to authorise construction of almost 500 new homes in jewish settlements in occupied east jerusalem .\nan agreement has been reached to ensure foreign workers on freight boats serving orkney and shetland are paid at least the minimum wage .\npolice are finally to get access to interviews a former loyalist prisoner gave to an american university project .\ncivil servants from across whitehall are being lined up to act as border staff at uk ports and airports during next week 's public sector strikes .\na group of doctors and health experts is urging the house of lords to support a bill to lower the drink-driving limit across the whole of the uk .\ntata steel is to mothball part of its plant in newport for the third time in six years with the loss of hundreds of jobs .\nthe body of a man found in a hedge by litter pickers might have lain undetected for years , police have said .\nbarrow want to retain andy cook but expect the striker to explore opportunities in the football league , says manager paul cox .\nscrum-half mike pope , fly-half laurence may and back kyle moyle have all signed new one-year deals at cornish pirates .\nplans to legalise gay marriage in england and wales are to proceed unimpeded in parliament after ministers reached agreement with labour .\nthe government in indian-administered kashmir has put curbs on excessively lavish weddings .\nalmost # 1.5 m of illegal drugs have been seized in northern ireland following a media campaign against drug dealers , police have said .\nus scientists have identified the chemicals responsible for the mosquito-repelling activity of sweetgrass , a plant traditionally used by some native americans to fend off the bugs .\nan appeal has been launched to raise money to refurbish one of the largest stained-glass windows in wales honouring casualties from world war one .\nliverpool have rejected an # 11m bid from italian side napoli for alberto moreno - and will demand # 15m for the spanish defender .\nclywodd cwest fod yna `` anhrefn enfawr '' yn gyson y tu allan i ysgol uwchradd ym maesteg lle bu farw bachgen ar ôl cael ei daro gan fws mini .\nbelfast city council has backed a group of principals who say they will refuse to make cuts to school budgets .\ntwo people have been re-arrested after a toddler suffered serious injuries in a dog attack .\nsomerset opener marcus trescothick hit a superb 218 before nottinghamshire fought back at trent bridge .\nghana has demanded a $ 500,000 -lrb- # 350,000 -rrb- refund after its transport ministry spent $ 1m to paint more than 100 buses with portraits of the country 's recent leaders .\na ceremony is being held at the ww1 grave of private john parr - a teenager thought to have been the first british soldier killed in action in europe - but 100 years on mystery still surrounds how he died and who killed him .\njosh strauss believes vern cotter 's impending departure will provide added motivation for scotland to have a successful six nations .\npresident : alassane ouattara .\ntwo astronauts on board the international space station have taken their first spacewalk outside - to do some repairs and maintenance .\nleague two side crawley town have signed striker thomas verheydt from dutch second-tier side mvv maastricht for an undisclosed fee .\na us astronaut has played a set of scottish-made bagpipes on the international space station to pay tribute to a colleague who died .\nrangers and st johnstone had to settle for a point each after a scottish premiership draw in glasgow .\nsomalia 's security forces have shot dead a 31-year-old government minister after mistaking him for a militant islamist , officials have said .\na mother was suffering from `` forgotten baby syndrome '' when her young son died in a hot car , an australian inquest has heard .\nex-cia director david petraeus has told the bbc that islamic state militants can only be defeated through a dual military and political approach .\nthe russian daily novaya gazeta says it is alarmed by a chechen muslim call for `` retribution '' after the paper reported violence against gay men in chechnya .\nthe metropolitan museum of art 's practice of requesting a `` recommended '' admission fee of $ 25 -lrb- â # 16 -rrb- deceives patrons entitled to pay as little as they choose , a lawsuit charges .\na shop worker has been seriously injured during a raid on a post office in galashiels in the scottish borders .\nbritish number two heather watson has parted company with her argentine coach diego veronelli .\nfor the last few weeks , taylor swift 's shake it off has been one of the most streamed tracks on spotify in the uk .\nsally bercow , wife of the house of commons speaker , strictly come dancing star ola jordan and gogglebox regular dom parker are among the contestants on channel 4 's show the jump .\nsudanese president omar al-bashir has formed a new government a month after winning elections that were boycotted by the main opposition parties and tarnished by a poor turnout .\nmanchester city midfielder samir nasri has not yet played for the club during pre-season because of his weight , says manager pep guardiola .\nblackburn rovers midfielder hope akpan has had his three-match ban for violent conduct extended to four , following a football association charge .\nmembers of australia 's olympic swimming team said they used the sleeping medication stilnox during a `` bonding '' session before the games last year .\nengland 's former world number one luke donald lies two shots off the lead at the halfway point of the sony open in honolulu after a second-round 65 .\nfunding for lending -lrb- fls -rrb- , the bank of england and treasury scheme , initially to boost bank lending to households and companies , opened for business at the beginning of august 2012 .\nmore than 600 people in an east yorkshire village have objected to plans for 119 new homes .\nthe leader of south africa 's opposition , the democratic alliance , has said she will not stand for re-election at the party 's congress next month .\nthe main tunnel serving scotland 's third busiest rail station is to close for 20 weeks , causing major disruption .\nfighting has intensified in the besieged syrian border town of kobane , where kurdish forces have been holding islamic state at bay since september .\na former head of a welsh health board has moved to england in order to get a cancer drug .\nleicester city striker jamie vardy is the only english player named on the 55-man shortlist for the fifa fifpro team of the year .\nthe owner of a cat which visits a supermarket every day , has had to ask people to stop feeding his pet because he was putting on weight .\naustin macphee could be the only scotsman at euro 2016 after being part of the coaching set-up at northern ireland .\none of the largest hospital trusts in england is to be put into special measures because of `` serious failures '' in patient safety .\nkeepers at chester zoo are making sure every creature , from the biggest elephant to the smallest beetle , is present and correct as part of their annual animal count .\na diabetic mp who asked coca-cola not to take its christmas truck to leicester has been accused of hypocrisy for opening a sweet shop in the city .\npolice have released recordings of a suspected burglar phoning for a taxi from the house he had just broken into .\nthe former israeli pm and president , shimon peres , has died aged 93 .\negyptian islam el shehaby refused to shake the hand of israeli opponent os sasson after losing in the men 's judo at the rio olympics .\nwest brom striker saido berahino has been banned from driving for 12 months after pleading guilty to drink-driving .\nthe management team behind scottish boxer mike towell , who died after a fight , have said they were unaware he had been complaining of headaches .\nimmigrants from the eu working in wales will not be thrown out of the country post-brexit , a senior welsh conservative has said .\ntwo disabled people had to turn to loan sharks and food banks because the government took so long to process their benefit claims , the high court has heard .\nschools , the health service and planning laws will be used to boost walking and cycling in an action plan .\nthe cassini probe may be about to make a dramatic end to its mission , but the information it has provided about saturn and its moons is still throwing up plenty of fascinating facts for scientists .\nfive-time world player of the year marta vieira da silva has joined orlando pride in america 's national women 's soccer league .\nhamilton academical moved three points clear of premiership bottom side inverness caledonian thistle with victory over the highlanders .\na record number of luxury cruise ships have come to belfast this year , making it one of the fastest growing cruise destinations in the world .\naustralia 's former treasurer joe hockey has been named as the new ambassador to the united states .\na french-american man who helped stop a heavily armed gunman on a train in france in 2015 has received the country 's highest honour .\na county tyrone missionary who was shot by bandits in africa plans to return to fight for justice for a man she said is `` falsely accused '' .\na slightly odd , temporary glitch in the nasdaq saw the share price of several major tech firms all set to the same price .\nmore than 100,000 customers in wales could have help with their water bills thanks to a new tariff being launched .\nyoung people aged 16-21 would get a 66 % discount on bus travel in england under lib dem plans outlined by nick clegg .\nthere 's been a bit of a media storm surrounding madonna over the last couple of days , and it 's not down to the outfit she wore at this year 's grammy awards .\nfour men have been arrested in the uk following a counter-terrorism operation led by italian authorities , the north east counter terrorism unit says .\nlloyds bank has announced the locations of 100 branches that it plans to close between july and october .\na cheese-carrying race up a famous dorset street is due to take place later .\na main road on the isle of wight is to be repaired more than two years after it collapsed due to heavy rain .\nan unusual poker game is taking place in pittsburgh , pitting human players against an artificial intelligence program .\nin the arc of history , britain has rarely flourished when it has had to choose between europe and the united states .\nthe national league game between macclesfield town and dover athletic has been called off because of a waterlogged pitch .\nanthony scaramucci is out .\nengland failed to build on the optimism generated by their thrilling victory in germany as they were beaten in a friendly by the netherlands , who have not even qualified for euro 2016 .\nthe parents of a teenage girl who was stabbed to death are holding the final fundraising walk in her memory .\ntwo men have been arrested on suspicion of terrorism offences as they attempted to leave the uk via dover .\nanother man has been arrested in connection with the 3 june terror attack on london bridge , bringing the total number of arrests to 21 .\ncardiff city are waiting to discover if midfielder peter whittingham will sign a new contract .\na health board has brought in extra staff and cancelled some operations in an attempt to manage `` significant pressures '' .\naquascutum , whose luxury raincoats have been worn by royalty and film stars , is being sold for $ 120m -lrb- # 97m -rrb- .\njonny evans grabbed a stoppage-time winner for west brom as stoke suffered just their third defeat in 13 matches .\nanimals around the world could be scared away from power cables because these give off uv flashes invisible to humans , scientists have said .\nthe uk 's nuclear expansion plans have been boosted after japan 's hitachi signed a â # 700m deal giving it rights to build a new generation of power plants .\npeople before profit mla eamonn mccann has called for attorney general john larkin to stand down .\nanimal tuberculosis , which is spread through contaminated food , is a greater threat to human health than previously realised , leading doctors and vets have warned .\ntwo men have been charged over alleged historical sex abuse at a special school more than 30 years ago .\nproposals to give terminally ill people in scotland the legal right to assisted suicide have been relaunched by the independent msp margo macdonald .\nproposals to increase the size of a â # 50m shopping and leisure development have been approved .\nthe remains of a 54-year-old man who disappeared hunting for a hidden stash of gold and jewels in new mexico have been discovered , local authorities say .\nthree of the best known piers in england and wales have been put on the market for a collective price of # 12.6 m .\na total of 228 candidates will contest the northern ireland assembly election next month - 48 fewer than last time .\nfrance is to reduce the number of its troops in mali over the next three months by 60 % , the french defence minister has said .\ntwo men who were sued over the omagh bomb have been found liable for the 1998 atrocity at their civil retrial .\npolice are investigating the rape of a woman in queens park in glasgow 's southside .\na 17-year-old boy has been charged with causing death by dangerous driving , after a man died after he was hit by a car in levenshulme .\nsouth africa 's governing anc has expressed its `` disgust '' at a cartoon of president jacob zuma as a penis .\na world war i airbase in essex has been granted listed status .\nprime minister david cameron 's father ian has died after suffering a stroke and heart complications while on holiday in france .\npolice have fired tear gas to disperse hundreds of doctors striking in the kenyan capital nairobi .\nhumanity is at risk from a series of dangers of our own making , according to prof stephen hawking .\nactress joan collins has taken to twitter to deny that she was arrested in the republic of ireland .\na delivery truck crashed into parked cars before hitting a church wall in swansea .\na 92-year-old man was found riding his mobility scooter on a busy dual carriageway after taking a wrong turn .\naustralian nick kyrgios `` does n't understand '' what it takes to be a grand slam winner , says three-time wimbledon champion john mcenroe .\na rapist who attacked a student as she walked home during freshers ' week has been given an extended sentence .\nuganda 's president yoweri museveni has refused to approve a controversial bill to toughen punishments for homosexuals .\npupils in england will sit a times tables check , from 2019 , at the end of their primary years , schools minister nick gibb has confirmed .\na gardener has said he was `` flabbergasted '' that his banana plant has finally provided fruit after nine-years .\nfifties for glamorgan debutant david miller and captain jacques rudolph proved key as they beat gloucestershire by 25 runs in bristol .\nthe rains have been poor again in this mountainous corner of north-eastern ethiopia - the site of the 1984 famine in which hundreds of thousands of people starved to death .\na police force has apologised after its officers made a sandcastle `` crime scene '' featuring a naked dead woman .\ngreat britain will miss the men 's olympic 4x100m relay final after being disqualified in their semi-final .\nplans to redevelop london euston as part of the high-speed railway line hs2 should be scrapped , an mp has said .\ngerman art hoarder cornelius gurlitt has died aged 81 , with no definitive answer on what will happen to his secret collection , which included many nazi-looted pieces .\nscottish engineering services company id systems ltd has announced plans to create 120 new jobs after securing a six-figure investment from uk steel enterprise -lrb- ukse -rrb- .\nthe international monetary fund has today highlighted the challenge to be faced by the next government in returning the public finances to balance .\nthe grandmother of a four-year-old boy who received part of his father 's liver has said all is going `` according to plan '' following the operation .\nhuddersfield giants have signed warrington wolves winger gene ormsby on a one-month loan deal .\nconsumer price inflation in china eased by more than expected in september , official figures have revealed .\nhull city have signed uruguay striker abel hernandez from palermo for a club-record # 10m fee , while hatem ben arfa has joined on loan from newcastle .\nchris rock has announced that he 's separating from his wife .\neight people have been killed when a storm lashed the south african city of cape town following months of drought .\nan inquiry has begun after cladding removed from a tower block in sheffield was found to be different to what council bosses had asked to be fitted .\ncollins english dictionary has chosen binge-watch as its 2015 word of the year .\ndaniel radcliffe says he is really keen to be in a shakespeare play - although he admits he 's no expert on the bard .\nrangers boss mark warburton was furious with the award of a free-kick from which aberdeen scored their winning goal in a 2-1 victory at pittodrie .\na widely used location-tracking system can be intercepted or fooled with fake data , claims a security researcher .\nresearch carried out by the air traffic control provider nats and its partners suggests that existing tv signals could be used to track aircraft , providing a cheaper alternative to radar .\nat his victory rally in new york us president-elect donald trump promised `` great , great relationships '' with other nations .\na drone flying close to gatwick airport led to the closure of the runway and forced five flights to be diverted .\nlocal and international banks have been accused of rigging the price of south africa 's currency , the rand , by the country 's competition watchdog .\n`` aggressive '' language used by some ams in debates about brexit is heightening public tensions over the issue , welsh tory leader andrew rt davies has said .\nportsmouth have signed full-back drew talbot on a two-year deal following his release by chesterfield .\na patient lay dead for up to four-and-a-half hours before being spotted at one of the busiest 's a&e departments in the country , inspectors have revealed .\nbritain 's chris froome finished eighth on stage two of the criterium du dauphine on tuesday to maintain third place in the overall standings .\nbritain 's three-time tour de france winner chris froome has apologised for the way team sky has handled questions over its record on doping .\nworld number one dustin johnson is out of the masters at augusta national after suffering a back injury in a fall at his rental home on wednesday .\nport of cromarty firth has secured two contracts related to the construction of a massive offshore wind farm in the outer moray firth .\nsignificant changes have been announced for the amount of vat that many small businesses will have to pay .\na hall of fame celebrating rugby union 's past has been officially opened at the sport 's birthplace .\ntwo sussex police constables questioned over their conduct at the site of the shoreham air crash have left the force .\na bagpipe-playing busker has been convicted of duping people in liverpool into thinking he was collecting for a hillsborough charity .\na war medal found in a field in bridgend county has been returned to its rightful owners almost a century after it was awarded .\nworcestershire 's daryl mitchell has been elected as the new chairman of the professional cricketers ' association .\nsaturday 's ligue 1 match at metz was abandoned after firecrackers were thrown at lyon keeper anthony lopes .\nadele 's comeback single , hello , looks set to top the singles chart , after selling 165,000 copies in three days .\nplans for a vertical pier in a teesside coastal town have been given the go-ahead by council planners .\none of the men who attacked the bataclan music venue in paris on 13 november was buried on christmas eve in a northern suburb , reports say .\ncroatian jews have held their own holocaust commemoration at a world war two death camp , in protest at what they say is government inaction in the face of surging neo-nazi sentiment .\nscotland 's top law officer , frank mulholland , will step down after the scottish parliament elections in may .\nthe future of a controversial housing repairs contract will be discussed by councillors in north lanarkshire later .\nwaiting times for trials in scotland 's courts are being reduced , a report has found .\na woman has pleaded guilty to murdering three men whose bodies were found in ditches in cambridgeshire .\ntwo cars were damaged when a troubled flood prevention scheme in fife was hit by more problems during the weekend 's heavy rain .\na lamp at the top of elizabeth tower - which is switched on in the evening whenever parliament is sitting - is to stop shining for the first time in more than 70 years .\naustralia all-rounder dan christian will return to nottinghamshire for next summer 's t20 blast .\na council chief executive has stepped aside from his role after being arrested as part of a fraud probe .\ndriving along a sunlit road along gibraltar 's western slopes , a tourist stops by one of the city 's top attractions - st michael 's cave - and consults his travel guide .\nipswich have signed portsmouth defender adam webster for a fee believed to be about # 750,000 , with defender matt clarke going the other way .\nan extra 500 medical school places in england have been confirmed for next year by the government .\nmexican authorities have begun exhuming 116 bodies found buried in a mass grave in the central state of morelos .\ngraham onions claimed a five-wicket haul to help durham have the better of day one against nottinghamshire .\nargentinian tennis player david nalbandian might be wishing he 'd kept a lid on his temper .\nmusical movie la la land has picked up the prestigious people 's choice award at the toronto international film festival -lrb- tiff -rrb- .\nchapman pincher was known as `` the lone wolf of fleet street '' .\nrichard carpenter has said he is owed at least $ 2m -lrb- â # 1.6 m -rrb- in royalties for the hits he recorded in the carpenters , including yesterday once more .\npolice investigating the murder of a newtownabbey man have re-visited three scenes connected to the killing .\ndan holman scored all four goals against his old club as cheltenham town comfortably beat woking .\nindia 's sahitya akademi , which bestows literary honours , has condemned recent attacks on writers and rationalists .\na man alleged to have helped run the notorious silk road drug marketplace has been arrested in thailand .\noldham boosted their league one survival hopes with victory over play-off chasing peterborough .\ntwo water rescue charities in northern ireland have received # 70,000 in funding between them .\nduring a recent shopping trip in glasgow , ricky foster noticed a young man walk by with his friends and then turn back to approach him .\neducation secretary nicky morgan says anyone found running an illegal backstreet school in england will face fines or a prison sentence .\ndeputy chief constable olivia pinkney has been confirmed as hampshire constabulary 's new chief constable .\nluke walsh kicked 12 points as catalans dragons edged a bruising encounter with hull fc to earn a second win in as many matches and go top of super league .\na thief who stole money at knifepoint from a van driver he had just caught a lift from in edinburgh is being sought by police .\ngoogle is planning to track billions of credit and debit card sales to compare online ad clicks with money spent offline .\noxford united could hand a debut to striker toni martinez after his loan move from west ham , but forward chris maguire -lrb- thigh -rrb- faces a fitness test .\njuventus defender leonardo bonucci has signed a contract extension that will keep him at the club until 2021 .\na bookshop once named as one of the best in the world could fall down unless # 10,000 can be raised for structural repairs , say its owners .\nvalencia 's poor start to the season is partly down to the players not knowing one another very well , according to former manchester united winger nani .\nit is the strongest signal yet that britain is plotting a `` hard exit '' from the european union .\nyorkshire sculpture park -lrb- ysp -rrb- has unveiled plans for a new # 3.8 m visitor centre at its bretton park entrance .\nthe high court has begun hearing the legal challenge of a terminally ill uk man who wants the right to die .\na 6.9 magnitude earthquake has struck off the pacific island nation of vanuatu .\neight people have been killed in a blast in the centre of the syrian capital , damascus , the sana state news agency reports .\nan injured dog has been found dumped in a bush with an illegally docked tail and having had her claws `` forcibly '' removed , the rspca says .\nhundreds of new jobs have been announced for a cardiff call centre .\na lebanese man whose estranged australian wife has been charged with attempting to kidnap their children has said he will not drop the charges .\nfor years it has been more surprising when ken livingstone has n't raised hackles than when he has .\ngerman researchers have compiled a 400-species database to encourage people to plant the `` right tree in the right place '' in urban areas .\na woman has been charged with the murder of a man who collapsed and died at a property in south-west london .\nthis week we devote the whole of tech tent to a special programme on assistive technology - that 's tech to help disabled people take advantage of all the advances we 've seen in recent years .\nmany of us can remember a key moment that transformed our lives , but it does n't usually involve tasting snack foods .\none of the big questions facing mps after the summer recess could be whether to authorise military intervention against so-called islamic state -lrb- is -rrb- extremists in syria .\nchelsea ladies will take a slender lead into the second leg of their champions league last 32 tie with glasgow city after winning on their european debut .\nolympic swimming champion rebecca adlington has unveiled a # 5m refurbishment of stratford leisure centre .\nan australian court has ordered internet service providers -lrb- isps -rrb- to hand over details of customers accused of illegally downloading a us movie .\nsprinter sacre , the jump racing superstar , has been retired after suffering a tendon injury .\nleaders of the prison officers union have reached a deal over pay and conditions following concerns about jail safety , the ministry of justice has said .\na study comparing the effect of e-cigarettes and tobacco cigarettes on smokers ' health is being launched by dundee university .\nguessing when the referendum on the uk 's eu membership will be held is westminster 's current favourite parlour game .\nsainsbury 's has reported a second consecutive quarter of falling sales , blaming falling food prices .\na total of 179 cases of child sexual exploitation -lrb- cse -rrb- are being investigated in keighley and bradford , west yorkshire police has said .\na fund set up to help restore glasgow school of art 's -lrb- gsa -rrb- fire-damaged mackintosh building has received two donations totalling # 550,000 .\nthe co-operative group has said increased investment means profits this year will be lower than in 2014 .\nphilippines president rodrigo duterte has given the go-ahead for the body of his disgraced predecessor ferdinand marcos to be buried in the heroes ' cemetery in manila .\nan 80-year-old man who was hit by a car has died .\na man injured in an alleged assault at a dorset holiday park has died .\nisle of man rider anna christian will represent great britain at the 2017 uec european road championships in denmark .\nthe policing operation to tackle the summer riots across england was flawed , a report from mps has concluded .\nmicrosoft has released some of the specifications for its new console - known as project scorpio .\nthe theory that women get paid less than men because they are not sufficiently pushy in the workplace is not true , a new study suggests .\nrevised plans for the future of welsh devolution will be presented to mps in the next year , the queen 's speech has confirmed .\nthe national basketball association has teamed up with video game publisher take-two interactive to create an e-sports league in the us .\na paedophile , branded `` calculating and predatory '' , has been jailed for 15 years for a string of sex attacks on girls as young as six years old .\nbarnsley have signed striker kayden jackson from national league club wrexham on a two-year deal .\nsangin was once the centre of operations for international forces in afghanistan , a key district that linked lashkar gah , the capital of helmand province , to the province 's northern districts .\nheavy rain and severe winds have caused power cuts and travel problems and swept sea foam into parts of scotland .\nthe un has ended its campaign with comic book heroine wonder woman , a spokesman says , less than two months after her appointment sparked outrage .\nmobile phone company three has apologised after some of its customers were unable to make calls or texts .\na 63-year-old man will appear in court following the collapse of a pedestrian bridge on the m20 during last august 's bank holiday weekend .\nhundreds of ex-commercial hens considered too slow at laying eggs face slaughter unless they can be rehomed in north wales , a charity has said .\nnhs staff in england have been told that they should no longer help people access gay conversion therapy .\ncinema-goers were carried to safety by firefighters after they became stranded when a water main burst in london .\ndavid fox 's first goal for plymouth argyle 10 minutes from time saw them into the hat for the second round of the fa cup after a hard-fought win at mansfield town .\nflooding which caused a road bridge to collapse , cutting a town in two , could happen again , a report has said .\nspain qualified for the olympic sevens with a dramatic late victory over samoa in sunday 's repechage tournament final .\na man accused of stabbing his ex-partner to death told police she came at him with a knife and they started to struggle , a court has heard .\nplans for a # 5.5 m national marine centre for scotland have been unveiled in east lothian .\nthe departure from the helm by uzbekistan 's long-serving president islam karimov is likely to have wide-ranging repercussions for the region .\na pregnant mother had `` no idea '' there were 12 vietnamese migrants in the back of a van she was travelling in , a court heard .\namnesty international has expressed alarm at reports that the authorities in saudi arabia are planning to execute dozens of people in a single day .\na group calling itself `` the ira '' has said it murdered the northern ireland prison officer david black .\nthe government is to reconsider a visa for an american mother facing deportation from the uk .\nthe controversy over the use of the terms ` derry ' and ` londonderry ' surfaces in state papers that have just been released .\nthe european space agency has shared footage of tim with his former crew mate scott kelly fighting virtual aliens on the iss , before kelly returned to earth earlier this month .\na russian spacecraft delivering supplies to the international space station -lrb- iss -rrb- is out of control and will fall back to earth , officials say .\nthree months ago , a woman from a village south of hanoi needed her son referred to a provincial hospital by a district doctor for an operation .\na florist whose business was destroyed in a fire which set off explosions at a neighbouring fireworks factory has pledged to rebuild his business .\ncastleford tigers came from behind to beat st helens at the jungle and extend their lead at the top of super league to four points .\nthe mountain bothies association has appealed to hillwalkers and climbers to help keep more than 100 shelters it looks after in the uk clean and tidy .\nan mp has apologised for his `` very offensive '' and `` damaging '' comments on diabetes .\ngunmen have wounded a 14-year-old rights activist who has campaigned for girls ' education in the swat valley in north-west pakistan .\na lorry carrying 28 tonnes of grain has crashed into a house next to a level crossing .\nstronger than expected jobs figures helped to lift us stocks on friday , leading the dow to another record .\nscotland head coach vern cotter says his team are `` lining up for the arm wrestle '' and are showing more `` explosiveness '' ahead of the world cup .\na memorial dedicated to the jersey men who died in world war i has been unveiled in the somme region of france .\nthe first of the missing nigerian schoolgirls to be rescued since her capture two years ago has had an emotional reunion with her mother .\nhyundai motor will defer payments due from us federal employees affected by the partial government shutdown .\nswagata sen likes her home to look good .\nambulance crews who gave a cardiac arrest patient 17 high-energy electric shocks say he is lucky to be alive .\nthe chairmen of five parliamentary committees have written to david cameron to urge him to remove overseas student numbers from migration targets .\na teenager has been charged in connection with an aberdeen assault which left a man with a fractured jaw .\nprime minister theresa may will meet us president donald trump in washington dc on friday , the white house has said .\nirish prime minister brian cowen has admitted that a controversial radio interview he gave on tuesday was not his `` best performance '' .\na fresh inquest can take place into the death of a young soldier at an army barracks in surrey 21 years ago , a high court judge has ruled .\nbbc radio 1 dj greg james is to receive an honorary doctorate from the university of east anglia -lrb- uea -rrb- .\na teesside bowling club is being replicated at a county durham museum .\nonly three of eight pagers for retained fire fighters went off when they were needed to tackle a blaze in suffolk .\nformer liverpool striker ian st john has called on football 's leaders to look after former professionals who have dementia and alzheimer 's disease .\ntwo goals either side of half-time meant a point apiece for bradford and shrewsbury in league one .\nmps have called on the uk government not to cut its funding of welsh language channel s4c .\ntake that star gary barlow surprised shoppers in bristol with an impromptu concert - which started with him wearing a disguise ... as himself .\na former politician who described tutsis as `` cockroaches '' and called for their extermination has been jailed for life in rwanda over the 1994 genocide .\nthe trial of a washington post journalist detained in iran for almost 10 months on charges that include `` espionage '' has opened in the capital tehran behind closed doors .\nenglish duo paul casey and tommy fleetwood are in a four-way tie for the lead after two rounds of the us open .\nnew sale sharks chairman fran cotton has conceded they must work to restore their relationship with some fans .\nthe first woman to take part in a cervical cancer trial in northern ireland has said signing up to it was a `` no brainer '' .\nmovie star robert carlyle 's directorial debut film is to open the edinburgh international film festival , it has been announced .\nthe mother of a five-year-old boy has been charged with his murder after he died in a car fire .\nparity is this year 's theme for international women 's day so 46 years after the introduction of the equal pay act , bbc rewind looks back on the history of the gender pay gap .\nblackpool 's winless run was extended to five games as they were held at home by fellow league two play-off chasers colchester .\ntucked away in a little guest house next to a manufacturing firm in glengormley , county antrim , members of the japan society of northern ireland chat away - some easily switching in and out of japanese and english .\nin an initiative called project mosul , cyber-archaeologists and volunteers are re-creating works of art destroyed by is militants in iraq .\na veterinary nursing student who died in a crash the day after her final exam has been awarded a posthumous first-class honours degree .\ngreen taxes are set to be cut further , the bbc has learnt .\nthe tension is palpable in kano , after bombers and gunmen struck killing more than 100 people at the central mosque .\ndavid dunn has returned to blackburn rovers to take up a position as under-21 assistant coach .\nthere has been a steep rise in the number of people arriving at a&e departments in england with mental health problems , figures show .\nthe us has `` strongly condemned '' israel for approving plans for new settlement construction in the occupied west bank .\nuk shares edged higher in the final trading session before christmas , with the ftse 100 ending a shortened session up 4.49 points at 7,068.17 .\na man and a woman have appeared in court charged with causing or allowing the death of a baby .\na man has been found dead after a house fire in enniskillen , county fermanagh .\n-lrb- close -rrb- : london 's leading shares closed lower on thursday dragged down by companies going ex-dividend .\nwakefield trinity have signed hooker tyler randell from nrl side newcastle knights on a two-year contract from the start of the 2018 season .\nmyanmar 's military has rejected allegations by the united nations that it committed atrocities during its crackdown on rohingya muslims last year .\ntwo more men have been found guilty of murdering another man who was shot outside a greater manchester pub .\nnorthern ireland 's political crisis could kill off plans to cut corporation tax to 12.5 % in april 2018 .\nus president barack obama has apologised to the president of aid agency medecins san frontieres -lrb- msf -rrb- for a bombing that killed at least 22 .\nleinster moved above connacht into second place in the pro12 table after winning the irish inter-provincial derby at a wet and windy rds in dublin .\nactor and broadcaster sir tony robinson has said plans for a tunnel near stonehenge in wiltshire are too `` old-fashioned '' in outlook .\nsir lenny henry is to join the cast of broadchurch , itv has announced .\natletico madrid easily beat real sociedad to close the gap on la liga leaders barcelona to five points .\nwrexham have signed plymouth argyle forward tyler harvey on a one-year deal .\ntoyota is to invest # 240m in upgrading its uk factory that makes the auris and avensis models .\npolls suggest hungary 's governing fidesz party is set to win another two-thirds majority at sunday 's general election .\na yachtsman was treated for burns following an explosion on a vessel anchored off an island near oban .\nvoluntary redundancy deals have been offered to almost 500 staff in further education -lrb- fe -rrb- colleges by the department for employment and learning -lrb- del -rrb- .\nshutter speed overcame rain-softened ground to win the musidora stakes at york under frankie dettori and will now be aimed at next month 's french oaks .\nsunderland midfielder jan kirchhoff is expected to be out for 12 weeks after having knee surgery .\nthe former home of explorer gertrude bell , a grade ii * listed church and two derelict hospitals are among 10 of the most endangered historic buildings .\nas a us soldier is held for the massacre of 16 afghan civilians , there are growing concerns at his home base about post-traumatic stress disorder -lrb- ptsd -rrb- .\nthe rugby league player danny tickle is in a stable condition after an assault outside a nightclub .\na man has been arrested on suspicion of murder after another man 's body was found in a street on new year 's eve .\nromelu lukaku and eden hazard scored as belgium came from behind to beat norway in their final game before euro 2016 .\nforeign observers of the uk 's debate on its forthcoming referendum on whether to stay in the european union may have noticed an awful lot of fuss about the views of a man called boris johnson - yes , that man on the zip wire .\nformer news international boss rebekah brooks and ex-downing street communications chief andy coulson have learned their trial over phone-hacking claims will take place next september .\na driver died when his sports car hit a tree on a main road in surrey .\nthe number of people looking for work in spain fell almost 100,000 in june , a record for the month , to 4.62 million .\nautism services in northern ireland are to get an extra # 2m a year .\na replacement for one of derby 's council-run swimming pools could cost more than the # 20m the local authority estimated .\nhearts have sold bjorn johnsen to dutch top-rlight club ado den haag for an undisclosed transfer fee .\nthe bbc 's global health correspondent tulip mazumdar has been investigating a new zika vaccine which could be ready for human trials later this year .\na victim of one of three brothers who raped and sexually assaulted 15 teenage girls in rotherham was attacked by her own family when they discovered the abuse , a court has heard .\nan arson attack on the site of the new museum of free derry shows `` total disrespect '' for victims , a bloody sunday relative has said .\nan arab police officer has been promoted by israel to the highest rank ever attained by a muslim in the force .\na court in egypt has suspended the 100-member assembly appointed last month to draft the country 's new constitution .\nscotland faces `` a much higher level of uncertainty and volatility '' in its budgets due to new powers and brexit , holyrood 's finance committee has said .\nfive british service personnel have been killed in a uk helicopter crash in southern afghanistan .\nprime movers on social media in the baltic republics of estonia , latvia and lithuania have been generally saddened by the uk 's vote to leave the european union , but do not treat it as a crisis .\na man has been stabbed on an overground train in south-east london .\nitaly have appointed former juventus boss antonio conte as their new coach until 2016 .\nthe captain of a manx football club has been found dead at a liverpool hotel .\nfifteen people have been arrested , including four in the uk , in connection with the hijacking of computers .\nnana akufo-addo has been elected ghana 's next president at the third time of asking .\nthe predicted explosion of dementia cases may be less severe than previously thought , a study in nature communications suggests .\nphotographs capturing some of the most important moments and inspirational figures of the rock against racism movement are to go on show in bradford .\nsix years ago , dom dwyer 's career was going nowhere .\nandrew lloyd webber has said ticket prices for west end shows are `` incredibly reasonable '' given the cost of bringing a production to the stage .\nessex off-spinner simon harmer says he is `` riding the wave '' after taking 14 wickets in both of his past two county championship matches .\nin july 1995 , bosnian serb forces killed more than 8,000 bosnian muslims who were meant to be under un protection .\npeople with dementia and learning difficulties are being detained in care without checks due to a ` failing ' law , the law commission has said .\nthe number of district nurses in wales has fallen to its lowest level in six years , prompting concern patients who are cared for at home could be at risk .\na # 1.5 m refurbishment of a cemetery - hailed as one of the finest examples of a victorian burial ground in wales - could start in august .\nnapping for more than an hour during the day could be a warning sign for type-2 diabetes , japanese researchers suggest .\ncanada 's governor general has welcomed the duke and duchess of cambridge to ottawa at the start of the royal couple 's first official overseas tour .\na man was arrested on suspicion of holding a staff member at gunpoint at a natwest bank in birmingham .\nuk prices for generic cancer drugs have risen sharply in the past five years , restricting their use in treating nhs patients , research from the european cancer congress has found .\nwarwickshire fast bowler grant thornton has signed an extended contract with the bears until the end of the season as a reward for his promising form .\nforeign airlines are halting flights to nigeria , where a foreign exchange crisis has led the government to limit access to dollars .\nbetting shop staff say they are told to offer gamblers perks to keep them playing on fixed-odds betting machines , a bbc investigation has found .\na man caught at edinburgh airport with knives , knuckledusters and cs gas canisters in his luggage has been jailed for three years .\nswansea city will be coming up against a managerial ` maestro ' in pep guardiola when they face man city on saturday , defender angel rangel has warned .\nsheffield wednesday midfielder kieran lee -lrb- hip -rrb- could feature after three months out .\na body has been found in the water at an aberdeenshire harbour .\ncardiff city forward anthony pilkington believes the bluebirds can challenge for promotion this season .\na majority of scottish councils want the right to buy for council and social housing tenants scrapped , a government report has said .\nlook , i 'm not a total naã ¯ f. i know the race for the republican nomination means garnering support from your base , the different clans who will decide which of the hopefuls becomes the candidate .\nfrench authorities are seeking $ 356m -lrb- # 276m -rrb- in unpaid taxes from booking.com , according to documents filed by parent company priceline .\na swathe of emails from the inbox of ashley madison 's chief executive is now being scoured by a variety of security experts and journalists .\nthe parliament of new south wales , australia has passed a motion calling us presidential candidate donald trump a `` revolting slug '' unfit for office .\ndarth vader and imperial stormtroopers have invaded a denbighshire seaside town to welcome the actor who plays the infamous villain .\nwhere are you reading this ?\ndavid cameron 's eu benefit plans could cause a surge in migration before the `` emergency brake '' is applied , the pm has been warned .\nscientists have used a gene-editing tool to stunt tumour growth in mice .\nyou wait more than 15 years for a new ghostbusters film , and then two come along at the same time .\na taiwanese armoured vehicle has plunged from a three-metre bridge in heavy rain after a military drill , killing three soldiers , officials say .\nex-army chief abdul fattah al-sisi has vowed to to tackle `` terrorism '' and bring security , after being sworn in as egypt 's new president .\nclaudia winkleman has quit the bbc 's movie review show , film 2016 , after six years of fronting the programme .\na convicted killer has been sent back to jail after he admitted carrying out a brutal attack on christmas day , months after being freed early .\nyorkshire should be given its own `` white rose parliament '' with its own budget , mp david blunkett has said .\nno one likes a dull wedding , but one father-of-the-bride 's speech was a little too electrifying at his daughter 's ceremony last weekend .\nimogen bankier ended her badminton career with a 10th consecutive mixed doubles title at the yonex scottish national championships in perth .\nprivate companies in oxfordshire may not have enough capacity to employ people who lose their public sector jobs , an economics expert has warned .\na brazilian court has convicted a rancher for ordering the murder of an american nun over a land dispute - a case that caused international outrage .\ncafodd cadair a choron eisteddfod genedlaethol ynys môn eu cyflwyno i bwyllgor gwaith y brifwyl mewn seremoni yn llangefni nos lun .\ndomestic workers have taken to the streets of hong kong to demand a ban on them being asked to clean windows in high-rise buildings .\nthe centenary of the easter rising , the rebellion that began on easter monday 1916 , is to be marked in irish towns and cities with wreath-laying events .\nthe world 's biggest chipmaker , intel , reported a 6 % fall in net income for the three months to september and cut its fourth quarter outlook for its important server-chip business .\nbrian mcclair says he 's `` very encouraged '' by the work being done in the scottish football association 's performance schools as he considers a future strategy for the game .\nceltic have been fined # 13,000 after poor behaviour by their supporters and player indiscipline in their europa league match against fenerbahce .\nsaracens ' george kruis has been added to the england squad after recovering from ankle surgery .\nengland full-back sam tomkins will rejoin wigan on a four-year deal after he agreed to leave national rugby league side new zealand warriors .\nthere was no trained lifeguard on duty when a three-year-old girl drowned in a hotel swimming pool in lancashire , an inquest has heard .\nus republican presidential candidate mitt romney is expected to name his vice-presidential running mate soon - possibly within days .\na shootout on a beach popular among naturists on the french island of corsica was caused by a local businessman who disagreed with their presence there , police say .\ndengue fever has killed at least 20 people in the west african state of burkina faso , where about 2,000 cases of the disease have been recorded .\nformer england batsman james taylor has joined northamptonshire as a coaching consultant , while david sales has taken a part-time coaching role .\na new public service ombudsman for wales has been approved by the national assembly .\nan mp has written to prime minister david cameron in her bid to establish how a suicide verdict was ruled after a british woman died in italy in 2012 from stab wounds to the neck .\nthe authorities in bangladesh say power has been restored to most of the country after a nationwide blackout on saturday .\na bill has been tabled at holyrood to have police scotland take over railway policing duties north of the border .\na man charged after the theft of money from purses at a remembrance sunday event at aberdeen harbour will not face court proceedings , bbc scotland has learned .\nkfc owner , yum brands , has seen a rise in profit , thanks in part to a chicken bucket deal over chinese new year .\nmexico 's federal police chief , enrique galindo , has been sacked following allegations police killed at least 22 suspected members of a drugs cartel .\nthe first test trams have run on the new section of track for the second crossing through manchester .\ngrimsby town have signed former york city midfielder anthony straker on a deal until the end of the season .\nmembers of the public are being invited to spend a penny in a solid gold toilet at new york city 's guggenheim museum .\nnorthern ireland needs a major new tourist attraction outside belfast , according to the chief executive of titanic belfast .\nus authorities say they have broken up a massive drug-smuggling network run by a mexican cartel in arizona .\nthe uk economy would be hit by leaving the eu , but the impact would be `` small '' and unlikely to lead to big job losses , according to credit agency moody 's .\nchelsea have signed goalkeeper eduardo from croatian champions dinamo zagreb for an undisclosed fee .\ndementia researchers have developed a video game that could lead to the development of early diagnostic tests for the disease .\n-lrb- open -rrb- : the uk market opened lower , but a well-received trading update from dixons carphone sent shares in the retailer higher .\nthousands of children are sexually abused by gangs and groups in england each year , according to a report .\npeople in jakarta have responded defiantly to the attacks in their city by posting the indonesian phrase for `` we are not afraid '' on twitter .\na long-serving rspca inspector says an abandoned pony found on a remote country lane had suffered some of the worst neglect he has ever seen .\nnorthern ireland 's new health minister has challenged politicians to accept change as he outlined his vision for the future of local health services .\nthe us and its supporters including several arab countries have launched the first air strikes against islamic state -lrb- is -rrb- in syria , the pentagon says .\nwhile israeli jets pounded lebanon in the summer of 2006 in its brief war against hezbollah , john barrett was breaking into abandoned pet shops to rescue starving animals in cages .\nactor brian blessed has recounted how he helped deliver a baby in the 1960s - and bit through the umbilical cord .\na quarter of a century on , seen through the fog of more recent conflicts , the first gulf war might look like a straightforward military success , or even the last significant victory for american and british forces .\nan investigation into the disappearance of a woman who was allegedly murdered is to be probed by the police watchdog .\neducation in wales will be discussed at a conference in cardiff on monday .\nthe us space agency -lrb- nasa -rrb- has released spectacular new images of jupiter acquired by its juno probe .\na man has appeared in court charged with breaching a restraining order following the death of a woman on a dual carriageway .\nnico rosberg took a dominant win in the spanish grand prix as mercedes team-mate lewis hamilton fought back from a slow start to take second .\nformer sdlp deputy leader seamus mallon has endorsed colum eastwood in the party 's leadership contest , the bbc has learned .\ndownton abbey star michelle dockery and actor dominic west will star in a 30th anniversary revival of les liaisons dangereuses at the donmar warehouse .\na california woman suspected of murdering the father of her two children is hoping to be released from prison after raising $ 65m -lrb- â # 52m -rrb- bail .\na man whose son was killed during an opposition protest in venezuela 's capital caracas has made a personal plea to president nicolás maduro .\nall-rounder james faulkner became the sixth player to take a one-day hat-trick for australia as sri lanka won the second match of the series .\njohn lewis has unveiled details of the # 24m revamp of its anchor store at the st james centre in edinburgh .\nnatwest and royal bank of scotland -lrb- rbs -rrb- have warned businesses they may have to charge them to accept deposits due to low interest rates .\na car park operator is being investigated over claims photographic evidence has been altered to unfairly impose parking charges .\njack marriott hit a second-half double as peterborough continued their perfect league one start by beating rotherham .\nchampions yorkshire will travel to promoted worcestershire in the opening round of the 2015 county championship to start the defence of their title .\nchildren 's author helen bailey may have been alive when she was dropped into a cesspit at her home , a court has heard .\na man has been charged with the murder of a bulgarian woman in devon .\nscottish actress karen gillan has been cast in a new film that has been described as a follow up story to the 1990s box office hit , jumanji .\nus presidential hopeful donald trump and uk labour leadership candidate jeremy corbyn are demonstrating that whether you come from the left or the right , authenticity can win support .\ngoogle is to open a new headquarters building in london which could see 3,000 new jobs created by 2020 .\nsubstantive brexit talks between the uk and the rest of the eu are unlikely to start much before the end of 2017 , a former european council president says .\nliverpool won a game that will be talked about for generations - a europa league quarter-final against borussia dortmund that will live forever in the memory of all at anfield .\ngoals from jon parkin and elliott frear helped promotion-chasing forest green rovers end halifax town 's 13-match unbeaten run in the national league .\ncuba 's communist government has survived more than 50 years of us sanctions intended to topple veteran leader fidel castro .\nthe father of a toddler stuck in iran without either of her parents nearby plans to sing happy birthday to her via skype at a campaign event later .\nan alleged victim of two ex-bbc radio presenters accused of child sex crimes told a court they later rejected him as he was `` probably too old '' .\njamie roberts intends to use his disappointment at being overlooked by the british and irish lions as motivation when he captains wales .\nberlin police have detained a tunisian man suspected of eating dinner with anis amri the night before he drove a lorry into a crowded christmas market .\na man has appeared in court after firearms , ammunition and cash were seized by police in edinburgh .\nall images copyrighted .\npoultry meat is big business in northern ireland - worth # 205m in 2014 .\nstoke city have signed midfielder steve sidwell on a free transfer following his release by relegated fulham .\nparts of cardiff university 's main building will remain closed on wednesday after a fire .\nturkish police have detained the editor and several writers of opposition newspaper cumhuriyet amid a crackdown on media after the failed july coup .\nthe oil price has fallen to a new seven-year low after the international energy agency -lrb- iea -rrb- forecast a slowdown in growth in demand for oil .\nitalian police say four teenagers accused of 12 robberies in milan gloried in violence like the notorious gang in the film a clockwork orange .\na british father-of-three who feared he would be paralysed by an inoperable tumour has died at the dignitas centre in switzerland .\nharvard university in the us is going to remove the word `` master '' from academic titles , after protests from students who claimed the title had echoes of slavery .\nthere were around 100 at the event in wakefield listening to my passionate speech .\na pair of enormous welsh dragons have cuddled up outside caernarfon castle to celebrate st david 's day .\nnico rosberg headed lewis hamilton as first practice at the chinese grand prix was disrupted by three failures on two separate cars .\ndemonstrators and police have hugged and shaken hands with members of the national guard during a night of protest in charlotte , north carolina .\ncambridge lampposts are sturdy enough not to buckle under the weight of bunting knitted for the tour de france , the county council has said .\nthe parents of murdered bride anni dewani say they are desperate for answers ahead of next week 's trial of their son-in-law in south africa .\nthe crew of a container ship seized by iran in the strait of hormuz on tuesday are safe and `` in good spirits '' , danish shipping company maersk says .\nbuilding the proposed new high speed two -lrb- hs2 -rrb- rail line will mean years of weekend `` misery '' for rail passengers , according to a campaign group .\na young namibian scientist has vowed to find a cure for cancer - one of the biggest killer diseases in the world .\nmonaco 's princess charlene has given birth to twin babies , gabriella and jacques , the palace has announced .\nwilfried bony scored twice to take ivory coast into the semi-finals of the africa cup of nations .\nrecord-breaking russian cosmonaut gennady padalka has returned safely to earth after spending 879 days in orbit .\nthe target to put wales into the top 20 best-performing countries in education by next year has been scrapped by education minister huw lewis .\nhow do you get a player the best deal on transfer deadline day ?\nfew video games have a budget as big .\ndavid tennant and billie piper will appear in the 50th anniversary special of doctor who , the bbc has confirmed .\nus president donald trump says he did not make secret recordings of ex-fbi chief james comey despite an earlier hint to the contrary .\ncraft brewer brewdog has raised $ 1m -lrb- # 770,000 -rrb- from us investors within the first three days of a new funding round , according to the company .\nresidents in one of the government 's new garden cities are warning potential home buyers there is no fast broadband on their development .\nderby county boss nigel pearson says injury may force jacob butterfield and marcus olsson to miss saturday 's season opening game against brighton .\nthieves have been found guilty of using explosives to blow up cash machines in a series of raids which netted more than # 130,000 across aberdeenshire .\nturkey processing firm bosses have been jailed after leaving large amounts of meat defrosting in dirty water before selling it , newport council has said .\ntwo new conservative msps have joined the campaign for the uk to leave the european union .\nretailer watt brothers has announced plans to create 350 new jobs by opening six new stores and expanding three others over the next few years .\nsome 11,180 students were placed on undergraduate courses in the uk through clearing in the first 24 hours after yesterday 's a-level results .\nmullah mansour , afghan taliban leader and the commander of a militia of thousands of men , died a lonely death .\nnew car sales in scotland grew last month but at half the rate of the uk as a whole , according to motor traders .\nsteven naismith is aiming to impress new norwich city head coach daniel farke and has no plans to leave carrow road before the end of his contract .\ngrimsby fought back from two goals down to beat aldershot and boost their national league play-off hopes .\nfamilies of two men who died in prison have lost a high court case related to the high rate of suicides there .\nross wallace 's superb strike helped sheffield wednesday beat 10-man huddersfield in the championship .\nwelsh walker bethan davies says the hard work has paid off after qualifying for the world championships in london and setting new three personal bests in a week .\nthe shortlist for the # 30,000 dylan thomas prize for young writers has been unveiled .\nmexican authorities are to investigate allegations children battling cancer were given `` distilled water '' instead of chemotherapy .\nthe parents of one of three soldiers who died on the brecon beacons have said they are `` extremely disappointed '' the government will not allow the ministry of defence to be prosecuted .\na petition calling for revenge porn victims to be given the same anonymity as other victims of sexual offences has gained more than 5,500 supporters .\nshrewsbury town midfielder abu ogogo could make a surprise return before the end of the season .\ntwo care workers who admitted neglect after a pensioner fell from a hoist at a birmingham care home have been sentenced to 12-month community orders .\nthe football associations of england and scotland say they will ignore a ban on players wearing poppies in their upcoming match on 11 november .\ncornish pirates have agreed to sign lock toby freeman from nottingham on a two-year deal , starting next season .\nan increased risk of narcolepsy has been found among english children vaccinated with the swine flu vaccine , pandemrix .\na man who broke into a flat and brutally beat the householder was caught after he left his wallet behind .\nwensleydale in north yorkshire - a patchwork of green pastures divided by dry stone walls rising to meet moorland , where the heather is bright purple at this time of year .\nphotographs by hugh kinsella cunningham .\nmauritian prime minister anerood jugnauth says he is stepping down to hand power to his son , pravind .\nan indian soldier who was buried in an avalanche that struck the siachen glacier in indian-administered kashmir six days ago has been found alive .\nsix years ago , professional horse-rider claire lomas was told that she would never walk again but now she is attempting to walk more than 26 miles -lrb- 42km -rrb- at sunday 's london marathon thanks to a pair of `` robot legs '' , which have transformed her life .\na post-mortem examination is to take place on human remains found near a motorway slip road in shropshire .\nfifty years ago , a young group stepped on stage in a dark cellar club on liverpool 's mathew street for the first of what would be almost 300 appearances .\nthe prime minister has said he will `` look carefully '' at requests for money set aside for dealing with legacy cases to be released to northern ireland 's police force .\nwet weather is not something most of us want to see .\na woman who helped establish a self-proclaimed independent state on a former military platform off the suffolk and essex coast has died aged 86 .\nformer energy secretary chris huhne - who was jailed for perverting the course of justice in 2013 - has been granted a commons pass , a freedom of information act request has revealed .\na house in denny has been destroyed after a fire broke out in its roof space .\nformer first minister alex salmond has called for a fresh look at the currency options for an independent scotland .\ncaptain michael morrison says the birmingham city players have accepted the criticism aimed at them by manager gary rowett after their draw with preston north end .\nthe trump white house has now settled on its defence of the president 's meeting with the russian delegation , in which he reportedly revealed classified information to his guests .\nsutton secured only their second national league win in 10 attempts as maxime biamou inspired a 3-0 victory over gateshead .\na trade deal between the eu and canada is on the brink of collapse because a belgian region with a population of just 3.6 million objects .\nthe family of a man killed in a crash with an 87-year-old who was travelling the wrong way on the m1 have called for older drivers to be retested .\nworcestershire 's teenage seamer josh tongue tore glamorgan apart with five wickets as they fell to 76-6 in reply to the hosts ' 267 all out at new road .\nunion delegates have backed joint industrial action if `` attacks '' on jobs , pensions and public services go ahead .\nthe footprints of a mysterious reptile that lived about 250 million years ago have been identified in fossils from the pyrenees mountains .\nthe deaths of a man and woman whose bodies were found at a property in paisley are being treated as `` unexplained '' , police have said .\nmuslim leaders from around the world have taken part in an unprecedented trip to germany and poland to see and hear for themselves about the horrors of the jewish holocaust .\ncaptain jacques rudolph has said glamorgan 's senior players need to `` stand up '' after the county 's poor start to the championship season .\nitalian prosecutors have begun an inquiry into the death after a miscarriage of a woman of 32 who was pregnant with twins .\nfleetwood mac have been announced as the first headline act of isle of wight 2015 .\na headless and limbless corpse found in waters off denmark was deliberately mutilated , say copenhagen police .\nfrench president francois hollande has named jean-marc ayrault as his new foreign minister .\nus president barack obama and chinese president xi jinping have said they will take new steps to address cybercrime .\ngogledd cymru yw un o ' r 10 lle gorau i ymweld a nhw ar draws y byd yn 2017 , yn ôl lonely planet .\nglamorgan have made signing another fast bowler their priority for 2017 , says chief executive hugh morris .\nthe two rivals for the centre-right french presidential nomination have clashed over the level of change they promise to bring , in a tv debate .\ntwo men were rescued after becoming stranded on a crag on snowdon 's narrow crib goch ridge .\na superb double century from captain alastair cook saw england to 569-8 , a lead of 46 runs , at the end of day four of the first test against pakistan .\nplans set out by the sussex police and crime commissioner -lrb- pcc -rrb- to take responsibility for fire services in east and west sussex - and potentially merge them - have met with opposition .\nchelsea ladies opened their 2017 spring series campaign with an emphatic 6-0 win over newly promoted yeovil , while arsenal 's season began with a goalless draw at sunderland .\ndefenders adam dugdale and chinua cole have left eastleigh by mutual consent .\nthe church of england 's second female bishop has been consecrated during a ceremony at york minster .\neuropean bronze-medal winning diver brooke graddon has announced her retirement from the sport .\na wrexham street has reopened after police carrying out a search warrant found suspected firearms and `` unstable '' firework .\nall photographs courtesy of insight astronomy photographer of the year .\nyn ei gyfweliad cyntaf â ' r bbc ers etholiad esgob newydd llandaf mae ' r gwir barchedig jeffrey john yn honni bod `` dau esgob wedi cynllunio gyda'i gilydd ymlaen llaw sut i drefnu ' r etholiad yn llandaf '' a hynny er mwyn ei gadw allan .\nthis week a giant coal mine that could produce millions of tonnes of coal for export to india was scuttled by two australian reptiles .\nmonty python 's terry jones has received a standing ovation at the bafta cymru awards for his outstanding contribution to television and film .\nthe confederation of african football -lrb- caf -rrb- named the shortlists for eight more categories ahead of its annual awards gala to be held in abuja on 5 january 2017 .\ngreg dyke will not seek re-election as football association chairman when his term ends in june .\ntwo people in afghan military uniforms opened fire on a vehicle killing two nato soldiers at a military base in the south , alliance officials say .\nuk scientists have embarked on a six-year project to map how nerve connections develop in babies ' brains while still in the womb and after birth .\nfind out more about what the london mayoral candidates are promising in may 's election .\nbritish industry will lead the production of solar orbiter -lrb- solo -rrb- , a spacecraft that will travel closer to the sun than any satellite to date .\nparents could face higher fees and extra charges when the government rolls out a plan to double the number of free childcare hours , warn providers .\nengland 's gabby and chris adcock are one match from successfully defending their world superseries finals title in dubai after a tense semi-final win .\nwhen it comes to the olympics and paralympics , china , the us , russia and britain -lrb- these days -rrb- are usually to be found near the top of both medal tables .\nasian shares traded lower as political uncertainty in greece and a sell-off in commodities weighed on investors ' appetite .\na man has admitted killing an 11-year-old girl in a hit-and-run in glasgow .\nfour nigerian men have received 20 lashes each after an islamic court in the northern city of bauchi convicted them of gay sex , officials say .\nwigan athletic have signed bournemouth midfielder shaun macdonald for an undisclosed fee on a two-year deal .\nbournemouth boss eddie howe says he will not be distracted by talk linking him with the england manager 's role .\nthe future of many community hydro schemes is in jeopardy due to a sharp rise in business rates , operators say .\nnorth east conservatives are not an endangered species as such , but they are a select bunch , and their mps are even thinner on the ground .\nthe raft of potential changes to the formula 1 rules announced on friday amounts to a recognition that something needed to be done to answer the ever-louder questions about the health of the sport .\na four-year-old child has been badly burned after he stepped on a disposable barbecue that was buried at camber sands while it was still alight .\nimages of every tower block built in the uk are to be catalogued in a fully searchable digital archive .\npolice say an attack on a man in his 20s in dunboyne park in west belfast was a `` sectarian hate crime '' .\nhome secretary theresa may is considering banning two us bloggers from entering the uk to speak at an english defence league rally .\nworcestershire ended the third day at canterbury in danger of an innings defeat by county championship division two promotion rivals kent .\na cyclist has died after being in a crash with a car on the a3 in hampshire .\nsinger phil collins has handed over his large collection of alamo memorabilia to a texas museum , calling the donation the end of a six-decade `` journey '' .\nuniversities minister jo johnson is going to challenge universities over `` excessive '' pay for vice-chancellors .\npolice and experts in cybercrime are meeting in wrexham to discuss ways to tackle the issue and keep people safe online .\nthe top un human rights official has urged turkey to investigate an apparent shooting by security forces of unarmed civilians in the city of cizre .\na teenager charged with operating a fake medical practice in the us state of florida has said he was just trying to help people through alternative medicine .\ni can only imagine what alastair cook has been going through during his and england 's wretched run of form .\na union has welcomed reassurances from the new owner of bernard matthews over job security and pensions .\nneenu kewlani is a communications professional and works for disability rights in india .\npolice have confirmed they are continuing with plans to close control rooms in aberdeen and inverness .\nmae ' r prif weinidog theresa may wedi cyhoeddi y bydd yn gofyn i dŷ ' r cyffredin bleidleisio o blaid cynnal etholiad cyffredinol ar fyr rybudd ar 8 mehefin .\nflorida wildlife officials are hunting for an 8-foot-long -lrb- 2.4 m -rrb- king cobra snake escaped from an orlando home .\nthe uk economy will see three years of `` relatively slow growth '' as it comes to rely more on trade and less on consumer spending , a think tank says .\nnottingham forest have signed cardiff city striker federico macheda on loan , subject to international clearance .\nworkers in northern ireland factories operated by us firm caterpillar will be given details of job cuts later .\nfive hundred homes could be built on allotments and green belt land next to the leatherhead bypass in surrey .\ncaptain sean morrison says late goals have been `` devastating '' for cardiff city 's back four .\nthe uk 's leading eating disorder charity has called for the sale of laxatives to children to be more strictly regulated .\njoe clarke made his fifth county championship century of the summer as worcestershire batted out the opening day against derbyshire at new road .\nthere 's no such thing as retirement any more for millions of elderly workers around the world .\nsomerset captain chris rogers says he has `` no regrets '' about his declaration against middlesex on wednesday , despite losing the match by two wickets .\na gaelic footballer who won an all-ireland championship with derry will stand trial accused of stealing over # 500,000 from his employer .\ntwo teenagers arrested after a 16-year-old boy suffered `` potentially life threatening injuries '' in a stabbing in brighton have been released on bail .\nthey say you can learn almost anything on youtube these days and scott gregory is hoping the video sharing website holds the secrets to a perfect us masters debut .\nmany lesbian , gay , bisexual and transsexual -lrb- lgbt -rrb- young people still encounter harassment in public spaces , according to a scottish charity .\nshares in easyjet and ba owner iag both closed lower in the wake of sunday 's assaults in london .\nvery different visions of where the uk 's future should lie have been put under the spotlight by the vote to leave the eu .\na heating firm has been fined # 10,000 after faulty gas installations were discovered in more than 300 properties across dorset and berkshire .\nthe taliban 's capture of the strategically-located sangin , once considered the deadliest battlefield for us and british troops in afghanistan , will increase the group 's mobility in the north of the province and give it control of an important supply line with the provincial capital lashkar gah .\nparts of clandon park house , which was reduced to a shell by a fire in april , are to be restored to their `` original glory '' , the national trust -lrb- nt -rrb- says .\ntt rider gary carswell has died after a crash during a practice race on the isle of man .\na man who began a hate campaign against his ex-partner , which culminated in her car being petrol bombed , has been jailed for five years .\nthe uk 's biggest music festival glastonbury is trying out some pretty special toilets this year , which could help you charge your smartphone .\na prison officer has suffered a serious neck wound after she was attacked at a jail in county antrim .\naccrington stanley secured a dramatic late victory over championship side preston north end to seal their place in the second round of the efl cup .\nthe case for raising us interest rates has `` strengthened '' , the head of the federal reserve has said .\nwolfsburg forward nicklas bendtner has been fined for turning up 45 minutes late for training after sleeping through his alarm .\ndinamo bucharest will honour the memory of midfielder patrick ekeng by sending the romanian cup to his family in cameroon if they win the trophy .\nthe duchess of cambridge tried her hand at conducting a prestigious symphony orchestra on the final day of the royal tour of germany .\na teenager has admitted killing a man found with stab wounds in a county durham village .\nthink of virtual reality and you will probably conjure up images of fantastical landscapes in a game or film set .\ncaterpillars are being killed by a bug which turns them into `` exploding zombies '' , a wildlife expert has said .\ntoshiba shares rallied more than 10 % on thursday on reports the firm was about to secure substantial new loans for its restructuring efforts .\nfor many ugandans , the gold found deep underground in the hills of mubende district was a lifeline .\nthe family of a millionaire businessman `` are sure '' he was killed for his money by his ukrainian wife , an inquest has heard .\nvirat kohli compiled a composed hundred to help defending champions india begin the world cup with a 76-run victory over fierce rivals pakistan .\ntributes were paid to service personnel at hundreds of events around the uk on armed forces day .\na study that claims humans reached the americas 130,000 years ago - much earlier than previously suggested - has run into controversy .\nmark cavendish 's olympic gold medal bid ended in disappointment as alexandre vinokourov of kazakhstan won the men 's road race .\ncomputer pioneer and codebreaker alan turing has been given a posthumous royal pardon .\nradamel falcao has been omitted from chelsea 's 25-man squad for the champions league knock-out stages .\nat least 25 people have been killed and dozens wounded in bomb attacks across iraq , media reports say .\nbirmingham city ladies have signed germany international isabelle linden from champions league holders ffc frankfurt .\nbritish rider emily gilruth is set to leave intensive care after she was injured in a fall at the badminton horse trials .\nbarnsley manager lee johnson has asked for time to change a `` losing mentality '' at the struggling league one club .\nindian pm manmohan singh has concluded a historic visit to bangladesh by signing a series of protocols but without agreement on two major issues .\nthe main battleground in wales in the final week of the referendum campaign will be the south wales valleys .\ngreat britain 's beth tweddle won a medal at last in the final olympic appearance of her gymnastics career .\nengland skipper dylan hartley has urged his players not to become pre-occupied with the british and irish lions tour of new zealand next summer .\nliverpool forward raheem sterling will not be leaving the club in the summer despite a breakdown in talks over a new deal , says manager brendan rodgers .\nformer olympic 400m champion sanya richards-ross says she has helped other women by speaking publicly about having an abortion .\nthey say that christmas is the time for charity but there are going to be a few football managers across the country wishing their players had not been quite so generous this year .\ntwelve civilians are reported to have been killed in a saudi-led coalition air strike in north-western yemen .\na former head of the civil service has said the uk might remain in a `` more loosely aligned '' european union , despite the referendum vote to leave .\nwigan warriors full-back lewis tierney has signed a new three-year deal with the super league side until 2019 .\na 15-year-old girl has died despite being rescued after she was swept into the sea in north tyneside .\nrecord eight-times african champions al ahly of egypt are facing elimination from the 2016 african champions league after being held 2-2 at home by zesco united of zambia .\na paraglider has been rescued after being injured on a mountain in county armagh .\na # 300m taxi manufacturing plant which created 1,000 new jobs is to be officially opened later .\na 71-year-old anti-franco judge , an anti-evictions campaigner and a teacher have been elected mayors of spain 's three biggest cities - as left-wing coalitions swept to power promising an end to corruption .\nscrapping tuition fees in england is the biggest and most expensive proposal in labour 's # 25bn worth of pledges for education .\na senior doctor has spoken out after his hospital was quoted # 855.80 for a blackout blind by its official nhs contractor .\npolice investigating the disappearance of a man three months ago say they have yet to trace the sender of a letter claiming he was dead .\ncoventry overcame 10-man millwall at the ricoh arena to secure their first victory in six league one matches .\nas the jet carrying shaker aamer landed at biggin hill airport , the questions over his future were only just beginning .\nexams regulator ofqual has confirmed the changes it is making to gcses , in what it calls the biggest shake-up of exams in england for a generation .\npublic services face another round of budget cuts in chancellor george osborne 's spending review on wednesday - but which departments are likely to be the winners and losers ?\naustralia says it will reveal new laws stripping citizenship from dual nationals engaged in terrorism .\nballyliffin in county donegal will host the irish open for the first time in 2018 .\na graduate jobseeker has spoken of her horror at being called a `` home-educated oddball '' by a prospective employer .\nthe funeral of a police officer who appeared in a tv documentary series has been held at durham cathedral .\nthe us has said that it will resume aid to the military in bahrain .\nsouth africa head coach russell domingo will have to reapply for his job if he wants to stay in charge of the team after their summer tour of england .\njose mourinho was humiliated on his return to chelsea as his former club blew away his manchester united side at stamford bridge .\naberdeen defender graeme shinnie has signed a new contract which will keep him at pittodrie until at least the summer of 2019 .\nin terms of what england wanted out of the game with scotland i think they got everything .\nthe hunt is on to try to find a successor to the late paul the ` psychic ' octopus .\nnew zealand racer bruce anstey continued to set the pace in the fourth qualifying session at the isle of man festival of motorcycling .\nthursday 's newspaper front pages all take different directions .\nthe man accused of beheading a scientist was her husband , it has emerged .\nscottish championship leaders hibernian moved 10 points clear of title rivals dundee united with a fractious victory .\nan `` explosive creativity '' of craft spirits has seen 50 new distilleries open across the uk last year , according to a study .\nthe hsbc world rugby sevens series arrives in europe for the final two legs of the season - paris and london .\nbritain 's leanda cave pulled away in the last three miles of the run to win the ironman world championship in hawaii .\ncraig wighton was the star of the show against motherwell as dundee secured their first home win of the season , but it was one tinged with controversy .\na man has been charged with an attacking a pregnant woman who went on to lose her unborn twins .\nit 's called the flow : a state of effortless concentration and enjoyment , where time just seems to melt away - and tove styrke has been getting a lot of it lately .\nthe ugandan prime minister 's website was attacked by hackers on tuesday and wednesday , a government official has confirmed to the bbc .\nconor mcgregor promised to knock out floyd mayweather inside four rounds when they faced off for the first time to promote their 26 august bout .\npupils at about 400 kenyan schools are trying to break the world record for having the most people reading aloud simultaneously from the same book .\nbundesliga side schalke have appointed 31-year-old domenico tedesco as coach to replace the sacked markus weinzierl .\nan appeal has been launched to trace the families featured in a series of pictures taken in some of england 's poorest and most deprived areas .\nan amateur beekeeper died after he was stung on the neck inside his protective suit , an inquest has heard .\nplans for a new cancer research centre in manchester have received a # 12.8 m funding boost from the government .\ntens of thousands of egyptian coptic christians have held an overnight vigil in cairo to mourn the death of their spiritual leader , pope shenouda iii .\norganised criminals are using apps and encrypted messaging to evade them , senior police officers believe .\nsergio garcia and francesco molinari both carded five-under 67s to share the lead at nine under at the halfway stage of the dp world tour championship .\na giant street party will be held next year to celebrate the queen 's 90th birthday .\na 32-year-old man has been arrested over last sunday 's fire attack on a florida mosque , which was attended by the orlando nightclub gunman .\nthe honorary president of swansea city fc has died aged 90 .\nan ohio zoo where a gorilla was shot and killed has deleted its twitter account after constant online harassment about the animal 's death .\nthe gare du nord train station in the french capital paris has reopened after a security alert , officials say .\na female cat which died after being found in distress in dundee had been poisoned with antifreeze , the scottish spca has confirmed .\ndavid cameron has said fifa president sepp blatter must resign , adding `` the sooner that happens the better '' .\na new visitor centre at the battle of britain memorial - designed in the shape of a spitfire wing - is beginning to take shape .\nthe operator of japan 's earthquake-hit fukushima daiichi nuclear plant has said it expects to bring the crisis under control by the end of the year .\npolice have been accused of `` institutional racism '' for portraying a suicide bomber as an islamist terrorist , a protest meeting heard .\nlana del rey is in a good mood .\nthe belfast giants shaded a 4-3 win over nottingham panthers on friday night to close the gap on the elite league leaders to three points .\nblackburn were relegated to league one on goal difference , despite beating brentford at griffin park , after nottingham forest 's win over ipswich .\nprince charles has spoken out about the danger of religious persecution , warning against a repeat of `` the horrors of the past '' .\ngreen power from norway will be powering hundreds of thousands of uk homes from 2021 , national grid has said .\na `` lethal mix '' of failures at a cumbrian hospital led to the unnecessary deaths of 11 babies and one mother , an investigation has ruled .\nthe quest to find king arthur 's camelot has puzzled and intrigued scholars and fans for over a thousand years .\nlady gaga is leading the pitch invasion at sunday 's super bowl , where she 'll perform the all-important half-time show .\na man accused of punching a groom when two wedding parties clashed at a hotel has denied hitting anyone but admitted `` grappling '' on the floor .\njuan martin del potro has recorded a shock second-round win to knock fourth seed stan wawrinka out of the men 's singles at wimbledon .\njustice secretary and leave campaigner michael gove has issued a fresh warning about the risk of allowing visa-free eu travel for turkish citizens .\nas it emerges that gcse and a-level exam timetables have been drawn up to minimise clashes with the muslim holy month of ramadan , we take a look at what influences and restricts scheduling .\nboys should receive a cancer vaccine - already given to young girls - to stop them developing strains of the disease , experts have said .\narsenal must pay napoli 94m euros -lrb- # 80m -rrb- to sign argentina striker gonzalo higuain , according to a source close to the italian club .\nfallen trees and branches from a woodland could be a cause for recent sightings of the loch ness monster , a conservation charity has suggested .\npeople are voting in cheshire in the general and local council elections .\nlondon 's first history day will be held on the anniversary of big ben 's first day in operation .\na lifetime 's collection of hundreds of diving helmets and equipment has fetched # 476,000 at auction .\nuk interest rates have been held at 0.5 % again by the bank of england 's monetary policy committee -lrb- mpc -rrb- .\nbeaten league one play-off finalists bradford city have released defender stephen darby after five years .\nthe liberal government in canada has abandoned a legal challenge that sought to require women to remove their niqabs or face coverings during citizenship ceremonies .\nliberty house plans to submit a formal bid on tuesday to buy tata steel 's uk assets , which include the port talbot works employing about 4,000 people .\na sri lankan court has sentenced a former mp to death for the murder of a rival politician five years ago .\ngloucester centre mark atkinson has agreed a new `` long-term '' contract with the premiership club .\nchinese search giant baidu has unveiled an ai digital assistant .\na former indian navy officer who has been sentenced to death on charges of spying in pakistan has filed a mercy petition , the pakistan military says .\na man thought to be one of the first uk muslims to have a same-sex marriage said people have threatened to throw acid in his face since the ceremony .\ndenmark 's health service - which is similar to the nhs - started to look in depth at the problem of cancer survival rates in 2000 .\nthe second phase of a # 15m project to upgrade the water and sewer pipes in stafford is under way .\nsteve sidwell says he has done all he can to earn a new brighton contract and play in the premier league next season .\nin march , online community reddit killed its `` warrant canary '' - a statement on its website declaring that it had not received any secret data snooping requests from government or law enforcement agencies .\nthe developers of a planned 18-hole championship golf course have sought to allay concerns about their proposal 's impact on a protected coastal area .\nit 's 50 years since the publication of one of australia 's most iconic books .\nmyanmar has signed a ceasefire deal with eight armed rebel groups , in the hope of ending decades of conflict .\n`` i really shop when the pound falls in value , '' says american jian deleon .\nnational league side forest green rovers have signed goalkeeper lenny pidgeley until the end of the season .\nenergy companies are `` overcharging in many cases '' with bills failing to fall in line with dropping wholesale costs , the industry 's regulator has said .\nthe world must significantly increase its use of phosphorus-based fertiliser to meet future demands for food .\nrussell slade is to be removed from his role as cardiff city manager and will take up a new role as head of football .\nchina 's imports of crude oil from iran rebounded in may after the two countries resolved a payment dispute .\nnigeria 's government has been accused of being too slow in its response to the kidnapping of more than 200 girls from a school in the north of the country .\nkate french and joe evans won britain 's third medal at the modern pentathlon world championships in poland by winning silver in the mixed team relay .\na 91-year-old war veteran had his six medals stolen from his home while he went on a shopping trip .\nhockey wales head of performance dan clements believes the men 's promotion to europe 's top tier will help transform the sport in wales .\nthe fishing industry wants out of the eu in the face of scottish government efforts to keep the country in , ministers are being told .\nrussia is starting to withdraw forces from syria and its aircraft carrier group will be the first to leave , the russian armed forces chief says .\na new campaign seeks to tackle underage drinking in the highlands .\nscotland-based temporary power company aggreko has suffered a slump in its share valuation after warning of a dip in profit this year .\ntablets , computers and phones have advanced super quickly in the last few years , and are a huge part of our daily lives .\nmonrovia breweries of liberia made a dream african confederation cup debut by trouncing twice former african champions js kabylie of algeria 3-0 in the first leg of their preliminary tie .\nfirefighters were threatened by youths , moments before a dangerous bonfire left two young people injured in stenhousemuir .\nderbyshire fast bowler tom taylor has signed a one-year contract extension with the division two side .\ncouncil tax bills in england could cost an average of # 200 more for band d properties by 2020 , the local government association has warned .\na plan to expand 20mph zones across manchester is to be reviewed after their impact on reducing the number of accidents was called into question .\nthe secretary of state has been criticised after it emerged he took his seat at a gaa game after the playing of the irish national anthem .\nthere is one sentence in the press release announcing nicholas serota 's departure from tate that stands out .\nwhat impact have the elections had on the political maps of london , scotland , wales and england ?\nthe rugby world cup has generated about # 43m for newcastle 's economy , tourism bosses say .\nchelsea manager jose mourinho should have apologised to ex-club doctor eva carneiro for his criticism of her , says football association boss greg dyke .\na farmer told to demolish a mock tudor castle that was built without planning permission has vowed to rebuild `` the work of art '' elsewhere .\nan inquest into the death of the manchester suicide bomber heard how he was identified by dna , fingerprint and dental records .\nbritish actor richard johnson , whose career spanned film , theatre and tv , has died aged 87 , his family has said .\nrestrictions on visitors have been lifted at raigmore hospital in inverness following an outbreak of norovirus .\na financial agent who took thousands of pounds by fraud has breached her community payback order by failing to carry out 180 hours unpaid work .\nwith the permission of the queen , prime ministers used to be able to call a general election at a time of their choosing .\ncolombian authorities say they have raided an office that illegally spied on rebel and government communication to try to undermine peace talks .\na care worker has been jailed for stealing # 75,000 from a patient to spend on a `` lavish lifestyle '' .\norganisations without women on their boards should not be given welsh government grants or contracts worth over # 250,000 , a group of ams has said .\nthe plan to withdraw high-value rupee notes in india had to be kept secret , prime minister narendra modi has said .\na # 9.8 m deficit recorded for 2014/15 at an essex hospital is to be investigated by a health service watchdog .\nsixty-five people have appeared in court in myanmar to be charged over a student protest that ended in violence .\njewellery worth # 35,000 was stolen from a shop during a christmas lights switch-on event in lincolnshire .\ncounting of kenyan election results has slowed down because of problems with the electronic systems .\nmeet george - he wants more children like him to get outside and get into gardening .\nin our series of letters from african journalists , ghanaian writer elizabeth ohene , a former government minister and member of the opposition , laments the lack of a maintenance culture in ghana .\npolice have appealed for witnesses to a crash between two vans which closed a lanarkshire road for several hours .\nthe level of state collusion uncovered by a report into the murder of belfast solicitor pat finucane is `` shocking '' , prime minister david cameron has said .\nthree men have been arrested on suspicion of murder over the shooting of a man at a meat market .\na sculpture honouring spiders from mars guitarist mick ronson has been unveiled in his home town of hull .\ndavid cameron has apologised for `` any misunderstanding '' after describing a former imam as a supporter of the islamic state group .\nbritain 's urban areas are home to more types of wild bee than farmland , a study has found .\nleague one strugglers crewe alexandra have re-signed striker ryan lowe from bury on loan until 5 january .\nthree zebras have gone on the loose in the belgian capital brussels , capping a generous helping of `` animals at large '' stories .\na missing 16-year-old girl and her brother , 13 , are thought to be with a man suspected of their abduction .\na couple who had jewellery stolen more than a decade ago have been reunited with their possessions after they were found at the bottom of a london pond .\nbbc northern ireland programmes have won three awards at the celtic media festival in the republic of ireland .\ntwo men have appeared in court charged with the murder of a woman who was shot in the head in oxfordshire .\na trainee vicar who told primary school children father christmas does not exist has apologised for her `` insensitive , off-the-cuff remark '' .\nthere was a time when to work out what was happening in moscow you needed to read between the lines in pravda , or look at the line-up of soviet officials at a red square parade and study who was standing next to whom .\nsouthport have sacked manager steve burr after just over four months in charge , with director of football liam watson taking interim charge .\nprop vadim cobilas will leave sale sharks at the end of the season after he agreed a three-year deal with bordeaux-begles .\nin one of her last posts on facebook before her murder , qandeel baloch wrote : `` no matter how many times i will be pushed down , i am a fighter , i will bounce back ... .\na scottish music event is to offer festival-goers an augmented reality experience .\nkasabian 's latest music video has been called `` damaging '' by a mental health organisation .\nsupermarket group tesco has bought the restaurant chain giraffe for # 48.6 m .\na man has been jailed for eight-and-a-half years after being convicted of `` a horrendous catalogue '' of abuse against a woman for more than a decade .\narchaeologists found the earliest dated evidence of human activity in scotland - with the help of a herd of pigs .\nworcestershire 's brett d'oliveira made his first hundred in over a year as he shared a 243-run opening stand with fellow centurion daryl mitchell against derbyshire on day three at derby .\nfour people have escaped injury after an arson attack in cookstown , county tyrone .\na grandmother has described how the victim of a paramilitary-style shooting in west belfast knocked on her door asking for help after the attack .\nthe uk is set to reopen its embassy in tehran in the coming days , almost four years after it was closed following the storming of the compound by protesters .\nmore than 200 volcanic and coral islands , many of them surrounded by a single barrier reef , make up the northern pacific nation of palau .\nthe us city of bloomington in indiana has renamed good friday and columbus day as `` spring holiday '' and `` fall holiday '' to be more `` inclusive '' .\nthe agriculture minister is to return to china next month as attempts to access markets there continue .\nthe royle family actress sue johnston is the latest star to join series five of itv 's downton abbey in a guest role .\nelderly germans may have to keep working until the age of 69 if a bundesbank proposal is adopted .\njared payne remains a fitness doubt for ireland 's six nations game against england on saturday .\nrichard money has left his role as norwich academy boss by mutual consent to try to return to club management .\nattempts were allegedly made to `` coerce '' the environment minister into ignoring his legal duties over a planning policy for greater belfast , the high court has heard .\ndyfed-powys police and north wales police require improvement in some of the ways they work , according to reports by watchdogs .\nfour british soldiers who tried to smuggle guns and drugs into the uk have been jailed .\nwimpy owner famous brands has swallowed uk chain gourmet burger kitchen , as the fashion for upmarket burgers in the uk shows no signs of slowing down .\nsony has given up selling its line of reader devices for e-books after failing to find a big enough market .\nthe state has a legal obligation to ensure inquests into some of the most controversial killings of the troubles take place , northern ireland 's most senior judge has said .\nthe controversial kudankulam nuclear plant in india 's tamil nadu state has begun producing electricity after years of delays and protests , officials say .\nformula 1 is back this weekend .\nthe activities of the army 's most high-ranking agent , codenamed stakeknife , are to be investigated but a date for the inquiry has yet to be set .\nchampionship side preston north end have signed aston villa forward callum robinson and fulham midfielder ben pringle , both on three-year contracts .\nscotland 's criminal justice system punishes poorer people and makes it difficult for them to escape poverty , according to an academic study .\nbroadcaster sky is launching its own mobile phone service .\ntributes have been paid to dr john hinds , one of the `` flying doctors '' of irish road racing .\nholyrood 's local government committee has backed plans to raise the council tax for the four highest bands .\nthe introduction of a 5p charge for plastic bags in england has been blamed for a packaging firm going into administration .\naberdeen 's controversial city garden project has been narrowly rejected after a council debate .\na 30-year-old man has been released on bail after being arrested by police investigating phone hacking at the news of the world .\nthe 800th anniversary of the magna carta has been celebrated in lincoln with a delivery of a facsimile of the parchment to lincoln castle .\nworld number five rafael nadal will compete at the aegon championships at queen 's club this summer .\nnigeria 's government has vowed to shut down an illegal radio station operated by people sympathetic to the breakaway state of biafra .\nemergency services were not called until 11 minutes after the alton towers rollercoaster crash , it has emerged .\nthe queen is a `` very good mimic '' with a knack for imitating regional accents , her cousin has said .\na second-half goal from defender mark connolly secured crawley their third win in the past four games with a 1-0 home victory over blackpool .\noutbreaks of heavy rain will hit parts of south , mid and west wales through monday , the met office has warned .\nbritish swimming 's performance director michael scott has resigned following a review into results at london 2012 .\nmanchester will host the 2019 world taekwondo championships - after a record-breaking medal haul for britain at this summer 's olympic games in rio .\nscotland 's workforce is `` caught in a cruel trap '' of low pay and poor conditions , according to a charity .\never wanted a famous author to surprise your school assembly and give you writing tips ?\nswindon 's half marathon could still be saved for the long-term by reducing its cost , the borough council has said .\nbritish airways cabin crew will stage a 48-hour strike from 10 january after rejecting a new pay offer , the unite union says .\na boy with a rare sleeping illness caused by a swine flu vaccine has won # 120,000 in damages .\nwith a little more than 1,000 days to go until the 2020 tokyo olympics begin , preparation - even at this stage - is key .\nbrentford youngster tom field has signed a new contract , which will keep him at the championship club until the summer of 2020 .\nmalorie blackman 's young adult novel noughts and crosses is to be made into a bbc one drama series .\nan album containing autographs of members of the world war two dambusters squadron has sold at auction for # 5,800 .\nmichele morgan , the french screen star and glamour icon who won the first best actress prize at the cannes film festival , has died at the age of 96 .\nthe chairman of the scottish police authority has said aberdeen 's emergency control room will only be closed if it is safe to do so .\nan `` education edition '' of minecraft is to be launched by microsoft .\nlabour is calling on the conservative party to vow that it wo n't lower the top rate of income tax if it wins the election .\nthe united states may be a democracy , but the party presidential nomination process - upon closer inspection - is hardly a shining beacon of democratic light .\nbritish number one johanna konta has become the latest player to confirm her entry to the pre-wimbledon aegon open in nottingham in june .\nit 's remarkable , given the strength of the indian expat community in california , that narendra modi 's trip to silicon valley is the first by an indian prime minister for more than three decades .\nmanchester united forward anthony martial should `` listen to me and not his agent '' , says manager jose mourinho .\npolice have thanked wrexham and chester fans for their `` good natured co-operation '' at their derby match .\nstoke city captain ryan shawcross could be out for up to a month with the back injury that forced him off in saturday 's defeat at leicester .\na former friend of the women who murdered toddler liam fee has told the bbc that `` no sentence '' could ever be enough for their crimes .\nengland completed a women 's six nations grand slam by beating a physical ireland 34-7 at rainy donnybrook .\nthe yorkshire ripper is expected to move out of broadmoor psychiatric hospital and into a prison after medical experts ruled him mentally fit , bbc news understands .\non 4th january 1900 , not even two years after cuba had finally wrested itself from spain 's colonial grip , the steamer yarmouth came over the horizon off the coast of nuevitas , on cuba 's northern shore .\na major scottish interior fitter has announced `` a major review of its longer-term vision , mission and strategy '' .\na shortlist of 10 contenders will be named on tuesday for next month 's 60th bbc sports personality of the year award .\nportsmouth fc and pompey supporters ' trust -lrb- pst -rrb- board member ashley brown has urged fans to make an informed choice over a proposed takeover .\nthe fastest shark in the ocean - and a cousin of the great white - has been caught by a crew fishing off the pembrokeshire coast .\nthe un refugee agency has criticised cameroon for the forced return of hundreds of refugees to north-east nigeria after they had fled from the islamist boko haram insurgency .\nboth defence lawyer barry roux and prosecutor gerrie nel have made a habit of setting `` homework '' for the witnesses they are cross-examining at the murder trail of south african athlete oscar pistorius .\npolice in zimbabwe 's capital , harare , have used tear gas and water cannons to break up a protest by minibus drivers .\nan asian police officer who raised concerns about a `` racist '' toy monkey at work was accused of gross misconduct , bbc news has learned .\nwhat type of f1 fan are you ?\ncoffins are being flown back to tehran from syria at an alarming rate .\naustralia 's economy grew at a better-than-expected 0.9 % in the first quarter of 2015 , compared to the previous quarter , boosted by mining together with financial and insurance services .\npermission has been given for exploratory drilling for oil and gas in the vale of glamorgan .\nfirefighters have rescued 17 people from a six-storey block of flats in glasgow 's west end after a serious fire left them trapped in the building .\noscar pistorius must remain in jail and not be transferred to house arrest after a decision to grant him parole was again delayed .\nthe family of marie colvin , the american journalist who died in syria four years ago , is suing the regime of president bashar al-assad .\na rare tropical turtle found in a serious condition after washing up on an anglesey beach is more lively and improving every day , a zoo has said .\nthe man in charge of protecting china 's environment has warned that pollution and the demand for resources threaten to choke economic growth .\ntax chiefs at the big accountancy firms have defended themselves against claims they are behind avoidance schemes that damage the uk 's interests .\nworcestershire assistant coach matt mason says the arrival of south african fast bowler kyle abbott at the end of june can boost their t20 blast hopes .\na shadow cabinet member and former northern ireland minister has called for an investigation into invest ni 's private finance initiative contract .\nthe nhs in wales must speed up plans to introduce an electronic system for prescribing drugs , a wales audit office report has said .\na conservative mp is calling for the rspca 's role as a prosecutor to be separated from its political and commercial activities .\nhave british sports delivered under the spotlight of london 2012 ?\nsouth sudan booked their place in the next round of regional qualifying for the 2018 african nations championship -lrb- chan -rrb- on sunday , defeating somalia 2-0 in juba .\na clean-up operation has begun in new south wales in the wake of violent storms that battered the australian state .\nmatthew morgan says he turned down offers from around the world to join cardiff blues in the pursuit of adding to his five wales caps .\nthe ancient remains of a teenage girl discovered deep underground in mexico are providing additional insights on how the americas came to be populated .\nthe threat to publish the names of suspected homosexuals in tanzania has been defended by the deputy health minister in a fierce row on twitter .\ntwo things are clear from bp 's results this morning .\nalex hales made a breathtaking 95 off 30 balls as notts outlaws piled up the highest powerplay score in twenty20 history in beating durham jets .\ngas and oil prices have risen amid fears the ukraine crisis could have a damaging effect on one of europe 's main energy supply routes .\nvideo replays were used for the first time to send off a player for a professional foul in a major league soccer reserve match .\nengland and sri lanka were thwarted in the third one-day international at bristol as rain allowed just four overs of the hosts ' run chase .\na missing california jogger found on thanksgiving day last week after a three-week abduction had been branded with a `` message '' by her captors .\nthe latest clash between washington and the west is playing out on a snowy desert plain in the wilds of oregon .\nthe duke and duchess of cambridge and prince harry are to attend a service to rededicate the grave of diana , princess of wales , almost 20 years after her death .\nbritish number four aljaz bedene beat croatia 's borna coric in three sets to reach round two of the marseille open .\nhong kong 's government has unveiled a controversial plan which would allow chinese mainland law to apply in the territory for the first time .\nalgeria lost their first game since exiting the africa cup of nations in the quarter-finals , losing 1-0 to qatar in a friendly in doha on thursday .\nsenegal are through to the second round of the under-20 world cup in south korea after a goalless draw with ecuador .\ni spoke to welsh secretary alun cairns after he attended david cameron 's last cabinet meeting in downing street .\nthe royal military academy sandhurst has appointed the first female college commander in its history .\n-lrb- close -rrb- : us stocks fell and the dollar fell against the yen and euro , after the latest jobs figures were seen as leaving the door open to a rate rise in september .\nleeds rhinos rugby league team face a # 1m bill for flood damage that could keep them out of their training ground for a further six months .\nrussian president vladimir putin says the country 's paralympics ban is `` outside the bounds of law , morality and humanity '' .\nthe busiest summer ever looms for london 's transport system .\nworld number one novak djokovic won his first title since his surprise exit from wimbledon with a straight-sets win over japan 's kei nishikori in the final of the rogers cup in toronto .\nmacclesfield town have signed midfielder scott burgess on a season-long loan deal from league one club bury .\nrangers manager pedro caixinha declared himself `` happy '' with rangers ' performance but `` disappointed '' with the outcome of the goalless draw with hearts .\na 55-year-old woman has died after a couple became trapped under rubble when a coal lorry ploughed into a house in fairlie , ayrshire .\nexeter city made it 12 games unbeaten with a ruthless demolition of 10-man crewe at st james ' park .\na punter in aberdeen has placed a bet of # 50,000 on andy murray to win wimbledon .\nthe family of a woman who was murdered by her boyfriend after a 999 delay have been told they can not sue two police forces for negligence .\nroman catholic cardinals from around the world have gathered in rome to begin the process of electing the next pope .\nusing a bone-strengthening drug could make joint replacements last longer , according to an analysis of gps ' records .\na 16-year-old boy has died after being stabbed during the early hours in bristol .\npoliticians in northern england want chancellor philip hammond to prioritise transport links in the region to make it more attractive to investors .\nsweden captain zlatan ibrahimovic says the world cup is not worth watching without him after their play-off loss .\nferrari 's fernando alonso beat red bull 's sebastian vettel and mclaren 's jenson button in a close fight to win the german grand prix .\neast midlands airport has marked its 50th anniversary .\nit was 50 years ago today that the beatles played their first gig at the cavern club in liverpool - the venue where the band built their reputation and where beatlemania was born .\nprince charles and his wife camilla are to visit australia and new zealand in november , his office says .\nnot for the first time over the five years of greece 's euro crisis - or the eurozone 's greece crisis - i am confused .\nsussex have appointed ex-player murray goodwin as their new batting coach .\ncomedian steve coogan and ex-footballer paul gascoigne are among the latest people to have settled claims for damages over phone-hacking , the high court has heard .\nwales men 's hockey team suffered an agonising late defeat by scotland in their eurohockey championships ii final .\nswansea players will cover the cost of 3,000 away tickets for the club 's match at sunderland next saturday .\nit 's one of the best loved books in american literature , but to kill a mockingbird was also a one-hit wonder .\ndna matching two men accused of throwing acid at the face of a scottish sun journalist was found on items at the scene , a court has heard .\na us regulator has said firms looking for backing via crypto-currencies should be more strictly regulated .\nguy martin and john mcguinness will race for the japanese-based mugen team in this year 's tt race for electric-powered machines .\nsome doctors in england are being offered thousands of pounds to cut the number of patients being sent to hospital , an investigation has found .\ncommunity health councils -lrb- chcs -rrb- in wales are to re-launch themselves at their annual conference after admitting many patients do not know they exist .\na holyrood by-election is to be held on the same day as the uk 's snap general election on 8 june .\nhiv drugs should be given at the moment of diagnosis , according to a major trial that could change the way millions of people are treated .\na fire at an industrial unit in hexthorpe caused disruption to train services between sheffield and doncaster for several hours .\nfrom ballet beginnings to hammer heights .\na man has been remanded in custody charged with the attempted murder of a catholic policeman in county tyrone .\ncampaigners want a dedicated clinic for victims of female genital mutilation -lrb- fgm -rrb- to be opened in wales .\ndixons carphone chief executive has said the company expects to find `` opportunities for additional growth '' in the wake of brexit as it announced a 17 % jump in profits .\nscientists say they can now describe in detail how the asteroid that wiped out the dinosaurs produced its huge crater .\nus shares dipped on friday , as the rally prompted by the federal reserve 's rate rise paused for breath .\nbbc sport 's football expert mark lawrenson is predicting the outcome of every game at the 2014 fifa world cup .\ntottenham 's players lacked the quality and mentality required to reach the knockout stage of the champions league , says boss mauricio pochettino .\na woman `` lovebombed '' out of more than # 300,000 in an online dating scam has shared her story as a warning to others .\nplans to develop a highly-skilled workforce to improve early years education are to be unveiled .\na law firm has suspended two paralegals over allegations they produced a poster offering to `` kick-start '' insurance claims for those affected by the grenfell tower fire in west london .\na man who made a bomb threat which led to more than 20 patients being evacuated from a hospital has been jailed .\njogscotland 's future could be at risk after it emerged # 100,000 of scottish government funding is to be cut .\nalready coping without eu cheese , russians could soon be braced for life without its wine , fine chocolate and flowers .\nan anti-islam candidate has been allowed to stand for the ukip leadership .\nvictims of mesothelioma , an aggressive form of cancer caused by exposure to asbestos , will be able to claim far larger compensation under a new fund .\nrobin mcbryde says there is still an opportunity for players to play their way into the british and irish lions and wales squads if they impress at judgement day .\nan actor in one of the biggest comedies on us television , two and a half men , has described the show as `` filth '' , while urging viewers not to watch it .\ndonegal are hoping the momentum they have gained through the qualifier series can carry them through to the all ireland quarter-finals .\nmexican president enrique pena nieto and his institutional revolutionary party will keep control of congress , preliminary election results suggest .\na 13-year-old girl died when she was struck by a lorry while walking along a street in south-west london .\namerican adults without a college education saw their overall financial circumstances decline last year for the first time in three years .\na man has been charged with three counts of possessing a bladed article in a public place .\nthe norwegian convicted of the massacre of 77 people last year has said he is being held in `` inhumane '' conditions .\nthe uk 's data watchdog is `` making inquiries '' after carphone warehouse said the personal details of up to 2.4 million of its customers may have been accessed in a cyber-attack .\na jury trying two brothers accused of murdering a cash-and-carry manager from cardiff has retired to consider its verdicts at birmingham crown court .\na commemorative # 5 coin is being produced to honour the first birthday of prince george of cambridge .\na historic machine used to swap top secret messages between hitler and his generals has been found languishing in a shed in essex .\nfour councils under heathrow airport 's flight path spent # 350,000 on legal fees challenging the planned third runway , the bbc has learnt .\nforward reza ghoochannejhad and full-back marco motta will leave relegated charlton athletic when their contracts expire this summer .\na man who fled the country after stabbing a university graduate to death in a row between rival drugs gangs , has been jailed for his manslaughter .\na plaque dedicated to a murdered school teacher has been unveiled in her hometown in greater manchester .\nzlatan ibrahimovic could `` plug the financial gap '' of manchester united 's failure to reach the champions league - should he join the club .\nfour people have been arrested in the paris region and southern france , officials say , on suspicion of recruiting militants to fight in syria .\nworking grandparents could share unpaid parental leave under plans being launched by the labour party .\nchampions rangers ' slump in form continued thanks to livingston defender craig halkett 's first-half header against his former club .\nmanchester city missed a golden chance to close the gap on league leaders chelsea as they surrendered a two-goal half-time lead against burnley .\nbelgian police have charged a fourth suspect with terrorism offences related to the deadly attacks on paris , the federal prosecutor has said .\nnigeria forward victor moses may now be given a chance to play at chelsea after returning from his loan deal at stoke , says potters manager mark hughes .\nthe influential head of google , eric schmidt , has called for civilian drone technology to be regulated , warning about privacy and security concerns .\na man is being treated for life threatening injuries after his car was involved in a crash with a pick-up truck in aberdeenshire .\n-lrb- close -rrb- : us markets reached fresh intra-day records , lifted by technology and banking stocks .\nthe 9-2 chance humphrey bogart denied carntop , owned by prince charles , to win the derby trial at lingfield .\nireland 's hopes of retaining the intercontinental cup were dealt a blow as they were held to a draw by the netherlands at malahide .\na gang of masked men have stolen a five-figure sum of cash from a post office atm in north lanarkshire .\nnew world number one doubles team jamie murray and bruno soares suffered a disappointing defeat in the semi-finals of the atp world tour finals .\nmarketa vondrousova , a 17-year-old qualifier , beat anett kontaveit in the final of the biel bienne open in switzerland to win her first wta title .\na man has died in a head-on crash in greater manchester .\nlabour says it has `` a robust system '' to stop `` malicious applications '' after claims individuals who have registered to vote in the leadership race are being unfairly banned from taking part .\nthe israeli prime minister has vowed to `` use all necessary means '' to stop stone throwers after an israeli man died in a car crash linked to such an attack .\nnice midfielder alassane plea has confirmed he heard racist abuse directed at team-mate mario balotelli during friday 's 1-1 draw at bastia .\nuk shares have dipped further , while the pound is steady , as investors continue to digest the bank of england 's latest pronouncement .\na woman who killed a pensioner while `` high on crystal meth and heroin '' has been given a six-year sentence .\nheavy shelling has hit the rebel-held ukrainian city of donetsk , amid a continuing row over a controversial russian aid convoy .\na dog that mauled a four-month-old baby to death snatched the boy from his mother 's arms , an inquest has heard .\na man who posted `` degrading '' pictures of two women he knew on a porn site has been given a six-month suspended jail sentence .\nchina 's biggest e-commerce firm alibaba group holding says it expects to price its initial public offering -lrb- ipo -rrb- at between $ 60 and $ 66 per a share .\nthe hindu holy sites in the indian cities of rishikesh and haridwar attract millions of pilgrims each year - but they are now the destination for another group of devotees .\npalestinian leader mahmoud abbas has warned that peace could suffer if president-elect donald trump carries out plans to move the us embassy in israel from tel aviv to jerusalem .\nlancashire police will `` not be viable '' after 2020 because of cuts to funding , the chief constable has warned .\nrepublic of ireland striker jonathan walters will not feature in friday 's friendly with switzerland because of a hamstring injury , but should be fit to face slovakia on tuesday .\nfrench side toulon say they want to leave their domestic league to play in the english premiership .\na 36-year-old man has been charged with murder following the death of a 40-year-old man in midlothian .\nsouth africa 's doping control laboratory has become the fourth lab to be sanctioned by the world anti-doping agency -lrb- wada -rrb- in the past month .\nsixty-five workers at a county tyrone manufacturing company are set to lose their jobs , a trade union has said .\nhundreds of barmy bathers have been taking part in tenby 's annual festive dip .\nstray dog arthur crossed the amazon river in south america to follow swedish explorers who befriended him .\npolice in scotland are understood to be investigating claims labour peer lord janner abused a boy there in the 1970s .\nus transport safety officials have proposed guidelines to limit driver distraction from gadgets built into cars .\nindian police say that a 30-year-old american woman has been gang-raped in the northern state of himachal pradesh .\nfunerals have taken place in baghdad for two people killed when protesters stormed the city 's fortified government district , the green zone on friday .\nmae ' r scarlets wedi enwi ' r un tîm a drechodd leinster i wynebu munster yn rownd derfynol y pro 12 yn nulyn ddydd sadwrn .\nmicrosoft and facebook have announced plans to build the highest capacity data link between the us and europe .\nsydney sixers beat brisbane heat in a super over to reach saturday 's big bash league final , where they will play perth scorchers .\nshares in china were higher on monday as weaker-than-expected trade data from the mainland raised hopes among investors that beijing may introduce further stimulus measures soon .\na bin man is in a critical condition in hospital after being hit by a bus in flintshire .\nn-dubz have told newsbeat they are shocked to have picked up four nominations for the mobo awards .\nharrison ford has said he did not want to star in a new indiana jones film without director steven spielberg .\nnewcastle boss rafael benitez and sunderland manager sam allardyce both expect their fight to stay in the premier league to go down to the wire .\npakistan 's main intelligence agency , the isi , has said it is embarrassed by its failures on al-qaeda leader osama bin laden .\nthe owners of blackpool football club are suing a web forum for libel in the latest of a series of actions against fans making derogatory comments online .\nminister for refugees richard harrington has refused to tell mps how many syrian refugees are in britain .\ncenturies from paul stirling and england limited-overs captain eoin morgan guided middlesex to a six-wicket one-day cup win against kent .\nsupermarket giant tesco has won # 1.50 compensation from a customer who spilt a bottle of milk in one of its stores .\nthe us military has condemned an order by the afghan government to release 37 prisoners deemed by the americans to pose a threat to security .\noldham athletic boosted their hopes of league one survival as curtis main 's second-half goal sealed a vital three points against southend united .\npolice investigating the suspected murder of a woman missing for 15 months have discovered a body .\nboreham wood have signed midfielder kenny davis from national league rivals braintree town on a one-year deal .\nthe case against two men accused of stealing # 20,000 of biscuits from the makers of jammie dodgers and wagon wheels has been dropped .\nfive more teenagers - two males and three females - have been arrested over the murder of a man in west belfast 's twinbrook estate at the weekend .\na cyclist has suffered serious head injuries after a collision with a car in elgin .\nnetherlands midfielder wesley sneijder has joined french ligue 1 side nice on a free transfer .\nparliamentarians in madagascar have voted to impeach president hery rajaonarimampianina .\na motorcyclist has pleaded guilty to causing the death of a former road safety worker who was killed in a crash on a busy nottingham road .\na police chief has accused anti-fascist protesters of turning up at a demo prepared to attack `` any bald men who looked right-wing '' .\nparliament might have to scrutinise up to 15 new bills to deliver brexit , leaving little time for other legislation , the institute for government has warned .\ntottenham moved back to within two points of premier league leaders leicester after battling back from behind to beat a dogged swansea side .\nengland 's game against australia will kick off the rugby league world cup at the millennium stadium on 26 october .\nyesterday there was a strike over driver relocation on the central line .\nthree countries backing different sides in syria 's war have agreed to set up `` safe zones '' in the country , while delegates for rebel forces stormed out in protest .\nplayboy magazine has announced it is to stop publishing pictures of fully naked women .\nconsent for a wind farm off aberdeen which is opposed by donald trump has been granted by the scottish government , angering the us tycoon .\nthe third don crossing in aberdeen is to open next week , following months of delays .\na range of charities and organisations can be contacted for help and support if you have suffered criminal activity or sexual abuse .\ncassini has used a gravitational slingshot around saturn 's moon titan to put it on a path towards destruction .\namputee football is played all over the world but it is in its infancy in scotland , where organisers are trying to form a new league .\na man stored # 450,000 worth of heroin , cannabis and amphetamines at his house to pay off a debt , a court was told .\nhumans lived in the amazon rainforest much earlier than previously thought , and even helped shape its biodiversity , researchers have said .\nswansea city under-23s have won their season 's double after adding the premier league cup to their premier league two title .\nengland have named three uncapped players in their six nations squad .\na multi-million pound legal bill racked-up in a failed case against six people accused of a fraud conspiracy is to be paid by the serious fraud office .\nmanager neil lennon was thrilled to see hibernian recover from a shaky start to prevail at ibrox .\nderby county have signed defender curtis davies from hull city for an undisclosed fee .\nconfidence in the england team is high ahead of saturday 's opening world cup match against italy , according to a study of words relating to football .\nis a four-metre long carnivorous dinosaur model just what your school , community centre or library is lacking ?\nbrazilian police say they want to speak to international olympic committee -lrb- ioc -rrb- president thomas bach about an alleged scheme to resell tickets during last month 's rio olympics .\na 14-turbine wind farm proposed for skye has been unanimously approved by highland councillors .\nsteam , the digital gaming platform , has started offering hollywood film rentals to users after signing a deal with production studio lionsgate .\nblackpool have signed bournemouth goalkeeper ryan allsop and midfielder callum cooke from middlesbrough on season-long loans .\nthe failure of a restaurant business in leeds has led to the loss of 70 jobs .\neducation secretary nicky morgan is pushing ahead with a `` national funding formula '' for schools , to tackle uneven levels of funding across england .\nlabour has accused theresa may of `` letting austerity damage her ability to keep us safe '' as it continues its attack over police cuts .\nthe only russian due to compete in the athletics at rio 2016 has been cleared to contest the women 's long jump after successfully appealing against a ban .\nsouth korea 's byeong-hun an carded a final-round , seven-under-par 65 to win the bmw pga championship at wentworth .\na man has admitted killing his wife of 25 years while she slept .\na historical walled garden has been `` devastated '' by floods which have washed away a 200-year-old wall and rare plants , its owner has said .\ndna analysis of a 45,000-year-old human has helped scientists pinpoint when our ancestors interbred with neanderthals .\na # 15.9 m denbighshire school construction project is set to get under way after a firm was chosen to carry out the work .\nas electoral drama goes , israeli election campaigns can be rather a slow burn .\na corn snake has been discovered in a neath van destined for the scrapheap .\nfulham have signed werder bremen midfielder thanos petsos on loan until the end of the season .\na man was helped back to his hotel after sleepwalking into the street in manchester city centre without any clothes on , police have said .\nformer greek prime minister lucas papademos has been injured by an explosion inside his car in athens .\nbritain 's victoria williamson says she is lucky not to be paralysed after her serious crash at rotterdam 's zesdaagse .\nparis st-germain have signed spanish forward jese from real madrid for an undisclosed fee on a five-year deal .\nformer greek finance minister george papaconstantinou has been found guilty of removing relatives ' names from a list of potential greek tax evaders .\nnicky ajose 's last-gasp penalty saw charlton come from behind to salvage a draw at gillingham .\ndoctors say a potential treatment for peanut allergy has transformed the lives of children taking part in a large clinical trial .\na bid has been launched to bar people who live outside of wales from standing for election to the assembly .\njames corden has had a capital idea - to film three episodes of his late night us talk show on home turf .\nrestrictions on bus operator first bristol , put in place almost 20 years ago , are to be reviewed to `` see if they are still appropriate '' .\nin the least surprising move since england last needed a new test captain , england have appointed joe root as the successor to alastair cook .\njohn horan easily won the vote at congress on friday night to become the gaa president-elect .\nthe chief executive of nissan says it was `` the right decision '' to sponsor the rio olympics , despite a slump in brazilian car sales .\nthe government has admitted breaching european union pollution legislation , during a high court battle with environmental campaign group .\na sussex pcso who stole thousands of pounds from passengers while on duty at gatwick airport , has been jailed for six and a half years .\nguinea is to be declared free of ebola by the world health organization -lrb- who -rrb- , two years after the epidemic began there .\nin a nondescript apartment complex half a mile from the cutty sark , tinie tempah conjures up some of the biggest hits in uk hip-hop .\ntransport for london -lrb- tfl -rrb- has recruited 500 staff for the night tube at a cost of # 1.5 m a month , even though the new service is not yet operating .\nthe death toll from flooding caused by recent heavy rain in southern japan has risen to at least 15 , officials say .\ntiger woods admits he has concerns over the physical challenge of stepping up his return from long-term injury .\nandrew crofts says his ambition to play at euro 2016 is part of the reason for his loan move to gillingham .\na couple accused of hurting their daughter in a suspected shaken baby case said they had been treated like `` monsters '' .\nthe football bureaucrats of the world were probably expecting to make global headlines as they gathered for the fifa congress in zurich .\na 45-year-old man from pembrokeshire has been been jailed for historical sex offences against a child .\na man has been arrested on suspicion of murder after a man was found stabbed at an address in coventry .\nit is 50 years since action man , the must-have toy of the 1970s , arrived in the uk .\nfrench side lille have exercised their option to sign naim sliti on a permanent deal when his loan move from second-tier side red star expires this summer .\nmps are demanding highways officials explain why roadworks on the a55 and a483 on the chester-wrexham border have over-run , causing months of frustration and long hold-ups for motorists .\ndeputy first minister martin mcguinness pulled out of a trip to china this week due to medical advice , it has been revealed .\nthe uk 's brexit minister david davis has hailed his latest talks with devolved ministers but holyrood 's mike russell has called for greater clarity on the `` strategic objectives '' .\na man was taken into custody after a truck which had been involved in a police pursuit crashed into a building in aberdeen .\nit 's lunchtime , and some 40 or so university students gather for their weekly managing diversity in asia lecture on the campus of the singapore management university -lrb- smu -rrb- .\na collector is putting his massive haul of film and tv props on sale , because his wife says there is n't space for them all in the house .\ncanadian adam hadwin survived a late scare to claim his maiden pga title with a one-shot win at the valspar championship in innisbrook , florida .\nipswich town put their scoring problems behind them with their biggest win of the season to sink qpr at portman road .\njudges could be `` subject to some kind of democratic control '' following the high court 's decision to give parliament a vote on triggering brexit , a ukip leadership contender has said .\ncbbc drama series the dumping ground is focusing on the issue of homelessness through a new character called alex.\nrussia 's leading independent polling agency has been labelled a `` foreign agent '' by the justice ministry and says it can not now work .\nair accident investigators have found signs of metal fatigue in the gearbox of a helicopter that crashed off norway , killing 13 people in april .\nthere was no room for doubt to accompany the raith rovers players as they set off for the league cup final at ibrox .\nyou ca n't win the davis cup on your own and reaching the semi-finals has been a real team effort .\nhackers managed to steal $ 80m -lrb- # 56m -rrb- from bangladesh 's central bank because it skimped on network hardware and security software , reports reuters .\ntheresa may has said the uk will emerge from brexit as a `` great , global trading nation '' , becoming `` safer , more secure and more prosperous '' .\nthe united states soccer federation has outlined plans to stop children aged 10 and under heading footballs .\na 25-year-old man from limavady has been jailed for knocking out two men in separate attacks on the same night .\nus president barack obama and philippine leader rodrigo duterte had a brief face-to-face encounter , days after a very public spat .\nparis officials , investigating why a car was driven through the security barriers ahead of the tour de france on sunday morning , are holding two people who handed themselves in overnight .\nworks are under way to expand capacity at scotland 's largest container port .\ndo you know the difference between a clothesline and a bank statement ?\nsterling see-sawed as investors reacted to growing uncertainty over the outcome of the uk 's eu referendum .\nwigan head coach shaun wane revelled in an excellent weekend for super league after the warriors beat cronulla 22-6 to win the world club challenge .\nthe boyfriend of a pregnant woman killed in a scooter accident in thailand is to be charged over her death , police in the country have said .\ntwo men were taken to hospital after a substance was sprayed in their faces next to a cash machine in east lothian .\na `` unique '' network of tunnels used to train soldiers to fight in world war one has been found on salisbury plain .\nan indian court is due to rule on whether bollywood star salman khan is guilty of running over five men sleeping on a pavement , killing one .\na fire that badly damaged a 16th century hall in manchester is `` suspicious '' , police have said .\na three-day music festival has cancelled its saturday programme due to strong winds and heavy rain .\nleinster resisted a spirited cardiff blues revival to strengthen their position at the top of the pro12 table .\na breast surgeon who intentionally wounded his patients has had his 15-year jail term increased to 20 years .\ntourists from around japan have been flocking to a tiny fishing community , to see what has been nicknamed cat island .\nscientists have gained a remarkable insight into some of the oldest dinosaur embryos ever found .\nin the malaysian capital , ruby khong devotes her lunch hours delivering food to the needy , even when the tropical heat and humidity make it hard to breathe .\nlecturers at colleges in glasgow will not take part in two planned national strikes next week .\na london hedge fund manager who regularly avoided buying a train ticket on his commute to the city has been banned from working in the financial services industry .\nfour hillwalkers who got into difficulties during severe weather on ben lomond have been rescued .\npresident barack obama says the us has launched a `` full investigation '' into air strikes that killed 19 people at an msf-run afghan hospital on saturday .\na junior doctor whose body was found in the sea suffered from `` work-related anxiety '' , her sister has said .\na sister of arlene arkinson has told the inquest into her death police did not treat her disappearance with the `` seriousness and credence '' it deserved .\nsouth africa fast bowler hardus viljoen took five wickets on his kent debut as they bowled gloucestershire out for 221 on day one in bristol .\nthe rollercoaster crash at alton towers led to the `` most challenging '' rescue of his career , one firefighter has said .\ngoogle 's net income rose 17 % to $ 3.93 bn in the three months to june from the quarter last year , boosted by an 11 % rise in revenues to $ 17.7 bn .\ninternet trolls who create derogatory hashtags or doctored images to humiliate others could face prosecution in england and wales .\na soldier who killed three colleagues and injured 16 others in a shooting at us army base was being treated for depression and anxiety .\nit was a hit in lagos - and now it has come to london .\nnottingham forest have signed wolves midfielder adlene guedioura on loan until the end of the season .\nbedroom pop artist mura masa has come joint fifth in the bbc music sound of 2016 with r&b group wstrn .\nthe deputy first minister is due to make a statement on the scottish government 's named person scheme later .\nit is a day when women from merseyside are encouraged to dress in their finest clothes and enjoy a day at the races at ladies ' day .\njos buttler hit england 's fastest one-day international century to lead them to an 84-run win over pakistan in sharjah and a 3-1 series victory .\nsince a devastating fire hit 18th century clandon park in surrey , reducing it to a shell , more than 400 objects have been salvaged from the burnt-out remains - but work continues on the fabric of the building itself .\nshares in paddy power betfair fell more than 5 % despite the bookmaker reporting rising revenues and underlying profits .\nthe 2011 nobel peace prize has been presented to three women at a ceremony in the norwegian capital , oslo .\neccentric comedian ken dodd was one of the biggest recording artists of the 1960s , new research has revealed .\nleeds rhinos prop keith galloway will miss the rest of the season after rupturing his achilles tendon in the super league win over hull fc .\na woman who tried to launder # 55,000 of stolen cash through rangers supporters ' association boys club has been told to carry out 260 hours unpaid work .\ncouncils should draw up fresh plans to reorganise local government , a former leader of cardiff council has said .\npolice have launched an extensive search for a 53-year-old man who has been missing from his home in north ayrshire since thursday morning .\na controversial overhaul of classroom teaching in scotland will take effect as secondary pupils begin returning to school after the summer break .\nan outdoor privy is being hailed as `` one of the poshest in the country '' after being restored at a victorian country house .\nregional official tim roache has been elected to become the new general secretary of the gmb union .\nsurrey captain gareth batty has signed a new contract which will keep him at the club until the end of 2017 .\nthe conwy valley rail route in north wales could remain closed for several days after heavy rain caused flooding .\nthe mayor of london has written to the prime minister in a last-ditch plea for an extra runway to be built at gatwick airport , rather than at heathrow .\npromotion hopefuls portsmouth opened their season with a frustrating draw at home to 10-man carlisle .\nfive german women were arrested on tuesday night when a flashmob stunt in a northern spanish town sparked fears of a terrorism attack .\nhungary 's leader says the migrant crisis facing europe is a `` german problem '' since germany is where those arriving in the eu `` would like to go '' .\ndover ended a three-match winless run with an emphatic victory over chester at crabble .\none person died and three others were taken to hospital after a boat capsized in brixham harbour in south devon .\nmore than 100 afghan soldiers were killed or wounded in a taliban attack on an army base on friday , the defence ministry has confirmed .\ndavid cameron 's `` impossible '' pledge to reduce net migration to below 100,000 must be abandoned if he wins the referendum , vote leave has said .\none in five domestic violence victims in yorkshire are men , according to a charity holding a conference in doncaster .\ndavid cameron is to allow ministers to campaign for either side in the referendum once a deal is reached on the uk 's relationship with the eu .\npresident jacob zuma 's back is against the wall following his sacking of finance minister pravin gordhan at midnight on thursday .\nare you being bombarded by phone calls from call centres ?\na ruling that investigators should hand over the black box from a north sea helicopter crash to scotland 's top law officer is being challenged .\nalviro petersen made his second county championship century of the summer to spearhead a solid day 's batting by lancashire against middlesex at lord 's .\na woman has suffered life-threatening injuries falling from cliffs on dorset 's jurassic coast .\nthree fishermen have been rescued off the coast of malin head in county donegal .\na machine has taught itself how to play and win video games , scientists say .\nfrom september primary schools across england will have to teach foreign languages .\nthe centre-right candidate for the french presidency , francois fillon , is set to tackle allegations of improper payments made to family members .\nthe election is approaching fast and both houses of parliament have put in some short days recently .\nroarie deacon 's late winner helped non-league sutton united beat league two side cheltenham town in the fa cup second round .\nvoters across england are going to the polls for council elections and a parliamentary by-election in south shields .\nmore than 13,000 people have been tested for drink and drug driving in north wales the run up to christmas , police said .\nafter the unexpected delight for england supporters of last week 's stirring comeback victory over wales , saturday 's 47-17 win over italy appears a predictable pleasure : six tries , some scintillating running , a 21st victory in 21 contests between the two .\nmedia reports say that indian and chinese troops are locked in a `` stand-off '' in a disputed territory near the two countries ' de facto border .\na sighting of a man near a barracks is not linked to an investigation into a kidnap bid at raf marham , police said .\nwales second-row luke charteris is set to join bath from racing 92 on a three-year contract .\nmichael clarke scored a century on day two of the opening test against india , australia 's first match since the death of batsman phillip hughes .\nauthorities in china say they have held a suspect over thursday 's attack on a market in urumqi in xinjiang province in which 39 people died .\nche adams will be available to play in birmingham city 's final game of the season after his red card against huddersfield was rescinded .\na county antrim man who stabbed his partner to death in front of their seven-year-old daughter has been given a minimum 12-year sentence .\namerican two-time pga tour winner jason bohn has suffered a heart attack at the age of 42 during the honda classic in florida .\ndecriminalising tv licence fee evasion could close bbc channels , the corporation 's strategy director has warned .\nthere are many famous ways that christmas is celebrated in london , from the lights of oxford street to the trafalgar square tree .\nopposition politicians have expressed concern about the use of a special legal procedure to appoint a new stormont press secretary .\nsecurity is tight in the german capital , berlin , germany host england in a friendly football match .\ncatch up on some of the entertainment stories from the past seven days that you might have missed .\nactor sir christopher lee is marking his 92nd birthday by releasing an album of heavy metal cover versions .\nuk technology firm arm holdings is to be bought by japan 's softbank for # 24bn -lrb- $ 32bn -rrb- it confirmed on monday .\nrussian police have raided 25 premises in moscow and st petersburg linked to the japanese aum shinrikyo cult .\na former high court judge is to review the metropolitan police 's handling of cases involving claims of historical child abuse by public figures .\nglamorgan batsmen aneurin donald and david lloyd both hit maiden first-class centuries as they piled up 444-7 against cardiff mccu .\negyptian investigators say they have so far found no evidence that terrorism caused a russian jet to crash in the sinai in october , killing 224 people .\nsir eric pickles , the former conservative party chairman , has announced he is standing down as brentwood and ongar mp after 25 years .\njonjo shelvey made an impressive debut for newcastle as he helped his side move out of the relegation zone with a win over west ham .\na heavily pregnant woman had a gun pressed to her head when masked burglars broke into her rochdale home .\na vietnamese pot-bellied pig who has moved to derby is apparently a music-loving pet .\nin an era when there is considerable suspicion about the motivation of businesses , the ability of a company to react to a crisis in a way that reveals it to be run by human beings rather than faceless chief executives is of paramount importance .\ndoctors who carry out cosmetic procedures should give patients time to think before agreeing to go ahead , new guidance says .\nthe confederation of african football -lrb- caf -rrb- has signed a new main sponsor for its top club and national team competitions for the next eight years .\na merseyside borough will have no a-level provision after the government approved the closure of the area 's only sixth form offering the qualification .\ntwo international rugby stars have returned to their home club to help coach an under-10s team and to watch the first xv in action .\nrussian engineer alex barak has been coaxing oil out of the ground for a long time .\na 72-hour strike called by the main gorkha ethnic group in india 's west bengal state has brought life to a standstill in the tea-producing darjeeling hills .\nmercedes driver lewis hamilton said he was mystified by his lack of pace in the russian grand prix .\nthe main opposition leader in uganda , kizza besigye , has rejected the result of thursday 's elections , in which president yoweri museveni won a fifth term of office .\nthousands of people have been leaving besieged , rebel-held eastern districts of the syrian city of aleppo following the resumption of evacuations agreed as part of a ceasefire deal last week .\nforest green and torquay followed their seven-goal thriller on boxing day with another classic on new year 's day as the points were shared in a 5-5 draw .\nchelsea midfielder n'golo kante has been chosen as the football writers ' association footballer of the year .\nthe conservatives have increased their control of northamptonshire county council .\nconor mcgregor says he will beat floyd mayweather jr in two rounds after the use of 8oz gloves was approved for the contest in las vegas on 26 august .\nus comedian and talk show host rosie o'donnell has revealed that she suffered a heart attack last week .\nwigan moved level on points with super league leaders warrington by coming from behind to beat castleford .\nin all the years i 've covered european politics , i 've never seen this continent so eurosceptic or the future of the european union so uncertain .\nus president donald trump has defended vladimir putin when questioned over allegations of murders carried out by the russian state .\nnorth korea claims it has missiles capable of reaching the us mainland , but its latest threat is against guam , a much closer target .\ndayle southwell 's first-half goal was the difference as wycombe wanderers edged past stevenage at adams park .\na man in his 60s has been airlifted to hospital after falling while walking in snowdonia .\na prototype for a versatile mini-spaceplane has successfully completed its first test flight , splashing down in the pacific ocean .\na charity has donated # 500,000 to help glasgow school of art -lrb- gsa -rrb- expand its garnethill campus and repair the fire-damaged mackintosh building .\nhospital bosses say they will continue to hire foreign workers to try and solve a `` desperate '' shortage of nurses .\na man who hid his dead girlfriend 's body in an airing cupboard for more than a year has been jailed .\nsouthampton defender jack stephens has insisted it is `` not the time to panic '' despite their third defeat in six days .\nfragments of a suspected russian missile system have been found at the flight mh17 crash site in ukraine , investigators in the netherlands say .\npolice have been given more time to question five men arrested on suspicion of terrorism offences .\ngrimsby have signed striker adi yussuf on an 18-month deal from fellow league two side mansfield .\nmiranda richardson and anna chancellor will take the lead roles in a new bbc one adaptation of mapp and lucia .\nandy halliday 's domination of scott brown in midfield was the key to rangers ' victory over celtic , according to former ibrox player derek ferguson .\npartick thistle manager alan archibald is on a shortlist of candidates for the swindon town vacancy .\nlewis hamilton has made more formula 1 history as his victory in the united states gives him his 50th race win - a figure reached by only two other drivers .\ngiant snowballs have appeared on a beach in siberia , amazing local people there .\nhundreds of people from across the uk have attended the funeral in lancashire of a world war two veteran they never knew .\ntwo men arrested on suspicion of sexual offences against underage girls between 1994 and 2003 have been bailed .\nthe wife and adult children of late actor robin williams have agreed to meet outside of court to try and resolve a dispute over his belongings .\nthe russian economy contracted by 0.5 % in november , the first fall in national output - gross domestic product - since october 2009 , official figures show .\nmoeen ali 's fine counter-attacking innings laid the foundation for england to push for a final-day victory in the second test against west indies .\nthe fa cup semi-final between chelsea and tottenham at wembley stadium will be broadcast live on bbc one .\nshauna coxsey continued her bouldering world cup title defence by claiming gold in the third event of the season .\nchina has launched a digital `` cyber-court '' to help deal with a rise in the number of internet-related claims , according to state media .\ntwo men have stolen a five-figure sum of money during an armed robbery at a post office in glasgow .\nadding another unanticipated sidebar to this topsy-turvy election , kenneth starr has lavished praise on bill clinton , citing his `` genuine empathy for human beings '' , calling him `` the most gifted politician of the baby boomer generation '' and commending his post-presidential philanthropy , which he noted was carteresque in its benevolence .\nlaura muir says she 'll be `` gutted '' to miss april 's commonwealth games .\nas eu migrants face a backlash in cambridgeshire in the wake of the referendum result , the entrepreneur behind a small chain of polish delis fears for her future .\nst johnstone need to score at least twice in lithuania next week after losing their europa league first round qualifying home tie with fk trakai .\na new ceasefire is underway in the war torn country of syria in the middle east .\nwales prop tomas francis admitted he was relieved when coach rob howley named an unchanged team for friday 's six nations match with ireland .\njessica ennis-hill wants to help people be more active and find a way into sport - starting with two fun days combining music and running .\nbritish number one johanna konta continued her good start to 2017 by reaching the semi-finals of the shenzhen open in china .\na service to remember welsh medics who won gallantry medals in world war one is being held in cardiff .\npunk-pop band green day have hit number one for the third time in their career with their new album revolution radio .\narctic sea-ice extent is unlikely to see a new record this summer , claim polar experts at reading university , uk .\na teacher from nottingham has been swept out to sea in bulgaria .\nnewly-promoted national league side ebbsfleet united have signed former whitehawk striker danny mills .\nthe scottish government has announced that it is making more than # 2m available to train an extra 260 teachers next year .\na dumfries and galloway music teacher found with more than 21,000 indecent images of children has been struck off .\nireland beat france to avoid a quarter-final encounter with new zealand , but suffered injuries to johnny sexton , paul o'connell and peter o'mahony .\nharry gurney says he feels optimistic about the future despite suffering relegation with nottinghamshire .\nintroducing a minimum price per unit of alcohol in england would improve the health of the heaviest drinkers , a review by public health england says .\ntottenham midfielder andros townsend has been fined # 18,000 by the football association for breaching betting regulations .\nweaker-than-expected sales at several us department store chains reignited concerns about the us retail sector and prompted investors to offload shares .\nin the hours before kick-off in the lions ' 23-22 defeat by the highlanders , full-back stuart hogg was ruled out of the tour with a fracture to a bone in his face .\na man who coerced a woman into having sex with a stranger before sending `` revenge porn '' to her family has been jailed for six years .\nargentina has begun legal proceedings against three british and two us companies for drilling oil near the falkland islands .\nulster clinched a 32nd interprovincial football title as they produced a strong second half to earn a 2-16 to 3-10 comeback win over holders connacht .\nlancashire youngster liam livingstone marked his first-class debut with an unbeaten half century to build a useful 69-run lead over nottinghamshire .\nthousands of people in mexico city have protested against a government proposal to legalise same-sex marriage , which they say would undermine traditional families .\naston villa have signed manchester city winger scott sinclair on a four-year contract for an undisclosed fee .\nplanners in rugby have revealed they have been in talks with coventry city football club about building a stadium in the borough .\nit is difficult , in the wake of friday 's fixtures in group d , to find much to be optimistic about from a scotland perspective .\none of the reasons the great exhibition of the north was awarded to newcastle and gateshead was because of the `` ambition '' of organisers .\nthere will not be a referendum on an additional council tax rise in liverpool after the results of an online poll , the city 's mayor has said .\nactivists in niger have started legal action into a uranium deal in which the country is said to have lost $ 3.25 m.\nrb leipzig moved level on points with bundesliga leaders bayern munich after timo werner scored twice in a comfortable 3-1 win over mainz .\nroger federer beat richard gasquet to seal switzerland 's first davis cup triumph , then dedicated the victory to his team-mates .\nalberto contador believes the criterium du dauphine is the perfect stage to renew his rivalry with two-time tour de france winner chris froome .\nthe comparisons to a shakespearian tragedy have become a clichã © , so obvious are the parallels with caesar , macbeth , and more profoundly coriolanus .\nindian cricketer ravindra jadeja has been fined 20,000 rupees -lrb- â # 229 ; $ 300 -rrb- after posting photos online of him and his wife posing in front of endangered asiatic lions .\nbolivian president evo morales has nationalised a spanish-owned electric power company .\nthe rmt union is staging a day of protests in support of `` safer scottish railways '' .\na major festival of light art is to be staged in london next year by the people who organise the biennial lumiere festival in durham .\npolice in the us state of arizona say a man arrested last month is responsible for a series of deadly shootings in phoenix last year .\nwalsall have signed goalkeeper mark gillespie on a two-year contract from carlisle united on a free transfer .\npresident donald trump has signed an executive order to ease a ban on political endorsements by churches and religious groups .\na soldier who was investigated by the iraq historic abuse team after being falsely accused of war crimes in iraq says its closure is `` long overdue '' .\na woman who claims her father has kept her locked up against her will in saudi arabia must be allowed to return to britain , a uk judge has ruled .\nthe most vulnerable people in scotland are falling into destitution because the benefits system is `` simply not working '' , according to a charity .\nbritain 's helena lucas finished with three wins out of three to secure overall victory in the 2.4 mr event at the sailing world cup in miami .\na conman who went on the run for nine years after staging a # 900 scam selling england tickets for the 2006 football world cup , has handed himself in .\nbrian graham 's double helped ross county end junior side linlithgow rose 's brave scottish cup run .\nemanuele giaccherini and graziano pelle scored as italy began their euro 2016 campaign with victory over much-fancied belgium in lyon .\nmanchester united and northern ireland defender paddy mcnair will make the draw for this year 's milk cup in belfast on 26 may .\nhigh profile liberal democrats have lost three strongholds in the highlands and islands .\nlandlords at troubled care home provider southern cross have pledged to do all they can to help it avoid bankruptcy , the bbc understands .\nunlike the other four main party leaders in wales , nathan gill was n't elected by his party members .\nmacclesfield scored three second-half goals to earn a comfortable win at wrexham in the national league .\n`` where there 's a will , there 's a way , '' angela merkel has insisted since the migration crisis exploded across europe last year .\nsurvival rates for patients treated in critical care units in wales are increasing , according to the latest annual report on the service .\nprojects worth # 58m to regenerate areas across south wales have been approved .\ncambridge united were held to a goalless draw against nine-man carlisle united , a result which damages both clubs ' league two play-off hopes .\nnorthampton 's kieran brookes has been banned for two weeks after admitting charging into a ruck without using his arms in friday 's loss to newcastle .\nruweyda is seven years old and has only recently said her first words at school .\na victorian fort and museum in pembrokeshire is opening to the public for the first time and is appealing for volunteers to help run it .\nthree women and a man have admitted fraud in connection with the sale of hundreds of puppies , some of which died or suffered serious health problems .\nmadonna 's new artwork for her album rebel heart shows her with black string tied around her head and face .\na zebra that ran away from a horse riding club in japan has died in a golf course lake after it was tranquilised .\nat harper adams university they are fitting tracking devices to slugs .\nfour balaclava-clad men smashed a dumper truck into the front of a bank and escaped with its cash machine .\na man who fraudulently claimed nearly # 40,000 in benefits over the course of almost 11 years has been jailed for 18 months .\nthe hashemite kingdom of jordan is a small country with few natural resources , but it has played a pivotal role in the struggle for power in the middle east .\nengineers have developed a robotic system that can evolve and improve its performance .\na row has broken out between community groups and a carmarthenshire diocese over the cost of using a church hall .\nhouseholders who persistently leave out too much rubbish in flintshire will face fines from next year .\na truck driver has been charged with illegally transporting immigrants after dozens of people were discovered in the back of his trailer .\ncongo reached the quarter-finals of the africa cup of nations for the first time since 1992 by topping group a.\nchris froome is set to become the first briton to win three tour de france titles after safely negotiating a rain-soaked penultimate stage in the alps .\na texas police officer has been charged with perjury over his confrontation with a woman who died in jail shortly after being arrested .\nsubstitute conor thomas scored a dramatic stoppage-time winner as swindon ended millwall 's 16-match unbeaten run in league one .\ntelevision presenter kirsty gallacher has been charged with drink-driving .\npersonal insolvency numbers have returned to `` relative stability '' in scotland following the introduction last year of new bankruptcy legislation , according to officials .\nthere 's one thing the political parties agree on .\neurope 's greatest female golfer , annika sorenstam , says charley hull 's first lpga victory can act as a springboard for the young english player 's career .\nthe police force at the centre of the rotherham child abuse scandal is still failing to record crimes against children properly , a report has said .\nmidwives in northern ireland staged a four-hour strike from 08:00 bst and 12:00 bst on thursday in a pay dispute .\nuk researchers say they have taken a huge step forward in treating deafness after stem cells were used to restore hearing in animals for the first time .\na property mogul is being investigated by the equalities watchdog over remarks about people renting properties .\nan 11-year-old girl has written a letter to burglars who raided her home and stole birthday and christmas presents .\ncarmarthen 's guildhall has a `` self sufficient '' future say council leaders , as the county takes ownership of the historic building .\none girl under the age of 15 is married every seven seconds , according to a new report by save the children .\nmosques have opened their doors to the public as part of a drive to `` reach out to fellow britons following tensions around terrorism '' .\none of the most striking factors about this election campaign is that labour and the conservative party appear to be running two entirely unconnected election campaigns .\nconsumer confidence has seen its sharpest drop in 21 years after the uk vote to leave the eu , a survey suggests .\nhospitals with a&e departments around bristol are back on black alert for the second time in a month amid `` severe pressure '' on services .\nlee clark is a name well known to fans in england but the new kilmarnock boss is less familiar in scotland .\nplans to move a statue depicting a royal marine in the falklands conflict away from portsmouth seafront have been criticised .\ndouble olympic bronze medallist paddy barnes won his pro debut fight in unusual circumstances when opponent stefan slavchev was disqualified .\nall four schools run by a telford academy trust have been put in special measures within a week .\na man has been convicted over the death of a woman who was crushed by window frames weighing more than half a tonne .\nstudents struggling to learn chinese might not know it , but their task has been made easier because of the work of one man .\nstriker lee gregory has signed a new contract with league one side millwall , which will keep him at the den until the summer of 2018 .\nthe cia says the islamic state -lrb- is -rrb- militant group may have up to 31,000 fighters in iraq and syria - three times as many as previously feared .\nwales manager chris coleman said he was pleased with his team 's performance after they came from behind to draw 1-1 with northern ireland in cardiff .\nfacebook is paying microsoft $ 550m -lrb- â # 341m -rrb- for some of the patents it recently bought from aol .\nan academies trust led by a former government adviser has been told too many of its schools are underperforming and not improving fast enough .\na motorcyclist who reached the speed of 237km/h -lrb- 147mph -rrb- on beijing 's ring road has been detained by chinese police for dangerous driving , state media report .\nformer world champion carl froch has said he would consider returning to the ring next spring for one fight to reclaim his title .\ndonegal 's mark english won the 800 metres as ireland finished eighth in league one of the european team championships in finland .\non the first weekend since the manchester attack , many people are carrying flowers and balloons around the city centre and heading in just one direction .\na chemical weapons expert from the islamic state -lrb- is -rrb- group in iraq has been captured by us special forces and is being questioned , reports say .\npreston north end have re-signed goalkeeper anders lindegaard on a one-year deal after he had his contract cancelled at west bromwich albion .\nroma stayed in touch with serie a leaders juventus thanks to a win at genoa secured by armando izzo 's first-half own goal .\ntiger woods is back in upbeat mood and expecting to win major championships over the next decade .\na royal marine who is suing the ministry of defence for up to # 8m , has denied that he broke his neck performing a `` baywatch-style '' dive .\nplans to limit police stop and search powers in england and wales have been held up by `` regressive '' attitudes in downing street , senior conservatives have told bbc newsnight .\nbristol city remain without midfielder gary o'neil -lrb- leg -rrb- , but striker milan djuric is back in training .\na court in iran has rejected an appeal against a five-year prison sentence given to a woman with dual british and iranian citizenship .\ntyson fury defeated dereck chisora on points to become the new british and commonwealth heavyweight champion after a brutal fight at wembley arena .\na man has been rescued from the sea 200 metres off the coast at ballyholme bay , near bangor , after a man working nearby heard shouts and called the coastguard .\npatrick ah van scored two tries on his return from a five-match ban to help widnes to victory at castleford .\nfour people have been taken to hospital after a three car collision in carmarthenshire .\nfigures suggest almost 600 fewer gp surgeries in england open at evenings and weekends than before 2010 , labour has claimed .\ntwo men arrested over the killing of a 42-year-old man in his back garden in liverpool have been released on bail .\ndairy farmers in wales have been urged to club together to help negotiate a better price for their milk .\nthe family of a man feared missing on holiday in peru say they are growing increasingly concerned .\nlawyers representing the first husband and father of alleged `` honour killing '' victim samia shahid say they will seek to have the case thrown out .\nthe ashes of a stranger were scattered in front of a family by two cemetery workers trying to cover up a mistake .\na former fishermen 's mission in the scottish borders is being converted into an arts and performance centre .\nfive men and two women were rescued by the rnli after becoming stranded on two islands in strangford lough .\nred bull were one of the prime movers behind the push for faster , more demanding formula 1 cars this season , so it is somewhat ironic that they started the season off the pace of ferrari and mercedes .\nbreakfast at the wangs ' on a sunday : it 's a lesson in how attitudes in taiwan towards china have changed significantly in just three generations .\na record 71 prisoners were released from jails in england and wales last year by mistake , figures have shown .\na 42-year-old man is being treated in hospital after being shot in a targeted attack near glasgow .\nengland manager sam allardyce would welcome team gb entering football teams at future olympics .\na man who used money defrauded from his employers to buy then sell computers to colleagues at knock-down prices must hand back more than # 100,000 .\na singapore museum will return to india an 11th century sculpture believed to have been stolen from that country .\na wada report on the anti-doping methods employed at rio 2016 has highlighted `` serious failings '' .\nfrench president francois hollande has vowed to improve the protection of police officers , after a police couple was killed by a militant this week .\na court in israel has sentenced former prime minister ehud olmert to six years in prison for bribery .\nthe family of a boxing promoter who died in monaco feel distressed and angry after discovering his body was repatriated with missing organs .\nbelgian police have arrested two people suspected of planning attacks in brussels on new year 's eve .\nbristol director of rugby andy robinson says the club have been hit hard by the departure of forwards coach steve borthwick , who he believes will be successful with england .\nmusician nick cave 's teenage son took lsd before he fell off a cliff in brighton , an inquest has heard .\na haul of planets from nasa 's kepler telescope includes a world sharing many characteristics with earth .\nmajor overhauls to transport routes in cardiff are being considered .\na ferry crashed into a pier on the isle of man as the captain tried to dock in strong winds .\ndavid cameron says the uk will take in more unaccompanied syrian refugee children from europe , although it has not committed to a specific figure .\nit was a bizarre story from the outset .\nthe funeral for murdered psni officer ronan kerr is taking place in his home village of beragh .\nap mccoy missed out on a winner but was saluted by a sell-out crowd as the 20-time champion jockey ended his racing career at sandown .\na court in turkey has sentenced two syrians to four years in jail over the death of alan kurdi and four others .\nformer world number one luke donald has revealed he considered retirement last year following a slump in form .\nrangers manager mark warburton believes brendan rodgers would be a `` great choice '' as celtic 's new manager .\nthe body of a missing music shop owner has been found in the boot of his car parked in birmingham .\nthe public inquiry into the grenfell tower fire must be split in two stages to ensure all lessons are fully learned , jeremy corbyn has said .\nup to a quarter of a million vulnerable people are not being supported by an `` appropriate adult '' while in police custody , a home office report suggests .\nthe mother of a boy who died after being hit by a car says allowing her `` tremendous '' son 's organs to be donated will let him `` continue to help others '' .\nfrom builders and bakers to door handle makers , the replacement for any longstanding member of staff will sometimes sneeringly be told `` that 's not how they used to do it '' .\ndowning street has sought to play down figures showing that eu workers in the uk have risen to a record 2.1 million .\ndefending champion andy murray won a thrilling third-round contest against italy 's fabio fognini at wimbledon as darkness fell around centre court .\nessex and glamorgan will be looking to recover from defeats as they meet at chelmsford in the one-day cup .\nindia require eight wickets on the final day to seal a 3-0 test series win after south africa closed on 72-2 in pursuit of a remote 481 in delhi .\nabout 70 human skeletons have been uncovered by archaeologists during a dig at a former factory in peterborough .\nlaura robson 's recent holiday in italy lasted all of six hours .\nbrian cookson , the head of cycling 's world governing body , says blame for british cycling 's failings should not rest solely with him .\nthe only thing asadullah popal 's digger had gathered was dust .\njames horner , the hollywood composer who wrote the oscar-winning score for titanic , has died in a california plane crash aged 61 .\npolice are seeking a man over the murder of an elderly man found dead at a house in hertfordshire .\nan 11-year-old boy was seriously injured when he was hit by a car whose driver fled the scene .\n`` action is needed '' at homes for the elderly run by cornwall care , after the company took its `` eye off the ball '' , the care quality commission -lrb- cqc -rrb- said .\na botswanan cheetah called legolas that was being studied by researchers has been killed , conservationists said .\nthe united nations says there was a 50 % increase last year in the area of land being used to cultivate coca leaf in colombia .\na cat missing for more than a year has been reunited with his owner after he was found `` feasting '' in a pet food warehouse .\ncolin kazim-richards 's late goal stunned arsenal as blackburn rovers reached the fa cup quarter-finals .\nvisitors have been asked to stay away from a vale of glamorgan hospital because of an outbreak of norovirus .\ntwo kilcoo players are to be suspended by ulster gaa chiefs following allegations of racial abuse .\nprivate security guards employed to forcibly remove people from the uk have used racist language and inappropriate force , a report by mps has said .\nheavy snowfall has caused travel disruption in parts of northern england .\nwest ham earned their first win of the season as they saw off cheltenham town in the efl cup second round .\nwest ham have signed fenerbahce striker emmanuel emenike on loan , with an option to make the deal permanent at the end of the season .\na fire in a block of tenement flats in glasgow has left two people requiring hospital treatment .\nresearchers have invented a dna `` tape recorder '' that can trace the family history of every cell in an organism .\na railway line which was closed due to a landslip is to reopen next week , network rail has announced .\nnew valencia coach pako ayestaran says he only accepted the job with predecessor gary neville 's blessing .\nan australian woman has been arrested in colombia after being found with 5.8 kg -lrb- 12lb 13oz -rrb- of cocaine in her luggage , her family says .\n`` when we were starting out , if you were a woman and you went to the bank for a loan , they wanted to know who you were married to and whether you had permission to be in business , '' says terry mungai .\nsome stories reported by newsround can make you feel sad - but you are not the only one and it 's ok to have those feelings .\njose fernandez , the talented 24-year-old baseball star who died in a boat crash on sunday , was heralded by baseball commissioner rob manfred as one of the game 's `` great young stars '' .\na high court hearing has begun into plans to erect a 17km line of pylons along the denbighshire and conwy border .\nturkey 's government has sacked another 1,389 soldiers accused of being linked to the coup attempt earlier this month .\ntrevor carson pulled off a three superb saves to help hartlepool thwart portsmouth in a poor goalless draw at fratton park .\nsmall businesses in scotland are leading the way when it comes to digital skills , according to a study .\ndriving examiners and coastguards are to hold several strikes against plans they say will hit jobs and pensions .\nit 's been a busy week in the world of entertainment - with the love actually cast reuniting , new york fashion week drawing to a close and awards ceremonies aplenty .\nthe daughter of the late labour mp and peer lord janner has called an upcoming inquiry into child abuse allegations against him `` grotesque and kafkaesque '' .\naustralian born , proudly british , thriving down under .\nfacebook `` tramples '' on european privacy law by tracking people without consent , belgium 's privacy watchdog has said .\nthe deaths of two women at a flat in glasgow may not be due to gas poisoning after a boiler was found to be in working order with no faults .\nthe uk economy grew by 0.3 % in the three months to june , driven in part by a booming film industry , said the office for national statistics -lrb- ons -rrb- .\nsports direct boss mike ashley has accused mps of being `` deliberately antagonistic '' after he was threatened with being in contempt of parliament .\na collection of richard attenborough memorabilia including stills from some of his films have gone on sale in london .\nthe annual apprentice boys demonstration has taken place in londonderry .\nrussell knox aims to tap into the experience of former champion sandy lyle as he prepares to make his masters debut next week .\neuropean leaders are billing their new proposal to deal with the refugee and migrant influx as a `` game-changer '' , but the scheme is not agreed yet and there are doubts about whether it it is practical or even legal .\ntraffic restrictions are being brought in next week on some of scotland 's busiest motorways as work ramps-up on a # 500m improvement scheme .\njeremy corbyn has been criticised for saying it was a `` tragedy '' that osama bin laden was killed rather than being put on trial .\nastronomers have identified the most distant object yet in the solar system .\npolice in the us and italy say they have arrested 26 people in a joint raid against a new mafia-operated drug trafficking route .\na charity has criticised a series of adverts which it claims are offensive to people with facial burns .\na former soldier who spent 23 years sleeping rough in london has been recognised in the queen 's birthday honours list for helping the homeless .\nswansea will play in the premier league next season after hull were relegated after a 4-0 defeat at crystal palace .\nabu dhabi united group , which owns manchester city football club , will invest in a plan by manchester city council to build new homes .\naustralia produced a clinical display to blow new zealand away 34-8 and deservedly win the four nations in front of 40,042 at anfield .\nan 85-year-old woman has died after the car she was in crashed into a wall in barnsley .\nan impartial voting guide for the eu referendum will drop through the letterboxes of 28 million households across the uk from 16 may .\nbbc newsreader sophie raworth is to be part of watchdog 's new presenting team .\na man who stabbed a retired solicitor 39 times after a crash between their cars has been cleared of murder but convicted of his manslaughter .\nbritain 's chris froome won a third criterium du dauphine title on sunday .\nturkey 's president has compared german officials to nazis , in the latest escalation in a war of words .\na terminally-ill cancer patient who was jailed for two robberies he did not commit is fighting for compensation a year after he was exonerated .\nanthony joshua has the `` brutish strength '' of george foreman and frank bruno , according to audley harrison .\na public forum that advises the irish government on constitutional issues has voted to recommend the introduction of unrestricted access to abortion .\nturkey has bombarded so-called islamic state -lrb- is -rrb- targets across the border in northern syria ahead of an expected ground attack on an is-held town .\nmanufacturers have reported positive business trends , in the latest survey from the scottish chambers of commerce .\nanthony joshua 's world title bout with wladimir klitschko comes at the `` perfect time '' , says former undisputed heavyweight champion lennox lewis .\nscientists say that planting large numbers of jatropha trees in desert areas could be an effective way of curbing emissions of co2 .\nlewis hamilton set the pace in final italian grand prix practice as team-mate nico rosberg was pipped by ferrari 's sebastian vettel .\na letter written by the queen revealing how she and prince philip first fell in love attracted `` furious '' bidding as it smashed pre-auction estimates .\nwales has the highest take-up of broadband of any of the devolved nations , according to a report from the watchdog ofcom .\na # 57m road linking cardiff bay and the east of the city will officially open on thursday .\nthe future of one of leicestershire 's main museums has been questioned after an application for funding was shelved .\nbernard tomic says he felt `` bored '' and could not find motivation during his straight-set defeat by mischa zverev at wimbledon .\nlord jeffery amherst , an 18th century british general , is one of the figures at the centre of a global debate on the legacy of colonialism .\nschool report gives students a real audience , by linking to their work from the bbc website .\nthe scottish national party will be holding its spring conference in glasgow this weekend .\ndartmoor hill ponies should be bred for human consumption to ensure their survival on the moor , says a pony group .\nalmost 1,900 palestinians , mostly civilians , have been killed since the launch of israel 's operation protective edge at the beginning of july .\na large billboard has been puzzling residents of a county down town , and commuters on the main route between bangor and belfast .\na large quantity of diazepam tablets have been stolen from a pharmaceutical firm on the prince regent road in east belfast .\na new visitors ' centre proposed for sherwood forest will ruin `` a priceless '' tract of land and threaten wildlife , opponents say .\na student who was allegedly raped in an edinburgh park has told a court how she fought for her life after a man ran up and grabbed her from behind .\nmany countries have failed to donate their `` fair share '' to appeals to help tackle the syrian refugee crisis , the uk-based charity oxfam has said .\nuefa chief michel platini is appealing after fifa banned him for 90 days while corruption claims are investigated .\ncambridge united have signed forward joe pigott on a one-year deal following his release by charlton athletic .\nbritish halfpipe skier rowan cheshire crashed in all three of her final runs , but still secured britain 's best-ever world championship result in the event .\nthe colombian government and the left-wing farc rebel movement have both asked the un for a mission to oversee the end of their decades-long conflict .\nthe government 's planned new laws have been set out by the queen - including the biggest prison shake-up in england and wales `` since victorian times '' .\nsouthern health nhs foundation trust has admitted failings over the fall of a mental health patient from a roof .\nfurther planned strikes by waste collection workers around bath have been called off .\nmanchester united 's # 56m new signings ander herrera and luke shaw will join the squad to tour the united states later this month .\nit was indeed a `` big '' budget - just as the chancellor said it would be .\na labour mp who accused jeremy corbyn of threatening to use his father - former sinn féin mayor pat mcginn - to `` bully me into submission '' has spoken publicly about the row .\nnorthern ireland exporters are continuing to experience a surge in business as a result of the weakening of sterling , the ulster bank has said .\none of ukip 's most high profile figures in northern ireland has been expelled from the party .\na large police presence held back angry crowds outside a kensington church where theresa may was meeting victims of the grenfell tower disaster .\na man who died after being stabbed in a car park in denbighshire , prompting a murder investigation , has been named .\na further # 27m for the refurbishment of the burrell collection has been approved by glasgow city council .\nus officials in california have been seeking security advice from french officials , as the san francisco area prepares to host the super bowl .\njohn terry says he has not made up his mind whether to retire from playing and `` needs a good week away to reflect '' before making a decision .\na man who stabbed a retired solicitor 39 times after a crash between their cars has been given life and will serve at least 10 years .\njack marriott scored the only goal of the game at leyton orient to extend luton 's winning run to four games .\nfans were locked out of baltimore orioles ' game against chicago white sox following violent protests in the city .\na man has been charged with using drones to smuggle cannabis , steroids and mobile phones into prison .\na driving instructor heading to teach a speed awareness class has been jailed for causing a five-car smash that killed an 83-year-old woman .\nsome of the first projects to be funded by the city deal programme for the west of scotland are to be discussed by councillors .\ntroy polamalu , one of the best safeties in history , is retiring from the nfl after 12 seasons .\ngame of thrones star `` the mountain '' has been beaten to europe 's strongest man title by a man from swindon .\ncharacters from the alice in wonderland books will guide visitors on a tour of llandudno in a new app which shows the town 's links with the stories .\nit 's ella and alexander , in case you have n't heard .\nbetter support is needed for members of the armed forces who leave the military with post traumatic stress disorder -lrb- ptsd -rrb- , one of the youngest recipients of the george medal has said .\nrowan williams has warned against `` downgrading '' religious education in secondary schools in his last easter sermon as archbishop of canterbury .\nseaworld has been banned from bringing wild killer whales to its park in san diego , america .\nteam sky have withdrawn sergio henao from riding after concerns about his biological passport data resurfaced .\nrangers say midfielder joey barton `` will return to full-time training '' following a club-imposed suspension .\nrail operator arriva trains wales has been forced to pull some of its fleet out of service to deal with corrosion problems .\nwales ended their world rugby under-20 championship campaign on a positive note by beating italy in the seventh-eighth place play-off in tbilisi .\nwhen portugal was hit by an economic crisis in 2011 , magda tilli and her husband miguel realised that if they wanted to make a decent living they would have to set up their own business .\nnine men have been arrested over a pitch invasion and flares being thrown at a football match .\nwimbledon will have play on the middle sunday for the first time since 2004 after the opening week 's schedule was disrupted by rain delays .\na group has called on ceredigion council to delay plans to sell-off a former school site so it can bid to buy and retain it for community use .\na nine-year-old boy is being treated in hospital after being hit by a vehicle in north lanarkshire on saturday .\none of europe 's main contributions to the james webb space telescope -lrb- jwst -rrb- is built and ready to ship to the us .\nit gets cold , very very cold , waiting at the entrance of the european council building in brussels .\n`` a girl must marry for love , '' actress zsa zsa gabor once quipped , `` and keep on marrying until she finds it . ''\na former senior trader at rabobank has pleaded guilty to interest rate rigging in the us .\ntransplanting cells into livers has the potential to completely regenerate them , say scientists .\nevo-stik northern premier division strugglers colwyn bay have sacked manager kevin lynch following easter monday 's 3-0 home defeat to marine .\nirish pair michael conlan and steven donnelly have been issued with `` severe reprimands '' along with britain 's antony fowler for betting on olympic events .\na hotel and apartment complex in dorset has been approved despite english heritage stating it would be a `` hammer-blow '' to the area .\nback in the 1970s , when i first lived in latin america and was hooked by a fascination for this region that has never left , virtually every country here was ruled by a military dictatorship .\na college lecturer has admitting killing his wife in `` a stabbing frenzy '' after wrongly believing he was not the father of their two children .\nmore than 50 people have been killed in a landslide in antioquia province in north-west colombia , officials say .\nmore than 60 firefighters have spent the night tackling a major blaze at a waste oil depot near kingsnorth power station in kent .\nlabour leader jeremy corbyn has named neath mp christina rees as the new shadow welsh secretary .\nmae enwau ' r milwyr fu farw mewn digwyddiad yn ymwneud â thanc ar faes tanio ' r fyddin wedi eu cyhoeddi .\nvolunteers and well-wishers have pulled together in a huge effort to raise more than # 500,000 in the wake of a fire that killed 60 animals at a dogs ' home .\na top adviser to former president barack obama has labelled reports that she ordered surveillance of donald trump 's campaign as `` absolutely false '' .\na student from swansea university has gone viral after a selfie he took with his colostomy bag was viewed by more than one million people online .\nfor three years south sudan has tumbled deeper into self-inflicted chaos , and it now finds itself on the brink of something even more terrifying .\nindia 's largest e-commerce company flipkart has raised $ 1bn -lrb- # 590m ; 60bn rupees -rrb- in fresh funding , the largest ever for an indian internet firm .\nhungary will not back down over three laws which have brought in question its future membership in the eu , foreign minister peter szijjarto says .\narchaeological research at a site in galloway has suggested it may have been at the heart of a `` lost kingdom '' from the dark ages .\na businessman has been jailed for 30 months after a man plunged to his death from a warehouse roof .\nsix egyptian geese chicks survived a 20ft -lrb- 6m -rrb- leap to the ground after they hatched inside a nest box designed for kestrels at a nature reserve .\nscarlets captain ken owens says they can bounce back from their derby defeat by west wales rivals ospreys - just like they recovered from losing their first three games of the season .\na benevolent virus has been used to harden more than 10,000 home routers against cyber-attacks , says a security firm .\nwe 're fast approaching the 70th anniversary next month of the dropping of the first nuclear bomb , on hiroshima .\nscientists have discovered the best-preserved nervous system in an ancient fossil .\nthere 's only four days to the start of the rio olympics in brazil .\nnew york 's metropolitan opera has cancelled plans for a global hd broadcast of a performance amid fears it could spark anti-semitic sentiment .\nport vale have parted company with three of their backroom staff after manager bruno ribeiro 's boxing day departure .\nin a quantum computer , pure silicon is not enough - only one specific type of silicon atom will do .\nstruggling mclaren are this season targeting a repeat of their fifth-place championship finish from last year , according to racing director eric boullier .\nformer james bond star sir roger moore has revealed how he was helped to reach the top in hollywood , in a new 10-minute film celebrating the olympics .\nthe national hails the snp 's victory in the local elections `` emphatic '' , adding that it deals a blow to theresa may 's bid to stop a second independence referendum .\nenrique iglesias 's hand injuries are worse than expected , his spokesperson has said .\nthe price of diesel has fallen below petrol at some supermarkets for the first time in more than a decade , after the big chains announced price cuts .\na project to build a bridge covered with trees and shrubs across the thames in london should be scrapped , a review has found .\nabout 15,000 crocodiles have reportedly escaped from a farm in south africa 's far north amid heavy rains and flooding .\nex-nottingham forest boss billy davies says he has `` unfinished business '' at the club and would love to return .\nwelsh language campaigners have chained themselves to the gates of welsh government offices in a protest at a `` lack of response '' to the decline in the number of welsh speakers .\nadebayo akinfenwa 's last-gasp equaliser kept wycombe 's quest for a league two play-off spot alive at morecambe .\nreferrals to breast cancer clinics more than doubled in the uk after angelina jolie announced she had had a double mastectomy to prevent breast cancer .\nsse has shelved plans to upgrade the powerline between beauly in the highlands and kintore in aberdeenshire .\nthe prime minister has given his public backing to a stadium in cornwall if the conservatives are re-elected in may .\n-lrb- open -rrb- : stocks opened lower on wall street while the dollar rose , with the us currency hitting a near eight-year high against the yen .\na leaked report into the so-called `` trojan horse '' plot has found evidence there was an agenda to introduce `` an intolerant and aggressive islamist ethos '' into some birmingham schools .\nleading artist claudia williams has said she will never tire of painting as she prepares to unveil her latest work to the public .\nengland 's steve lewis won gold and luke cutts took silver in the men 's pole vault at the 2014 commonwealth games .\nthousands of people in the republic of ireland have participated in 30 demonstrations about water charges .\nnapoli striker gonzalo higuain has been banned for four matches following his angry reaction to being sent off against udinese on sunday .\nleague two side crewe alexandra have signed defender eddie nolan on a one-year-contract , with the option of a further year based on appearances .\na campaign group website says over a million people in the european union have signed a petition against trade negotiations with the united states .\npeterborough united have signed forward danny lloyd on a free transfer from national league north side stockport .\ndivision two leaders essex made a faltering start as leicestershire 's bowlers restricted them with wickets throughout the opening day .\na pedestrian who was killed in a collision that police believe may be linked to an earlier disturbance at a flat in surrey has been identified .\none of the main buildings on swansea university 's singleton park campus is to undergo a # 2.75 m makeover .\nnew liberal democrat leader tim farron says he `` absolutely supports equality '' amid questions over his christian faith and politics .\nmillwall recovered from two goals down to get back to winning ways with victory at 10-man bury .\nan australian man is still at large after an exchange with police on facebook where he asked them to change his mugshot .\nhundreds of thousands of vulnerable older people struggle to get by with little or no care because of cuts to care in england , a charity says .\na woman who lost her job at a belfast advice centre has been awarded # 18,886 in damages , after being discriminated against .\nbarcelona lost to sevilla as they suffered their second la liga defeat of the season , despite neymar 's penalty .\ntwo county londonderry brothers facing bankruptcy owe their creditors up to # 213m , the high court has been told .\njustice secretary michael gove has said britain would be `` freer , fairer and better off outside the eu '' .\na mortuary in mississippi is being sued by the husband of a gay man for allegedly refusing to cremate him because of his sexuality .\nthe jellyfish population in north wales has soared after the recent warm weather , researchers have said .\nan airport that `` refused to close '' is being remembered this weekend , 20 years after flying eventually stopped .\na huge naan bread made by firefighters has been confirmed to be the biggest the world has ever seen .\nthe appeals trial is to begin in italy of the captain held responsible for the costa concordia cruise ship disaster in 2012 , in which 32 people were killed .\nthree pensioners - all over 70 - have been awarded for their bravery after they tackled and pinned down a burglar .\na creative industries development in carmarthen which includes the new headquarters of s4c should not receive public money , ministers have been told .\na man in his 30s is in a serious condition in hospital after suffering a head injury during an assault in belfast city centre .\nthe maker of the epipen will start selling a generic version in the wake of criticism about steep price increases .\ndario fo , the italian playwright and actor famous for his cutting political satires , has died in milan at the age of 90 .\na school shut by council bosses days after a staff strike over workloads is to have a `` phased '' reopening .\nat least seven afghan soldiers have died and many were injured after a suicide bomber targeted a bus carrying troops in the afghan capital kabul .\ncontroversial plans for a # 12m renewable energy project at a conwy county waterfall beauty spot have been withdrawn .\na former chef at a snowdonia hotel has been given a suspended prison sentence for killing a feral cat which had wandered into a hotel kitchen .\nofcom tells newsbeat it has received 233 complaints about ken morley 's behaviour on celebrity big brother .\nlukas jutkiewicz kept gianfranco zola 's birmingham city in the fa cup as they came from behind to earn a third-round replay against newcastle .\none in eight purchases made on uk cards in december used contactless technology , marking a surge in the use of the alternative to loose change .\nthe mother of a 13-month-old boy who drowned in a bath has told jurors she was `` stupid '' to leave him unsupervised for 15 minutes .\na ukip parliamentary candidate who said in a facebook post that israel should `` kidnap '' us president barack obama has been replaced by his party .\nglamorgan will play all their t20 blast matches in a 43-day block in summer 2017 after a revamp of the county cricket fixture schedule .\nthe government has proposed new powers to fine mobile network operators and pornographic website owners .\na paramedic has been struck off over abusive comments made on facebook about a stafford hospital campaigner , patients and members of the public .\na 17th century pub in oxfordshire has been bought by the local community , which has raised tens of thousands of pounds to secure its future .\na czech hiker who went missing a month ago in the snowy mountains of new zealand has described the `` harrowing '' ordeal in which her partner died .\na terminally ill schoolboy whose inspirational story helped to raise more than # 35,000 for charity in the past week has died .\nall photographs courtesy dronestagr.am .\nmartin went to the german occupation museum to see what life was like for a family living on guernsey in world war ii .\na 20-page dossier detailing a culture of bullying within the conservative party 's youth wing was handed to party chairman lord feldman in 2010 , according to a former activist .\ncomputer maker lenovo has been forced to remove hidden adware that it was shipping on its laptops and pcs after users expressed anger .\nleague one side rochdale have signed stoke city full-back joel taylor on loan for the rest of the season .\nus football star brandi chastain , who shot to fame in the 1999 women 's world cup , has pledged to donate her brain to the concussion legacy foundation .\na landmark legal challenge against brexit has been rejected at the high court in belfast .\nthe london living wage is to rise from # 9.15 an hour to # 9.40 , the living wage foundation campaign group has said .\nbradford city 's three-match winning run came to an end as they were held to a draw by oldham athletic at valley parade despite dominating the game .\nmore than 400 people have been arrested for domestic abuse offences ahead of the euro 2016 tournament .\nthe government will give mps from english constituencies a new `` veto '' over laws affecting england only .\na group of four hillwalkers have been airlifted to safety after getting stuck on a `` dangerous ledge '' 2,000 ft -lrb- 609m -rrb- up a mountain on skye .\nus media giant 21st century fox has made a takeover approach for sky that values the uk-based satellite broadcaster at # 18.5 bn .\na fire broke out on the set of eastenders a few hours after the bbc soap broadcast `` live inserts '' as part of 30th anniversary celebrations .\nthe former irish broadcaster and writer , liam ó murchú , has died .\necuador 's presidential election is set for a second round on 2 april , the electoral commission has announced .\ndavid cameron has said the uk and turkey are working `` hand in glove '' to prevent british jihadists returning home after fighting in iraq and syria .\nsouth korean team skt telecom t1 has won the 2016 world championships of the league of legends -lrb- lol -rrb- video game .\nrussia 's opposition leader alexei navalny has been sentenced to 30 days ' administrative arrest for repeatedly violating the law on staging rallies .\nsaudi arabia has put on trial 32 people , almost all of them members of the kingdom 's shia minority , accused of spying for iran , local media report .\na bike hire scheme has been relaunched in oxford six months after it folded .\na report into east midlands ambulance service -lrb- emas -rrb- has found it has `` insufficient staff '' to meet the needs of patients in a `` timely manner '' .\npart of colwyn bay pier is to be dismantled after it collapsed into the sea , conwy council has decided .\nflood sirens have sounded as the `` biggest ever '' training exercise has been held in parts of west yorkshire inundated by flooding in december 2015 .\nsome schools are `` gaming '' the exam system by entering children early , the welsh government director of education has said .\na government drive to boost participation in rugby in english schools is ill-conceived and risks children getting seriously hurt , public health doctors have warned .\nfour paintings by renaissance old master caravaggio are the centrepiece of a major exhibition at the national galleries of scotland .\na team of girls from afghanistan has won a special award at an international robotics competition in washington in the us .\nnot for more than 20 years has the future direction and character of the church of england turned so profoundly on a single vote .\ntwo british teenagers stole items including buttons and a rusted hair clipper from the auschwitz death camp , a court in poland has heard .\npetra kvitova reached the semi-finals of the aegon classic with a 6-4 7-6 -lrb- 7-5 -rrb- win over france 's kristina mladenovic as she continues her return from a career-threatening hand injury .\n-lrb- close -rrb- : wall street 's dow jones and s&p 500 indexes closed higher for the fifth day running , in their longest winning streak since last october .\ngreg draper grabbed a hat-trick as the new saints made history by becoming the first non-scottish side into the scottish challenge cup quarter-finals .\nwhen a stray pink balloon drifted into the sloth bear enclosure at a zoo in the netherlands the curious bears there saw it as a great opportunity to play .\nchannel 4 will shut down e4 on the day of the general election , in a bid to encourage more young people to vote .\nthe leader of the ukip welsh assembly group says nathan gill should not `` double job '' as both mep and am if he can not fully commit to cardiff bay .\nteachers with a weak knowledge of science should be trained more by their schools , education watchdog estyn says .\nbmw 's first quarter profits rose more than expected after the value of its stake in the mapping service here was boosted by an investment by intel .\nan early-medieval gold pendant created from an imitation of a byzantine coin that was found in a norfolk field is a `` rare find '' , a museum expert has said .\nlichfield want the rugby football union to reconsider their failed bid to be part of the inaugural women 's super rugby competition .\namerican actress charmian carr , who played the eldest von trapp daughter liesl in the film the sound of music , has died aged 73 .\neuropean commission president jean claude juncker has denied allegations he encouraged tax avoidance when he was luxembourg 's prime minister .\ncontroversial proposals to shut a catholic school in east dunbartonshire are to be examined by the scottish government .\na man 's body has been found after a fire at a house in darlington .\nus-style professional wrestling is leaping off the top ropes and into the chinese market .\nscottish first minister nicola sturgeon has said plaid cymru leader leanne wood is `` ready and able '' to lead wales .\ncharlie gilmour , the son of pink floyd guitarist david gilmour , was unaware he was swinging from the cenotaph during student protests , a court has heard .\na convicted child sex offender , who won a landmark court case forcing facebook to take down a website page monitoring paedophiles , is now seeking damages .\na misspelt sign at a stop on nottingham 's tram network has been branded an `` absolute joke '' .\na spy novel written nearly 40 years ago about russia attempting to get one of its own into the white house has risen to the top of the download charts in its genre .\na german holidaymaker has been fined â # 1,000 after causing a crash which killed a motorcyclist in conwy county .\nthe russian embassy has honoured 30 world war two veterans in southampton for their part in transporting crucial supplies to russia .\nkids in australia are getting involved in a competition to design a national park in minecraft which could then be built in reality .\nthe botswanan athlete who was barred from running at the world championships as organisers tried to halt a norovirus outbreak says the same would not have happened to mo farah or usain bolt .\na golf club has received concerned questions from pet owners about the fate of a dog photographed in a sinkhole that appeared on its course .\nblackpool have signed ex-york defender eddie nolan on a one-year deal .\nbournemouth manager eddie howe has signed an extension to his contract .\nwales manager bobby gould resigns live on tv in an interview with bbc reporter rob phillips after a 4-0 euro 2000 qualifying defeat against italy in june 1999 .\na number of england fans were taken to hospital in france following a series of clashes between football supporters in marseille .\nrents for premium office space in belfast city centre have risen by 19 % , but experts say still not enough to generate a boom in developments .\nmiddlesbrough missed the chance to go top of the championship and ipswich 's play-off hopes were ended as they drew at the riverside stadium .\nthe uk government has announced that scotland 's court of session will now be able to hear new patent cases .\njapanese carmaker toyota has announced its backing for a group of engineers who are developing a flying car .\nnorth korea has released details of the alleged crimes of a us man it sentenced to 15 years of hard labour .\nwales wing george north 's decision not to return to a welsh region is a disappointment , says rugby wales chief executive mark davies .\nireland 's paul dunne lost to italian edoardo molinari in a play-off at the trophee hassan ii at royal golf dar es salam in morocco on sunday .\ncinemas in the us are scheduling extra screenings of 12 years a slave after it won the best picture oscar .\nireland winger tommy bowe played his first match since october in the ulster 's a game against their munster counterparts on thursday .\nanimation showing the threat of climate change is on the horizon , thanks to new 3d laser mapping .\nscotland lock jim hamilton has announced his retirement from international rugby after he was left out of vern cotter 's world cup squad .\nfor years match of the day has satisfied impatient football fans by condensing a 90 minute match into a handy chunk of highlights .\na footballer accused of threatening fans with a corkscrew has admitted possession of an offensive weapon .\na cat 's death after being stabbed with a screwdriver has sparked an rspca appeal for information in cambridgeshire .\nteachers in england and scotland have more teaching hours and bigger primary classes than in most other developed countries , according to an oecd annual education report .\nfeatherstone beat halifax to reach the challenge cup quarter-finals for the first time in 20 years .\nthe first major trial to see if losing weight reduces the risk of cancers coming back is about to start in the us and canada .\na west ham ladies ' charity match at upton park on 5 june narrowly won a vote over whether it should take place .\na man has been arrested after a fatal road crash involving two motorbikes .\nresearchers have developed an algorithm to help robots fall more gracefully , to protect them from damage .\ncardiff university leaders say lessons are being learnt after a report into racial equality at its medical school .\nas part of the bbc 's intelligent machines season , google 's eric schmidt has penned an exclusive article on how he sees artificial intelligence developing , why it is experiencing such a renaissance and where it will go next .\nif you 're young , chinese and living in beijing , you 're probably locked out of the property market .\nclubs could prevent fans being ripped off by creating their own secondary ticket exchanges , says the football supporters ' federation -lrb- fsf -rrb- .\npolice in turkey say they have confiscated more than 1,000 fake life jackets made for migrants wanting to cross the aegean sea to greece .\nmaria sharapova may have been knocked out of wimbledon , but in india she has hit the headlines with comments that are , for many indians , akin to blasphemy .\nmalcolm turnbull has been sworn in as australia 's new prime minister , after tony abbott was ousted by his party in a leadership challenge .\nlionel messi is not the only threat in the argentina team , according to switzerland 's admir mehmedi ahead of tuesday 's last-16 world cup clash .\nnorthern ireland striker conor washington counts himself a lucky man as he prepares to head to euro 2016 .\nargentina will face a run-off election next month after neither presidential candidate gained enough votes to win the poll outright .\ndawid malan hit an aggressive 78 on debut to help england beat south africa by 19 runs and complete a twenty20 series victory in cardiff .\na fatal accident inquiry into the death of a boy at a glasgow cemetery has heard that up to 900 headstones were deemed unsafe days after the tragedy .\nan irish dance show contestant has sent viewers into a spin with the intensity of his fake tan .\nthe islamic state group 's commander in the besieged iraqi city of falluja is among 70 militants killed in coalition air strikes , the us military says .\na woman is planning to walk down the aisle on her wedding day despite being bed-ridden for almost half her life .\na man who helped his son plot a robbery , during which a man was killed , has had his jail term increased .\npremiership bottom side inverness caledonian thistle moved to within four points of opponents hamilton academical with three games to play .\nlabour leader jeremy corbyn has said he will not allow his mps a free vote on whether to extend uk air strikes into syria .\ngas compressor maker vert rotors has been given a # 1.5 m funding boost to scale up manufacturing at its factory in edinburgh .\nus prosecutors have dropped all charges against a man who spent 25 years in prison for murder , amid allegations police had falsified evidence .\nbarack obama has taken a tour of the bob marley museum in jamaica after becoming the first us president to visit the country since 1982 .\na british man is missing in vietnam after falling while attempting to climb the country 's highest mountain .\nheavy rain denied northants the opportunity to push for victory as they drew against sussex at arundel .\nthe body of a man has been found at the bottom of a hole dug by a water firm .\nthe leader of bahrain 's main opposition group , al-wefaq , has called for the crown prince to attend talks aimed at ending nearly two years of unrest .\na carmarthenshire teacher who sent thousands of sexual messages to three pupils has been banned from teaching for five years .\nwith theresa may 's end of march deadline for triggering the uk 's exit from the eu fast approaching , much remains undecided , not least what will happen to british trade .\nharry potter spin-off fantastic beasts and where to find them has had the biggest uk box office opening weekend of the year so far .\ntheresa may says she will be a `` bloody difficult woman '' towards european commission president jean-claude juncker during brexit talks .\nabout 350 victims have reported child sexual abuse within uk football clubs , police chiefs have said .\na prominent dissident republican facing trial over charges of encouraging terrorism has had his bail conditions changed so he can go on holiday .\nan afghan woman immortalised on the cover of national geographic magazine has been denied bail after being arrested on fraud charges .\nhibernian have completed the permanent signing of goalkeeper ofir marciano on a four-year contract .\na man who rampaged through a dundee mosque while on licence for seriously assaulting his sister has been returned to prison .\nwarwickshire director of cricket dougie brown has left edgbaston after 27 years ' service to the club , as both player and coach .\nscotrail has cancelled a third of its usual services this sunday , after pay talks with train drivers ' union aslef stalled .\nbill gates has given away $ 4.6 bn -lrb- â # 3.6 bn -rrb- to charity in his largest donation since 2000 .\nsnp mep alyn smith received a standing ovation from his european colleagues after he begged them not to `` let scotland down '' .\nfive people have been injured following a crash between a bin lorry , a bus and two cars .\na woman who spent her life savings on dental implants that had to be taken out feels `` butchered '' by the dentist .\nan advertising campaign promoting the south wales metro has been criticised as `` useless '' and a `` cynical way of spending public money '' .\na row has broken out over claims councils have slashed their education budgets .\nthis is the taylor swift lookalike that even the superstar singer thought was her .\nconstructed between 1794 and 1798 , the swansea canal once ran for more than 16 miles between swansea and abercraf , and was the artery which created the swansea valley as we know it .\ndoncaster rovers boss dean saunders says the club are continuing to investigate claims that forward el-hadji diouf breached club discipline .\nsecond hand volkswagens appear to be holding their value well , a motoring magazine says , despite the emissions scandal which emerged a year ago .\na surprise new name has emerged as a potential successor to long-standing mclaren boss ron dennis , whose position as chairman is under threat .\nseventeen lost pyramids are among the buildings identified in a new satellite survey of egypt .\nthe january transfer window is about to close for another year .\nborders railway campaigners have welcomed moves to examine the possibility of extending the route to carlisle .\ncolombia 's prosecutor general , alejandro ordonez , says he will open a `` disciplinary investigation '' against the country 's chief of police , gen rodolfo palomino .\na school has been accused of breaching anti-discrimination laws after claims a four-year-old muslim pupil was told she could not wear a headscarf .\nnationwide has reported a sharp fall in mortgage lending , mainly due to making fewer buy-to-let loans .\ncracking open a large chocolate egg to find nothing in the middle is one of life 's perennial disappointments .\nwho 's your favourite baker left in the great british bake off tent ?\na planned bus drivers ' strike which threatened to disrupt notting hill carnival has been called off .\nglamorgan have signed harry podmore on loan from middlesex to ease the county 's fast bowling injury concerns .\nformer communities secretary sir eric pickles has told the bbc about his concerns over the findings of his report on tackling electoral fraud .\nsubstitute will miller grabbed an injury-time equaliser as burton denied wolves a third win of the season .\na second dog seized by police was kept locked in kennels for two years without exercise , the bbc has been told .\ngareth bale says wales will be stepping into the unknown on sunday when they attempt to beat israel in cardiff and seal their place at euro 2016 .\na production line at deeside 's shotton steelworks is being mothballed which could affect 40 jobs , a union has said .\na man has been arrested in sydney after reports of a suspicious package caused police to lock down a part of the central business district .\nthree students in dundee have designed a handbag which berates you for spending money when you try to use your credit card .\nmobile 360-degree camera technology has helped open up 137 miles of panoramic views of scotland 's waterways to online visitors .\na man who was caught in a police anti-drugs operation last year has been jailed .\nbobby jindal is warning that the republicans must stop being the `` stupid party '' .\nmental health lessons should be on the timetable in every secondary school in the uk a new charity has urged .\na teenager has pleaded guilty to a cyber attack on mumsnet which caused the parenting site to reset the passwords of 7.7 million members .\ngloucester overcame cardiff blues to set up european challenge cup semi-final at la rochelle .\nthe owners of a former victorian asylum in north wales have put it on the market for potential redevelopment with a # 2.25 m price tag .\nfracking for shale gas in wales should still be opposed despite plans to fast-track such schemes in england , the welsh government has said .\na troubled rail firm paid over # 2m in compensation last year for disruption to passengers , figures have shown .\nthe final unbeaten start in europe 's top five leagues ended as hoffenheim lost to title-chasing rb leipzig .\nfirst minister nicola sturgeon has announced that she is seeking a second referendum on scottish independence to take place before britain leaves the european union .\nmillions of russians took out loans during the economic boom years , but now they face crippling debts and the law is not on their side , the bbc 's oleg boldyrev reports .\nchelsea 's poor start to the season continued as they were beaten by porto in the champions league .\ngovernment plans to clamp down on `` benefit tourism '' could see both britons and immigrants affected by changes to the rules on entitlement .\nconvicted fraudster and former nigerian state governor james ibori has been awarded # 1 -lrb- $ 1.30 -rrb- for being unlawfully detained for 42 hours in the uk .\ntwo men charged in connection with the terrorism-linked shooting of an australian police worker have been remanded in custody by a sydney court .\neldin jakupovic made a string of fine saves as hull frustrated manchester united by claiming a goalless draw in the premier league at old trafford .\nthe south african economy is ` in crisis ' says the country 's finance minister pravin gordhan .\nwakefield moved up to sixth in super league after edging a thrilling topsy-turvy encounter with catalans dragons .\na woman working in an off-licence has been threatened with a knife during a robbery in north belfast .\ntyler denton scored on his leeds united debut as the championship side progressed past luton town in the efl cup second round .\nhundreds of tourists were evacuated from new york 's statue of liberty and liberty island as a precaution due to a bomb threat and suspicious package .\nthe un has accused security forces in myanmar of committing serious human rights abuses , including gang-rape , savage beatings and child killing .\nalan curtis has had so many roles at swansea city , he struggles to recall them all .\na tottenham hotspur youth player has agreed to damages , believed to be # 7m , after he was left brain damaged from a cardiac arrest on his debut .\ncctv images of a man who dialled 999 to ask police to stop following him during a police pursuit have been released .\nsinn féin 's martin mcguinness has said he will visit the sites of two world war one battles next week .\nthe family of a schoolteacher from leeds who was stabbed to death in her classroom have called for an independent inquiry into her death .\na royal marine from northern ireland has appeared in court charged with offences related to dissident republicanism , including bomb-making and storing weapons .\nwith john boehner 's resignation , twitter is losing one of its favourite public figures , a politician famous for his tears and his perma-tanned complexion .\ncontroversial plans for a # 100m mini hydroelectric power scheme on the edge of snowdonia national park have been backed by gwynedd councillors .\na fictitious mep was recognised by a greater percentage of people than three real ones , a survey has suggested .\ni have n't been in greece for three weeks but i am told it is eerily quiet and - in respect of tourism - surprisingly busy .\nangelina jolie has signed up to direct africa , a film about celebrated conservationist richard leakey 's battles with ivory poachers .\nit has been a dramatic night that has confounded expectations of political parties and commentators .\nkilmarnock have bolstered their squad with the signing of left-back calum waters from league one alloa .\nleague two side wycombe wanderers have signed midfielder dominic gape from premier league club southampton on a two-and-a-half-year deal .\na barrister who was due to move into his own chambers in huddersfield has pleaded guilty to supplying cocaine .\nlooking at a map , cheshire might appear to be on the fringes of the northern powerhouse , but officials in the county say it 's actually the gateway to it - bringing in commuters and investment .\nan ex-director of brazil 's state-run oil company petrobras is reported to have accused more than 40 politicians of involvement in a kickback scheme .\ngermany 's felix sturm edged a tough contest against birmingham-based irishman matthew macklin in their wba middleweight title fight in cologne .\na student has spoken of the `` nightmare '' of being caught up in the attack on the bataclan concert hall in paris .\na us woman in new york state has avoided drink-driving charges after arguing that she suffers from a rare condition called `` auto-brewery syndrome '' .\nstriker alex danson has been included in the great britain squad for their two test matches against world and olympic champions netherlands .\nboss aitor karanka says middlesbrough are in no hurry to make further signings as they prepare to return to the premier league .\naston villa can not stop midfielder idrissa gueye leaving the club after everton triggered a release clause in the player 's contract .\nthe us secret service , which guards the us president , is too insular and must recruit its next head externally , a review prompted by a white house security breach says .\nchina 's biggest privately-held conglomerate fosun has joined a bidding war for the portuguese hospital operator espirito santo saude -lrb- ess -rrb- .\nchildren dangle mid-air on a makeshift swing hanging from a lamppost , a mother celebrates the silver jubilee cuddling her sons , and boys from the 1950s fish in the canal - just some of the rare pictures of childhood in liverpool last century which have now been put on display .\nsri lanka beat australia by 106 runs in pallekele to claim only their second test victory over the tourists , who set a test match record in defeat .\na federal judge in argentina has ordered the seizure of assets of five companies drilling for oil in the falkland islands .\ncristian , a 32-year-old blacksmith from uruguay , grows five cannabis plants with care and dedication in the back yard of his workshop on the outskirts of montevideo .\nfive russian soldiers have received the `` order of courage '' from president vladimir putin , including a colonel and two women sergeants killed by syrian rebel shelling of aleppo .\na campaign to raise # 50,000 for former emmerdale actress leah bracknell to undergo lung cancer treatment has reached its target .\ncanadian prime minister stephen harper has announced plans to track foreign homeownership and raised the possibility of eventually enacting limits on buying .\na seven-year-old girl has died after being hit by a stone thrown by an elephant from its enclosure at rabat zoo in morocco .\nfloods in the western indian state of gujarat have killed 218 people , government officials have confirmed .\na man accused of killing his unborn baby has told a court he had `` moved on '' and got a second woman pregnant by the time his pregnant ex-girlfriend was attacked in the street .\nshopkeepers near the isle of wight 's troubled new `` floating bridge '' have asked councillors to consider compensating them for loss of business .\npolice were called to the university of aberdeen following reports that a group of protesters had thrown glitter over former mp george galloway .\nliam livingstone has been given his first senior international call-up as england rest five players for the twenty20 series against south africa .\nfour years ago , after the syrian government launched a brutal chemical attack on its own civilians , donald trump warned anyone who would listen that the us should refrain from launching retaliatory military strikes .\nireland pair jonathan sexton and sean o'brien are set to resume full training after injury before saturday 's six nations opener against scotland .\nthe front-runner in the french presidential election has told the bbc that the eu must reform or face the prospect of `` frexit '' .\na 23-year-old man has been remanded in custody following the deaths of a 10-year-old boy and his aunt who were a hit by a car being pursued by police .\nniloofar howe is a rare woman working in internet security .\na photographer has accused taylor swift of `` double standards '' in her row with apple over music streaming .\na major european obesity investigation has called for urgent action to prevent obesity in women of child-bearing age .\nthe authorities in china have removed from websites a popular documentary which highlights the country 's severe pollution problem .\nrecruitment giant hays has said the uk job market weakened `` significantly '' around the time of the eu referendum , but it is too early to judge the long-term impact of the vote .\na beach clean-up charity has been given a # 30,000 grant to help keep manx beaches the `` tidiest in europe '' .\npeople across indonesia and the pacific have witnessed a total solar eclipse , with some parts of indonesia in total darkness for up to three minutes .\nvillarreal central defender eric bailly is set to be jose mourinho 's first signing as manchester united manager .\na car has smashed through a wall of a shop in county tyrone after rolling down a hill .\na bbc team and a number of tourists have suffered minor injuries after being caught up in an incident on the erupting volcano mount etna in sicily .\nit looks like twitter 's changing and maybe , just maybe , it 'll ease your #fomo -lrb- fear of missing out -rrb- .\ninstructions for a hoist involved in the death of a hospital patient were not comprehensive , a court has heard .\na british man worked on bombs planted in iraq that claimed the life of a us soldier , a court has heard .\na rare document ordering allied forces to cease fire following the surrender of nazi germany has sold for # 1,000 .\nnew portsmouth recruit amine linganzi is determined to secure a long-term contract with the club .\nnorth korea says it has successfully tested a submarine-launched missile , which if confirmed would be a significant boost in its arsenal .\nmystery surrounds the fate of more than 100 teenage girls who were abducted from a school in the remote north-east of nigeria .\negg-cellent news the first gentoo penguins chicks have arrived at edinburgh zoo this year .\npolice have released cctv images of a man they want to speak to following a racist assault on a glasgow bus .\na massive video game burial site has been discovered in new mexico , usa .\ntwo men who helped an alleged hit-and-run killer conceal evidence have been jailed .\na woman who was knocked down by a taxi in edinburgh city centre is in hospital with multiple serious injuries .\nthe us will not drop charges against indian diplomat devyani khobragade , the state department has said after her arrest last week led to a huge diplomatic row .\na team of 10 police officers has returned to the greek island of kos to carry out `` house-to-house visits '' in the search for missing ben needham .\nibrahima traore looks set to reject a call-up to the guinea squad for september 's 2017 africa cup of nations qualifier against zimbabwe .\nfourteen football matches have been cancelled after travellers set up camp next to playing fields .\nfour families who had to move out of their homes when a huge sinkhole opened up in their road are still waiting to return after a year .\na left-leaning think tank looked at the tax promises of scotland 's parties and concluded that scottish labour 's plan would raise the most revenue .\nwinger tim visser insists scotland are only thinking about beating south africa and rejects the notion that the side is weakened by 10 changes .\nthe dutch capital amsterdam is following in the footsteps of cardiff in a bid to reduce violent behaviour .\nresearchers at glasgow university have developed a new way to protect farmed salmon from sea lice .\nas the son of the man who helped build the mr whippy ice-cream brand , it may seem that angus thirlwell was destined for a career in confectionery .\nfast bowler steven finn will return to the england side for the third test against pakistan at edgbaston .\nglaciers in the french alps have lost a quarter of their area in the past 40 years , according to new research .\nthe wife of former manchester united and england captain rio ferdinand has died from cancer .\nthree has announced that it has abolished international roaming charges in seven countries .\nsome workers at austins , in county londonderry , say they have been left devastated by the closure of the department store .\nthe uk 's `` green '' bank , which invests in environmentally-friendly infrastructure projects , is to be part-privatised .\nmanager lee clark is urging kilmarnock to build on the first win of his tenure and make sure they are part of an exciting top flight next season .\na conservative am forced to face a ballot of party members has come top of the south wales east regional list for the 2016 assembly election .\ncaptain sam warburton wants a `` 10 % improvement '' in wales ' possible six nations title showdown against england after their `` ugly '' win over france .\nsebastian vettel headed kimi raikkonen in a ferrari one-two in first practice at the spanish grand prix .\na protein in spider venom may help protect the brain from injury after a stroke , according to research .\nafter an indian temple chief recently said he would allow women to enter the shrine only after a machine was invented to detect if they were `` pure '' - meaning that they were n't menstruating - outraged women have launched a #happytobleed campaign on facebook to protest against the `` sexist statement '' , writes the bbc 's geeta pandey in delhi .\na county down solicitor defrauded a bank of # 400,000 to help buy a partnership in a legal practice and an apartment in england .\nhibernian 's neil lennon hopes pre-season results are a prelude to scottish league cup success while motherwell 's stephen robinson will look to improve on results over the summer .\nchurch leaders have appealed to a nationalist residents ' group to call off a protest against an orange order parade in north belfast .\neuropean aircraft maker airbus has cut production of its a380 superjumbo for the second time in a year .\ntwo russian spies are among four individuals indicted by the us department of justice -lrb- doj -rrb- over a huge theft of yahoo user accounts .\nformer nigerian defence minister bello haliru mohammed has been charged with money laundering .\na record-breaking attempt to cross the pacific ocean using a solar-powered plane has been aborted .\nthe teacher who quit her job at a north belfast school after being targeted by online sectarian abuse has spoken publicly for the first time .\ninverness ct manager john hughes admits dundee `` did enough '' to defeat his side at dens park and that his own team did not merit more than a point .\nneil jenkins says he is baffled by some of the criticism of his team 's style in the six nations .\nthe actors ' union equity has hit out at the decision to remove two of mull 's best-known creative directors from their posts .\na pipeline system servicing up to 27 oil fields has been shut down after a leak on the cormorant alpha platform , north-east of shetland .\na county court judge has ruled that airline jet2.com can not delay the payment of compensation due to passengers for delayed flights .\nabout 300,000 counterfeit and illegally imported cigarettes and 330lbs -lrb- 150kg -rrb- of tobacco have been seized in grimsby .\na company is to take over a disused pharmaceutical plant in newcastle , creating up to 100 jobs .\na 51-year-old man has suffered serious injuries after being struck by a car in a hit-and-run incident in north ayrshire .\nthe welsh rugby union have withdrawn an offer of a dual contract for scarlets centre scott williams .\nsamples from the sites of alleged chemical attacks in syria are arriving at laboratories for analysis .\nwales ' football team has departed the country as their euro 2016 preparations reach a climax .\nnewport county have signed winger jack compton and striker sean rigg .\nthere 's no disguising the confidence in jeremy corbyn 's camp about this leadership election .\npartick thistle football club has said it has identified a historical allegation of abuse made against a former club physiotherapist .\nhospital bosses in sussex have apologised after about 850 patients were sent leaflets in error suggesting they might have cancer .\nmore able children are not getting enough attention in wales ' education system , the schools watchdog has said .\nandy fordham is hoping for at least one more chance to play in the bdo world championships .\nradiohead have released the song they recorded to be the theme for the latest james bond movie spectre .\npolice are investigating a complaint about a mural at an edinburgh primary school which features a golliwog .\nwe have now had 16 years of mainstream education for children with disabilities in scotland .\nthe nhs will serve more than 400,000 lunches on christmas day in the uk .\naustralian former tennis player nick lindahl has been banned for seven years and fined $ 35,000 -lrb- â # 28,000 ; a$ 47,700 -rrb- for match-fixing .\nwelsh snowboarder maisie potter says the 2018 winter olympics are on her mind a year away from the games ' start .\nwhat does the government 's counter-extremism strategy really amount to ?\nessex head coach chris silverwood has set his sights on `` the holy grail '' of winning the county championship before their return to red-ball action .\npolice officers faced panic and hostility as they tried to help hundreds of people trapped in a nightclub crush , an inquest has heard .\nwakefield trinity wildcats have named former hull kr boss chris chester as their new head coach .\ngerman skincare brand nivea has apologised and removed an advert that was deemed discriminatory .\nengland suffered a heavy 64-17 defeat by new zealand in the final of the world under-20 championship in tbilisi .\na `` reckless drone operator '' is being sought by police after reports of a `` near miss '' between a drone and plane .\nchildline received a call from children experiencing suicidal thoughts in northern ireland almost every day over the course of last year .\nthe pound has weakened after new polls suggested an increased chance of a vote in the referendum to leave the european union .\nnewport county boosted their league two survival hopes as they struck late to beat play-off contenders mansfield .\ntommy wright is ready for a new season in charge of st johnstone despite his chairman fearing he would leave .\na family of five , including three young children , had to be rescued from a somerset beach after their car got stuck in the mud on saturday evening .\nsouthampton made light work of crystal palace in their all-premier league tie , with a goal in either half sending saints into the efl cup fourth round .\nworcester warriors loose-head prop ryan bower has signed a new contract with the premiership club .\nthe government 's syrian vulnerable persons resettlement programme could be `` at risk '' because of a lack of school places and accommodation , a national audit office report has warned .\nthe belfast giants secured their second elite league win of the weekend by beating nottingham panthers 4-3 away from home on sunday .\ntransport officials from the scottish government have held talks on the possibility of extending the borders railway beyond tweedbank .\nliberal democrat leader tim farron says he does not believe gay sex is a sin , following questions about his views on the subject .\nkent suffered a blow to their promotion hopes as they were bowled out for 230 on the opening day of their penultimate championship game against northants .\nscotland 's scott jamieson shares the lead with sweden 's alexander bjork at the halfway stage of the tshwane open in south africa .\ndoctors and nurses who treated cancer patient ashya king have criticised his parents while speaking out for the first time in a bbc documentary .\nthree men who ran a cannabis factory yards from police headquarters in south wales have been jailed .\nsome may have expected democratic front-runner hillary clinton to swing further left to woo supporters of her democratic rival bernie sanders ahead of the california primary on tuesday .\naustria 's new chancellor has refused to rule out co-operation with the country 's far-right freedom party .\na teenager is `` stable and improving '' in hospital after the prototype powerboat he was training in crashed and overturned in the solent .\npromotion from the conference premier could start luton town 's resurgence to the premier league , says managing director gary sweet .\nafter playing a leading part in the western air campaign that helped to oust the libyan leader muammar gaddafi in 2011 , britain is once again pushing to play a leading role in bringing stability to libya 's shattered society .\nkrystian pearce 's equaliser earned a point for mansfield town after they fell behind at home to york city .\ncanada has launched an investigation into missing and murdered indigenous women that will cost nearly c$ 14m -lrb- # 8m -rrb- more than expected .\nsinger lil ' chris 's death was caused by hanging , an inquest has heard .\nchelsea boss antonio conte and manchester united manager jose mourinho argued during their match last night .\npoliticians in northern ireland are holding talks over the next month to prevent the collapse of the government .\nwarwickshire took command of the battle of division one 's bottom two after jonathan trott had reached the 42nd first-class century of his career .\nthe grand tour presenter richard hammond is vowing to be `` back in action soon '' following surgery on his knee after a car crash in switzerland .\ncardiff blues outside-half gareth anscombe hopes to put his injury problems behind him and achieve wales recognition again .\na man has been airlifted from a mountain in snowdonia after injuring his leg while out walking .\nphilip larkin is to be honoured with a memorial in poets ' corner in westminster abbey .\nengland beat belgium in their final match of the women 's euro 2017 qualifiers , ensuring they finish as group 7 leaders .\nronnie o'sullivan will not be defending his uk snooker championship title in york in november .\na confidential helpline has seen a nearly 90 % increase in requests for help from serving military personnel , an armed forces charity has said .\none of the most controversial claims of rendition involving the uk is being heard by the supreme court .\nindia and nepal say a lack of information from china about glacial lakes and rivers in tibet could hamper their ability to plan for flash floods .\nthe opening night of comic actor john cleese 's first uk tour has been met with lukewarm reviews by critics .\nmore than 400 people have attended a meeting to oppose plans for a supermarket .\na former us professional football player whose career was cut short by disciplinary problems has been found dead inside his california prison cell .\nfrench driver esteban ocon will race for force india in 2017 after agreeing a `` multi-year deal '' , with the team .\nthe families of five men who died when a 15ft wall collapsed on them at a scrap metal yard say they are still waiting for answers a year on .\nchernobyl is regularly labelled `` the world 's worst nuclear accident '' - and with good reason .\na shopping centre in east london that had been owned by two northern ireland property groups has been sold for # 35m .\na former volkswagen executive has pleaded guilty for his role in the german automaker 's scheme to cheat us emissions requirements for diesel cars .\nlove locks on a new river footbridge are being removed because of fears they are damaging the structure .\ntata steel has been ordered to pay # 1m after it exposed five people to toxic substances at scunthorpe steel works .\na scheme to vaccinate badgers against bovine tuberculosis in a bid to tackle the disease in cattle has been launched by the government .\nindia 's bloody maoist insurgency began in the remote forests of the state of west bengal in the late 1960s .\nthe queen is feeling `` better '' despite missing a new year 's day church service at sandringham , her daughter princess anne has said .\na driver `` made a gun sign '' at bbc presenter jeremy vine during an alleged road rage incident , a court heard .\ndefending champion jonathan rea 's run of five successive world superbike victories ended when chaz davies won race two at aragon on sunday .\npalmyra , one of the archaeological jewels of the middle east , is said to be under threat from islamic state -lrb- is -rrb- militants in syria .\na businessman who bought three stun guns and 50 extendable batons on an internet auction site has been remanded in custody .\nscientists have identified 208 new minerals that owe their existence wholly or in part to humans .\nstaff at swansea 's dvla offices will be redeployed rather than face redundancy after changes to the way motorists pay their car tax , a uk transport minister has confirmed .\nengland spinner danielle hazell has been ruled out of the rest of the women 's world twenty20 with a calf muscle strain .\nhenry pyrgos is ready to make the most of what could be his only chance to captain scotland at this world cup .\ngateshead have signed forward jordan preston on a one-year deal following the expiry of his contract at guiseley .\na nursery suggested referring a four-year-old boy to a de-radicalisation programme after he mispronounced the word `` cucumber '' , it is alleged .\ncrawley town have completed the signing of former west brom defender james hurst on a free transfer .\nthe chairman of a meeting in which four councillors were filmed apparently dozing during has described their actions as `` embarrassing '' .\na lifeline has been offered to death row dog stella by an american pit bull sanctuary which has offered to fly her to the united states .\nuk inflation edged up to a 12 month high in january , as a fall in petrol prices eased .\nabout 300 workers are being taken off a north sea platform after a fire left a nearby vessel drifting without power .\na psychiatrist told a murder trial the death of a nine-year-old lincoln boy was one of the most `` callous killings '' he had ever seen .\nformer beatle sir paul mccartney has topped the sunday times rich list of musicians with his # 730m fortune .\nnew guidance has been offered to landowners to help them avoid clashes with dog owners .\nhouse prices in northern ireland continued to rise in the third quarter of this year , but at a slower rate .\nan inquest into the deaths of 11 men at the shoreham airshow is not likely for another year , the bbc can reveal .\nit was only his seventh premier league goal since arriving from germany three years ago , but emre can 's sensational overhead kick was enough for liverpool to beat watford on monday night .\na tube station was evacuated after football fans heading to wembley stadium set off a smoke bomb and fire alarms , transport for london -lrb- tfl -rrb- has said .\nthe international monetary fund -lrb- imf -rrb- has warned that the global economy faces a growing `` risk of economic derailment '' and must take steps to boost global demand .\nwork is set to begin on a pump to protect hundreds of flood-hit homes in rhyl from the tides .\nthe parents of a man alleged to have joined so-called islamic state group have been remanded in custody after being charged with terrorism offences .\nfour men have been charged in connection with a robbery at a lancashire petrol station .\nchina says it is `` seriously concerned '' after us president-elect donald trump expressed doubts about continuing to abide by the `` one china '' policy .\na man has been charged with murder following a fire in fraserburgh in 1998 .\na jury has heard how a `` vulnerable '' man died after a `` sustained attack '' with knives and scissors in his own home .\nthe effects of climate change are already evident in europe and the situation is set to get worse , the european environment agency has warned .\nthe huge golden statue of three liberation soldiers - two men and a woman - form the centrepiece of heroes ' acre , the monument to zimbabwe 's fallen .\nole gunnar solskjaer is fondly remembered by manchester united supporters as the `` baby-faced assassin '' whose goalscoring talents - frequently as a substitute - helped them conquer the premier league and europe .\naustralia batsman david warner has been suspended until the first ashes test match for an alleged attack on england batsman joe root in a bar .\nplans for a film studio on the outskirts of edinburgh have been submitted to midlothian council .\ntunisians vote on 26 october in a parliamentary election , which they hope will see the end of a nearly-four year transition period which followed the ousting of president zine al-abidine ben ali in 2011 .\nthe family of the late former australian cricket captain and legendary cricket commentator richie benaud has rejected australian pm tony abbott 's proposal for a state funeral .\nospreys have signed former scarlets and wales back-rower rob mccusker on a short-term contract as injury cover .\nwhen workers at the seachill fish factory in grimsby first heard about george osborne 's national living wage they were very happy .\nkyren wilson says his record-breaking feat during the `` best match of my career '' in the china open qualifiers was the ideal response to his `` gutting '' display in the german open .\nthe former speaker of the lower house of the brazilian congress , eduardo cunha , has been arrested in connection with a major corruption investigation .\naston villa have signed bristol city striker jonathan kodjia on a four-year deal , for an initial # 11m that may rise to a championship record fee of # 15m .\nexeter have signed australia scrum-half nic white and jersey reds ' captain james freeman on two-year contracts , starting from next season .\ndisney 's latest animation moana dominated the thanksgiving box office over the five-day us holiday weekend .\nirish singer daniel o'donnell was `` relieved '' to be voted out of strictly come dancing at the weekend .\ngateshead leapfrogged wrexham into second place in the national league with a hard-fought win .\na radio station opposed to zimbabwe 's government has shut down after 13 years of broadcasting from the uk .\nst helens boosted their hopes of a top-four finish with a battling super league win over catalans .\nmoors murderer ian brady 's mental health advocate will not face charges over allegations she failed to disclose information about the location of one of his victims ' remains .\ndesigns for liverpool that were never built are going on show at a newly-opened national architecture centre in the city .\nyou might have heard of pirates finding treasure - but real people do n't find it anymore , right ?\na paralysed woman wearing a `` bionic '' suit has completed the great north run , five days after she started it .\na film by valleys directors shot in a language they did not understand with orphaned children has won an award .\nthe market is booming in apps which offer women the chance to monitor the cycles of their monthly periods .\nin our series of letters from african journalists , film-maker and columnist farai sevenzo considers why the un matters to africa .\nthere was a minor sensation in india recently when tata motors launched a car named zica .\npace bowler jake ball has made a `` lively '' return following a winter playing for england lions , says nottinghamshire captain chris read .\nthe liberal democrats have set out funding for education , mental health and transport links as their demands for backing the scottish budget .\na bride-to-be who wanted a `` no-fuss and low-key '' hen party had to be rescued by the rnli after their hire boat ran aground in a river .\nhuman remains found in east lothian are those of missing woman louise tiffney , police have confirmed .\naaron mooy 's spectacular long-range strike earned unbeaten championship leaders huddersfield town victory over struggling west yorkshire rivals leeds .\nbbc radio 5 live presenter darren fletcher is one of six appointments to notts county 's new board of directors .\nthe chairman of one of the uk 's top housebuilders , redrow , has rejected accusations of land hoarding by the industry and called the government 's housing white paper `` disappointing '' .\nthe us has charged seven iranians for allegedly hacking nearly 50 financial companies and a new york dam .\nmoroccan international younes belhanda has joined turkish giants galatasaray from ukranian side dynamo kiev on a four-year deal .\nduring her years as prime minister , margaret thatcher revolutionised the economic fortunes of every person in the uk .\na boy who suffered `` catastrophic brain damage '' after contracting meningitis as a baby is to receive # 4.6 m in compensation from the nhs .\na founding member of the smiths has revealed that re-forming `` was a very real prospect '' - if only for four days .\nbbc sport 's football expert mark lawrenson is pitting his wits against a different guest each week this season .\nthe batmobile used by actor adam west in the original tv series of batman has sold for $ 4.2 m -lrb- # 2.6 m -rrb- at a us auction .\na woman who fears her daughters will be subjected to female genital mutilation in nigeria will not be deported for at least another day , family friends say .\nbritain 's andy murray will be the dominant force in tennis now he is world number one , tim henman says .\nchina 's world number one ma long beat countryman zhang jike 4-0 to win the men 's singles and claim a table tennis grand slam .\nkenya 's rita jeptoo , winner of the boston and chicago marathons , has been banned for two years after failing a drugs test .\neverton defender tyias browning has signed a new two-and-a-half-year deal and joined championship side preston on loan for the rest of the season .\nnorth korea says a us missile strike on syria `` proves a million times over '' that it was right to strengthen its nuclear programme , state media report .\nan ex-guantanamo bay detainee has been arrested in uganda for questioning over his possible role in the killing of a top prosecutor , police say .\nakzo nobel , the owner of dulux paint , has rejected a third takeover offer by us rival ppg industries , leaving the door open to a hostile bid .\na 16-year-old boy has died after he was stabbed in a busy leeds street , prompting a murder inquiry .\nit has been a fantastic premier league season .\nthe one laptop per child organisation has been given a $ 5.6 m -lrb- â # 3.5 m -rrb- grant to develop a tablet version of its educational computer .\na former drug cartel 's pilot has been jailed for trying to kill his unwanted lodger with an axe as he slept .\nvalve is changing the way independent game makers can get their creations onto its steam service .\npolice are trying to trace a woman who is unaccounted for after a fire at her home in the highlands .\nnottingham forest owner and chairman fawaz al hasawi says he is close to agreeing a deal to sell the club .\nwarrenpoint town will hope to continue their remarkable winning run in the premiership when they face dungannon swifts at stangmore park on monday .\nislamic police in the indonesian province of aceh have forced two women to have their marriage annulled and sign an agreement to separate .\na controlled explosion has been carried out at a moray beach after the discovery of old ordnance devices .\ndetectives are continuing to question a former soldier over the deaths of three people on bloody sunday in londonderry .\nthe bbc has pledged to work more closely with the uk 's arts and science institutions to `` make britain the greatest cultural force in the world '' .\nbritish middleweight champion chris eubank jr has offered to give his title belt to retired opponent nick blackwell as a `` goodwill gesture '' .\nan 83-year-old man has been reunited with a vintage car he drove in the 1950s , after its current owner tracked him down .\ncrusaders have brought in former bristol rovers defender mark mcchrystal on a one-year deal .\nthe european space agency has launched a second radar satellite into the eu 's new sentinel constellation .\ncardiff city and bristol city fought out a frustrating goalless draw as the severnside derby failed to ignite .\na british tourist has become the third person this week to die on australia 's great barrier reef .\na senior member of france 's opposition ump party has admitted there were `` anomalies '' in the accounts of nicolas sarkozy 's 2012 presidential campaign .\nwasps ' fiji-born back-row forward nathan hughes has been named in a provisional 45-man england elite player squad for a pre-season camp this month .\none of three `` vital '' potential witnesses to the murder of an elderly dog walker in woodland has been traced , police have said .\na consultation into improvements on the a27 has been dubbed `` a sham '' by council leaders .\nthe uk anti-doping agency -lrb- ukad -rrb- is investigating claims team sky may have breached cycling 's ` no needles ' policy , according to the press association .\nbbc radio manchester is taking a journey across greater manchester 's 10 boroughs to meet some of the most inspiring people who live in the region .\nsouth korea 's education minister has apologised after two faulty questions in the national college entrance exam left thousands of students confused .\na dog has died after falling into the river north esk in angus despite a major rescue effort to save the animal .\na former nurse has been jailed for 18 years for raping and sexually assaulting unconscious women .\nlewis hamilton took pole position for the season-opening australian grand prix as the new elimination qualifying format came in for heavy criticism .\nsaudi king abdullah has sacked one of his most hardline advisers , sheikh abdelmohsen al-obeikan .\nenergy firm edf is raising the price of electricity for the second time this year for customers on standard tariffs .\nthere has been a 16 % drop in the number of students going to further education colleges in northern ireland over the past three years .\na 650ft -lrb- 198m -rrb- power station chimney could be converted into a public viewing tower and restaurant overlooking the hampshire coast , under plans released by developers .\nlabour has said it plans to double the fines that can be levied on people who aggressively avoid tax , if it wins the next general election .\na man who punched and killed his girlfriend just days after he was overheard saying he would kill her has been jailed .\nsorting through a large pile of used clothes and household items , hsiao hsiu-chu is the picture of a new-age buddhist .\nleague one shrewsbury town have signed teenage winger daniel james from premier league swansea city on a season-long loan .\nto the prime minister , it is `` my manifesto '' and theresa may 's programme for government certainly looks and feels rather different from the one david cameron stood on two years ago -lrb- which featured mrs may on the cover -rrb- .\na fatal combination of inexperience , speed and peer pressure led to the deaths of four people in a two-car crash , an inquest has heard .\na british soldier killed in an explosion in southern afghanistan has been named by the ministry of defence .\ntwenty-first century fox has appointed jack abernethy and bill shine as co-presidents of fox news , replacing roger ailes who stepped down last month after a sexual harassment scandal .\nthe football association says baroness sue campbell 's appointment as its new head of women 's football is a `` massive statement '' .\nthe 2017 tour de yorkshire has got off to a flying start in bridlington , yorkshire .\nthe fight over nhs consultants ' private work - and that is exactly what this is - goes back to the very start of the nhs .\ncancer patients have been promised faster access to innovative medicines by nhs england .\nfugitive us intelligence leaker edward snowden has not been given russian travel documents , his lawyer has said , contradicting earlier reports .\na woman has been left uninjured but very upset after two men forced their way into her home and stole valuables believed to be worth thousands .\nleague one side oldham athletic have signed goalkeeper chris kettings on a one-year deal .\na french mp is campaigning for vegetarian school meals to be introduced to help pupils whose religions prevent them eating pork .\n-lrb- close -rrb- : the ftse 100 index of leading blue-chip shares closed the day down by 0.36 % at 6853.40 .\ncampaigning has started 16 days ahead of a fresh general election in spain , with left-wing podemos edging ahead of the socialists -lrb- psoe -rrb- in opinion polls .\nindia have confirmed they will compete in the champions trophy being held in england and wales from 1-18 june .\nindia lost nine wickets for 46 runs as australia staged a remarkable fightback to win the fourth one-day international in canberra .\nwales and ospreys scrum-half rhys webb expects to be back in action sooner than expected following injury .\nbefore any new medicine can be given to patients , detailed information about how it works and how safe it is must be collected .\nraf crewmates of prince william have sent their congratulations to him and the duchess of cambridge after the birth of their son .\nit is the big question swirling around government .\nbabies learn faster if their fathers engage with them in the first few months of life , a study suggests .\nengland boss mark sampson was cleared of wrongdoing after eniola aluko made a complaint to the football association about `` bullying and harassment '' .\npublic parks are at risk of falling into neglect as funding to maintain them comes under pressure , says a report by a committee of mps .\nthe scottish government has announced funding for a initiative to reduce the cost of offshore wind energy .\na call to deselect a ukip member of the welsh assembly has been rejected by the party 's ruling body .\na new public woodland is being created in county londonderry to mark the centenary of world war one .\ncrystal palace claimed their first win of the season as they extended everton 's winless league streak at goodison park to four matches .\naston villa have parted company with former midfielder gordon cowans , a key member of their 1981 title and 1982 european cup-winning teams .\nthe man who tried to stop a right-wing extremist from murdering mp jo cox has been awarded the george medal in the queen 's birthday honours list .\nbefore the parliamentary drama over the first part of brexit is even done , another dramatic twist in this most tangled of plots .\naccrington stanley have signed former exeter city midfielder arron davies on a one-year deal .\nnearly 5,000 calls about organised dog fighting in england and wales have been made to the rspca since 2006 , according to figures released to the bbc .\nexeter went top of the premiership table after a thrilling win over wasps .\nawareness rides are taking place to try and cut the number of people on horseback injured or killed on roads .\ntheresa may has told eu leaders that she wants an early deal in brexit negotiations on the status of britons in europe and eu citizens in the uk .\nmore than 90,000 gcse and a-level results were changed after challenges to grades awarded this summer - the highest on record and an increase of 17 % compared with last year .\nukraine has been trying to break free from its communist past , and the campaign is changing the face of whole cities .\na study to improve the survival rate of unborn twins , with a potentially life threatening syndrome , is under way in bristol .\nhow has the economic crisis affected greeks living in london ?\nat least six people have been killed after a suspected suicide attack at a hotel in somalia 's capital , mogadishu .\nnational league side gateshead have signed versatile notts county defender wes atkinson on a one-month loan deal .\nisraeli pm benjamin netanyahu will change his sleeping arrangements on flights after criticism over the cost of installing a special bedroom on a trip to the uk , his office says .\nthousands of children , including a boy aged five , have been investigated for sexting , the bbc has learned .\nhewlett-packard says it will cut another 25,000-30 ,000 jobs , or 10 % of its workforce , as it plans to split the company in two .\nlewis hamilton says he will `` pray and hope '' mercedes do not introduce team orders in his formula 1 title battle with nico rosberg because it `` robs '' fans and `` takes the joy '' out of racing .\nmercedes put in an imposing performance in first practice at the bahrain gp , setting the pace by nearly two seconds .\nsurgeons in sweden have carried out the world 's first synthetic organ transplant .\npolar bears involved in a scottish captive breeding project are sharing an enclosure and mating .\ncardiff city manager russell slade says qualifying for a championship play-off spot this season would be `` bigger than anything '' he has achieved in his career after passing 750 games in management .\ncaroline garcia and kristina mladenovic gave the paris crowd a home victory to cheer as they won the women 's doubles title at the french open .\nchampionship side oldham roughyeds stunned last season 's challenge cup finalists hull kr to reach the last 16 .\nhampshire collapsed from 84-0 but then declared on 211-9 as somerset took control on day one at southampton .\nthe flue of a coal fire at the home of a woman suspected to have died from carbon monoxide poisoning was blocked , an inquest has heard .\nnato has accused russia of `` aggressive military posturing '' following reports that it has deployed anti-ship missiles in its westernmost baltic region .\npm malcolm turnbull has said there are more urgent issues facing australia than the debate on becoming a republic .\nliverpool manager brendan rodgers described his team 's 2-1 victory against west brom as a `` big win '' after a stuttering start to the season .\na failure to provide education for refugees escaping the conflict in syria risks creating a future generation of extremists , the deputy prime minister of jordan has warned .\nsinn féin leader gerry adams will not face charges in connection with the ira murder of jean mcconville , the public prosecution service has confirmed .\nthe number of families finding themselves homeless over the past year has risen by nearly a fifth on five years ago , official data shows .\nwork has begun to clear up hundreds of tonnes of waste washed up on norfolk beaches during last month 's north sea tidal surge .\na man and woman have been charged with the manslaughter of a five-year-old boy who drowned in a lake .\nmillwall 's play-off charge gathered pace with a win at struggling shrewsbury .\na video showing a chinese police officer 's retirement home for the service 's dogs has touched the hearts of millions in china .\nsunderland have appointed sam allardyce as manager on a two-year contract .\na glut of late goals at griffin park saw honours shared between brentford and cardiff city .\na murder investigation has been launched after a man was found stabbed in manchester , police have said .\nleicester tigers assistant coach geordan murphy says victory in sunday 's anglo-welsh cup final against exeter would be a big boost for their premiership play-off aspirations .\none of the uk 's biggest insurers royal sun alliance is to close its birmingham office , putting 190 jobs at risk .\nthe national air traffic service -lrb- nats -rrb- has said a `` massive '' programme of modernisation is needed to keep up with demand for air travel .\ncritics have rushed to praise new batman film the dark knight rises , calling it `` spectacular '' and `` bleak , black and brilliant '' .\nfor three weeks alexander litvinenko desperately tried to fight off the radiation that was destroying his body from within .\nfive people have been taken to hospital following a crash involving an ambulance and two cars in lincolnshire .\nchechnya 's leader ramzan kadyrov has posted an instagram video showing russian opposition politician mikhail kasyanov in a sniper 's crosshairs .\na woman with multiple sclerosis has said she was refused a taxi to a meeting of the ms society because the journey was too short .\na judicial review has begun over the decision to exclude the former kincora boys ' home in east belfast from a child abuse inquiry being held at westminster .\nchampionship strugglers charlton athletic have reappointed jose riga as head coach on an 18-month deal .\na vicar from greater manchester who was arrested on suspicion of rape has been told by prosecutors that he faces no further action .\nfinancial services group old mutual has said it will split itself into four separate companies following the outcome of a strategic review .\nuefa has charged the football associations of england and serbia in the wake of tuesday 's under-21 match .\nnew liverpool boss jurgen klopp has described the anfield job as `` the biggest challenge '' in world football .\nthe competition regulator is to take action against some online gambling companies which it suspects of breaking consumer law .\nthe most northerly battle fought by imperial rome could be left out of an inventory of scottish battlefields due to uncertainty over the site .\nrenaming cardiff airport in memory of princess diana would boost international recognition , a former councillor has said .\na mining company has been convicted of desecrating an aboriginal site in australia 's northern territory .\nwarning : this article contains information which may be triggering for those with eating disorders .\npolice investigating an `` unprovoked serious assault '' on a teenager outside stonehaven railway station have released cctv images of a woman and man they want to trace .\nmental health services to help women during and after birth have received a # 1.5 m boost from the welsh government .\nplans to build 105 homes on the site of a housing scheme in norwich - which was at the centre of a `` homes for staff '' scandal - have been put forward .\nlabour has accused culture secretary john whittingdale of `` meddling '' after reports he will allow commercial broadcasters to challenge the bbc over peak-time scheduling .\nbbc radio 2 and crimewatch presenter jeremy vine has written a letter to a 15-year-old after a video shared on social media showed the boy being attacked by a group of teenagers in romford , east london .\nthe light-hearted church of the flying spaghetti monster has staged its first legally recognised wedding .\nwinger jordan williams helped end taunton 's fa cup adventure as barrow earned victory in their first-round replay at holker street .\n`` be careful what you wish for '' , the old saying goes - and this is exactly what the russian leadership must be thinking right now .\npolice were called to a primary school in dumfries after a nine-year-old pupil was found with a knife , it has emerged .\nthe national rugby league is being investigated by australian police over allegations of match-fixing .\nthe six team hosts for this summer 's inaugural women 's cricket super league have been announced .\ntaxi-hailing app uber has promised an `` urgent investigation '' into claims of workplace sexual harassment , after a female engineer said misogyny was rife at the firm and women were quitting in droves .\nhampshire were relegated from county championship division one after suffering a six-wicket home defeat by durham in the season 's final game .\nhere are five stories in oxfordshire that held your interest this week .\nwelsh boxer ashley brace will fight for her first professional title in her hometown of ebbw vale on 22 april .\nengland wicketkeeper jos buttler has signed a new three-year contract with lancashire .\nchampions celtic are one game away from an unbeaten premiership season after a dominant victory over partick thistle .\nreigning champion mark selby feels his world championship defence is warming up nicely after a second routine win secured a quarter-final place .\na satire of the booker prize by edward st aubyn has won its own award - the wodehouse prize for comic fiction .\na councillor has denied two counts of making indecent images of children .\nor use the form below .\nglentoran striker nacho novo has had a six-match ban for an attempted head-butt halved to three games by the irish fa 's disciplinary committee .\nengland made the right decision to omit some of their premier league players in the european under-21 championship , says football association director of elite development dan ashworth .\nthis ancient fort could not look more different to the red brick housing estate currently occupying suburbia in monmouthshire .\nprince harry has visited the heartland of guyana and explored its rainforest on day 14 of his caribbean tour .\na police dog stabbed on duty returned to the beat earlier this month after life-saving surgery .\nphilippine president-elect rodrigo duterte has been condemned by media groups for saying some of the many journalists killed in the country had deserved to die .\nthe belfast giants have added experienced forward dustin johner to their roster for the forthcoming elite league season .\nabout 40 jobs are expected to be created when a gym , which closed suddenly in 2011 , reopens after a # 1m refit .\na fire at a disused hospital in edinburgh led to thick smoke being seen across the city .\nyou might have noticed your social media timeline full of pictures like this .\nrates of breastfeeding in the uk are the lowest in the world , an international study shows .\ntop seeds novak djokovic and serena williams remain on course to make history as they both reached the semi-finals at the french open .\nlancashire built a huge lead with the help of luke procter 's century on day two against hampshire at old trafford .\na paedophile accused of conspiring to rape a baby has told a court in bristol the alleged plan was `` pie in the sky '' .\nbritain 's martyn rooney says he would rather receive his beijing olympic bronze medal at the anniversary games than at the world championships .\nan ohio woman has been charged with raping a cab driver at knifepoint before she and another man robbed him , according to police .\nthe northern ireland fire and rescue service -lrb- nifrs -rrb- is attending a gorse fire in alderwood road near clogher and fivemiletown in county tyrone .\nsteve smith will become australia 's test captain after the ashes following michael clarke 's decision to retire at the end of the series .\nlondon mayor boris johnson has said he would not quit as an mp if a conservative government approved a third runway at heathrow .\nformer swansea city boss bob bradley has been named as the first manager of mls team los angeles fc .\na father is preparing for a high court legal battle to give parents the right to take children on term-time holidays .\nan animal rights group is calling for the skegness mascot , the jolly fisherman , to be replaced with a fish .\nan appeal to raise money for syrian refugees who have arrived in the north east of scotland has been launched .\nsaudi arabia 's king salman has issued a series of royal decrees , marking a new shake-up of top officials .\na french-vietnamese dissident blogger has been jailed in vietnam for three years for attempted subversion .\nplans for a traveller site near a resort town have been rejected by councillors .\nmark ronson is to headline camp bestival in 2017 , organisers have said .\nan ofcom review into public service broadcasting -lrb- psb -rrb- in the uk has raised concerns about a fall in spending on drama and children 's programming .\nthe way that offenders sentenced to unpaid community work in england and wales are managed and supervised has been criticised by inspectors .\nmoeen ali 's thrilling , unbeaten 67 cemented england 's stronghold over south africa on day three of the final test at old trafford .\na # 380m hospital which opened 10 years ago may have been constructed without adequate fire protection , a safety review has revealed .\nbritish number one johanna konta is out of the bnp paribas open in indian wells following a 7-6 -lrb- 7-2 -rrb- 3-6 6-3 defeat by world number 19 karolina pliskova .\na life-size bronze statue of comedy character frank sidebottom has been unveiled in his hometown of timperley in greater manchester .\nstriker darren bent was relieved to score with his first touch in six weeks to keep derby county 's unbeaten run intact ahead of the play-offs .\nmotorcycle racer ryan farquhar , who was hurt in a high-speed crash in the north west 200 , is seriously ill and has returned to intensive care , the belfast trust have said .\nan eight-year-old boy , who died after fluid built up in his brain , could have been saved if an optometrist had `` done her job properly '' , a court has heard .\nenvironmental groups in northern ireland are facing huge cuts to their budgets after the money they receive from government was slashed .\none in three councils in england has not replaced a single home sold through the right to buy scheme since 2012 , according to the charity shelter .\nthe uk government 's brexit secretary insists any arrangements to leave the eu would be a `` united kingdom deal '' .\nnewport county 's recovery under caretaker manager mike flynn continued as mickey demetriou 's second-half free-kick saw them beat yeovil 1-0 .\ncheltenham town have signed aston villa and england under-18 defender easah suliman on loan until 2 january .\ndurham women have signed england international goalkeeper rachel laws for the wsl spring series competition .\ncastleford ran in eight tries to win the super league derby at neighbours wakefield and move above their west yorkshire rivals in the table .\na man has died in a crash involving two cars on one of dorset 's busiest routes .\na palestinian court has postponed municipal elections that had been due to be held on 8 october .\nthe grandparents of three children who were orphaned when their parents died of cancer days apart have said they are `` horrified '' by what has happened .\ntributes have been paid to a 24-year-old youth football coach who died in a crash in angus .\nceltic restored their 10-point lead at the top of the table after overcoming inverness caledonian thistle .\nzamalek striker basem morsi has been excluded from egypt 's squad for the 2017 africa cup of nations after falling out with the coaching staff .\nthe discharge of black smelly wastewater at the base of niagara falls has prompted calls for a criminal inquiry .\nspain 's dani pedrosa claimed the 50th grand prix win of his career with victory over championship leader valentino rossi in the japanese motogp .\ngloucester city chairman nigel hughes has urged absent fans to return to the struggling non-league club .\npassengers using a chain ferry on the isle of wight have been warned crossing times will be longer because of new safety measures .\nchinese authorities are still trying to ascertain what exactly caused a potent mix of chemicals to ignite in a warehouse in tianjin late wednesday , triggering blasts that rocked the city .\na collection of 37 paintings by sir winston churchill have been given to the nation in lieu of # 9,404,990 tax , following his daughter 's death .\ntwo bottles of whisky salvaged from the shipwreck that inspired the book and film whisky galore have been sold for # 12,050 after an online auction .\nthe portuguese cabinet has approved rules under which descendants of jews expelled from portugal more than 500 years ago can claim citizenship .\ntwenty full-time firefighters could lose their jobs in suffolk in order to meet budget cuts of more than # 1m .\nleague one side bury have signed goalkeeper paul rachubka on a one-year deal following his release by bolton .\na pay rise `` significantly higher than 1 % '' will be required in future to ensure an `` adequate supply of good teachers '' in england and wales , the school teachers ' review body warns .\na witness in the surjit singh chhokar murder trial has apologised for calling defence qc donald findlay a `` liar '' .\nwales hooker ken owens has backed the decision not to introduce relegation from the six nations .\nplans to expand one of oxford 's park and rides into the green belt have been unveiled .\na body found near strathclyde park in motherwell is believed to be that of a missing teenager , police have said .\ncharges have been dropped against a us woman who spent more than two decades on death row after being convicted of arranging her son 's 1989 killing .\na tata steel management buyout is `` risky '' but the uk government 's offer of help is a good one , sir vince cable has said .\nhousehold boilers should be replaced with large shared boilers to heat multiple homes in scottish cities , according to a group of msps , environmentalists and academics .\ntens of millions of users who visit google sites use a browser loaded with malicious add-ons , research suggests .\nthis is the first time a monster truck driver has completed a front flip in the sport 's history .\nthe number of gps in wales rose overall by 10.5 % in the 10 years to 2014 , according to new figures .\na mayor who resigned after a taxi driver he vouched for was found to have a rape conviction has been urged to leave the council altogether .\nmanchester united defender marcos rojo is a `` clean player with an aggressive nature '' , says manager jose mourinho .\nwes foderingham acknowledged the hurt `` one idiot '' caused scott sinclair but says the fan , who admitted making racial gestures at the celtic player , did not represent the rangers support .\nspiny seahorses may soon be locally extinct at studland bay in dorset , according to the seahorse trust .\nscientists from dundee university have recreated the face of a young man who lived more than 4,000 years ago .\nin our series of letters from african journalists , joseph warungu notices that as election fever sweeps across east africa , politicians are peeping across the borders to see if there are lessons to be learnt from their neighbours : .\nireland number eight jamie heaslip is back from injury to face wales in the only change for the six nations game in cardiff on saturday .\nplanned cuts to library services in a west yorkshire town have been scrapped following campaigns by residents .\na congregation in north yorkshire has spent thousands of pounds building heated bat lofts in an attempt to lure the creatures out of their church .\nbayer leverkusen head coach roger schmidt has been banned and fined for calling an opposing manager `` a nutcase '' during a bundesliga game .\nthe nobel prize for physiology or medicine has been split two ways for groundbreaking work on parasitic diseases .\na former hungarian policeman living in the uk has been jailed for almost nine years for sexually assaulting a child , in a case a judge said showed `` extraordinary levels of perversion '' .\nan israeli arab wanted for shooting dead three people in tel aviv on 1 january has been killed by security forces in northern israel .\na # 690m cancer care contract in staffordshire is expected to be awarded to a consortium including private firms .\na charity that rescues a protected species has said it has taken 600 calls in what has been one of its busiest ever years .\nthousands of people gathered on calton hill in edinburgh on thursday night for the beltane fire festival .\nfour israelis have been charged over the beating of an eritrean migrant who was mistaken for a gunman during a militant attack last october .\nfour men have admitted conspiracy to burgle in connection with the hatton garden safety deposit box raid over the easter weekend .\ndevon-based surfing goods and forecasting firm magicseaweed has been bought by an australian company as part of a # 7m deal .\nmatch reports from the weekend 's scottish games .\nthe home secretary has vowed to `` systematically confront and challenge extremist ideology '' as she detailed new curbs on those who `` spread hate '' .\nmost riders are unhappy about plans to have horse racing on good friday , says the chief executive of the professional jockeys ' association .\na teenager whose mother was the first baby born on a loganair plane has become a member of the cabin crew .\nforwards chris morgan and alex cheesman have signed new two-year contracts at the cornish pirates .\nformer captain iker casillas and chelsea players cesc fabregas and pedro have been left out of new spain manager julen lopetegui 's first squad .\na double-decker bus has burst into flames outside a train station in central london .\nthree people arrested after a man was found unconscious following a suspected assault in brighton have been released without charge .\nscientists have discovered a new type of dinosaur .\nthe certificate of irish heritage scheme , which officially recognises people of irish descent around the world , is to end due to a low uptake .\nthe man proposed as myanmar 's new finance and planning minister has a fake degree in finance , it has emerged .\nthe number of videos viewed every day on messaging app snapchat has tripled since may this year to six billion .\nsurely some of the first rules of wooing are : if you 're going to do it , do it properly .\na top venezuelan military commander says the security forces have retaken control of the streets in the western city of san cristobal .\npolice have launched a murder inquiry after a 51-year-old man was killed in his home in glasgow .\nscotland 's senior prosecutor has said it is `` vital '' the uk remains a member of the european criminal justice agencies after brexit .\nformer heptathlete jessica ennis-hill has formally been made a dame during a ceremony at buckingham palace .\nthe coach of a primary school football team has applied for the england job , saying he is the `` perfect candidate '' to succeed roy hodgson .\nisraeli prime minister benjamin netanyahu has condemned the european union 's `` crazy '' approach to dealing with his country .\nvideo footage has emerged of an indian man fighting a sword-wielding attacker to save the life of a shopkeeper .\nformer england winger ugo monye believes denny solomona has a good chance of playing for the national team when he becomes eligible .\na man driving a private ambulance has died in a crash with a double decker bus and a car in north yorkshire .\nthe phrase `` one man 's loss is another man 's gain '' could not be more apt than in the case of cheick sallah cisse .\na motorist was driving `` like a lunatic '' when he caused a crash which killed two teenage passengers and severely injured two others , a court heard .\nan emergency call handler has been sacked after firefighters took more than 90 minutes to reach a fatal blaze .\nscunthorpe united have signed free-agent midfielder isaiah osbourne on a three-month deal .\nfootage of bargrennan bridge : dabby mccreadie .\nthe former leader of glasgow city council , gordon matheson , is to leave the authority to become a visiting professor at strathclyde university .\nliverpool right-back ryan mclaughlin has joined aberdeen on loan until january .\nboxing promoter eddie hearn hopes to give katie taylor her american debut as a pro fighter in new york in july .\npolice will be deployed to a village in mexico after an invitation to a girl 's birthday party went viral and 1.2 million people said they would attend .\nthe dup 's edwin poots has defended comments he made that party members have to hold their noses when doing business with sinn féin .\njames dasaolu ran a wind-assisted 9.93 seconds to win a thrilling battle of the british sprint kings and secure his place at his second olympic games .\npaul smith lost a third attempt to win a world title as tyron zeuge retained his wba world super-middleweight belt with a unanimous points decision .\ndetectives investigating the murder of a man who they believe was attacked with an axe have renewed their appeal on the first anniversary of his death .\nthe ministers of the new northern ireland executive will be appointed next wednesday , deputy first minister martin mcguinness has said .\nan unprecedented overspend by hospitals and other nhs trusts is expected to be announced later by health bosses .\na cemetery 's unique victorian reception house which stored coffins to stop poor people keeping bodies in their homes , has been given protected status .\na five-year-old girl has been found with her dead father in a crashed car which had been in a ditch `` for some time '' .\nthe first images acquired by a new uk-built , high-resolution , earth-observation constellation have been publicly released .\nunwaith eto fe wnaeth cymru fwynhau rhaglen cân i gymru nos sadwrn 5 mawrth , ond cyn y darllediad byw roedd rhaid i lawer o bobl weithio , ac ymarfer , yn galed drwy ' r dydd .\nformula 1 bosses have a set a deadline of 1 july for a decision on the introduction of cockpit head protection for the 2017 season .\ndan evans is one win away from the australian open main draw after beating israel 's amir weintraub 7-5 6-7 -lrb- 4-7 -rrb- 6-2 .\nduring his nine years at the helm of poundland , says chief executive jim mccarthy , the discount chain has sold a product at a loss just three times .\nthe us has chided russia for what it calls an `` unfortunate decision '' to send missiles to the syrian government .\na police officer is being treated in hospital after a car was allegedly driven at him in east kilbride .\nthe historic city of groningen has got all the things you 'd expect from somewhere picturesque and dutch - canals , bridges and bikes .\nthe lebanese authorities have foiled an attempt to smuggle a huge quantity of drugs to saudi arabia , officials say .\nthey fought against hitler and helped rebuild britain - yet the contributions of thousands of men and women from caribbean colonies during world war two have been largely forgotten .\nuk sport says it expects to increase funding for winter sports following great britain 's record-equalling winter olympic performance in sochi .\ndutchman dylan groenewegen claimed the opening stage victory in this year 's tour de yorkshire .\nan independent school in hampshire has confirmed it will close because of `` financial pressure '' .\nformer england fast bowler chris tremlett has announced his retirement from all forms of cricket .\na fundraiser who helped a community after four people died in a mill fire has been made an mbe in the queen 's birthday honours .\nnew global rules to prevent banks that are `` too big to fail '' from being bailed out by taxpayers have been proposed .\none of the more unusual titles at e3 , the worlds largest video games exhibition held each year in los angeles , is konami 's lucha libre aaa : heroes del ring .\nnational league side forest green rovers have signed defender ben jefford on an 18-month contract from welling .\nthe remote archipelago of st kilda is home to the uk 's highest sea stacks .\nbritish vogue has confirmed edward enninful as its first male editor .\nsri lanka batsman kumar sangakkara made 18 in his final international innings before retirement .\naustralian prime minister tony abbott has said the refugee and migrant crisis in europe is proof of the need for tough asylum policies .\nbritish and burmese authorities could work together to find 20 spitfires buried in burma at the end of the world war ii , officials say .\nus secretary of state hillary clinton has voiced support for a `` full transition to civilian rule '' in egypt , at the start of a visit to cairo .\nsurrey took less than an hour on the final morning at the oval to wrap up a season-opening victory over warwickshire by an innings and one run .\npolice say they have reached the end of the road in their search for a classic car thought to have been stolen during the last 20 years .\nthe poisonous memoirs of a right-wing adviser at the elysee palace are proving deeply embarrassing for ex-president nicolas sarkozy , just as he gathers strength for a planned presidential comeback .\nulster bank is working to restore payments and direct debits that were delayed by a computer glitch involving the rbs group of banks .\nresearchers at the large hadron collider have detected one of the rarest particle decays seen in nature .\nhouse builder barratt has announced plans to create 1,420 homes at 14 new sites across scotland this year .\nugandan troops will start leaving south sudan by the end of this week , according to the head of the ugandan force in the country .\na misconduct hearing has been told there was `` no evidence '' two midwives knew a woman was ill days before the birth of her son who later died .\nmanager brian reid has left stranraer by mutual consent , the scottish league one club have announced .\na large explosion has struck a police headquarters in the mainly kurdish city of diyarbakir in south-eastern turkey .\nthere has only been one time when i 've been forced to remain indoors in the evening whilst covering a sporting event .\nsouth africa comfortably held off scotland in newcastle to take over at the top of world cup pool b.\ndeportivo la coruna have sacked boss victor sanchez after a disappointing end to their season in la liga .\niceland 's parliament is examining a bill that would require companies to prove they offer equal pay to employees .\ninspectors have called for major improvements at two privately-run elderly care homes after finding problems during recent visits .\na man has been arrested following an 11-hour stand-off with armed police in south london .\na scottish architect who had been reported missing in india is understood to have been found .\na prolific burglar has been banned from all of manchester 's back alleyways .\ntorquay united boss kevin nicholson says none of the money from eunan o'kane 's move to leeds from bournemouth will go to the playing squad .\nrangers are through to their second cup final of the season after beating celtic 5-4 on penalties following a 2-2 draw after extra time .\ngymnast brinn bevan believes he still has a `` small chance '' of competing in the olympic games in rio next summer .\neight men have been arrested on suspicion of drugs offences after three vehicles were stopped on the m6 motorway .\nengland all-rounder ben stokes says he has grown up as his side prepare to start their one-day series against west indies in antigua on friday .\nengland football legend stuart pearce is set to finally make his debut for a team dubbed `` the worst in the uk '' .\ndiwali celebrations in the indian capital delhi have seen air pollution rise to hazardous levels after many firecrackers were set off .\nwales have called up uncapped 18-year-old ospreys wing keelan giles for the rest of the autumn international series following an injury to hallam amos .\nindia completed a series win over sri lanka with a crushing victory by an innings and 53 runs in the second test in colombo .\na pensioner used a mini camera to secretly film women 's bare legs in a falkirk shopping centre , a court was told .\na man who was tortured and raped during an attack by two of his former friends in a belfast flat has said he thought he was `` going to die that night '' .\nscottish ministers are being asked to clarify whether police scotland `` spied '' on journalists and their sources .\ngsk has just announced emma walmsley will be its next chief executive taking the total of women running ftse 100 companies to seven .\nthe first application to explore for shale gas in the east midlands has been submitted to a nottinghamshire council .\ndavid hockney 's assistant died after drinking acid at the painter 's home , an inquest has heard .\nsonar equipment has been used across duddingston loch in the last few days in the search for a missing student .\na paper manufacturer has applied to build a new plant to generate electricity and steam for its mill in west norfolk .\na chatbot programmed by a british teenager has successfully challenged 160,000 parking tickets since its launch last year .\nlow pay and scarce hours are pushing working families and young people into poverty in wales , a new report claims .\nmark ronson and bruno mars have given the gap band a writing credit on their huge hit uptown funk , due to its similarities with their 1979 track oops up side your head .\nlabour 's tristram hunt is calling for a cross-party review to work on long-term changes to england 's exams and curriculum for 14 to 19-year-olds .\nalmost 150,000 cruise ship passengers are scheduled to visit the bailiwick of guernsey during 2013 .\nireland eased to seven-wicket win over zimbabwe to top their women 's world twenty20 qualifying group and set up a semi-final against scotland .\nthe results have been published for more than five million gcse entries - which will be five million different stories of exam dreams , dramas and disasters .\nyoung runners at olympian mo farah 's former athletics club have been banned from training at windsor great park in preparation for cross country races .\nup to 70 child migrants from the jungle camp in calais are expected to arrive at a temporary home office `` respite facility '' , the bbc has learnt .\nmae cabinet cyngor sir powys wedi pleidleisio o blaid cynllun i gau ' r ffrwd gymraeg yn ysgol uwchradd aberhonddu .\nrussell brand says he wants to sue the sun newspaper .\nleague one side peterborough united have parted company with manager graham westley following saturday 's 2-0 defeat by scunthorpe united .\npeterborough united manager grant mccann has backed brad inman to recover from the broken leg he suffered with `` six seconds left of training '' .\nstafford shire hall is to become an outpost of the university of wolverhampton .\nnottingham forest manager mark warburton says he wants a much smaller squad in the championship next season .\nlithuania 's ruta meilutyte broke the 100m breaststroke world record in the world championship semi-finals .\nsales and profits slipped at boeing last year , driven largely by lower deliveries of its military aircraft .\na plane has made an emergency landing at edinburgh airport after having issues with its nose wheels .\na total of 282 secondary schools in england are deemed to be failing by the government , as they have not met a new set of national standards .\nhistory will be made this weekend when wales ' first female bishop is consecrated - but women in the church have had to overcome many challenges over the years in order to reach this significant moment .\nthe deep , growling roar of the howler monkey may hide reproductive shortcomings , according to biologists .\nprime minister tony abbott has reminded australian politicians they can not `` get away with exploiting the rules '' on expenses .\nthe girlfriend of a man who died on a stretch of road where more than 50 people have been killed or injured in the last five years has called for tougher speed restrictions .\nan investigation has begun into the cause of a fire which has severely damaged a plastics factory in cambridgeshire .\nthe greek prime minister has said sanctions imposed on russia over its actions in ukraine are not productive .\nworld number one lydia ko hit a one-under-par 70 to remain in contention to win her third consecutive women 's major at the women 's pga championship .\npoliticians , religious and civic leaders give their reaction to the bin lorry crash that killed six people in central glasgow .\nag barr is to halve the amount of sugar in its leading irn bru brand , ahead of a government crackdown on the fizzy drinks industry .\nmichael ball is to host this year 's olivier awards , it has been announced .\ngatwick airport says it has had the busiest year in the airport 's history , with passenger numbers increasing 7.8 % to 38.7 million .\na drug dealer who stabbed a man to death in his own home and then returned days later to burgle the property has been convicted of murder .\na portrait of a well-known cheltenham grocer which was painted onto his shop door in the 1960s could be restored .\nleague two side luton town have signed charlton athletic striker joe pigott on loan until the end of the season .\nbuckingham palace has `` emphatically denied '' prince andrew had sexual contact with a woman who claims she was forced to have sex with him under age .\neuropean taekwondo champion lauren williams says she feels under pressure to keep up her winning record .\nartist ai weiwei has accused lego of `` censorship and discrimination '' after the company refused to allow him to use its bricks in a new exhibition .\nan independent review is to be held to learn lessons from a case of alleged abuse at care homes in south wales , first minister carwyn jones has announced .\ndarren stevens ' unbeaten 107 gave kent the upper hand on day two of their game against division two champions essex .\nsupermarket plant sales are reducing customers ' choice , says gardeners ' world presenter monty don .\nitaly 's olympic chiefs want 26 of the country 's athletes banned for two years over alleged doping offences .\nthe first full-length trailer for the 24th james bond film , spectre , has been released online .\nthese days there is no shortage of technology designed for the older generation - from hearing aids that use gps data to work out where the wearer is located and adjust volume accordingly , to toyota robots that can carry the elderly around , and wireless sensors on mats that can alert relatives if someone stops moving around the house .\nrangers football club has raised half its target investment from fans , following the deadline for its share offer .\na man hoping to build an 224ft-high welsh dragon tower on the english border will ask councillors for an extra five years to start the project .\na football club is claiming to be the world 's first to adopt a vegan match day menu after removing cows ' milk from its hot drinks .\na 32-year-old man is being questioned in connection with the murder of a woman whose body was cut up and dispersed in the wicklow mountains .\nscottish cup holders hibernian demolished bonnyrigg rose at tynecastle to ease into the fifth round .\npolice are likely to apply for extra powers to stop and search people at this weekend 's champions league final .\nfootball supporters have vented their anger after crowds of them were left stranded outside a premier league stadium during an fa cup match .\nfirst-choice goalkeeper jon mclaughlin is among five players being released by championship club burton albion .\na man died after trying to rescue a day-tripper from the sea a month before five young friends died at the same beach , an inquest has heard .\noffice for national statistics -lrb- ons -rrb- staff in newport are anxious that a government review will lead to jobs leaving south wales , a union has said .\nministers are providing # 4m funding for a planned new surfing centre and `` wave park '' in snowdonia .\na woman has been charged in connection with the death of an 84-year-old grandmother who died in a collision five months ago , police said .\npolice have cordoned off a shetland beach after a `` highly toxic '' distress flare washed up on the shore in the recent bad weather .\nassistant coach kenny murray says there is a growing belief at glasgow warriors that they can retain the pro12 title .\ncameroon 's confederations cup campaign is over after a 3-1 defeat by germany in their final group b game on sunday .\nengland 's justin rose hit a three-under-par 69 to trail leader rickie fowler by two strokes after the third round of the wells fargo championship .\nengland are still searching for their `` perfect game '' despite clinching a 3-0 test series victory over australia , captain dylan hartley says .\na man accused of robbery and assault was shot and killed in a salt lake city court after he lunged at a witness giving evidence .\na failing health trust has been placed in special measures , meaning all cumbria hospital trusts are now getting extra help to boost performance .\nurgent action is needed to prevent a shortage of secondary school places in a third of local authorities in england within five years , councils say .\nthe red arrows aerobatic team will be `` around for a while yet '' , defence secretary sir michael fallon has said .\nthe owners of an audio manufacturing factory in north lanarkshire have confirmed that the plant is facing closure , with the loss of 70 jobs .\nreaders of tabloid papers have smaller vocabularies than people who do not read newspapers , suggests a study .\none of northern ireland 's fuel distributors has admitted breaching health and safety legislation in connection with the death of one of its employees .\nthe queen has been spotted having an evening meal at an edinburgh pub .\nthe price of carbon hit a record low in europe on monday as the over-supply of emissions permits during the global economic downturn continued to undermine the carbon market .\nthe price of oil has gone above $ 50 a barrel for the first time in 2016 as supply disruptions and increased global demand continue to fuel a recovery .\nthe man who died when his light aircraft crash landed at newtownards airfield , county down , on tuesday has been named locally as stephen mcknight .\na final decision on the # 59m redevelopment of la mare de carteret schools will not now be made until may , guernsey 's policy council has ruled .\na peregrine falcon found dead in gwynedd was poisoned , police have confirmed .\nolympic great michael phelps swam a third 2015 world-best time in as many days in the 200m individual medley at the usa national championships .\nparents of babies with milk and soya allergies could face charges of up to # 112 per week to feed their children in london , it has been claimed .\nthe crisis in venezuela shows little sign of easing up .\nchelsea manager antonio conte has questioned tottenham 's ambition , suggesting they have lower expectations than their premier league title rivals .\nnorthern ireland 's amy foster safely progressed to the women 's 100m semi-finals at the commonwealth games but jason smyth and leon reid bowed out of the men 's sprint event .\nthree generations of women from the same family have been threatened during an armed robbery at a house in west belfast .\ndesigns for a dedicated activity park along the dorset coast have been unveiled .\na 62-year-old australian man , who says he survived without water by eating ants while lost in the outback for six days , has spoken of his ordeal .\nplanning bosses have raised concerns over a stirlingshire tennis and golf centre proposed by judy murray and colin montgomerie .\njordan spieth is on course to win his first pga tour title in over a year as he takes a six-shot lead into the final round of the at&t pebble beach pro-am .\none direction have topped the uk singles chart with their new single drag me down .\nit 's a big day for plastic money in england and wales : the new # 5 polymer note has been released by the bank of england .\nprime minister david cameron says wales must have a bigger say over its affairs in the wake of the scottish independence referendum .\nforest green rovers goalkeeper sam russell has signed a new one-year deal .\nshay logan says derek mcinnes ' decision to turn down sunderland - rather than his own family situation - persuaded him to extend his stay with aberdeen .\nresearchers say they are closer to developing a vaccine to give life-long protection against any type of flu , after promising trials in animals .\nnearly 60 % of all syphilis cases reported in england were in london , it has been revealed .\nelections in zanzibar have been annulled for not being free and fair , the electoral chief on the tanzanian archipelago has announced .\nit 's hard to believe that in 2012 england were the top ranked test team in world cricket .\nrelatives of 24 rubber plantation workers killed by british troops almost 70 years ago in malaya have lost an appeal for an official investigation .\nthe owner of a 17,000-tonne oil rig which ran aground on the western isles last year has paid the maritime and coastguard agency -lrb- mca -rrb- # 400,000 .\nthe scottish town which ` won ' two carbuncle honours for its ugly shopping centre has scooped best town at the scottish design awards .\nthe night tube will lead to a rise in sexual offences and rowdy behaviour on the underground , according to an internal risk assessment by transport for london .\npoland 's broadcasting market is the largest in eastern and central europe .\nfree trade deals with developing countries will continue post-brexit , the government has said .\nsouth korea 's president has promised to raise the sewol ferry , as the nation marks a year since the disaster .\none tenth of the workforce at a welsh government-funded careers service is facing redundancy , according to unison .\nok , so mark wright has been named lord sugar 's new business partner but we all know that the best thing about the apprentice is n't the people who succeed .\ninstant messaging apps must store data about iranian users inside the country , iran has ordered .\na man arrested last week for shooting two indians at a kansas bar allegedly told a barmaid he had just opened fire on some `` iranian people '' .\nthe condition of mental healthcare inside los angeles county jails is so poor that it is unconstitutional , the us justice department has said .\ncyber monday is expected to add to one of the busiest weekends for online shopping , following black friday .\ngale force winds of up to 70mph and heavy rain will arrive in wales on monday evening , said the met office .\na welsh lifeboat has been sent to lesbos to help people trying to ensure the safety of refugees and migrants arriving by boats on the greek island .\nwork to repair parts of a landmark castle on the hampshire coast has begun .\nin capital cities around europe there is a smell of blood in the water - a sense that the uk 's financial services industry has been wounded by brexit and that presents a chance to take a bite out of its dominant position .\ntony bellew still retains hope of winning a world heavyweight title but says he will not fight fellow briton anthony joshua .\norganisers who brought the all-ireland fleadh cheoil to londonderry will bid for the festival to return in 2017 .\nconor sammon has agreed a three-year contract with hearts as the striker prepares to leave derby county .\nthe new series of bbc one 's drama atlantis starts on saturday night , but fans are being warned to gear up for a very different show .\nhe jointly came up with the theory of evolution by natural selection , corresponded with the great and good of society , and was given the highest honour possible from a british monarch .\ndavid de gea 's # 29m move from manchester united to real madrid has collapsed because the necessary paperwork was not submitted in time .\n`` you got ta roll with it , '' blares out liam gallagher as the oasis hit combines with the rain thundering onto the roof of manchester city 's indoor academy pitch .\nit is very hard not to be overawed when you step out on to the pitch at the bernabeu for the first time and look around you - the stadium just keeps going up and up for what feels like forever .\nso ukraine confounded the bookmakers and eurovision commentators who had been convinced that russia - or possibly australia - would win .\njack baird scored a dramatic last-minute goal to preserve st mirren 's 100 % record in this season 's betfred league cup .\nlabour leadership contender andy burnham has told supporters he has an `` outside but realistic chance '' of winning the contest .\nhigh-status roman floors discovered by archaeologists during building work will go on permanent display , it has been confirmed .\nneil patrick harris ' debut turn as oscars host was one of the most forgettable for years - although one moment will define him forever .\na female polar bear at a scottish zoo has been temporarily put off limits to visitors as a precaution in case she is pregnant .\na man who stalked singer lily allen for seven years `` needs help , not jail '' , according to his family .\nopposition parties on northampton borough council have asked for greater clarity on its plans to sell a 4,000-year-old egyptian statue .\nscott quigley scored the pick of the goals as the new saints brushed livingston aside to reach the semi finals of the scottish challenge cup .\nwakefield trinity wildcats prop mickael simon has signed a one-year contract extension , keeping him at the club until the end of the 2017 season .\ncatalans dragons will be without hooker paul aiton for up to six weeks after he tore a pectoral muscle on his debut , in a defeat by wigan warriors on friday .\nformer labour leader ed miliband has issued a `` call to arms '' , urging young people to register to vote in next month 's eu referendum .\nwalmart has announced a partnership with the chinese e-commerce firm jd.com to help revive the us company 's struggling website yihaodian .\na province in pakistan has become the first in the largely muslim country to give hindus the right to register their marriage officially .\ntransport group stagecoach has placed orders for about 480 buses and coaches in deals worth a total of # 97m .\niain duncan smith is resisting attempts by some in downing street to water down plans to curb benefits for eu migrants as part of the uk 's eu reform demands .\nformer bhs owner sir philip green will meet the pensions regulator by the end of the week to try to secure a deal over the collapsed retailer 's pension fund , the bbc has learned .\nsince their impending merger was announced in january , there has been remarkably little comment about the huge proposed deal to combine essilor and luxottica .\npara-athlete abdullah hayayei died after a metal throwing cage fell on him during training .\nnew york has passed a bill that creates rules for times square 's costumed performers , after tourists and business interests complained that the characters were becoming a nuisance .\njapanese phone messaging app operator , line , has said it plans to list its shares in both tokyo and new york .\npolice in the us state of texas have arrested a truck driver whose vehicle was found in a walmart car park with eight people dead in the back of it , two of them children .\ndavid cameron has said the uk continues to recognise chinese sovereignty over tibet amid reports of a rift with beijing over the issue .\nthe nhs in england has met its four-hour a&e waiting-time target for the first time since september .\njarlinson pantano won stage 15 of the tour de france as defending champion chris froome kept the yellow jersey .\nairport workers in chile have agreed to end a four-day strike that led to major disruption .\nsecurity firm g4s has reported a # 4m rise in profits to # 185m for the first half of 2015 due to new contracts and growth in emerging markets .\noxford-born spaniard marcus walz produced a remarkable finish to take the olympic kayak 1,000 m title at the lagoa stadium .\nthousands of elderly people are missing out on free personal care because of delays to assessments and care arrangements , a charity has claimed .\nthe uk 's premier prize for science books has been won by gaia vince - the first female writer to claim the award outright in its near 30-year history .\nthe chicago cubs will be hoping to end the most infamous run of failure in us sport when they face the cleveland indians in the world series , which starts on tuesday .\nfirst derivatives , the financial technology firm based in newry , county down , made # 12.5 m profit before tax for the year to the end of february .\nthe indian parliament has passed a bill which allows juveniles between 16 and 18 years of age to be tried as adults for serious crimes like rape or murder .\na student who found anglo saxon jewellery of `` national significance '' said the discovery has made three years exploring the field worthwhile .\nliverpool have formally rejected a second bid from manchester city for england forward raheem sterling .\nwales coach warren gatland hailed shane williams ' late try in their defeat by australia as a fitting end to the player 's career .\njohn whittingdale is to take over from sajid javid as uk culture secretary , prime minister david cameron has said .\na crew of 10 people , and their dog , are trying to be the first to sail yachts to the north pole .\nengland number eight billy vunipola is set for a shock early return to action for his club saracens against newcastle on sunday , boosting his hopes of a 2017 six nations call-up .\na man has been charged with wasting police time following inquiries into an alleged assault with intent to rob in stranraer .\nfour-time olympic medallist louis smith may face `` suspension or expulsion '' by british gymnastics over a video in which he apparently mocks islam .\nluis suarez 's four-month ban for biting an opponent has been upheld by the court of arbitration for sport -lrb- cas -rrb- .\ntwo men accused of helping a us tourist hunt and kill zimbabwe 's most famous lion have been released on bail .\na report about a woman who said she had repeated plastic surgery after her husband divorced her because she had a `` fat face '' has sparked outrage among china 's online community .\na syrian national has been arrested in germany accused of war crimes involving the murder of dozens of civil servants .\nyeovil town ladies forward annie heatherson has signed a new contract with the women 's super league one club ahead of the 2017 wsl 1 spring series .\na teenage boy stabbed to death in a `` senseless '' and `` cowardly '' attack in east london has been named by police .\nulster centre stuart mccloskey has signed a contract extension which will see him remain at kingspan stadium until the summer of 2019 .\na hospital has apologised after a 90-year-old woman was left on a trolley for 11 hours without food or water .\ntributes have been paid to a `` gentle giant '' who died while swimming near a waterfall in a north wales village .\n`` please do n't go ! ''\niraqis go to the polls on 30 april in parliamentary elections overshadowed by violence and sectarian tension .\nphotographs celebrating the success of world record paralympian richard whitehead - dubbed britain 's bladerunner - have gone on display .\nreading winger jobi mcanuff says he hopes to end his playing career at the championship club .\nams gather in the senedd on tuesday for arguably the most important announcement in the assembly calendar - the budget .\nsports direct boss mike ashley has been threatened with being in contempt of parliament after failing to appear in front of a committee of mps .\nthe former alliance leader lord alderdice has said theresa may must not view herself as being `` prime minister of england and a few add on bits '' .\nexperts are warning that plans to allow farmers to clear water courses on their land could make floods worse in towns .\nsome of the world 's top surfers have been riding massive waves generated by the atlantic storm that hit scotland .\nlifeguards will patrol a popular beach on the south coast this summer after seven men drowned last year .\nscuba divers have inadvertently discovered the largest trove of gold coins ever found off israel 's mediterranean coast .\nengland coach eddie jones will name his 45-man elite player squad squad ahead of the autumn tests at 10:00 bst on friday .\nfree sanitary products for those who can not afford them have been promised by the green party of england and wales .\npatients needing surgery to reconstruct body parts such as noses and ears could soon have treatment using cartilage which has been grown in a lab .\na group of performing christmas elves has been left `` traumatised '' after being attacked by a gang of teenagers .\nthe us justice department says it has charged an american citizen with conspiracy to provide material support to al-qaeda militants in pakistan .\nsouth african president jacob zuma has ruled out any increases in university tuition fees for next year after more than a week of protests by students .\nsearch and rescue helicopter crews based at inverness airport have completed 500 missions since the start of their duties in april last year .\nfestival-goers are being invited to have a go on what is claimed to be the world 's largest bouncy castle .\nthistlecrack ended the three-year reign of reve de sivola to cruise to an impressive victory in the grade one long walk hurdle at ascot .\nvolkswagen says it will not release its results nor hold its shareholders ' meeting on time , as it needs more time to work out its accounts as a result of last year 's emissions crisis .\nsouth africa is the stuff of dreams for the intrepid traveller .\nporto shocked bayern munich to take a first-leg lead in an entertaining champions league quarter-final tie .\na man has been jailed for life for the `` motiveless and brutal '' murder of a brighton man in his city centre flat .\nfresh negotiations have taken place with the city council to end the impasse over aberdeen fc 's proposed new stadium , club chairman stewart milne has said .\ndown ended a run of 14 straight defeats in competitive games stretching back to april 2015 as they earned a 1-13 to 0-14 win over meath in division two of the football league .\na study of irish traveller genetics has suggested that they split socially from the settled population much earlier than thought .\nbolton wanderers goalkeeper mark howard could be out for 12 weeks with a broken thumb and ligament damage suffered in their league one loss at peterborough .\na flintshire man has admitted telling an american crisis line he was planning to kill himself and take as many police with him as he could .\nsinger and actress liza minnelli has cancelled two upcoming appearances in london and sheffield .\nfootage from istanbul shows the aftermath of an attacker opening fire on journalist can dundar , outside the court where he is on trial .\nlibya have withdrawn as hosts of the 2017 african nations cup finals as ongoing fighting in the country delays plans to build new stadiums for the 16-team tournament .\nnew zealand 's corey anderson is to fly home from their current tour of england for treatment on a back injury .\nas president obama finished his speech to the african union -lrb- au -rrb- in addis ababa last month and stepped off the stage , a tempest whipped up outside .\na detective serving with the metropolitan police has been jailed after admitting downloading hundreds of pornographic images of children .\na conservation charity has asked the scottish government to protect a family of beavers found to have been released illegally in a part of the highlands .\ncastleford tigers beat local rivals wakefield trinity to clinch the league leaders ' shield .\npolice have cleared hundreds of roma people from a slum-like camp built on a disused rail line in north paris .\nmagic mike star channing tatum is to play the mermaid in a remake of 1984 's film splash , taking the role played by darryl hannah , according to reports .\nwith a growing appetite for chicken in africa , bbc africa 's kim chakanetsa investigates why the continent does not produce enough birds to feed itself .\nbritish driver justin wilson has died after being struck by flying debris and suffering a serious head injury in sunday 's pocono indycar 500 race .\nscotland 's josh taylor has all the elements it takes to make it to the top in boxing , says trainer shane mcguigan .\nfast bowler mitchell johnson says australia 's attack can reopen the scars of england 's batting struggles from their 5-0 ashes whitewash down under .\nan official report into the impact of the london 2012 cultural olympiad says it achieved a `` huge '' level of public engagement .\nin a sport beset by tiresome braggadocio , ricky burns seems like an impostor .\nthe search for a company to take on the # 2.75 bn contract to build high speed trains for the hs2 rail network got underway on friday .\nwales recovered from their opening six nations defeat by england to secure a hard-fought win at murrayfield that leaves scotland without a point .\nfifa presidential candidate gianni infantino says he would press for the world cup to be held in a whole region rather than one or two countries .\nmichael carberry scored a century in his first competitive outing for hampshire since returning to cricket after undergoing treatment for cancer .\nthe head of chinese online search giant baidu is being investigated , after riding in one of the firm 's driverless cars on a beijing ring-road .\nteachers should scrutinise the holiday plans of families from communities that practise female genital mutilation -lrb- fgm -rrb- , a conference has heard .\nhigh-speed cameras have revealed how jumping spiders use a dragline of silk to stabilise themselves mid-air and control their landings .\na derby suffragette , who was convicted of attempting to murder a prime minister , is being honoured with a blue plaque .\nchina 's first space station is expected to fall back to earth in the second half of 2017 , amid speculation authorities have lost control of it .\na warning has been issued after figures showed rail trespass incidents in wales have risen .\na man has been found guilty of murdering his `` on-off partner '' by bludgeoning her to death .\nchris ashton scored twice as champions saracens ran in eight tries to hammer bath at allianz park .\nflooding in cumbria has led to a `` collapse '' in bookings in the county , a tourism chief has said .\nthe fascinating bright spots on the surface of the dwarf planet ceres have come into sharper view .\nthe idea of a `` virtual doctor '' project might sound rather futuristic .\nthe world 's two biggest beer producers are set to merge after sabmiller accepted an increased takeover offer from rival anheuser-busch inbev .\nthe uncle of an raf serviceman who went missing a week ago has said his disappearance is `` entirely out of character '' .\na body has been found at a house on the isle of skye following a fire on boxing day .\nblack bin bags could be collected every three weeks in pembrokeshire as the council looks to meet `` severe budget cuts '' and performance targets .\nrebels say they have begun a new battle in north-western syria in response to alleged truce violations by the army .\nhow much will it cost to get a degree in england when tuition fees increase to # 9,250 in the autumn ?\njosh matavesi 's late try rescued a draw for ospreys in their european champions cup game at home to racing metro .\ngraham cummings scored twice as st johnstone moved level on points with fourth-placed hearts by beating hamilton accies .\ntravel operator tui group has announced how much its business will be affected by the beach attack in tunisia in june .\na speed camera in cardiff is the busiest in britain - catching almost three times as many drivers each day as one on a busy manchester motorway .\na referendum on uk membership of the european union should not be held on the same day as the assembly elections in 2016 , the welsh government has said .\nthree conmen have been jailed for a # 4.5 m fraud selling bogus advertising space to small companies who were taken to court if they did not pay up .\ncraig gordon hopes an impressive display against manchester city can help him retain a regular starting position at celtic .\nresearchers from oxford university say they 've made a breakthrough in developing smart glasses for people with severe sight loss .\nuk financial services firms are becoming more pessimistic about their prospects in the wake of the brexit vote , an industry survey suggests .\nus president-elect donald trump has announced he plans to quit the trans-pacific partnership -lrb- tpp -rrb- trade deal on his first day in the white house .\natletico madrid won la liga for the first time since 1996 by securing a draw in a pulsating match at barcelona .\nthe bank of scotland 's first plastic banknote intended for general circulation is set to be issued .\nthe republic of ireland 's economy grew 1.5 % in the second quarter of the year , figures show , and was up 7.7 % on the april-to-june period in 2013 .\nscientists working in tandem with artificial intelligence -lrb- ai -rrb- could slash the time it takes to develop new drugs - and , crucially , the cost - say tech companies .\ncannabis should be legalised for medical use , a cross-party group of mps has said , but there are thousands of people already using the class b drug for this purpose .\nthe raf is stepping up attacks on self-styled islamic state forces in the city of mosul as part of a bid to cripple the group 's last major stronghold in iraq , michael fallon says .\nleicester tigers winger miles benjamin is likely to be out for the rest of the season because of a knee injury , reports bbc radio leicester .\nthe criminal courts charge should be scrapped by ministers , a parliamentary committee has said , as it raised `` grave misgivings '' about the fee 's benefits .\naston villa defender jores okore is refusing to play for the club , according to caretaker boss eric black .\nwhen india qualified for the 1950 world cup in brazil they refused to participate - partly because it would have meant their normally bare foot team having to wear football boots .\na man has been charged with attempted murder following an assault in denny .\nmembers of the berlin philharmonic orchestra have been unable to agree on who should be their next chief conductor and artistic director .\na man in his 50s has died after being seriously assaulted in swords , county dublin .\nbeyonce has scooped nine nominations for the 2017 grammy awards , extending her lead as the most-nominated woman in grammys history .\nwatercolours and drawings by adolf hitler have fetched # 286,000 -lrb- 400,000 euros -rrb- at a german auction .\na jet skier has been airlifted to hospital after a crash involving a speedboat during an event off anglesey .\nsatellite images of mosul have revealed how fighters from so-called islamic state -lrb- is -rrb- have destroyed much of the city 's airport to render it unusable as iraqi forces close in .\nmany of the headlines around video games tend to be about violence , addiction and spending too much time glued to a screen .\nfresh allegations of threatening and sexist behaviour have been made against a father and son at swansea university 's school of management .\na canadian ice cream manufacturer hopes it can give something back to its local community , by keeping an elementary school in ontario province from shutting down .\nresurgent bury held on for a home win over coventry to take another step away from the league one relegation zone .\nbelfast giants suffered a 3-1 defeat by manchester storm in sunday 's elite league clash at the sse arena .\nchelsea boss antonio conte says pedro suffered multiple facial fractures in a collision with arsenal goalkeeper david ospina in a friendly on saturday but should return to training in 10 days .\nmae adroddiad annibynnol sydd wedi ei gyhoeddi ddydd iau yn argymell adeiladu morlyn llanw gwerth # 1.3 bn ym mae abertawe .\na bangladeshi toddler born with a third leg attached to her pelvis is returning home after successful surgery in australia .\ntucked between the caribbean sea and the rainforest on the eastern coast of central america , belize is the home of a small and diverse nation .\nceltic captain scott brown says unhappy fans have every right to vent their feelings after a season in which the team have `` let themselves down '' .\nfootball - or `` socca '' as the japanese call it - was given a boost in the baseball-mad land of the rising sun when the world cup was held there in 2002 .\na health watchdog has praised the improvements at a hospital that was once placed in special measures .\nfenerbahce 's robin van persie has reassured supporters that his eye was not damaged after he was carried off the pitch bleeding on sunday .\nmost collectors would probably tell you they could n't put a price on their beloved collectables , but craig stevens probably had to re-think that one .\na man from croydon has been charged with murder after the death of his partner last month .\nservices run by the biggest nhs trust , including two more of its hospitals , have been labelled `` inadequate '' by inspectors .\nengland have brought in emma croker and have ireland made two changes for saturday 's women 's six nations game .\nportsmouth have signed former ajax and notts county midfielder stanley aborah on a deal until the end of the season .\ndozens of british troops are to be sent to somalia to help peacekeeping efforts to counter islamist militants , david cameron has announced .\nfour people have been treated for smoke inhalation following a fire on a tube train at oxford circus in central london .\nseveral streets in sheffield were closed after an unexploded bomb was found during building work .\nsix-time paralympic champion david weir says he will never wear a great britain vest again , adding he feels `` let down '' .\na dancing gorilla video has gone viral with more than one million people viewing the pirouetting primate .\npe should be given the same status as maths , english , science and welsh in schools to help tackle obesity in wales , experts have recommended .\nthe world 's biggest crystal structure model - a 3d chemical illustration made from little balls and sticks - is being assembled in vienna 's city hall .\nthe new leader of the afghan taliban , mullah akhtar mansour , has called for unity in an audio message , saying that the group will continue fighting .\nrangers have named manchester city academy director mark allen as the club 's director of football .\nthe launch of channel 5 's latest series of celebrity big brother was watched by an average 2.3 million viewers .\nwork will begin on a # 500,000 purpose-built cycling circuit in carmarthenshire after a funding boost from the council .\nsome 1,780 people died on britain 's roads last year - 49 more than the previous year , new figures suggest .\na georgian seaside villa in dorset , where author john fowles lived , will open its doors after a # 1.8 m revamp .\nmanchester city boss roberto mancini has named carlos tevez in his 25-man squad for the remainder of the season - and admitted he could pick him again .\nplans for changes in the way universities are governed are facing a fresh attack from the principal of edinburgh university .\nwhen lego originally decided not to sell the chinese artist ai weiwei bricks with which to make a political statement , it really thought it was doing the right thing .\nfive teenagers have been sentenced after admitting their part in a `` riot '' which saw part of newport city centre `` under siege '' .\na `` drunk '' squirrel has caused hundreds of pounds of damage at a private members ' club .\nif watching university challenge makes your head hurt , you might want to take an aspirin before listening to a new show radio 4 are planning .\nbolton wanderers have completed the permanent signing of striker adam le fondre on a two-year deal after his loan spell last season .\nscientists have discovered the oldest-known fossil of a pine tree .\nthe emergency services were called to the scene of a fire in aberdeen .\na 17th century notebook analysing the work of william shakespeare has been described as `` extraordinary '' by an antiques roadshow expert .\na man has died after he was hit by a car in swanley on saturday night .\ntommy seymour scored four tries as glasgow warriors christened the newly-laid synthetic scotstoun pitch with a pro12 win over leinster .\nlabour makes a difference in power , not in `` principled opposition '' , the shadow welsh secretary has told the party 's welsh conference in llandudno .\ncatalans dragons have released australian prop willie mason by mutual consent , after injuries ended his 2016 super league season .\nennio morricone has denied criticising quentin tarantino over his use of music .\nsouth sudan 's sacked vice-president riek machar - who fled the country in august - has vowed to return , saying his credibility is intact .\na proposal to abolish six councils and create one county-wide local authority for oxfordshire has been published .\na 12-year-old boy left with a severe brain injury after he was hit by a car has returned to school after making an `` amazing '' recovery .\nhundreds of people have taken part in a ceremony to mark the 75th anniversary of the luftwaffe bombing raid on coventry , which left 568 people dead and most of the city centre in ruins .\nthe british cycling coach who couriered a ` mystery ' package for sir bradley wiggins has been invited by mps to give evidence at a doping inquiry .\nyet again , we are looking at shocking pictures of a plane crash .\nthe metropolitan police service has been ordered to pay more than # 14,000 in damages to two men of arab origin for racially abusing them as teenagers .\na `` selfless '' backpacker who was injured trying to save another traveller as she was stabbed to death in australia has died , police in queensland have said .\na football club chairman and his father were given a `` loan '' of more than # 2.5 m by a company set up to oversee the development of its stadium .\npope francis has recognised a second miracle attributed to mother teresa , clearing the way for the roman catholic nun to be made a saint next year .\nthe leader of the fastest growing large economy in the world is visiting britain .\nchile 's calbuco volcano has erupted for the third time in eight days , leading the government to order the evacuation of 2,500 people .\na surfer who lost his leg in a shark attack in western australia last week has died , police say .\nto a european visitor , the city of ulsan on the southern tip of the korean peninsula seems like a throwback to some lost world .\nat first glance , everything seems normal in marienplatz , munich 's central square , which is dominated by the great neo-gothic town hall .\nvodafone has warned it could move its headquarters from the uk depending on the outcome of britain 's negotiations to leave the european union .\nthe south-west has been awarded the largest share of a fund raised through extra stamp duty on second homes to help first-time buyers in england .\ndozens of families could be without their christmas dinner after thieves stole turkeys from a butcher 's shop in vale of glamorgan .\ntwo police forces in yorkshire are to merge their dog units to reduce costs .\nmany european countries are witnessing electoral gains for far-right and nationalist parties , though they span a wide political spectrum .\ncatalans dragons have signed former australia and new south wales prop willie mason on a one-year deal .\nsir bradley wiggins has defended claims made in his 2012 autobiography that he had never received injections .\nif conor mcgregor beats floyd mayweather on saturday night in las vegas , the boyhood manchester united fan will perhaps owe a small debt of gratitude to manchester city .\nalmost a fifth of all children 's social worker jobs in england are vacant , despite a rise in recruitment .\nshellfish farms on the helford river and camel estuary in cornwall have re-opened after pollution closure notices were lifted by the food standards agency -lrb- fsa -rrb- .\nthe family of a black man who died after being apprehended by police has appealed for peace after violent protests in the wake of his death .\ngeorge north believes the british and irish lions must `` kick on '' after a tough start to their new zealand tour .\nthe syrian city seen as the capital of the revolution has fallen , by agreement .\nan anti-bullying charity has called for a gym billboard poster to be removed for being `` offensive '' .\npolice have arrested more than 50 people as part of an investigation into suspected match-fixing in italian football .\na 200-year-old windmill in hampshire has reopened following a two-year restoration project .\nparliamentary candidates for newcastle-under-lyme all called for a `` joined-up policy '' on health and social care in north staffordshire at a public debate .\ncristiano ronaldo broke sweden 's resistance late in the game to give portugal the advantage in their world cup play-off tie in lisbon .\npresident-elect donald trump has rejected as `` ridiculous '' a cia assessment that russian hackers tried to sway the election in his favour .\nfour thousand knights of malta , heirs to one of the great orders of european chivalry of mediaeval times , and the fourth oldest religious order in the roman catholic church , took over the vatican briefly on saturday .\nwhich team can claim to be the greatest international side of all time ?\nthe father of missing airman corrie mckeague , who is camping near a landfill site as police search for a body , said it is `` heartbreaking '' to think his son is buried there .\nhighland council has said it remains committed to giving more schoolchildren access to technology .\nthis is the award-winning wistow maze in leicestershire and this year a very special character is taking over .\nan inquest has watched dramatic video of police raiding sydney 's lindt cafe to end a 17-hour siege .\na second suspect wanted in the death of a us border official has been extradited to the us , in a case linked to a botched gun-running sting .\npupils at seven schools could have shorter days after a trust head say he may have to cut hours to save money .\nan oxford college has moved away from its founding principles of providing degrees for working-class adults and mature students , students have warned .\nbetty churcher , one of australia 's most popular and innovative arts administrators , has died aged 84 .\nthe prime minister will be curled up on the sofa watching traditional british tv on christmas day .\na 45-year-old man has died after the car he was driving collided with a lorry on the a71 in north ayrshire .\nit is one of the wealthiest countries on earth - enriched by the bounty of a once-in-a lifetime mining boom - but australia remains bedevilled by a rising number of its children living in poverty .\nhundreds of jobs are set to go at oil services firm aker solutions with about 100 at risk in aberdeen and london .\na conservative-run council wants to raise its tax by 15 % in the next financial year , blaming government cuts and increased demand for social care .\nmanchester city boss pep guardiola says his first season in the premier league has not been good enough but promised `` in the future i will be better '' .\nyork city have signed midfielder clovis kamdjo on a two-year contract following his release by national league rivals forest green rovers in may .\nthe queen will present new colours to wales ' infantry regiment the royal welsh at the millennium stadium in cardiff next week .\nas thousands of 16-year-olds in england sit gcses in maths and english , bbc education correspondent gillian hargreaves goes to meet teenagers trying to achieve good grades second time around .\nformer france international david ginola is to stand against sepp blatter for the fifa presidency .\nwelsh labour needs to `` shrug off '' the idea it is still the natural party of wales , their mp for ogmore has said .\na florida prosecutor has decided not to pursue criminal charges against donald trump 's campaign manager who was accused of tussling with a reporter .\nplans for a new engineering and digital technology park for the university of chichester have been submitted to the local council .\na dog attack on a girl on a beach has led to police releasing a picture of the animal 's owner .\nmanager jurgen klopp says liverpool are eager to resolve the future of wales midfielder joe allen .\na football fan , filmed running onto the pitch at the essex derby between southend and colchester , has been given a suspended prison sentence .\nan addict who denies killing a man who was shot with a crossbow has told a court he did not owe the victim drug money .\nthe father of an indian woman who was gang raped in delhi and later died says her name should be made public so she can serve as an inspiration to other sex crime victims , a uk paper reports .\n-lrb- close -rrb- : london 's main share market closed lower on thursday , dragged down by oil and mining companies .\nperu 's first national satellite , perúsat-1 , has returned its maiden image of the country .\nleicester lions ' future has been secured following financial problems .\nthe uk has decided in a referendum vote to leave the european union , but what do people from other eu countries think about britain 's big decision ?\nkenya have been kicked out of 2017 under-20 africa cup of nations qualifying for using overage players .\na woman who was set on fire in an attack at her manchester home has died .\nthe new chief executive of the welsh nhs has told bbc wales winter pressures could force hospitals to cancel operations .\na driver who knocked down a lollipop lady broke down in tears in court as he said he was `` truly sorry '' for her and her family .\nuk manufacturing activity rose slightly in may , raising concerns over the economy 's strength in the run-up to the 23 june european union referendum .\na man with schizophrenia who repeatedly stabbed a train passenger after yelling `` i want to kill all the muslims '' has been found not guilty of attempted murder by reason of insanity .\nthe bbc 's fifth price of football survey will come as encouraging news to the many fans who have grown used to the price of their loyalty consistently rising .\nthree white lion cubs have been born at a zoo in poland , in eastern europe .\nthree men have suffered burns from nitric acid while on board a ship off cornwall .\nleicester city need `` soldiers and gladiators '' to save their season , says manager claudio ranieri .\na second referendum on the details of any brexit deal should be offered to voters , green party of england and wales mp caroline lucas has said .\nat his lowest point , ryan longmuir took drugs every day `` just to feel normal '' .\nthe `` furore '' in the uk housing market is dying down because a recent surge in demand is `` gradually exhausting itself '' , according to surveyors .\njapanese carmaker mazda has developed a more efficient petrol engine at a time when the industry steers toward electric vehicles .\nmore human remains have been found near a motorway slip road in shropshire , police have said .\nwhen 55 greyhound carcasses were found dumped in a wildflower reserve on the coast of queensland this week , it barely raised an eyebrow among those who know the racing industry well .\na regular game of golf is likely to increase life expectancy and lead to better physical health , according to university of edinburgh researchers .\nthe winding-up petition brought against league two side northampton town has been withdrawn following a court hearing on monday .\na report has found the police control room service has `` performed well '' after closing its dumfries site and moving provision to glasgow and motherwell .\nnearly 40 % of teachers banned from the profession in wales in the last two years have been struck off for having `` inappropriate '' relationships or conversations with pupils .\nhouse prices are rising fastest in the east of england , official figures show , as analysts suggest property market `` action '' has moved out of london .\nthe father of a reservist who died after attempting an sas selection exercise in the brecon beacons has told an inquest processes `` failed '' that day .\nthe conflict in vietnam ended 40 years ago , with chaotic scenes in saigon , now ho chi minh city , as the north vietnamese army closed in on the heart of power , its tanks ploughing through the gates of the south vietnamese presidential palace on 30 april 1975 .\nwarwickshire wrapped up an eight-wicket victory over durham despite a battling century from opener mark stoneman .\nhundreds of rooms at a # 45m student halls development at aberystwyth university will not be ready for the new term .\ndover kept up the pressure on those on in the national league playoff places with a comfortable 2-0 win over strugglers guiseley at the crabble athletic ground .\nkizza besigye used to be president yoweri museveni 's personal doctor but he went on to become an opposition leader and has referred to uganda 's leader as a `` dictator '' .\na trustee of a group which secured the # 12m restoration of cardigan castle has quit due to online `` persecution '' .\na man has been found dead in the swimming pool of a hotel near edinburgh airport .\nrussian prime minister dmitry medvedev has said strains between russia and the west have pushed the world `` into a new cold war '' .\npolice investigating the rape of a teenager last christmas have issued e-fits of two men they want to trace in connection with the incident .\neleventh night bonfires have been taking place across northern ireland .\nsupermarket chain morrisons has increased the cost of a jar of marmite by 12.5 % , say retail industry experts .\nthe confederation of african football 's -lrb- caf -rrb- secretary general hicham el amrani resigned on sunday , just over a week after long-standing president issa hayatou was ousted from power following defeat to madagascar 's ahmad in the elections .\nteaching unions in northern ireland have rejected a pay offer after months of negotiations and are considering further action .\nthe justice secretary has ordered a review to consider the `` incentivisation of prisoners to participate in , attend and achieve at education '' .\nfile-sharing website the pirate bay -lrb- tpb -rrb- has been hit by a distributed denial of service -lrb- ddos -rrb- attack .\nswashboggling and frobscottle are among thousands of roald dahl 's words to be compiled in a dictionary celebrating the centenary of the writer 's birth .\nillegally traded endangered species that escape , forming secondary populations , offer hope for their long-term survival , a study suggests .\nbudget cuts , brexit and growing patient demand are all leading to a `` perfect storm '' for nursing staff in scotland , a new report has warned .\na custody sergeant who dealt with a man who died after having a heart attack in a police cell followed procedures `` in almost every respect '' , a court has heard .\nivan lendl says he is `` proud '' of his work with andy murray and expects to return to coaching in the future .\none of the leading figures of the french resistance against the nazis , raymond aubrac , has died aged 97 , his family says .\nwork will continue through the night to make safe the site of a house struck by a lorry in an accident that led to the death of a 55-year-old woman .\ndouble olympic champion nicola adams will contest three-minute rounds in her next fight , a contrast to the standard two minutes in women 's boxing .\nmexico stunned favourites brazil 2-1 at wembley to win the men 's olympic football gold medal for the first time .\nchina faces a ban from international weightlifting competition after three of its athletes failed doping tests .\ngolden globe nominated actor casey affleck says that he `` got lucky '' to get his part in drama manchester by the sea - after replacing his friend matt damon at the last minute .\nglamorgan began their one-day cup campaign with a convincing 52-run win as holders gloucestershire lost their second match in as many days .\nthe festival of arts and culture that has accompanied the olympic and paralympic games ended on sunday , with a little help from coldplay .\ncrewe alexandra have signed finnish goalkeeper will jaaskelainen on a one-year-deal after leaving bolton .\na teenage boy has appeared in court for a second time charged with murdering 16-year-old bailey gwynne , who was stabbed at his aberdeen school .\ngoogle is ending sales of its google glass eyewear .\nuk industry fell back into recession as it shrank for the second quarter in a row , according to the office for national statistics -lrb- ons -rrb- .\na resident of the short strand area of east belfast has challenged a decision to overturn a court ruling that the psni was wrong not to stop union flag protests .\nfive people have been shot at a california nightclub while chris brown was performing .\nhistorical chinese documents have helped scientists to track the decline of the world 's rarest primates .\nparents may be feeding their babies and toddlers larger portions than they need , experts have warned .\nsubstitutes marcus rashford and marouane fellaini both scored as manchester united overcame a resolute leicester to strengthen their position at the top of the premier league .\none in three families in england could not pay their rent or mortgage for more than a month if they lost their job , a study for the charity shelter suggests .\nchelsea defender michael hector has joined hull city on a season-long loan , the 14th loan spell of his career .\nwayne rooney still has a future with england despite their euro 2016 failure , says frank lampard .\nhampshire spun their way to an eight-wicket victory over t20 blast south group leaders glamorgan at southampton .\nthe carfest motoring event has resumed , a day after the death of a pilot whose aircraft plummeted from the sky during an aerial display .\njewish community leaders have criticised jeremy corbyn 's decision to nominate the head of labour 's anti-semitism inquiry for a peerage .\na report proposing an agreement between the church of england and the church of scotland has been published , ahead of a debate by the churches ' ruling bodies .\nresearchers have developed a collection of new plastics that are recyclable and adaptable - and the discovery began with a laboratory mistake .\npolice and protesters in jammu in indian-administered kashmir have clashed over the alleged desecration of a local hindu temple .\nuk universities could find it harder to recruit international students if the uk leaves the eu , suggests a survey .\na 15-year-old girl who took a claim for damages against the chair of stormont 's justice committee over facebook postings has lost her case .\na bbc journalist with dual british-iranian nationality has been prevented from flying to the us after falling foul of changes to visa rules .\nabout # 100m was spent on a competition for developing carbon capture technology before it was scrapped , a new report has revealed .\nyoung people are on track to be poorer than their parents at every stage of their lives , according to a new report .\ndouble olympic champion laura trott fought back to win the individual pursuit title on day one of the british track championships in manchester .\na man has been jailed for nine years for knocking down a police officer who tried to stop a stolen car .\nwho is oscar pérez , the police officer who launched a helicopter attack on the venezuelan supreme court on 27 june ?\nengland bowlers mark wood and steven finn are in the squads for the new north v south one-day series in the united arab emirates in march .\na battle is under way to save the apartment in new york 's hotel chelsea where dylan thomas slipped into a coma just four days before he died .\ntests on the remains of a man found in a conwy county forestry have shown he suffered serious head trauma and died in suspicious circumstances .\nthe metropolitan police are on heightened alert for a rise in hate crime following the european referendum result .\nat least 22 people have been killed by three suicide bombings in checkpoints in the southern yemeni city of aden , officials say .\na leading muslim organisation in the us has evacuated its headquarters in washington after receiving a hateful message and white powder in the post .\na man known as `` the naked rambler '' has been given an interim anti-social behaviour order -lrb- asbo -rrb- banning him from going nude in public places .\nwork to rebuild a shopping centre car park that has been beset with structural problems for a decade will now go ahead in the spring of 2015 .\na manhunt is under way in germany after a man allegedly stabbed a nine-year-old neighbour to death and uploaded a video boasting of his deed to the dark web .\nlabour has kept hold of the cardiff south and penarth seat in parliament following a by-election .\nit is a drizzly sunday morning in guyana , and at the national stadium a game of cricket is in full swing .\na man in a wheelchair with an apparent grievance has detonated a small device at beijing international airport .\ncardiff devils managing director todd kelman says the sheffield steelers have caused a `` media frenzy '' ahead of their challenge cup final on 5 march .\noil giant bp has withdrawn some non-essential staff from operations in libya following uk government advice about uncertainty in the country .\nthe death of a man who twice apparently jumped from a building has been referred to the independent police complaints commission .\nthe rail , maritime and transport union will recommend its members accept a pay and conditions deal for the night tube service , its executive has decided .\na former asylum seeker who was coached by her father has won a sport award as part of black history month .\na rundown of all the latest bbc radio commentaries online .\nnew jersey signing heath stevens says the club are capable of reaching the championship play-offs .\na killer has been jailed for a `` sadistic '' sexual attack a year after his release .\nsunderland manager sam allardyce says he is determined to make sure the club is not involved in another premier league relegation fight next season .\na methodist minister used hypnosis on four boys before indecently assaulting them , a court has heard .\nup to 3,500 people have been left without electricity in heavy storms in the republic of ireland .\na 17-year-old boy has been arrested on suspicion of preparing terrorist acts as part of a search for two teenagers from dewsbury thought to be in syria .\neleven-year-old kai tap sits alone looking pensive as he watches other children sing and play at eden school inside a civilian protection site run by the united nations in south sudan .\nmental health patients are being placed into overstretched a&e departments as police crackdown on the number locked up in their cells , it has been claimed .\nabout 50 firefighters tackled a large blaze at a five-storey disused mill in greater manchester .\na us judge has ordered apple to pay more than half a billion dollars to a university after the tech firm failed to abide by an earlier court ruling .\n`` poor leadership and complacency '' led to nhs highland having to ask for extra funding from the scottish government , msps have said .\nnick clegg has accused the new tory government of abandoning the values he said had been at the coalition 's core .\ndouble olympic champion mo farah has won the lisbon half marathon in a new european record time , becoming the first briton to break 60 minutes .\na dog owner has admitted ordering her staffordshire bull terrier to attack another woman in peterhead .\ncafodd esgob benywaidd cyntaf yr eglwys yng nghymru ei chysegru mewn seremoni yng nghaerdydd ddydd sadwrn .\nbritish number three aljaz bedene is considering switching his allegiance back to slovenia in order to compete at the olympics .\nlewis stevenson thinks hibernian can compete at the top end of the scottish premiership after their promotion and plans sticking around for more success .\nlabour 's former deputy leader harriet harman is right to say that the eu has been important in the development of uk law that affects women 's right .\ncurzon will receive an outstanding british contribution to cinema prize at this year 's bafta film awards .\nwest ham have agreed a deal with german club bayer leverkusen to sign mexico striker javier hernandez for # 16m .\nthe snp will chair two house of commons select committees at westminster , it has been announced .\nformer brazilian president dilma rousseff has left her official residence in the capital brasilia for the last time following her impeachment and removal from office .\na 24-year-old man has been beaten by an armed gang in a paramilitary-style attack in londonderry .\nukip am mark reckless is set to quit the party and vote with the conservative group in the assembly .\na paramedic with 23 years experience said a heat-stricken army reservist who collapsed on an sas test march had the highest temperature he had seen , an inquest has heard .\na senior police officer has said he is disappointed the latest northern ireland political agreement has not addressed the legacy of the troubles .\nan auction to sell a property belonging to indian drinks baron vijay mallya has failed to attract any bidders .\nyorkshire diamonds have appointed paul grayson as their head coach on a deal until the end of 2019 .\ni have been collecting matchboxes seriously since 2012 .\nprince buaben has become hearts ' sixth summer signing after agreeing terms with the tynecastle club .\ninternet companies may have to provide more information on people and businesses who sell goods and services online , in a crackdown on tax evasion .\nat least 50 civilians have been killed by militants in northern afghanistan , officials say .\nthe high court in dublin is to resume a case in which a privacy campaigner is trying to block facebook from sending eu citizens ' personal data to the us .\na us national has been sentenced in iran to 10 years in prison on spying charges , iranian officials have said .\na female osprey nicknamed lassie has laid her first egg of the season at the scottish wildlife trust 's loch of the lowes nature reserve .\ncraig mcallister 's late goal saw eastleigh end a run of four straight defeats as they held the 10 men of high-flying aldershot in a 1-1 draw .\nnorthern ireland 's exams body , ccea , is investigating an alleged leak of some details from a business studies a-level paper , the bbc understands .\nthe family of a nine-year-old british boy who died after being hit by a motorcyclist in greece five years ago are `` mortified '' that the driver will not be jailed .\nprince charles asked the blair government to consider the culling of badgers , historic documents reveal .\npolice investigating the death of a homeless man in a norwich subway want to speak to two potential witnesses .\nanother celtic fan has appeared in court charged with displaying an allegedly offensive banner and blow-up figures at last month 's old firm match .\nas the christmas of 1940 approached , german bombs rained down on manchester city centre , killing hundreds of people and causing widespread destruction .\na woman who strangled her mother because she thought she was a `` witch '' has pleaded guilty to manslaughter .\napple 's forthcoming news app has been criticised over claims the company is hoodwinking bloggers into accepting its terms and conditions .\nsurvey work to find the tomb of king henry i , who is believed to be buried at reading abbey , has started .\nthere has been a `` rapid deterioration '' in prison safety in england and wales , the prisons inspector has warned .\na man who sparked a drug-fuelled roof-top siege after breaking up with his partner has been given a suspended prison sentence .\nfrontline nhs staff at 111 centres , gp clinics and pharmacies say they are facing unprecedented pressure .\nthe stars of the latest star trek film have stood behind its revelation that long-standing character sulu is gay .\nformer cabinet minister michael gove says theresa may was right to sack him after she became prime minister .\ntwo road workers have been seriously hurt in an accident involving a van in mid devon .\nnasa has revealed its plans to try to get humans living on mars in the next few decades .\nscotland have called up south africa-based back huw jones for their june tour of japan .\nni 's police ombudsman is to resume investigations into more than 150 historical events where former ruc officers are accused of criminal activity and misconduct .\nthe uk is to make a formal protest to the government of ecuador over the country 's decision to `` harbour '' julian assange , the foreign office has said .\nalastair cook and tom westley both hit centuries as essex took charge on a rain-affected first day against hampshire in the county championship .\nprominent uighur academic ilham tohti has gone on trial for separatism in china 's far western region of xinjiang .\nsir chris hoy has been chosen to carry the flag for great britain at the opening ceremony of the london games on friday .\nmuch of the uk will be hit by storm abigail on thursday , bringing lots of rain and strong winds .\na sub-tropical storm over the atlantic has become a hurricane , the first in january in the region since 1938 .\nportsmouth defender jack whatmough has signed a new two-year contract .\nthe recent security scare over the heartbleed bug should send shivers down the spines of most small businesses .\ntwo 17-year-olds have been arrested on suspicion of murdering a teenage boy who was stabbed after a birthday party in east london .\nkell brook will have surgery on the broken eye socket he sustained in saturday 's defeat by gennady golovkin .\na retired police officer has reported derbyshire police to the home office over claims they withheld evidence in a 1973 murder case .\nscientists say they have developed a way of testing how well , or badly , your body is ageing .\na village in india recently held an unique contest to raise consciousness about girl children : click a selfie with your daughter and win a prize .\nthe scottish government has said it will examine what it can do to help safeguard the future of glasgow 's troubled arches arts venue .\naberdeen must show they can `` handle hampden '' in saturday 's scottish cup semi-final with holders hibernian , says club hero willie miller .\nminimum staffing levels in scotland 's nhs are to be enshrined in law .\nformer england boss stuart lancaster is meeting toulon president mourad boudjellal this week as he seeks a return to full-time coaching .\nbritish lionhearts were beaten 9-1 by cuba domadores in the final of the world series of boxing in uzbekistan .\na 57 year-old man from a devon village has emerged as one of the first people to cash in their pensions under the government 's reforms .\na strike by conductors on southern rail has entered its second day as a long-running row about the role of guards on new trains continues .\nthere is a growing clamour in germany to honour three syrian refugees who overpowered a bomb plot suspect with possible links to the so-called islamic state .\na proposal to introduce life sentences for the offence of careless driving while under the influence of drink or drugs does not go far enough , according to the parents of one victim .\nan ancient formation discovered within a neolithic stone circle in wiltshire is actually a square .\na number of homes and gardens have been damaged in a fire in portadown , county armagh , after an oil tank caught alight .\nthousands of ceramic poppies used in the tower of london installation are to go on display across the north of england , it has been announced .\na haitian former coup leader , guy philippe , has pleaded not guilty in a us court to drug trafficking and money laundering charges .\nhsbc would move up to 1,000 staff from london to paris if the uk left the single market , following britain 's vote to leave the eu , the bbc understands .\npart of the wireless spectrum freed up after the digital tv switchover is being used to provide broadband services in rural scotland .\nplans to build more than 1,000 homes a year in york over the next 15 years have been criticised by opposition councillors .\n`` i think it 's really sad and wrong they think we 're terrorists , because we 're not , '' says chilla , a bright and articulate sixth-former at the elite kharisma bangsa high school near jakarta , indonesia 's capital .\nivan toney has admitted he struggled with homesickness following his summer move from home-town club northampton town to newcastle united .\nthroughout the election campaign bbc wales news is answering young voters 's questions and reflecting their views through our interactive #ineverknew project .\na new # 48.5 m school campus in the highlands is unlikely to open in october as planned , highland council has said .\npetrol and diesel prices rose sharply in october , said the rac , taking them to their highest level since july 2015 .\nromania captain ilie nastase was banned from the fed cup tie against britain after an incident that left johanna konta in tears and her match suspended .\nvolunteers are being sought to help look after a heritage site in pembrokeshire .\na pensioner who underwent gender re-assignment surgery at the age of 69 says she lived `` in the wrong body '' for most of her life because she feared the reaction of her friends and family .\nchinese internet giant baidu has said it will share much of the technology it has created for its self-driving cars .\ntwenty-times champion jump jockey sir anthony mccoy has described having a statue put up in his honour at cheltenham as ` flattering . '\nwhen you think of a laboratory you would n't usually think of cheering crowds or actors in costumes .\nmps have defeated a cross-party bid to clarify in law that abortion on the grounds of gender alone is illegal in the uk .\nwhy are millions of women dropping out of work in india ?\nfarmers and landowners have been asked for their views on a proposal to bring back lynx to parts of scotland and england .\njk rowling has thanked twitter users who offered words of support after she became a target for online abuse in the wake of the general election result .\neurope 's most active volcano , mount etna , has erupted for the fifth time this year .\nplans to overhaul sunday trading laws in england and wales have been dropped after they were rejected by mps .\ntwo people have died from gunshot wounds during protests against president nicolas maduro 's government , eyewitnesses and local media say .\nthe bbc 's jon sopel sees presidential hopeful donald trump roll with the punches in the second republican debate in california - until a new competitor entered the ring .\nshares in royal mail closed down 8.3 % after the firm warned that rivals - including amazon - were eating into its parcel delivery business .\na whitehaven woman who defrauded a charity set up by a teenager dying of cancer who became well-known for her `` bucket list '' has been sentenced .\nthree russian opposition activists have gone on hunger strike after they were barred from running in local elections .\nit has been more than four months since 43 students from a rural teaching school in ayotzinapa , in mexico 's south-western state of guerrero disappeared .\nex-footballer andy woodward says it is `` shocking '' he is still waiting to give police information about the alleged sexual abuse he suffered as a junior .\nhouseholders in cambridgeshire who have had to boil their water since sunday have now been told it is safe to drink once again .\nfrequent travellers can face a host of problems when it comes to unpalatable hotel options .\nthe authorities in texas have charged two men with conspiring to harbour suspected illegal immigrants .\na man has been found by the side of a road with his penis cut off .\narchaeologists working on a site near stonehenge say they have found an untouched 6,000-year-old encampment which `` could rewrite british history '' .\nmarion maréchal-le pen , the niece of defeated far-right french presidential candidate marine le pen , is to quit politics , french media report .\nat least 28 people have been killed and many others injured in an oil pipeline explosion in central mexico , officials say .\nharry potter star emma watson 's been speaking out about making boys and girls more equal .\nbritain 's double olympic champion nicola adams will face mexico 's maryan salazar in leeds on saturday .\na new training and post-16 education centre could replace high school sixth forms in torfaen after the council 's cabinet backed # 32.5 m plans .\nross county defender andrew davies has signed a two-year contract extension , keeping him at the dingwall club until the summer of 2019 .\nevery living veteran who served in bomber command during world war two is being sought for the unveiling of a new memorial .\na coroner has said he will reflect carefully on whether a soldier who fired a rubber bullet that killed a boy is too ill to give evidence .\nspecialist teams have joined the search for a woman missing in conwy county .\nsome bus services in mid wales facing the axe because the firm which runs them went into administration could be maintained , a council has said .\nminimum unit pricing for alcohol should be rolled out across the uk if scotland 's scheme is successful , a lords committee says .\na teachers ' union is warning that schools are increasingly likely to use unqualified teaching staff .\nteenagers are often portrayed as thrill-seekers , but research suggests their brains are wired to learn from their experiences , which makes them better prepared for adulthood .\na man has been arrested at manchester airport on suspicion of `` syria-related terrorism '' offences .\nplanning permission has been granted to create what is believed to be england 's largest onshore wind farm .\ntemporary classrooms are being set up at a school that was damaged by fire .\ncarlos tevez 's move from manchester city to corinthians has fallen through because the brazilian club pulled out .\na leading scottish conservative msp missed a parliamentary committee to referee a champions league match in portugal .\neating a low-fat , rather than a low-carb diet leads to a greater loss of body fat , according to us national institutes of health scientists .\npeople who spend time in aquariums could improve their physical and mental wellbeing , a study has suggested .\nparents who worry about handing over their car keys will be able to spy on their teenager 's road skills and even set a speed limit soon .\na florida man who killed his wife and posted a photo of the body on facebook has been found guilty of murder .\nsinger david bowie has died at the age of 69 following an 18-month battle with cancer .\ndame heather rabbatts has announced she will step down from her role as a non-executive director and board member of the football association .\nin our series of letters from africa , journalist and media trainer joseph warungu takes advantage of the temporary lull in tear gas to examine the rocky political climate in kenya .\nwebsite reporters covering theresa may 's visit to cornwall have complained they were not allowed to film her .\na new boss for health services in south wales has been appointed all the way from australia .\nit 's a huge day for english football , as england 's under-20s beat venezuela to take victory in the fifa under-20 world cup .\nuefa has charged the english and lithuanian football associations over crowd disturbances at their euro 2016 qualifier in vilnius on monday .\nitv staff are staging a 24-hour strike and planning a protest outside the broadcaster 's annual meeting , in a dispute over pay .\nregulations governing eligibility for benefits for disabled people will be changed after criticism of their likely impact , the government has announced .\nleicester tigers have signed new england loose-head prop ellis genge from newly-promoted bristol .\na `` terror attack '' has taken place in singapore - all part of a controversial web campaign to launch the newest title from the popular call of duty video game franchise .\npolice have recovered a body from the river nith at kingholm quay , two miles south of dumfries .\nsilvestre varela 's equaliser deep into injury time kept portugal in the world cup as their group g clash with the usa ended in a dramatic draw in manaus .\nthe new premier league season will kick off on a friday evening for the first time , after tv fixtures were announced .\nthe department for regional development breached public contract regulations in rejecting a tender for a road contract worth up to # 100m , a high court judge has ruled .\nplans for a summit aimed at tackling teacher shortages highlight an urgent problem in parts of northern and north east scotland .\nmore than 70 jobs are facing the axe at telford college of arts and technology .\npublic museums and other cultural venues in paris have reopened following the attacks in the french capital on friday .\nrepublicans are lining up against president donald trump 's proposed budget cuts to the state department , hours before his address to congress .\nnine british nationals have been detained in turkey after allegedly trying to enter syria illegally .\nbattersea power station is being offered for sale on the open market for the first time .\nleeds united have signed fc twente midfielder mateusz klich for an undisclosed fee on a three-year deal .\nplaid cymru is unlikely to make cutting the top rate of tax one of its policies if wales ever receives income tax varying powers , its leader has said .\nredruth boss marek churcher says his side 's front row have been key to the club 's good form .\na firm has been fined almost # 14,000 after a fork lift truck reversed over a man 's leg in a warehouse , ripping his skin to the bone .\nthe ghostbusters all female reboot has opened to mainly positive reviews .\nflamingos expend less energy standing on one leg than in a two-legged stance , scientists have confirmed .\na tenfold increase in the number of english schools converting to academies has meant # 1bn in extra costs , says the government 's spending watchdog .\nthe shadow foreign secretary has suggested labour will continue to support legislation paving the way for brexit as it passes through parliament .\nhead coach denis betts is not worried about widnes ' recent form despite four consecutive super league defeats .\nparalympic champions jonnie peacock , hannah cockroft , richard whitehead and kadeena cox are in the great britain squad for next month 's world para-athletics championships in london .\nforty jobs are being created in kilrea , county londonderry , and in antrim town , by manufacturing company the hutchinson group .\nprops d'arcy rae and jamie bhatti have signed new contracts with glasgow warriors .\nleague one side southend united have signed defender ryan inniss on a season-long loan from crystal palace .\nwest brom boss tony pulis will take charge of his 1,000 th game as a manager at former club stoke on saturday and says that one of the biggest changes during his career has been footballers becoming `` film stars '' .\nthe badly burned body of a man found in a lay-by near the peak district had its head and limbs missing and was stuffed in a suitcase , police have said .\nthe united nations -lrb- un -rrb- food agency has called on the united states to suspend its production of biofuel ethanol .\nlabour leader jeremy corbyn has likened theresa may to the comedy character baldrick over her approach to brexit negotiations , telling mps her `` cunning plan is to have no plan '' .\nleague two exeter city made a profit of over # 1.6 m last year , according to the club 's latest accounts .\na man banned from driving for life has appeared in court after he was caught driving his carer 's car home from a pub .\na stretch of river is being searched in an attempt to find the weapon used to kill a businessman who was shot at his home in dorset .\na man who was facing trial for the attempted murder of two boys who were stabbed in a street in hampshire has been found dead in his prison cell .\ncheltenham town have signed midfielder nigel atangana on a two-year deal .\nthe conservatives have released more details about their proposed cap on energy prices .\nuk interest rates have been left unchanged again at 0.5 % by the bank of england 's rate-setters .\nall bank staff are to be trained to spot signs that a customer may be withdrawing cash to give to a scammer .\ngerman chancellor angela merkel has described uk plans to ensure the rights of eu citizens in britain after brexit as `` a good start '' .\nan edwardian swimming baths and an 18th century country mansion are among the most under-threat buildings in the world , according to a heritage group .\nnewcastle falcons are yet to show their true potential after a `` frustrating '' winless start to the premiership , says director of rugby dean richards .\na cctv image of two women who may have witnessed a serious assault at a music venue has been released by police .\ninquiries into serious crimes committed by recently-released prisoners should be published , politicians have said .\n-lrb- close -rrb- : a fall in mining shares hit the main indexes in london , with the ftse 100 closing down more than 1 % .\na man and two children had a `` miraculous escape '' when the car they were in plunged off a flyover .\na 21-year-old man has appeared in court in county clare charged over the fatal stabbing of karl haugh in kilkee at the weekend .\nvenezuela 's baseball season should be cancelled due to the country 's ongoing crisis , a leading coach has said .\nengineering companies in the west country say they are having to recruit skilled workers from abroad because of a shortage of trained engineers .\nfriends and family of a boxer with a `` gentle smile '' , who died after being knocked out in his first fight , have attended a memorial mass .\nthe death of a woman while she was teaching english in china was `` a direct result of a leakage of carbon monoxide '' , a coroner has ruled .\na football team stranded on a motorway after a bridge collapsed are hunting for a mystery bride who asked to have her photo taken with them .\nwelshman elfyn evans was the best-placed british driver as reigning champion sebastien ogier won the opening round of the world rally championship -lrb- wrc -rrb- in monte carlo .\na leicestershire retail park is to get an injection of investment after being purchased by the crown estate .\nmobile and landline telephone services have been restored in shetland after coverage was lost for several hours causing disruption .\nformer first minister alex salmond has suggested a second referendum on scottish independence could be held in two years time .\nross county have completed the signing of central midfielder tim chow on a two-year contract .\na drunk man who was driving his car at 119mph when he crashed into and killed an off-duty police community support officer -lrb- pcso -rrb- has been jailed .\na senior police officer has called for cctv cameras to be installed at the glasgow necropolis to help keep the area free of antisocial behaviour .\nbudget airline monarch says its flights are operating as normal following `` negative speculation '' about the firm 's financial health over the weekend .\n-lrb- noon -rrb- : banking shares helped to lift the market , but shares in m&s slid after the retailer said its turnaround plan was set to hit profits .\ntax officials have been banned from examining material seized from newcastle united 's ground , following a legal challenge mounted by the club .\ncrusaders continue their bid to secure back-to-back irish league titles for the first time in their history when they face glenavon at mourneview park .\nmichael dunlop continued his isle of man tt practice week dominance as he set the fastest superbike lap and set an unofficial superstock lap record .\nqpr forward jamie mackie has signed a one-year contract extension to stay at the club until the end of next season .\ncondensing the six nations championship by a week would `` meddle with players ' health '' , says welsh rugby union -lrb- wru -rrb- chairman gareth davies .\npopular true crime podcast serial is set to become a cable tv series .\na 26-year-old man has been arrested following a serious assault near a bar in johnstone .\nuniversity lecturers are due to start a two-day strike over pay , amid warnings other staff could join the dispute .\nus republican presidential candidate donald trump has reacted angrily after a leading golf tournament was moved from one of his courses to mexico .\ngreat britain skeleton racer david swift has retired from the sport .\nengland international jordan nobbs has signed a new contract with fa women 's super league 1 side arsenal ladies .\nveteran broadcaster robbie shepherd is leaving bbc radio scotland 's take the floor after 35 years this weekend .\nleigh griffiths says celtic are `` fired up '' for next season as they aim to win a sixth straight premiership title .\nat least five people have died and thousands have been rescued after `` historic '' flooding swamped the us state of louisiana .\nkaka has been called up to the brazil squad for next month 's copa america in the united states .\nglory , britney spears ' latest release , has been beaten to the top of the uk album chart by the 35th studio album from us music veteran barbra streisand .\ndozens of people have attended a vigil at the spot where a man was shot dead in a police operation .\naustralian capt georgina sutton has become the first female chief pilot for an australian airline .\npolice in the turkish city of istanbul have used tear gas and water cannon against protesters in a fifth night of anti-government demonstrations .\na former nhs equality boss has been warned she could face jail for swindling # 11,000 by diverting funds to her husband .\na man has been charged after two women were attacked at student accommodation in edinburgh .\n` man on 11-day booze binge caught with deadly weapons at airport ' - well , that 'll get the weekly paper review started .\na council boss has refused to say if he will honour a vow to repay compensation won in a libel case to the authority .\na week after the earthquake hit , scores of rescue workers are still flying in to nepal .\none of the uk 's major payday lenders will refund # 15.4 m to 147,000 customers - many of whom were given loans they could not afford to repay .\nolympic silver medallist emma pooley is set to return to the british cycling team for the rio olympics in 2016 , having retired from the sport in 2014 .\nbenjamin clementine has won the 2015 mercury music prize for his debut album , at least for now .\nandrew robertson will miss scotland 's trip to wembley to face england and up to 10 games for hull city after suffering a calf injury .\naustralia 's woodside petroleum has seen a 27 % jump in first half profit , mainly driven by higher prices for its key product - liquefied natural gas -lrb- lng -rrb- .\nthailand 's senate has rejected a controversial amnesty bill that could have led to the return of former prime minister thaksin shinawatra .\na new home could soon be found for newport 's medieval ship , safeguarding its future restoration .\nbritain 's jack burnell won gold at the abu dhabi leg of the 10km marathon swimming world cup .\nmo farah missed out on a fifth major championships distance double in a row as he finished second in the 5,000 m at the world athletics championships .\njohanna konta and kyle edmund will carry british hopes on the opening day of the us open on monday .\nindustrial production in china recorded a smaller-than-expected rise in april , underlining worries that the economy may be losing steam .\n-lrb- close -rrb- : uk shares joined in the global rally triggered by the us federal reserve 's decision to keep interest rates unchanged .\na pilot scheme offering free breakfasts to primary school children in blackpool has improved their health and punctuality , say researchers .\na maoist leader in india has said that they will take `` full responsibility '' for the safety of trains travelling through areas under their control .\na suspected terrorist has been charged with breaching conditions imposed as part of the government 's new terror monitoring powers .\nuk labour leadership contender jeremy corbyn has begun a tour of scotland as part of his campaign for votes .\nscottishpower customers will soon be able to buy gas and electricity in bundles of days rather than signing up to standard or fixed-price deals .\nthe co-op has been ordered to provide clearer insurance quotations , after it failed to tell motorists about separate charges for no claims bonuses .\nireland coach phil simmons is mulling over whether to accept an offer to take charge of his native west indies .\nthe president of afghanistan has told an emotional husband that a group of men accused of gang raping his wife would be brought to justice .\nsammy wilson has said he will not be running for the dup leadership .\nunaffiliated councillor david simpson has been elected as the new leader of pembrokeshire council .\nthe referendum on the uk 's future in the european union could be a `` tipping point '' for opposition to the `` european project '' , nigel farage has said .\na plan for up to 117 new homes on a site at carrbridge in the cairngorms national park has been turned down .\nstevenage have signed striker armand gnanduillet from league one side chesterfield on a one-month loan .\nderbyshire , leicestershire , somerset , gloucestershire and lord 's have been named as venues for the icc women 's world cup in 2017 .\nbritney spears has staged a stripped-down version of her las vegas residency at her first uk show since 2011 .\nthe company running britain 's track , signals and train stations has overspent , and may be using flaky figures to plan its maintenance work , according to the rail regulator .\ntwo bangladeshi workers kidnapped nearly three weeks ago by gunmen in libya have been freed and are in good health , officials say .\nperhaps predictably , louis van gaal delivered the best line of the day as he reflected on how his side survived an early storm to beat arsenal 2-1 .\npremiership champions saracens have signed hooker dave porecki on a short-term contract .\nforty-year-old jo pavey became the oldest woman ever to claim gold at a european championships when she won a thrilling 10,000 m and got team gb 's campaign in zurich off to the perfect start .\ntheresa may should take responsibility if britain has been too soft on extremists , the leader of plaid cymru has said .\nsamsung 's second recall of its galaxy note 7 handsets is an unprecedented disaster for the company and the wider mobile phone sector .\nteenage racing driver billy monger has returned to the racing track , almost three months after he was badly hurt in a crash .\nboyhood , a film 12 years in the making , has won top honours at the new york film critics awards .\nthe sports centre at ravenscraig is a homage , a `` symphony in steel '' , say the architects .\ntwo people have been arrested after one of three newly installed sheep sculptures was stolen in wrexham .\nemployees in wales could save up to # 1,000 a year by not driving to work , a charity has claimed .\nleague two side cambridge united defied the odds to hold manchester united and earn a richly deserved fa cup fourth-round replay .\nit was a case of beak-a-boo when a bird `` photobombed '' a web camera mounted at a railway station in north west wales .\nerhun oztumer 's audacious lob put walsall on course for victory as they beat swindon in league one .\na revision by the office for national statistics -lrb- ons -rrb- has cast doubt on the uk 's double-dip recession last year .\nthe ampulex `` dementor '' wasp - named after the soul-sucking harry potter monsters - is just one of many new species discovered in greater mekong .\nmore than # 10m has been secured to restore an iconic university college in ceredigion .\nan iphone stolen at a foo fighters gig led to the discovery of more than 30 missing mobiles after police used a tracker app to locate it .\na police unit to help tackle online hate crime and provide better support for victims in london has been launched by the capital 's mayor .\na teaching assistant has been charged with using a pupil 's email account to make a bomb threat against the school where she worked .\nfans of miranda hart 's clownish tv persona wo n't be disappointed with her stage performance as the child-hating miss hannigan in annie .\npolice have been attacked in county down by up to 30 young people throwing stones .\nfive men have been charged after raids by police investigating child sexual exploitation in oxford .\ngeorge clooney 's neighbours in sonning have lodged objections to the star 's plans to install 18 cctv cameras at his oxfordshire home .\nlord sugar has said he would like the bbc to commission a new programme focusing on the progress of past winners of the apprentice .\nbritish cycling has revealed that david millar , the former british road race champion who served a two-year doping ban , is mentoring its academy riders .\nfundamental changes are needed in how care of vulnerable adults is commissioned and monitored , a report into abuse at a private hospital said .\nthe last of five gold artefacts hidden in scunthorpe as part of an artistic treasure hunt has been discovered .\nhelicopter footage of officers wading into icy waters to rescue a man who had driven a suspected stolen car into a reservoir has been released by police .\ngraeme mcdowell dropped five off the pace at the qatar masters after struggling to a three-over-par 75 in friday 's second round in doha .\ncontroversial french comedian dieudonne m'bala m'bala has been detained by police for a facebook comment appearing to back paris gunman amedy coulibaly .\nportadown have forfeited the points they won by beating ards on saturday and been fined # 350 for playing robert garrett while he was suspended .\nbritain 's andy murray ended the run of home favourite nick kyrgios with a brilliant display to reach the australian open semi-finals .\nthe bbc world service will launch 11 new language services as part of its biggest expansion `` since the 1940s '' , the corporation has announced .\na prototype patch could help the repair the damage caused by a heart attack , scientists say .\na boy has been arrested in connection with the sexual assault of two six-year-old girls during a trip to legoland .\nan appeal has been launched for public donations towards a national memorial to police officers killed in the line of duty .\na man has appeared in court after a fire at peterhead harbour .\nchris and gabby adcock will this week bid to become the first british badminton world champions since 2006 .\nceltic completed a domestic treble without losing a game as tom rogic fired in a stoppage-time goal against aberdeen to win the scottish cup .\ntreble-chasing juventus clinched a record sixth consecutive serie a title thanks to victory over lowly crotone .\nalbania qualified for a major tournament for the first time in their history as victory in armenia secured their place at euro 2016 .\ntens of thousands of people have celebrated diwali in leicester city centre .\namazon has announced it will offer live television channels via its prime video service , for an extra fee .\na man from the vale of glamorgan is selling a rare union jack flag , said to have been flown at the battle of trafalgar .\nscientists are working on a welsh `` super mead '' which could protect drinkers from the scourge of food poisoning at the late-night takeaway .\na human skull has been found in the garden of a house in county dublin , gardaã -lrb- irish police -rrb- have said .\nhundreds of volunteers have joined police to search a forest in wiltshire for a woman who vanished after leaving a nightclub in swindon .\njonathan rea has become the first rider since carl fogarty in 1999 to win successive world superbikes titles as he finished second in qatar .\nwhen proposing new laws , ministers can fill the statute books from the relative safety of their positions in government .\nforeign secretary boris johnson has been asked to investigate claims that soldiers ' relatives have been stopped from visiting their graves in france .\nsouth africa bowled england out for 101 on the final morning to seal a 280-run consolation victory in the final test .\na teenage girl who police say was raped during a facebook live broadcast is too scared to return to her chicago home , her mother has said .\nformer us president barack obama is to make his first visit to scotland when he addresses business leaders in the capital next month .\nkilmarnock paid heavily for the first-half sending-off of their captain manuel pascali as celtic jumped to fourth in the scottish premiership with a comfortable win .\nthe overwhelming sense at the end of the paralympic games closing ceremony was one of disbelief .\na son of jean mcconville has said sinn féin leader gerry adams warned him several years ago there would be a `` backlash '' if he released the names of those he believed killed her .\nwing george north says he is glad to have the `` monkey off his back '' as he returned in wales ' win over ireland after five months out with concussion .\ndoctors had to wait up to 10 minutes for vital drugs to treat a mother after an emergency caesarean section , an inquest has heard .\na man tried to buy ricin from the `` dark web '' after the idea was `` implanted in his brain '' from watching the breaking bad television series , a court heard .\nan unbeaten century from captain varun chopra secured a draw for warwickshire against hampshire at edgbaston .\nsouth africa 's women beat ireland by 68 runs to take an unassailable 2-0 lead in their four-match one-day international series in dublin .\nsome people say you are only as good as your last haircut .\nformer classmates of adam lanza , 20 , the man identified as the gunman in the sandy hook school killings , do not remember much about him .\na man 's leg was impaled as he tried to climb a spiked metal fence in bedworth , warwickshire .\na new # 20m-a-year cap on the cost of new drugs will be introduced in the nhs in england in an attempt to save money , health chiefs have announced .\na man has been arrested for allegedly using a stolen bulldozer to crush four vehicles and a house in australia 's new south wales .\nformula 1 bosses have agreed to ditch the controversial double points rule .\nfour-time olympic cycling champion laura kenny has given birth to her first child .\na feasibility study into a third river thames bridge in the reading area has been given council backing .\nup to 4,000 people in wales could be affected if the hoover pension scheme goes into the pension protection fund -lrb- ppf -rrb- , bbc wales understands .\none of the world 's largest and smelliest flowers has blossomed for the first time in scotland .\noscar pistorius ' siblings have criticised media coverage of his trial , on the eve of the south african athlete 's sentencing .\na delegation from northern ireland is travelling to cuba to provide support for peace talks between the colombian government and the farc rebel group .\na college bought manchester united season tickets in a `` growth strategy '' before cutting more than 100 jobs .\npolice are searching for a woman who has gone missing with her three-year-old son .\nthe removal of the elephant and castle roundabout has been causing chaos for commuters , with motorists complaining of queues of more than an hour .\nswindon is known by some as `` honda town '' and detroit as `` motor city '' .\nchris gunter says wales will prove they are not a one-man team as they attempt to keep their world cup qualification hopes alive without gareth bale .\nshutter speed finished fourth and rhododendron was pulled up by jockey ryan moore as senga claimed victory at the prix de diane in chantilly .\nsites for testing wave and tidal energy off the west coast of anglesey and south pembrokeshire have been approved .\nformer staff at a government-run regeneration body in londonderry are taking a case against stormont over the way they lost their jobs .\nbooks of condolence have opened for sir terry wogan , as his breakfast show successor chris evans paid tribute on air to `` radio 's eric morecambe '' .\nimmigration officials raided an indian restaurant during a uk independence party conference dinner , sending the chef `` running into the night '' .\nleicester city manager claudio ranieri has asked his premier league title winners to `` stay one year more '' .\nlondon underground train drivers with the aslef union have voted to accept a pay deal for a new all-night tube service .\nnewport gwent dragons chief executive stuart davies says he is disappointed at newport county boss graham westley 's criticism of the rodney parade pitch .\negypt 's election commission has reinstated former prime minister ahmed shafiq as a candidate in the country 's forthcoming presidential election .\nrescues of a fallen horse rider , someone trapped in a gorge and a man stuck in mud are among the first missions completed by a new helicopter unit .\npakistan and afghanistan have established a hotline between their respective military commanders to reduce frequent cross-border tensions .\npolice are appealing for witnesses following a head-on crash between a car and a bus in west lothian .\na paramedic who admitted sexually assaulting a teenager and possessing indecent images of her has been jailed .\na labour mp has stepped down as an aide to the shadow chancellor over a facebook post suggesting israel should be moved to the united states .\nderbyshire captain gary wilson has said his side will be back in contention for t20 finals day next season after their quarter-final defeat to hampshire .\n`` i was so surprised when i got the letter , and a bit sceptical too , '' says liisa ronkainen , one of 2,000 finns chosen for a government experiment to provide unemployed people with a basic income .\nthe selection of rugby sevens players mark bennett and mark robertson brings the total number of scottish competitors heading to rio for this summer 's olympic games to 50 .\n`` go , go , mubarak go '' and `` the people need to end this regime '' shouted the angry crowds around al-istiqamma mosque in cairo 's giza square , as they shook their fists at the lines of helmeted riot police after friday prayers .\nthe duke of kent has left hospital following successful treatment for a dislocated hip .\nliverpool boss jurgen klopp says he will do `` everything i can '' to help steven gerrard develop into `` the best manager he can be '' .\nfrom afon dwyfor to the animals in the welsh mountain zoo , paul jenkinson 's pictures show his native north wales in all its glory .\na man has died after apparently falling through the roof of a building at an industrial site in derbyshire .\nsadiq khan has been elected the new mayor of london - boosting labour after it slumped in scotland 's elections .\na newly discovered species of gecko has tearaway skin that leaves predators with nothing but a mouthful of scales when attacked .\nfilm star johnny depp and his actress wife amber heard are to divorce , us court documents have revealed .\nnorth wales needs more devolution if it is to fully benefit from the `` northern powerhouse , '' manchester city council 's leader has said .\nasian markets headed lower after a survey of china 's manufacturing sector indicated it is shrinking at the fastest pace for six-and-a-half years .\neverton have abandoned plans for a new stadium at walton hall park but have identified two possible alternative sites within the liverpool boundary .\npartick thistle manager alan archibald points to the procession of coaches coming to scotland to attain their uefa licence as proof that the standard of coaching in scotland is high .\npolice and family are concerned for the welfare of a man and his two small children who have not been seen since monday morning .\nan 18-year-old man has appeared in court charged with attempting to travel to syria to commit acts of terrorism .\na metal barrier has blocked a bus from ending up in a river after a crash in the scottish borders .\ndesmond tutu has said he would support assisted dying for the terminally ill .\narsenal ladies reached their fifth consecutive continental cup final with a 3-1 win over birmingham city .\nat least 16 people have been injured after two amtrak trains collided in california , us media reports say .\nthe united nations has warned that president donald trump 's plans to cut contributions to peacekeeping will make such work `` impossible '' .\nactor christopher biggins has been removed from the celebrity big brother house for making `` a number of comments capable of causing great offence '' , the reality tv show has said .\nactor anthony valentine , best known for the 1970s tv series colditz and raffles , has died at the age of 76 .\nbrazilian leo bonatini scored on his debut to give wolves an opening-day championship win against middlesbrough .\nmalaysian police have said a blast at a bar last week , which injured eight , was the first attack by the so-called islamic state group in the country .\ntransport for london -lrb- tfl -rrb- has said it is `` sorry '' about the death of a female cyclist who was killed on a cycle `` superhighway '' in east london .\nthe us supreme court has upheld a key portion of president barack obama 's healthcare law , preserving health insurance for millions of americans .\ncampaigners have opened a camp with thousands of protesters due in newport ahead of next week 's nato summit .\nronnie o'sullivan says he was `` stressed '' by the pursuit of his sixth masters title .\na campaign to vaccinate girls against a cancer-causing sexually transmitted infection has led to a dramatic drop in reported cases .\nbydd y rhestrau diweddara ' o gategorïau ysgolion yng nghymru yn cael eu cyhoeddi yn ddiweddarach heddiw .\ni have certainly had worse 24 hours in my life than winning the grand final with melbourne city and then being named in the wales squad for the cyprus cup .\nhundreds of young men and women attended a concert by afghan pop star aryana sayeed in the capital kabul despite opposition from conservatives , and threats of an attack .\natletico madrid forward antoine griezmann is a doubt for saturday 's derby against real madrid but did not suffer a broken foot in france 's 2-1 win over sweden on friday .\nformer world number one tiger woods says he is getting `` professional help '' to manage medication for pain and sleep loss as he tries to return to fitness .\na week-old fox cub was mistaken for an abandoned puppy after it was found by a road and handed in to a vet surgery .\na council boss has been suspended while an independent investigation into his conduct takes place .\nnewport gwent dragons staged a dramatic fightback before holding off cardiff blues to reach the european challenge cup semi-finals .\na man is protesting outside a mcdonald 's after staff refused to serve him at the drive-thru on a horse and cart .\nan israeli woman facing 74 child sex charges in australia is mentally unfit to face extradition , a court says .\nbritain should turn swathes of its upland pastures into woodland to help prevent flooding , according to a former environment minister , lord rooker .\npolice investigating the disappearance of a fraserbugh man have launched a fresh appeal for information six months after he was last seen .\na uk ticketholder who won a # 34m jackpot in friday 's euromillions draw has come forward to claim the prize .\nsocial media users have reacted with amused bewilderment after an official said it was illegal for a man to stare at a woman for more than 14 seconds .\nisrael 's defence minister has accused turkey of buying oil from the so-called islamic state -lrb- is -rrb- group , thereby funding the militants ' activities .\nasian markets traded lower on thursday with investor sentiment dented by a weaker than expected first quarter growth figure in the us .\nindia 's dramatic move to scrap 500 -lrb- $ 7.60 -rrb- and 1,000 rupee notes is poor economics , a leading economist says .\nthe us said it `` expects '' pakistan to act against perpetrators of a deadly attack on an indian air force base .\nnew 5,000 m british indoor record holder laura muir has what it takes to win world medals , liz mccolgan has said .\na man in his 40s has been arrested after a man found with head injuries in waterford city centre on christmas day died in hospital .\nsuper-heads could take over running clusters of schools in birmingham , as the government considers its response to allegations of extremism .\nfive people have been found guilty of conspiracy to defraud a local government election .\nair , sea and land searches were made over the weekend for a missing 18-year-old inverness man .\nthe convener of scotland 's crofting commission has reiterated he will not stand down amid a heated public dispute over common grazings - unless he is forced to by the scottish government .\nspain 's socialist leader has lost a bid to form a government after both main rival parties voted down his attempts to form a coalition .\nscientists at glasgow university say they have found a key genetic indicator of how long an individual will live .\ntwo woman have died following a head-on road crash in the borders .\nthousands of owners of nintendo 's new console , switch , have complained about dead or stuck pixels creating distracting and annoying dark squares on their screens .\nall photographs by tommy trenchard and aurelie marrier d'unienville .\nthree of wales ' four police forces have been told they must do better to protect and support vulnerable people and domestic abuse victims .\nshares in mining firm anglo american have fallen to a record low as the company said it would sell huge chunks of its business and shrink its workforce by nearly two-thirds .\na man has appeared in court facing a charge of murdering a woman .\ndifferences over the conflict in eastern ukraine have marked the first formal meeting of the nato-russia council in almost two years .\ntom delonge has denied that he is leaving blink 182 .\nscotland 's seonaid mcintosh has won gold at the european shooting championships in baku , azerbaijan , three days after her sister jennifer achieved the same feat .\nireland were on the receiving end of two controversial lbw decisions as they lost their second one-day international against afghanistan by 34 runs .\ndavid cameron will meet the irish pm enda kenny on thursday as he continues his talks with other european leaders to try to win support for changing britain 's relationship with the eu .\nsome council staff have returned to work after a major fire destroyed their offices .\nleicester 's decision to sack claudio ranieri nine months after winning the premier league made former foxes striker gary lineker `` shed a tear '' .\nformer aig boss hank greenberg is to go on trial in new york this week over a decade after civil charges were filed .\nspreading lung cancer cells are like tents which have collapsed and are adrift in the wind , scientists from the university of york have discovered .\nthe russian orthodox church says it has not found any fragrant myrrh seeping from a bronze bust of tsar nicholas ii , after a russian mp made such a claim .\ndavid cameron has voiced his `` strong support '' for the expansion of grammar schools during a visit to the south east .\nfalkirk council 's pension fund has invested # 30m in a scheme to build social housing in scotland .\nthe parents of a severely premature baby from pembrokeshire say they will take legal action against the health trust in charge of the hospital where he died .\nthe birth of dolly the sheep seemed one of those moments in scientific research that would change the world forever .\nsir bruce forsyth is to return to strictly come dancing for a special children in need edition of the show .\ntax rises will mean # 375m extra a year for the welsh government if labour wins may 's election , the party will say as it launches its welsh manifesto .\nformer olympus chairman tsuyoshi kikukawa has pleaded guilty to charges of falsifying accounts , covering up losses of $ 1.7 bn -lrb- â # 1.1 bn -rrb- , at the opening of his trial .\nthe closure of the forensic science service should have no negative impact on criminal justice as long as the wind down is properly handled , commercial providers have told a commons inquiry .\na carmarthenshire d-day veteran has been presented with france 's highest military honour at his hospital bed .\nyou are about to witness viral history in the making and none of it will make any sense to you .\nthe uk 's dominant services sector weakened in february , registering its slowest rate of growth for nearly three years , a survey has indicated .\nalastair cook 's role in england 's series victory in india was described as `` extraordinary '' by england and wales cricket board chairman giles clarke .\ntickets for bbc sports personality of the year 2015 in belfast sold out in 35 minutes - the quickest sell-out since the show went on the road in 2006 .\nleon goretzka scored twice in the opening eight minutes as germany beat mexico 4-1 in sochi to join chile in the confederations cup final .\nbecky james has suffered a setback in her recovery from a serious knee injury , says british cycling chief shane sutton .\naustria winger martin harnik will miss thursday 's world cup qualifier against wales in vienna because of a calf injury .\na new nhs trust set up to run stafford 's hospital requires improvement , inspectors have said .\nthe british teenager who sold his news summary app to yahoo for millions is facing a major life choice as he weighs education and business opportunities .\na decision by supermarket chain asda to increase the price it pays for milk is a move in the right direction , the ulster farmers ' union -lrb- ufu -rrb- has said .\ndavid cameron says he will create 600,000 extra free childcare places if he is returned to power next month .\na drink driver found by another motorist lying in the road with his trousers down has been ordered to carry out 200 hours of unpaid work .\nformer wimbledon champion andy murray and his wife kim sears are expecting their first baby , his agent has confirmed .\nnewport gwent dragons head coach kingsley jones says flanker ollie griffiths has a `` very good chance '' of being picked by wales .\na scheme to compel private developers to contribute towards building social housing is `` not realistic '' for most of northern ireland , a report has found .\nthe pace of hiring permanent staff in the uk slowed down in may , according to a report .\nforest green rovers have signed midfielder charlie cooper from birmingham city on a one-month loan .\nthe government has rejected a request from a group of football supporters to investigate the rental of the olympic stadium to west ham united .\nfloyd mayweather and conor mcgregor continued to trade insults on the second day of a media tour to promote their las vegas fight in august .\nhuddersfield head coach david wagner has signed a new two-year deal after guiding the club to the premier league for the first time .\nitaly 's first female astronaut , samantha cristoforetti , is spending almost six months on the international space station .\nharry shearer , who voices ned flanders and mr burns in the simpsons , is to leave the show after more than 25 years following a dispute with producers .\nserge godin remembers the event that gave him the drive and determination to succeed in life - watching his father 's sawmill burn down .\na rugby player collapsed with a head injury minutes after an opponent 's knee hit her head , an inquest heard .\nformer arkansas governor mike huckabee has launched a second attempt at getting the republican nomination for the presidency .\na dickensian-style protest has been held to oppose sports direct 's use of zero-hour contracts at the company 's annual general meeting .\na 21-year-old woman has died following a crash involving two cars in south belfast .\nteenage midfielder keira walsh 's fine goal gave manchester city a valuable 1-0 lead in their last-16 women 's champions league tie against brondby .\nscotland head coach vern cotter praised the character of his side to `` grind out '' their 21-16 win over japan despite an underwhelming performance in tokyo .\nboris johnson has been quizzed by reporters as he left his home in london this morning .\nthe number of recorded sexual offences against children in england and wales has risen by a third , the nspcc says .\nmembers of an organised crime gang who plotted to supply millions of pounds worth of drugs have been jailed .\nan opposition leader in congo-brazzaville has called for a `` peaceful uprising '' ahead of sunday 's referendum on whether the president can run for office again , afp news agency reports .\nwhen the spike in applications for the ill-fated renewable heat incentive -lrb- rhi -rrb- took place the minister responsible was mostly away from his desk .\nmanchester united have agreed a deal to sign dutch forward memphis depay from psv eindhoven .\nbristol city will sign midfielder josh brownhill from preston at the end of his current contract on 30 june .\nthe number of adults taking out individual savings accounts -lrb- isa -rrb- has fallen to its lowest level for ten years , according to official figures .\ndanny swanson has confirmed that he is leaving st johnstone to join hibernian , saying he could not resist the lure of his boyhood favourites .\ndebt has become a rarity in scottish football .\ndanny hylton 's equaliser against exeter city helped luton town salvage their fourth draw in six league two games .\niraqi forces have reached the besieged town of amerli in northern iraq , where thousands have been trapped by jihadists , military officials say .\nthere have been a number of attacks in the city of brussels , the capital of belgium .\nthere were 634 reported dog attacks in wales in 2016 , up by 124 from the year before , according to latest figures .\nnorthern ireland 's main parties are expected to hold talks with the prime minister in downing street on thursday .\nengland 's batsmen will continue to fail in india if they persist in playing slow bowling `` horrifically '' , says their former off-spinner graeme swann .\nthe ftse 100 closed slightly lower on the last day of campaigning before the general election .\nivory coast are confident wilfried zaha will soon be part of their team , but new england boss gareth southgate has not given up on the forward .\na third human foot has been found close to where two others were discovered earlier this year .\na large boulder which has sat in the middle of a road for decades is to stay where it is despite a car crashing into it , a council has said .\nin the uk , the may day bank holiday offers a chance to take a short break away from the daily grind , and for some people that means hitching up the caravan to the back of the car and heading into the countryside .\ncornish pirates boss ian davies says ill-discipline `` came back to haunt '' his side in their 36-15 british and irish cup semi-final defeat at london welsh .\nurgent repairs on the forth road bridge should be completed on time and the structure re-opened to all traffic , scotland 's transport minister has said .\nfirefighters in england say their next one-day strike in the long-running dispute with the government over pensions will be on 25 february .\nthe 20th anniversary of the ordination of wales ' first women priests will be celebrated with simultaneous services at every cathedral in the country .\ntelescopes looking for extra terrestrial intelligence should re-open within weeks after donors replaced income lost in public funding cuts .\nthe kingdom of saudi arabia is one of the main players in the arab world .\na suicide car bomber has killed at least 16 people in the somali capital mogadishu , officials say .\ncouncillors are to be given a progress report on plans to develop a national resilience centre in dumfries .\nindian prime minister narendra modi 's latest remark about bangladeshi pm sheikh hasina 's political achievements is attracting criticism and humour in equal measure on social media , reports bbc monitoring .\nthe brother of a british tourist found dead after a beach party in thailand says he suspects foul play and want answers from the authorities .\nanything less than victory against the mallards will see portadown relegated from the irish premiership .\nwork is being carried out to try to prevent flooding in parts of north wales as heavy rainfall is forecast to continue into sunday .\nparts of leeds city centre could be closed to traffic in a bid to make the city less `` road heavy '' .\nsnakes on planes are old hat - it 's zombies on trains you need to worry about this year .\nchurch bells have rung out in cirencester to celebrate the moment 250 years ago when the first peal of the 12 bells of the town 's parish church took place .\nstriker alan forsyth says scotland will relish facing some of the world 's top teams in london in the next week .\na militant from the so-called islamic state -lrb- is -rrb- believed to be responsible for a deadly attack on us troops in northern iraq has been killed in a drone strike , the us military said .\nnancie atwell , an english teacher from maine in the united states , has been named as the winner of a competition to find the world 's best teacher , with a prize of $ 1m -lrb- â # 680,000 -rrb- .\nan investigation into how a spacex rocket exploded is uncovering a `` difficult and complex failure '' , the firm 's founder elon musk has said .\na 61-year-old woman arrested by police investigating the murder of a man at a county antrim nursing home has been released unconditionally .\nsister nirmala , the nun who succeeded mother teresa as the head of a charity in the indian city of kolkata -lrb- calcutta -rrb- , has died , aged 81 .\ncontractors were left red-faced after incorrectly painting the word `` rihgt '' on a road off a supermarket car park .\nlabour has promised to boost the benefits of the `` unsung heroes '' who care for the vulnerable by # 10 a week if the party wins the next election .\ndavid haye and tony bellew were physically kept apart at a heated news conference for saturday 's heavyweight bout at london 's o2 arena .\na community defibrillator which was stolen last december has gone missing again .\nmexican sergio perez is to continue with force india for a fourth successive season in 2017 .\na university has withdrawn a poster which appeared to ridicule hollywood star jennifer lawrence after her nude pictures were leaked on the internet .\niranian president hassan rouhani will arrive in france on wednesday for the second leg of his state visit to europe , after three days in italy .\nformer congolese rebel leader jean-pierre bemba has been found guilty of war crimes in a landmark trial at the international criminal court -lrb- icc -rrb- .\nthe father of a seven-year-old japanese boy who was found alive after six nights alone in a dense forest says his son has forgiven him .\na tweak to siri 's pronunciation of barbra streisand 's name will be heading to apple products soon .\nthe smoking ban which came into force 10 years ago has saved scots from breathing in more than half a tonne of toxic material , a study has suggested .\nabout 2,000 people have attended the funeral march for a german woman who died fighting islamic state -lrb- is -rrb- militants in syria .\na man has been arrested on suspicion of conspiracy to murder after pieces of human bones were found by detectives investigating the death of a man 25 years ago .\na new test that could hold the key to predicting blood cancer patients ' survival has been developed by cardiff university .\ndavid tennant says his latest play is being constantly tweaked to feature topical jokes - because the news keeps producing such good material .\nif the uk leaves the european union , british households could be on average as much as # 1,700 a year worse off , a think tank has said .\ngeneral motors has announced plans to invest $ 10m -lrb- # 6.96 m -rrb- in a canadian plant as part of an effort to boost driverless technology and cold weather testing .\nrapper kanye west has declared he wants to work with ikea on a new range of furniture .\na motorcyclist who was killed in a crash on the isle of man has been named by police as kevin baker .\nnottinghamshire piled up 446 on the opening day of the 2016 season as steven mullaney punished newly-promoted surrey with an impressive hundred .\na 10-year-old child has suffered serious injuries after being hit by a car in the vale of glamorgan .\nmore than 1,000 people have taken part in a pilates class at the place where its german creator was interned on the isle of man in world war one .\nchinese telecom giant zte has been fined $ 1.1 bn and will plead guilty to charges that it violated us rules by shipping us-made equipment to iran and north korea .\npope francis has condemned the `` complicit silence '' about the killing of christians during a good friday service in rome .\na non-league footballer who allegedly brandished a knife at an opposition fan is being sought by police .\ntwo retired prison officers are trying to help the men they used to guard to return to the world of employment .\nchildren who read for pleasure are likely to do better in maths and english than those who rarely read in their free time , research suggests .\n-lrb- close -rrb- : wall street markets closed the week on an upbeat note , after a strong us jobs report pointed to further economic growth ahead .\nus republican presidential nominee donald trump has backtracked on a claim that he saw video footage of a us cash payment to iran .\na canadian man held captive by islamist militants for months in the philippines has been killed .\nan australian man , phuc dat bich , has said he is glad his fight to use his name on facebook has made people happy .\ned miliband has visited scotland the day after appearing to rule out a deal with the snp - even it meant putting the conservatives in power .\nunion leaders at the trawsfynydd nuclear power station in gwynedd have welcomed suggestions a new smaller reactor should be located there .\na poster urging parents not to use the police to scare their children has been seen more than 3.5 million times .\ncommonwealth games silver medallist stephanie inglis has opened an eye for the first time during her recovery from a serious accident in vietnam .\na woman who died after being found seriously injured in leeds , sparking a murder inquiry , has been named by police .\ntwo police officers have been sacked after an inquiry found their claim to be the first indian couple to climb everest was fake .\nthe government and french energy giant edf have signed the key contract for the new # 18bn hinkley point c nuclear power station .\ncliched chat of bragging rights and form going out of the window while still `` only being three points '' are plentiful around derby day .\nfewer than one in five eligible voters in some parts of england previously chose anyone to represent them in local elections , raising fears of a democratic deficit .\nthe manx government has apologised for the `` gross systemic failures '' of a psychiatric hospital which led to the death of a mental health patient .\na brawl broke out between audience members during a hunger games-inspired performance of michael flatley 's lord of the dance .\nadrian pogmore was described in court as a `` swinging and sex-obsessed air observer '' who went to extraordinary lengths to spy on naked people and film them from above in a police helicopter .\naustralia will increase its troop presence in afghanistan following a formal request from the us , canberra has said .\nbryony page became the first british woman to win an olympic trampoline medal by claiming silver in rio .\na mother is preparing to bury her son for a second time after being told his organs were removed and stored in secret for more than 20 years .\na man beaten with iron bars by a masked gang has blamed dissident republican paramilitaries for an attack at his home in derry .\nthe agony continued for steve housham 's north ferriby in a 2-1 loss at home to bromley .\nforest green rovers have signed wales under-19 international striker blake davies on a one-year deal .\nkatie cooke has a lifestyle clash few others can rival .\nmunster will be investigated over their management of conor murray 's head injury in the european champions cup victory over glasgow on saturday .\ndundee did a first-half demolition job on a dreadful motherwell outfit as the home side 's miserable recent run continued in the premiership .\na castle has welcomed 20 chicks to its grounds after hens nested next to a lifelike replica boar .\nnewspapers in china have gone into propaganda overdrive , a day after a tribunal in the hague ruled against beijing 's claim to the resources of much of the south china sea .\nthere 's little trace of the horror - just a sunbed draped in flowers .\na us judge has rejected a request from two native american tribes to halt construction on the controversial dakota access oil pipeline .\nburnley 's sean dyche is in the top three premier league managers of the year , says west brom boss tony pulis .\ndowning street has denied that the pm 's spokesman warned a newspaper against running a critical story on the culture secretary 's expenses because of her role in enacting the leveson proposals .\na crisis-hit computer project for the nhs 24 telephone helpline will not be fully rolled out across scotland until the end of next year - four years later than originally planned .\nacademics have called for a ban on smacking after finding `` compelling '' evidence that it creates a `` vicious circle '' of conflict and violence that carries on into adulthood .\na british woman jailed for taking her clothes off on a mountain in malaysia has left borneo ahead of returning to the uk later .\nreaching its centenary amidst a general chorus of vilification around the region , the legacy of the secret sykes-picot agreement of 1916 has never looked more under assault .\na bangladeshi man who went missing for 23 years has been reunited with his family , who had given him up for dead .\nthe parents of a woman murdered by her ex-boyfriend have said they knew immediately he was responsible .\npolice have been criticised for failing to stop an 87-year-old driving the wrong way on major roads before killing himself and another man in a crash .\ngwynedd 's council leadership has come under fire from the church in wales in a row over the future of plans for a new # 10m school campus serving the bala area .\na 33-year-old man has been arrested in connection with a two-vehicle crash which claimed the life of a 75-year-old woman in county down .\na pilot project asking tourists to put money into communities they visit in snowdonia has raised enough to train nearly 50 young people in conservation and outdoor skills , organisers say .\na cancer patient from edinburgh has become the first uk woman to give birth following a transplant of her frozen ovary tissue .\nnew leicester boss craig shakespeare says he is `` not looking beyond this season '' despite being backed by his players to get the job longer term .\nthe husband of killed mp jo cox has praised the public 's `` incredible generosity '' after a fund set up in her memory hit # 1m in donations .\nisraeli prime minister benjamin netanyahu has opened a holocaust exhibition at the auschwitz nazi death camp site in southern poland .\ntwo guernsey police officers have been injured in a public order training exercise .\nrepublican white house hopeful donald trump has said he would stop cash sent home by mexicans based in the us , until the country pays for a border wall .\ntraders who say they are angered by the decline of perth city centre have launched a campaign to `` re-energise '' the high street .\nindonesia 's opposition democratic party of struggle -lrb- pdi-p -rrb- leads parliamentary polls but its star candidate may face a tougher path to the presidency , early election results indicate .\nconfederation of north , central american and caribbean association football leader jeffrey webb says he has `` no intention '' of replacing sepp blatter as fifa president .\nan alleged member of a german neo-nazi cell has gone on trial in munich in connection with a series of racially motivated murders .\nsouth african police say four people have been arrested in connection with the murder of former actor on popular local tv series generations .\nwill grigg 's late strike secured a point for wigan at bottom club colchester in a thrilling encounter .\nwasps extended their lead at the top of the premiership with a kurtley beale-inspired victory against fellow play-off hopefuls bath .\nleague one strugglers colchester united had to settle for a point against play-off chasing millwall .\na burglary suspect has claimed that his pet dog chewed off the electronic tag he had been wearing as part of his bail conditions , a court has been told .\nformer olympic champion lindsey vonn claimed her first win since returning from almost a year out with victory in the downhill race at garmisch , germany .\njeremy corbyn asked david cameron questions emailed to him from the public as he tried what he called `` a different '' style for his debut pmqs .\nformer yorkshire and england off-spinner bob appleyard mbe has died at the age of 90 .\nthe new â # 1.35 bn road bridge across the forth will now open in may 2017 , six months later than originally planned .\ninverness ct head of youth development charlie christie believes a quota system should be introduced in scottish football .\nwith hogmanay looming , dj macintyre , gaelic officer at the university of the highlands and islands , highlights a tradition once popular on south uist in the western isles and with a connection to norse culture - hogmanay boys .\nblack and asian teenagers are more likely to apply to university than white youngsters in england , according to the ucas admissions service .\na man accused of strangling a police officer has told his trial he had no intention of hurting him .\nsinger-songwriter peter sarstedt , best known for the song where do you go to -lrb- my lovely -rrb- , has died at the age of 75 , his family has said .\nformer italian prime minister silvio berlusconi - whose four-year sentence for tax fraud has been reduced to 12 months under an amnesty - has submitted a formal request to perform a year of community service , instead of being confined to the gilded cage of one of his luxury homes under house arrest .\ntwo victims of the alton towers rollercoaster crash will hold a charity night to raise money for the organisations that helped them .\nyorkshire and durham proved that championship cricket can be just as action-packed as an ashes test as 20 wickets fell on day one at scarborough .\nsouth african police have arrested a man they found using a knife and fork to eat the heart of his ex-girlfriend 's new lover .\nthe most striking thing about mauricio macri 's first news conference as president-elect of argentina was , well , that there was a press conference at all .\ncampaigners fear too many young people are being put on the powerful anti-acne drug roaccutane , which has been linked with suicidal feelings .\nunskilled migrants should be stopped from moving to britain for five years to help reduce net migration , a report by a pro-brexit group has said .\ntoo many babies born with a cleft palate are being diagnosed late , causing unnecessary distress , the royal college of surgeons says .\nthe england and wales cricket board says it is monitoring the security situation in bangladesh before england 's tour in october .\nthe family of a woman who killed herself after being discharged from hospital has labelled a report into her death `` psycho babble and twaddle '' .\nmichael matthews won stage 10 of the tour de france as britain 's chris froome retained the yellow jersey .\na 7m -lrb- 23ft -rrb- diameter giant replica of the moon has been installed in the university of bristol 's great hall .\nuk scientists say they have produced a new mix of cement that should be much more effective at containing nuclear waste in a deep repository .\nthe two most notorious and violent street gangs in honduras have promised to end the violence which has claimed tens of thousands of lives .\nsoldiers from the royal welsh have taken part in a parade - joined by l/cpl shenkin , the regimental goat .\na chip shop takeaway driver has been attacked with a golf club and robbed of the food he was delivering in west lothian .\nnhs spending on private ambulances for 999 calls in england has trebled in four years , bbc research has found .\nmalaysian pm najib razak is facing pressure internationally and at home amid us allegations of massive fraud at state investment fund 1mdb .\na power cut that hit part of the ukrainian capital , kiev , in december has been judged a cyber-attack by researchers investigating the incident .\nthe conservatives are hoping to win back seats in the north-east of england on 8 june - has the party finally escaped the shadow of margaret thatcher which helped make much of the region a no-go area for them ?\npapiss cisse led the tributes at a memorial for former newcastle united team-mate cheick tiote in china .\nplans for the uk 's first spaceport on the kintyre peninsula are being unveiled at westminster .\nthis year 's grand national winner rule the world has been retired .\nthe chancellor has announced a # 2bn rescue package for the social care sector in england .\na blackpool football fan who is accused of libelling the club 's owners on the internet has told a court he has `` never written anything defamatory '' .\ndefence of the realm is often cited as the first duty of government .\nuzbekistan 's hasanboy dusmatov won olympic gold in the men 's light-flyweight with victory over colombian yuberjen herney martinez .\nmanager roy hodgson says he does not doubt england 's `` patriotism or desire '' , in the wake of comments made by wales striker gareth bale .\nsuggestions for the potential host site of the 2020 national eisteddfod in ceredigion are being sought .\nhalf of parents-to-be in wales are either unsure or have decided against breastfeeding , according to a survey .\na deal on the financial arrangements that will underpin scotland 's new devolution powers `` seems within reach '' , a uk government minister has said .\nthe decision by the bbc to drop jeremy clarkson , the host of top gear , for carrying out a verbal and physical attack on one of the show 's producers , has been met with both condemnation and approval by social media users worldwide .\nan aircraft cabin ban on large electronic devices was prompted by intelligence suggesting a terror threat to us-bound flights , say us media .\ncanada has revoked the citizenship for the fourth time of a 93-year-old man who has admitted to being a former nazi death squad member .\nnew research has highlighted security issues on four separate smart gadgets .\ncuba 's national assembly has given its backing to president raul castro 's plans to reform the country 's stagnating economy .\neven while the iraqi prime minister was on his way to mosul to declare the liberation of the city , there was still the occasional sound of gunfire and coalition warplanes flying overhead .\na police force has begun the rollout of body cameras for 800 officers and community support officers .\nex-bbc director general mark thompson has told mps the corporation had not `` lost the plot '' when it agreed a pay-off of almost # 1m to his former deputy .\ntwo schools at the centre of the trojan horse inquiry are to lose their government funding .\nitaly has declared a state of emergency in the regions worst hit by wednesday 's earthquake as hopes of finding more survivors fade .\nthe family of a pregnant woman who was strangled to death in essex said she was `` an absolute angel '' .\ngeorge cole was a veteran of more than 60 films in a career that spanned eight decades .\nthe liberal democrats have reacted angrily to theresa may 's claim that a badly managed brexit would mean fewer resources for public services .\nchancellor angela merkel has warned that reports of us spying in germany - including bugging her mobile phone - are straining transatlantic ties .\npolice in edinburgh are investigating a series of thefts and attempted thefts where men have impersonated police officers .\na 12-year-old cancer survivor has urged more people to give blood , as the number of new donors has dropped by 40 % over the past decade .\nan offshore worker has called for action after he and colleagues were exposed to radiation , bbc scotland can reveal .\ntropical storm hagupit is heading to manila , but has been downgraded from a typhoon after crossing the country .\nthe eu referendum campaign was dogged by `` glaring democratic deficiencies '' with voters turned off by big name politicians and negative campaigning , a report says .\nmacedonian president gjorge ivanov has issued a pardon to all politicians embroiled in a big corruption scandal that sparked a major political crisis .\nlord strathclyde has resigned from his cabinet role as leader of the lords .\nthe search for a jogger who has been missing for more than 24 hours in powys has been stood down for the night .\na survivor of the al-shabab attack on kenya 's garissa university campus has been describing how she spent more than two days in a wardrobe in fear of rampaging militants .\nwest indies batsman chris gayle has been called `` disrespectful '' for asking an australian journalist on a date in a big bash league pitch-side interview .\nlimiting in-work benefits to new eu arrivals will help tackle the effects of record migration to the uk since 2004 , the ec 's president has said .\ngreg eden kept up his phenomenal scoring record for super league leaders castleford with a fourth hat-trick in a row to help beat leigh .\nmeet beth mead , one of the most prolific strikers in english domestic women 's football over the last three years .\nshares of two hong kong-listed companies have plunged by about 50 % in the past two days , surprising market watchers across the region .\nthe company that sparked an outcry by raising the price of its hiv drug in the us by 5,000 % says it will cut its price for some users .\ntwo off-duty police officers have arrested a man after a burglary at a shop in county londonderry .\nlondon has four universities in the top 40 of a global league table - more than any other individual city - although only one makes the top 10 .\ncrystal palace have made a # 25m bid to sign christian benteke from liverpool .\nthe duke of cambridge has completed his final shift as an raf search and rescue pilot at valley on anglesey , according to bbc royal correspondent peter hunt .\npositive economic growth data out of japan failed to drive shares higher in the world 's third-largest economy .\naddressing a crowd in stafford , boris johnson said : `` it is absurd we are told that you can not sell bananas in bunches of more than two or three bananas . ''\nasia 's markets were mostly down in trade on friday following a rocky week featuring particularly volatile swings in tokyo .\nthe family of a woman who died 10 days after a car crash in aberdeenshire have described her as `` a proud mum and a devoted nanna '' .\nbritain 's kal yafai retained his wba super-flyweight title with a points win over a game suguru muranaka .\nscarves have been laid at walsall fc 's ground in memory of three people from the black country who died in the tunisian beach attack .\nformer wales captain gareth thomas doubts head coach warren gatland could be tempted to succeed stuart lancaster as england boss .\nfinding dory has clung on to the top spot in the uk box office - despite the threat from nearest rival bad moms .\nbritain 's aljaz bedene will play world number one novak djokovic after beating pablo carreno busta to reach the french open third round for the first time .\na room is full of women looking like they have cried for hours , if not for days .\nministers insist there is strong support for their seven-day nhs plans as experts challenge the policy .\nyou may recognise nikki from cbbc 's junior bake off , which she won last year .\nthree first-half goals moved dundee united three points clear at the top of scottish league cup group c as they eased past buckie thistle .\nyorkshire have said they would be interested in hosting a day-night game in the county championship in 2017 .\naustralia is a step closer to exporting live cattle to china , opening a new market for its farmers .\na patient evicted from hospital after spending more than two years in a bed `` declined '' all options offered , a council has said .\nwith or without the benefit of hindsight , serena williams ' victory at the australian open in january was sublime .\na man has died after falling from a city centre statue late at night .\nit was just minutes before kick-off , and that 's when it happened .\nsamantha cameron , the wife of the former prime minister , has said their son 's death `` overshadowed everything '' .\ntwo powerful earthquakes have struck china 's north-west gansu province , killing at least 75 people and leaving more than 400 others injured .\ncarmaker vauxhall is trying to contact hundreds of thousands of british drivers , over worries their zafira models could catch fire .\nwest brom midfielder james morrison will miss saturday 's game against arsenal because of an ankle injury .\nthe first keys have been handed over to new homes built for troops moving from germany to stafford .\na girl who offered to replace big ben 's chimes on bbc radio has been let down gently after an editor warned her of the long hours that would be involved .\nthe $ 681m -lrb- â # 479m -rrb- deposited in the bank account of malaysian pm najib razak by saudi arabia was to help him win the 2013 elections , a saudi source says .\nthe third astute class submarine to be built at a cumbrian shipyard has been named .\nthe inquiry into the glasgow bin lorry crash which killed six people last year has heard of a `` lack of due diligence '' from doctors in relation to the driver .\nsaracens have agreed a deal to sign flanker calum clark from fellow premiership side northampton saints .\nthe uk championship , the second biggest ranking event of the snooker calendar , begins in york on tuesday .\nnottinghamshire 's billy root , younger brother of england test captain joe , hit an unbeaten 107 at edgbaston to help them beat warwickshire and record a second successive one-day cup win .\nshrewsbury gave their survival hopes a huge boost with victory at gillingham , who drop out of the play-off places .\nlindsey vonn claimed her second win in two days at the alpine skiing world cup event in austria with victory in the super-g event .\nshetland coastguard was called out after the inter-island ferry hit rocks on its way from yell to unst .\nwales has faced pre-christmas disruptions after winds of up to 75mph from storm barbara swept in on friday .\nsnp mp mhairi black has been announced as one of music magazine nme 's people of the year nominees .\nnicola sturgeon has been ranked as the second most powerful woman in the uk , behind only the queen .\na 40-year-old man has been arrested in crawley , west sussex , on suspicion of terror offences .\na man confronted by vigilantes after arranging to meet an 11-year-old girl for sex has been jailed for five years .\nit was a perfect afternoon in early summer .\na snow and ice festival in northern japan saw some pretty impressive sculptures made out of the cold stuff .\nadebayo akinfenwa 's winner five minutes from time handed wycombe a hard-fought 1-0 home victory over exeter in league two .\nwales internationals sam warburton , dan lydiate , samson lee and hallam amos have signed extensions to their national dual contracts .\nandy williams ' double saw doncaster ease to a comfortable victory over national league north side stalybridge .\ngraeme mcdowell carded a final-round 71 to end the scottish open at castle stuart in joint 10th .\nthe number of patients waiting for treatment in wales is equivalent to the population of cardiff , it is claimed .\nprof noriko arai has spent years training a robot to pass prestigious university of tokyo 's entrance exams .\na huge storm cloud rolled over sydney , australia on friday giving us some amazing views .\nthe area where acoustic signals thought linked to the missing malaysian plane were detected can now be ruled out as the final resting place of flight mh370 , australian officials say .\nbarcelona have signed brazil midfielder paulinho from chinese club guangzhou evergrande for 40m euro -lrb- # 36.4 m -rrb- .\nrussia 's lower house of parliament has passed a bill to decriminalise some forms of domestic violence .\nrussian mps have proposed new laws that would make it easier for russia to incorporate parts of ukraine , and allow russian citizenship to be fast-tracked .\nbbc northern ireland broadcaster gerry anderson has been posthumously inducted into the phonographic performance ireland -lrb- ppi -rrb- radio hall of fame .\na scottish artist captured many of the landscapes for his latest collection of works from the sea .\nthe three-day trnsmt music festival in glasgow is to start later with a friday line-up of acts including radiohead and belle and sebastian .\ncalls have been made for a room in wrexham where heroin users can inject safely under supervision .\nask senior officials in number 10 what the most important issue is for voters and it is n't long before they point out that an economy `` that works for everyone '' is more than just a slogan .\npaul scholes has come out of retirement after agreeing to play for manchester united until the end of the season .\nan `` urgent inquiry '' is needed into separated children who have gone missing from care , the social democratic and labour party has said .\na man who stalked and killed his former girlfriend after she rejected him has been found guilty of her murder .\nplans to avert big event travel chaos in cardiff will be trialled as 30,000 people head to the city for saturday 's monster jam event .\na woman , believed to be in her 80s , has died following a blaze at a house in the village of lhanbryde near elgin in moray .\nan 11-year-old boy in the united states has wowed audiences after successfully spelling ` taoiseach ' on his way to becoming joint winner of a national spelling bee competition .\na welsh feature film which tackles mental health issues is due to be shot in powys later this year .\nthe us government has imposed sanctions on 13 senior venezuelan officials as pressure mounts on president nicolás maduro ahead of a controversial vote for a new constituent assembly .\na spoof series of four books called enid blyton for grown-ups , which reimagines the famous five as adults , is to be published .\nnottingham 's network of caves has been turned into a virtual reality tour , to open them up to a wider audience .\nshrien dewani has arrived back in england after being cleared by a court in south africa of arranging the murder of his wife in 2010 .\nit is a year since the uk voted to leave the european union and brexit negotiations are under way .\nthe federal reserve 's latest statement suggests that the path is clear for an interest rate rise in june or september without surprising markets .\nthe bbc has agreed a deal to broadcast the six nations until 2017 .\nat least 20 people have been killed in a huge fire that broke out at a packaging factory in bangladesh .\nthe chairwoman of the inquiry into historical child abuse has announced two key dates for the investigation .\nthe ulster unionist leader has denied he made a mistake by saying he intends to give the sdlp his second preference in the assembly election .\ntwo days after a german-iranian teenager killed nine people and then shot himself dead at munich 's olympia shopping centre , this is what we know from the information given by police and prosecution sources .\na londonderry motoring offender has missed his court sentencing to go on a surprise spanish holiday with his grandmother .\na former jersey politician raped a boy in the staff room of the haut de la garenne children 's home , an inquiry into the care system has heard .\nthe inventor of the classic toy etch a sketch has died at the age of 86 .\npoliticians have said they will meet michelin management within days to see how they can reduce the impact of the tyre factory closure in county antrim .\nthe wife of prominent burundian opposition politician agathon rwasa has been shot and wounded at a hair salon in the capital , bujumbura .\npop band duran duran have taken legal action against the us company charged with running their fan club over unpaid revenues , court papers have revealed .\nben affleck has won the top film honour from the directors guild of america for his iran hostage drama , argo .\nmark mcghee has been appointed manager of scottish premiership club motherwell for a second time , with the scotland assistant boss signing until may 2017 .\na second man has been charged with murder after a man died nine months after being assaulted in sunderland .\nformer kilmarnock winger chris johnston has become the third player to sign for dumbarton this summer after leaving relegated raith rovers .\nrock band coldplay and managers of acts including ed sheeran , elton john , blur and radiohead have signed an open letter to the government calling for action over secondary ticketing sites .\ngale force winds have led to the cancellation of ferries and flights between the isle of man and the uk .\na man has been killed in a car crash on the m1 in county tyrone .\ntalktalk has confirmed that three of its india-based call centre workers have been arrested .\niraqi political groups have for several months been trying to forge a coalition government , following the inconclusive parliamentary elections in march 2010 .\ncologne has beefed up security for the city 's annual carnival , after many women suffered sexual assaults and robberies there on new year 's eve .\nmagnus carlsen of norway has won the world chess championship for the third consecutive time after defeating challenger sergey karjakin of russia .\nthere has been growing criticism of venezuela 's government after the supreme court took over legislative powers from the national assembly .\nreports of people voting more than once in june 's election are `` troubling '' but there is little evidence of widespread abuse , the elections watchdog has said .\nthe european commission has blocked telefonica 's sale of o2 to ck hutchison , the owner of three .\ngibraltar is in talks with scotland about a plan to keep parts of the uk in the eu , bbc newsnight has learned .\nportuguese bonds and stocks were hit on monday as a coalition of left-of-centre anti-austerity parties looked set to form the country 's next government .\nthe son of a poor indian farmer who has beaten nearly 3.5 million students to top secondary school exams in the northern state of uttar pradesh talks to bbc hindi about his struggles and ambition .\nburkina faso coach paulo duarte says he has is not concerned over a number of injuries to key players going into next month 's african nations cup finals .\nit was arguably the most famous season in formula 1 history , featuring thrilling racing , off-track controversies and the near-death of the sport 's most famous driver , niki lauda , as he battled james hunt for the world championship .\nplans to build a â # 25m school on a former landfill site in sheffield have been approved , despite concerns over the suitability of the area .\nscotland 's newest police horses have been named after two of the country 's most famous islands .\nan agreement has been signed which will make contraceptive injections available to women in 69 of the world 's poorest countries .\nstriker chris martin has described his input during derby county 's dismal recent run as a `` bit non-existent '' .\na flock of decorated model sheep has invaded the lake district in a bid to raise # 1.3 m for charity .\nnearly all of the chaotically built homes in the small community of vila uniao in the west of rio have `` smh '' painted onto their walls .\njayaram jayalalitha was one of india 's most colourful and controversial politicians , adored by some and condemned by others .\ndairy crest , maker of cathedral city cheese and country life butter , has announced a big slump in profits and the sale of its milk business .\na lodger has been jailed for life for stabbing his landlord 29 times after a row about cleanliness .\nlandslides have closed several roads across scotland as further heavy rains batter the country .\na british army team has arrived in somalia as part of a united nations mission to counter islamist militants .\nwhile the the renewable heat incentive scheme has lurched from controversy to controversy , one of the more unusual uses for an rhi wood pellet boiler came to light on monday .\ncolombian caterine ibarguen won the women 's triple jump in rio .\nthe media must be careful about using parliamentary privilege as a defence for reporting remarks by mps and peers which breach court injunctions , the attorney general has said .\nlondon 's ftse 100 index has recorded its biggest weekly loss this year after poor manufacturing figures in china exacerbated global economic fears .\nwhat do you give the man who has an entire country at his mercy ?\nwales claimed an historic 3-0 victory over euro 1984 runners-up spain in wrexham in 1985 .\nit might just be the greatest sports documentary to ever come out of britain .\nchris and gabby adcock won the english national championships mixed doubles title for the third successive year .\nburkina faso has asked france to declassify military documents about the killing of ex-president thomas sankara , a lawyer for his family has said .\nshares in swiss agribusiness group syngenta have risen 12 % after its takeover by chemchina was given the go-ahead by a us regulator .\nthe irish football association has said uefa will set up a portal for northern ireland supporters to apply for extra european championship tickets .\na neo-nazi has been jailed for life for attempting to behead a tesco shopper in a racially-motivated revenge attack for the murder of fusilier lee rigby .\na man has been jailed for the hit-and-run death of a four-year-old girl who was struck by his speeding car when it mounted a pavement in merseyside .\nthe daughter of the late fast and furious actor paul walker is to sue carmaker porsche over the crash in which he died , us reports say .\nian bell has stepped down as captain of warwickshire in all formats of the game to focus on batting .\na teenager shot in the head by the taliban for championing women 's rights has been given the honour of opening the new # 188m library of birmingham .\ntwo `` drug-addled , parasitic assailants '' have received life sentences for killing a co antrim restaurant owner .\nthreats to kill pupils in a shooting at a blackpool school are being investigated by lancashire police .\na slide running the entire length of one of the steepest city centre streets in europe has been turned into a massive three-lane water adventure .\npartick thistle will finish in the scottish premiership 's top six for the first time after beating motherwell , who slipped to second bottom .\n-lrb- close -rrb- : london share prices fell back slightly , with the ftse 100 index closing 20 points lower at 6,710 , a fall of just 0.3 % .\nvisitors have flocked to cumbria to see two pairs of rare bee-eater birds which set up their home at a quarry .\n"
  },
  {
    "path": "preprocess.py",
    "content": "import json\nfrom compare_mt.rouge.rouge_scorer import RougeScorer\nfrom multiprocessing import Pool\nimport os\nimport random\nfrom itertools import combinations\nfrom functools import partial\nimport re\nimport nltk\nimport numpy as np\nimport argparse\n\nsent_detector = nltk.data.load('tokenizers/punkt/english.pickle')\nall_scorer = RougeScorer(['rouge1', 'rouge2', 'rougeLsum'], use_stemmer=True)\n\n\ndef collect_diverse_beam_data(args):\n    split = os.path.join(args.split)\n    src_dir = os.path.join(args.src_dir)\n    tgt_dir = os.path.join(args.tgt_dir)\n    cands = []\n    cands_untok = []\n    cnt = 0\n    with open(os.path.join(src_dir, f\"{split}.source.tokenized\")) as src, open(os.path.join(src_dir, f\"{split}.target.tokenized\")) as tgt, open(os.path.join(src_dir, f\"{split}.source\")) as src_untok, open(os.path.join(src_dir, f\"{split}.target\")) as tgt_untok:\n        with open(os.path.join(src_dir, f\"{split}.out.tokenized\")) as f_1, open(os.path.join(src_dir, f\"{split}.out\")) as f_2:\n            for (x, y) in zip(f_1, f_2):\n                x = x.strip().lower()\n                cands.append(x)\n                y = y.strip().lower()\n                cands_untok.append(y)\n                if len(cands) == args.cand_num:\n                    src_line = src.readline()\n                    src_line = src_line.strip().lower()\n                    tgt_line = tgt.readline()\n                    tgt_line = tgt_line.strip().lower()\n                    src_line_untok = src_untok.readline()\n                    src_line_untok = src_line_untok.strip().lower()\n                    tgt_line_untok = tgt_untok.readline()\n                    tgt_line_untok = tgt_line_untok.strip().lower()\n                    yield (src_line, tgt_line, cands, src_line_untok, tgt_line_untok, cands_untok, os.path.join(tgt_dir, f\"{cnt}.json\"))\n                    cands = []\n                    cands_untok = []\n                    cnt += 1\n\n\ndef build_diverse_beam(input):\n    src_line, tgt_line, cands, src_line_untok, tgt_line_untok, cands_untok, tgt_dir = input\n    cands = [sent_detector.tokenize(x) for x in cands]\n    abstract = sent_detector.tokenize(tgt_line)\n    _abstract = \"\\n\".join(abstract)\n    article = sent_detector.tokenize(src_line)\n    def compute_rouge(hyp):\n        score = all_scorer.score(_abstract, \"\\n\".join(hyp))\n        return (score[\"rouge1\"].fmeasure + score[\"rouge2\"].fmeasure + score[\"rougeLsum\"].fmeasure) / 3\n    candidates = [(x, compute_rouge(x)) for x in cands]\n    cands_untok = [sent_detector.tokenize(x) for x in cands_untok]\n    abstract_untok = sent_detector.tokenize(tgt_line_untok)\n    article_untok = sent_detector.tokenize(src_line_untok)\n    candidates_untok = [(cands_untok[i], candidates[i][1]) for i in range(len(candidates))]\n    output = {\n        \"article\": article, \n        \"abstract\": abstract,\n        \"candidates\": candidates,\n        \"article_untok\": article_untok, \n        \"abstract_untok\": abstract_untok,\n        \"candidates_untok\": candidates_untok,\n        }\n    with open(tgt_dir, \"w\") as f:\n        json.dump(output, f)\n\n\ndef make_diverse_beam_data(args):\n    data = collect_diverse_beam_data(args)\n    with Pool(processes=8) as pool:\n        list(pool.imap_unordered(build_diverse_beam, data, chunksize=64))\n    print(\"finish\")\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description='Preprocessing Parameter')\n    parser.add_argument(\"--cand_num\", type=int, default=16)\n    parser.add_argument(\"--src_dir\", type=str)\n    parser.add_argument(\"--tgt_dir\", type=str)\n    parser.add_argument(\"--split\", type=str)\n    args = parser.parse_args()\n    make_diverse_beam_data(args)\n\n\n\n\n    \n\n"
  },
  {
    "path": "requirements.txt",
    "content": "absl-py==0.8.1\nasn1crypto==1.3.0\nastor==0.8.0\nattrs==20.3.0\nbert-score==0.3.6\nblis==0.4.1\nboto==2.49.0\nboto3==1.11.0\nbotocore==1.14.0\nbz2file==0.98\ncatalogue==1.0.0\ncertifi==2020.6.20\ncffi==1.12.3\nchardet==3.0.4\nclick==7.1.1\ncryptography==2.8\ncycler==0.10.0\ncymem==2.0.3\nCython==0.29.14\ncytoolz==0.10.1\ndatasets==1.2.1\ndecorator==4.4.2\ndgl==0.4.3\ndill==0.3.3\ndocutils==0.15.2\nfairseq==0.8.0\nfastBPE==0.1.0\nFastNLP==0.5.5\nfilelock==3.0.12\nfuture==0.18.2\nfuzzywuzzy==0.18.0\ngast==0.2.2\ngensim==3.8.0\ngoogle-pasta==0.1.8\ngoogleapis-common-protos==1.52.0\ngrpcio==1.16.1\nh5py==2.10.0\nidna==2.8\nimportlib-metadata==1.6.0\nimportlib-resources==5.1.0\njmespath==0.9.4\njoblib==0.14.1\nKeras-Applications==1.0.8\nKeras-Preprocessing==1.1.0\nkiwisolver==1.1.0\nMarkdown==3.1.1\nmatplotlib==3.1.2\nmkl-fft==1.0.15\nmkl-random==1.1.0\nmkl-service==2.3.0\nmultiprocess==0.70.11.1\nmurmurhash==1.0.2\nnetworkx==2.4\nnltk==3.4.5\nnumpy==1.19.5\nopt-einsum==3.1.0\npackaging==20.4\npandas==1.1.3\nplac==1.1.3\nportalocker==1.5.2\npreshed==3.0.2\nprettytable==0.7.2\npromise==2.3\nprotobuf==3.14.0\npyarrow==3.0.0\npycparser==2.19\npyemd==0.5.1\npyOpenSSL==19.1.0\npyparsing==2.4.6\npyrouge==0.1.3\nPySocks==1.7.1\npython-dateutil==2.8.1\npython-Levenshtein==0.12.0\npytorch-transformers==1.2.0\npytz==2020.1\nregex==2019.12.9\nrequests==2.22.0\nrouge==1.0.0\ns3transfer==0.3.0\nsacrebleu==1.3.7\nsacremoses==0.0.38\nscikit-learn==0.22.1\nscipy==1.3.2\nseaborn==0.11.0\nsentencepiece==0.1.84\nsix==1.13.0\nsmart-open==1.9.0\nspacy==2.2.4\nsrsly==1.0.2\ntabulate==0.8.7\ntensorboard==2.0.0\ntensorboardX==2.0\ntensorflow==2.0.0\ntensorflow-datasets==4.2.0\ntensorflow-estimator==2.0.0\ntensorflow-metadata==0.27.0\ntermcolor==1.1.0\ntf-sentencepiece==0.1.84\ntf-slim==1.1.0\nthinc==7.4.0\ntokenizers==0.8.1rc2\ntoolz==0.10.0\ntorch==1.2.0\ntornado==6.0.3\ntqdm==4.32.1\ntransformers==3.1.0\ntyping==3.6.4\ntyping-extensions==3.7.4.3\nurllib3==1.25.7\nwasabi==0.6.0\nWerkzeug==0.16.1\nwrapt==1.11.2\nxxhash==2.0.0\nzipp==3.1.0\n"
  },
  {
    "path": "spec-file.txt",
    "content": "# This file may be used to create an environment using:\n# $ conda create --name <env> --file <this file>\n# platform: linux-64\n@EXPLICIT\nhttps://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/_pytorch_select-0.2-gpu_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/_tflow_select-2.3.0-mkl.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/blas-1.0-mkl.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.10.14-0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/cudatoolkit-10.0.130-0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/intel-openmp-2019.4-243.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/cudnn-7.6.5-cuda10.0_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/mkl-2019.4-243.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/c-ares-1.15.0-h7b6447c_1001.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1h-h7b6447c_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/pcre-8.43-he6710b0_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.conda\nhttps://conda.anaconda.org/anaconda/linux-64/yaml-0.1.7-h96e3832_1.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.12-h746ee38_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/glib-2.63.1-h5a9c865_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libprotobuf-3.11.2-hd408876_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/readline-7.0-h7b6447c_5.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.30.1-h7b6447c_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/python-3.7.6-h0371630_2.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/asn1crypto-1.3.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/astor-0.8.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/boto-2.49.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/bz2file-0.98-py37_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.6.20-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/chardet-3.0.4-py37_1003.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/docutils-0.15.2-py37_0.conda\nhttps://conda.anaconda.org/powerai/linux-64/fastbpe-0.1.0-py37h6bb024c_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/future-0.18.2-py37_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/gast-0.2.2-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/idna-2.8-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/jmespath-0.9.4-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/kiwisolver-1.1.0-py37he6710b0_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/ninja-1.9.0-py37hfd86e86_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/portalocker-1.5.2-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/pycparser-2.19-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py37_0.conda\nhttps://conda.anaconda.org/conda-forge/linux-64/python_abi-3.7-1_cp37m.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/noarch/pytz-2020.1-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/regex-2019.12.9-py37h7b6447c_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/sip-4.19.8-py37hf484d3e_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/six-1.13.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/tabulate-0.8.7-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/termcolor-1.1.0-py37_1.conda\nhttps://conda.anaconda.org/anaconda/noarch/toolz-0.10.0-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/tornado-6.0.3-py37h7b6447c_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/tqdm-4.32.1-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/typing-3.6.4-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/werkzeug-0.16.1-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/wrapt-1.11.2-py37h7b6447c_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/absl-py-0.8.1-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/cffi-1.12.3-py37h2e261b9_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/cycler-0.10.0-py37_0.conda\nhttps://conda.anaconda.org/anaconda/linux-64/cytoolz-0.10.1-py37h7b6447c_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/noarch/google-pasta-0.1.8-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/mkl-service-2.3.0-py37he904b0f_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/nltk-3.4.5-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/pyqt-5.9.2-py37h05f1152_2.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2\nhttps://conda.anaconda.org/powerai/noarch/sacrebleu-1.3.7-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/setuptools-44.0.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/cryptography-2.8-py37h1ba5d50_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/cython-0.29.14-py37he6710b0_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/grpcio-1.16.1-py37hf8bcb03_1.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/markdown-3.1.1-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/numpy-base-1.16.5-py37hde5b4d6_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/protobuf-3.11.2-py37he6710b0_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/wheel-0.33.6-py37_0.conda\nhttps://conda.anaconda.org/anaconda/linux-64/pip-20.0.2-py37_1.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/pyopenssl-19.1.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/urllib3-1.25.7-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/botocore-1.14.0-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/requests-2.22.0-py37_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/s3transfer-0.3.0-py37_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/boto3-1.11.0-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/smart_open-1.9.0-py_0.tar.bz2\nhttps://conda.anaconda.org/conda-forge/noarch/tensorboardx-2.0-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/h5py-2.10.0-py37h7918eee_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/matplotlib-3.1.2-py37_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/matplotlib-base-3.1.2-py37hef1b27d_1.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/mkl_fft-1.0.15-py37ha843d7b_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/mkl_random-1.1.0-py37hd6b4f25_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/numpy-1.16.5-py37h7e9f1db_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/keras-applications-1.0.8-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/noarch/opt_einsum-3.1.0-py_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/pandas-1.1.3-py37he6710b0_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/pytorch-1.2.0-cuda100py37h938c94c_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/scipy-1.3.2-py37h7c811a0_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/tensorboard-2.0.0-pyhb38c66f_1.tar.bz2\nhttps://conda.anaconda.org/dglteam/linux-64/dgl-cuda10.0-0.4.3-py37_0.tar.bz2\nhttps://conda.anaconda.org/powerai/linux-64/fairseq-0.8.0-py37h6bb024c_0.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/gensim-3.8.0-py37h962f231_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/keras-preprocessing-1.1.0-py_1.tar.bz2\nhttps://repo.anaconda.com/pkgs/main/linux-64/scikit-learn-0.22.1-py37hd81dba3_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/seaborn-0.11.0-py_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/tensorflow-base-2.0.0-mkl_py37h9204916_0.conda\nhttps://repo.anaconda.com/pkgs/main/noarch/tensorflow-estimator-2.0.0-pyh2649769_0.conda\nhttps://repo.anaconda.com/pkgs/main/linux-64/tensorflow-2.0.0-mkl_py37h66b46cc_0.conda\nhttps://conda.anaconda.org/powerai/linux-64/sentencepiece-0.1.84-py37h6bb024c_0.tar.bz2\n"
  },
  {
    "path": "utils.py",
    "content": "import os\nfrom os.path import exists, join\nimport json\nimport torch\nfrom torch.utils.tensorboard import SummaryWriter\nfrom datetime import datetime\n\nclass Recorder():\n    def __init__(self, id, log=True):\n        self.log = log\n        now = datetime.now()\n        date = now.strftime(\"%y-%m-%d\")\n        self.dir = f\"./cache/{date}-{id}\"\n        if self.log:\n            os.mkdir(self.dir)\n            self.f = open(os.path.join(self.dir, \"log.txt\"), \"w\")\n            self.writer = SummaryWriter(os.path.join(self.dir, \"log\"), flush_secs=60)\n        \n    def write_config(self, args, models, name):\n        if self.log:\n            with open(os.path.join(self.dir, \"config.txt\"), \"w\") as f:\n                print(name, file=f)\n                print(args, file=f)\n                print(file=f)\n                for (i, x) in enumerate(models):\n                    print(x, file=f)\n                    print(file=f)\n        print(args)\n        print()\n        for (i, x) in enumerate(models):\n            print(x)\n            print()\n\n    def print(self, x=None):\n        if x is not None:\n            print(x)\n        else:\n            print()\n        if self.log:\n            if x is not None:\n                print(x, file=self.f)\n            else:\n                print(file=self.f)\n\n    def plot(self, tag, values, step):\n        if self.log:\n            self.writer.add_scalars(tag, values, step)\n\n\n    def __del__(self):\n        if self.log:\n            self.f.close()\n            self.writer.close()\n\n    def save(self, model, name):\n        if self.log:\n            torch.save(model.state_dict(), os.path.join(self.dir, name))"
  }
]